diff --git a/ARM7(GBA).txt b/ARM7(GBA).txt deleted file mode 100644 index 85cc2ec..0000000 --- a/ARM7(GBA).txt +++ /dev/null @@ -1,708 +0,0 @@ -//----- Variables ----------------------------------------------------------------------------------------------------- - -arm7.pc = 0 -arm7.read_return = 0 -arm9.pc = 0 -arm9.read_return = 0 -bg_mode = 0 -calc.char = 32 -calc.return = 0 -calc.temp = 31 -calc.temp2 = 0 -core.byte_return = 0 -core.condition_test = 0 -core.dummy = 0 -core.dummy2 = 0 -core.dummy_op = 0 -core.instruction_format = 0 -core.little_endian = 0 -core.op.dummy = 0 -core.op.dummy2 = 0 -core.read_return = 0 -core.rotate_return = 0 -core.shift_return = 0 -flags.met = 0 -op.opcode = 0 -op.pos = 0 -op.temp = 2 -program.done = 1 -read.return = 2147483907 -read.single.return = 3 -scanX = 0 -scanY = 228 -storage.byte = 4 -tile_mode = 0 - - -//----- Lists --------------------------------------------------------------------------------------------------------- - -arm7.registers = { } -arm9.flags = { } -arm9.registers = { } - - -//----- Green flag events --------------------------------------------------------------------------------------------- - -WhenGreenFlagClicked() -{ - Looks.Hide(); -} - - -//----- Broadcast received events ------------------------------------------------------------------------------------- - -WhenBroadcastReceived(exit emulator) -{ - Stop(other scripts in sprite); -} - -WhenBroadcastReceived(Game Boy Advance) -{ - Stop(other scripts in sprite); - Call reset_mem; - Event.Broadcast("reset"); -} - -WhenBroadcastReceived(hard_reset) -{ - Stop(other scripts in sprite); - Call reset_mem; - Event.Broadcast("reset"); -} - -WhenBroadcastReceived(Project not saving fix) -{ - List.DeleteAll(CARTRAM); - List.DeleteAll(EWRAM); - List.DeleteAll(IORAM); - List.DeleteAll(IWRAM); - List.DeleteAll(OAM); - List.DeleteAll(PALRAM); - List.DeleteAll(VRAM); - List.DeleteAll(_pixels); -} - -WhenBroadcastReceived(reset) -{ - Pen.Clear(); - Pen.SetPenSizeTo(2); - List.DeleteAll(_r); - Repeat (16) - { - List.Add(_r, 0); - } - List.ReplaceItem(_r, 16, ( + Operator.Join("0x", "07fffffc"))); - flags.z = 0; - flags.c = 0; - flags.n = 0; - flags.v = 0; - bg_mode = 0; - program.done = 0; - Forever - { - Sensing.ResetTimer(); - Call frame; - Call render_screen; - } -} - - -//----- Custom blocks ------------------------------------------------------------------------------------------------- - -Define (string x) &(string y) (warp=true) -{ -} - -Define (string x) <<(string y) (warp=true) -{ - calc.return = (x * Operator.Round(10 ^((y * 0.3010299956639812)))); -} - -Define (string x) >>(string y) (warp=true) -{ - calc.return = floor((x / 10 ^((y * 0.3010299956639812)))); -} - -Define (string x) ^(string y) (warp=true) -{ - Repeat (floor(y)) - { - calc.return = (x * x); - } -} - -Define (string x) |(string y) (warp=true) -{ -} - -Define frame (warp=true) -{ - scanX = 0; - scanY = 0; - cycles = 0; - Repeat Until (scanY == 228) - { - Call step; - tile_mode = (IORAM[4] % 16); - bg_mode = Operator.Round((log(IORAM[3]) / 0.301029996)); - cycles += 4; - If (cycles > 3) - { - cycles += -4; - If (tile_mode < 4) - { - If (tile_mode < 2) - { - } - Else - { - If (tile_mode < 3) - { - } - Else - { - If ((scanX < 240) And (scanY < 160)) - { - List.ReplaceItem(_pixels, (1 + (scanX + (240 * scanY))), ((256 * VRAM[(1 + (2 * (scanX + (240 * scanY))))]) + VRAM[(2 * (1 + (scanX + (240 * scanY))))])); - } - } - } - } - Else - { - If (tile_mode < 5) - { - } - Else - { - If (tile_mode < 6) - { - If ((scanX < 160) And (scanY < 128)) - { - } - } - Else - { - } - } - } - scanX += 1; - If (scanX == 309) - { - scanX = 0; - scanY += 1; - } - } - } -} - -Define get_pos(string op) (warp=true) -{ - Call (op) >>(25); - If ((calc.return % 2) == 0) - { - Call (op) >>(4); - Call (_r[(1 + (op % 16))]) <<((calc.return % 256)); - } - Else - { - Call (op) >>(8); - Call ror((op % 256))((calc.return % 16)); - } - op.pos = calc.return; -} - -Define opcode(string op) (warp=true) -{ - Call (op) >>(26); - If ((calc.return % 4) == 0) - { - Call (op) >>(21); - calc.return = (calc.return % 16); - If (calc.return > 7) - { - If (calc.return > 11) - { - If (calc.return > 13) - { - If (calc.return > 14) - { - } - Else - { - } - } - Else - { - If (calc.return > 12) - { - Call (op) >>(25); - If ((calc.return % 2) == 0) - { - calc.return = (op % 4096); - } - Else - { - Call (op) >>(8); - Call ror((op % 256))(((calc.return % 16) - 16)); - } - op.pos = calc.return; - Call (op) >>(12); - List.ReplaceItem(_r, (1 + (calc.return % 16)), op.pos); - } - Else - { - } - } - } - Else - { - If (calc.return > 9) - { - If (calc.return > 10) - { - } - Else - { - } - } - Else - { - If (calc.return > 8) - { - } - Else - { - } - } - } - } - Else - { - If (calc.return > 3) - { - If (calc.return > 5) - { - If (calc.return > 6) - { - } - Else - { - } - } - Else - { - If (calc.return > 4) - { - } - Else - { - Call get_pos(op); - Call (op) >>(16); - op.temp = (_r[(1 + (calc.return % 16))] + op.pos); - flags.c = (op.temp > "0xffffffff"); - flags.n = 0; - If (flags.c == "true") - { - op.temp += ( - 0xffffffff); - } - flags.z = (op.temp == 0); - Call (op) >>(12); - List.ReplaceItem(_r, (1 + (calc.return % 16)), op.temp); - } - } - } - Else - { - If (calc.return > 1) - { - If (calc.return > 2) - { - } - Else - { - Call get_pos(op); - Call (op) >>(16); - op.temp = (_r[(1 + (calc.return % 16))] - op.pos); - flags.z = (op.temp == 0); - flags.n = 1; - flags.v = (op.temp < 0); - If (op.temp < 0) - { - op.temp += 0x100000000; - } - Call (op) >>(12); - List.ReplaceItem(_r, (1 + (calc.return % 16)), op.temp); - } - } - Else - { - If (calc.return > 0) - { - } - Else - { - } - } - } - } - } - Else - { - If ((calc.return % 4) == 1) - { - Call (op) >>(25); - If ((calc.return % 2) == 0) - { - op.pos = (op % 4096); - } - Else - { - Call (calc.return) >>(8); - Call ror((op % 256))(((calc.return % 16) - 16)); - op.pos = calc.return; - } - Call (op) >>(12); - op.temp = (1 + (calc.return % 16)); - Call (op) >>(20); - If ((calc.return % 2) == 0) - { - Call (op) >>(16); - Call write((_r[(1 + (calc.return % 16))] + op.pos))(_r[op.temp])(4); - } - Else - { - Call (op) >>(16); - Call read((_r[(1 + (calc.return % 16))] + op.pos))(4); - List.ReplaceItem(_r, op.temp, read.return); - } - } - Else - { - } - } -} - -Define read(string addr)(string length) (warp=true) -{ - read.return = 0; - storage.byte = 0; - Repeat (length) - { - Call single_read((addr + storage.byte)); - read.return = ((256 * read.return) + read.single.return); - storage.byte += 1; - } -} - -Define render_screen (warp=true) -{ - pixel = 1; - Motion.SetY(160); - Repeat (160) - { - Motion.SetX(-240); - Pen.Down(); - Repeat (240) - { - Pen.SetPenColorToColor(((524288 * (_pixels[pixel] % 32)) + ((2048 * (floor((_pixels[pixel] / 32)) % 32)) + (8 * (floor((_pixels[pixel] / 1024)) % 32))))); - pixel += 1; - Motion.ChangeXBy(2); - } - Pen.Clear(); - Motion.ChangeYBy(-2); - } -} - -Define reset_mem (warp=true) -{ - List.DeleteAll(CARTRAM); - List.DeleteAll(EWRAM); - List.DeleteAll(IORAM); - List.DeleteAll(IWRAM); - List.DeleteAll(OAM); - List.DeleteAll(PALRAM); - List.DeleteAll(VRAM); - List.DeleteAll(_pixels); - Repeat (Operator.Join("0x", 400)) - { - List.Add(IORAM, 0); - List.Add(PALRAM, 0); - List.Add(OAM, 0); - } - Repeat (Operator.Join("0x", 4000)) - { - List.Add(EWRAM, 0); - } - Repeat (Operator.Join("0x", 8000)) - { - List.Add(IWRAM, 0); - } - Repeat (Operator.Join("0x", 18000)) - { - List.Add(VRAM, 0); - } - Repeat ((240 * 160)) - { - List.Add(_pixels, 0); - } -} - -Define ror(string x)(string y) (warp=true) -{ - calc.temp = 0; - calc.char = 0; - Repeat (32) - { - Call (x) >>((((calc.char + 32) - (32 - (2 * y))) % 32)); - calc.temp2 = calc.return; - Call (1) <<(calc.char); - calc.temp += (calc.return * (calc.temp2 % 2)); - calc.char += 1; - } - calc.return = calc.temp; -} - -Define single_read(string addr) (warp=true) -{ - If (addr > "0x0Dffffff") - { - read.single.return = CARTRAM[(addr - 0x0Dffffff)]; - } - Else - { - If (addr > "0x07ffffff") - { - read.single.return = PAKROM[(addr - 0x07ffffff)]; - } - Else - { - If (addr > "0x06ffffff") - { - read.single.return = OAM[(addr - 0x06ffffff)]; - } - Else - { - If (addr > "0x05ffffff") - { - read.single.return = VRAM[(addr - 0x05ffffff)]; - } - Else - { - If (addr > "0x04ffffff") - { - read.single.return = PALRAM[(addr - 0x04ffffff)]; - } - Else - { - If (addr > "0x03ffffff") - { - read.single.return = IORAM[(addr - 0x03ffffff)]; - } - Else - { - If (addr > "0x02ffffff") - { - read.single.return = IWRAM[(addr - 0x02ffffff)]; - } - Else - { - read.single.return = EWRAM[(addr - 0x01ffffff)]; - } - } - } - } - } - } - } -} - -Define single_write(string addr)(string value) (warp=true) -{ - If (addr > "0x0Dffffff") - { - List.ReplaceItem(CARTRAM, (addr - 0x0Dffffff), value); - } - Else - { - If (addr > "0x06ffffff") - { - List.ReplaceItem(OAM, (addr - 0x06ffffff), value); - } - Else - { - If (addr > "0x05ffffff") - { - List.ReplaceItem(VRAM, (addr - 0x05ffffff), value); - } - Else - { - If (addr > "0x04ffffff") - { - List.ReplaceItem(PALRAM, (addr - 0x04ffffff), value); - } - Else - { - If (addr > "0x03ffffff") - { - List.ReplaceItem(IORAM, (addr - 0x03ffffff), value); - } - Else - { - If (addr > "0x02ffffff") - { - List.ReplaceItem(IWRAM, (addr - 0x02ffffff), value); - } - Else - { - List.ReplaceItem(IORAM, (addr - 0x01ffffff), value); - } - } - } - } - } - } -} - -Define step (warp=true) -{ - List.ReplaceItem(_r, 16, (4 + _r[16])); - If (program.done == 1) - { - Stop(this script); - } - flags.met = "false"; - Call (PAKROM[(_r[16] - 0x07fffffc)]) >>(4); - If (calc.return > 7) - { - If (calc.return > 11) - { - If (calc.return > 13) - { - If (calc.return > 14) - { - } - Else - { - flags.met = 1; - } - } - Else - { - If (calc.return > 12) - { - flags.met = (flags.z + (Not ((flags.n == flags.v)))); - } - Else - { - flags.met = ((flags.n == flags.v) - flags.z); - } - } - } - Else - { - If (calc.return > 9) - { - If (calc.return > 10) - { - flags.met = ( - (flags.n == flags.v)); - } - Else - { - flags.met = ( + (flags.n == flags.v)); - } - } - Else - { - If (calc.return > 8) - { - flags.met = (flags.z - flags.c); - } - Else - { - flags.met = (flags.c - flags.z); - } - } - } - } - Else - { - If (calc.return > 3) - { - If (calc.return > 5) - { - If (calc.return > 6) - { - flags.met = (1 - flags.v); - } - Else - { - flags.met = flags.v; - } - } - Else - { - If (calc.return > 4) - { - flags.met = (1 - flags.n); - } - Else - { - flags.met = flags.n; - } - } - } - Else - { - If (calc.return > 1) - { - If (calc.return > 2) - { - flags.met = (1 - flags.c); - } - Else - { - flags.met = flags.c; - } - } - Else - { - If (calc.return > 0) - { - flags.met = (1 - flags.z); - } - Else - { - flags.met = flags.z; - } - } - } - } - op.opcode = (((16777216 * PAKROM[(_r[16] - 0x07fffffc)]) + (65536 * PAKROM[(_r[16] - 0x07fffffd)])) + ((256 * PAKROM[(_r[16] - 0x07fffffe)]) + PAKROM[(_r[16] - 0x07ffffff)])); - If (op.opcode == 0) - { - program.done = 1; - Stop(this script); - } - If (flags.met > 0) - { - Call opcode(op.opcode); - } -} - -Define write(string addr)(string value)(string length) (warp=true) -{ - calc.return = 0; - storage.byte = 0; - Repeat (length) - { - Call (value) >>((8 * ((length - storage.byte) - 1))); - Call single_write((addr + storage.byte))((calc.return % 256)); - storage.byte += 1; - } -} - - -//----- Costumes ------------------------------------------------------------------------------------------------------ - -costume1.svg diff --git a/Background Effects.txt b/Background Effects.txt index 02612ff..311cb18 100644 --- a/Background Effects.txt +++ b/Background Effects.txt @@ -98,7 +98,7 @@ Define render(string timer)(string height) (warp=true) Pen.Clear(); Pen.SetPenColorToColor(#6cb7ff); Pen.SetPenTo(transparency, 30); - Pen.ChangePenBy(color, (Operator.Round(Operator.Join("0x", Operator.Join(Menu Theme[5], Menu Theme[6]))) / 2)); + Pen.ChangePenBy(color, (Operator.Join("0x", Operator.Join(Menu Theme[5], Menu Theme[6])) / 2)); Motion.SetX((stage width / -2)); Repeat (stage width) { diff --git a/BytePusher.txt b/BytePusher.txt index cd0e898..2ef49a1 100644 --- a/BytePusher.txt +++ b/BytePusher.txt @@ -1,5 +1,49 @@ //----- Variables ----------------------------------------------------------------------------------------------------- +*OAMDMA# = 0 +*OAMDMAS = 0 +,c = 0 +,joypad = 0 +-keyRandom = 0 +-LCDC = 0 +-LCDS = 0 +-LY = 0 +-LYC = 0 +-LYmask = 0 +-scx = 0 +-SCXMOD8 = 0 +-STATUS = 0 +-windowWasDrawn? = 0 +-WLY = 0 +-wx = 0 +.DIV2 = 0 +.DIVCYCLES = 0 +.DMAenable = 0 +.DMAend = 0 +.DMAlength = 0 +.DMAstart = 0 +.DMAtype = 0 +.GBC? = 0 +.HDMAenable = 0 +.IME = 0 +.instr = 0 +.instrID = 0 +.Mpri = 0 +.soundEnable = 0 +.SPEED = 0 +.Spri = 0 +.spriteattributes = 0 +.spriteCpal = 0 +.spritesize = 0 +.TAC1 = 0 +.TAC2 = 0 +.TACFLAG = 0 +.tileB = 0 +.timenable = 0 +.vbank = 0 +.windowflag = 0 +@PAL = 0 +@PIX = 0 a = 256 arm7.pc = 0 arm7.read_return = 0 @@ -51,10 +95,22 @@ core.read_return = 0 core.rotate_return = 0 core.shift_return = 0 CPF = 0 +fftlast = 0 flags.met = 0 -i = 33554432 -j = 4 -k = 00000000 +FPS = 0 +g = 0 +Game Boy: _HALT = 0 +Game Boy: _PC = 0 +Game Boy: _SP = 0 +h = 0 +i = 0 +i = 54696 +j = 65536 +k = 0 +k = 0 +l = 0 +loop = 0 +m = 0 n = 10 op.opcode = 0 op.pos = 0 @@ -63,23 +119,84 @@ p = 0 program.done = 0 read.return = 0 read.single.return = 0 +render = 0 scanX = 0 scanY = 0 SF2091! fix = 0 storage.byte = 0 +T1 = 0 +T2 = 0 +T3 = 0 +T4 = 0 +T4.1 = 0 +T4.2 = 0 +T5 = 0 +T6 = 0 +T7 = 0 +T8 = 0 +T9 = 0 +T10 = 0 +T11 = 0 +target frames = 0 tile_mode = 0 +time1 = 0 +time2 = 0 +v = 0 VIP jumps = 0 +x = 0 +z = 0 +_A = 0 +_B = 0 +_current bank = 0 +_frames = 0 +_frameskip = 0 _id = 0 +_IEindex = 0 +_IFindex = 0 +_INTRdest = 0 +_lineCyc = 0 +_MBCnumber = 0 _pitch = 0 +_PIXEL# = 0 +_R = 0 +_RE = 0 +_rom size = 0 +_S = 0 +_SIZE = 0 +_STATcond1 = 0 +_STATcond2 = 0 +_T = 0 +_X = 0 +_XSHIFT = 0 +_YSHIFT = 0 +_Z = 0 //----- Lists --------------------------------------------------------------------------------------------------------- +$A = { } +$B = { } +$C = { } +*OAMidx = { } +*OAMx = { } +*OAMy = { } +*palette = { } +.addr2ptr = { } +.AND = { } +.OR = { } +.pointerStart = { } +.ptr = { } +.ptr index = { } +.vals = { } +.XOR = { } +2^x = { } arm7.registers = { } arm9.flags = { } arm9.registers = { } +bin = { } Boot-128 = { } bytepusher = { } +byteStack = { } c = { aewq321x vfr4czds @@ -90,6 +207,8 @@ chip8.registers = { } chip8.screen = { } chip8.screen2 = { } chip8.stack = { } +dat = { } +Flag bits = { } p = { 51 102 @@ -351,36 +470,28 @@ p = { schip8.font = { } schip8.RPL = { } t = { } +_cartridge stuff = { } +_DMGPALETTE = { } +_GBCPALETTELOOKUP = { } +_instrIDs = { } +_instrParam = { } +_PALETTE RAM = { } +_pix = { } +_RAM = { } +_REGISTERS = { } +_ROM = { } +_soundregs = { } //----- Broadcast received events ------------------------------------------------------------------------------------- WhenBroadcastReceived(BytePusher) { - List.DeleteAll(bytepusher); - i = 33554432; - Repeat ((16777216 - List.Length(_rom))) - { - List.Add(_rom, 0); - } - Repeat (65536) - { - List.Add(bytepusher, ""); - i += 1; - } + Call init; + Event.BroadcastAndWait("un-needed broadcast"); Forever { - control_for_each ?? - probably legacy function from Scratch 2.0; - i = ((_rom[3] * 65536) + ((_rom[4] * 256) + _rom[5])); - Repeat (65536) - { - List.DeleteAll(t); - p = 0; - control_for_each ?? - probably legacy function from Scratch 2.0; - List.ReplaceItem(_rom, (t[2] + 1), _rom[(t[1] + 1)]); - i = t[3]; - } - j = 0; + Call CPU; Call Draw bp; } } @@ -406,11 +517,41 @@ WhenBroadcastReceived(Project not saving fix) //----- Custom blocks ------------------------------------------------------------------------------------------------- +Define CPU (warp=true) +{ + control_for_each ?? - probably legacy function from Scratch 2.0; + i = ((_rom[3] * 65536) + ((_rom[4] * 256) + _rom[5])); + Repeat (65536) + { + List.DeleteAll(t); + p = 0; + control_for_each ?? - probably legacy function from Scratch 2.0; + List.ReplaceItem(_rom, (t[2] + 1), _rom[(t[1] + 1)]); + i = t[3]; + } + j = 0; +} + Define Draw bp (warp=true) { control_for_each ?? - probably legacy function from Scratch 2.0; } +Define init (warp=true) +{ + List.DeleteAll(bytepusher); + i = 33554432; + Repeat ((16777216 - List.Length(_rom))) + { + List.Add(_rom, 0); + } + Repeat (65536) + { + List.Add(bytepusher, ""); + i += 1; + } +} + //----- Costumes ------------------------------------------------------------------------------------------------------ diff --git a/Chip-8.txt b/Chip-8.txt index 7402281..9c1a32b 100644 --- a/Chip-8.txt +++ b/Chip-8.txt @@ -7,6 +7,7 @@ arm9.read_return = 0 bg_mode = 0 c8.Load/Save_Quirk = 0 c8.Shift_quirk = 0 +c8.Wrap_mode = 1 c8scrnsize = 6 calc.char = 0 calc.return = 0 @@ -15,27 +16,27 @@ calc.temp2 = 0 chip8.audio toggle = 0 chip8.audio_buffer = 1 chip8.blendmode = 0 -chip8.delay_timer = 0 +chip8.delay_timer = 1 chip8.drawflag = 300 chip8.drawmode = Fast/Sharp chip8.drawplane = 1 chip8.drawvariety = 0 chip8.dummy = 8193 -chip8.dummy2 = 23 +chip8.dummy2 = 35 chip8.dummy3 = 3 chip8.dummy4 = 1 chip8.dummy5 = 1 chip8.fx0aflag = 0 chip8.HPSFlag = 0 -chip8.I = 782 -chip8.pc = 744 +chip8.I = 796 +chip8.pc = 724 chip8.pitch = 64 -chip8.rand = 185 +chip8.rand = 206 chip8.return = 0 chip8.screenheight = 64 chip8.screenwidth = 128 chip8.sound_timer = 0 -chip8.spritewidth = 8 +chip8.spritewidth = 64 chip8m.collisioncolor = 255 core.byte_return = 0 core.condition_test = 0 @@ -49,7 +50,7 @@ core.op.dummy2 = 0 core.read_return = 0 core.rotate_return = 0 core.shift_return = 0 -CPF = 60 +CPF = 120 flags.met = 0 op.opcode = 0 op.pos = 0 @@ -205,25 +206,27 @@ Boot-128 = { chip8.keyboard = { } chip8.memory = { } chip8.registers = { - 22 + 34 0 0 0 8 - 126 - 4 - 28 - 22 + 82 + 100 + 132 + 34 8 - 2 + 3 0 0 0 6 - 0 + 1 } chip8.screen = { } chip8.screen2 = { } +chip8.screen3 = { } +chip8.screen4 = { } chip8.stack = { } schip8.font = { 0x7C @@ -419,6 +422,8 @@ WhenGreenFlagClicked() List.DeleteAll(chip8.memory); List.DeleteAll(chip8.screen); List.DeleteAll(chip8.screen2); + List.DeleteAll(chip8.screen3); + List.DeleteAll(chip8.screen4); List.DeleteAll(chip8.keyboard); chip8.drawmode = "Fast/Sharp"; Control.DeleteThisClone(); @@ -442,7 +447,7 @@ WhenKeyPressed(8) VIP jumps = ((VIP jumps + 1) % 2); } -WhenKeyPressed(9) +WhenKeyPressed(n) { SF2091! fix = ((SF2091! fix + 1) % 2); } @@ -488,6 +493,7 @@ WhenKeyPressed(0) If (chip8.CompatMode == "Octo") { chip8.CompatMode = "SCHIP"; + c8.Wrap_mode = 0; } Else { @@ -497,6 +503,7 @@ WhenKeyPressed(0) c8.Load/Save_Quirk = 0; c8.Shift_quirk = 0; VIP jumps = 0; + c8.Wrap_mode = 0; } Else { @@ -507,10 +514,12 @@ WhenKeyPressed(0) c8.Shift_quirk = 1; VIP jumps = 1; SF2091! fix = 0; + c8.Wrap_mode = 0; } Else { chip8.CompatMode = "Octo"; + c8.Wrap_mode = 1; } } } @@ -522,12 +531,74 @@ WhenKeyPressed(m) chip8.audio toggle = ((chip8.audio toggle + 1) % 2); } +WhenKeyPressed(9) +{ + c8.Wrap_mode = ((c8.Wrap_mode + 1) % 2); +} + //----- Broadcast received events ------------------------------------------------------------------------------------- WhenBroadcastReceived(Chip-8) +{ + If (rom.title == "SpaceFight2091 ") + { + SF2091! fix = 1; + chip8.CompatMode = "SCHIP"; + } + Else + { + SF2091! fix = 0; + } + Event.Broadcast("WAVE-8 reset"); +} + +WhenBroadcastReceived(exit emulator) +{ + Variable.Hide(c8scrnsize); + Variable.Hide(chip8.pc); + Variable.Hide(c8.Load/Save_Quirk); + Variable.Hide(c8.Shift_quirk); + Variable.Hide(CPF); + Variable.Hide(VIP jumps); + chip8.audio toggle = 0; + List.Hide(chip8.stack); + Variable.Hide(SF2091! fix); + c8scrnsize = 6; + Variable.Hide(chip8.CompatMode); + Variable.Hide(chip8.drawmode); + Variable.Hide(c8.Wrap_mode); + List.Hide(chip8.registers); + Stop(other scripts in sprite); + Control.DeleteThisClone(); +} + +WhenBroadcastReceived(Project not saving fix) +{ + List.DeleteAll(chip8.memory); + List.DeleteAll(chip8.screen); + List.DeleteAll(chip8m.PCM); + List.DeleteAll(chip8.audiobuffer); + List.DeleteAll(chip8.screen2); + List.DeleteAll(chip8.screen3); + List.DeleteAll(chip8.screen4); + List.DeleteAll(chip8.stack); + c8.Load/Save_Quirk = 0; + c8.Shift_quirk = 0; + CPF = 120; + chip8.CompatMode = "Octo"; + VIP jumps = 1; + SF2091! fix = 0; + c8.Wrap_mode = 1; +} + +WhenBroadcastReceived(WAVE-8 reset) { Stop(other scripts in sprite); + Event.BroadcastAndWait("prune"); + Sound.ClearEffects(); + Sound.SetVolumeTo(0); + Sound.StopAllSounds(); Call chip8.reset; Event.Broadcast("WAVE-8_drawkeys"); If ((chip8.memory[513] == 18) And (chip8.memory[514] == 96)) @@ -537,6 +608,7 @@ WhenBroadcastReceived(Chip-8) chip8.pc = 704; Call Screen Resize(64)(64); } + Event.BroadcastAndWait("un-needed broadcast"); If (chip8.audio toggle == 0) { Event.BroadcastAndWait("wave create"); @@ -570,48 +642,13 @@ WhenBroadcastReceived(Chip-8) If Sensing.KeyPressed(enter) { Stop(other scripts in sprite); - Event.Broadcast("Chip-8"); + Event.Broadcast("WAVE-8 reset"); Stop(this script); } Sound.SetVolumeTo(Sound.Volume()); } } -WhenBroadcastReceived(exit emulator) -{ - Variable.Hide(c8scrnsize); - Variable.Hide(chip8.pc); - Variable.Hide(c8.Load/Save_Quirk); - Variable.Hide(c8.Shift_quirk); - Variable.Hide(CPF); - Variable.Hide(VIP jumps); - chip8.audio toggle = 0; - List.Hide(chip8.stack); - Variable.Hide(SF2091! fix); - c8scrnsize = 6; - Variable.Hide(chip8.CompatMode); - Variable.Hide(chip8.drawmode); - List.Hide(chip8.registers); - Stop(other scripts in sprite); - Control.DeleteThisClone(); -} - -WhenBroadcastReceived(Project not saving fix) -{ - List.DeleteAll(chip8.memory); - List.DeleteAll(chip8.screen); - List.DeleteAll(chip8m.PCM); - List.DeleteAll(chip8.audiobuffer); - List.DeleteAll(chip8.screen2); - List.DeleteAll(chip8.stack); - c8.Load/Save_Quirk = 0; - c8.Shift_quirk = 0; - CPF = 60; - chip8.CompatMode = "Octo"; - VIP jumps = 1; - SF2091! fix = 0; -} - //----- Custom blocks ------------------------------------------------------------------------------------------------- @@ -648,22 +685,22 @@ Define chip8.frame(string cycles) (warp=true) Define chip8.get_keyboard (warp=true) { List.DeleteAll(chip8.keyboard); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[1]) Or (Mobile Keypad state[14] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[2]) Or (Mobile Keypad state[1] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[3]) Or (Mobile Keypad state[2] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[4]) Or (Mobile Keypad state[3] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[5]) Or (Mobile Keypad state[5] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[6]) Or (Mobile Keypad state[6] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[7]) Or (Mobile Keypad state[7] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[8]) Or (Mobile Keypad state[9] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[9]) Or (Mobile Keypad state[10] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[10]) Or (Mobile Keypad state[11] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[11]) Or (Mobile Keypad state[13] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[12]) Or (Mobile Keypad state[15] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[13]) Or (Mobile Keypad state[4] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[14]) Or (Mobile Keypad state[8] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[15]) Or (Mobile Keypad state[12] == 1)) + 0)); - List.Add(chip8.keyboard, ((Sensing.KeyPressed(controls.chip8[16]) Or (Mobile Keypad state[16] == 1)) + 0)); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[1]) Or (Mobile Keypad state[14] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[2]) Or (Mobile Keypad state[1] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[3]) Or (Mobile Keypad state[2] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[4]) Or (Mobile Keypad state[3] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[5]) Or (Mobile Keypad state[5] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[6]) Or (Mobile Keypad state[6] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[7]) Or (Mobile Keypad state[7] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[8]) Or (Mobile Keypad state[9] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[9]) Or (Mobile Keypad state[10] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[10]) Or (Mobile Keypad state[11] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[11]) Or (Mobile Keypad state[13] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[12]) Or (Mobile Keypad state[15] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[13]) Or (Mobile Keypad state[4] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[14]) Or (Mobile Keypad state[8] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[15]) Or (Mobile Keypad state[12] == 1)))); + List.Add(chip8.keyboard, floor((Sensing.KeyPressed(controls.chip8[16]) Or (Mobile Keypad state[16] == 1)))); } Define chip8.opcode(string op1)(string op2) (warp=true) @@ -678,7 +715,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { Call chip8.render; } - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { List.DeleteAll(chip8.screen); Repeat ((chip8.screenheight * chip8.screenwidth)) @@ -694,6 +731,22 @@ Define chip8.opcode(string op1)(string op2) (warp=true) List.Add(chip8.screen2, 0); } } + If (3 < (chip8.drawplane % 8)) + { + List.DeleteAll(chip8.screen3); + Repeat ((chip8.screenheight * chip8.screenwidth)) + { + List.Add(chip8.screen3, 0); + } + } + If (7 < chip8.drawplane) + { + List.DeleteAll(chip8.screen4); + Repeat ((chip8.screenheight * chip8.screenwidth)) + { + List.Add(chip8.screen4, 0); + } + } } Stop(this script); } @@ -705,30 +758,44 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.drawflag = 0; chip8.dummy4 = (op2 % 16); - If (((chip8.screenwidth == 64) And (0 < ((op2 % 16) % 2))) And (chip8.CompatMode == "SCHIP+HPS")) + If ((chip8.screenwidth == 64) And (chip8.CompatMode == "SCHIP+HPS")) { - If (chip8.HPSFlag == 0) + If (0 < (op2 % 2)) { - chip8.dummy4 += -1; - chip8.HPSFlag = 1; - } - Else - { - chip8.HPSFlag = 0; + If (chip8.HPSFlag == 0) + { + chip8.dummy4 += -1; + chip8.HPSFlag = 1; + } + Else + { + chip8.HPSFlag = 0; + } } + chip8.dummy4 = ceiling((chip8.dummy4 / 2)); } Repeat ((chip8.screenwidth * chip8.dummy4)) { - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { List.InsertItem(chip8.screen, 1, 0); List.DeleteItem(chip8.screen, last); } - If (1 < chip8.drawplane) + If (1 < (chip8.drawplane % 4)) { List.InsertItem(chip8.screen2, 1, 0); List.DeleteItem(chip8.screen2, last); } + If (3 < (chip8.drawplane % 8)) + { + List.InsertItem(chip8.screen3, 1, 0); + List.DeleteItem(chip8.screen3, last); + } + If (7 < chip8.drawplane) + { + List.InsertItem(chip8.screen4, 1, 0); + List.DeleteItem(chip8.screen4, last); + } } } Stop(this script); @@ -739,30 +806,44 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.drawflag = 0; chip8.dummy4 = (op2 % 16); - If (((chip8.screenwidth == 64) And (0 < ((op2 % 16) % 2))) And (chip8.CompatMode == "SCHIP+HPS")) + If ((chip8.screenwidth == 64) And (chip8.CompatMode == "SCHIP+HPS")) { - If (chip8.HPSFlag == 0) + If (0 < (op2 % 2)) { - chip8.dummy4 += -1; - chip8.HPSFlag = 1; - } - Else - { - chip8.HPSFlag = 0; + If (chip8.HPSFlag == 0) + { + chip8.dummy4 += -1; + chip8.HPSFlag = 1; + } + Else + { + chip8.HPSFlag = 0; + } } + chip8.dummy4 = ceiling((chip8.dummy4 / 2)); } Repeat ((chip8.screenwidth * chip8.dummy4)) { - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { - List.InsertItem(chip8.screen, last, 0); + List.Add(chip8.screen, 0); List.DeleteItem(chip8.screen, 1); } - If (1 < chip8.drawplane) + If (1 < (chip8.drawplane % 4)) { - List.InsertItem(chip8.screen2, last, 0); + List.Add(chip8.screen2, 0); List.DeleteItem(chip8.screen2, 1); } + If (3 < (chip8.drawplane % 8)) + { + List.Add(chip8.screen3, 0); + List.DeleteItem(chip8.screen3, 1); + } + If (7 < chip8.drawplane) + { + List.Add(chip8.screen4, 0); + List.DeleteItem(chip8.screen4, 1); + } } } Stop(this script); @@ -773,7 +854,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) If (0 < chip8.drawplane) { chip8.drawflag = 0; - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { Repeat ((chip8.screenwidth * chip8.screenheight)) { @@ -782,7 +863,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } } chip8.dummy = 0; - If (1 < chip8.drawplane) + If (1 < (chip8.drawplane % 4)) { Repeat ((chip8.screenwidth * chip8.screenheight)) { @@ -790,6 +871,24 @@ Define chip8.opcode(string op1)(string op2) (warp=true) List.ReplaceItem(chip8.screen2, chip8.dummy, ((chip8.screen2[chip8.dummy] + 1) % 2)); } } + chip8.dummy = 0; + If (3 < (chip8.drawplane % 8)) + { + Repeat ((chip8.screenwidth * chip8.screenheight)) + { + chip8.dummy += 1; + List.ReplaceItem(chip8.screen3, chip8.dummy, ((chip8.screen3[chip8.dummy] + 1) % 2)); + } + } + chip8.dummy = 0; + If (7 < chip8.drawplane) + { + Repeat ((chip8.screenwidth * chip8.screenheight)) + { + chip8.dummy += 1; + List.ReplaceItem(chip8.screen4, chip8.dummy, ((chip8.screen4[chip8.dummy] + 1) % 2)); + } + } } Stop(this script); } @@ -812,7 +911,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.dummy3 = 4; } - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { chip8.dummy = 1; Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) @@ -842,7 +941,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } chip8.dummy4 = ""; } - If (1 < chip8.drawplane) + If (1 < (chip8.drawplane % 4)) { chip8.dummy = 1; Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) @@ -872,6 +971,66 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } chip8.dummy4 = ""; } + If (3 < (chip8.drawplane % 8)) + { + chip8.dummy = 1; + Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) + { + chip8.dummy4 = ""; + chip8.dummy2 = 0; + Repeat ((chip8.screenwidth - chip8.dummy3)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen3[(chip8.dummy + chip8.dummy2)]); + chip8.dummy2 += 1; + } + chip8.dummy2 = chip8.dummy3; + chip8.dummy5 = 1; + Repeat (Variable.Length(chip8.dummy4)) + { + List.ReplaceItem(chip8.screen3, (chip8.dummy + chip8.dummy2), Operator.LetterOf(chip8.dummy4, chip8.dummy5)); + chip8.dummy2 += 1; + chip8.dummy5 += 1; + } + chip8.dummy2 = 0; + Repeat (chip8.dummy3) + { + List.ReplaceItem(chip8.screen3, (chip8.dummy + chip8.dummy2), 0); + chip8.dummy2 += 1; + } + chip8.dummy += chip8.screenwidth; + } + chip8.dummy4 = ""; + } + If (7 < chip8.drawplane) + { + chip8.dummy = 1; + Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) + { + chip8.dummy4 = ""; + chip8.dummy2 = 0; + Repeat ((chip8.screenwidth - chip8.dummy3)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen4[(chip8.dummy + chip8.dummy2)]); + chip8.dummy2 += 1; + } + chip8.dummy2 = chip8.dummy3; + chip8.dummy5 = 1; + Repeat (Variable.Length(chip8.dummy4)) + { + List.ReplaceItem(chip8.screen4, (chip8.dummy + chip8.dummy2), Operator.LetterOf(chip8.dummy4, chip8.dummy5)); + chip8.dummy2 += 1; + chip8.dummy5 += 1; + } + chip8.dummy2 = 0; + Repeat (chip8.dummy3) + { + List.ReplaceItem(chip8.screen4, (chip8.dummy + chip8.dummy2), 0); + chip8.dummy2 += 1; + } + chip8.dummy += chip8.screenwidth; + } + chip8.dummy4 = ""; + } } Stop(this script); } @@ -888,13 +1047,13 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.dummy3 = 4; } - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { chip8.dummy = 1; Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) { chip8.dummy4 = ""; - chip8.dummy2 = 4; + chip8.dummy2 = (chip8.screenwidth / 32); Repeat ((chip8.screenwidth - chip8.dummy3)) { chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen[(chip8.dummy + chip8.dummy2)]); @@ -916,13 +1075,13 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.dummy += chip8.screenwidth; } } - If (1 < chip8.drawplane) + If (1 < (chip8.drawplane % 4)) { chip8.dummy = 1; Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) { chip8.dummy4 = ""; - chip8.dummy2 = 4; + chip8.dummy2 = (chip8.screenwidth / 32); Repeat ((chip8.screenwidth - chip8.dummy3)) { chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen2[(chip8.dummy + chip8.dummy2)]); @@ -944,8 +1103,64 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.dummy += chip8.screenwidth; } } + If (3 < (chip8.drawplane % 8)) + { + chip8.dummy = 1; + Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) + { + chip8.dummy4 = ""; + chip8.dummy2 = (chip8.screenwidth / 32); + Repeat ((chip8.screenwidth - chip8.dummy3)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen3[(chip8.dummy + chip8.dummy2)]); + chip8.dummy2 += 1; + } + Repeat ((chip8.dummy3 / 2)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, 00); + } + chip8.dummy2 = 0; + chip8.dummy5 = 1; + Repeat (chip8.screenwidth) + { + List.ReplaceItem(chip8.screen3, (chip8.dummy + chip8.dummy2), Operator.LetterOf(chip8.dummy4, chip8.dummy5)); + chip8.dummy2 += 1; + chip8.dummy5 += 1; + } + chip8.dummy2 = 0; + chip8.dummy += chip8.screenwidth; + } + } + If (7 < chip8.drawplane) + { + chip8.dummy = 1; + Repeat Until (chip8.dummy > (chip8.screenheight * chip8.screenwidth)) + { + chip8.dummy4 = ""; + chip8.dummy2 = (chip8.screenwidth / 32); + Repeat ((chip8.screenwidth - chip8.dummy3)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, chip8.screen4[(chip8.dummy + chip8.dummy2)]); + chip8.dummy2 += 1; + } + Repeat ((chip8.dummy3 / 2)) + { + chip8.dummy4 = Operator.Join(chip8.dummy4, 00); + } + chip8.dummy2 = 0; + chip8.dummy5 = 1; + Repeat (chip8.screenwidth) + { + List.ReplaceItem(chip8.screen4, (chip8.dummy + chip8.dummy2), Operator.LetterOf(chip8.dummy4, chip8.dummy5)); + chip8.dummy2 += 1; + chip8.dummy5 += 1; + } + chip8.dummy2 = 0; + chip8.dummy += chip8.screenwidth; + } + } + Stop(this script); } - Stop(this script); } If (op2 == "0xF1") { @@ -1197,107 +1412,138 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } If (op1 < 144) { - If ((op2 % 16) < 4) + If ((op2 % 16) < 8) { - If ((op2 % 16) == 0) + If ((op2 % 16) < 4) { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), chip8.registers[(1 + floor((op2 / 16)))]); + If ((op2 % 16) == 0) + { + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), chip8.registers[(1 + floor((op2 / 16)))]); + Stop(this script); + } + If ((op2 % 16) == 1) + { + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), or_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + } + If ((op2 % 16) == 2) + { + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), and_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + } + If ((op2 % 16) == 3) + { + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), xor_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + } + If (chip8.CompatMode == "VIP") + { + List.ReplaceItem(chip8.registers, 16, 0); + } Stop(this script); } - If ((op2 % 16) == 1) + Else { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), or_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + If ((op2 % 16) == 4) + { + chip8.dummy = (chip8.registers[(1 + (op1 % 16))] + chip8.registers[(1 + floor((op2 / 16)))]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); + List.ReplaceItem(chip8.registers, 16, ((chip8.dummy > 255) + )); + Stop(this script); + } + If ((op2 % 16) == 5) + { + chip8.dummy = (chip8.registers[(1 + (op1 % 16))] - chip8.registers[(1 + floor((op2 / 16)))]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); + List.ReplaceItem(chip8.registers, 16, Operator.Round((Not ((chip8.dummy < 0))))); + Stop(this script); + } + If ((op2 % 16) == 6) + { + If (c8.Shift_quirk == 1) + { + chip8.dummy = chip8.registers[(1 + floor((op2 / 16)))]; + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + floor((op2 / 16)))] / 2))); + } + Else + { + chip8.dummy = chip8.registers[(1 + (op1 % 16))]; + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + (op1 % 16))] / 2))); + } + List.ReplaceItem(chip8.registers, 16, (chip8.dummy % 2)); + Stop(this script); + } + chip8.dummy = (chip8.registers[(1 + floor((op2 / 16)))] - chip8.registers[(1 + (op1 % 16))]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); + List.ReplaceItem(chip8.registers, 16, Operator.Round((Not ((chip8.dummy < 0))))); + Stop(this script); } - If ((op2 % 16) == 2) + } + Else + { + If ((op2 % 16) == 14) { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), and_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + If (c8.Shift_quirk == 1) + { + chip8.dummy = chip8.registers[(1 + floor((op2 / 16)))]; + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((2 * chip8.registers[(1 + floor((op2 / 16)))]) % 256)); + } + Else + { + chip8.dummy = chip8.registers[(1 + (op1 % 16))]; + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((2 * chip8.registers[(1 + (op1 % 16))]) % 256)); + } + List.ReplaceItem(chip8.registers, 16, Operator.Round((chip8.dummy > 127))); + Stop(this script); } - If ((op2 % 16) == 3) + If ((op2 % 16) == 8) { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), xor_table[(((chip8.registers[(1 + (op1 % 16))] * 256) + chip8.registers[(1 + floor((op2 / 16)))]) + 1)]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((floor((chip8.registers[(1 + floor((op2 / 16)))] / 2)) + ((chip8.registers[(1 + floor((op2 / 16)))] % 2) * 128)) % 256)); + Stop(this script); } - If (chip8.CompatMode == "VIP") + If ((op2 % 16) == 9) { - List.ReplaceItem(chip8.registers, 16, 0); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (((chip8.registers[(1 + floor((op2 / 16)))] * 2) + floor((chip8.registers[(1 + floor((op2 / 16)))] / 128))) % 256)); + Stop(this script); } - Stop(this script); - } - If ((op2 % 16) == 4) - { - chip8.dummy = (chip8.registers[(1 + (op1 % 16))] + chip8.registers[(1 + floor((op2 / 16)))]); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); - List.ReplaceItem(chip8.registers, 16, ((chip8.dummy > 255) + )); - Stop(this script); - } - If ((op2 % 16) == 5) - { - chip8.dummy = (chip8.registers[(1 + (op1 % 16))] - chip8.registers[(1 + floor((op2 / 16)))]); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); - List.ReplaceItem(chip8.registers, 16, ((Not ((chip8.dummy < 0))) + 0)); - Stop(this script); - } - If ((op2 % 16) == 6) - { - If (c8.Shift_quirk == 1) + If ((op2 % 16) == 10) { - chip8.dummy = chip8.registers[(1 + floor((op2 / 16)))]; - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + floor((op2 / 16)))] / 2))); + chip8.dummy = 0; + chip8.return = 0; + Repeat (8) + { + chip8.dummy2 = Operator.Round(e ^((chip8.dummy * ln(2)))); + chip8.return += (chip8.dummy2 * (((floor((chip8.registers[(1 + floor((op2 / 16)))] / chip8.dummy2)) % 2) + (floor((chip8.registers[(1 + (op1 % 16))] / chip8.dummy2)) % 2)) > 1)); + chip8.dummy += 1; + } + List.ReplaceItem(chip8.registers, 16, Operator.Round((chip8.return > 0))); + Stop(this script); } - Else + If ((op2 % 16) == 11) { - chip8.dummy = chip8.registers[(1 + (op1 % 16))]; - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + (op1 % 16))] / 2))); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (((chip8.registers[(1 + floor((op2 / 16)))] + 1) * -1) % 256)); + Stop(this script); } - List.ReplaceItem(chip8.registers, 16, (chip8.dummy % 2)); - Stop(this script); - } - If ((op2 % 16) == 7) - { - chip8.dummy = (chip8.registers[(1 + floor((op2 / 16)))] - chip8.registers[(1 + (op1 % 16))]); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.dummy % 256)); - List.ReplaceItem(chip8.registers, 16, ((Not ((chip8.dummy < 0))) + 0)); - Stop(this script); - } - If ((op2 % 16) == 8) - { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((floor((chip8.registers[(1 + floor((op2 / 16)))] / 2)) + ((chip8.registers[(1 + floor((op2 / 16)))] % 2) * 128)) % 256)); - Stop(this script); - } - If ((op2 % 16) == 9) - { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (((chip8.registers[(1 + floor((op2 / 16)))] * 2) + floor((chip8.registers[(1 + floor((op2 / 16)))] / 128))) % 256)); - Stop(this script); - } - If ((op2 % 16) == 10) - { - chip8.dummy = 0; - chip8.return = 0; - Repeat (8) + If ((op2 % 16) == 12) { - chip8.dummy2 = Operator.Round(e ^((chip8.dummy * ln(2)))); - chip8.return += (chip8.dummy2 * (((floor((chip8.registers[(1 + floor((op2 / 16)))] / chip8.dummy2)) % 2) + (floor((chip8.registers[(1 + (op1 % 16))] / chip8.dummy2)) % 2)) > 1)); - chip8.dummy += 1; + chip8.return = floor((chip8.registers[(1 + (op1 % 16))] * chip8.registers[(1 + floor((op2 / 16)))])); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.return % 256)); + List.ReplaceItem(chip8.registers, 16, floor((chip8.return / 256))); + Stop(this script); } - List.ReplaceItem(chip8.registers, 16, ((chip8.return > 0) + )); - Stop(this script); - } - If ((op2 % 16) == 11) - { - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (((chip8.registers[(1 + floor((op2 / 16)))] + 1) * -1) % 256)); - Stop(this script); - } - If ((op2 % 16) == 12) - { - chip8.return = floor((chip8.registers[(1 + (op1 % 16))] * chip8.registers[(1 + floor((op2 / 16)))])); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (chip8.return % 256)); - List.ReplaceItem(chip8.registers, 16, floor((chip8.return / 256))); - Stop(this script); - } - If ((op2 % 16) == 13) - { - chip8.return = (chip8.registers[(1 + (op1 % 16))] % chip8.registers[(1 + floor((op2 / 16)))]); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (floor((chip8.registers[(1 + (op1 % 16))] / chip8.registers[(1 + floor((op2 / 16)))])) % 256)); - List.ReplaceItem(chip8.registers, 16, floor(chip8.return)); + If ((op2 % 16) == 13) + { + chip8.return = (chip8.registers[(1 + (op1 % 16))] % chip8.registers[(1 + floor((op2 / 16)))]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), (floor((chip8.registers[(1 + (op1 % 16))] / chip8.registers[(1 + floor((op2 / 16)))])) % 256)); + List.ReplaceItem(chip8.registers, 16, floor(chip8.return)); + If (chip8.registers[(1 + (op1 % 16))] == "NaN") + { + List.ReplaceItem(chip8.registers, 16, 0); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), 0); + } + Stop(this script); + } + List.ReplaceItem(chip8.registers, 16, 0); + chip8.return = (chip8.registers[(1 + floor((op2 / 16)))] % chip8.registers[(1 + (op1 % 16))]); + List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + floor((op2 / 16)))] / chip8.registers[(1 + (op1 % 16))]))); + List.ReplaceItem(chip8.registers, 16, chip8.return); If (chip8.registers[(1 + (op1 % 16))] == "NaN") { List.ReplaceItem(chip8.registers, 16, 0); @@ -1305,31 +1551,6 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } Stop(this script); } - If ((op2 % 16) == 14) - { - If (c8.Shift_quirk == 1) - { - chip8.dummy = chip8.registers[(1 + floor((op2 / 16)))]; - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((2 * chip8.registers[(1 + floor((op2 / 16)))]) % 256)); - } - Else - { - chip8.dummy = chip8.registers[(1 + (op1 % 16))]; - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), ((2 * chip8.registers[(1 + (op1 % 16))]) % 256)); - } - List.ReplaceItem(chip8.registers, 16, ((chip8.dummy > 127) + )); - Stop(this script); - } - List.ReplaceItem(chip8.registers, 16, 0); - chip8.return = (chip8.registers[(1 + floor((op2 / 16)))] % chip8.registers[(1 + (op1 % 16))]); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), floor((chip8.registers[(1 + floor((op2 / 16)))] / chip8.registers[(1 + (op1 % 16))]))); - List.ReplaceItem(chip8.registers, 16, chip8.return); - If (chip8.registers[(1 + (op1 % 16))] == "NaN") - { - List.ReplaceItem(chip8.registers, 16, 0); - List.ReplaceItem(chip8.registers, (1 + (op1 % 16)), 0); - } - Stop(this script); } If (op1 < 160) { @@ -1363,7 +1584,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) If (op1 < 208) { chip8.dummy = 0; - chip8.rand = Operator.Random(0 / 255); + chip8.rand = Operator.Random(0 , 255); chip8.return = 0; Repeat (8) { @@ -1407,7 +1628,8 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.dummy5 = (1 + (((op2 % 16) == 0) And ((chip8.CompatMode == "Octo") Or (chip8.screenwidth == 128)))); chip8.dummy2 = (chip8.dummy2 % chip8.screenheight); - If (chip8.CompatMode == "VIP") + r.8 = 0; + If ((chip8.CompatMode == "VIP") Or ((chip8.screenheight == 32) And (chip8.CompatMode == "SCHIP+HPS"))) { A = CPF; } @@ -1430,7 +1652,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) { chip8.drawflag = 0; } - If (Not ((chip8.drawplane == 2))) + If ((chip8.drawplane % 2) == 1) { Repeat (chip8.dummy4) { @@ -1440,7 +1662,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.return = chip8.memory[(chip8.dummy3 + 1)]; Repeat (8) { - If ((chip8.return > 127) And (Not ((((chip8.dummy > chip8.screenwidth) Or (chip8.dummy2 > chip8.screenheight)) And (Not ((chip8.CompatMode == "Octo"))))))) + If ((chip8.return > 127) And (Not ((((chip8.dummy > (chip8.screenwidth - 1)) Or (chip8.dummy2 > (chip8.screenheight - 1))) And (c8.Wrap_mode == 0))))) { If (chip8.screen[(1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight))))] == 0) { @@ -1466,13 +1688,14 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.dummy2 += 1; } } - If (chip8.drawplane == 3) + If ((chip8.drawplane % 4) == 3) { + r.8 += 1; chip8.I += (chip8.dummy4 * chip8.dummy5); chip8.dummy3 = chip8.I; chip8.dummy2 = chip8.registers[(1 + floor((op2 / 16)))]; } - If (1 < chip8.drawplane) + If ((chip8.drawplane % 4) > 1) { Repeat (chip8.dummy4) { @@ -1482,7 +1705,7 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.return = chip8.memory[(chip8.dummy3 + 1)]; Repeat (8) { - If ((chip8.return > 127) And (Not ((((chip8.dummy > chip8.screenwidth) Or (chip8.dummy2 > chip8.screenheight)) And (Not ((chip8.CompatMode == "Octo"))))))) + If ((chip8.return > 127) And (Not ((((chip8.dummy > (chip8.screenwidth - 1)) Or (chip8.dummy2 > (chip8.screenheight - 1))) And (c8.Wrap_mode == 0))))) { If (chip8.screen2[(1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight))))] == 0) { @@ -1508,13 +1731,103 @@ Define chip8.opcode(string op1)(string op2) (warp=true) chip8.dummy2 += 1; } } - If (chip8.drawplane == 3) + If ((chip8.drawplane % 8) > 4) + { + r.8 += 1; + chip8.I += (chip8.dummy4 * chip8.dummy5); + chip8.dummy3 = chip8.I; + chip8.dummy2 = chip8.registers[(1 + floor((op2 / 16)))]; + } + If ((chip8.drawplane % 8) > 3) + { + Repeat (chip8.dummy4) + { + chip8.dummy = chip8.registers[((op1 % 16) + 1)]; + Repeat (chip8.dummy5) + { + chip8.return = chip8.memory[(chip8.dummy3 + 1)]; + Repeat (8) + { + If ((chip8.return > 127) And (Not ((((chip8.dummy > (chip8.screenwidth - 1)) Or (chip8.dummy2 > (chip8.screenheight - 1))) And (c8.Wrap_mode == 0))))) + { + If (chip8.screen3[(1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight))))] == 0) + { + If (Not ((chip8.drawvariety == 2))) + { + List.ReplaceItem(chip8.screen3, (1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight)))), 1); + } + } + Else + { + If (Not ((chip8.drawvariety == 1))) + { + List.ReplaceItem(chip8.screen3, (1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight)))), 0); + } + control_incr_counter ?? - probably legacy function from Scratch 2.0; + } + } + chip8.return = ((chip8.return * 2) % 256); + chip8.dummy += 1; + } + chip8.dummy3 += 1; + } + chip8.dummy2 += 1; + } + } + If (chip8.drawplane > 8) + { + r.8 += 1; + chip8.I += (chip8.dummy4 * chip8.dummy5); + chip8.dummy3 = chip8.I; + chip8.dummy2 = chip8.registers[(1 + floor((op2 / 16)))]; + } + If (chip8.drawplane > 7) { - chip8.I += ( - (chip8.dummy4 * chip8.dummy5)); + Repeat (chip8.dummy4) + { + chip8.dummy = chip8.registers[((op1 % 16) + 1)]; + Repeat (chip8.dummy5) + { + chip8.return = chip8.memory[(chip8.dummy3 + 1)]; + Repeat (8) + { + If ((chip8.return > 127) And (Not ((((chip8.dummy > (chip8.screenwidth - 1)) Or (chip8.dummy2 > (chip8.screenheight - 1))) And (c8.Wrap_mode == 0))))) + { + If (chip8.screen4[(1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight))))] == 0) + { + If (Not ((chip8.drawvariety == 2))) + { + List.ReplaceItem(chip8.screen4, (1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight)))), 1); + } + } + Else + { + If (Not ((chip8.drawvariety == 1))) + { + List.ReplaceItem(chip8.screen4, (1 + ((chip8.dummy % chip8.screenwidth) + (chip8.screenwidth * (chip8.dummy2 % chip8.screenheight)))), 0); + } + control_incr_counter ?? - probably legacy function from Scratch 2.0; + } + } + chip8.return = ((chip8.return * 2) % 256); + chip8.dummy += 1; + } + chip8.dummy3 += 1; + } + chip8.dummy2 += 1; + } } + chip8.I += ( - ((chip8.dummy4 * chip8.dummy5) * r.8)); } } - List.ReplaceItem(chip8.registers, 16, ( + (0 < control_get_counter ?? - probably legacy function from Scratch 2.0))); + If (chip8.CompatMode == "SCHIP+HPS") + { + List.ReplaceItem(chip8.registers, 16, (control_get_counter ?? - probably legacy function from Scratch 2.0 % 256)); + } + Else + { + List.ReplaceItem(chip8.registers, 16, Operator.Round((0 < control_get_counter ?? - probably legacy function from Scratch 2.0))); + } Stop(this script); } If (op1 < 240) @@ -1636,6 +1949,11 @@ Define chip8.opcode(string op1)(string op2) (warp=true) } Stop(this script); } + If (op2 == "0x1F") + { + chip8.I = ((chip8.I - chip8.registers[(1 + (op1 % 16))]) % 65536); + Stop(this script); + } If (op2 == "0x20") { chip8.pc = chip8.memory[(((chip8.registers[(1 + (op1 % 16))] + chip8.I) % 65536) + 1)]; @@ -1776,12 +2094,12 @@ Define chip8.render (warp=true) { List.DeleteAll(_scanline); control_clear_counter ?? - probably legacy function from Scratch 2.0; - List.Add(_scanline, (chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2))); + List.Add(_scanline, ((chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2)) + ((chip8.screen3[chip8.dummy] * 4) + (chip8.screen4[chip8.dummy] * 8)))); Repeat (chip8.screenwidth) { chip8.dummy += 1; control_incr_counter ?? - probably legacy function from Scratch 2.0; - chip8.dummy3 = (chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2)); + chip8.dummy3 = ((chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2)) + ((chip8.screen3[chip8.dummy] * 4) + (chip8.screen4[chip8.dummy] * 8))); If (Not ((chip8.dummy3 == _scanline[last]))) { List.Add(_scanline, (control_get_counter ?? - probably legacy function from Scratch 2.0 * c8scrnsize)); @@ -1828,7 +2146,7 @@ Define chip8.render (warp=true) { chip8.dummy += 1; control_incr_counter ?? - probably legacy function from Scratch 2.0; - chip8.dummy3 = (chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2)); + chip8.dummy3 = ((chip8.screen[chip8.dummy] + (chip8.screen2[chip8.dummy] * 2)) + ((chip8.screen3[chip8.dummy] * 4) + (chip8.screen4[chip8.dummy] * 8))); If (Not ((chip8.dummy3 == _scanline[last]))) { List.Add(_scanline, (control_get_counter ?? - probably legacy function from Scratch 2.0 * c8scrnsize)); @@ -1863,10 +2181,6 @@ Define chip8.render (warp=true) Define chip8.reset (warp=true) { - Event.BroadcastAndWait("prune"); - Sound.ClearEffects(); - Sound.SetVolumeTo(0); - Sound.StopAllSounds(); chip8.pc = chip8.starting address; chip8.delay_timer = 0; Variable.Show(rom.title); @@ -1905,7 +2219,7 @@ Define chip8.reset (warp=true) List.Add(chip8.memory, "0x80"); List.Add(chip8.memory, "0xf0"); List.Add(chip8.memory, "0x10"); - List.Add(chip8.memory, "0xf0"); + List.Add(_rom, "0xf0"); List.Add(chip8.memory, "0xf0"); List.Add(chip8.memory, "0x80"); List.Add(chip8.memory, "0xf0"); @@ -1981,7 +2295,7 @@ Define chip8.reset (warp=true) chip8.dummy = 1; Repeat (List.Length(schip8.font)) { - List.Add(chip8.memory, (schip8.font[chip8.dummy] + )); + List.Add(chip8.memory, floor(schip8.font[chip8.dummy])); chip8.dummy += 1; } Repeat ((65536 - List.Length(chip8.memory))) @@ -2001,7 +2315,7 @@ Define chip8.reset (warp=true) { control_incr_counter ?? - probably legacy function from Scratch 2.0; chip8.dummy2 += 1; - List.ReplaceItem(chip8.memory, chip8.dummy2, (Boot-128[control_get_counter ?? - probably legacy function from Scratch 2.0] + )); + List.ReplaceItem(chip8.memory, chip8.dummy2, floor(Boot-128[control_get_counter ?? - probably legacy function from Scratch 2.0])); } chip8.dummy2 = chip8.starting address; control_clear_counter ?? - probably legacy function from Scratch 2.0; @@ -2009,7 +2323,7 @@ Define chip8.reset (warp=true) { control_incr_counter ?? - probably legacy function from Scratch 2.0; chip8.dummy2 += 1; - List.ReplaceItem(chip8.memory, chip8.dummy2, (_rom[control_get_counter ?? - probably legacy function from Scratch 2.0] + )); + List.ReplaceItem(chip8.memory, chip8.dummy2, floor(_rom[control_get_counter ?? - probably legacy function from Scratch 2.0])); } List.DeleteAll(chip8.registers); Repeat (16) @@ -2026,11 +2340,15 @@ Define chip8.reset (warp=true) chip8.dummy4 = 0; List.DeleteAll(chip8.screen); List.DeleteAll(chip8.screen2); + List.DeleteAll(chip8.screen3); + List.DeleteAll(chip8.screen4); chip8.drawplane = 1; Repeat (2048) { List.Add(chip8.screen, 0); List.Add(chip8.screen2, 0); + List.Add(chip8.screen3, 0); + List.Add(chip8.screen4, 0); } chip8.I = 0; chip8.pitch = 64; @@ -2054,8 +2372,9 @@ Define chip8.reset (warp=true) Variable.Show(c8.Shift_quirk); Variable.Show(chip8.CompatMode); Variable.Show(VIP jumps); - Variable.Show(SF2091! fix); Variable.Show(chip8.drawmode); + Variable.Show(c8.Wrap_mode); + Variable.Show(SF2091! fix); Sensing.ResetTimer(); } @@ -2097,12 +2416,16 @@ Define Screen Resize(string horizontal)(string vertical) (warp=true) chip8.drawflag = 0; List.DeleteAll(chip8.screen); List.DeleteAll(chip8.screen2); + List.DeleteAll(chip8.screen3); + List.DeleteAll(chip8.screen4); chip8.screenheight = vertical; chip8.screenwidth = horizontal; Repeat Until (((horizontal * vertical) - 1) == List.Length(chip8.screen)) { List.Add(chip8.screen, 0); List.Add(chip8.screen2, 0); + List.Add(chip8.screen3, 0); + List.Add(chip8.screen4, 0); } } @@ -2147,13 +2470,6 @@ Repeat (chip8.screenheight) Motion.ChangeYBy(( - c8scrnsize)); } -If (rom.title == "SpaceFight2091 ") -{ - SF2091! fix = 1; - Variable.Show(rom.title); - chip8.CompatMode = "SCHIP"; -} - //----- Costumes ------------------------------------------------------------------------------------------------------ diff --git a/Core (ARM7, ARM9).txt b/Core (ARM7, ARM9).txt index 977e360..a077972 100644 --- a/Core (ARM7, ARM9).txt +++ b/Core (ARM7, ARM9).txt @@ -1,8 +1,8 @@ //----- Variables ----------------------------------------------------------------------------------------------------- -arm7.pc = 597949 +arm7.pc = 1867301 arm7.read_return = 0x00000000 -arm9.pc = 597952 +arm9.pc = 1867306 arm9.read_return = 0x00000000 core.byte_return = 31 core.condition_test = false @@ -83,6 +83,7 @@ WhenBroadcastReceived(Project not saving fix) WhenBroadcastReceived(start game) { + Event.BroadcastAndWait("un-needed broadcast"); Variable.Show(rom.title); Call core.reset_memory; arm7.pc = 1; @@ -2030,8 +2031,3 @@ Looks.Say("[ARM7] Data Processing") //----- Costumes ------------------------------------------------------------------------------------------------------ costume1.svg - - -//----- Sounds -------------------------------------------------------------------------------------------------------- - -pop.wav diff --git a/DS Screens.txt b/DS Screens.txt index 6f98a31..f103439 100644 --- a/DS Screens.txt +++ b/DS Screens.txt @@ -4,8 +4,8 @@ arm7.read_return = 0 arm9.read_return = 0 core.byte_return = 0 render.dummy = 0 -x = 100 -y = 0 +x = 256 +y = 192 @@ -294,8 +294,3 @@ Define goto pixel at(string x)(string y) on screen(string screen) (warp=true) //----- Costumes ------------------------------------------------------------------------------------------------------ costume1.svg - - -//----- Sounds -------------------------------------------------------------------------------------------------------- - -pop.wav diff --git a/GB.txt b/GB.txt new file mode 100644 index 0000000..86f85e7 --- /dev/null +++ b/GB.txt @@ -0,0 +1,2863 @@ +//----- Variables ----------------------------------------------------------------------------------------------------- + ++sound sweep clock cycle = 0 ++sound sweep control = 0 ++sound sweep dir = 0 +.MBC = 5 +APU.clock = 8209 +cacheNext = 0 +cart.GBCMode = 1 +cpu.condition = 0 +cpu.HALT = 0 +cpu.interruptSwitch = 1 +cpu.speed = 2 +cycles.frame = 12 +fps1 = 0.016450125959344 +frameEvent = 1 +frameSkipFraction = 0 +frameSkipRender = 1 +frametime = 0.015999900642782 +i = 172 +JIT.blocksizemax = 256 +JIT.cache = 5791 +JIT.cacheEnd = 5858 +LCDY *160 = 22880 +mbc.rambanks = 4 +mbc.rombanks = 64 +mmu.addr = 57071 +mmu.addrTemp = 49340 +mmu.return = 242 +mmu.rombank = 39 +mmu.srambank = 0 +mmu.vrambank = 0 +mmu.wrambank = 1 +ppu.cachedcycles = 114 +ppu.CGBDMAcount = 0 +ppu.CGBDMAdest = 0 +ppu.CGBDMAsource = 0 +ppu.CGBDMAType = 0 +ppu.cyclesincr = 2 +ppu.DMAflag = 0 +ppu.LCDstate = 1 +ppu.linecycles = 84 +ppu.LineY = 151 +ppu.newByteFlag = 1 +ppu.OAMdma# = 160 +ppu.OAMdmastart = 57088 +ppu.pixelX = 0 +ppu.statcond1 = 0 +ppu.statcond2 = 0 +ppu.temp = 1 +ppu.transferAmount = 0 +ppu.windowcounter = 0 +ppu.windowincr = 0 +regs.PC = 5858 +regs.SP = 57065 +remainingPixels = 0 +screenColor = 0 +tim.DIV = 5880 +w1 = 0 +w2 = 0 +x1 = 1 +x2 = 1 +xf = 0 +XX = 71303.5 +y0 = 248 +y1 = 152 +y2 = 143 +y3 = 8 +y4 = 128 +y5 = 1024 +z.HLreg = 57074 +z0 = 0 +z1 = 14 +z2 = 2 +z3 = 57066 +z4 = 40 +z5 = 84 +z6 = 0 +z7 = 0 +z8 = 0 +z9 = 248 +z10 = 0 +z11 = 4 +z12 = 5133629 +z13 = 0 +z14 = 4110 +z15 = 6707 +z16 = 0 +z17 = 32 +z18 = 16 +z_ = 8567.1858869097 + + +//----- Lists --------------------------------------------------------------------------------------------------------- + ++sound envelope clock = { + 0 + 0 + 0 + 0 +} ++sound volume init = { + 0 + 0 + 0 + 0 +} +.HRAM = { } +.I/O = { } +.OAM = { } +.ROM = { } +.SRAM = { } +.VRAM = { } +.WRAM = { } +BRT = { } +code parameters = { } +cpu.op1 = { } +cpu.op2 = { } +cpu.opblocks = { } +cpu.opbytes = { } +cpu.powersof2 = { } +cpu.regF = { } +cpu.regs = { } +JIT.endblock = { } +ppu.DMGpalette = { + 0xc6d2a4 + 9279599 + 5133629 + 2105120 +} +ppu.GBCpalettesLUT = { } +ppu.LCDbuffer = { } +ppu.objGBCpalette = { + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +} +ppu.paletteconvertor = { + 16293912 + 16316640 + 14170144 + 526352 + 16306240 + 5810312 + 1591400 + 526352 + 16308392 + 14723192 + 7886984 + 8240 + 12112080 + 14188760 + 8388768 + 3670024 + 16316600 + 9488584 + 4745336 + 532552 + 16308400 + 7913592 + 6850624 + 5781536 + 15268064 + 11595912 + 5281912 + 2107472 + 16316600 + 9488584 + 4745336 + 532552 + 15268064 + 15268064 + 11595912 + 2107472 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 + 16314592 + 16314592 + 14188664 + 8 +} +ppu.PaletteRAM = { + 159 + 14 + 255 + 115 + 251 + 16 + 33 + 8 + 95 + 35 + 171 + 70 + 35 + 53 + 33 + 8 + 127 + 87 + 188 + 62 + 111 + 69 + 128 + 24 + 87 + 107 + 27 + 110 + 16 + 80 + 7 + 4 + 255 + 95 + 50 + 103 + 169 + 61 + 129 + 36 + 127 + 91 + 15 + 63 + 45 + 34 + 235 + 16 + 253 + 115 + 214 + 71 + 106 + 62 + 164 + 40 + 255 + 95 + 50 + 103 + 169 + 61 + 129 + 36 + 253 + 115 + 253 + 115 + 214 + 71 + 164 + 40 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 + 223 + 115 + 223 + 115 + 27 + 62 + 0 + 4 +} +ppu.spritebuffer = { } +ppu.spriteoverlay = { } +s = { } +z.bin = { + 00000000 + 00000001 + 00000010 + 00000011 + 00000100 + 00000101 + 00000110 + 00000111 + 00001000 + 00001001 + 00001010 + 00001011 + 00001100 + 00001101 + 00001110 + 00001111 + 00010000 + 00010001 + 00010010 + 00010011 + 00010100 + 00010101 + 00010110 + 00010111 + 00011000 + 00011001 + 00011010 + 00011011 + 00011100 + 00011101 + 00011110 + 00011111 + 00100000 + 00100001 + 00100010 + 00100011 + 00100100 + 00100101 + 00100110 + 00100111 + 00101000 + 00101001 + 00101010 + 00101011 + 00101100 + 00101101 + 00101110 + 00101111 + 00110000 + 00110001 + 00110010 + 00110011 + 00110100 + 00110101 + 00110110 + 00110111 + 00111000 + 00111001 + 00111010 + 00111011 + 00111100 + 00111101 + 00111110 + 00111111 + 01000000 + 01000001 + 01000010 + 01000011 + 01000100 + 01000101 + 01000110 + 01000111 + 01001000 + 01001001 + 01001010 + 01001011 + 01001100 + 01001101 + 01001110 + 01001111 + 01010000 + 01010001 + 01010010 + 01010011 + 01010100 + 01010101 + 01010110 + 01010111 + 01011000 + 01011001 + 01011010 + 01011011 + 01011100 + 01011101 + 01011110 + 01011111 + 01100000 + 01100001 + 01100010 + 01100011 + 01100100 + 01100101 + 01100110 + 01100111 + 01101000 + 01101001 + 01101010 + 01101011 + 01101100 + 01101101 + 01101110 + 01101111 + 01110000 + 01110001 + 01110010 + 01110011 + 01110100 + 01110101 + 01110110 + 01110111 + 01111000 + 01111001 + 01111010 + 01111011 + 01111100 + 01111101 + 01111110 + 01111111 + 10000000 + 10000001 + 10000010 + 10000011 + 10000100 + 10000101 + 10000110 + 10000111 + 10001000 + 10001001 + 10001010 + 10001011 + 10001100 + 10001101 + 10001110 + 10001111 + 10010000 + 10010001 + 10010010 + 10010011 + 10010100 + 10010101 + 10010110 + 10010111 + 10011000 + 10011001 + 10011010 + 10011011 + 10011100 + 10011101 + 10011110 + 10011111 + 10100000 + 10100001 + 10100010 + 10100011 + 10100100 + 10100101 + 10100110 + 10100111 + 10101000 + 10101001 + 10101010 + 10101011 + 10101100 + 10101101 + 10101110 + 10101111 + 10110000 + 10110001 + 10110010 + 10110011 + 10110100 + 10110101 + 10110110 + 10110111 + 10111000 + 10111001 + 10111010 + 10111011 + 10111100 + 10111101 + 10111110 + 10111111 + 11000000 + 11000001 + 11000010 + 11000011 + 11000100 + 11000101 + 11000110 + 11000111 + 11001000 + 11001001 + 11001010 + 11001011 + 11001100 + 11001101 + 11001110 + 11001111 + 11010000 + 11010001 + 11010010 + 11010011 + 11010100 + 11010101 + 11010110 + 11010111 + 11011000 + 11011001 + 11011010 + 11011011 + 11011100 + 11011101 + 11011110 + 11011111 + 11100000 + 11100001 + 11100010 + 11100011 + 11100100 + 11100101 + 11100110 + 11100111 + 11101000 + 11101001 + 11101010 + 11101011 + 11101100 + 11101101 + 11101110 + 11101111 + 11110000 + 11110001 + 11110010 + 11110011 + 11110100 + 11110101 + 11110110 + 11110111 + 11111000 + 11111001 + 11111010 + 11111011 + 11111100 + 11111101 + 11111110 + 11111111 +} + + +//----- Broadcast received events ------------------------------------------------------------------------------------- + +WhenBroadcastReceived(emulate!!) +{ + Pen.Clear(); + Event.BroadcastAndWait("reset emulator"); + Event.BroadcastAndWait("un-needed broadcast"); + Forever + { + Call mainLoop; + Control.Wait(0); + } +} + +WhenBroadcastReceived(Project not saving fix) +{ + List.DeleteAll(.HRAM); + List.DeleteAll(.I/O); + List.DeleteAll(.OAM); + List.DeleteAll(.SRAM); + List.DeleteAll(.VRAM); + List.DeleteAll(.WRAM); + List.DeleteAll(cpu.AND); + List.DeleteAll(cpu.op1); + List.DeleteAll(cpu.op2); + List.DeleteAll(cpu.opblocks); + List.DeleteAll(cpu.opbytes); + List.DeleteAll(cpu.OR); + List.DeleteAll(cpu.powersof2); + List.DeleteAll(cpu.regF); + List.DeleteAll(cpu.regs); + List.DeleteAll(cpu.XOR); + List.DeleteAll(debug.logfile); + List.DeleteAll(code parameters); + List.DeleteAll(JIT.endblock); + List.DeleteAll(ppu.LCDbuffer); + List.DeleteAll(ppu.spriteoverlay); + List.DeleteAll(BRT); + List.DeleteAll(ppu.GBCpalettesLUT); + List.DeleteAll(.ROM); +} + +WhenBroadcastReceived(reset emulator) +{ + Call setup.reset; + JIT BLOCKS CREATED = 0; + INSTRS EXECUTED = 0; + DEBUG.TOTALCYCLES = 0; + framecount = 0; + logline = 0; + Sensing.ResetTimer(); + x0 = (Sensing.DaysSince2000() * 86400); + deltaTime = 0; + fps1 = 0.01; + Event.Broadcast("create sound"); +} + + +//----- Custom blocks ------------------------------------------------------------------------------------------------- + +Define .APU write handler(string addr)(string byte) (warp=true) +{ + If (addr == "0xFF10") + { + +sound sweep control = (byte % 8); + +sound sweep dir = ((1 - (floor(((byte / 8) % 2)) * 2)) * (floor((byte / 16)) % 8)); + Stop(this script); + } + If (addr == "0xFF11") + { + List.ReplaceItem(+sound duty cycle, 1, floor((byte / 64))); + List.ReplaceItem(+sound length timer, 1, (byte % 64)); + Stop(this script); + } + If (addr == "0xFF12") + { + List.ReplaceItem(+sound volume, 1, floor((byte / 16))); + List.ReplaceItem(+sound volume init, 1, floor((byte / 16))); + List.ReplaceItem(+sound envelope timer, 1, (((2 * (floor((byte / 8)) % 2)) - 1) * (byte % 8))); + List.ReplaceItem(+sound envelope clock, 1, 0); + Stop(this script); + } + If ((addr == "0xFF13") Or (addr == "0xFF14")) + { + Call .updateCachedPitch(1)((((.I/O[21] % 8) * 256) + .I/O[20])); + If (addr == "0xFF14") + { + If (byte > 127) + { + List.ReplaceItem(+sound channels active, 1, 1); + List.ReplaceItem(+sound volume, 1, +sound volume init[1]); + } + Else + { + List.ReplaceItem(+sound channels active, 1, 0); + } + } + Stop(this script); + } + If (addr == "0xFF16") + { + List.ReplaceItem(+sound duty cycle, 2, floor((byte / 64))); + List.ReplaceItem(+sound length timer, 2, (byte % 64)); + Stop(this script); + } + If (addr == "0xFF17") + { + List.ReplaceItem(+sound volume, 2, floor((byte / 16))); + List.ReplaceItem(+sound volume init, 2, floor((byte / 16))); + List.ReplaceItem(+sound envelope timer, 2, (((2 * (floor((byte / 8)) % 2)) - 1) * (byte % 8))); + List.ReplaceItem(+sound envelope clock, 2, 0); + Stop(this script); + } + If ((addr == "0xFF18") Or (addr == "0xFF19")) + { + Call .updateCachedPitch(2)((((.I/O[26] % 8) * 256) + .I/O[25])); + If (addr == "0xFF19") + { + If (byte > 127) + { + List.ReplaceItem(+sound channels active, 2, 1); + List.ReplaceItem(+sound volume, 2, +sound volume init[2]); + } + Else + { + List.ReplaceItem(+sound channels active, 2, 0); + } + } + Stop(this script); + } + If (addr == "0xFF1B") + { + List.ReplaceItem(+sound length timer, 3, byte); + Stop(this script); + } + If (addr == "0xFF1C") + { + If ((floor((byte / 32)) % 4) == 0) + { + List.ReplaceItem(+sound volume, 3, 0); + List.ReplaceItem(+sound volume init, 3, 0); + } + Else + { + List.ReplaceItem(+sound volume, 3, (15 - ((floor((byte / 32)) % 4) * 5))); + List.ReplaceItem(+sound volume init, 3, (15 - ((floor((byte / 32)) % 4) * 5))); + } + Stop(this script); + } + If ((addr == "0xFF1D") Or (addr == "0xFF1E")) + { + Call .updateCachedPitch(3)((((.I/O[31] % 8) * 256) + .I/O[30])); + If (addr == "0xFF1E") + { + If (byte > 127) + { + List.ReplaceItem(+sound channels active, 3, 1); + List.ReplaceItem(+sound volume, 3, +sound volume init[3]); + } + Else + { + List.ReplaceItem(+sound channels active, 3, 0); + } + } + Stop(this script); + } + If (addr == "0xFF20") + { + List.ReplaceItem(+sound length timer, 4, byte); + Stop(this script); + } + If (addr == "0xFF21") + { + List.ReplaceItem(+sound volume, 4, floor((byte / 16))); + List.ReplaceItem(+sound volume init, 4, floor((byte / 16))); + List.ReplaceItem(+sound envelope timer, 4, (((2 * (floor((byte / 8)) % 2)) - 1) * (byte % 8))); + List.ReplaceItem(+sound envelope clock, 4, 0); + Stop(this script); + } + If (addr == "0xFF22") + { + List.ReplaceItem(+sound duty cycle, 4, (floor((byte / 8)) % 2)); + Call .updateCachedPitch(4)(((((byte % 8) + (((byte % 8) == 0) * 0.5)) * 16) * Operator.Round(e ^((ln(2) * floor((byte / 16))))))); + Stop(this script); + } + If (addr == "0xFF23") + { + If (byte > 127) + { + List.ReplaceItem(+sound channels active, 4, 1); + List.ReplaceItem(+sound volume, 4, +sound volume init[4]); + } + Else + { + List.ReplaceItem(+sound channels active, 4, 0); + } + Stop(this script); + } + If (addr == "0xFF24") + { + +globalVol.L = ((floor((byte / 16)) % 8) / 8); + +globalVol.R = ((floor((byte / 1)) % 8) / 8); + } +} + +Define .MBC HANDLER(string addr)(string byte) (warp=true) +{ + If (.MBC == 5) + { + If ((Not ((addr < "0x2000"))) And (addr < "0x3000")) + { + mmu.rombank = (byte % mbc.rombanks); + } + If ((Not ((addr < "0x3000"))) And (addr < "0x4000")) + { + mmu.rombank = (((byte % 2) * 256) + (mmu.rombank % 256)); + } + If ((Not ((addr < "0x4000"))) And (addr < "0x5000")) + { + mmu.srambank = (byte % 16); + } + } + Else + { + If ((.MBC == 1) Or (.MBC == 3)) + { + If ((Not ((addr < "0x2000"))) And (addr < "0x4000")) + { + mmu.rombank = byte; + } + If ((Not ((addr < "0x4000"))) And (addr < "0x5000")) + { + mmu.srambank = (byte % mbc.rambanks); + } + } + } + If ((Not ((regs.PC < "0x4000"))) And (regs.PC < "0x8000")) + { + i = (1 / ); + } +} + +Define .readbyte(string addr) (warp=true) +{ + If (addr < "0x8000") + { + If (addr < "0x4000") + { + mmu.return = .ROM[(1 + addr)]; + } + Else + { + mmu.return = .ROM[(1 + ((addr - 0x4000) + (mmu.rombank * 16384)))]; + } + } + Else + { + If (addr < "0xC000") + { + If (addr < "0xA000") + { + mmu.return = .VRAM[(1 + ((addr % 0x2000) + (mmu.vrambank * 8192)))]; + } + Else + { + mmu.return = .SRAM[(1 + ((addr % 0x2000) + (mmu.srambank * 8192)))]; + } + } + Else + { + If (addr < "0xFE00") + { + If ((addr % 0x2000) < "0x1000") + { + mmu.return = .WRAM[(1 + (addr % 0x1000))]; + } + Else + { + mmu.return = .WRAM[(1 + ((addr % 0x1000) + (mmu.wrambank * 4096)))]; + } + } + Else + { + If (addr < "0xFF00") + { + mmu.return = .OAM[(1 + (addr % 0x100))]; + } + Else + { + If (addr < "0xFF80") + { + Call .runAllCachedCycles; + mmu.return = .I/O[(1 + (addr % 0x80))]; + } + Else + { + mmu.return = .HRAM[(1 + (addr % 0x80))]; + } + } + } + } + } +} + +Define .runAllCachedCycles (warp=true) +{ + mmu.addrTemp = mmu.addr; + control_while ?? - probably legacy function from Scratch 2.0; + mmu.addr = mmu.addrTemp; +} + +Define .updateCachedPitch(string ID)(string freq) (warp=true) +{ + List.ReplaceItem(+sound pitch, ID, freq); +} + +Define //(string comment) (warp=false) +{ +} + +Define =generateBytecode (warp=true) +{ + If (Not ((regs.PC == JIT.cache))) + { + i = regs.PC; + JIT BLOCKS CREATED += 1; + JIT.cache = regs.PC; + List.DeleteAll(code parameters); + Repeat (JIT.blocksizemax) + { + Call .readbyte(i); + i += 1; + z4 = mmu.return; + List.Add(code parameters, z4); + List.Add(code parameters, cpu.op1[(z4 + 1)]); + List.Add(code parameters, cpu.op2[(z4 + 1)]); + z1 = cpu.opbytes[(z4 + 1)]; + If (z1 > 1) + { + Call .readbyte(i); + z2 = mmu.return; + i += 1; + If (z1 > 2) + { + Call .readbyte(i); + z3 = mmu.return; + i += 1; + } + Else + { + z3 = 0; + } + } + Else + { + z2 = 0; + z3 = 0; + } + List.Add(code parameters, ((z3 * 256) + z2)); + JIT.cacheEnd = i; + If (JIT.endblock[(z4 + 1)] == 1) + { + Stop(this script); + } + } + } +} + +Define apu.update (warp=true) +{ + If ((APU.clock % 8) == 0) + { + control_for_each ?? - probably legacy function from Scratch 2.0; + Event.Broadcast("+audioEngineUpdateAll"); + } + If ((APU.clock % 4) == 0) + { + If ((+sound sweep control > 0) And (abs(+sound sweep dir) > 0)) + { + +sound sweep clock cycle += 1; + If (+sound sweep clock cycle > (abs(+sound sweep dir) - 1)) + { + +sound sweep clock cycle = 0; + If (+sound sweep dir < 0) + { + List.ReplaceItem(+sound pitch, 1, floor((+sound pitch[1] - (+sound pitch[1] / cpu.powersof2[(abs(+sound sweep control) + 1)])))); + } + Else + { + List.ReplaceItem(+sound pitch, 1, floor((+sound pitch[1] + (+sound pitch[1] / cpu.powersof2[(abs(+sound sweep control) + 1)])))); + } + If (+sound pitch[1] > 2047) + { + List.ReplaceItem(+sound pitch, 1, 0); + } + } + } + Else + { + +sound sweep clock cycle = 0; + } + } + If ((APU.clock % 2) == 0) + { + z17 = (floor(((APU.clock / 2) % 8)) * 32); + z18 = 0; + Repeat (16) + { + z18 += 1; + z17 += 1; + List.ReplaceItem(_waveBuffer2, z17, floor((.I/O[(z18 + 0x30)] / 16))); + z17 += 1; + List.ReplaceItem(_waveBuffer2, z17, floor((.I/O[(z18 + 0x30)] % 16))); + } + } + APU.clock += 1; +} + +Define break.point (warp=true) +{ +} + +Define BRT(string N) (warp=true) +{ + List.DeleteAll(BRT); + List.Add(BRT, 0); + Repeat (N) + { + z1 = List.Length(BRT); + control_for_each ?? - probably legacy function from Scratch 2.0; + } +} + +Define checkStat (warp=true) +{ + If (ppu.linecycles < 4) + { + z9 = 4; + } + Else + { + If (ppu.linecycles < 80) + { + z9 = 80; + } + Else + { + If (ppu.linecycles < 248) + { + z9 = 248; + } + Else + { + z9 = 456; + } + } + } + If (Not (((ppu.linecycles + ppu.cachedcycles) < z9))) + { + Call .runAllCachedCycles; + } +} + +Define color correct(string R)(string G)(string B) (warp=true) +{ + y0 = (R * 8); + y1 = (G * 8); + y2 = (B * 8); + If (y0 > 255) + { + y0 = 255; + } + If (y1 > 255) + { + y1 = 255; + } + If (y2 > 255) + { + y2 = 255; + } +} + +Define cpu.evalcondition (warp=true) +{ + cpu.condition = (0 + (cpu.regF[(1 + (floor((code parameters[(i + 3)] / 2)) * 3))] == (code parameters[(i + 3)] % 2))); +} + +Define cpu.HALTskip (warp=true) +{ + z1 = 0; + control_while ?? - probably legacy function from Scratch 2.0; +} + +Define cpu.readValue (warp=true) +{ + If (code parameters[(i + 3)] == 8) + { + mmu.return = code parameters[(i + 4)]; + } + Else + { + If (code parameters[(i + 3)] == 6) + { + Call mmu.readbyte(z.HLreg); + } + Else + { + mmu.return = cpu.regs[(code parameters[(i + 3)] + 1)]; + } + } +} + +Define debug (warp=true) +{ + INSTRS EXECUTED += 1; + Call debug.logline; + If (Not ((debug.logfile[INSTRS EXECUTED] == z1))) + { + Call ​​log​​(INSTRS EXECUTED); + Call ​​log​​(Operator.Join("", debug.logfile[INSTRS EXECUTED])); + Call ​​log​​(Operator.Join("", z1)); + Call ​​log​​(Operator.Join("", debug.logfile[(INSTRS EXECUTED - 1)])); + Call ​​breakpoint​​; + } +} + +Define debug.logline (warp=true) +{ + z1 = Operator.Join("A: ", debug.hex[(cpu.regs[8] + 1)]); + z1 = Operator.Join(z1, Operator.Join(" F: ", debug.hex[((((cpu.regF[1] * 8) + ((cpu.regF[2] * 4) + ((cpu.regF[3] * 2) + cpu.regF[4]))) * 16) + 1)])); + z1 = Operator.Join(z1, Operator.Join(" B: ", debug.hex[(cpu.regs[1] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" C: ", debug.hex[(cpu.regs[2] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" D: ", debug.hex[(cpu.regs[3] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" E: ", debug.hex[(cpu.regs[4] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" H: ", debug.hex[(cpu.regs[5] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" L: ", debug.hex[(cpu.regs[6] + 1)])); + z1 = Operator.Join(z1, Operator.Join(" SP: ", Operator.Join(debug.hex[((regs.SP / 256) + 1)], debug.hex[((regs.SP % 256) + 1)]))); + z1 = Operator.Join(z1, Operator.Join(" PC: ", Operator.Join("00:", Operator.Join(debug.hex[((regs.PC / 256) + 1)], debug.hex[((regs.PC % 256) + 1)])))); + z1 = Operator.Join(z1, " ("); + Call mmu.readbyte(regs.PC); + z1 = Operator.Join(z1, Operator.Join(debug.hex[(mmu.return + 1)], " ")); + Call mmu.readbyte((regs.PC + 1)); + z1 = Operator.Join(z1, Operator.Join(debug.hex[(mmu.return + 1)], " ")); + Call mmu.readbyte((regs.PC + 2)); + z1 = Operator.Join(z1, Operator.Join(debug.hex[(mmu.return + 1)], " ")); + Call mmu.readbyte((regs.PC + 3)); + z1 = Operator.Join(z1, Operator.Join(debug.hex[(mmu.return + 1)], ")")); +} + +Define emulator.joyPadLogic (warp=true) +{ + z1 = 15; + z2 = (0 + ((.I/O[1] % 32) < 16)); + z3 = (0 + ((.I/O[1] % 64) < 32)); + z1 += (-8 * (((z2 * keys[1]) > 0) Or ((z3 * keys[5]) > 0))); + z1 += (-4 * (((z2 * keys[2]) > 0) Or ((z3 * keys[6]) > 0))); + z1 += (-2 * (((z2 * keys[3]) > 0) Or ((z3 * keys[7]) > 0))); + z1 += (-1 * (((z2 * keys[4]) > 0) Or ((z3 * keys[8]) > 0))); + List.ReplaceItem(.I/O, 1, ((.I/O[1] - (.I/O[1] % 16)) + z1)); +} + +Define emulator.updateJoypadKeys (warp=true) +{ + List.DeleteAll(keys); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[1]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[2]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[3]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[4]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[5]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[6]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[7]))); + List.Add(keys, Operator.Round(Sensing.KeyPressed(controls.GB[8]))); +} + +Define execBlock (warp=true) +{ + If (cpu.HALT == 1) + { + Call cpu.HALTskip; + Stop(this script); + } + Call =generateBytecode; + i = 0; + control_while ?? - probably legacy function from Scratch 2.0; + Call frameEvent; +} + +Define frameEvent (warp=true) +{ + If (frameEvent == 0) + { + Call emulator.updateJoypadKeys; + Call emulator.joyPadLogic; + frameEvent = 1; + debugCallsToRender = 0; + If (frameSkipRender == 1) + { + Call render.screen; + } + frameSkipFraction += (1 / (_frameskip2 + 1)); + If (Not ((frameSkipFraction < 1))) + { + frameSkipRender = 1; + frameSkipFraction += -1; + } + Else + { + frameSkipRender = 0; + } + frametime = ((Sensing.DaysSince2000() - z_) * 86400); + z_ = Sensing.DaysSince2000(); + fps1 += ((frametime - fps1) / 8); + displayFPS = (1 / fps1); + Event.Broadcast("drawFPScounter"); + } +} + +Define generate table(string n) (warp=false) +{ + List.DeleteAll(z.bin); + List.DeleteAll(s); + List.DeleteAll(cpu.AND); + List.DeleteAll(cpu.OR); + List.DeleteAll(cpu.XOR); + Call r(n)(""); + z8 = 0; + Repeat (List.Length(z.bin)) + { + z7 = 0; + Repeat (List.Length(z.bin)) + { + z4 = 0; + z1 = 0; + z2 = 0; + z3 = 0; + z7 += 1; + z8 += 1; + Repeat (Variable.Length(z.bin[1])) + { + z4 += 1; + z1 = ((z1 * 2) + ((Operator.LetterOf(z.bin[z7], z4) == 1) And (Operator.LetterOf(z.bin[z8], z4) == 1))); + z2 = ((z2 * 2) + ((Operator.LetterOf(z.bin[z7], z4) == 1) Or (Operator.LetterOf(z.bin[z8], z4) == 1))); + z3 = ((z3 * 2) + (Not ((Operator.LetterOf(z.bin[z7], z4) == Operator.LetterOf(z.bin[z8], z4))))); + } + List.Add(cpu.AND, z1); + List.Add(cpu.OR, z2); + List.Add(cpu.XOR, z3); + z7 += -1; + z8 += -1; + z7 += 1; + } + z8 += 1; + } +} + +Define mainLoop (warp=false) +{ + If (.I/O[65] < 128) + { + frameEvent = 0; + } + Call run((4194304 * deltaTime)) cycles; + deltaTime = ((Sensing.DaysSince2000() * 86400) - x0); + x0 = (Sensing.DaysSince2000() * 86400); +} + +Define mmu.readbyte(string addr) (warp=true) +{ + ppu.cachedcycles += ppu.cyclesincr; + If (addr < "0x8000") + { + If (addr < "0x4000") + { + mmu.return = .ROM[(1 + addr)]; + } + Else + { + mmu.return = .ROM[(1 + ((addr - 0x4000) + (mmu.rombank * 16384)))]; + } + } + Else + { + If (addr < "0xC000") + { + If (addr < "0xA000") + { + mmu.return = .VRAM[(1 + ((addr % 0x2000) + (mmu.vrambank * 8192)))]; + } + Else + { + mmu.return = .SRAM[(1 + ((addr % 0x2000) + (mmu.srambank * 8192)))]; + } + } + Else + { + If (addr < "0xFE00") + { + If ((addr % 0x2000) < "0x1000") + { + mmu.return = .WRAM[(1 + (addr % 0x1000))]; + } + Else + { + mmu.return = .WRAM[(1 + ((addr % 0x1000) + (mmu.wrambank * 4096)))]; + } + } + Else + { + If (addr < "0xFF00") + { + mmu.return = .OAM[(1 + (addr % 0x100))]; + } + Else + { + If (addr < "0xFF80") + { + Call .runAllCachedCycles; + mmu.return = .I/O[(1 + (addr % 0x80))]; + } + Else + { + mmu.return = .HRAM[(1 + (addr % 0x80))]; + } + } + } + } + } +} + +Define mmu.writebyte(string addr)(string byte) (warp=true) +{ + ppu.cachedcycles += ppu.cyclesincr; + If (addr < "0x8000") + { + Call .MBC HANDLER(addr)(byte); + } + Else + { + If (addr < "0xC000") + { + If (addr < "0xA000") + { + List.ReplaceItem(.VRAM, (1 + ((addr % 0x2000) + (mmu.vrambank * 8192))), byte); + } + Else + { + List.ReplaceItem(.SRAM, (1 + ((addr % 0x2000) + (mmu.srambank * 8192))), byte); + } + } + Else + { + If (addr < "0xFE00") + { + If ((addr % 0x2000) < "0x1000") + { + List.ReplaceItem(.WRAM, (1 + (addr % 0x1000)), byte); + } + Else + { + List.ReplaceItem(.WRAM, (1 + ((addr % 0x1000) + (mmu.wrambank * 4096))), byte); + } + } + Else + { + If (addr < "0xFF00") + { + List.ReplaceItem(.OAM, (1 + (addr % 0x100)), byte); + } + Else + { + If (addr < "0xFF80") + { + Call .runAllCachedCycles; + List.ReplaceItem(.I/O, (1 + (addr % 0x100)), byte); + If (addr == "0xFF46") + { + ppu.OAMdmastart = (byte * 256); + ppu.OAMdma# = 0; + } + Else + { + If ((addr > "0xFF46") And (addr < "0xFF4A")) + { + If (Not ((cart.GBCMode == 1))) + { + Call ppu.convertDMGpalette((addr - 0xFF47))(byte); + } + } + Else + { + If (addr == "0xFF00") + { + Call emulator.joyPadLogic; + } + } + } + If ((Not ((addr < "0xFF10"))) And (addr < "0xFF30")) + { + Call .APU write handler(addr)(byte); + List.ReplaceItem(.I/O, 39, ((.I/O[39] - (.I/O[39] % 128)) + ((+sound channels active[4] * 8) + ((+sound channels active[3] * 4) + ((+sound channels active[2] * 2) + +sound channels active[1]))))); + } + If (cart.GBCMode == 1) + { + If (addr == "0xFF4F") + { + mmu.vrambank = (byte % 2); + Stop(this script); + } + If (addr == "0xFF70") + { + mmu.wrambank = (byte % 8); + If (mmu.wrambank == 0) + { + mmu.wrambank = 1; + } + Stop(this script); + } + If ((addr == "0xFF69") Or (addr == "0xFF6B")) + { + y4 = .I/O[((addr - 0xFF01) + 1)]; + Call ppu.convertCGBpalette(((y4 % 64) + ((addr == "0xFF6B") * 64))) ,(byte); + y4 = (((y4 + floor((y4 / 128))) % 64) + (y4 - (y4 % 128))); + List.ReplaceItem(.I/O, ((addr - 0xFF01) + 1), (y4 % 256)); + Stop(this script); + } + If (addr == "0xFF55") + { + Call ppu.CGBDMAinit(byte); + Stop(this script); + } + } + } + Else + { + List.ReplaceItem(.HRAM, (1 + (addr % 0x80)), byte); + } + } + } + } + } +} + +Define obtain frequency values (warp=true) +{ +} + +Define ppu.CGBDMAinit(string byte) (warp=true) +{ + ppu.CGBDMAsource = ((.I/O[82] * 256) + (.I/O[83] - (.I/O[83] % 16))); + ppu.CGBDMAdest = ((((.I/O[84] * 256) + (.I/O[85] - (.I/O[85] % 16))) % 8192) + (mmu.vrambank * 8192)); + ppu.CGBDMAcount = (((byte % 128) + 1) * 16); + ppu.CGBDMAType = floor((byte / 128)); + If (ppu.CGBDMAType == 1) + { + ppu.transferAmount = 16; + } + Else + { + ppu.transferAmount = ppu.CGBDMAcount; + } +} + +Define ppu.convertCGBpalette(string val) ,(string byte) (warp=true) +{ + List.ReplaceItem(ppu.PaletteRAM, (val + 1), byte); + y5 = ((ppu.PaletteRAM[((floor((val / 2)) * 2) + 2)] * 256) + ppu.PaletteRAM[((floor((val / 2)) * 2) + 1)]); + List.ReplaceItem(ppu.paletteconvertor, (floor((val / 2)) + 1), ppu.GBCpalettesLUT[((y5 % 32768) + 1)]); +} + +Define ppu.convertDMGpalette(string n)(string b) (warp=true) +{ + List.ReplaceItem(ppu.paletteconvertor, ((n * 4) + 1), ppu.DMGpalette[(((b / 1) % 4) + 1)]); + List.ReplaceItem(ppu.paletteconvertor, ((n * 4) + 2), ppu.DMGpalette[(((b / 4) % 4) + 1)]); + List.ReplaceItem(ppu.paletteconvertor, ((n * 4) + 3), ppu.DMGpalette[(((b / 16) % 4) + 1)]); + List.ReplaceItem(ppu.paletteconvertor, ((n * 4) + 4), ppu.DMGpalette[(((b / 64) % 4) + 1)]); +} + +Define ppu.pushpixelstoscreen (warp=true) +{ + LCDY *160 = (ppu.LineY * 160); + If (((.I/O[65] % 2) > 0) Or (cart.GBCMode == 1)) + { + z8 = (((.I/O[65] % 32) > 15) + 0); + y3 = z11; + control_while ?? - probably legacy function from Scratch 2.0; + } + Else + { + Repeat (z11) + { + ppu.pixelX += 1; + List.ReplaceItem(ppu.LCDbuffer, (ppu.pixelX + LCDY *160), ppu.paletteconvertor[1]); + If (ppu.pixelX > 159) + { + Stop(this script); + } + } + } +} + +Define ppu.spriteline(string 1)(string 2)(string 3)(string 4) (warp=true) +{ + List.DeleteAll(ppu.spriteoverlay); + List.DeleteAll(ppu.objGBCpalette); + If ((.I/O[65] % 4) > 1) + { + Repeat (160) + { + List.Add(ppu.spriteoverlay, 0); + List.Add(ppu.objGBCpalette, 0); + } + List.DeleteAll(ppu.spritebuffer); + z1 = 0; + Repeat (40) + { + If (List.Length(ppu.spritebuffer) < 10) + { + z2 = (.OAM[((z1 * 4) + 1)] - 16); + If ((Not ((ppu.LineY < z2))) And (ppu.LineY < (z2 + (8 + (((.I/O[65] % 8) > 3) * 8))))) + { + List.Add(ppu.spritebuffer, z1); + } + } + z1 += 1; + } + If (Not ((cart.GBCMode == 1))) + { + z1 = 0; + Repeat (List.Length(ppu.spritebuffer)) + { + z1 += 1; + z3 = ppu.spritebuffer[z1]; + z2 = (z1 - 1); + control_while ?? - probably legacy function from Scratch 2.0; + List.ReplaceItem(ppu.spritebuffer, (z2 + 1), z3); + } + } + z1 = 0; + Repeat (List.Length(ppu.spritebuffer)) + { + z1 += 1; + z3 = (ppu.spritebuffer[z1] * 4); + z2 = (.OAM[(z3 + 2)] - 8); + z10 = (floor((.OAM[(z3 + 4)] / 32)) % 4); + z4 = (ppu.LineY - (.OAM[(z3 + 1)] - 16)); + If (z10 > 1) + { + If ((.I/O[65] % 8) > 3) + { + z4 = (15 - z4); + } + Else + { + z4 = (7 - z4); + } + } + z8 = .OAM[(z3 + 3)]; + If (cart.GBCMode == 1) + { + z16 = .OAM[(z3 + 4)]; + } + Else + { + z16 = 0; + } + If ((.I/O[65] % 8) > 3) + { + z8 = (z8 - (z8 % 2)); + If (Not ((z4 < 8))) + { + z8 += 1; + } + } + z4 = ((z8 * 16) + ((z4 % 8) * 2)); + If ((z16 % 16) > 7) + { + z4 += 8192; + } + If ((z10 % 2) == 0) + { + y1 = (.VRAM[(z4 + 1)] / 128); + y2 = (.VRAM[(z4 + 2)] / 128); + } + Else + { + y1 = (BRT[(.VRAM[(z4 + 1)] + 1)] / 128); + y2 = (BRT[(.VRAM[(z4 + 2)] + 1)] / 128); + } + Repeat (8) + { + z8 = ((floor((y2 % 2)) * 2) + floor((y1 % 2))); + z2 += 1; + If ((z8 > 0) And ((ppu.spriteoverlay[z2] == 0) Or (Not ((cart.GBCMode == 1))))) + { + List.ReplaceItem(ppu.spriteoverlay, z2, (z8 + ((((.OAM[(z3 + 4)] % 32) > 15) * 4) + (((.OAM[(z3 + 4)] % 256) > 127) * 8)))); + If (cart.GBCMode == 1) + { + List.ReplaceItem(ppu.objGBCpalette, z2, (z16 % 8)); + } + } + y1 += y1; + y2 += y2; + } + } + } + z1 = 1; + z2 = 2; + z3 = 3; + z4 = 4; +} + +Define ppu.turnofftheLCD (warp=true) +{ + ppu.LineY = 0; + ppu.linecycles = 0; + ppu.LCDstate = 0; + ppu.windowincr = 0; + ppu.newByteFlag = 1; +} + +Define r(string n)(string b) (warp=false) +{ + If (b > "") + { + List.Add(s, b); + } + If (n > 0) + { + Call r((n - 1))(0); + Call r((n - 1))(1); + } + Else + { + List.Add(z.bin, s); + } + List.DeleteItem(s, last); +} + +Define render.goto(string x)(string y) (warp=true) +{ + Motion.GoToXY((((x + 0.5) * 2) - 160), (144 - ((y + 0.5) * 2))); +} + +Define render.screen (warp=true) +{ + Pen.Clear(); + Pen.SetPenSizeTo(2); + Call render.goto(0)(0); + Pen.Down(); + z1 = 0; + z2 = 0; + z3 = 1; + i = 1; + Repeat (23041) + { + i += 1; + If (ppu.LCDbuffer[i] == ppu.LCDbuffer[(i - 1)]) + { + z3 += 1; + } + Else + { + z1 += z3; + Pen.SetPenColorToColor(ppu.LCDbuffer[(i - 1)]); + Pen.ChangePenBy(saturation, -12); + control_while ?? - probably legacy function from Scratch 2.0; + Call render.goto(z1)(z2); + z3 = 1; + } + } + Pen.Clear(); +} + +Define run(string X) cycles (warp=true) +{ + If (X > 300000) + { + XX = 300000; + } + Else + { + XX = X; + } + control_while ?? - probably legacy function from Scratch 2.0; + cycles.frame += ( - XX); +} + +Define setup.extra (warp=true) +{ + i = 0; + z1 = 1311112131111121231111212111112123111121211111212311112121111121111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111133312111323321113031211130302121100121213000212111012121310021; + List.DeleteAll(cpu.opbytes); + Repeat (256) + { + i += 1; + List.Add(cpu.opbytes, (0 + Operator.LetterOf(z1, i))); + } + List.DeleteAll(z.bin); + Repeat (32) + { + List.Add(z.bin, Operator.LetterOf("ABCDEFGHIJKLMNOPQRSTUVWXYZ1", (List.Length(z.bin) + 1))); + } + List.DeleteAll(cpu.opblocks); + Repeat (256) + { + List.Add(cpu.opblocks, (0 + List.IndexOf(z.bin, Operator.LetterOf("-JKLMMAVBDKLMMAVBJKLMMAWNDKLMMAWNJKLMMABNDKLMMABNJKLMMABNDKLMMABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFGGGGGGGGHHHHHHHHIIIIIIIIFFFFFFFFORPPQSETOOP1QQETORP-QSFTOOP-Q-FTXRX--SGTYUZ---HTXRXC-SITYUZC--FT", (List.Length(cpu.opblocks) + 1))))); + } + List.DeleteAll(z.bin); + List.DeleteAll(JIT.endblock); + z4 = 0; + Repeat (256) + { + z5 = cpu.opblocks[(z4 + 1)]; + z3 = (0 + (((z5 > 13) And (z5 < 18)) Or ((z5 == 20) Or ((z4 == "0xE9") Or ((z4 == "0x10") Or (z4 == "0x76")))))); + List.Add(JIT.endblock, z3); + z4 += 1; + } + i = 1; + z1 = 000000000000000100100000000000100100001101101001100001001001002102102000000001101101003103103001100002002002004104104200101002102102005105105300102003003003006106106400103003103103007107107500000001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038039040041042043044045046047048049050051052053600055056057058059060061062063; + z1 = Operator.Join(z1, "000001002003004005006007100101102103104105106107000001002003004005006007100101102103104105106107000001002003004005006007000001002003004005006007000001002003004005006007200201202203204205206207100000100000100000008000101000101700101000108001102001102---102001008002103200103---103---108003000002001------002008004000001000---------008005100003101000---003008006100100100001------208007"); + List.DeleteAll(cpu.op1); + List.DeleteAll(cpu.op2); + Repeat (256) + { + List.Add(cpu.op1, (0 + Operator.LetterOf(z1, i))); + List.Add(cpu.op2, (0 + Operator.Join(Operator.LetterOf(z1, (i + 1)), Operator.LetterOf(z1, (i + 2))))); + i += 3; + } + List.DeleteAll(cpu.powersof2); + List.Add(cpu.powersof2, 1); + Repeat (16) + { + List.Add(cpu.powersof2, (2 * cpu.powersof2[last])); + } +} + +Define setup.generateGBCpaletteLUT (warp=true) +{ + List.DeleteAll(ppu.GBCpalettesLUT); + z0 = 0; + Repeat (32) + { + z1 = 0; + Repeat (32) + { + z2 = 0; + Repeat (32) + { + Call color correct(z0)(z1)(z2); + List.Add(ppu.GBCpalettesLUT, (((Operator.Round(y2) * 65536) + (Operator.Round(y1) * 256)) + Operator.Round(y0))); + z2 += 1; + } + z1 += 1; + } + z0 += 1; + } +} + +Define setup.getCartData (warp=true) +{ + cart.GBCMode = (0 + (.ROM[(0x143 + 1)] > 127)); + z0 = .ROM[(0x147 + 1)]; + If (z0 < 1) + { + .MBC = 0; + } + Else + { + If (z0 < 5) + { + .MBC = 1; + } + Else + { + If (z0 < "0x10") + { + .MBC = 2; + } + Else + { + If (z0 < "0x19") + { + .MBC = 3; + } + Else + { + If (z0 < "0x20") + { + .MBC = 5; + } + Else + { + .MBC = 5; + } + } + } + } + } + z0 = .ROM[(0x148 + 1)]; + mbc.rombanks = 2; + If (z0 == 1) + { + mbc.rombanks = 4; + } + Else + { + If (z0 == 2) + { + mbc.rombanks = 8; + } + Else + { + If (z0 == 3) + { + mbc.rombanks = 16; + } + Else + { + If (z0 == 4) + { + mbc.rombanks = 32; + } + Else + { + If (z0 == 5) + { + mbc.rombanks = 64; + } + Else + { + If (z0 == 6) + { + mbc.rombanks = 128; + } + Else + { + If (z0 == 7) + { + mbc.rombanks = 256; + } + Else + { + If (z0 == 8) + { + mbc.rombanks = 512; + } + } + } + } + } + } + } + } + z0 = .ROM[(0x149 + 1)]; + mbc.rambanks = 0; + If (z0 == 2) + { + mbc.rambanks = 1; + } + Else + { + If (z0 == 3) + { + mbc.rambanks = 4; + } + Else + { + If (z0 == 4) + { + mbc.rambanks = 16; + } + Else + { + If (z0 == 5) + { + mbc.rambanks = 8; + } + Else + { + } + } + } + } +} + +Define setup.import_rom (warp=true) +{ + List.DeleteAll(.ROM); + i = 1; + control_while ?? - probably legacy function from Scratch 2.0; +} + +Define setup.reset (warp=true) +{ + JIT.blocksizemax = 256; + mmu.rombank = 1; + mmu.vrambank = 0; + mmu.wrambank = 1; + mmu.srambank = 0; + tim.DIV = 0; + cycles.frame = 0; + cacheNext = 0; + frameSkipFraction = 0; + ppu.CGBDMAType = 0; + ppu.CGBDMAcount = 0; + ppu.newByteFlag = 1; + ppu.CGBDMAdest = 0; + ppu.CGBDMAsource = 0; + Call setup.import_rom; + Call setup.extra; + Call setup.getCartData; + List.DeleteAll(ppu.spritebuffer); + List.DeleteAll(ppu.spriteoverlay); + List.DeleteAll(.VRAM); + Repeat (0x4000) + { + List.Add(.VRAM, 0); + } + List.DeleteAll(.SRAM); + Repeat ((0x2000 * mbc.rambanks)) + { + List.Add(.SRAM, 0); + } + List.DeleteAll(.WRAM); + Repeat (0x2000) + { + List.Add(.WRAM, 0); + } + If (cart.GBCMode == 1) + { + Repeat (0x6000) + { + List.Add(.WRAM, 0); + } + } + List.DeleteAll(.OAM); + Repeat (0xA0) + { + List.Add(.OAM, 0); + } + List.DeleteAll(.I/O); + List.DeleteAll(.HRAM); + Repeat (0x80) + { + List.Add(.I/O, 0); + List.Add(.HRAM, 0); + } + regs.PC = 256; + regs.SP = 65534; + JIT.cache = -1; + cpu.interruptSwitch = 0; + ppu.cachedcycles = 0; + ppu.linecycles = 0; + cpu.speed = 1; + ppu.cyclesincr = (4 / cpu.speed); + ppu.statcond2 = -1; + ppu.OAMdma# = 160; + ppu.pixelX = 0; + x1 = 0; + x2 = 0; + xf = 0; + cpu.HALT = 0; + APU.clock = 0; + +globalVol.L = 0; + +globalVol.R = 0; + +sound sweep dir = 0; + +sound sweep control = 0; + +sound sweep clock cycle = 0; + List.DeleteAll(cpu.regs); + List.Add(cpu.regs, 0); + List.Add(cpu.regs, 19); + List.Add(cpu.regs, 0); + List.Add(cpu.regs, 216); + List.Add(cpu.regs, 1); + List.Add(cpu.regs, 77); + List.Add(cpu.regs, 0); + If (cart.GBCMode == 1) + { + List.Add(cpu.regs, 17); + } + Else + { + List.Add(cpu.regs, 1); + } + List.DeleteAll(cpu.regF); + List.Add(cpu.regF, 1); + List.Add(cpu.regF, 0); + List.Add(cpu.regF, 1); + List.Add(cpu.regF, 1); + List.DeleteAll(ppu.LCDbuffer); + Repeat (23040) + { + List.Add(ppu.LCDbuffer, 0); + } + Call generate table(8); + Call BRT(8); + Call ppu.turnofftheLCD; + List.ReplaceItem(.I/O, 65, 145); + List.DeleteAll(ppu.DMGpalette); + If (Not ()) + { + List.Add(ppu.DMGpalette, Operator.Join("0x", "c6d2a4")); + List.Add(ppu.DMGpalette, (0 + Operator.Join("0x", "8d986f"))); + List.Add(ppu.DMGpalette, (0 + Operator.Join("0x", "4e553d"))); + List.Add(ppu.DMGpalette, (0 + Operator.Join("0x", "201f20"))); + } + Else + { + List.Add(ppu.DMGpalette, (3 * 5592405)); + List.Add(ppu.DMGpalette, (2 * 5592405)); + List.Add(ppu.DMGpalette, (1 * 5592405)); + List.Add(ppu.DMGpalette, (0 * 5592405)); + } + List.DeleteAll(ppu.paletteconvertor); + Repeat (12) + { + List.Add(ppu.paletteconvertor, 0); + } + List.DeleteAll(ppu.GBCpalettesLUT); + If (cart.GBCMode == 1) + { + Call setup.generateGBCpaletteLUT; + List.DeleteAll(ppu.PaletteRAM); + Repeat (128) + { + List.Add(ppu.PaletteRAM, 0); + } + List.DeleteAll(ppu.paletteconvertor); + Repeat (64) + { + List.Add(ppu.paletteconvertor, 0); + } + } + List.DeleteAll(+sound pitch); + List.DeleteAll(+sound channels active); + List.DeleteAll(+sound clones active); + List.DeleteAll(+sound volume); + List.DeleteAll(+sound duty cycle); + List.DeleteAll(+sound clone duty cycle); + List.DeleteAll(+sound envelope timer); + List.DeleteAll(+sound envelope clock); + List.DeleteAll(+sound length timer); + List.DeleteAll(+sound volume init); + Repeat (4) + { + List.Add(+sound pitch, 0); + List.Add(+sound channels active, 0); + List.Add(+sound clones active, 0); + List.Add(+sound volume, 0); + List.Add(+sound duty cycle, 0); + List.Add(+sound clone duty cycle, 0); + List.Add(+sound envelope timer, 0); + List.Add(+sound envelope clock, 0); + List.Add(+sound length timer, 0); + List.Add(+sound volume init, 0); + } + List.DeleteAll(_waveBuffer2); + Repeat (256) + { + List.Add(_waveBuffer2, 0); + } +} + +Define ~ADD/ADC A (warp=true) +{ + Call cpu.readValue; + z3 = (cpu.regF[4] * (code parameters[(i + 2)] == 1)); + z2 = ((cpu.regs[8] + mmu.return) + z3); + List.ReplaceItem(cpu.regF, 1, ( + ((z2 % 256) == 0))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, ( + ((((cpu.regs[8] % 16) + (mmu.return % 16)) + z3) > 15))); + List.ReplaceItem(cpu.regF, 4, ( + (z2 > 255))); + List.ReplaceItem(cpu.regs, 8, (z2 % 256)); +} + +Define ~ADD HL (warp=true) +{ + ppu.cachedcycles += (1 * ppu.cyclesincr); + z3 = code parameters[(i + 3)]; + If (z3 == 3) + { + z2 = regs.SP; + } + Else + { + z2 = ((cpu.regs[((z3 * 2) + 1)] * 256) + cpu.regs[((z3 * 2) + 2)]); + } + z3 = (z.HLreg + z2); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, ( + (((z.HLreg % 4096) + (z2 % 4096)) > 4095))); + List.ReplaceItem(cpu.regF, 4, ( + (z3 > 65535))); + List.ReplaceItem(cpu.regs, 5, (floor((z3 / 256)) % 256)); + List.ReplaceItem(cpu.regs, 6, (z3 % 256)); +} + +Define ~AND A (warp=true) +{ + Call cpu.readValue; + List.ReplaceItem(cpu.regs, 8, cpu.AND[(((cpu.regs[8] * 256) + mmu.return) + 1)]); + List.ReplaceItem(cpu.regF, 1, ( + (cpu.regs[8] == 0))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 1); + List.ReplaceItem(cpu.regF, 4, 0); +} + +Define ~BIT OPS (warp=true) +{ + z1 = code parameters[(i + 4)]; + If ((z1 % 8) == 6) + { + Call mmu.readbyte(z.HLreg); + } + Else + { + mmu.return = cpu.regs[((z1 % 8) + 1)]; + } + z2 = 0; + If (z1 < 128) + { + If (z1 < 64) + { + If (z1 < 32) + { + If (z1 < 16) + { + If (z1 < 8) + { + z2 = floor((mmu.return / 128)); + mmu.return = (((mmu.return * 2) + z2) % 256); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = (floor((mmu.return / 2)) + (z2 * 128)); + } + } + Else + { + If (z1 < 24) + { + z2 = floor((mmu.return / 128)); + mmu.return = ((floor((mmu.return * 2)) + cpu.regF[4]) % 256); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = (floor((mmu.return / 2)) + (cpu.regF[4] * 128)); + } + } + } + Else + { + If (z1 < 48) + { + If (z1 < 40) + { + z2 = floor((mmu.return / 128)); + mmu.return = ((mmu.return * 2) % 256); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = ((floor((mmu.return / 128)) * 128) + floor((mmu.return / 2))); + } + } + Else + { + If (z1 < 56) + { + mmu.return = (floor((mmu.return / 16)) + ((mmu.return % 16) * 16)); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = floor((mmu.return / 2)); + } + } + } + List.ReplaceItem(cpu.regF, 1, ( + (mmu.return == 0))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 0); + List.ReplaceItem(cpu.regF, 4, z2); + } + Else + { + List.ReplaceItem(cpu.regF, 1, (1 - (floor((mmu.return / cpu.powersof2[(floor(((z1 / 8) % 8)) + 1)])) % 2))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 1); + Stop(this script); + } + } + Else + { + If (z1 < 192) + { + mmu.return = cpu.AND[(((mmu.return * 256) + (255 - cpu.powersof2[(1 + floor(((z1 / 8) % 8)))])) + 1)]; + } + Else + { + mmu.return = cpu.OR[(((mmu.return * 256) + cpu.powersof2[(1 + floor(((z1 / 8) % 8)))]) + 1)]; + } + } + If ((z1 % 8) == 6) + { + Call mmu.writebyte(z.HLreg)(mmu.return); + } + Else + { + List.ReplaceItem(cpu.regs, ((z1 % 8) + 1), mmu.return); + } +} + +Define ~CALL u16 (warp=true) +{ + Call cpu.evalcondition; + If ((code parameters[(i + 2)] == 0) Or (cpu.condition == 1)) + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + Call mmu.writebyte((regs.SP - 1))((floor((regs.PC / 256)) % 256)); + Call mmu.writebyte((regs.SP - 2))((regs.PC % 256)); + regs.SP = ((regs.SP - 2) % 65536); + regs.PC = code parameters[(i + 4)]; + } +} + +Define ~DAA (warp=true) +{ + z3 = cpu.regs[8]; + If cpu.regF[2] + { + z3 += ((-96 * cpu.regF[4]) + (-6 * cpu.regF[3])); + } + Else + { + If (cpu.regF[4] Or ((z3 % 256) > 153)) + { + List.ReplaceItem(cpu.regF, 4, 1); + z3 += 96; + } + z3 += (6 * (cpu.regF[3] Or ((z3 % 16) > 9))); + } + List.ReplaceItem(cpu.regs, 8, (z3 % 256)); + List.ReplaceItem(cpu.regF, 1, ( + (cpu.regs[8] == 0))); + List.ReplaceItem(cpu.regF, 3, 0); +} + +Define ~HL transfers (warp=true) +{ + If (code parameters[(i + 2)] == 0) + { + regs.PC = z.HLreg; + } + Else + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + regs.SP = z.HLreg; + } +} + +Define ~INC/DEC r8 (warp=true) +{ + z3 = (1 - (code parameters[(i + 2)] * 2)); + If (code parameters[(i + 3)] == 6) + { + Call mmu.readbyte(z.HLreg); + } + Else + { + mmu.return = cpu.regs[(code parameters[(i + 3)] + 1)]; + } + List.ReplaceItem(cpu.regF, 1, ( + (((mmu.return + z3) % 256) == 0))); + List.ReplaceItem(cpu.regF, 2, code parameters[(i + 2)]); + List.ReplaceItem(cpu.regF, 3, ( + ((((mmu.return % 16) + (z3 % 16)) % 32) > 15))); + If cpu.regF[2] + { + List.ReplaceItem(cpu.regF, 3, (1 - cpu.regF[3])); + } + mmu.return = ((mmu.return + z3) % 256); + If (code parameters[(i + 3)] == 6) + { + Call mmu.writebyte(z.HLreg)(mmu.return); + } + Else + { + List.ReplaceItem(cpu.regs, (code parameters[(i + 3)] + 1), mmu.return); + } +} + +Define ~INC/DEC r16 (warp=true) +{ + ppu.cachedcycles += (1 * ppu.cyclesincr); + z2 = code parameters[(i + 3)]; + z3 = (1 - (code parameters[(i + 2)] * 2)); + If (z2 == 3) + { + regs.SP = ((regs.SP + z3) % 65536); + } + Else + { + z4 = (cpu.regs[((z2 * 2) + 2)] + z3); + List.ReplaceItem(cpu.regs, ((z2 * 2) + 2), (z4 % 256)); + List.ReplaceItem(cpu.regs, ((z2 * 2) + 1), ((cpu.regs[((z2 * 2) + 1)] + floor((z4 / 256))) % 256)); + } +} + +Define ~JP u16 (warp=true) +{ + Call cpu.evalcondition; + If ((code parameters[(i + 2)] == 0) Or (cpu.condition == 1)) + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + regs.PC = code parameters[(i + 4)]; + } +} + +Define ~JR i8 (warp=true) +{ + Call cpu.evalcondition; + If ((code parameters[(i + 2)] == 0) Or (cpu.condition == 1)) + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + regs.PC += (((code parameters[(i + 4)] * 2) % 256) - code parameters[(i + 4)]); + regs.PC = (regs.PC % 65536); + } +} + +Define ~LDH A (warp=true) +{ + z2 = "0xFF00"; + If (code parameters[(i + 3)] == 0) + { + z2 += code parameters[(i + 4)]; + } + Else + { + z2 += cpu.regs[2]; + } + If (code parameters[(i + 2)] == 0) + { + Call mmu.writebyte(z2)(cpu.regs[8]); + } + Else + { + Call mmu.readbyte(z2); + List.ReplaceItem(cpu.regs, 8, mmu.return); + } +} + +Define ~LD ptr (warp=true) +{ + z2 = code parameters[(i + 3)]; + If (z2 < 2) + { + If (z2 < 1) + { + mmu.addr = ((cpu.regs[1] * 256) + cpu.regs[2]); + } + Else + { + mmu.addr = ((cpu.regs[3] * 256) + cpu.regs[4]); + } + z3 = 0; + } + Else + { + mmu.addr = z.HLreg; + z3 = ((z2 == 2) - (z2 == 3)); + } + If (code parameters[(i + 2)] == 0) + { + Call mmu.writebyte(mmu.addr)(cpu.regs[8]); + } + Else + { + Call mmu.readbyte(mmu.addr); + List.ReplaceItem(cpu.regs, 8, mmu.return); + } + If (Not ((z3 == 0))) + { + z.HLreg += z3; + List.ReplaceItem(cpu.regs, 5, (floor((z.HLreg / 256)) % 256)); + List.ReplaceItem(cpu.regs, 6, (z.HLreg % 256)); + } +} + +Define ~LD r,r (warp=true) +{ + If (code parameters[(i + 2)] == 1) + { + If (code parameters[(i + 3)] == 6) + { + Call mmu.writebyte(z.HLreg)(code parameters[(i + 4)]); + } + Else + { + List.ReplaceItem(cpu.regs, (code parameters[(i + 3)] + 1), code parameters[(i + 4)]); + } + } + Else + { + z2 = code parameters[(i + 3)]; + If ((z2 % 8) == 6) + { + Call mmu.readbyte(z.HLreg); + } + Else + { + mmu.return = cpu.regs[((z2 % 8) + 1)]; + } + z2 = floor((z2 / 8)); + If (z2 == 6) + { + Call mmu.writebyte(z.HLreg)(mmu.return); + } + Else + { + List.ReplaceItem(cpu.regs, (z2 + 1), mmu.return); + } + } +} + +Define ~LD r16 (warp=true) +{ + z2 = code parameters[(i + 3)]; + If (z2 == 3) + { + regs.SP = code parameters[(i + 4)]; + } + Else + { + List.ReplaceItem(cpu.regs, ((z2 * 2) + 1), floor((code parameters[(i + 4)] / 256))); + List.ReplaceItem(cpu.regs, ((z2 * 2) + 2), (code parameters[(i + 4)] % 256)); + } +} + +Define ~LD [NNNN] (warp=true) +{ + z2 = code parameters[(i + 4)]; + If (code parameters[(i + 2)] == 0) + { + Call mmu.writebyte(z2)(cpu.regs[8]); + } + Else + { + Call mmu.readbyte(z2); + List.ReplaceItem(cpu.regs, 8, mmu.return); + } +} + +Define ~MISC (warp=true) +{ + z2 = code parameters[(i + 2)]; + If (z2 < 4) + { + If (z2 < 2) + { + If (z2 < 1) + { + Call mmu.writebyte(code parameters[(i + 4)])((regs.SP % 256)); + Call mmu.writebyte((code parameters[(i + 4)] + 1))(floor((regs.SP / 256))); + } + Else + { + Call ~STOP: the cursed instruction; + } + } + Else + { + If (z2 < 3) + { + Call ~DAA; + } + Else + { + List.ReplaceItem(cpu.regs, 8, (255 - cpu.regs[8])); + List.ReplaceItem(cpu.regF, 2, 1); + List.ReplaceItem(cpu.regF, 3, 1); + } + } + } + Else + { + If (z2 < 6) + { + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 0); + If (z2 < 5) + { + List.ReplaceItem(cpu.regF, 4, 1); + } + Else + { + List.ReplaceItem(cpu.regF, 4, (1 - cpu.regF[4])); + } + } + Else + { + If (z2 < 7) + { + cpu.HALT = 1; + } + } + } +} + +Define ~OR A (warp=true) +{ + Call cpu.readValue; + List.ReplaceItem(cpu.regs, 8, cpu.OR[(((cpu.regs[8] * 256) + mmu.return) + 1)]); + List.ReplaceItem(cpu.regF, 1, ( + (cpu.regs[8] == 0))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 0); + List.ReplaceItem(cpu.regF, 4, 0); +} + +Define ~POP r16 (warp=true) +{ + z2 = code parameters[(i + 3)]; + regs.SP = ((regs.SP + 2) % 65536); + If (z2 == 3) + { + Call mmu.readbyte((regs.SP - 1)); + List.ReplaceItem(cpu.regs, 8, mmu.return); + Call mmu.readbyte((regs.SP - 2)); + List.ReplaceItem(cpu.regF, 1, (floor((mmu.return / 128)) % 2)); + List.ReplaceItem(cpu.regF, 2, (floor((mmu.return / 64)) % 2)); + List.ReplaceItem(cpu.regF, 3, (floor((mmu.return / 32)) % 2)); + List.ReplaceItem(cpu.regF, 4, (floor((mmu.return / 16)) % 2)); + } + Else + { + Call mmu.readbyte((regs.SP - 1)); + List.ReplaceItem(cpu.regs, ((z2 * 2) + 1), mmu.return); + Call mmu.readbyte((regs.SP - 2)); + List.ReplaceItem(cpu.regs, ((z2 * 2) + 2), mmu.return); + } +} + +Define ~PUSH r16 (warp=true) +{ + z2 = code parameters[(i + 3)]; + ppu.cachedcycles += (1 * ppu.cyclesincr); + If (z2 == 3) + { + Call mmu.writebyte((regs.SP - 1))(cpu.regs[8]); + Call mmu.writebyte((regs.SP - 2))((((cpu.regF[1] * 8) + ((cpu.regF[2] * 4) + ((cpu.regF[3] * 2) + cpu.regF[4]))) * 16)); + } + Else + { + Call mmu.writebyte((regs.SP - 1))(cpu.regs[((z2 * 2) + 1)]); + Call mmu.writebyte((regs.SP - 2))(cpu.regs[((z2 * 2) + 2)]); + } + regs.SP = ((regs.SP - 2) % 65536); +} + +Define ~RET (warp=true) +{ + Call cpu.evalcondition; + If (((code parameters[(i + 2)] == 0) Or (code parameters[(i + 2)] == 2)) Or (cpu.condition == 1)) + { + ppu.cachedcycles += (((cpu.condition == 1) And (Not (((code parameters[(i + 2)] == 0) Or (code parameters[(i + 2)] == 2))))) * ppu.cyclesincr); + ppu.cachedcycles += (1 * ppu.cyclesincr); + regs.SP = ((regs.SP + 2) % 65536); + Call mmu.readbyte((regs.SP - 1)); + regs.PC = (mmu.return * 256); + Call mmu.readbyte((regs.SP - 2)); + regs.PC += mmu.return; + If (code parameters[(i + 2)] == 2) + { + cpu.interruptSwitch = 1; + } + } + Else + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + } +} + +Define ~RLA/RRA (warp=true) +{ + mmu.return = cpu.regs[8]; + If (code parameters[(i + 3)] == 0) + { + z2 = floor((mmu.return / 128)); + mmu.return = ((floor((mmu.return * 2)) + cpu.regF[4]) % 256); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = (floor((mmu.return / 2)) + (cpu.regF[4] * 128)); + } +} + +Define ~RLCA/RRCA (warp=true) +{ + mmu.return = cpu.regs[8]; + If (code parameters[(i + 3)] == 0) + { + z2 = floor((mmu.return / 128)); + mmu.return = (((mmu.return * 2) + z2) % 256); + } + Else + { + z2 = (mmu.return % 2); + mmu.return = (floor((mmu.return / 2)) + (z2 * 128)); + } +} + +Define ~SP+i8 (warp=true) +{ + z2 = (((code parameters[(i + 4)] * 2) % 256) - code parameters[(i + 4)]); + List.ReplaceItem(cpu.regF, 1, 0); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, ( + ((((regs.SP % 16) + (z2 % 16)) % 32) > 15))); + List.ReplaceItem(cpu.regF, 4, ( + ((((regs.SP % 256) + (z2 % 256)) % 512) > 255))); + z3 = ((regs.SP + z2) % 65536); + If (code parameters[(i + 2)] == 0) + { + ppu.cachedcycles += (2 * ppu.cyclesincr); + regs.SP = z3; + } + Else + { + ppu.cachedcycles += (1 * ppu.cyclesincr); + List.ReplaceItem(cpu.regs, 5, floor((z3 / 256))); + List.ReplaceItem(cpu.regs, 6, (z3 % 256)); + } +} + +Define ~STOP: the cursed instruction (warp=true) +{ + If (cart.GBCMode == 1) + { + Call .runAllCachedCycles; + If ((.I/O[78] % 2) == 1) + { + If (cpu.speed == 1) + { + cpu.speed = 2; + } + Else + { + cpu.speed = 1; + } + List.ReplaceItem(.I/O, 78, ((cpu.speed - 1) * 128)); + ppu.cyclesincr = (4 / cpu.speed); + } + } +} + +Define ~SUB/SBC/CP A (warp=true) +{ + Call cpu.readValue; + z3 = (cpu.regF[4] * (code parameters[(i + 2)] == 1)); + z2 = ((cpu.regs[8] - mmu.return) - z3); + List.ReplaceItem(cpu.regF, 1, ( + ((z2 % 256) == 0))); + List.ReplaceItem(cpu.regF, 2, 1); + List.ReplaceItem(cpu.regF, 3, ( + (((((cpu.regs[8] % 16) - (mmu.return % 16)) - z3) % 32) > 15))); + List.ReplaceItem(cpu.regF, 4, ( + (z2 < 0))); + If (Not ((code parameters[(i + 2)] == 2))) + { + List.ReplaceItem(cpu.regs, 8, (z2 % 256)); + } +} + +Define ~XOR A (warp=true) +{ + Call cpu.readValue; + List.ReplaceItem(cpu.regs, 8, cpu.XOR[(((cpu.regs[8] * 256) + mmu.return) + 1)]); + List.ReplaceItem(cpu.regF, 1, ( + (cpu.regs[8] == 0))); + List.ReplaceItem(cpu.regF, 2, 0); + List.ReplaceItem(cpu.regF, 3, 0); + List.ReplaceItem(cpu.regF, 4, 0); +} + + +//----- Orphaned blocks ----------------------------------------------------------------------------------------------- + +Call ​​log​​(code parameters[(i + 1)]) + +If (cpu.HALT == 1) +{ +} + +_frameskip2 = 0 + +down arrow + +up arrow + +left arrow + +right arrow + +z12 = 0 + +List.ReplaceItem(+sound envelope timer, z17, 0) + +Call ​​breakpoint​​ + +right arrow + +right arrow + +right arrow + + +//----- Costumes ------------------------------------------------------------------------------------------------------ + +costume1.svg diff --git a/Game Boy.txt b/Game Boy.txt deleted file mode 100644 index 8c29779..0000000 --- a/Game Boy.txt +++ /dev/null @@ -1,68895 +0,0 @@ -//----- Variables ----------------------------------------------------------------------------------------------------- - -*OAMDMA# = 160 -*OAMDMAS = 49152 -,c = 0 -,joypad = 0 --keyRandom = 8 --LCDC = 11000011 --LCDS = 00000100 --LY = 57 --LYC = 15 --LYmask = 57 --scx = 208 --SCXMOD8 = 0 --STATUS = 2 --windowWasDrawn? = 0 --WLY = 0 --wx = 89 -.DIV2 = 0 -.DIVCYCLES = 60500 -.DMAenable = 0 -.DMAend = 33024 -.DMAlength = 0 -.DMAstart = 16960 -.DMAtype = 0 -.GBC? = 0 -.HDMAenable = 0 -.IME = 1 -.instr = B6HALT -.instrID = 2 -.Mpri = 1 -.soundEnable = 1 -.SPEED = 1 -.Spri = 0 -.spriteattributes = 00000000 -.spriteCpal = 0 -.spritesize = 8 -.t = 0 -.TAC1 = 0 -.TAC2 = 0 -.TACFLAG = 0 -.tileB = 0x9000 -.timenable = 1 -.vbank = 0 -.windowflag = 0 -@PAL = 0 -@PIX = 0 -delta = 0 -FPS = 10.567544034792 -g = 0 -h = 2 -i = 0 -i = 256 -lines = 185385 -lock = 0 -loop = 65312 -render = 1 -s = 0 -sound = 0 -T1 = 0b00000000 -T2 = 56 -T3 = 2 -T4 = 37568 -T4.1 = 15 -T4.2 = 15 -T5 = 16609 -T6 = 0 -T7 = -1 -T8 = 7 -T9 = 16609 -T10 = 16582 -T11 = 1 -time1 = 0 -time2 = 8457.6889575694 -_A = 192 -_B = 1 -_current bank = 2 -_frames = 0.60000000000005 -_frameskip = 2.4 -_IEindex = 16800 -_IFindex = 16560 -_INTRdest = 72 -_lineCyc = 56 -_MBCnumber = 1 -_PIXEL# = 9120 -_R = 2 -_RE = 143.6236834377 -_rom size = 4 -_S = 0 -_SIZE = 2 -_STATcond1 = 0 -_STATcond2 = 0 -_STATindex = 16610 -_T = 0 -_X = 0 -_XSHIFT = 160 -_YSHIFT = 144 -_Z = 195 - - -//----- Lists --------------------------------------------------------------------------------------------------------- - -$A = { } -$B = { } -$C = { - 4 - 3 -} -*OAMidx = { } -*OAMx = { } -*OAMy = { } -*palette = { - #eef2ae - #7eb97a - #38786f - #19394d - #eef2ae - #7eb97a - #38786f - #19394d - #eef2ae - #7eb97a - #7eb97a - #7eb97a -} -.addr2ptr = { } -.pointerStart = { - 0 - 0 - 0 - 8192 - 8192 - 12288 - 16384 - 16544 - 16544 - 16672 -} -.ptr = { - 0 - 32768 - 0 - 1000000 - 8192 - 12288 - 16384 - 16544 - 16544 - 16672 -} -.ptr index = { } -.vals = { - 80 - 248 -} -2^x = { - 1 - 2 - 4 - 8 - 16 - 32 - 64 - 128 - 256 - 512 - 1024 - 2048 - 4096 - 8192 - 16384 - 32768 -} -byteStack = { - 118 -} -Flag bits = { - 1 - 0 - 1 - 0 -} -testroms = { } -_cartridge stuff = { - 0 - 1 - 4 - 0 -} -_DMGPALETTE = { - #19394d - #38786f - #7eb97a - #eef2ae -} -_GBCPALETTELOOKUP = { } -_instrIDs = { - 0 - 10 - 11 - 12 - 13 - 13 - 1 - 22 - 2 - 4 - 11 - 12 - 13 - 13 - 1 - 22 - 2 - 10 - 11 - 12 - 13 - 13 - 1 - 23 - 14 - 4 - 11 - 12 - 13 - 13 - 1 - 23 - 14 - 10 - 11 - 12 - 13 - 13 - 1 - 2 - 14 - 4 - 11 - 12 - 13 - 13 - 1 - 2 - 14 - 10 - 11 - 12 - 13 - 13 - 1 - 2 - 14 - 4 - 11 - 12 - 13 - 13 - 1 - 2 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 2 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 5 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 7 - 7 - 7 - 7 - 7 - 7 - 7 - 7 - 8 - 8 - 8 - 8 - 8 - 8 - 8 - 8 - 9 - 9 - 9 - 9 - 9 - 9 - 9 - 9 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 15 - 18 - 16 - 16 - 17 - 19 - 5 - 20 - 15 - 15 - 16 - 2 - 17 - 17 - 5 - 20 - 15 - 18 - 16 - 0 - 17 - 19 - 6 - 20 - 15 - 15 - 16 - 0 - 17 - 0 - 6 - 20 - 24 - 18 - 24 - 0 - 0 - 19 - 7 - 20 - 25 - 21 - 26 - 0 - 0 - 0 - 8 - 20 - 24 - 18 - 24 - 3 - 0 - 19 - 9 - 20 - 25 - 21 - 26 - 3 - 0 - 0 - 6 - 20 -} -_instrParam = { - ~ - J23 - K023 - L+23 - M+2 - M-2 - A2U - V0 - B0SP - D23 - K123 - L-23 - M+3 - M-3 - A3U - V1 - B1STOP - J45 - K045 - L+45 - M+4 - M-4 - A4U - W0 - N0 - D45 - K145 - L-45 - M+5 - M-5 - A5U - W1 - N110 - J78 - K078+ - L+78 - M+7 - M-7 - A7U - B2DAA - N111 - D78 - K178+ - L-78 - M+8 - M-8 - A8U - B3CPL - N140 - JSP - K078- - L+SP - M+9 - M-9 - A9U - B4SCF - N141 - DSP - K178- - L-SP - M+1 - M-1 - A1U - B5CCF - A22 - A23 - A24 - A25 - A27 - A28 - A29 - A21 - A32 - A33 - A34 - A35 - A37 - A38 - A39 - A31 - A42 - A43 - A44 - A45 - A47 - A48 - A49 - A41 - A52 - A53 - A54 - A55 - A57 - A58 - A59 - A51 - A72 - A73 - A74 - A75 - A77 - A78 - A79 - A71 - A82 - A83 - A84 - A85 - A87 - A88 - A89 - A81 - A92 - A93 - A94 - A95 - A97 - A98 - B6HALT - A91 - A12 - A13 - A14 - A15 - A17 - A18 - A19 - A11 - E02 - E03 - E04 - E05 - E07 - E08 - E09 - E01 - E12 - E13 - E14 - E15 - E17 - E18 - E19 - E11 - F02 - F03 - F04 - F05 - F07 - F08 - F09 - F01 - F12 - F13 - F14 - F15 - F17 - F18 - F19 - F11 - G02 - G03 - G04 - G05 - G07 - G08 - G09 - G01 - H02 - H03 - H04 - H05 - H07 - H08 - H09 - H01 - I02 - I03 - I04 - I05 - I07 - I08 - I09 - I01 - F22 - F23 - F24 - F25 - F27 - F28 - F29 - F21 - O110 - R23 - P110 - P000 - Q110 - S23 - E0U - T0 - O111 - O000 - P111 - B7CB - Q111 - Q000 - E1U - T1 - O140 - R45 - P140 - - - Q140 - S45 - F0U - T2 - O141 - O200 - P141 - - - Q141 - - - F1U - T3 - X0U - R78 - X03 - - - - - S78 - G0U - T4 - Y0 - U0 - Z0 - - - - - - - H0U - T5 - X1U - R16 - X13 - C0 - - - S16 - I0U - T6 - Y1 - U1 - Z1 - C1 - - - - - F2U - T7 -} -_PALETTE RAM = { } -_pix = { } -_RAM = { } -_REGISTERS = { - 0 - 0 - 8 - 0 - 16 - 112 - 192 - 206 - 2 -} -_ROM = { - 195 - 133 - 1 - 255 - 255 - 255 - 0 - 0 - 195 - 133 - 1 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 135 - 225 - 95 - 22 - 0 - 25 - 94 - 35 - 86 - 213 - 225 - 233 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 195 - 96 - 0 - 255 - 255 - 255 - 255 - 255 - 195 - 149 - 0 - 255 - 255 - 255 - 255 - 255 - 245 - 62 - 3 - 234 - 0 - 32 - 205 - 240 - 127 - 240 - 253 - 234 - 0 - 32 - 241 - 217 - 245 - 197 - 213 - 229 - 205 - 79 - 34 - 205 - 125 - 27 - 205 - 42 - 28 - 205 - 182 - 255 - 205 - 36 - 63 - 205 - 97 - 61 - 205 - 248 - 35 - 33 - 172 - 255 - 52 - 240 - 179 - 254 - 58 - 32 - 5 - 33 - 64 - 255 - 203 - 238 - 175 - 224 - 67 - 224 - 66 - 60 - 224 - 133 - 225 - 209 - 193 - 241 - 217 - 245 - 229 - 240 - 65 - 230 - 3 - 32 - 250 - 250 - 165 - 192 - 167 - 32 - 44 - 240 - 164 - 224 - 67 - 250 - 222 - 192 - 167 - 40 - 5 - 250 - 223 - 192 - 224 - 66 - 240 - 179 - 254 - 58 - 32 - 20 - 33 - 74 - 255 - 126 - 254 - 64 - 40 - 30 - 53 - 254 - 135 - 48 - 7 - 198 - 8 - 224 - 69 - 234 - 165 - 192 - 225 - 241 - 217 - 33 - 64 - 255 - 203 - 174 - 62 - 15 - 224 - 69 - 175 - 234 - 165 - 192 - 24 - 238 - 245 - 240 - 251 - 167 - 40 - 6 - 61 - 224 - 251 - 241 - 24 - 219 - 62 - 255 - 234 - 173 - 192 - 24 - 246 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 195 - 80 - 1 - 206 - 237 - 102 - 102 - 204 - 13 - 0 - 11 - 3 - 115 - 0 - 131 - 0 - 12 - 0 - 13 - 0 - 8 - 17 - 31 - 136 - 137 - 0 - 14 - 220 - 204 - 110 - 230 - 221 - 221 - 217 - 153 - 187 - 187 - 103 - 99 - 110 - 14 - 236 - 204 - 221 - 220 - 153 - 159 - 187 - 185 - 51 - 62 - 83 - 85 - 80 - 69 - 82 - 32 - 77 - 65 - 82 - 73 - 79 - 76 - 65 - 78 - 68 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 1 - 0 - 158 - 65 - 107 - 195 - 133 - 1 - 205 - 209 - 62 - 240 - 65 - 230 - 3 - 32 - 250 - 70 - 240 - 65 - 230 - 3 - 32 - 250 - 126 - 160 - 201 - 240 - 159 - 167 - 192 - 123 - 33 - 160 - 192 - 134 - 39 - 34 - 122 - 142 - 39 - 34 - 62 - 0 - 142 - 39 - 119 - 62 - 1 - 224 - 177 - 208 - 62 - 153 - 50 - 50 - 119 - 201 - 62 - 3 - 243 - 224 - 15 - 224 - 255 - 62 - 64 - 224 - 65 - 175 - 224 - 66 - 224 - 67 - 224 - 164 - 62 - 128 - 224 - 64 - 240 - 68 - 254 - 148 - 32 - 250 - 62 - 3 - 224 - 64 - 62 - 228 - 224 - 71 - 224 - 72 - 62 - 84 - 224 - 73 - 33 - 38 - 255 - 62 - 128 - 50 - 62 - 255 - 50 - 54 - 119 - 49 - 255 - 207 - 175 - 33 - 255 - 223 - 14 - 64 - 6 - 0 - 50 - 5 - 32 - 252 - 13 - 32 - 249 - 33 - 255 - 159 - 14 - 32 - 175 - 6 - 0 - 50 - 5 - 32 - 252 - 13 - 32 - 249 - 33 - 255 - 254 - 6 - 0 - 50 - 5 - 32 - 252 - 33 - 254 - 255 - 6 - 128 - 50 - 5 - 32 - 252 - 14 - 182 - 6 - 12 - 33 - 125 - 63 - 42 - 226 - 12 - 5 - 32 - 250 - 175 - 224 - 228 - 62 - 17 - 224 - 180 - 234 - 168 - 192 - 62 - 2 - 234 - 220 - 192 - 62 - 14 - 224 - 179 - 62 - 3 - 234 - 0 - 32 - 234 - 164 - 192 - 62 - 0 - 234 - 225 - 192 - 224 - 154 - 205 - 243 - 127 - 62 - 2 - 234 - 0 - 32 - 224 - 253 - 250 - 29 - 218 - 254 - 3 - 32 - 11 - 62 - 255 - 234 - 29 - 218 - 205 - 232 - 9 - 205 - 45 - 23 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 205 - 242 - 71 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 240 - 159 - 167 - 32 - 8 - 205 - 195 - 7 - 240 - 178 - 167 - 32 - 60 - 33 - 166 - 255 - 6 - 2 - 126 - 167 - 40 - 1 - 53 - 44 - 5 - 32 - 247 - 240 - 159 - 167 - 40 - 38 - 240 - 128 - 203 - 95 - 32 - 16 - 240 - 172 - 230 - 15 - 32 - 26 - 33 - 215 - 192 - 126 - 167 - 40 - 3 - 53 - 24 - 16 - 240 - 179 - 167 - 32 - 11 - 62 - 2 - 234 - 0 - 32 - 224 - 253 - 62 - 14 - 224 - 179 - 205 - 163 - 2 - 118 - 240 - 133 - 167 - 40 - 250 - 175 - 224 - 133 - 24 - 133 - 24 - 254 - 240 - 179 - 239 - 16 - 6 - 165 - 6 - 197 - 6 - 132 - 11 - 205 - 11 - 106 - 12 - 194 - 12 - 55 - 12 - 64 - 13 - 18 - 22 - 38 - 22 - 99 - 22 - 209 - 22 - 109 - 35 - 34 - 3 - 195 - 4 - 183 - 5 - 95 - 5 - 142 - 61 - 206 - 61 - 50 - 88 - 53 - 88 - 158 - 62 - 56 - 88 - 59 - 88 - 62 - 88 - 65 - 88 - 240 - 13 - 12 - 14 - 40 - 14 - 84 - 14 - 141 - 14 - 160 - 14 - 196 - 14 - 9 - 15 - 42 - 15 - 97 - 15 - 244 - 15 - 76 - 16 - 144 - 16 - 160 - 14 - 13 - 17 - 92 - 17 - 139 - 17 - 199 - 17 - 18 - 18 - 75 - 18 - 152 - 18 - 185 - 18 - 232 - 18 - 133 - 19 - 231 - 19 - 56 - 20 - 81 - 20 - 93 - 20 - 127 - 20 - 211 - 20 - 115 - 28 - 223 - 28 - 231 - 28 - 20 - 29 - 164 - 6 - 175 - 224 - 64 - 243 - 224 - 164 - 33 - 0 - 192 - 6 - 159 - 34 - 5 - 32 - 252 - 224 - 153 - 234 - 165 - 192 - 234 - 173 - 192 - 33 - 216 - 192 - 34 - 34 - 34 - 250 - 225 - 192 - 224 - 154 - 33 - 26 - 121 - 17 - 0 - 147 - 1 - 0 - 5 - 205 - 199 - 5 - 33 - 26 - 126 - 17 - 0 - 136 - 1 - 112 - 1 - 205 - 199 - 5 - 33 - 98 - 72 - 240 - 154 - 254 - 1 - 56 - 3 - 33 - 114 - 78 - 17 - 192 - 138 - 1 - 16 - 0 - 205 - 199 - 5 - 33 - 50 - 80 - 17 - 0 - 144 - 1 - 192 - 2 - 205 - 199 - 5 - 33 - 50 - 80 - 17 - 0 - 128 - 1 - 160 - 2 - 205 - 199 - 5 - 205 - 184 - 5 - 175 - 224 - 229 - 240 - 228 - 245 - 62 - 12 - 224 - 228 - 205 - 240 - 7 - 241 - 224 - 228 - 62 - 60 - 33 - 0 - 152 - 205 - 88 - 5 - 33 - 4 - 152 - 54 - 148 - 33 - 34 - 152 - 54 - 149 - 44 - 54 - 150 - 44 - 54 - 140 - 33 - 47 - 152 - 54 - 63 - 44 - 54 - 76 - 44 - 54 - 77 - 33 - 162 - 192 - 17 - 194 - 192 - 6 - 3 - 26 - 150 - 56 - 9 - 32 - 21 - 29 - 45 - 5 - 32 - 245 - 24 - 14 - 33 - 162 - 192 - 17 - 194 - 192 - 6 - 3 - 58 - 18 - 29 - 5 - 32 - 250 - 17 - 194 - 192 - 33 - 105 - 153 - 205 - 56 - 63 - 33 - 4 - 192 - 54 - 120 - 250 - 166 - 192 - 167 - 40 - 41 - 240 - 154 - 254 - 2 - 56 - 2 - 24 - 33 - 33 - 70 - 4 - 17 - 198 - 153 - 6 - 10 - 42 - 18 - 28 - 5 - 32 - 250 - 33 - 0 - 192 - 54 - 128 - 44 - 54 - 136 - 44 - 250 - 166 - 192 - 119 - 44 - 54 - 0 - 44 - 54 - 128 - 44 - 54 - 40 - 44 - 54 - 172 - 175 - 224 - 15 - 62 - 195 - 224 - 64 - 251 - 62 - 15 - 224 - 179 - 175 - 224 - 249 - 62 - 40 - 234 - 215 - 192 - 224 - 159 - 33 - 220 - 192 - 52 - 126 - 254 - 3 - 192 - 54 - 0 - 201 - 12 - 24 - 23 - 29 - 18 - 23 - 30 - 14 - 44 - 43 - 250 - 4 - 192 - 254 - 120 - 40 - 75 - 250 - 166 - 192 - 61 - 234 - 166 - 192 - 250 - 168 - 192 - 224 - 180 - 30 - 0 - 254 - 17 - 40 - 51 - 28 - 254 - 18 - 40 - 46 - 28 - 254 - 19 - 40 - 41 - 28 - 254 - 33 - 40 - 36 - 28 - 254 - 34 - 40 - 31 - 28 - 254 - 35 - 40 - 26 - 28 - 254 - 49 - 40 - 21 - 28 - 254 - 50 - 40 - 16 - 28 - 254 - 51 - 40 - 11 - 28 - 254 - 65 - 40 - 6 - 28 - 254 - 66 - 40 - 1 - 28 - 123 - 224 - 228 - 195 - 61 - 5 - 175 - 234 - 166 - 192 - 240 - 154 - 254 - 2 - 210 - 61 - 5 - 62 - 17 - 224 - 180 - 175 - 24 - 233 - 250 - 166 - 192 - 167 - 40 - 20 - 33 - 4 - 192 - 126 - 238 - 248 - 119 - 24 - 11 - 240 - 129 - 71 - 203 - 88 - 32 - 134 - 203 - 80 - 32 - 230 - 240 - 154 - 254 - 2 - 56 - 69 - 203 - 64 - 40 - 29 - 240 - 180 - 60 - 71 - 230 - 15 - 254 - 4 - 120 - 32 - 2 - 198 - 13 - 224 - 180 - 240 - 228 - 60 - 254 - 12 - 32 - 5 - 62 - 17 - 224 - 180 - 175 - 224 - 228 - 33 - 8 - 192 - 240 - 180 - 6 - 120 - 79 - 230 - 240 - 203 - 55 - 112 - 44 - 54 - 120 - 44 - 34 - 44 - 121 - 230 - 15 - 112 - 44 - 54 - 136 - 44 - 34 - 44 - 112 - 44 - 54 - 128 - 44 - 54 - 41 - 250 - 215 - 192 - 167 - 192 - 250 - 220 - 192 - 203 - 39 - 95 - 22 - 0 - 33 - 82 - 5 - 25 - 42 - 224 - 180 - 126 - 224 - 228 - 62 - 80 - 234 - 215 - 192 - 62 - 17 - 224 - 179 - 175 - 224 - 154 - 201 - 62 - 17 - 224 - 179 - 175 - 224 - 15 - 224 - 159 - 234 - 164 - 192 - 61 - 234 - 232 - 223 - 62 - 7 - 224 - 255 - 201 - 17 - 0 - 18 - 1 - 51 - 8 - 6 - 20 - 34 - 5 - 32 - 252 - 201 - 175 - 224 - 64 - 243 - 240 - 159 - 167 - 32 - 12 - 175 - 234 - 160 - 192 - 234 - 161 - 192 - 234 - 162 - 192 - 224 - 250 - 205 - 208 - 5 - 205 - 184 - 5 - 33 - 0 - 156 - 6 - 95 - 62 - 44 - 34 - 5 - 32 - 252 - 205 - 248 - 5 - 62 - 15 - 224 - 69 - 62 - 7 - 224 - 7 - 33 - 74 - 255 - 54 - 133 - 44 - 54 - 96 - 175 - 224 - 6 - 224 - 15 - 61 - 224 - 167 - 224 - 177 - 62 - 91 - 224 - 233 - 205 - 57 - 36 - 205 - 17 - 61 - 205 - 18 - 28 - 205 - 77 - 28 - 240 - 180 - 205 - 100 - 13 - 201 - 33 - 255 - 155 - 1 - 0 - 4 - 62 - 44 - 50 - 11 - 120 - 177 - 32 - 248 - 201 - 42 - 18 - 19 - 11 - 120 - 177 - 32 - 248 - 201 - 33 - 50 - 80 - 17 - 0 - 144 - 1 - 0 - 8 - 205 - 199 - 5 - 33 - 50 - 64 - 17 - 0 - 128 - 1 - 0 - 16 - 205 - 199 - 5 - 33 - 3 - 86 - 17 - 0 - 198 - 6 - 8 - 42 - 18 - 35 - 19 - 5 - 32 - 249 - 201 - 33 - 135 - 63 - 17 - 0 - 152 - 6 - 2 - 42 - 18 - 28 - 123 - 230 - 31 - 254 - 20 - 32 - 246 - 30 - 32 - 5 - 32 - 241 - 201 - 205 - 143 - 33 - 205 - 55 - 8 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 205 - 252 - 72 - 1 - 8 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 24 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 40 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 56 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 72 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 205 - 148 - 74 - 205 - 139 - 73 - 205 - 234 - 74 - 205 - 60 - 75 - 205 - 111 - 75 - 205 - 138 - 75 - 205 - 181 - 75 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 205 - 36 - 31 - 205 - 136 - 36 - 240 - 253 - 224 - 225 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 205 - 68 - 88 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 205 - 131 - 25 - 205 - 236 - 22 - 205 - 179 - 23 - 205 - 225 - 10 - 205 - 36 - 10 - 205 - 250 - 30 - 33 - 206 - 192 - 126 - 167 - 200 - 53 - 205 - 10 - 33 - 201 - 33 - 166 - 255 - 126 - 167 - 192 - 33 - 0 - 209 - 17 - 16 - 0 - 6 - 10 - 54 - 255 - 25 - 5 - 32 - 250 - 175 - 224 - 153 - 61 - 234 - 163 - 192 - 62 - 2 - 224 - 179 - 201 - 243 - 62 - 0 - 224 - 64 - 205 - 203 - 30 - 205 - 85 - 22 - 33 - 229 - 255 - 240 - 249 - 167 - 40 - 8 - 175 - 224 - 249 - 240 - 245 - 60 - 24 - 1 - 126 - 254 - 3 - 40 - 1 - 61 - 1 - 12 - 3 - 254 - 7 - 56 - 31 - 1 - 52 - 7 - 254 - 11 - 56 - 24 - 1 - 92 - 11 - 254 - 15 - 56 - 17 - 1 - 132 - 15 - 254 - 19 - 56 - 10 - 1 - 172 - 19 - 254 - 23 - 56 - 3 - 1 - 212 - 23 - 112 - 44 - 54 - 0 - 121 - 234 - 171 - 192 - 205 - 240 - 7 - 33 - 43 - 152 - 54 - 44 - 44 - 240 - 180 - 71 - 230 - 240 - 203 - 55 - 34 - 120 - 230 - 15 - 44 - 119 - 33 - 0 - 156 - 17 - 131 - 7 - 6 - 9 - 26 - 34 - 19 - 5 - 32 - 250 - 175 - 224 - 179 - 234 - 211 - 192 - 62 - 195 - 224 - 64 - 205 - 140 - 7 - 175 - 224 - 15 - 224 - 164 - 234 - 210 - 192 - 224 - 238 - 234 - 29 - 218 - 224 - 6 - 33 - 1 - 218 - 34 - 54 - 4 - 62 - 40 - 234 - 0 - 218 - 62 - 91 - 224 - 233 - 240 - 228 - 14 - 10 - 254 - 5 - 40 - 6 - 14 - 12 - 254 - 11 - 32 - 13 - 62 - 13 - 224 - 179 - 250 - 3 - 194 - 230 - 240 - 177 - 234 - 3 - 194 - 205 - 83 - 36 - 251 - 201 - 44 - 132 - 25 - 10 - 30 - 28 - 14 - 132 - 44 - 250 - 211 - 192 - 167 - 192 - 62 - 3 - 234 - 0 - 32 - 205 - 243 - 127 - 240 - 253 - 234 - 0 - 32 - 240 - 244 - 167 - 32 - 14 - 240 - 228 - 33 - 183 - 7 - 95 - 22 - 0 - 25 - 126 - 234 - 232 - 223 - 201 - 62 - 4 - 234 - 232 - 223 - 201 - 7 - 7 - 3 - 8 - 8 - 5 - 7 - 3 - 3 - 6 - 6 - 5 - 240 - 128 - 230 - 15 - 254 - 15 - 32 - 3 - 195 - 133 - 1 - 240 - 129 - 203 - 95 - 200 - 240 - 179 - 254 - 14 - 208 - 33 - 64 - 255 - 240 - 178 - 238 - 1 - 224 - 178 - 40 - 7 - 203 - 238 - 62 - 1 - 224 - 223 - 201 - 203 - 174 - 62 - 2 - 24 - 247 - 33 - 20 - 33 - 17 - 0 - 194 - 6 - 81 - 42 - 18 - 19 - 5 - 32 - 250 - 240 - 153 - 167 - 40 - 5 - 62 - 16 - 234 - 3 - 194 - 33 - 230 - 255 - 175 - 6 - 6 - 34 - 5 - 32 - 252 - 224 - 163 - 234 - 170 - 192 - 62 - 64 - 224 - 233 - 6 - 20 - 240 - 179 - 254 - 10 - 40 - 8 - 240 - 228 - 254 - 12 - 40 - 2 - 6 - 27 - 197 - 205 - 168 - 33 - 205 - 79 - 34 - 193 - 5 - 32 - 245 - 201 - 240 - 156 - 167 - 40 - 3 - 61 - 224 - 156 - 17 - 240 - 255 - 6 - 10 - 33 - 144 - 209 - 126 - 254 - 255 - 32 - 5 - 25 - 5 - 32 - 247 - 201 - 224 - 251 - 125 - 224 - 252 - 197 - 229 - 1 - 10 - 0 - 9 - 78 - 44 - 44 - 126 - 224 - 155 - 250 - 1 - 194 - 71 - 240 - 153 - 254 - 2 - 32 - 11 - 250 - 3 - 194 - 254 - 24 - 40 - 4 - 62 - 254 - 128 - 71 - 120 - 224 - 160 - 250 - 1 - 194 - 198 - 6 - 224 - 161 - 250 - 2 - 194 - 71 - 214 - 3 - 224 - 162 - 62 - 2 - 128 - 224 - 143 - 225 - 229 - 205 - 166 - 10 - 167 - 202 - 88 - 9 - 240 - 252 - 254 - 144 - 202 - 106 - 9 - 240 - 251 - 254 - 51 - 202 - 206 - 9 - 240 - 179 - 254 - 13 - 40 - 6 - 250 - 211 - 192 - 167 - 40 - 4 - 45 - 195 - 57 - 9 - 250 - 2 - 194 - 198 - 6 - 78 - 45 - 145 - 56 - 122 - 250 - 2 - 194 - 214 - 6 - 144 - 48 - 114 - 70 - 5 - 5 - 5 - 250 - 1 - 194 - 144 - 48 - 104 - 45 - 45 - 229 - 1 - 10 - 0 - 9 - 203 - 126 - 225 - 32 - 120 - 205 - 7 - 10 - 205 - 248 - 41 - 167 - 40 - 111 - 33 - 10 - 194 - 54 - 0 - 45 - 45 - 54 - 13 - 45 - 54 - 1 - 33 - 3 - 194 - 126 - 230 - 240 - 246 - 4 - 119 - 62 - 3 - 234 - 224 - 223 - 250 - 2 - 194 - 198 - 252 - 224 - 235 - 250 - 1 - 194 - 214 - 16 - 224 - 236 - 240 - 158 - 224 - 237 - 240 - 156 - 167 - 40 - 29 - 240 - 157 - 254 - 3 - 40 - 3 - 60 - 224 - 157 - 71 - 240 - 237 - 254 - 80 - 40 - 13 - 203 - 39 - 5 - 32 - 251 - 224 - 237 - 62 - 50 - 224 - 156 - 24 - 33 - 175 - 224 - 157 - 24 - 245 - 45 - 45 - 250 - 211 - 192 - 167 - 32 - 33 - 240 - 153 - 254 - 3 - 48 - 14 - 205 - 59 - 42 - 167 - 40 - 8 - 240 - 153 - 167 - 32 - 11 - 205 - 232 - 9 - 225 - 193 - 201 - 225 - 193 - 195 - 76 - 8 - 205 - 215 - 9 - 24 - 243 - 205 - 253 - 42 - 167 - 40 - 237 - 24 - 145 - 240 - 251 - 254 - 41 - 40 - 50 - 254 - 52 - 40 - 62 - 254 - 43 - 40 - 70 - 254 - 46 - 32 - 217 - 240 - 153 - 254 - 2 - 32 - 38 - 224 - 181 - 62 - 4 - 234 - 224 - 223 - 62 - 16 - 224 - 237 - 250 - 2 - 194 - 198 - 252 - 224 - 235 - 250 - 1 - 194 - 214 - 16 - 224 - 236 - 45 - 45 - 45 - 54 - 255 - 24 - 179 - 240 - 153 - 254 - 2 - 40 - 225 - 62 - 1 - 224 - 153 - 62 - 80 - 224 - 166 - 24 - 210 - 62 - 248 - 234 - 211 - 192 - 62 - 12 - 234 - 232 - 223 - 24 - 203 - 62 - 255 - 224 - 237 - 62 - 8 - 234 - 224 - 223 - 62 - 1 - 234 - 163 - 192 - 24 - 191 - 224 - 254 - 62 - 5 - 234 - 224 - 223 - 24 - 196 - 62 - 3 - 224 - 153 - 175 - 224 - 181 - 62 - 80 - 224 - 166 - 62 - 6 - 234 - 224 - 223 - 201 - 250 - 7 - 208 - 167 - 192 - 62 - 3 - 224 - 179 - 175 - 224 - 181 - 224 - 6 - 62 - 2 - 234 - 232 - 223 - 62 - 128 - 234 - 0 - 194 - 250 - 1 - 194 - 234 - 221 - 192 - 201 - 229 - 213 - 240 - 155 - 230 - 192 - 203 - 55 - 203 - 63 - 203 - 63 - 95 - 22 - 0 - 33 - 32 - 10 - 25 - 126 - 224 - 158 - 209 - 225 - 201 - 1 - 4 - 8 - 80 - 240 - 238 - 167 - 200 - 254 - 192 - 200 - 17 - 16 - 0 - 6 - 10 - 33 - 0 - 209 - 126 - 254 - 255 - 32 - 5 - 25 - 5 - 32 - 247 - 201 - 197 - 229 - 1 - 10 - 0 - 9 - 203 - 126 - 32 - 90 - 78 - 44 - 44 - 126 - 224 - 155 - 225 - 229 - 44 - 44 - 70 - 250 - 1 - 194 - 144 - 56 - 73 - 71 - 62 - 20 - 144 - 56 - 67 - 254 - 7 - 48 - 63 - 44 - 121 - 230 - 112 - 203 - 55 - 79 - 126 - 198 - 8 - 13 - 32 - 251 - 79 - 70 - 250 - 2 - 194 - 214 - 6 - 145 - 48 - 40 - 250 - 2 - 194 - 198 - 6 - 144 - 56 - 32 - 45 - 45 - 45 - 213 - 205 - 7 - 10 - 205 - 26 - 42 - 209 - 167 - 40 - 18 - 250 - 2 - 194 - 198 - 252 - 224 - 235 - 250 - 1 - 194 - 214 - 16 - 224 - 236 - 240 - 158 - 224 - 237 - 225 - 193 - 195 - 56 - 10 - 44 - 44 - 126 - 198 - 8 - 71 - 240 - 160 - 144 - 48 - 46 - 121 - 230 - 15 - 71 - 126 - 5 - 40 - 4 - 214 - 8 - 24 - 249 - 71 - 240 - 161 - 144 - 56 - 28 - 44 - 240 - 143 - 70 - 144 - 56 - 21 - 121 - 230 - 112 - 203 - 55 - 71 - 126 - 198 - 8 - 5 - 32 - 251 - 71 - 240 - 162 - 144 - 48 - 3 - 62 - 1 - 201 - 175 - 201 - 250 - 7 - 194 - 254 - 1 - 200 - 17 - 16 - 0 - 6 - 10 - 33 - 0 - 209 - 126 - 254 - 255 - 32 - 5 - 25 - 5 - 32 - 247 - 201 - 197 - 229 - 1 - 10 - 0 - 9 - 203 - 126 - 202 - 127 - 11 - 126 - 230 - 15 - 224 - 160 - 1 - 248 - 255 - 9 - 240 - 160 - 71 - 126 - 5 - 40 - 4 - 214 - 8 - 24 - 249 - 79 - 224 - 160 - 250 - 1 - 194 - 198 - 6 - 71 - 121 - 144 - 254 - 7 - 48 - 88 - 44 - 250 - 2 - 194 - 71 - 126 - 144 - 56 - 4 - 254 - 3 - 48 - 75 - 229 - 44 - 44 - 44 - 44 - 44 - 44 - 44 - 126 - 230 - 112 - 203 - 55 - 71 - 225 - 126 - 198 - 8 - 5 - 32 - 251 - 71 - 250 - 2 - 194 - 144 - 56 - 4 - 254 - 3 - 48 - 43 - 45 - 240 - 160 - 214 - 10 - 234 - 1 - 194 - 229 - 45 - 45 - 205 - 248 - 41 - 225 - 1 - 9 - 0 - 9 - 54 - 1 - 175 - 33 - 7 - 194 - 34 - 34 - 34 - 54 - 1 - 33 - 12 - 194 - 126 - 254 - 7 - 56 - 2 - 54 - 6 - 225 - 193 - 201 - 225 - 193 - 195 - 244 - 10 - 33 - 12 - 192 - 250 - 221 - 192 - 79 - 214 - 8 - 87 - 119 - 44 - 250 - 2 - 194 - 198 - 248 - 71 - 34 - 54 - 15 - 44 - 54 - 0 - 44 - 113 - 44 - 112 - 44 - 54 - 31 - 44 - 54 - 0 - 44 - 114 - 44 - 120 - 198 - 8 - 71 - 34 - 54 - 15 - 44 - 54 - 32 - 44 - 113 - 44 - 112 - 44 - 54 - 31 - 44 - 54 - 32 - 62 - 4 - 224 - 179 - 175 - 234 - 172 - 192 - 224 - 153 - 224 - 244 - 205 - 203 - 30 - 201 - 250 - 172 - 192 - 95 - 60 - 234 - 172 - 192 - 22 - 0 - 33 - 16 - 12 - 25 - 70 - 120 - 254 - 127 - 32 - 9 - 250 - 172 - 192 - 61 - 234 - 172 - 192 - 6 - 2 - 33 - 12 - 192 - 17 - 4 - 0 - 14 - 4 - 120 - 134 - 119 - 25 - 13 - 32 - 249 - 254 - 180 - 216 - 250 - 29 - 218 - 254 - 255 - 32 - 4 - 62 - 59 - 24 - 6 - 62 - 144 - 224 - 166 - 62 - 1 - 224 - 179 - 201 - 254 - 254 - 254 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 0 - 0 - 1 - 0 - 0 - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 127 - 33 - 166 - 255 - 126 - 167 - 40 - 4 - 205 - 45 - 23 - 201 - 250 - 7 - 208 - 167 - 32 - 4 - 62 - 64 - 224 - 166 - 62 - 5 - 224 - 179 - 175 - 234 - 29 - 218 - 224 - 6 - 240 - 180 - 230 - 15 - 254 - 3 - 192 - 205 - 33 - 43 - 240 - 180 - 254 - 67 - 192 - 62 - 6 - 224 - 179 - 201 - 240 - 180 - 230 - 15 - 254 - 3 - 32 - 7 - 175 - 234 - 171 - 192 - 205 - 136 - 36 - 240 - 166 - 167 - 192 - 33 - 1 - 218 - 42 - 70 - 176 - 40 - 52 - 62 - 1 - 234 - 0 - 218 - 240 - 253 - 224 - 225 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 205 - 68 - 88 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 17 - 16 - 0 - 205 - 102 - 1 - 62 - 1 - 224 - 166 - 175 - 234 - 29 - 218 - 250 - 1 - 218 - 230 - 1 - 192 - 62 - 10 - 234 - 224 - 223 - 201 - 62 - 6 - 224 - 179 - 62 - 38 - 224 - 166 - 201 - 240 - 166 - 167 - 192 - 175 - 234 - 29 - 218 - 224 - 6 - 240 - 180 - 230 - 15 - 254 - 3 - 62 - 28 - 40 - 27 - 250 - 1 - 194 - 254 - 96 - 56 - 8 - 254 - 160 - 48 - 4 - 62 - 8 - 24 - 9 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 62 - 18 - 224 - 179 - 201 - 224 - 179 - 62 - 3 - 234 - 0 - 32 - 224 - 253 - 33 - 228 - 255 - 126 - 224 - 251 - 54 - 12 - 44 - 175 - 34 - 34 - 224 - 163 - 44 - 44 - 126 - 224 - 224 - 62 - 6 - 224 - 166 - 240 - 180 - 230 - 240 - 254 - 64 - 192 - 175 - 224 - 251 - 62 - 1 - 234 - 222 - 192 - 62 - 191 - 224 - 252 - 62 - 255 - 224 - 166 - 62 - 39 - 224 - 179 - 205 - 243 - 127 - 201 - 243 - 121 - 234 - 0 - 32 - 224 - 253 - 175 - 224 - 64 - 205 - 208 - 5 - 195 - 202 - 13 - 33 - 166 - 255 - 126 - 167 - 192 - 250 - 249 - 223 - 167 - 192 - 240 - 228 - 60 - 254 - 12 - 32 - 1 - 175 - 224 - 228 - 240 - 180 - 60 - 71 - 230 - 15 - 254 - 4 - 120 - 32 - 2 - 198 - 13 - 224 - 180 - 230 - 240 - 203 - 55 - 254 - 1 - 14 - 2 - 40 - 194 - 254 - 2 - 14 - 1 - 40 - 8 - 254 - 3 - 14 - 3 - 40 - 2 - 14 - 1 - 71 - 243 - 121 - 234 - 0 - 32 - 224 - 253 - 175 - 224 - 64 - 120 - 61 - 61 - 203 - 39 - 22 - 0 - 95 - 33 - 228 - 13 - 213 - 25 - 94 - 35 - 86 - 33 - 0 - 138 - 26 - 34 - 19 - 229 - 1 - 48 - 114 - 9 - 225 - 48 - 245 - 209 - 33 - 234 - 13 - 25 - 94 - 35 - 86 - 213 - 33 - 16 - 147 - 26 - 34 - 19 - 124 - 254 - 151 - 32 - 248 - 225 - 17 - 193 - 2 - 25 - 17 - 0 - 198 - 6 - 8 - 42 - 18 - 35 - 19 - 5 - 32 - 249 - 175 - 224 - 15 - 62 - 195 - 224 - 64 - 251 - 62 - 3 - 224 - 229 - 175 - 234 - 210 - 192 - 224 - 249 - 62 - 2 - 224 - 179 - 205 - 57 - 36 - 201 - 50 - 64 - 50 - 64 - 242 - 71 - 2 - 68 - 2 - 68 - 194 - 75 - 243 - 175 - 224 - 64 - 205 - 248 - 5 - 205 - 18 - 28 - 205 - 77 - 28 - 175 - 224 - 15 - 62 - 195 - 224 - 64 - 251 - 62 - 8 - 224 - 179 - 224 - 177 - 201 - 240 - 166 - 167 - 40 - 14 - 205 - 168 - 33 - 175 - 234 - 171 - 192 - 205 - 136 - 36 - 205 - 45 - 23 - 201 - 62 - 64 - 224 - 166 - 33 - 179 - 255 - 52 - 201 - 175 - 234 - 171 - 192 - 205 - 136 - 36 - 240 - 166 - 167 - 192 - 240 - 224 - 214 - 2 - 254 - 64 - 48 - 2 - 198 - 32 - 111 - 38 - 152 - 17 - 32 - 1 - 25 - 125 - 224 - 224 - 62 - 5 - 224 - 252 - 62 - 8 - 224 - 166 - 33 - 179 - 255 - 52 - 201 - 240 - 166 - 167 - 192 - 240 - 252 - 61 - 40 - 29 - 224 - 252 - 240 - 224 - 111 - 38 - 153 - 214 - 32 - 224 - 224 - 240 - 65 - 230 - 3 - 32 - 250 - 54 - 44 - 62 - 8 - 224 - 166 - 62 - 11 - 234 - 224 - 223 - 201 - 62 - 16 - 224 - 166 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 205 - 243 - 127 - 33 - 179 - 255 - 52 - 201 - 240 - 166 - 167 - 192 - 175 - 234 - 210 - 192 - 234 - 7 - 194 - 60 - 224 - 249 - 33 - 179 - 255 - 52 - 201 - 205 - 178 - 14 - 250 - 2 - 194 - 254 - 192 - 216 - 62 - 32 - 224 - 166 - 33 - 179 - 255 - 52 - 201 - 62 - 16 - 224 - 128 - 250 - 3 - 194 - 230 - 15 - 254 - 10 - 220 - 179 - 23 - 205 - 236 - 22 - 201 - 240 - 166 - 167 - 192 - 205 - 222 - 14 - 175 - 224 - 234 - 224 - 163 - 62 - 161 - 224 - 166 - 62 - 15 - 234 - 232 - 223 - 33 - 179 - 255 - 52 - 201 - 33 - 1 - 194 - 54 - 126 - 44 - 54 - 176 - 44 - 126 - 230 - 240 - 119 - 33 - 16 - 194 - 17 - 20 - 33 - 6 - 16 - 26 - 34 - 19 - 5 - 32 - 250 - 33 - 17 - 194 - 54 - 126 - 44 - 54 - 0 - 44 - 54 - 34 - 44 - 44 - 54 - 32 - 201 - 240 - 166 - 167 - 40 - 19 - 33 - 164 - 255 - 52 - 205 - 143 - 33 - 33 - 2 - 194 - 53 - 33 - 18 - 194 - 53 - 205 - 45 - 23 - 201 - 240 - 251 - 224 - 228 - 33 - 179 - 255 - 52 - 201 - 62 - 16 - 224 - 128 - 205 - 179 - 23 - 205 - 236 - 22 - 250 - 2 - 194 - 254 - 76 - 216 - 250 - 3 - 194 - 230 - 240 - 234 - 3 - 194 - 240 - 224 - 214 - 64 - 198 - 4 - 71 - 230 - 240 - 254 - 192 - 120 - 32 - 2 - 214 - 32 - 224 - 227 - 62 - 152 - 224 - 226 - 175 - 224 - 251 - 33 - 179 - 255 - 52 - 24 - 188 - 33 - 216 - 15 - 205 - 129 - 15 - 254 - 255 - 192 - 33 - 179 - 255 - 52 - 62 - 128 - 234 - 16 - 194 - 62 - 8 - 224 - 166 - 62 - 8 - 224 - 251 - 62 - 18 - 234 - 232 - 223 - 201 - 240 - 166 - 167 - 192 - 240 - 251 - 95 - 22 - 0 - 25 - 126 - 71 - 254 - 254 - 40 - 52 - 254 - 255 - 200 - 240 - 226 - 103 - 240 - 227 - 111 - 240 - 65 - 230 - 3 - 32 - 250 - 240 - 65 - 230 - 3 - 32 - 250 - 112 - 35 - 124 - 224 - 226 - 125 - 230 - 15 - 32 - 18 - 203 - 101 - 32 - 14 - 125 - 214 - 32 - 224 - 227 - 28 - 123 - 224 - 251 - 62 - 12 - 224 - 166 - 201 - 125 - 24 - 242 - 35 - 42 - 79 - 6 - 0 - 126 - 245 - 240 - 226 - 103 - 240 - 227 - 111 - 9 - 193 - 19 - 19 - 24 - 194 - 29 - 17 - 10 - 23 - 20 - 44 - 34 - 24 - 30 - 44 - 22 - 10 - 27 - 18 - 24 - 35 - 254 - 115 - 24 - 17 - 40 - 44 - 13 - 10 - 18 - 28 - 34 - 255 - 240 - 166 - 167 - 192 - 240 - 251 - 61 - 40 - 25 - 224 - 251 - 230 - 1 - 33 - 44 - 16 - 32 - 8 - 33 - 60 - 16 - 62 - 3 - 234 - 248 - 223 - 205 - 32 - 16 - 62 - 8 - 224 - 166 - 201 - 33 - 16 - 194 - 54 - 0 - 33 - 179 - 255 - 52 - 201 - 17 - 28 - 192 - 6 - 16 - 42 - 18 - 28 - 5 - 32 - 250 - 201 - 120 - 88 - 6 - 0 - 120 - 96 - 6 - 32 - 128 - 88 - 6 - 64 - 128 - 96 - 6 - 96 - 120 - 88 - 7 - 0 - 120 - 96 - 7 - 32 - 128 - 88 - 7 - 64 - 128 - 96 - 7 - 96 - 240 - 166 - 167 - 192 - 33 - 19 - 194 - 54 - 32 - 1 - 24 - 194 - 33 - 100 - 33 - 197 - 205 - 13 - 73 - 225 - 45 - 126 - 167 - 32 - 11 - 54 - 1 - 33 - 19 - 194 - 54 - 33 - 62 - 64 - 224 - 166 - 240 - 172 - 230 - 1 - 32 - 9 - 33 - 18 - 194 - 52 - 126 - 254 - 208 - 48 - 4 - 205 - 45 - 23 - 201 - 33 - 179 - 255 - 54 - 18 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 201 - 240 - 167 - 167 - 32 - 9 - 62 - 1 - 234 - 248 - 223 - 62 - 32 - 224 - 167 - 175 - 234 - 171 - 192 - 205 - 136 - 36 - 240 - 166 - 79 - 230 - 3 - 32 - 19 - 240 - 251 - 238 - 1 - 224 - 251 - 6 - 252 - 40 - 2 - 6 - 4 - 250 - 223 - 192 - 128 - 234 - 223 - 192 - 121 - 254 - 128 - 208 - 230 - 31 - 192 - 33 - 208 - 141 - 1 - 32 - 2 - 240 - 252 - 87 - 240 - 65 - 230 - 3 - 32 - 250 - 126 - 162 - 95 - 240 - 65 - 230 - 3 - 32 - 250 - 115 - 35 - 124 - 254 - 143 - 32 - 3 - 33 - 144 - 150 - 203 - 10 - 11 - 121 - 176 - 32 - 224 - 240 - 252 - 203 - 39 - 40 - 9 - 203 - 55 - 224 - 252 - 62 - 63 - 224 - 166 - 201 - 175 - 234 - 223 - 192 - 234 - 210 - 192 - 60 - 224 - 249 - 33 - 179 - 255 - 52 - 201 - 243 - 175 - 224 - 64 - 224 - 249 - 33 - 0 - 156 - 1 - 0 - 1 - 205 - 190 - 5 - 205 - 8 - 8 - 205 - 222 - 14 - 33 - 2 - 194 - 54 - 56 - 44 - 54 - 16 - 33 - 18 - 194 - 54 - 120 - 175 - 224 - 15 - 224 - 164 - 234 - 223 - 192 - 224 - 251 - 33 - 0 - 192 - 6 - 12 - 34 - 5 - 32 - 252 - 205 - 45 - 23 - 62 - 152 - 224 - 226 - 62 - 165 - 224 - 227 - 62 - 15 - 234 - 232 - 223 - 62 - 195 - 224 - 64 - 251 - 33 - 179 - 255 - 52 - 201 - 33 - 122 - 17 - 205 - 129 - 15 - 254 - 255 - 192 - 175 - 224 - 251 - 62 - 153 - 224 - 226 - 62 - 2 - 224 - 227 - 62 - 35 - 234 - 19 - 194 - 33 - 179 - 255 - 52 - 201 - 24 - 17 - 40 - 44 - 13 - 10 - 18 - 28 - 34 - 254 - 27 - 13 - 10 - 18 - 28 - 34 - 255 - 33 - 182 - 17 - 205 - 129 - 15 - 240 - 172 - 230 - 3 - 192 - 33 - 18 - 194 - 126 - 254 - 68 - 56 - 5 - 53 - 205 - 45 - 23 - 201 - 33 - 179 - 255 - 52 - 33 - 48 - 192 - 54 - 112 - 44 - 54 - 58 - 44 - 54 - 132 - 44 - 54 - 0 - 201 - 29 - 17 - 10 - 23 - 20 - 44 - 34 - 24 - 30 - 44 - 22 - 10 - 27 - 18 - 24 - 35 - 255 - 240 - 172 - 230 - 1 - 192 - 33 - 48 - 192 - 53 - 42 - 254 - 32 - 56 - 20 - 240 - 251 - 167 - 126 - 32 - 7 - 53 - 254 - 48 - 208 - 224 - 251 - 201 - 52 - 254 - 80 - 216 - 175 - 24 - 246 - 54 - 240 - 6 - 109 - 33 - 165 - 152 - 240 - 65 - 230 - 3 - 32 - 250 - 240 - 65 - 230 - 3 - 32 - 250 - 54 - 44 - 35 - 5 - 32 - 238 - 175 - 224 - 251 - 62 - 153 - 224 - 226 - 62 - 0 - 224 - 227 - 33 - 179 - 255 - 52 - 201 - 33 - 54 - 18 - 205 - 129 - 15 - 254 - 255 - 192 - 33 - 19 - 194 - 54 - 36 - 44 - 44 - 54 - 0 - 33 - 65 - 194 - 54 - 126 - 44 - 44 - 54 - 40 - 44 - 44 - 54 - 0 - 33 - 179 - 255 - 52 - 201 - 41 - 34 - 24 - 30 - 27 - 44 - 26 - 30 - 14 - 28 - 29 - 44 - 18 - 28 - 44 - 24 - 31 - 14 - 27 - 41 - 255 - 240 - 172 - 230 - 3 - 32 - 7 - 33 - 19 - 194 - 126 - 238 - 1 - 119 - 33 - 64 - 194 - 126 - 167 - 32 - 32 - 44 - 44 - 53 - 126 - 254 - 80 - 32 - 7 - 62 - 128 - 234 - 0 - 194 - 24 - 17 - 254 - 64 - 32 - 13 - 62 - 128 - 234 - 16 - 194 - 62 - 64 - 224 - 166 - 33 - 179 - 255 - 52 - 205 - 178 - 14 - 205 - 143 - 33 - 240 - 229 - 254 - 3 - 192 - 240 - 230 - 167 - 192 - 33 - 64 - 194 - 54 - 0 - 44 - 44 - 54 - 192 - 201 - 240 - 166 - 167 - 192 - 33 - 64 - 194 - 17 - 0 - 194 - 6 - 6 - 42 - 18 - 28 - 5 - 32 - 250 - 33 - 3 - 194 - 54 - 38 - 33 - 65 - 194 - 54 - 240 - 33 - 179 - 255 - 52 - 201 - 205 - 45 - 23 - 240 - 172 - 71 - 230 - 1 - 192 - 33 - 64 - 194 - 54 - 255 - 33 - 1 - 194 - 53 - 42 - 254 - 88 - 40 - 4 - 205 - 221 - 18 - 201 - 33 - 179 - 255 - 52 - 62 - 4 - 224 - 251 - 201 - 240 - 172 - 230 - 3 - 192 - 44 - 126 - 238 - 1 - 119 - 201 - 205 - 5 - 19 - 205 - 143 - 33 - 240 - 164 - 60 - 204 - 15 - 19 - 60 - 204 - 15 - 19 - 224 - 164 - 250 - 233 - 223 - 167 - 192 - 62 - 17 - 234 - 232 - 223 - 201 - 33 - 2 - 194 - 205 - 221 - 18 - 205 - 45 - 23 - 201 - 245 - 240 - 251 - 61 - 224 - 251 - 32 - 44 - 224 - 69 - 62 - 33 - 224 - 251 - 62 - 84 - 224 - 233 - 205 - 69 - 19 - 33 - 16 - 194 - 17 - 118 - 19 - 205 - 109 - 19 - 33 - 32 - 194 - 17 - 123 - 19 - 205 - 109 - 19 - 33 - 48 - 194 - 17 - 128 - 19 - 205 - 109 - 19 - 33 - 179 - 255 - 52 - 241 - 201 - 33 - 176 - 192 - 6 - 16 - 62 - 44 - 34 - 5 - 32 - 252 - 62 - 1 - 224 - 234 - 6 - 2 - 240 - 233 - 214 - 32 - 111 - 38 - 152 - 240 - 65 - 230 - 3 - 32 - 250 - 54 - 44 - 125 - 214 - 32 - 111 - 5 - 32 - 241 - 201 - 6 - 5 - 26 - 34 - 19 - 5 - 32 - 250 - 201 - 0 - 48 - 208 - 41 - 128 - 128 - 112 - 16 - 42 - 128 - 128 - 64 - 112 - 41 - 128 - 205 - 71 - 21 - 240 - 164 - 60 - 60 - 224 - 164 - 230 - 8 - 71 - 240 - 163 - 184 - 192 - 238 - 8 - 224 - 163 - 205 - 69 - 19 - 240 - 251 - 61 - 224 - 251 - 192 - 175 - 224 - 164 - 62 - 96 - 224 - 69 - 33 - 78 - 21 - 124 - 224 - 226 - 125 - 224 - 227 - 62 - 240 - 224 - 166 - 33 - 179 - 255 - 52 - 201 - 33 - 18 - 194 - 17 - 16 - 0 - 6 - 3 - 53 - 126 - 254 - 1 - 32 - 4 - 54 - 254 - 24 - 21 - 254 - 224 - 32 - 17 - 229 - 240 - 4 - 45 - 134 - 230 - 127 - 254 - 104 - 48 - 2 - 230 - 63 - 50 - 54 - 0 - 225 - 25 - 5 - 32 - 221 - 201 - 205 - 71 - 21 - 240 - 166 - 167 - 192 - 240 - 226 - 103 - 240 - 227 - 111 - 17 - 66 - 154 - 126 - 254 - 254 - 40 - 28 - 35 - 71 - 240 - 65 - 230 - 3 - 32 - 250 - 240 - 65 - 230 - 3 - 32 - 250 - 120 - 18 - 19 - 123 - 254 - 84 - 40 - 10 - 254 - 147 - 40 - 12 - 24 - 223 - 6 - 44 - 24 - 226 - 17 - 135 - 154 - 35 - 24 - 213 - 35 - 126 - 254 - 255 - 32 - 5 - 62 - 255 - 234 - 222 - 192 - 124 - 224 - 226 - 125 - 224 - 227 - 33 - 179 - 255 - 52 - 201 - 205 - 71 - 21 - 240 - 172 - 230 - 3 - 192 - 33 - 223 - 192 - 52 - 126 - 254 - 32 - 192 - 33 - 179 - 255 - 52 - 62 - 80 - 224 - 166 - 201 - 205 - 71 - 21 - 240 - 166 - 167 - 192 - 33 - 179 - 255 - 52 - 201 - 205 - 71 - 21 - 240 - 172 - 230 - 3 - 192 - 33 - 223 - 192 - 52 - 126 - 254 - 80 - 192 - 175 - 234 - 223 - 192 - 250 - 222 - 192 - 254 - 255 - 62 - 51 - 32 - 2 - 62 - 55 - 224 - 179 - 201 - 205 - 71 - 21 - 33 - 2 - 194 - 52 - 126 - 254 - 208 - 192 - 45 - 54 - 240 - 229 - 205 - 45 - 23 - 225 - 45 - 54 - 255 - 33 - 112 - 192 - 17 - 187 - 20 - 6 - 24 - 26 - 34 - 19 - 5 - 32 - 250 - 6 - 24 - 175 - 34 - 5 - 32 - 252 - 62 - 144 - 224 - 166 - 240 - 154 - 60 - 224 - 154 - 234 - 225 - 192 - 33 - 179 - 255 - 52 - 201 - 78 - 204 - 82 - 0 - 78 - 212 - 83 - 0 - 78 - 220 - 84 - 0 - 78 - 236 - 84 - 0 - 78 - 244 - 85 - 0 - 78 - 252 - 86 - 0 - 205 - 71 - 21 - 240 - 166 - 167 - 192 - 33 - 113 - 192 - 126 - 254 - 60 - 40 - 4 - 53 - 53 - 53 - 201 - 33 - 117 - 192 - 126 - 254 - 68 - 32 - 244 - 33 - 121 - 192 - 126 - 254 - 76 - 32 - 236 - 33 - 125 - 192 - 126 - 254 - 92 - 32 - 228 - 33 - 129 - 192 - 126 - 254 - 100 - 32 - 220 - 33 - 133 - 192 - 126 - 254 - 108 - 32 - 212 - 205 - 32 - 21 - 175 - 224 - 228 - 224 - 153 - 224 - 181 - 234 - 166 - 192 - 62 - 17 - 224 - 180 - 201 - 240 - 129 - 167 - 200 - 205 - 243 - 127 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 234 - 220 - 192 - 234 - 164 - 192 - 175 - 234 - 0 - 218 - 234 - 165 - 192 - 234 - 173 - 192 - 62 - 3 - 224 - 255 - 62 - 14 - 224 - 179 - 201 - 205 - 5 - 19 - 205 - 187 - 19 - 201 - 25 - 27 - 24 - 13 - 30 - 12 - 14 - 27 - 254 - 16 - 35 - 34 - 24 - 20 - 24 - 18 - 254 - 13 - 18 - 27 - 14 - 12 - 29 - 24 - 27 - 254 - 28 - 35 - 24 - 20 - 10 - 13 - 10 - 254 - 25 - 27 - 24 - 16 - 27 - 10 - 22 - 22 - 14 - 27 - 254 - 22 - 35 - 34 - 10 - 22 - 10 - 22 - 24 - 29 - 24 - 254 - 25 - 27 - 24 - 16 - 27 - 10 - 22 - 22 - 14 - 27 - 254 - 29 - 35 - 17 - 10 - 27 - 10 - 13 - 10 - 254 - 13 - 14 - 28 - 18 - 16 - 23 - 254 - 17 - 35 - 22 - 10 - 29 - 28 - 30 - 24 - 20 - 10 - 254 - 28 - 24 - 30 - 23 - 13 - 254 - 17 - 35 - 29 - 10 - 23 - 10 - 20 - 10 - 254 - 10 - 22 - 18 - 13 - 10 - 254 - 22 - 35 - 34 - 10 - 22 - 10 - 23 - 10 - 20 - 10 - 254 - 13 - 14 - 28 - 18 - 16 - 23 - 254 - 22 - 10 - 28 - 17 - 18 - 22 - 24 - 254 - 28 - 25 - 14 - 12 - 18 - 10 - 21 - 44 - 29 - 17 - 10 - 23 - 20 - 28 - 44 - 29 - 24 - 37 - 254 - 29 - 10 - 20 - 18 - 254 - 18 - 39 - 30 - 28 - 17 - 18 - 254 - 23 - 10 - 16 - 10 - 29 - 10 - 254 - 20 - 10 - 23 - 24 - 17 - 254 - 23 - 18 - 28 - 17 - 18 - 39 - 10 - 32 - 10 - 254 - 255 - 33 - 1 - 194 - 240 - 248 - 190 - 40 - 5 - 52 - 205 - 236 - 22 - 201 - 62 - 10 - 224 - 179 - 224 - 249 - 201 - 243 - 175 - 224 - 64 - 224 - 230 - 205 - 203 - 30 - 205 - 85 - 22 - 240 - 244 - 224 - 229 - 205 - 240 - 7 - 205 - 83 - 36 - 33 - 1 - 194 - 54 - 32 - 44 - 54 - 29 - 44 - 44 - 54 - 0 - 175 - 224 - 15 - 224 - 179 - 224 - 164 - 62 - 195 - 224 - 64 - 251 - 201 - 33 - 63 - 202 - 1 - 64 - 2 - 175 - 50 - 11 - 120 - 177 - 32 - 249 - 201 - 240 - 172 - 230 - 1 - 200 - 33 - 2 - 194 - 240 - 248 - 190 - 56 - 9 - 52 - 33 - 11 - 194 - 52 - 205 - 236 - 22 - 201 - 243 - 240 - 245 - 224 - 229 - 175 - 224 - 64 - 224 - 230 - 205 - 85 - 22 - 33 - 244 - 255 - 34 - 34 - 240 - 247 - 87 - 240 - 246 - 95 - 213 - 205 - 240 - 7 - 209 - 62 - 128 - 234 - 4 - 194 - 33 - 1 - 194 - 122 - 34 - 214 - 18 - 224 - 248 - 123 - 119 - 240 - 229 - 214 - 4 - 71 - 7 - 7 - 7 - 128 - 128 - 198 - 12 - 234 - 171 - 192 - 175 - 224 - 15 - 224 - 164 - 62 - 91 - 224 - 233 - 205 - 83 - 36 - 205 - 203 - 30 - 62 - 195 - 224 - 64 - 62 - 12 - 224 - 179 - 205 - 140 - 7 - 251 - 201 - 240 - 172 - 230 - 1 - 200 - 33 - 1 - 194 - 240 - 248 - 190 - 40 - 5 - 53 - 205 - 236 - 22 - 201 - 175 - 224 - 179 - 234 - 4 - 194 - 224 - 249 - 201 - 205 - 45 - 23 - 250 - 10 - 194 - 167 - 40 - 46 - 250 - 3 - 194 - 230 - 15 - 254 - 10 - 48 - 37 - 33 - 11 - 194 - 250 - 14 - 194 - 254 - 35 - 126 - 40 - 30 - 230 - 3 - 32 - 22 - 33 - 3 - 194 - 126 - 254 - 24 - 40 - 14 - 52 - 126 - 230 - 15 - 254 - 4 - 56 - 6 - 126 - 230 - 240 - 246 - 1 - 119 - 205 - 29 - 29 - 201 - 230 - 1 - 32 - 248 - 24 - 224 - 62 - 12 - 224 - 142 - 33 - 0 - 194 - 62 - 192 - 224 - 141 - 62 - 5 - 224 - 143 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 205 - 35 - 72 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 201 - 240 - 179 - 254 - 14 - 210 - 21 - 24 - 195 - 60 - 27 - 240 - 128 - 203 - 127 - 202 - 84 - 24 - 1 - 224 - 255 - 124 - 224 - 176 - 125 - 224 - 175 - 124 - 198 - 48 - 103 - 17 - 244 - 255 - 126 - 167 - 202 - 84 - 24 - 18 - 28 - 9 - 126 - 18 - 28 - 9 - 126 - 18 - 28 - 9 - 126 - 18 - 28 - 213 - 205 - 254 - 62 - 209 - 33 - 1 - 194 - 42 - 198 - 16 - 18 - 240 - 164 - 71 - 240 - 174 - 144 - 198 - 8 - 34 - 44 - 54 - 128 - 62 - 9 - 224 - 179 - 250 - 211 - 192 - 167 - 32 - 5 - 62 - 4 - 234 - 232 - 223 - 205 - 203 - 30 - 195 - 84 - 24 - 33 - 7 - 194 - 126 - 254 - 1 - 200 - 33 - 1 - 194 - 42 - 198 - 11 - 224 - 173 - 240 - 164 - 71 - 126 - 128 - 198 - 254 - 224 - 174 - 205 - 83 - 1 - 254 - 112 - 40 - 138 - 254 - 225 - 202 - 82 - 23 - 254 - 96 - 48 - 58 - 250 - 14 - 194 - 6 - 4 - 254 - 4 - 32 - 8 - 250 - 7 - 194 - 167 - 32 - 2 - 6 - 8 - 240 - 174 - 128 - 224 - 174 - 205 - 83 - 1 - 254 - 96 - 48 - 29 - 33 - 7 - 194 - 126 - 254 - 2 - 200 - 33 - 1 - 194 - 52 - 52 - 52 - 33 - 10 - 194 - 54 - 0 - 250 - 14 - 194 - 167 - 192 - 62 - 2 - 234 - 14 - 194 - 201 - 254 - 237 - 245 - 32 - 31 - 250 - 211 - 192 - 167 - 32 - 25 - 240 - 153 - 167 - 40 - 14 - 254 - 4 - 40 - 16 - 254 - 2 - 32 - 12 - 241 - 205 - 215 - 9 - 24 - 33 - 241 - 205 - 232 - 9 - 24 - 27 - 241 - 254 - 244 - 32 - 22 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 32 - 177 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 24 - 164 - 33 - 1 - 194 - 126 - 61 - 61 - 230 - 252 - 246 - 6 - 119 - 175 - 33 - 7 - 194 - 34 - 34 - 34 - 54 - 1 - 33 - 12 - 194 - 126 - 254 - 7 - 216 - 54 - 6 - 201 - 240 - 238 - 167 - 192 - 229 - 124 - 198 - 48 - 103 - 126 - 225 - 167 - 200 - 240 - 238 - 167 - 192 - 229 - 124 - 198 - 48 - 103 - 126 - 225 - 167 - 202 - 216 - 25 - 254 - 240 - 40 - 37 - 254 - 192 - 32 - 40 - 62 - 255 - 234 - 206 - 192 - 240 - 238 - 167 - 192 - 62 - 5 - 234 - 224 - 223 - 250 - 1 - 194 - 214 - 16 - 224 - 236 - 62 - 192 - 224 - 237 - 224 - 254 - 250 - 206 - 192 - 167 - 32 - 99 - 62 - 128 - 234 - 46 - 192 - 24 - 112 - 224 - 160 - 62 - 128 - 234 - 46 - 192 - 62 - 7 - 234 - 224 - 223 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 192 - 54 - 2 - 44 - 114 - 44 - 115 - 122 - 224 - 176 - 123 - 224 - 175 - 122 - 198 - 48 - 87 - 26 - 224 - 160 - 205 - 254 - 62 - 33 - 44 - 192 - 250 - 1 - 194 - 214 - 11 - 34 - 224 - 194 - 224 - 241 - 240 - 164 - 71 - 240 - 174 - 224 - 242 - 144 - 34 - 224 - 195 - 44 - 54 - 0 - 240 - 160 - 254 - 240 - 200 - 254 - 40 - 32 - 10 - 240 - 153 - 254 - 2 - 62 - 40 - 32 - 2 - 62 - 45 - 205 - 68 - 37 - 201 - 240 - 238 - 167 - 192 - 62 - 130 - 234 - 46 - 192 - 250 - 224 - 223 - 167 - 32 - 5 - 62 - 7 - 234 - 224 - 223 - 229 - 209 - 33 - 238 - 255 - 54 - 2 - 44 - 114 - 44 - 115 - 122 - 224 - 176 - 123 - 224 - 175 - 205 - 254 - 62 - 33 - 44 - 192 - 250 - 1 - 194 - 214 - 11 - 34 - 224 - 241 - 240 - 164 - 71 - 240 - 174 - 79 - 224 - 242 - 144 - 34 - 44 - 54 - 0 - 224 - 235 - 201 - 240 - 238 - 167 - 192 - 229 - 124 - 198 - 48 - 103 - 126 - 225 - 167 - 194 - 146 - 24 - 62 - 5 - 234 - 224 - 223 - 62 - 129 - 234 - 46 - 192 - 250 - 1 - 194 - 214 - 16 - 224 - 236 - 62 - 192 - 224 - 237 - 24 - 171 - 250 - 7 - 194 - 254 - 1 - 192 - 33 - 1 - 194 - 42 - 198 - 253 - 224 - 173 - 240 - 164 - 70 - 128 - 198 - 2 - 224 - 174 - 205 - 83 - 1 - 254 - 95 - 202 - 114 - 24 - 254 - 96 - 48 - 17 - 240 - 174 - 198 - 252 - 224 - 174 - 205 - 83 - 1 - 254 - 95 - 202 - 114 - 24 - 254 - 96 - 216 - 205 - 98 - 26 - 167 - 200 - 254 - 130 - 40 - 25 - 254 - 244 - 202 - 78 - 26 - 254 - 129 - 40 - 149 - 254 - 128 - 202 - 127 - 24 - 62 - 2 - 234 - 7 - 194 - 62 - 7 - 234 - 224 - 223 - 201 - 229 - 124 - 198 - 48 - 103 - 126 - 225 - 254 - 192 - 202 - 155 - 24 - 240 - 153 - 254 - 2 - 194 - 26 - 25 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 192 - 54 - 1 - 44 - 114 - 44 - 115 - 33 - 16 - 194 - 17 - 16 - 0 - 6 - 4 - 229 - 54 - 0 - 44 - 250 - 1 - 194 - 198 - 243 - 119 - 44 - 250 - 2 - 194 - 198 - 2 - 119 - 44 - 44 - 44 - 44 - 44 - 54 - 1 - 44 - 54 - 7 - 225 - 25 - 5 - 32 - 224 - 33 - 34 - 194 - 126 - 214 - 4 - 119 - 33 - 66 - 194 - 126 - 214 - 4 - 119 - 33 - 56 - 194 - 54 - 11 - 33 - 72 - 194 - 54 - 11 - 240 - 164 - 224 - 243 - 62 - 2 - 234 - 248 - 223 - 17 - 80 - 0 - 205 - 102 - 1 - 62 - 2 - 234 - 7 - 194 - 201 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 192 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 201 - 229 - 245 - 71 - 240 - 180 - 230 - 240 - 203 - 55 - 61 - 203 - 39 - 95 - 22 - 0 - 33 - 138 - 26 - 25 - 94 - 35 - 86 - 26 - 254 - 253 - 40 - 6 - 184 - 40 - 6 - 19 - 24 - 245 - 241 - 225 - 201 - 241 - 225 - 175 - 201 - 148 - 26 - 153 - 26 - 158 - 26 - 160 - 26 - 162 - 26 - 104 - 105 - 106 - 124 - 253 - 96 - 97 - 99 - 124 - 253 - 124 - 253 - 124 - 253 - 124 - 253 - 240 - 179 - 254 - 14 - 48 - 89 - 17 - 1 - 7 - 240 - 153 - 254 - 2 - 32 - 10 - 250 - 3 - 194 - 254 - 24 - 40 - 3 - 17 - 2 - 7 - 33 - 1 - 194 - 42 - 130 - 224 - 173 - 250 - 5 - 194 - 70 - 14 - 250 - 167 - 32 - 2 - 14 - 6 - 121 - 128 - 71 - 240 - 164 - 128 - 224 - 174 - 213 - 205 - 83 - 1 - 205 - 98 - 26 - 209 - 167 - 40 - 28 - 254 - 96 - 56 - 24 - 254 - 244 - 40 - 27 - 254 - 119 - 40 - 44 - 254 - 242 - 40 - 74 - 33 - 11 - 194 - 52 - 62 - 2 - 234 - 14 - 194 - 62 - 255 - 201 - 22 - 252 - 29 - 32 - 186 - 175 - 201 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 192 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 175 - 201 - 240 - 249 - 167 - 40 - 211 - 62 - 11 - 224 - 179 - 62 - 128 - 234 - 4 - 194 - 33 - 2 - 194 - 58 - 198 - 24 - 224 - 248 - 126 - 230 - 248 - 198 - 6 - 119 - 205 - 203 - 30 - 62 - 255 - 201 - 240 - 153 - 254 - 2 - 6 - 255 - 40 - 5 - 6 - 15 - 175 - 224 - 153 - 250 - 3 - 194 - 160 - 234 - 3 - 194 - 71 - 230 - 15 - 254 - 10 - 48 - 6 - 120 - 230 - 240 - 234 - 3 - 194 - 62 - 7 - 224 - 179 - 250 - 7 - 208 - 167 - 32 - 9 - 62 - 1 - 234 - 232 - 223 - 62 - 240 - 224 - 166 - 205 - 203 - 30 - 175 - 234 - 0 - 194 - 234 - 29 - 218 - 224 - 6 - 201 - 175 - 234 - 226 - 192 - 240 - 254 - 167 - 196 - 246 - 27 - 33 - 238 - 255 - 126 - 254 - 1 - 40 - 34 - 254 - 2 - 202 - 238 - 27 - 254 - 192 - 40 - 25 - 254 - 4 - 192 - 54 - 0 - 44 - 86 - 44 - 94 - 250 - 46 - 192 - 254 - 130 - 40 - 7 - 254 - 129 - 204 - 246 - 27 - 62 - 127 - 18 - 201 - 70 - 54 - 0 - 44 - 86 - 44 - 94 - 62 - 44 - 18 - 120 - 254 - 192 - 40 - 50 - 33 - 224 - 255 - 25 - 126 - 254 - 244 - 192 - 54 - 44 - 62 - 5 - 234 - 224 - 223 - 124 - 224 - 176 - 125 - 224 - 175 - 205 - 254 - 62 - 240 - 164 - 71 - 240 - 174 - 144 - 224 - 235 - 240 - 173 - 198 - 20 - 224 - 236 - 62 - 192 - 224 - 237 - 205 - 246 - 27 - 201 - 54 - 3 - 24 - 194 - 205 - 246 - 27 - 201 - 240 - 159 - 167 - 192 - 213 - 229 - 17 - 0 - 1 - 205 - 102 - 1 - 225 - 209 - 240 - 250 - 198 - 1 - 39 - 224 - 250 - 167 - 32 - 4 - 60 - 234 - 163 - 192 - 240 - 250 - 71 - 230 - 15 - 234 - 42 - 152 - 120 - 230 - 240 - 203 - 55 - 234 - 41 - 152 - 175 - 224 - 254 - 60 - 234 - 226 - 192 - 201 - 240 - 159 - 167 - 192 - 250 - 163 - 192 - 183 - 200 - 254 - 255 - 250 - 21 - 218 - 40 - 50 - 254 - 153 - 40 - 32 - 245 - 62 - 8 - 234 - 224 - 223 - 224 - 211 - 241 - 198 - 1 - 39 - 234 - 21 - 218 - 250 - 21 - 218 - 71 - 230 - 15 - 234 - 7 - 152 - 120 - 230 - 240 - 203 - 55 - 234 - 6 - 152 - 175 - 234 - 163 - 192 - 201 - 62 - 57 - 224 - 179 - 234 - 164 - 192 - 24 - 242 - 167 - 40 - 244 - 214 - 1 - 24 - 214 - 33 - 0 - 156 - 17 - 206 - 28 - 6 - 17 - 26 - 79 - 240 - 65 - 230 - 3 - 32 - 250 - 240 - 65 - 230 - 3 - 32 - 250 - 113 - 44 - 19 - 5 - 32 - 236 - 62 - 16 - 234 - 232 - 223 - 240 - 180 - 234 - 168 - 192 - 250 - 162 - 192 - 230 - 240 - 203 - 55 - 71 - 250 - 166 - 192 - 128 - 254 - 10 - 56 - 2 - 62 - 9 - 234 - 166 - 192 - 33 - 0 - 192 - 175 - 6 - 160 - 34 - 5 - 32 - 252 - 234 - 29 - 218 - 224 - 6 - 33 - 74 - 255 - 54 - 143 - 35 - 54 - 7 - 62 - 255 - 224 - 251 - 33 - 179 - 255 - 52 - 201 - 44 - 44 - 44 - 44 - 44 - 16 - 10 - 22 - 14 - 44 - 44 - 24 - 31 - 14 - 27 - 44 - 44 - 250 - 173 - 192 - 167 - 196 - 39 - 21 - 201 - 33 - 0 - 156 - 17 - 11 - 29 - 14 - 9 - 26 - 71 - 240 - 65 - 230 - 3 - 32 - 250 - 112 - 44 - 19 - 13 - 32 - 242 - 33 - 64 - 255 - 203 - 238 - 62 - 160 - 224 - 166 - 33 - 179 - 255 - 52 - 201 - 44 - 29 - 18 - 22 - 14 - 44 - 30 - 25 - 44 - 240 - 166 - 167 - 192 - 62 - 1 - 224 - 179 - 201 - 33 - 13 - 194 - 126 - 254 - 1 - 32 - 12 - 45 - 126 - 167 - 32 - 5 - 44 - 54 - 0 - 24 - 57 - 53 - 201 - 33 - 12 - 194 - 42 - 254 - 6 - 32 - 7 - 44 - 126 - 167 - 32 - 2 - 54 - 2 - 17 - 7 - 194 - 240 - 128 - 203 - 127 - 32 - 53 - 203 - 103 - 32 - 86 - 203 - 111 - 194 - 55 - 30 - 33 - 12 - 194 - 126 - 167 - 40 - 9 - 175 - 234 - 14 - 194 - 53 - 44 - 126 - 24 - 231 - 44 - 54 - 0 - 26 - 167 - 192 - 250 - 7 - 194 - 167 - 192 - 33 - 3 - 194 - 126 - 230 - 240 - 119 - 62 - 1 - 234 - 11 - 194 - 175 - 234 - 14 - 194 - 201 - 245 - 240 - 153 - 254 - 2 - 32 - 21 - 26 - 167 - 32 - 17 - 62 - 24 - 234 - 3 - 194 - 240 - 128 - 230 - 48 - 32 - 9 - 250 - 12 - 194 - 167 - 40 - 3 - 241 - 24 - 172 - 175 - 234 - 12 - 194 - 241 - 201 - 33 - 13 - 194 - 126 - 254 - 32 - 32 - 3 - 195 - 63 - 30 - 33 - 5 - 194 - 54 - 0 - 205 - 164 - 26 - 167 - 192 - 240 - 128 - 203 - 103 - 40 - 29 - 250 - 3 - 194 - 254 - 24 - 32 - 10 - 250 - 3 - 194 - 230 - 240 - 246 - 1 - 234 - 3 - 194 - 33 - 12 - 194 - 126 - 254 - 6 - 40 - 4 - 52 - 44 - 54 - 16 - 33 - 2 - 194 - 240 - 249 - 167 - 32 - 53 - 250 - 210 - 192 - 254 - 7 - 56 - 6 - 240 - 164 - 230 - 12 - 40 - 40 - 62 - 80 - 190 - 48 - 35 - 205 - 171 - 30 - 71 - 33 - 164 - 255 - 134 - 119 - 205 - 155 - 30 - 205 - 150 - 44 - 33 - 1 - 192 - 17 - 4 - 0 - 14 - 3 - 126 - 144 - 119 - 25 - 13 - 32 - 249 - 33 - 11 - 194 - 52 - 201 - 205 - 171 - 30 - 134 - 119 - 240 - 179 - 254 - 13 - 40 - 240 - 250 - 210 - 192 - 167 - 40 - 234 - 240 - 164 - 230 - 252 - 224 - 164 - 126 - 254 - 160 - 56 - 223 - 195 - 60 - 27 - 33 - 13 - 194 - 126 - 254 - 16 - 32 - 25 - 54 - 1 - 45 - 54 - 8 - 250 - 7 - 194 - 167 - 192 - 33 - 3 - 194 - 126 - 230 - 240 - 246 - 5 - 119 - 62 - 1 - 234 - 11 - 194 - 201 - 33 - 5 - 194 - 54 - 32 - 205 - 164 - 26 - 167 - 192 - 33 - 2 - 194 - 126 - 254 - 15 - 56 - 44 - 229 - 240 - 128 - 203 - 111 - 40 - 29 - 250 - 3 - 194 - 254 - 24 - 32 - 10 - 250 - 3 - 194 - 230 - 240 - 246 - 1 - 234 - 3 - 194 - 33 - 12 - 194 - 126 - 254 - 6 - 40 - 4 - 52 - 44 - 54 - 32 - 225 - 205 - 171 - 30 - 47 - 60 - 134 - 119 - 33 - 11 - 194 - 53 - 201 - 33 - 49 - 192 - 17 - 4 - 0 - 14 - 8 - 126 - 144 - 119 - 25 - 13 - 32 - 249 - 201 - 213 - 229 - 33 - 197 - 30 - 250 - 14 - 194 - 95 - 22 - 0 - 250 - 15 - 194 - 238 - 1 - 234 - 15 - 194 - 131 - 95 - 25 - 126 - 225 - 209 - 201 - 0 - 1 - 1 - 1 - 1 - 2 - 229 - 197 - 213 - 33 - 28 - 192 - 6 - 52 - 175 - 34 - 5 - 32 - 252 - 33 - 0 - 192 - 6 - 11 - 34 - 5 - 32 - 252 - 224 - 169 - 224 - 170 - 224 - 171 - 33 - 16 - 194 - 17 - 16 - 0 - 6 - 4 - 62 - 128 - 119 - 25 - 5 - 32 - 251 - 209 - 193 - 225 - 201 - 240 - 172 - 230 - 3 - 192 - 250 - 211 - 192 - 167 - 200 - 254 - 1 - 40 - 17 - 61 - 234 - 211 - 192 - 250 - 0 - 194 - 238 - 128 - 234 - 0 - 194 - 250 - 233 - 223 - 167 - 192 - 175 - 234 - 211 - 192 - 234 - 0 - 194 - 205 - 140 - 7 - 201 - 6 - 1 - 33 - 169 - 255 - 17 - 1 - 192 - 42 - 167 - 32 - 8 - 28 - 28 - 28 - 28 - 5 - 32 - 245 - 201 - 229 - 213 - 197 - 45 - 250 - 169 - 192 - 167 - 40 - 16 - 61 - 234 - 169 - 192 - 203 - 70 - 40 - 98 - 26 - 60 - 60 - 18 - 254 - 162 - 56 - 7 - 175 - 203 - 131 - 18 - 119 - 24 - 48 - 198 - 3 - 245 - 29 - 26 - 224 - 173 - 241 - 205 - 201 - 31 - 56 - 6 - 126 - 230 - 252 - 246 - 2 - 119 - 203 - 86 - 40 - 33 - 26 - 61 - 61 - 18 - 254 - 16 - 56 - 218 - 214 - 1 - 224 - 173 - 28 - 26 - 205 - 201 - 31 - 56 - 6 - 126 - 230 - 243 - 246 - 8 - 119 - 193 - 209 - 225 - 205 - 1 - 32 - 24 - 159 - 26 - 60 - 60 - 18 - 254 - 168 - 48 - 185 - 198 - 4 - 224 - 173 - 28 - 26 - 205 - 201 - 31 - 56 - 229 - 126 - 230 - 243 - 246 - 4 - 119 - 24 - 221 - 26 - 61 - 61 - 18 - 254 - 4 - 56 - 158 - 214 - 2 - 245 - 29 - 26 - 224 - 173 - 241 - 205 - 201 - 31 - 56 - 171 - 126 - 230 - 252 - 246 - 1 - 119 - 24 - 163 - 71 - 240 - 164 - 128 - 224 - 174 - 213 - 229 - 205 - 83 - 1 - 254 - 244 - 32 - 26 - 240 - 179 - 254 - 13 - 40 - 30 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 32 - 21 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 254 - 130 - 204 - 142 - 32 - 254 - 128 - 204 - 142 - 32 - 225 - 209 - 254 - 96 - 201 - 229 - 213 - 197 - 6 - 10 - 33 - 0 - 209 - 126 - 254 - 255 - 32 - 18 - 213 - 17 - 16 - 0 - 25 - 209 - 5 - 32 - 242 - 193 - 209 - 225 - 201 - 225 - 209 - 193 - 24 - 238 - 197 - 213 - 229 - 1 - 10 - 0 - 9 - 203 - 126 - 32 - 240 - 78 - 44 - 44 - 126 - 224 - 155 - 26 - 224 - 162 - 198 - 4 - 224 - 143 - 29 - 26 - 224 - 160 - 26 - 198 - 3 - 224 - 161 - 225 - 229 - 205 - 166 - 10 - 167 - 40 - 210 - 45 - 45 - 45 - 205 - 7 - 10 - 213 - 240 - 179 - 254 - 13 - 32 - 5 - 205 - 164 - 42 - 24 - 3 - 205 - 95 - 42 - 209 - 167 - 40 - 185 - 245 - 26 - 214 - 8 - 224 - 236 - 28 - 26 - 224 - 235 - 241 - 254 - 255 - 32 - 9 - 62 - 3 - 234 - 224 - 223 - 240 - 158 - 224 - 237 - 175 - 18 - 29 - 18 - 33 - 171 - 255 - 203 - 91 - 32 - 6 - 45 - 203 - 83 - 32 - 1 - 45 - 119 - 24 - 141 - 229 - 197 - 213 - 245 - 240 - 179 - 254 - 13 - 32 - 109 - 229 - 209 - 33 - 238 - 255 - 126 - 167 - 32 - 100 - 54 - 1 - 44 - 114 - 44 - 115 - 241 - 245 - 254 - 128 - 32 - 11 - 122 - 198 - 48 - 87 - 26 - 167 - 40 - 3 - 205 - 68 - 37 - 33 - 16 - 194 - 17 - 16 - 0 - 6 - 4 - 229 - 54 - 0 - 44 - 240 - 173 - 198 - 0 - 119 - 44 - 240 - 161 - 198 - 0 - 119 - 44 - 44 - 44 - 44 - 44 - 54 - 1 - 44 - 54 - 7 - 225 - 25 - 5 - 32 - 226 - 33 - 34 - 194 - 126 - 214 - 4 - 119 - 33 - 66 - 194 - 126 - 214 - 4 - 119 - 33 - 56 - 194 - 54 - 11 - 33 - 72 - 194 - 54 - 11 - 240 - 164 - 224 - 243 - 17 - 80 - 0 - 205 - 102 - 1 - 62 - 2 - 234 - 248 - 223 - 241 - 209 - 193 - 225 - 201 - 240 - 159 - 167 - 200 - 250 - 219 - 192 - 224 - 128 - 201 - 0 - 134 - 50 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 15 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 15 - 0 - 32 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 15 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 15 - 0 - 32 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 4 - 4 - 3 - 3 - 2 - 2 - 2 - 2 - 2 - 2 - 2 - 2 - 2 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 0 - 0 - 127 - 62 - 3 - 224 - 234 - 240 - 164 - 71 - 250 - 170 - 192 - 184 - 200 - 175 - 224 - 234 - 201 - 240 - 234 - 167 - 32 - 235 - 240 - 164 - 230 - 8 - 33 - 163 - 255 - 190 - 192 - 126 - 238 - 8 - 119 - 167 - 32 - 4 - 33 - 171 - 192 - 52 - 6 - 16 - 33 - 176 - 192 - 62 - 44 - 34 - 5 - 32 - 252 - 240 - 230 - 167 - 40 - 8 - 240 - 231 - 103 - 240 - 232 - 111 - 24 - 31 - 33 - 0 - 64 - 240 - 228 - 135 - 95 - 22 - 0 - 25 - 94 - 35 - 86 - 213 - 225 - 240 - 229 - 135 - 95 - 22 - 0 - 25 - 42 - 254 - 255 - 40 - 71 - 95 - 86 - 213 - 225 - 42 - 254 - 254 - 40 - 67 - 17 - 176 - 192 - 71 - 230 - 240 - 203 - 55 - 131 - 95 - 120 - 230 - 15 - 32 - 2 - 62 - 16 - 71 - 42 - 254 - 253 - 40 - 74 - 18 - 254 - 112 - 32 - 5 - 205 - 160 - 34 - 24 - 23 - 254 - 128 - 32 - 5 - 205 - 24 - 35 - 24 - 14 - 254 - 95 - 32 - 5 - 205 - 24 - 35 - 24 - 5 - 254 - 129 - 204 - 24 - 35 - 28 - 5 - 32 - 214 - 24 - 189 - 33 - 210 - 192 - 52 - 201 - 124 - 224 - 231 - 125 - 224 - 232 - 240 - 230 - 60 - 254 - 20 - 32 - 5 - 33 - 229 - 255 - 52 - 175 - 224 - 230 - 240 - 164 - 234 - 170 - 192 - 62 - 1 - 224 - 234 - 201 - 126 - 18 - 28 - 5 - 32 - 251 - 35 - 195 - 223 - 33 - 240 - 234 - 254 - 1 - 192 - 240 - 233 - 111 - 60 - 254 - 96 - 32 - 2 - 62 - 64 - 224 - 233 - 38 - 152 - 17 - 176 - 192 - 6 - 16 - 229 - 124 - 198 - 48 - 103 - 54 - 0 - 225 - 26 - 119 - 254 - 112 - 32 - 5 - 205 - 244 - 34 - 24 - 23 - 254 - 128 - 32 - 5 - 205 - 90 - 35 - 24 - 14 - 254 - 95 - 32 - 5 - 205 - 90 - 35 - 24 - 5 - 254 - 129 - 204 - 90 - 35 - 28 - 213 - 17 - 32 - 0 - 25 - 209 - 5 - 32 - 204 - 62 - 2 - 224 - 234 - 201 - 229 - 213 - 197 - 240 - 249 - 167 - 32 - 72 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 240 - 228 - 135 - 95 - 22 - 0 - 33 - 28 - 101 - 25 - 94 - 35 - 86 - 213 - 225 - 240 - 229 - 190 - 40 - 13 - 126 - 254 - 255 - 40 - 29 - 35 - 35 - 35 - 35 - 35 - 35 - 24 - 238 - 240 - 230 - 35 - 190 - 32 - 243 - 35 - 17 - 244 - 255 - 42 - 18 - 28 - 42 - 18 - 28 - 42 - 18 - 28 - 126 - 18 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 193 - 209 - 225 - 201 - 240 - 244 - 167 - 200 - 229 - 213 - 17 - 224 - 255 - 245 - 124 - 198 - 48 - 103 - 241 - 119 - 240 - 245 - 25 - 119 - 240 - 246 - 25 - 119 - 240 - 247 - 25 - 119 - 175 - 224 - 244 - 224 - 245 - 209 - 225 - 201 - 229 - 213 - 197 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 240 - 228 - 135 - 95 - 22 - 0 - 33 - 54 - 101 - 25 - 94 - 35 - 86 - 213 - 225 - 240 - 229 - 190 - 40 - 10 - 126 - 254 - 255 - 40 - 16 - 35 - 35 - 35 - 24 - 241 - 240 - 230 - 35 - 190 - 32 - 246 - 35 - 126 - 234 - 205 - 192 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 193 - 209 - 225 - 201 - 250 - 205 - 192 - 167 - 200 - 229 - 245 - 124 - 198 - 48 - 103 - 241 - 119 - 175 - 234 - 205 - 192 - 225 - 201 - 240 - 178 - 167 - 192 - 205 - 143 - 33 - 205 - 178 - 79 - 250 - 7 - 208 - 167 - 196 - 60 - 27 - 205 - 55 - 8 - 205 - 236 - 79 - 205 - 24 - 81 - 240 - 253 - 224 - 225 - 62 - 3 - 224 - 253 - 234 - 0 - 32 - 205 - 139 - 73 - 1 - 24 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 40 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 56 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 1 - 72 - 194 - 33 - 100 - 33 - 205 - 13 - 73 - 205 - 234 - 74 - 205 - 138 - 75 - 205 - 181 - 75 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 205 - 136 - 36 - 240 - 253 - 224 - 225 - 62 - 2 - 224 - 253 - 234 - 0 - 32 - 205 - 68 - 88 - 240 - 225 - 224 - 253 - 234 - 0 - 32 - 205 - 45 - 23 - 205 - 94 - 81 - 205 - 250 - 30 - 240 - 172 - 230 - 3 - 192 - 250 - 3 - 194 - 238 - 1 - 234 - 3 - 194 - 201 - 250 - 20 - 208 - 167 - 200 - 240 - 179 - 254 - 13 - 208 - 240 - 172 - 230 - 7 - 192 - 240 - 172 - 203 - 95 - 40 - 5 - 33 - 0 - 198 - 24 - 14 - 33 - 175 - 63 - 240 - 180 - 230 - 240 - 214 - 16 - 15 - 22 - 0 - 95 - 25 - 17 - 209 - 149 - 6 - 8 - 42 - 18 - 19 - 19 - 5 - 32 - 249 - 201 - 0 - 0 - 1 - 1 - 1 - 0 - 0 - 1 - 1 - 0 - 1 - 0 - 62 - 12 - 234 - 171 - 192 - 205 - 83 - 36 - 175 - 234 - 7 - 208 - 33 - 45 - 36 - 240 - 228 - 22 - 0 - 95 - 25 - 126 - 234 - 20 - 208 - 201 - 33 - 26 - 64 - 240 - 228 - 7 - 22 - 0 - 95 - 25 - 42 - 95 - 126 - 87 - 98 - 107 - 250 - 171 - 192 - 71 - 126 - 184 - 48 - 5 - 35 - 35 - 35 - 24 - 247 - 125 - 234 - 16 - 208 - 124 - 234 - 17 - 208 - 33 - 0 - 209 - 17 - 16 - 0 - 54 - 255 - 25 - 125 - 254 - 160 - 194 - 126 - 36 - 201 - 205 - 146 - 36 - 205 - 63 - 38 - 205 - 95 - 37 - 201 - 250 - 16 - 208 - 111 - 250 - 17 - 208 - 103 - 126 - 71 - 250 - 171 - 192 - 144 - 200 - 216 - 79 - 203 - 49 - 229 - 35 - 126 - 230 - 31 - 7 - 7 - 7 - 198 - 16 - 224 - 194 - 42 - 230 - 192 - 203 - 55 - 198 - 208 - 145 - 224 - 195 - 205 - 230 - 36 - 225 - 17 - 3 - 0 - 25 - 125 - 234 - 16 - 208 - 124 - 234 - 17 - 208 - 24 - 197 - 250 - 3 - 208 - 224 - 192 - 254 - 255 - 200 - 22 - 0 - 95 - 7 - 131 - 203 - 18 - 95 - 33 - 108 - 51 - 25 - 42 - 224 - 199 - 24 - 28 - 240 - 154 - 167 - 32 - 3 - 203 - 126 - 192 - 126 - 230 - 127 - 224 - 192 - 22 - 0 - 95 - 7 - 131 - 203 - 18 - 95 - 33 - 108 - 51 - 25 - 126 - 224 - 199 - 175 - 224 - 196 - 224 - 197 - 224 - 200 - 224 - 201 - 224 - 203 - 240 - 192 - 22 - 0 - 95 - 7 - 131 - 203 - 18 - 95 - 33 - 108 - 51 - 25 - 35 - 42 - 224 - 202 - 126 - 224 - 204 - 254 - 192 - 56 - 5 - 62 - 11 - 234 - 232 - 223 - 17 - 16 - 0 - 6 - 0 - 33 - 0 - 209 - 126 - 60 - 40 - 8 - 4 - 25 - 125 - 254 - 144 - 32 - 245 - 201 - 120 - 205 - 238 - 44 - 201 - 33 - 144 - 209 - 119 - 240 - 194 - 230 - 248 - 198 - 7 - 234 - 146 - 209 - 240 - 195 - 234 - 147 - 209 - 205 - 178 - 44 - 62 - 11 - 234 - 224 - 223 - 201 - 175 - 234 - 19 - 208 - 14 - 0 - 250 - 19 - 208 - 254 - 20 - 208 - 197 - 121 - 203 - 55 - 33 - 0 - 209 - 111 - 126 - 60 - 40 - 29 - 121 - 205 - 220 - 44 - 240 - 195 - 254 - 224 - 56 - 10 - 62 - 255 - 224 - 192 - 121 - 205 - 238 - 44 - 24 - 9 - 240 - 194 - 254 - 192 - 48 - 240 - 205 - 183 - 37 - 193 - 12 - 121 - 254 - 10 - 32 - 202 - 33 - 80 - 192 - 250 - 19 - 208 - 7 - 7 - 22 - 0 - 95 - 25 - 125 - 254 - 160 - 210 - 182 - 37 - 62 - 180 - 119 - 35 - 35 - 35 - 35 - 24 - 241 - 201 - 175 - 234 - 0 - 208 - 33 - 80 - 192 - 250 - 19 - 208 - 7 - 7 - 22 - 0 - 95 - 25 - 68 - 77 - 33 - 217 - 47 - 240 - 197 - 230 - 1 - 32 - 3 - 33 - 171 - 48 - 240 - 198 - 7 - 22 - 0 - 95 - 25 - 42 - 95 - 126 - 87 - 98 - 107 - 250 - 19 - 208 - 254 - 20 - 208 - 126 - 254 - 255 - 200 - 203 - 127 - 32 - 53 - 7 - 203 - 167 - 234 - 0 - 208 - 126 - 203 - 95 - 40 - 7 - 240 - 194 - 214 - 8 - 224 - 194 - 126 - 203 - 87 - 40 - 7 - 240 - 194 - 198 - 8 - 224 - 194 - 126 - 203 - 79 - 40 - 7 - 240 - 195 - 214 - 8 - 224 - 195 - 126 - 203 - 71 - 40 - 6 - 240 - 195 - 198 - 8 - 224 - 195 - 35 - 24 - 195 - 240 - 194 - 2 - 3 - 240 - 195 - 2 - 3 - 126 - 2 - 3 - 250 - 0 - 208 - 2 - 3 - 35 - 250 - 19 - 208 - 60 - 234 - 19 - 208 - 24 - 163 - 33 - 0 - 209 - 126 - 60 - 40 - 29 - 229 - 205 - 226 - 44 - 33 - 149 - 52 - 240 - 192 - 7 - 22 - 0 - 95 - 25 - 42 - 95 - 126 - 87 - 98 - 107 - 205 - 109 - 38 - 225 - 229 - 205 - 244 - 44 - 225 - 125 - 198 - 16 - 111 - 254 - 160 - 194 - 66 - 38 - 201 - 240 - 200 - 167 - 40 - 58 - 240 - 199 - 203 - 79 - 40 - 17 - 205 - 178 - 43 - 48 - 6 - 240 - 194 - 60 - 224 - 194 - 201 - 240 - 194 - 230 - 248 - 224 - 194 - 240 - 201 - 230 - 240 - 203 - 55 - 71 - 240 - 201 - 230 - 15 - 184 - 40 - 7 - 4 - 203 - 48 - 176 - 224 - 201 - 201 - 240 - 201 - 230 - 15 - 224 - 201 - 240 - 200 - 61 - 224 - 200 - 195 - 112 - 40 - 229 - 22 - 0 - 240 - 196 - 95 - 25 - 126 - 234 - 2 - 208 - 254 - 255 - 32 - 6 - 175 - 224 - 196 - 225 - 24 - 235 - 240 - 196 - 60 - 224 - 196 - 250 - 2 - 208 - 230 - 240 - 254 - 240 - 40 - 32 - 250 - 2 - 208 - 230 - 224 - 254 - 224 - 32 - 10 - 250 - 2 - 208 - 230 - 15 - 224 - 200 - 225 - 24 - 139 - 250 - 2 - 208 - 224 - 193 - 62 - 1 - 224 - 200 - 225 - 195 - 109 - 38 - 240 - 196 - 60 - 224 - 196 - 35 - 126 - 234 - 3 - 208 - 250 - 2 - 208 - 254 - 248 - 32 - 8 - 250 - 3 - 208 - 224 - 198 - 225 - 24 - 164 - 254 - 240 - 32 - 120 - 250 - 3 - 208 - 230 - 192 - 40 - 56 - 203 - 127 - 40 - 19 - 240 - 197 - 230 - 253 - 71 - 250 - 1 - 194 - 79 - 240 - 194 - 145 - 23 - 7 - 230 - 2 - 176 - 224 - 197 - 250 - 3 - 208 - 203 - 119 - 40 - 26 - 250 - 2 - 194 - 79 - 240 - 195 - 71 - 240 - 202 - 230 - 112 - 15 - 15 - 128 - 145 - 23 - 230 - 1 - 71 - 240 - 197 - 230 - 254 - 176 - 224 - 197 - 250 - 3 - 208 - 230 - 12 - 40 - 8 - 31 - 31 - 71 - 240 - 197 - 168 - 224 - 197 - 250 - 3 - 208 - 203 - 111 - 40 - 12 - 230 - 2 - 246 - 253 - 71 - 240 - 197 - 203 - 207 - 160 - 224 - 197 - 250 - 3 - 208 - 203 - 103 - 40 - 12 - 230 - 1 - 246 - 254 - 71 - 240 - 197 - 203 - 199 - 160 - 224 - 197 - 225 - 195 - 172 - 38 - 254 - 241 - 32 - 17 - 62 - 10 - 205 - 238 - 44 - 205 - 205 - 36 - 62 - 10 - 205 - 220 - 44 - 225 - 195 - 172 - 38 - 254 - 242 - 32 - 9 - 250 - 3 - 208 - 224 - 199 - 225 - 195 - 172 - 38 - 254 - 243 - 32 - 36 - 250 - 3 - 208 - 224 - 192 - 254 - 255 - 202 - 110 - 40 - 33 - 192 - 255 - 205 - 178 - 44 - 225 - 33 - 149 - 52 - 240 - 192 - 7 - 22 - 0 - 95 - 25 - 42 - 95 - 126 - 87 - 98 - 107 - 195 - 172 - 38 - 254 - 244 - 32 - 9 - 250 - 3 - 208 - 224 - 201 - 225 - 195 - 172 - 38 - 254 - 245 - 32 - 12 - 240 - 4 - 230 - 3 - 62 - 241 - 40 - 157 - 225 - 195 - 172 - 38 - 254 - 246 - 32 - 32 - 250 - 2 - 194 - 71 - 240 - 195 - 144 - 198 - 20 - 254 - 32 - 250 - 3 - 208 - 61 - 40 - 1 - 63 - 56 - 8 - 240 - 196 - 61 - 61 - 224 - 196 - 225 - 201 - 225 - 195 - 172 - 38 - 254 - 247 - 32 - 5 - 205 - 33 - 43 - 225 - 201 - 254 - 249 - 32 - 8 - 250 - 3 - 208 - 234 - 248 - 223 - 225 - 201 - 254 - 250 - 32 - 8 - 250 - 3 - 208 - 234 - 224 - 223 - 225 - 201 - 254 - 251 - 32 - 25 - 250 - 3 - 208 - 79 - 250 - 2 - 194 - 71 - 240 - 195 - 144 - 185 - 56 - 7 - 175 - 224 - 196 - 225 - 195 - 172 - 38 - 225 - 195 - 172 - 38 - 254 - 252 - 32 - 13 - 250 - 3 - 208 - 224 - 194 - 62 - 112 - 224 - 195 - 225 - 195 - 172 - 38 - 254 - 253 - 32 - 8 - 250 - 3 - 208 - 234 - 232 - 223 - 225 - 201 - 225 - 195 - 172 - 38 - 225 - 201 - 240 - 193 - 230 - 15 - 202 - 108 - 41 - 240 - 197 - 203 - 71 - 32 - 106 - 205 - 123 - 43 - 48 - 67 - 240 - 199 - 203 - 71 - 40 - 5 - 205 - 219 - 43 - 56 - 68 - 240 - 193 - 230 - 15 - 71 - 240 - 195 - 144 - 224 - 195 - 240 - 203 - 167 - 202 - 108 - 41 - 250 - 5 - 194 - 79 - 197 - 62 - 32 - 234 - 5 - 194 - 205 - 164 - 26 - 193 - 167 - 32 - 16 - 250 - 2 - 194 - 144 - 234 - 2 - 194 - 254 - 15 - 48 - 5 - 62 - 15 - 234 - 2 - 194 - 121 - 234 - 5 - 194 - 195 - 108 - 41 - 240 - 199 - 230 - 12 - 254 - 0 - 40 - 192 - 254 - 4 - 32 - 9 - 240 - 197 - 203 - 199 - 224 - 197 - 195 - 108 - 41 - 254 - 12 - 194 - 108 - 41 - 175 - 224 - 196 - 224 - 200 - 195 - 108 - 41 - 205 - 145 - 43 - 48 - 99 - 240 - 199 - 203 - 71 - 40 - 5 - 205 - 245 - 43 - 56 - 100 - 240 - 193 - 230 - 15 - 71 - 240 - 195 - 128 - 224 - 195 - 240 - 203 - 167 - 40 - 102 - 250 - 5 - 194 - 79 - 197 - 175 - 234 - 5 - 194 - 205 - 164 - 26 - 193 - 167 - 32 - 37 - 250 - 2 - 194 - 128 - 234 - 2 - 194 - 254 - 81 - 56 - 26 - 250 - 210 - 192 - 254 - 7 - 48 - 25 - 250 - 2 - 194 - 214 - 80 - 71 - 62 - 80 - 234 - 2 - 194 - 240 - 164 - 128 - 224 - 164 - 205 - 150 - 44 - 121 - 234 - 5 - 194 - 24 - 43 - 240 - 164 - 230 - 12 - 32 - 225 - 240 - 164 - 230 - 252 - 224 - 164 - 24 - 236 - 240 - 199 - 230 - 12 - 254 - 0 - 40 - 160 - 254 - 4 - 32 - 8 - 240 - 197 - 203 - 135 - 224 - 197 - 24 - 9 - 254 - 12 - 32 - 5 - 175 - 224 - 196 - 224 - 200 - 240 - 193 - 230 - 240 - 202 - 244 - 41 - 240 - 197 - 203 - 79 - 32 - 63 - 205 - 24 - 44 - 48 - 26 - 240 - 193 - 230 - 240 - 203 - 55 - 71 - 240 - 194 - 144 - 224 - 194 - 240 - 203 - 167 - 40 - 101 - 250 - 1 - 194 - 144 - 234 - 1 - 194 - 24 - 92 - 240 - 199 - 230 - 192 - 254 - 0 - 40 - 222 - 254 - 64 - 194 - 173 - 41 - 240 - 197 - 203 - 207 - 224 - 197 - 24 - 71 - 254 - 192 - 32 - 67 - 175 - 224 - 196 - 224 - 200 - 24 - 60 - 205 - 178 - 43 - 48 - 26 - 240 - 193 - 230 - 240 - 203 - 55 - 71 - 240 - 194 - 128 - 224 - 194 - 240 - 203 - 167 - 40 - 38 - 250 - 1 - 194 - 128 - 234 - 1 - 194 - 24 - 29 - 240 - 199 - 230 - 48 - 254 - 0 - 40 - 222 - 254 - 16 - 32 - 8 - 240 - 197 - 203 - 143 - 224 - 197 - 24 - 9 - 254 - 48 - 32 - 5 - 175 - 224 - 196 - 224 - 200 - 175 - 224 - 203 - 201 - 229 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 126 - 225 - 167 - 200 - 229 - 119 - 205 - 178 - 44 - 62 - 255 - 225 - 201 - 229 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 35 - 126 - 225 - 167 - 200 - 119 - 205 - 178 - 44 - 62 - 255 - 201 - 229 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 35 - 35 - 126 - 225 - 254 - 255 - 200 - 167 - 200 - 119 - 205 - 178 - 44 - 175 - 201 - 229 - 125 - 198 - 12 - 111 - 126 - 230 - 63 - 40 - 23 - 126 - 61 - 119 - 225 - 126 - 254 - 50 - 40 - 6 - 254 - 8 - 40 - 2 - 24 - 5 - 62 - 1 - 234 - 240 - 223 - 62 - 254 - 201 - 225 - 229 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 35 - 35 - 35 - 126 - 225 - 167 - 200 - 119 - 205 - 178 - 44 - 62 - 255 - 201 - 229 - 125 - 198 - 12 - 111 - 126 - 230 - 63 - 40 - 34 - 126 - 61 - 119 - 225 - 126 - 254 - 26 - 40 - 17 - 254 - 97 - 40 - 13 - 254 - 96 - 40 - 2 - 24 - 12 - 62 - 1 - 234 - 248 - 223 - 24 - 5 - 62 - 1 - 234 - 240 - 223 - 62 - 254 - 201 - 225 - 229 - 126 - 254 - 96 - 32 - 3 - 234 - 7 - 208 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 35 - 35 - 35 - 35 - 126 - 225 - 167 - 200 - 119 - 205 - 178 - 44 - 62 - 255 - 201 - 229 - 126 - 95 - 22 - 0 - 111 - 38 - 0 - 203 - 35 - 203 - 18 - 203 - 35 - 203 - 18 - 25 - 17 - 125 - 49 - 25 - 35 - 35 - 35 - 35 - 126 - 225 - 167 - 200 - 119 - 205 - 178 - 44 - 62 - 255 - 201 - 33 - 0 - 209 - 126 - 254 - 255 - 40 - 21 - 229 - 54 - 39 - 35 - 35 - 35 - 35 - 54 - 0 - 35 - 35 - 35 - 35 - 35 - 54 - 0 - 35 - 35 - 54 - 0 - 225 - 125 - 198 - 16 - 111 - 254 - 160 - 56 - 222 - 62 - 39 - 224 - 192 - 175 - 224 - 196 - 224 - 199 - 60 - 234 - 248 - 223 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 4 - 224 - 174 - 79 - 240 - 197 - 203 - 71 - 24 - 8 - 240 - 202 - 230 - 112 - 15 - 129 - 224 - 174 - 240 - 194 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 224 - 174 - 240 - 194 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 8 - 79 - 240 - 202 - 230 - 112 - 15 - 129 - 214 - 8 - 224 - 174 - 240 - 194 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 4 - 224 - 174 - 79 - 240 - 197 - 203 - 71 - 24 - 8 - 240 - 202 - 230 - 112 - 15 - 129 - 224 - 174 - 240 - 194 - 198 - 8 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 3 - 224 - 174 - 240 - 194 - 198 - 8 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 5 - 79 - 240 - 202 - 230 - 112 - 15 - 129 - 214 - 8 - 224 - 174 - 240 - 194 - 198 - 8 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 4 - 224 - 174 - 79 - 240 - 197 - 203 - 71 - 24 - 8 - 240 - 202 - 230 - 112 - 15 - 129 - 224 - 174 - 240 - 202 - 230 - 7 - 61 - 203 - 55 - 15 - 79 - 240 - 194 - 145 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 3 - 224 - 174 - 240 - 202 - 230 - 7 - 61 - 203 - 55 - 15 - 79 - 240 - 194 - 145 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 240 - 195 - 79 - 240 - 164 - 129 - 198 - 5 - 79 - 240 - 202 - 230 - 112 - 15 - 145 - 214 - 8 - 224 - 174 - 240 - 202 - 230 - 7 - 61 - 203 - 55 - 15 - 79 - 240 - 194 - 145 - 224 - 173 - 205 - 83 - 1 - 254 - 95 - 216 - 254 - 240 - 63 - 201 - 120 - 167 - 200 - 240 - 195 - 144 - 224 - 195 - 229 - 213 - 33 - 3 - 209 - 17 - 16 - 0 - 126 - 144 - 119 - 25 - 125 - 254 - 160 - 56 - 247 - 209 - 225 - 201 - 229 - 126 - 22 - 0 - 95 - 7 - 131 - 203 - 18 - 95 - 33 - 108 - 51 - 25 - 42 - 71 - 42 - 87 - 126 - 225 - 35 - 35 - 35 - 35 - 54 - 0 - 35 - 35 - 35 - 112 - 35 - 54 - 0 - 35 - 54 - 0 - 35 - 114 - 35 - 35 - 119 - 201 - 203 - 55 - 33 - 0 - 209 - 111 - 17 - 192 - 255 - 6 - 13 - 42 - 18 - 19 - 5 - 32 - 250 - 201 - 203 - 55 - 33 - 0 - 209 - 111 - 17 - 192 - 255 - 6 - 13 - 26 - 34 - 19 - 5 - 32 - 250 - 201 - 144 - 255 - 16 - 144 - 255 - 145 - 255 - 32 - 144 - 255 - 64 - 147 - 72 - 146 - 255 - 64 - 149 - 72 - 148 - 255 - 151 - 8 - 150 - 255 - 153 - 8 - 152 - 255 - 16 - 151 - 24 - 150 - 255 - 16 - 153 - 24 - 152 - 255 - 154 - 255 - 32 - 150 - 40 - 151 - 255 - 16 - 137 - 17 - 136 - 24 - 135 - 255 - 16 - 140 - 17 - 139 - 24 - 138 - 255 - 136 - 1 - 137 - 10 - 135 - 255 - 139 - 1 - 140 - 10 - 138 - 255 - 16 - 156 - 17 - 141 - 255 - 141 - 1 - 156 - 255 - 32 - 141 - 33 - 156 - 255 - 155 - 255 - 157 - 17 - 157 - 255 - 158 - 17 - 158 - 255 - 239 - 1 - 239 - 1 - 239 - 255 - 221 - 1 - 222 - 255 - 32 - 157 - 49 - 157 - 10 - 157 - 17 - 157 - 255 - 32 - 158 - 49 - 158 - 10 - 158 - 17 - 158 - 255 - 131 - 255 - 132 - 255 - 133 - 255 - 134 - 255 - 64 - 224 - 255 - 229 - 255 - 64 - 246 - 255 - 64 - 247 - 255 - 64 - 248 - 255 - 254 - 255 - 223 - 255 - 64 - 238 - 255 - 239 - 1 - 239 - 255 - 176 - 1 - 177 - 10 - 160 - 1 - 161 - 255 - 16 - 177 - 17 - 176 - 26 - 161 - 17 - 160 - 255 - 48 - 195 - 49 - 194 - 58 - 211 - 49 - 210 - 255 - 178 - 1 - 179 - 10 - 162 - 1 - 163 - 255 - 16 - 179 - 17 - 178 - 26 - 163 - 17 - 162 - 255 - 180 - 1 - 181 - 10 - 164 - 1 - 165 - 255 - 16 - 181 - 17 - 180 - 26 - 165 - 17 - 164 - 255 - 182 - 1 - 183 - 10 - 166 - 1 - 167 - 255 - 16 - 183 - 17 - 182 - 26 - 167 - 17 - 166 - 255 - 168 - 1 - 169 - 255 - 16 - 169 - 17 - 168 - 255 - 32 - 168 - 33 - 169 - 255 - 184 - 1 - 185 - 255 - 16 - 185 - 17 - 184 - 255 - 32 - 184 - 33 - 185 - 255 - 208 - 1 - 209 - 10 - 192 - 1 - 193 - 255 - 16 - 209 - 17 - 208 - 26 - 193 - 17 - 192 - 255 - 210 - 1 - 211 - 10 - 194 - 1 - 195 - 255 - 16 - 211 - 17 - 210 - 26 - 195 - 17 - 194 - 255 - 212 - 1 - 213 - 10 - 196 - 1 - 197 - 255 - 16 - 213 - 17 - 212 - 26 - 197 - 17 - 196 - 255 - 214 - 1 - 215 - 10 - 198 - 1 - 199 - 255 - 16 - 215 - 17 - 214 - 26 - 199 - 17 - 198 - 255 - 200 - 1 - 201 - 255 - 16 - 201 - 17 - 200 - 255 - 32 - 200 - 33 - 201 - 255 - 216 - 1 - 217 - 255 - 16 - 217 - 17 - 216 - 255 - 32 - 216 - 33 - 217 - 255 - 172 - 255 - 174 - 255 - 175 - 255 - 189 - 1 - 190 - 1 - 191 - 255 - 16 - 191 - 17 - 190 - 17 - 189 - 255 - 186 - 255 - 187 - 255 - 198 - 1 - 199 - 255 - 32 - 198 - 33 - 199 - 255 - 214 - 1 - 215 - 255 - 32 - 214 - 33 - 215 - 255 - 64 - 208 - 72 - 192 - 255 - 64 - 209 - 72 - 193 - 255 - 188 - 8 - 172 - 255 - 226 - 255 - 227 - 255 - 196 - 1 - 197 - 255 - 212 - 1 - 213 - 255 - 159 - 255 - 170 - 255 - 173 - 255 - 216 - 255 - 217 - 255 - 186 - 1 - 187 - 10 - 170 - 1 - 171 - 255 - 64 - 230 - 255 - 187 - 10 - 170 - 1 - 171 - 17 - 170 - 255 - 187 - 10 - 186 - 1 - 171 - 17 - 186 - 255 - 187 - 10 - 172 - 1 - 171 - 17 - 172 - 255 - 172 - 1 - 173 - 17 - 172 - 255 - 32 - 172 - 33 - 173 - 49 - 172 - 255 - 218 - 1 - 219 - 1 - 220 - 10 - 2 - 202 - 1 - 203 - 1 - 204 - 1 - 186 - 10 - 2 - 2 - 205 - 1 - 206 - 255 - 187 - 1 - 214 - 1 - 215 - 10 - 2 - 171 - 1 - 198 - 1 - 199 - 1 - 170 - 10 - 2 - 2 - 205 - 1 - 206 - 255 - 32 - 170 - 49 - 170 - 10 - 170 - 17 - 170 - 255 - 32 - 171 - 49 - 171 - 10 - 171 - 17 - 171 - 255 - 188 - 1 - 189 - 10 - 206 - 1 - 207 - 10 - 190 - 1 - 191 - 10 - 174 - 1 - 175 - 255 - 204 - 1 - 205 - 10 - 218 - 1 - 219 - 10 - 202 - 1 - 203 - 10 - 186 - 1 - 187 - 255 - 64 - 136 - 72 - 135 - 255 - 249 - 1 - 251 - 255 - 249 - 1 - 250 - 255 - 16 - 249 - 18 - 251 - 255 - 16 - 249 - 18 - 250 - 255 - 206 - 1 - 207 - 10 - 190 - 1 - 191 - 10 - 174 - 1 - 175 - 255 - 202 - 1 - 203 - 10 - 204 - 1 - 205 - 10 - 188 - 1 - 189 - 255 - 208 - 17 - 208 - 10 - 192 - 17 - 192 - 255 - 209 - 17 - 209 - 10 - 193 - 17 - 193 - 255 - 186 - 1 - 187 - 1 - 188 - 10 - 171 - 255 - 189 - 1 - 190 - 1 - 191 - 10 - 174 - 255 - 96 - 147 - 100 - 146 - 255 - 96 - 149 - 100 - 148 - 255 - 64 - 204 - 65 - 205 - 65 - 206 - 65 - 207 - 74 - 66 - 66 - 188 - 65 - 189 - 65 - 190 - 65 - 191 - 74 - 66 - 66 - 172 - 65 - 173 - 65 - 174 - 65 - 175 - 74 - 203 - 255 - 64 - 242 - 65 - 243 - 74 - 240 - 65 - 241 - 255 - 140 - 1 - 141 - 1 - 156 - 10 - 2 - 137 - 1 - 138 - 1 - 139 - 255 - 218 - 1 - 200 - 1 - 201 - 10 - 2 - 202 - 1 - 219 - 1 - 220 - 255 - 0 - 45 - 2 - 45 - 5 - 45 - 7 - 45 - 10 - 45 - 15 - 45 - 28 - 45 - 33 - 45 - 38 - 45 - 40 - 45 - 45 - 45 - 52 - 45 - 71 - 45 - 80 - 45 - 85 - 45 - 87 - 45 - 91 - 45 - 95 - 45 - 95 - 45 - 101 - 45 - 105 - 45 - 114 - 45 - 123 - 45 - 125 - 45 - 127 - 45 - 129 - 45 - 131 - 45 - 134 - 45 - 136 - 45 - 139 - 45 - 142 - 45 - 145 - 45 - 147 - 45 - 149 - 45 - 152 - 45 - 189 - 46 - 197 - 46 - 205 - 46 - 213 - 46 - 219 - 46 - 164 - 45 - 190 - 45 - 207 - 45 - 224 - 45 - 237 - 45 - 242 - 45 - 251 - 45 - 0 - 46 - 13 - 46 - 30 - 46 - 47 - 46 - 64 - 46 - 77 - 46 - 82 - 46 - 91 - 46 - 96 - 46 - 101 - 46 - 103 - 46 - 105 - 46 - 113 - 46 - 120 - 46 - 122 - 46 - 124 - 46 - 128 - 46 - 133 - 46 - 137 - 46 - 142 - 46 - 147 - 46 - 152 - 46 - 156 - 46 - 158 - 46 - 173 - 45 - 226 - 46 - 247 - 46 - 160 - 46 - 164 - 46 - 12 - 47 - 21 - 47 - 30 - 47 - 46 - 47 - 168 - 46 - 62 - 47 - 75 - 47 - 80 - 47 - 85 - 47 - 97 - 47 - 109 - 47 - 117 - 47 - 145 - 45 - 105 - 46 - 170 - 46 - 101 - 46 - 172 - 46 - 125 - 47 - 133 - 47 - 141 - 47 - 146 - 47 - 174 - 46 - 176 - 46 - 151 - 47 - 178 - 46 - 182 - 47 - 191 - 47 - 204 - 47 - 186 - 46 - 0 - 45 - 2 - 45 - 5 - 45 - 7 - 45 - 10 - 45 - 15 - 45 - 20 - 45 - 24 - 45 - 38 - 45 - 40 - 45 - 59 - 45 - 65 - 45 - 76 - 45 - 80 - 45 - 85 - 45 - 87 - 45 - 91 - 45 - 95 - 45 - 95 - 45 - 101 - 45 - 105 - 45 - 114 - 45 - 123 - 45 - 125 - 45 - 127 - 45 - 129 - 45 - 131 - 45 - 134 - 45 - 136 - 45 - 139 - 45 - 142 - 45 - 145 - 45 - 147 - 45 - 149 - 45 - 152 - 45 - 189 - 46 - 197 - 46 - 205 - 46 - 213 - 46 - 219 - 46 - 156 - 45 - 182 - 45 - 199 - 45 - 216 - 45 - 233 - 45 - 242 - 45 - 247 - 45 - 0 - 46 - 5 - 46 - 22 - 46 - 39 - 46 - 56 - 46 - 73 - 46 - 82 - 46 - 87 - 46 - 96 - 46 - 101 - 46 - 103 - 46 - 105 - 46 - 107 - 46 - 120 - 46 - 122 - 46 - 124 - 46 - 128 - 46 - 133 - 46 - 137 - 46 - 142 - 46 - 147 - 46 - 152 - 46 - 156 - 46 - 158 - 46 - 173 - 45 - 226 - 46 - 247 - 46 - 160 - 46 - 164 - 46 - 12 - 47 - 21 - 47 - 30 - 47 - 46 - 47 - 168 - 46 - 62 - 47 - 67 - 47 - 71 - 47 - 85 - 47 - 97 - 47 - 109 - 47 - 117 - 47 - 145 - 45 - 105 - 46 - 170 - 46 - 101 - 46 - 172 - 46 - 125 - 47 - 133 - 47 - 141 - 47 - 146 - 47 - 174 - 46 - 176 - 46 - 151 - 47 - 178 - 46 - 182 - 47 - 191 - 47 - 204 - 47 - 186 - 46 - 1 - 17 - 255 - 17 - 17 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 5 - 18 - 255 - 18 - 18 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 79 - 79 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 15 - 21 - 255 - 21 - 21 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 255 - 0 - 39 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 20 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 28 - 25 - 255 - 25 - 25 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 79 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 39 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 255 - 0 - 255 - 33 - 33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 255 - 0 - 255 - 0 - 39 - 28 - 25 - 255 - 25 - 25 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 40 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 42 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 39 - 39 - 0 - 0 - 255 - 39 - 39 - 64 - 65 - 255 - 65 - 65 - 0 - 0 - 255 - 79 - 79 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 55 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 61 - 62 - 255 - 62 - 62 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 64 - 65 - 255 - 65 - 65 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 67 - 68 - 255 - 68 - 68 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 13 - 13 - 255 - 0 - 13 - 77 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 39 - 255 - 255 - 255 - 255 - 39 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 87 - 21 - 255 - 21 - 21 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 39 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 79 - 0 - 0 - 255 - 0 - 98 - 0 - 0 - 0 - 0 - 0 - 6 - 17 - 0 - 2 - 17 - 0 - 1 - 17 - 0 - 0 - 17 - 0 - 7 - 17 - 0 - 2 - 17 - 0 - 0 - 34 - 0 - 0 - 145 - 0 - 9 - 51 - 196 - 7 - 34 - 129 - 0 - 177 - 0 - 0 - 177 - 0 - 0 - 161 - 0 - 0 - 0 - 0 - 52 - 34 - 65 - 2 - 33 - 0 - 0 - 18 - 0 - 0 - 17 - 0 - 0 - 17 - 0 - 0 - 145 - 0 - 8 - 145 - 0 - 0 - 33 - 0 - 7 - 34 - 64 - 0 - 33 - 0 - 0 - 33 - 0 - 0 - 34 - 0 - 80 - 36 - 211 - 0 - 33 - 0 - 2 - 33 - 0 - 0 - 34 - 65 - 0 - 33 - 0 - 0 - 17 - 0 - 0 - 34 - 130 - 0 - 34 - 0 - 0 - 17 - 0 - 0 - 17 - 0 - 0 - 34 - 65 - 224 - 34 - 65 - 0 - 17 - 0 - 0 - 34 - 0 - 36 - 17 - 0 - 6 - 17 - 0 - 36 - 17 - 0 - 6 - 17 - 0 - 4 - 17 - 0 - 0 - 17 - 0 - 0 - 17 - 0 - 0 - 33 - 0 - 0 - 33 - 0 - 6 - 34 - 64 - 0 - 35 - 201 - 0 - 162 - 0 - 12 - 17 - 0 - 0 - 145 - 0 - 0 - 145 - 0 - 0 - 145 - 0 - 0 - 177 - 0 - 0 - 177 - 0 - 0 - 161 - 0 - 0 - 161 - 0 - 48 - 18 - 130 - 2 - 17 - 0 - 0 - 17 - 0 - 0 - 34 - 128 - 2 - 33 - 0 - 0 - 33 - 0 - 0 - 34 - 128 - 2 - 33 - 0 - 0 - 33 - 0 - 0 - 18 - 0 - 0 - 34 - 0 - 52 - 162 - 0 - 84 - 34 - 255 - 0 - 146 - 0 - 0 - 17 - 0 - 0 - 17 - 64 - 0 - 145 - 0 - 0 - 145 - 0 - 0 - 145 - 0 - 0 - 34 - 0 - 0 - 17 - 0 - 0 - 17 - 0 - 0 - 34 - 64 - 0 - 34 - 64 - 0 - 17 - 0 - 0 - 17 - 64 - 180 - 34 - 129 - 2 - 33 - 0 - 0 - 17 - 0 - 0 - 17 - 137 - 0 - 17 - 0 - 0 - 67 - 192 - 0 - 17 - 50 - 0 - 17 - 2 - 0 - 17 - 5 - 0 - 17 - 2 - 0 - 67 - 216 - 84 - 50 - 211 - 84 - 34 - 0 - 91 - 53 - 101 - 53 - 109 - 53 - 148 - 53 - 161 - 53 - 171 - 53 - 202 - 53 - 218 - 53 - 228 - 53 - 2 - 54 - 47 - 54 - 65 - 54 - 83 - 54 - 107 - 54 - 138 - 54 - 192 - 54 - 200 - 54 - 242 - 54 - 246 - 54 - 250 - 54 - 255 - 54 - 17 - 55 - 23 - 55 - 50 - 55 - 79 - 55 - 92 - 55 - 98 - 55 - 114 - 55 - 122 - 55 - 132 - 55 - 144 - 55 - 152 - 55 - 161 - 55 - 173 - 55 - 196 - 55 - 206 - 55 - 226 - 55 - 20 - 56 - 101 - 56 - 103 - 56 - 118 - 56 - 145 - 56 - 152 - 56 - 179 - 56 - 186 - 56 - 196 - 56 - 209 - 56 - 217 - 56 - 238 - 56 - 48 - 57 - 57 - 57 - 82 - 57 - 91 - 57 - 122 - 57 - 144 - 57 - 148 - 57 - 168 - 57 - 185 - 57 - 202 - 57 - 220 - 57 - 238 - 57 - 47 - 58 - 55 - 58 - 61 - 58 - 84 - 58 - 92 - 58 - 98 - 58 - 134 - 58 - 142 - 58 - 148 - 58 - 155 - 58 - 193 - 58 - 232 - 58 - 242 - 58 - 15 - 59 - 25 - 59 - 33 - 59 - 37 - 59 - 53 - 59 - 60 - 59 - 72 - 59 - 78 - 59 - 103 - 59 - 122 - 59 - 188 - 59 - 215 - 59 - 254 - 59 - 42 - 60 - 53 - 60 - 61 - 60 - 90 - 60 - 100 - 60 - 120 - 60 - 145 - 60 - 166 - 60 - 186 - 60 - 207 - 60 - 228 - 60 - 252 - 60 - 248 - 0 - 244 - 2 - 1 - 226 - 248 - 1 - 227 - 255 - 248 - 2 - 0 - 239 - 239 - 239 - 243 - 255 - 240 - 32 - 248 - 4 - 0 - 239 - 246 - 0 - 16 - 239 - 0 - 239 - 248 - 5 - 239 - 248 - 4 - 239 - 248 - 5 - 239 - 248 - 4 - 239 - 248 - 5 - 239 - 248 - 4 - 239 - 240 - 34 - 16 - 239 - 0 - 239 - 239 - 239 - 255 - 248 - 31 - 244 - 2 - 0 - 239 - 239 - 241 - 71 - 239 - 239 - 239 - 255 - 244 - 2 - 248 - 6 - 1 - 226 - 248 - 7 - 227 - 255 - 248 - 8 - 0 - 239 - 239 - 248 - 14 - 228 - 248 - 8 - 228 - 248 - 14 - 228 - 248 - 8 - 228 - 248 - 14 - 228 - 248 - 8 - 228 - 248 - 14 - 228 - 248 - 8 - 228 - 243 - 70 - 248 - 101 - 240 - 34 - 244 - 1 - 16 - 239 - 240 - 32 - 16 - 239 - 0 - 239 - 232 - 255 - 248 - 104 - 244 - 1 - 240 - 32 - 16 - 226 - 243 - 19 - 240 - 48 - 244 - 1 - 248 - 72 - 0 - 239 - 248 - 73 - 0 - 239 - 249 - 4 - 241 - 27 - 232 - 16 - 239 - 228 - 249 - 4 - 241 - 27 - 240 - 34 - 16 - 239 - 228 - 255 - 244 - 3 - 248 - 86 - 1 - 226 - 248 - 87 - 226 - 248 - 86 - 226 - 248 - 87 - 226 - 248 - 86 - 226 - 248 - 87 - 226 - 248 - 86 - 226 - 248 - 87 - 226 - 248 - 86 - 226 - 248 - 87 - 226 - 248 - 86 - 0 - 232 - 248 - 87 - 249 - 4 - 241 - 81 - 232 - 255 - 248 - 18 - 244 - 1 - 240 - 34 - 16 - 238 - 239 - 239 - 239 - 240 - 32 - 239 - 239 - 239 - 239 - 255 - 248 - 18 - 244 - 1 - 240 - 16 - 1 - 238 - 239 - 239 - 232 - 240 - 17 - 239 - 239 - 239 - 232 - 255 - 248 - 19 - 240 - 34 - 244 - 15 - 0 - 234 - 244 - 0 - 16 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 240 - 100 - 17 - 229 - 1 - 17 - 1 - 17 - 1 - 1 - 240 - 34 - 1 - 1 - 17 - 1 - 17 - 1 - 17 - 229 - 32 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 40 - 240 - 96 - 244 - 2 - 0 - 228 - 248 - 41 - 228 - 248 - 40 - 228 - 248 - 41 - 228 - 248 - 40 - 240 - 96 - 66 - 66 - 34 - 34 - 248 - 41 - 18 - 18 - 18 - 2 - 240 - 34 - 248 - 40 - 2 - 18 - 18 - 18 - 248 - 41 - 34 - 34 - 66 - 66 - 248 - 40 - 65 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 44 - 0 - 239 - 239 - 239 - 243 - 21 - 248 - 66 - 240 - 32 - 32 - 238 - 248 - 67 - 239 - 248 - 66 - 239 - 248 - 67 - 232 - 16 - 231 - 0 - 227 - 248 - 66 - 240 - 34 - 0 - 227 - 16 - 231 - 32 - 231 - 248 - 67 - 239 - 248 - 66 - 239 - 248 - 67 - 239 - 0 - 239 - 239 - 255 - 248 - 3 - 243 - 13 - 248 - 9 - 243 - 13 - 248 - 104 - 0 - 239 - 255 - 248 - 104 - 240 - 32 - 244 - 1 - 16 - 238 - 239 - 239 - 239 - 232 - 244 - 15 - 0 - 239 - 243 - 255 - 249 - 3 - 248 - 45 - 243 - 13 - 244 - 2 - 240 - 64 - 248 - 50 - 1 - 232 - 248 - 51 - 233 - 248 - 50 - 233 - 248 - 51 - 233 - 248 - 50 - 233 - 248 - 51 - 233 - 241 - 23 - 243 - 24 - 248 - 62 - 112 - 240 - 32 - 16 - 238 - 232 - 240 - 64 - 17 - 238 - 1 - 238 - 240 - 34 - 17 - 238 - 16 - 231 - 240 - 4 - 17 - 238 - 1 - 238 - 239 - 243 - 255 - 248 - 64 - 0 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 243 - 22 - 249 - 3 - 248 - 55 - 243 - 13 - 248 - 79 - 16 - 239 - 239 - 232 - 248 - 78 - 0 - 232 - 249 - 4 - 241 - 31 - 239 - 255 - 240 - 48 - 248 - 31 - 55 - 68 - 243 - 30 - 244 - 1 - 248 - 54 - 0 - 239 - 239 - 239 - 243 - 25 - 248 - 42 - 240 - 144 - 244 - 2 - 18 - 231 - 248 - 43 - 232 - 255 - 248 - 74 - 1 - 231 - 248 - 75 - 232 - 255 - 248 - 31 - 240 - 48 - 112 - 112 - 64 - 243 - 88 - 248 - 40 - 240 - 8 - 244 - 2 - 16 - 227 - 248 - 41 - 228 - 255 - 240 - 34 - 64 - 241 - 34 - 240 - 32 - 80 - 80 - 96 - 241 - 34 - 248 - 20 - 0 - 239 - 248 - 21 - 239 - 248 - 31 - 243 - 255 - 248 - 69 - 244 - 1 - 1 - 227 - 248 - 70 - 228 - 255 - 248 - 69 - 240 - 192 - 244 - 1 - 18 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 243 - 255 - 248 - 42 - 240 - 96 - 32 - 238 - 248 - 43 - 239 - 248 - 42 - 240 - 96 - 239 - 248 - 43 - 232 - 16 - 231 - 0 - 227 - 248 - 42 - 240 - 98 - 249 - 4 - 241 - 35 - 0 - 227 - 16 - 231 - 32 - 231 - 248 - 43 - 239 - 248 - 42 - 240 - 64 - 239 - 248 - 43 - 239 - 0 - 239 - 239 - 255 - 248 - 50 - 240 - 34 - 0 - 239 - 239 - 244 - 0 - 246 - 1 - 16 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 240 - 32 - 244 - 1 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 248 - 50 - 232 - 248 - 51 - 232 - 255 - 243 - 255 - 248 - 20 - 0 - 231 - 248 - 21 - 232 - 248 - 20 - 232 - 248 - 21 - 232 - 243 - 255 - 244 - 1 - 248 - 22 - 240 - 49 - 112 - 17 - 229 - 1 - 17 - 1 - 17 - 1 - 1 - 240 - 34 - 1 - 1 - 17 - 1 - 17 - 1 - 17 - 229 - 243 - 41 - 248 - 22 - 244 - 1 - 1 - 239 - 255 - 244 - 1 - 248 - 23 - 240 - 49 - 112 - 17 - 229 - 1 - 17 - 1 - 17 - 1 - 1 - 240 - 34 - 1 - 1 - 17 - 1 - 17 - 1 - 17 - 229 - 243 - 43 - 248 - 23 - 244 - 1 - 1 - 239 - 255 - 244 - 1 - 248 - 25 - 240 - 49 - 64 - 64 - 243 - 52 - 244 - 2 - 240 - 32 - 248 - 26 - 16 - 227 - 248 - 27 - 227 - 243 - 46 - 248 - 26 - 0 - 232 - 248 - 27 - 232 - 255 - 248 - 44 - 240 - 145 - 244 - 1 - 1 - 239 - 65 - 241 - 48 - 1 - 239 - 65 - 241 - 48 - 1 - 239 - 65 - 243 - 48 - 240 - 16 - 248 - 44 - 1 - 238 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 232 - 240 - 128 - 248 - 44 - 16 - 239 - 240 - 17 - 248 - 46 - 16 - 239 - 248 - 44 - 2 - 238 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 239 - 248 - 44 - 239 - 248 - 46 - 239 - 243 - 255 - 244 - 4 - 248 - 42 - 6 - 248 - 43 - 6 - 255 - 248 - 84 - 244 - 1 - 241 - 51 - 240 - 4 - 0 - 231 - 248 - 85 - 7 - 5 - 0 - 239 - 239 - 239 - 240 - 64 - 248 - 84 - 7 - 5 - 255 - 248 - 31 - 240 - 48 - 114 - 114 - 66 - 243 - 71 - 248 - 25 - 244 - 2 - 240 - 32 - 49 - 33 - 228 - 17 - 228 - 1 - 17 - 1 - 240 - 34 - 1 - 17 - 1 - 17 - 228 - 33 - 228 - 49 - 48 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 32 - 240 - 34 - 244 - 1 - 246 - 1 - 16 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 33 - 0 - 255 - 248 - 33 - 240 - 34 - 0 - 231 - 16 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 18 - 240 - 50 - 244 - 2 - 17 - 238 - 239 - 232 - 240 - 49 - 17 - 238 - 239 - 232 - 255 - 248 - 18 - 240 - 48 - 244 - 2 - 17 - 238 - 239 - 232 - 240 - 51 - 17 - 238 - 239 - 232 - 255 - 248 - 34 - 244 - 1 - 240 - 34 - 16 - 238 - 239 - 239 - 239 - 240 - 32 - 239 - 239 - 239 - 239 - 255 - 248 - 34 - 244 - 1 - 240 - 16 - 1 - 238 - 239 - 239 - 232 - 240 - 17 - 239 - 239 - 239 - 232 - 255 - 248 - 35 - 244 - 1 - 240 - 96 - 49 - 33 - 226 - 248 - 36 - 228 - 248 - 37 - 226 - 17 - 225 - 248 - 36 - 228 - 17 - 248 - 35 - 0 - 17 - 0 - 17 - 248 - 36 - 0 - 1 - 240 - 34 - 1 - 0 - 248 - 37 - 17 - 0 - 17 - 0 - 248 - 36 - 17 - 227 - 248 - 35 - 227 - 33 - 248 - 36 - 228 - 248 - 37 - 228 - 248 - 36 - 49 - 64 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 38 - 0 - 239 - 239 - 239 - 243 - 62 - 249 - 3 - 248 - 39 - 243 - 13 - 248 - 42 - 240 - 64 - 0 - 239 - 239 - 239 - 239 - 240 - 64 - 239 - 239 - 248 - 43 - 249 - 4 - 241 - 35 - 239 - 239 - 239 - 255 - 248 - 46 - 0 - 239 - 239 - 239 - 243 - 65 - 249 - 3 - 248 - 47 - 243 - 13 - 248 - 48 - 240 - 16 - 1 - 232 - 248 - 49 - 232 - 248 - 48 - 232 - 248 - 49 - 232 - 248 - 48 - 232 - 248 - 49 - 0 - 232 - 248 - 48 - 232 - 248 - 49 - 241 - 69 - 232 - 248 - 48 - 232 - 248 - 49 - 255 - 248 - 52 - 0 - 239 - 239 - 239 - 243 - 68 - 249 - 3 - 248 - 53 - 243 - 13 - 240 - 34 - 248 - 68 - 16 - 239 - 255 - 240 - 16 - 4 - 249 - 1 - 248 - 15 - 0 - 228 - 248 - 16 - 228 - 248 - 15 - 228 - 248 - 16 - 228 - 248 - 15 - 228 - 248 - 16 - 228 - 248 - 15 - 228 - 248 - 16 - 228 - 248 - 15 - 228 - 248 - 16 - 228 - 243 - 255 - 248 - 49 - 240 - 32 - 244 - 2 - 66 - 66 - 34 - 34 - 248 - 71 - 18 - 18 - 18 - 2 - 240 - 34 - 248 - 49 - 2 - 18 - 18 - 18 - 248 - 71 - 34 - 34 - 66 - 66 - 248 - 49 - 65 - 239 - 239 - 239 - 239 - 239 - 255 - 244 - 1 - 248 - 76 - 17 - 238 - 248 - 77 - 239 - 255 - 248 - 81 - 240 - 32 - 0 - 239 - 16 - 239 - 0 - 239 - 239 - 239 - 239 - 239 - 250 - 9 - 241 - 74 - 239 - 239 - 240 - 34 - 16 - 239 - 0 - 239 - 239 - 239 - 255 - 248 - 31 - 240 - 48 - 112 - 48 - 240 - 64 - 243 - 75 - 248 - 82 - 1 - 231 - 248 - 83 - 232 - 255 - 248 - 33 - 0 - 255 - 248 - 33 - 240 - 32 - 0 - 231 - 16 - 238 - 239 - 239 - 239 - 239 - 239 - 239 - 243 - 78 - 248 - 33 - 240 - 17 - 2 - 239 - 255 - 249 - 1 - 248 - 20 - 0 - 239 - 248 - 21 - 239 - 249 - 1 - 247 - 248 - 31 - 240 - 145 - 243 - 90 - 248 - 70 - 240 - 49 - 116 - 244 - 0 - 32 - 239 - 232 - 16 - 239 - 240 - 34 - 16 - 239 - 32 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 49 - 240 - 16 - 244 - 1 - 2 - 239 - 239 - 228 - 240 - 144 - 34 - 234 - 250 - 9 - 241 - 80 - 255 - 248 - 51 - 240 - 144 - 244 - 1 - 2 - 227 - 248 - 50 - 228 - 251 - 32 - 248 - 50 - 65 - 65 - 65 - 49 - 248 - 51 - 49 - 49 - 17 - 33 - 248 - 50 - 17 - 17 - 17 - 248 - 51 - 17 - 1 - 1 - 240 - 8 - 248 - 50 - 1 - 1 - 17 - 248 - 51 - 17 - 17 - 17 - 248 - 50 - 33 - 17 - 49 - 49 - 248 - 51 - 49 - 65 - 65 - 65 - 2 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 69 - 244 - 3 - 65 - 65 - 65 - 67 - 51 - 35 - 36 - 20 - 4 - 240 - 8 - 20 - 20 - 20 - 52 - 51 - 50 - 66 - 65 - 64 - 240 - 4 - 255 - 248 - 95 - 240 - 34 - 248 - 95 - 0 - 239 - 16 - 239 - 0 - 239 - 248 - 96 - 239 - 248 - 95 - 239 - 248 - 96 - 239 - 248 - 95 - 239 - 248 - 96 - 239 - 248 - 95 - 239 - 240 - 32 - 16 - 239 - 0 - 239 - 239 - 239 - 255 - 248 - 40 - 240 - 96 - 244 - 2 - 0 - 226 - 248 - 41 - 226 - 248 - 40 - 226 - 248 - 41 - 226 - 248 - 40 - 240 - 96 - 66 - 50 - 50 - 34 - 18 - 18 - 240 - 34 - 18 - 34 - 34 - 50 - 50 - 66 - 248 - 40 - 65 - 239 - 239 - 239 - 239 - 239 - 255 - 244 - 2 - 248 - 44 - 0 - 239 - 239 - 239 - 239 - 243 - 86 - 248 - 69 - 1 - 227 - 248 - 70 - 228 - 255 - 240 - 8 - 244 - 2 - 248 - 97 - 16 - 248 - 98 - 16 - 248 - 97 - 16 - 248 - 98 - 16 - 248 - 97 - 16 - 248 - 98 - 16 - 248 - 97 - 16 - 248 - 98 - 16 - 255 - 244 - 1 - 248 - 82 - 18 - 231 - 248 - 83 - 232 - 255 - 253 - 19 - 248 - 31 - 244 - 15 - 0 - 239 - 248 - 99 - 240 - 32 - 244 - 2 - 16 - 239 - 239 - 239 - 243 - 96 - 248 - 31 - 240 - 16 - 4 - 248 - 100 - 240 - 32 - 244 - 1 - 1 - 232 - 244 - 0 - 248 - 31 - 241 - 95 - 64 - 241 - 94 - 64 - 243 - 93 - 248 - 69 - 240 - 48 - 244 - 1 - 33 - 234 - 244 - 0 - 232 - 2 - 232 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 69 - 240 - 48 - 244 - 1 - 1 - 234 - 244 - 0 - 232 - 2 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 69 - 240 - 50 - 244 - 1 - 33 - 234 - 244 - 0 - 232 - 2 - 232 - 239 - 239 - 239 - 239 - 239 - 239 - 239 - 255 - 248 - 99 - 241 - 92 - 240 - 144 - 16 - 239 - 239 - 1 - 239 - 241 - 92 - 240 - 145 - 16 - 239 - 232 - 1 - 239 - 255 - 244 - 1 - 248 - 102 - 17 - 227 - 248 - 103 - 228 - 248 - 102 - 228 - 248 - 103 - 228 - 248 - 102 - 228 - 248 - 103 - 228 - 241 - 83 - 255 - 249 - 1 - 248 - 20 - 0 - 231 - 248 - 21 - 232 - 248 - 20 - 232 - 248 - 21 - 232 - 248 - 31 - 252 - 168 - 243 - 91 - 33 - 48 - 192 - 6 - 32 - 175 - 34 - 5 - 32 - 252 - 33 - 0 - 218 - 62 - 40 - 34 - 175 - 34 - 62 - 4 - 34 - 205 - 117 - 61 - 62 - 32 - 34 - 34 - 34 - 34 - 62 - 246 - 34 - 34 - 34 - 34 - 62 - 48 - 34 - 175 - 6 - 9 - 34 - 5 - 32 - 252 - 62 - 2 - 34 - 61 - 34 - 175 - 34 - 34 - 34 - 34 - 62 - 64 - 34 - 175 - 34 - 34 - 34 - 62 - 64 - 34 - 175 - 6 - 8 - 34 - 5 - 32 - 252 - 62 - 4 - 34 - 62 - 17 - 119 - 201 - 250 - 164 - 192 - 167 - 192 - 240 - 179 - 254 - 18 - 208 - 250 - 0 - 218 - 254 - 40 - 192 - 205 - 117 - 61 - 201 - 17 - 51 - 152 - 250 - 1 - 218 - 71 - 230 - 15 - 18 - 29 - 120 - 230 - 240 - 203 - 55 - 18 - 29 - 250 - 2 - 218 - 230 - 15 - 18 - 201 - 33 - 232 - 223 - 62 - 9 - 119 - 175 - 224 - 64 - 224 - 164 - 33 - 0 - 192 - 6 - 160 - 34 - 5 - 32 - 252 - 33 - 0 - 152 - 6 - 255 - 14 - 3 - 62 - 44 - 34 - 5 - 32 - 252 - 6 - 255 - 13 - 32 - 247 - 17 - 139 - 152 - 250 - 21 - 218 - 71 - 230 - 15 - 18 - 29 - 120 - 230 - 240 - 203 - 55 - 18 - 62 - 131 - 224 - 64 - 62 - 19 - 224 - 179 - 201 - 175 - 224 - 64 - 33 - 0 - 152 - 62 - 245 - 34 - 6 - 18 - 62 - 159 - 34 - 5 - 32 - 252 - 62 - 252 - 119 - 17 - 32 - 0 - 107 - 6 - 16 - 14 - 2 - 62 - 248 - 119 - 25 - 5 - 32 - 251 - 46 - 51 - 37 - 37 - 6 - 16 - 13 - 32 - 242 - 33 - 32 - 154 - 62 - 255 - 34 - 6 - 18 - 62 - 159 - 34 - 5 - 32 - 252 - 62 - 233 - 119 - 33 - 69 - 152 - 62 - 11 - 34 - 62 - 24 - 34 - 61 - 34 - 62 - 30 - 34 - 62 - 28 - 34 - 44 - 62 - 16 - 34 - 62 - 10 - 34 - 62 - 22 - 34 - 62 - 14 - 119 - 33 - 135 - 152 - 62 - 228 - 34 - 44 - 62 - 43 - 119 - 46 - 225 - 62 - 45 - 6 - 18 - 34 - 5 - 32 - 252 - 46 - 209 - 62 - 43 - 34 - 46 - 65 - 36 - 62 - 45 - 6 - 18 - 34 - 5 - 32 - 252 - 46 - 49 - 62 - 43 - 34 - 46 - 161 - 62 - 45 - 6 - 18 - 34 - 5 - 32 - 252 - 46 - 145 - 62 - 43 - 34 - 46 - 1 - 36 - 62 - 45 - 6 - 18 - 34 - 5 - 32 - 252 - 46 - 241 - 37 - 62 - 43 - 34 - 0 - 1 - 2 - 229 - 3 - 1 - 2 - 229 - 17 - 114 - 62 - 240 - 4 - 230 - 3 - 60 - 19 - 61 - 32 - 252 - 33 - 210 - 152 - 1 - 96 - 0 - 26 - 119 - 19 - 9 - 125 - 254 - 82 - 32 - 247 - 62 - 131 - 224 - 64 - 62 - 20 - 224 - 179 - 201 - 1 - 32 - 0 - 17 - 35 - 218 - 250 - 24 - 218 - 103 - 250 - 25 - 218 - 111 - 26 - 119 - 19 - 9 - 250 - 40 - 218 - 61 - 234 - 40 - 218 - 32 - 243 - 62 - 4 - 234 - 40 - 218 - 250 - 41 - 218 - 61 - 234 - 41 - 218 - 32 - 218 - 62 - 17 - 234 - 41 - 218 - 62 - 21 - 224 - 179 - 201 - 240 - 173 - 214 - 16 - 203 - 63 - 203 - 63 - 203 - 63 - 17 - 0 - 0 - 95 - 33 - 0 - 152 - 6 - 32 - 25 - 5 - 32 - 252 - 240 - 174 - 214 - 8 - 203 - 63 - 203 - 63 - 203 - 63 - 17 - 0 - 0 - 95 - 25 - 124 - 224 - 176 - 125 - 224 - 175 - 201 - 240 - 176 - 87 - 240 - 175 - 95 - 6 - 4 - 203 - 26 - 203 - 27 - 5 - 32 - 249 - 123 - 214 - 132 - 230 - 254 - 7 - 7 - 198 - 8 - 224 - 173 - 240 - 175 - 230 - 31 - 23 - 23 - 23 - 198 - 8 - 224 - 174 - 201 - 240 - 177 - 167 - 200 - 250 - 226 - 192 - 167 - 192 - 240 - 234 - 254 - 2 - 200 - 17 - 162 - 192 - 33 - 32 - 152 - 175 - 224 - 177 - 14 - 3 - 26 - 71 - 203 - 55 - 230 - 15 - 32 - 40 - 240 - 177 - 167 - 62 - 0 - 32 - 2 - 62 - 44 - 34 - 120 - 230 - 15 - 32 - 33 - 240 - 177 - 167 - 62 - 0 - 32 - 9 - 62 - 1 - 185 - 62 - 0 - 40 - 2 - 62 - 44 - 34 - 29 - 13 - 32 - 212 - 175 - 224 - 177 - 201 - 245 - 62 - 1 - 224 - 177 - 241 - 24 - 217 - 245 - 62 - 1 - 224 - 177 - 241 - 24 - 231 - 62 - 192 - 224 - 70 - 62 - 40 - 61 - 32 - 253 - 201 - 22 - 10 - 27 - 18 - 24 - 43 - 44 - 44 - 44 - 44 - 32 - 24 - 27 - 21 - 13 - 44 - 29 - 18 - 22 - 14 - 44 - 44 - 44 - 44 - 44 - 44 - 44 - 42 - 43 - 44 - 44 - 44 - 1 - 41 - 1 - 44 - 44 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 56 - 56 - 40 - 16 - 0 - 224 - 177 - 91 - 255 - 255 - 255 - 255 - 126 - 60 - 24 - 0 - 0 - 129 - 66 - 165 - 0 - 225 - 51 - 222 - 255 - 231 - 219 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 187 - 85 - 226 - 85 - 5 - 86 - 187 - 85 - 226 - 85 - 5 - 86 - 187 - 85 - 226 - 85 - 5 - 86 - 48 - 86 - 101 - 86 - 148 - 86 - 187 - 85 - 17 - 83 - 5 - 84 - 213 - 84 - 121 - 81 - 34 - 82 - 155 - 82 - 17 - 83 - 5 - 84 - 213 - 84 - 17 - 83 - 5 - 84 - 213 - 84 - 15 - 15 - 31 - 24 - 59 - 48 - 55 - 32 - 63 - 39 - 58 - 42 - 57 - 41 - 63 - 38 - 240 - 240 - 216 - 56 - 236 - 28 - 244 - 12 - 244 - 236 - 84 - 92 - 148 - 156 - 244 - 108 - 0 - 0 - 15 - 15 - 63 - 56 - 123 - 96 - 119 - 64 - 127 - 71 - 122 - 74 - 121 - 73 - 0 - 0 - 240 - 240 - 252 - 28 - 246 - 14 - 250 - 6 - 250 - 230 - 90 - 86 - 154 - 150 - 0 - 0 - 3 - 3 - 7 - 7 - 12 - 12 - 18 - 30 - 60 - 60 - 227 - 255 - 67 - 67 - 0 - 0 - 248 - 248 - 128 - 192 - 224 - 224 - 134 - 230 - 235 - 233 - 29 - 241 - 125 - 97 - 1 - 1 - 3 - 3 - 6 - 6 - 11 - 15 - 30 - 30 - 113 - 127 - 38 - 38 - 15 - 8 - 252 - 252 - 192 - 224 - 112 - 112 - 64 - 112 - 120 - 120 - 172 - 228 - 244 - 196 - 116 - 68 - 31 - 31 - 50 - 51 - 122 - 91 - 243 - 146 - 255 - 140 - 124 - 112 - 112 - 64 - 63 - 63 - 198 - 198 - 46 - 234 - 126 - 250 - 190 - 162 - 186 - 162 - 122 - 122 - 106 - 106 - 134 - 134 - 0 - 0 - 7 - 7 - 24 - 31 - 39 - 56 - 47 - 48 - 92 - 96 - 88 - 96 - 88 - 96 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 15 - 19 - 28 - 23 - 24 - 46 - 48 - 44 - 48 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 3 - 2 - 7 - 7 - 8 - 8 - 13 - 13 - 31 - 31 - 255 - 240 - 191 - 128 - 248 - 248 - 224 - 32 - 248 - 152 - 240 - 144 - 248 - 136 - 240 - 48 - 224 - 32 - 240 - 48 - 31 - 16 - 15 - 9 - 31 - 17 - 23 - 28 - 29 - 31 - 31 - 21 - 29 - 23 - 15 - 13 - 200 - 56 - 208 - 176 - 248 - 136 - 248 - 56 - 184 - 232 - 232 - 184 - 184 - 232 - 240 - 176 - 63 - 38 - 31 - 16 - 127 - 97 - 223 - 184 - 251 - 183 - 188 - 244 - 126 - 90 - 36 - 36 - 244 - 108 - 232 - 24 - 254 - 134 - 251 - 29 - 223 - 237 - 61 - 47 - 126 - 90 - 36 - 36 - 3 - 2 - 3 - 2 - 3 - 2 - 1 - 1 - 8 - 8 - 12 - 12 - 4 - 7 - 3 - 3 - 191 - 33 - 190 - 62 - 176 - 48 - 248 - 120 - 128 - 248 - 248 - 248 - 0 - 240 - 192 - 192 - 15 - 8 - 15 - 8 - 15 - 8 - 7 - 4 - 35 - 35 - 49 - 49 - 24 - 31 - 15 - 15 - 124 - 68 - 120 - 120 - 112 - 112 - 240 - 112 - 128 - 240 - 240 - 240 - 0 - 224 - 192 - 192 - 63 - 63 - 121 - 105 - 253 - 141 - 121 - 105 - 31 - 22 - 15 - 8 - 28 - 16 - 127 - 127 - 224 - 224 - 27 - 251 - 47 - 237 - 207 - 73 - 205 - 77 - 43 - 43 - 56 - 56 - 192 - 192 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 7 - 6 - 0 - 0 - 63 - 63 - 126 - 70 - 127 - 121 - 142 - 138 - 223 - 217 - 254 - 246 - 252 - 4 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 1 - 2 - 2 - 15 - 12 - 183 - 177 - 126 - 126 - 252 - 196 - 248 - 136 - 120 - 8 - 240 - 16 - 224 - 32 - 192 - 64 - 128 - 128 - 0 - 0 - 95 - 79 - 241 - 241 - 14 - 14 - 25 - 24 - 16 - 16 - 16 - 16 - 25 - 24 - 7 - 6 - 246 - 246 - 253 - 173 - 245 - 23 - 253 - 15 - 234 - 30 - 234 - 30 - 203 - 63 - 155 - 127 - 4 - 4 - 142 - 138 - 142 - 138 - 223 - 209 - 255 - 175 - 245 - 149 - 177 - 145 - 191 - 143 - 24 - 24 - 124 - 100 - 254 - 162 - 254 - 174 - 181 - 149 - 177 - 145 - 159 - 143 - 126 - 126 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 7 - 9 - 14 - 26 - 28 - 38 - 36 - 46 - 44 - 38 - 36 - 63 - 63 - 0 - 0 - 224 - 224 - 144 - 112 - 88 - 56 - 100 - 36 - 116 - 52 - 100 - 36 - 252 - 252 - 7 - 7 - 9 - 14 - 26 - 28 - 38 - 36 - 46 - 44 - 38 - 36 - 63 - 63 - 0 - 0 - 224 - 224 - 144 - 112 - 88 - 56 - 100 - 36 - 116 - 52 - 100 - 36 - 252 - 252 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 31 - 28 - 23 - 17 - 10 - 10 - 12 - 12 - 3 - 3 - 13 - 12 - 17 - 16 - 33 - 32 - 254 - 6 - 251 - 139 - 177 - 209 - 169 - 225 - 91 - 193 - 121 - 199 - 185 - 135 - 242 - 142 - 32 - 32 - 32 - 32 - 49 - 49 - 57 - 57 - 63 - 38 - 31 - 16 - 15 - 15 - 0 - 0 - 188 - 132 - 252 - 196 - 188 - 132 - 252 - 204 - 120 - 8 - 240 - 112 - 192 - 192 - 0 - 0 - 7 - 7 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 253 - 255 - 121 - 63 - 113 - 63 - 102 - 122 - 238 - 242 - 142 - 242 - 94 - 98 - 126 - 70 - 126 - 126 - 16 - 16 - 124 - 124 - 16 - 16 - 124 - 124 - 56 - 56 - 68 - 68 - 124 - 124 - 16 - 16 - 124 - 124 - 16 - 16 - 124 - 124 - 16 - 16 - 40 - 40 - 68 - 68 - 124 - 124 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 50 - 60 - 114 - 92 - 210 - 188 - 178 - 252 - 223 - 223 - 20 - 28 - 116 - 108 - 84 - 108 - 76 - 60 - 78 - 58 - 75 - 61 - 77 - 63 - 251 - 251 - 40 - 56 - 46 - 54 - 42 - 54 - 223 - 223 - 242 - 188 - 178 - 220 - 82 - 124 - 63 - 63 - 10 - 14 - 58 - 54 - 42 - 54 - 251 - 251 - 79 - 61 - 77 - 59 - 74 - 62 - 252 - 252 - 80 - 112 - 92 - 108 - 84 - 108 - 7 - 7 - 25 - 30 - 42 - 44 - 63 - 63 - 182 - 216 - 255 - 255 - 20 - 28 - 84 - 108 - 224 - 224 - 152 - 120 - 84 - 52 - 252 - 252 - 109 - 27 - 255 - 255 - 40 - 56 - 42 - 54 - 39 - 32 - 47 - 32 - 63 - 32 - 62 - 33 - 60 - 51 - 24 - 31 - 15 - 15 - 3 - 3 - 196 - 188 - 248 - 248 - 112 - 240 - 48 - 240 - 112 - 240 - 216 - 232 - 156 - 228 - 60 - 196 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 3 - 0 - 5 - 0 - 9 - 0 - 1 - 0 - 3 - 0 - 5 - 0 - 9 - 0 - 255 - 60 - 255 - 126 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 1 - 1 - 7 - 6 - 14 - 8 - 31 - 31 - 28 - 16 - 31 - 31 - 60 - 60 - 86 - 78 - 255 - 255 - 57 - 7 - 124 - 3 - 255 - 255 - 252 - 3 - 255 - 255 - 0 - 0 - 0 - 0 - 128 - 128 - 224 - 224 - 112 - 240 - 248 - 248 - 56 - 248 - 248 - 248 - 30 - 22 - 25 - 25 - 25 - 25 - 30 - 22 - 28 - 16 - 28 - 16 - 63 - 63 - 221 - 204 - 126 - 25 - 102 - 37 - 102 - 37 - 126 - 25 - 126 - 1 - 126 - 1 - 255 - 255 - 239 - 99 - 120 - 248 - 152 - 152 - 152 - 152 - 120 - 248 - 56 - 248 - 56 - 248 - 252 - 252 - 31 - 255 - 3 - 3 - 7 - 4 - 15 - 8 - 31 - 16 - 30 - 16 - 60 - 32 - 63 - 63 - 32 - 32 - 255 - 255 - 195 - 0 - 135 - 0 - 15 - 0 - 15 - 0 - 31 - 0 - 255 - 255 - 0 - 0 - 255 - 255 - 193 - 63 - 224 - 31 - 240 - 15 - 248 - 7 - 252 - 3 - 255 - 255 - 0 - 0 - 192 - 192 - 224 - 224 - 112 - 240 - 56 - 248 - 56 - 248 - 28 - 252 - 252 - 252 - 28 - 124 - 64 - 127 - 127 - 127 - 128 - 128 - 128 - 255 - 255 - 255 - 16 - 16 - 12 - 12 - 3 - 3 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 255 - 255 - 255 - 8 - 56 - 48 - 240 - 192 - 192 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 255 - 255 - 255 - 16 - 16 - 12 - 12 - 3 - 3 - 14 - 254 - 254 - 254 - 7 - 63 - 7 - 255 - 255 - 255 - 8 - 56 - 48 - 240 - 192 - 192 - 255 - 255 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 12 - 16 - 16 - 32 - 32 - 32 - 32 - 64 - 64 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 36 - 36 - 26 - 26 - 1 - 1 - 6 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 1 - 1 - 2 - 2 - 4 - 4 - 15 - 8 - 7 - 4 - 3 - 2 - 1 - 1 - 0 - 0 - 128 - 128 - 0 - 0 - 193 - 0 - 247 - 0 - 255 - 0 - 255 - 64 - 255 - 227 - 62 - 62 - 19 - 0 - 153 - 0 - 193 - 0 - 227 - 0 - 255 - 0 - 255 - 128 - 127 - 65 - 62 - 62 - 64 - 64 - 160 - 32 - 224 - 32 - 192 - 64 - 192 - 64 - 128 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 40 - 0 - 16 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 0 - 12 - 0 - 16 - 0 - 32 - 0 - 82 - 0 - 82 - 0 - 76 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 74 - 0 - 74 - 0 - 50 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 192 - 0 - 48 - 0 - 8 - 0 - 4 - 0 - 64 - 0 - 64 - 0 - 63 - 0 - 64 - 0 - 63 - 0 - 16 - 0 - 8 - 0 - 7 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 72 - 0 - 132 - 0 - 3 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 18 - 0 - 33 - 0 - 192 - 0 - 2 - 0 - 2 - 0 - 252 - 0 - 2 - 0 - 252 - 0 - 8 - 0 - 16 - 0 - 224 - 0 - 1 - 0 - 2 - 0 - 15 - 0 - 16 - 0 - 63 - 0 - 64 - 0 - 127 - 0 - 76 - 0 - 128 - 0 - 64 - 0 - 240 - 0 - 8 - 0 - 252 - 0 - 2 - 0 - 254 - 0 - 50 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 3 - 0 - 0 - 0 - 0 - 0 - 24 - 0 - 36 - 0 - 36 - 0 - 24 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 231 - 24 - 0 - 0 - 231 - 24 - 0 - 0 - 231 - 24 - 0 - 0 - 231 - 24 - 0 - 0 - 231 - 24 - 0 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 0 - 32 - 0 - 80 - 0 - 144 - 0 - 160 - 0 - 144 - 0 - 144 - 0 - 74 - 0 - 77 - 0 - 85 - 0 - 73 - 0 - 41 - 0 - 42 - 0 - 42 - 0 - 20 - 0 - 20 - 0 - 12 - 0 - 131 - 0 - 198 - 0 - 109 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 247 - 0 - 227 - 0 - 193 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 31 - 31 - 127 - 127 - 255 - 255 - 255 - 255 - 255 - 255 - 153 - 153 - 153 - 153 - 230 - 230 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 153 - 153 - 153 - 153 - 102 - 102 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 248 - 248 - 254 - 254 - 255 - 255 - 255 - 255 - 255 - 255 - 153 - 153 - 153 - 153 - 103 - 103 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 238 - 0 - 0 - 0 - 0 - 127 - 127 - 192 - 192 - 160 - 160 - 159 - 159 - 152 - 152 - 148 - 148 - 255 - 255 - 255 - 255 - 254 - 254 - 3 - 3 - 7 - 7 - 251 - 251 - 27 - 27 - 59 - 59 - 255 - 255 - 255 - 255 - 127 - 127 - 192 - 192 - 160 - 160 - 159 - 159 - 152 - 152 - 148 - 148 - 147 - 147 - 146 - 146 - 254 - 254 - 3 - 3 - 7 - 7 - 251 - 251 - 27 - 27 - 59 - 59 - 219 - 219 - 219 - 219 - 147 - 147 - 147 - 147 - 148 - 148 - 159 - 159 - 159 - 159 - 160 - 160 - 255 - 255 - 127 - 127 - 219 - 219 - 219 - 219 - 59 - 59 - 251 - 251 - 251 - 251 - 7 - 7 - 255 - 255 - 254 - 254 - 0 - 131 - 0 - 198 - 0 - 109 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 60 - 60 - 127 - 103 - 255 - 204 - 255 - 144 - 255 - 144 - 255 - 132 - 255 - 255 - 255 - 255 - 124 - 124 - 254 - 158 - 255 - 51 - 255 - 39 - 255 - 3 - 255 - 151 - 255 - 255 - 255 - 255 - 255 - 201 - 255 - 157 - 255 - 255 - 255 - 223 - 255 - 28 - 255 - 112 - 255 - 231 - 255 - 255 - 126 - 126 - 255 - 131 - 255 - 201 - 255 - 129 - 255 - 165 - 255 - 131 - 255 - 255 - 255 - 255 - 7 - 7 - 3 - 3 - 3 - 0 - 7 - 1 - 3 - 0 - 3 - 0 - 57 - 25 - 127 - 31 - 192 - 192 - 48 - 48 - 240 - 112 - 240 - 48 - 240 - 16 - 232 - 8 - 196 - 228 - 224 - 240 - 0 - 0 - 3 - 3 - 1 - 1 - 1 - 0 - 3 - 0 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 224 - 224 - 152 - 152 - 248 - 56 - 249 - 153 - 254 - 14 - 240 - 0 - 224 - 240 - 0 - 0 - 63 - 63 - 64 - 68 - 179 - 247 - 247 - 179 - 255 - 128 - 255 - 128 - 255 - 255 - 0 - 0 - 128 - 128 - 64 - 64 - 32 - 96 - 32 - 96 - 160 - 96 - 160 - 96 - 160 - 96 - 63 - 63 - 127 - 64 - 255 - 187 - 255 - 128 - 255 - 191 - 207 - 207 - 7 - 7 - 7 - 7 - 128 - 128 - 64 - 192 - 160 - 224 - 160 - 96 - 224 - 32 - 224 - 160 - 224 - 160 - 226 - 162 - 0 - 0 - 3 - 3 - 3 - 3 - 7 - 1 - 3 - 0 - 127 - 31 - 67 - 1 - 15 - 15 - 0 - 0 - 226 - 226 - 50 - 50 - 252 - 60 - 224 - 0 - 240 - 240 - 248 - 248 - 252 - 252 - 0 - 0 - 7 - 7 - 28 - 31 - 55 - 56 - 44 - 48 - 120 - 96 - 88 - 96 - 89 - 96 - 0 - 0 - 224 - 224 - 56 - 248 - 156 - 124 - 204 - 60 - 206 - 62 - 206 - 62 - 206 - 62 - 3 - 3 - 12 - 12 - 16 - 16 - 36 - 32 - 40 - 32 - 40 - 32 - 41 - 33 - 33 - 33 - 253 - 253 - 7 - 3 - 3 - 1 - 1 - 0 - 125 - 124 - 255 - 254 - 63 - 58 - 191 - 178 - 125 - 3 - 251 - 7 - 255 - 132 - 252 - 180 - 220 - 204 - 223 - 204 - 220 - 207 - 223 - 207 - 0 - 0 - 96 - 96 - 248 - 184 - 188 - 164 - 164 - 164 - 252 - 164 - 184 - 248 - 96 - 96 - 71 - 7 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 224 - 240 - 240 - 224 - 248 - 184 - 252 - 156 - 224 - 0 - 192 - 192 - 96 - 96 - 64 - 64 - 31 - 15 - 63 - 15 - 32 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 240 - 248 - 240 - 248 - 248 - 112 - 248 - 216 - 248 - 216 - 248 - 152 - 96 - 96 - 224 - 224 - 127 - 64 - 63 - 63 - 64 - 65 - 255 - 255 - 129 - 131 - 255 - 255 - 64 - 64 - 63 - 63 - 64 - 192 - 65 - 193 - 131 - 131 - 133 - 135 - 219 - 221 - 102 - 250 - 252 - 12 - 248 - 248 - 207 - 207 - 255 - 191 - 127 - 64 - 63 - 63 - 16 - 16 - 31 - 31 - 8 - 8 - 7 - 7 - 227 - 35 - 195 - 67 - 199 - 197 - 107 - 237 - 119 - 251 - 206 - 242 - 28 - 44 - 240 - 240 - 63 - 63 - 126 - 65 - 127 - 64 - 255 - 158 - 255 - 128 - 255 - 252 - 255 - 128 - 127 - 127 - 0 - 0 - 129 - 129 - 67 - 195 - 243 - 115 - 205 - 127 - 219 - 77 - 239 - 235 - 158 - 158 - 95 - 96 - 79 - 112 - 111 - 112 - 32 - 63 - 48 - 63 - 31 - 31 - 7 - 7 - 0 - 0 - 206 - 62 - 142 - 126 - 30 - 254 - 28 - 252 - 124 - 252 - 248 - 248 - 224 - 224 - 0 - 0 - 35 - 35 - 17 - 17 - 15 - 15 - 231 - 228 - 247 - 180 - 251 - 155 - 158 - 148 - 151 - 151 - 55 - 50 - 253 - 253 - 255 - 255 - 15 - 0 - 63 - 60 - 255 - 255 - 198 - 69 - 190 - 141 - 255 - 255 - 207 - 190 - 191 - 113 - 113 - 225 - 113 - 225 - 225 - 255 - 49 - 255 - 111 - 254 - 227 - 227 - 247 - 21 - 29 - 29 - 29 - 21 - 255 - 21 - 23 - 253 - 29 - 255 - 253 - 31 - 7 - 7 - 15 - 10 - 31 - 17 - 63 - 34 - 63 - 36 - 63 - 40 - 63 - 40 - 63 - 40 - 0 - 0 - 0 - 0 - 48 - 48 - 113 - 81 - 246 - 151 - 248 - 159 - 251 - 143 - 255 - 132 - 15 - 15 - 19 - 19 - 27 - 27 - 19 - 19 - 63 - 63 - 72 - 72 - 191 - 136 - 255 - 137 - 195 - 195 - 229 - 229 - 235 - 233 - 255 - 241 - 255 - 255 - 49 - 49 - 253 - 29 - 255 - 255 - 0 - 0 - 60 - 60 - 126 - 126 - 78 - 78 - 110 - 110 - 79 - 75 - 191 - 176 - 143 - 137 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 240 - 240 - 152 - 248 - 238 - 30 - 254 - 18 - 0 - 0 - 0 - 0 - 60 - 60 - 126 - 126 - 78 - 78 - 110 - 110 - 79 - 75 - 191 - 177 - 0 - 0 - 112 - 112 - 88 - 120 - 232 - 216 - 232 - 152 - 232 - 152 - 200 - 56 - 222 - 62 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 31 - 0 - 207 - 63 - 240 - 240 - 0 - 0 - 10 - 6 - 10 - 6 - 18 - 14 - 116 - 12 - 196 - 60 - 8 - 248 - 240 - 240 - 0 - 0 - 0 - 0 - 7 - 7 - 31 - 24 - 56 - 32 - 48 - 32 - 96 - 64 - 96 - 64 - 96 - 64 - 0 - 0 - 0 - 0 - 7 - 7 - 9 - 9 - 21 - 19 - 45 - 35 - 93 - 67 - 189 - 131 - 244 - 148 - 255 - 148 - 247 - 159 - 149 - 253 - 153 - 249 - 144 - 240 - 224 - 224 - 0 - 0 - 126 - 77 - 254 - 121 - 156 - 131 - 155 - 7 - 179 - 14 - 231 - 159 - 126 - 124 - 7 - 7 - 219 - 135 - 219 - 135 - 219 - 135 - 255 - 255 - 49 - 15 - 255 - 255 - 113 - 14 - 255 - 255 - 231 - 229 - 195 - 67 - 192 - 192 - 128 - 128 - 128 - 128 - 192 - 192 - 192 - 192 - 192 - 192 - 31 - 24 - 143 - 136 - 199 - 199 - 253 - 253 - 121 - 121 - 3 - 3 - 6 - 6 - 4 - 4 - 255 - 136 - 127 - 72 - 63 - 48 - 15 - 15 - 121 - 121 - 241 - 241 - 195 - 195 - 159 - 159 - 158 - 234 - 137 - 255 - 72 - 127 - 63 - 63 - 7 - 7 - 9 - 9 - 15 - 15 - 7 - 7 - 7 - 5 - 194 - 194 - 60 - 252 - 224 - 224 - 208 - 208 - 240 - 240 - 240 - 240 - 208 - 208 - 191 - 187 - 201 - 207 - 124 - 127 - 7 - 7 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 122 - 14 - 188 - 156 - 240 - 240 - 224 - 224 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 143 - 136 - 191 - 184 - 201 - 206 - 124 - 127 - 7 - 7 - 0 - 0 - 0 - 0 - 0 - 0 - 158 - 122 - 178 - 126 - 236 - 28 - 16 - 240 - 224 - 224 - 0 - 0 - 0 - 0 - 0 - 0 - 153 - 153 - 126 - 102 - 102 - 66 - 195 - 129 - 195 - 129 - 102 - 66 - 126 - 102 - 153 - 153 - 24 - 24 - 60 - 60 - 126 - 126 - 255 - 255 - 255 - 255 - 126 - 126 - 60 - 60 - 24 - 24 - 96 - 64 - 96 - 64 - 112 - 64 - 62 - 32 - 17 - 30 - 14 - 15 - 1 - 1 - 0 - 0 - 0 - 0 - 127 - 127 - 255 - 128 - 128 - 0 - 0 - 0 - 65 - 65 - 65 - 65 - 0 - 0 - 0 - 0 - 0 - 0 - 240 - 240 - 248 - 8 - 28 - 4 - 12 - 4 - 10 - 6 - 10 - 6 - 0 - 0 - 0 - 255 - 0 - 129 - 0 - 189 - 0 - 165 - 0 - 181 - 0 - 133 - 0 - 253 - 0 - 0 - 0 - 126 - 0 - 66 - 0 - 90 - 0 - 74 - 0 - 122 - 0 - 2 - 0 - 254 - 0 - 129 - 0 - 129 - 0 - 129 - 0 - 129 - 0 - 129 - 0 - 129 - 0 - 129 - 0 - 94 - 0 - 0 - 0 - 2 - 0 - 70 - 0 - 38 - 0 - 20 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 4 - 0 - 2 - 0 - 98 - 0 - 29 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 24 - 0 - 24 - 0 - 9 - 0 - 9 - 0 - 6 - 0 - 8 - 0 - 16 - 0 - 44 - 0 - 71 - 0 - 192 - 0 - 128 - 0 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 20 - 0 - 20 - 0 - 42 - 0 - 38 - 0 - 85 - 0 - 73 - 0 - 81 - 0 - 99 - 0 - 85 - 0 - 1 - 0 - 3 - 0 - 5 - 0 - 9 - 0 - 17 - 0 - 33 - 0 - 65 - 0 - 94 - 255 - 255 - 255 - 255 - 0 - 255 - 255 - 255 - 255 - 255 - 0 - 255 - 255 - 255 - 255 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 0 - 0 - 30 - 0 - 33 - 0 - 64 - 0 - 64 - 0 - 160 - 0 - 168 - 0 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 0 - 128 - 0 - 64 - 0 - 32 - 0 - 32 - 0 - 1 - 0 - 2 - 0 - 2 - 0 - 4 - 0 - 4 - 0 - 4 - 0 - 8 - 0 - 8 - 0 - 16 - 0 - 16 - 0 - 16 - 0 - 17 - 0 - 17 - 0 - 10 - 0 - 10 - 0 - 12 - 0 - 0 - 0 - 0 - 0 - 224 - 0 - 16 - 0 - 8 - 0 - 4 - 0 - 4 - 0 - 4 - 0 - 8 - 0 - 8 - 0 - 16 - 0 - 20 - 0 - 37 - 0 - 36 - 0 - 64 - 0 - 128 - 0 - 8 - 0 - 4 - 0 - 20 - 0 - 84 - 0 - 4 - 0 - 2 - 0 - 0 - 0 - 0 - 0 - 132 - 0 - 130 - 0 - 34 - 0 - 2 - 0 - 1 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 16 - 0 - 16 - 0 - 16 - 0 - 16 - 0 - 16 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 22 - 0 - 41 - 0 - 64 - 4 - 128 - 93 - 128 - 62 - 65 - 12 - 50 - 0 - 12 - 0 - 104 - 0 - 150 - 0 - 1 - 132 - 0 - 213 - 0 - 255 - 0 - 52 - 203 - 0 - 52 - 0 - 0 - 0 - 192 - 0 - 32 - 128 - 16 - 128 - 96 - 0 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 1 - 0 - 1 - 0 - 2 - 0 - 2 - 0 - 2 - 0 - 4 - 0 - 4 - 0 - 8 - 0 - 7 - 0 - 8 - 0 - 16 - 0 - 16 - 0 - 32 - 0 - 64 - 0 - 64 - 0 - 64 - 0 - 128 - 0 - 64 - 0 - 32 - 0 - 16 - 0 - 16 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 1 - 0 - 2 - 0 - 2 - 0 - 64 - 0 - 64 - 0 - 144 - 0 - 148 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 4 - 0 - 18 - 0 - 18 - 0 - 1 - 0 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 3 - 0 - 0 - 0 - 31 - 0 - 32 - 0 - 64 - 0 - 128 - 64 - 128 - 64 - 128 - 32 - 64 - 0 - 0 - 0 - 7 - 0 - 232 - 0 - 16 - 0 - 8 - 0 - 8 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 143 - 0 - 80 - 0 - 32 - 0 - 32 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 0 - 88 - 0 - 36 - 0 - 34 - 0 - 1 - 0 - 1 - 2 - 1 - 32 - 64 - 48 - 64 - 16 - 32 - 28 - 32 - 7 - 24 - 0 - 7 - 0 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 8 - 4 - 118 - 8 - 227 - 20 - 0 - 227 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 48 - 0 - 105 - 16 - 223 - 32 - 0 - 223 - 0 - 0 - 0 - 0 - 2 - 1 - 134 - 1 - 172 - 66 - 176 - 76 - 0 - 176 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 16 - 0 - 254 - 0 - 124 - 0 - 56 - 0 - 124 - 0 - 198 - 0 - 255 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 60 - 0 - 102 - 0 - 219 - 0 - 255 - 0 - 252 - 0 - 123 - 0 - 255 - 6 - 2 - 8 - 8 - 54 - 34 - 222 - 202 - 62 - 42 - 14 - 10 - 6 - 2 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 199 - 199 - 239 - 104 - 255 - 51 - 252 - 135 - 248 - 255 - 0 - 255 - 0 - 255 - 131 - 124 - 243 - 243 - 255 - 60 - 255 - 137 - 254 - 227 - 60 - 255 - 0 - 255 - 2 - 253 - 143 - 112 - 126 - 126 - 255 - 131 - 255 - 187 - 255 - 163 - 255 - 163 - 255 - 135 - 255 - 255 - 126 - 126 - 224 - 224 - 252 - 60 - 254 - 138 - 127 - 231 - 29 - 255 - 1 - 255 - 3 - 253 - 143 - 113 - 255 - 1 - 254 - 2 - 254 - 6 - 252 - 4 - 252 - 4 - 254 - 6 - 255 - 3 - 255 - 1 - 15 - 15 - 63 - 48 - 127 - 71 - 249 - 207 - 240 - 255 - 128 - 255 - 128 - 255 - 199 - 184 - 255 - 128 - 255 - 192 - 127 - 64 - 127 - 64 - 127 - 96 - 63 - 32 - 63 - 32 - 127 - 96 - 126 - 126 - 187 - 137 - 187 - 137 - 255 - 255 - 183 - 145 - 183 - 145 - 183 - 145 - 255 - 255 - 126 - 126 - 143 - 129 - 191 - 129 - 191 - 131 - 255 - 255 - 126 - 126 - 0 - 0 - 0 - 0 - 127 - 127 - 192 - 192 - 191 - 191 - 191 - 191 - 191 - 191 - 191 - 191 - 128 - 255 - 255 - 255 - 254 - 254 - 3 - 3 - 253 - 255 - 253 - 255 - 253 - 255 - 253 - 255 - 3 - 255 - 255 - 255 - 127 - 64 - 127 - 64 - 255 - 255 - 255 - 128 - 255 - 128 - 255 - 128 - 255 - 128 - 255 - 255 - 230 - 30 - 230 - 30 - 255 - 255 - 199 - 63 - 199 - 63 - 199 - 63 - 199 - 63 - 255 - 255 - 127 - 64 - 127 - 64 - 127 - 64 - 63 - 63 - 127 - 64 - 127 - 64 - 127 - 64 - 127 - 64 - 230 - 30 - 230 - 30 - 230 - 30 - 252 - 252 - 230 - 30 - 230 - 30 - 230 - 30 - 230 - 30 - 255 - 255 - 255 - 129 - 199 - 133 - 223 - 157 - 223 - 157 - 255 - 189 - 255 - 129 - 255 - 255 - 240 - 172 - 230 - 1 - 192 - 250 - 210 - 192 - 254 - 7 - 56 - 13 - 240 - 164 - 230 - 12 - 32 - 7 - 240 - 164 - 230 - 252 - 224 - 164 - 201 - 240 - 164 - 60 - 224 - 164 - 6 - 1 - 205 - 155 - 30 - 205 - 150 - 44 - 33 - 2 - 194 - 53 - 126 - 167 - 32 - 2 - 54 - 240 - 14 - 8 - 205 - 204 - 80 - 33 - 2 - 194 - 52 - 201 - 240 - 128 - 203 - 119 - 32 - 66 - 203 - 127 - 32 - 44 - 240 - 128 - 203 - 103 - 32 - 24 - 203 - 111 - 200 - 14 - 250 - 205 - 204 - 80 - 33 - 2 - 194 - 126 - 254 - 16 - 216 - 53 - 250 - 210 - 192 - 254 - 7 - 208 - 53 - 201 - 14 - 8 - 205 - 204 - 80 - 33 - 2 - 194 - 126 - 254 - 160 - 208 - 52 - 201 - 205 - 137 - 80 - 254 - 255 - 40 - 205 - 33 - 1 - 194 - 126 - 254 - 148 - 48 - 197 - 52 - 24 - 194 - 205 - 70 - 80 - 254 - 255 - 40 - 187 - 33 - 1 - 194 - 126 - 254 - 48 - 56 - 179 - 53 - 24 - 176 - 33 - 1 - 194 - 240 - 153 - 6 - 253 - 167 - 40 - 2 - 6 - 252 - 42 - 128 - 224 - 173 - 240 - 164 - 70 - 128 - 198 - 2 - 224 - 174 - 205 - 83 - 1 - 254 - 96 - 48 - 12 - 240 - 174 - 198 - 250 - 224 - 174 - 205 - 83 - 1 - 254 - 96 - 216 - 254 - 244 - 40 - 3 - 62 - 255 - 201 - 229 - 209 - 33 - 238 - 255 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 201 - 33 - 1 - 194 - 42 - 198 - 10 - 224 - 173 - 240 - 164 - 71 - 126 - 128 - 198 - 254 - 224 - 174 - 205 - 83 - 1 - 254 - 96 - 48 - 19 - 240 - 174 - 198 - 4 - 224 - 174 - 205 - 83 - 1 - 254 - 225 - 202 - 60 - 27 - 254 - 96 - 48 - 1 - 201 - 254 - 244 - 32 - 17 - 229 - 209 - 33 - 238 - 255 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 201 - 62 - 255 - 201 - 17 - 2 - 5 - 240 - 153 - 254 - 2 - 40 - 3 - 17 - 1 - 5 - 33 - 1 - 194 - 42 - 130 - 224 - 173 - 70 - 121 - 128 - 71 - 240 - 164 - 128 - 224 - 174 - 213 - 205 - 83 - 1 - 209 - 254 - 96 - 56 - 16 - 254 - 244 - 40 - 18 - 254 - 225 - 202 - 60 - 27 - 254 - 131 - 202 - 60 - 27 - 225 - 201 - 22 - 253 - 29 - 32 - 210 - 201 - 229 - 209 - 33 - 238 - 255 - 54 - 192 - 44 - 114 - 44 - 115 - 62 - 5 - 234 - 224 - 223 - 201 - 6 - 3 - 33 - 169 - 255 - 17 - 1 - 192 - 42 - 167 - 32 - 8 - 28 - 28 - 28 - 28 - 5 - 32 - 245 - 201 - 229 - 213 - 197 - 45 - 26 - 60 - 60 - 18 - 224 - 161 - 224 - 195 - 254 - 169 - 56 - 7 - 175 - 203 - 131 - 18 - 119 - 24 - 19 - 198 - 2 - 245 - 29 - 26 - 224 - 194 - 198 - 6 - 224 - 173 - 241 - 205 - 201 - 31 - 56 - 2 - 24 - 230 - 193 - 209 - 225 - 205 - 1 - 32 - 24 - 198 - 250 - 2 - 194 - 254 - 1 - 56 - 3 - 254 - 240 - 216 - 175 - 224 - 153 - 224 - 181 - 60 - 224 - 179 - 60 - 234 - 232 - 223 - 62 - 144 - 224 - 166 - 201 - 14 - 19 - 16 - 16 - 19 - 16 - 17 - 13 - 132 - 18 - 4 - 132 - 23 - 11 - 132 - 26 - 147 - 16 - 27 - 5 - 132 - 28 - 147 - 16 - 33 - 9 - 11 - 37 - 6 - 11 - 42 - 15 - 132 - 45 - 12 - 132 - 46 - 19 - 0 - 47 - 5 - 132 - 52 - 19 - 16 - 55 - 19 - 16 - 58 - 19 - 16 - 61 - 19 - 16 - 64 - 19 - 16 - 65 - 8 - 4 - 67 - 19 - 16 - 71 - 147 - 16 - 73 - 147 - 16 - 76 - 19 - 164 - 78 - 19 - 16 - 81 - 7 - 0 - 82 - 7 - 0 - 87 - 4 - 0 - 88 - 4 - 0 - 89 - 4 - 0 - 92 - 147 - 16 - 94 - 147 - 16 - 96 - 147 - 16 - 98 - 147 - 16 - 102 - 147 - 16 - 104 - 147 - 16 - 106 - 147 - 36 - 108 - 147 - 144 - 111 - 78 - 2 - 113 - 15 - 132 - 120 - 7 - 0 - 121 - 7 - 0 - 125 - 11 - 132 - 125 - 135 - 132 - 127 - 4 - 0 - 128 - 4 - 128 - 132 - 19 - 144 - 135 - 19 - 36 - 136 - 8 - 132 - 139 - 147 - 36 - 142 - 15 - 132 - 144 - 8 - 10 - 152 - 8 - 10 - 153 - 16 - 132 - 156 - 5 - 54 - 156 - 133 - 54 - 255 - 12 - 12 - 22 - 18 - 12 - 132 - 22 - 11 - 0 - 23 - 7 - 4 - 29 - 11 - 4 - 34 - 7 - 11 - 35 - 19 - 164 - 39 - 7 - 11 - 42 - 13 - 4 - 49 - 9 - 22 - 54 - 9 - 4 - 55 - 14 - 0 - 58 - 9 - 128 - 62 - 9 - 22 - 65 - 14 - 0 - 68 - 9 - 128 - 70 - 9 - 4 - 72 - 9 - 22 - 75 - 14 - 0 - 87 - 143 - 4 - 88 - 14 - 132 - 89 - 12 - 0 - 91 - 19 - 36 - 96 - 143 - 22 - 101 - 133 - 10 - 107 - 10 - 11 - 112 - 13 - 4 - 113 - 19 - 164 - 115 - 19 - 36 - 119 - 75 - 2 - 120 - 9 - 132 - 121 - 139 - 0 - 122 - 201 - 2 - 125 - 5 - 4 - 127 - 5 - 132 - 131 - 19 - 164 - 135 - 133 - 54 - 136 - 3 - 11 - 136 - 137 - 54 - 137 - 141 - 54 - 255 - 15 - 5 - 175 - 25 - 14 - 47 - 27 - 83 - 16 - 35 - 14 - 157 - 37 - 11 - 29 - 39 - 8 - 157 - 41 - 5 - 29 - 45 - 8 - 47 - 47 - 83 - 16 - 57 - 83 - 16 - 59 - 5 - 29 - 62 - 5 - 157 - 64 - 13 - 29 - 67 - 13 - 157 - 67 - 19 - 16 - 73 - 7 - 29 - 77 - 19 - 16 - 78 - 7 - 47 - 84 - 8 - 32 - 87 - 8 - 29 - 95 - 9 - 32 - 105 - 7 - 32 - 105 - 13 - 32 - 115 - 7 - 47 - 117 - 19 - 36 - 120 - 12 - 29 - 127 - 19 - 36 - 133 - 10 - 32 - 136 - 12 - 47 - 137 - 19 - 164 - 142 - 15 - 29 - 146 - 15 - 157 - 155 - 13 - 32 - 156 - 15 - 157 - 165 - 7 - 160 - 168 - 15 - 29 - 174 - 11 - 72 - 175 - 10 - 200 - 176 - 12 - 26 - 255 - 15 - 204 - 85 - 17 - 209 - 2 - 25 - 81 - 2 - 26 - 11 - 214 - 27 - 15 - 132 - 28 - 15 - 86 - 31 - 137 - 10 - 36 - 135 - 11 - 44 - 15 - 132 - 45 - 81 - 73 - 47 - 15 - 86 - 55 - 14 - 132 - 57 - 142 - 4 - 58 - 14 - 86 - 64 - 14 - 86 - 65 - 14 - 4 - 67 - 142 - 4 - 74 - 15 - 86 - 75 - 81 - 2 - 77 - 11 - 86 - 77 - 15 - 132 - 81 - 81 - 130 - 83 - 81 - 2 - 84 - 79 - 2 - 85 - 205 - 73 - 91 - 78 - 2 - 94 - 10 - 86 - 94 - 138 - 4 - 98 - 77 - 2 - 99 - 78 - 201 - 103 - 14 - 57 - 107 - 10 - 56 - 111 - 207 - 2 - 113 - 204 - 85 - 115 - 204 - 85 - 117 - 209 - 2 - 121 - 207 - 73 - 123 - 204 - 85 - 124 - 15 - 128 - 125 - 204 - 85 - 126 - 15 - 0 - 127 - 209 - 2 - 131 - 207 - 73 - 133 - 204 - 85 - 135 - 204 - 85 - 136 - 15 - 132 - 137 - 209 - 2 - 138 - 134 - 12 - 142 - 141 - 11 - 146 - 6 - 56 - 149 - 133 - 54 - 150 - 5 - 54 - 152 - 5 - 54 - 152 - 133 - 54 - 154 - 6 - 54 - 154 - 134 - 54 - 157 - 6 - 10 - 161 - 81 - 130 - 162 - 81 - 73 - 163 - 81 - 130 - 164 - 79 - 130 - 165 - 205 - 201 - 167 - 137 - 86 - 174 - 14 - 86 - 175 - 14 - 4 - 177 - 142 - 4 - 178 - 14 - 86 - 180 - 9 - 10 - 194 - 209 - 73 - 196 - 207 - 73 - 197 - 138 - 4 - 198 - 201 - 73 - 207 - 5 - 86 - 207 - 8 - 86 - 207 - 14 - 86 - 212 - 144 - 54 - 213 - 16 - 54 - 215 - 209 - 73 - 216 - 207 - 73 - 217 - 204 - 73 - 222 - 136 - 57 - 255 - 15 - 11 - 4 - 17 - 9 - 137 - 21 - 15 - 4 - 25 - 11 - 4 - 27 - 15 - 9 - 31 - 80 - 73 - 32 - 15 - 132 - 35 - 13 - 4 - 39 - 11 - 9 - 41 - 80 - 73 - 42 - 15 - 132 - 45 - 141 - 191 - 48 - 11 - 63 - 52 - 205 - 85 - 55 - 9 - 4 - 55 - 205 - 85 - 58 - 204 - 85 - 62 - 205 - 85 - 64 - 80 - 201 - 65 - 205 - 85 - 67 - 80 - 73 - 68 - 204 - 85 - 71 - 9 - 4 - 72 - 15 - 0 - 75 - 12 - 191 - 77 - 14 - 9 - 83 - 15 - 84 - 84 - 76 - 2 - 86 - 7 - 84 - 89 - 15 - 84 - 90 - 15 - 0 - 93 - 15 - 84 - 96 - 7 - 84 - 99 - 15 - 84 - 104 - 12 - 84 - 106 - 15 - 4 - 108 - 13 - 84 - 112 - 143 - 212 - 114 - 142 - 11 - 118 - 140 - 11 - 122 - 15 - 4 - 124 - 12 - 84 - 126 - 15 - 4 - 128 - 13 - 84 - 132 - 143 - 212 - 134 - 142 - 11 - 138 - 140 - 11 - 139 - 135 - 212 - 143 - 15 - 4 - 145 - 12 - 63 - 148 - 138 - 4 - 149 - 135 - 84 - 153 - 15 - 84 - 156 - 7 - 84 - 157 - 141 - 4 - 159 - 15 - 84 - 163 - 15 - 63 - 165 - 12 - 4 - 167 - 141 - 191 - 168 - 138 - 4 - 169 - 135 - 84 - 177 - 15 - 203 - 181 - 76 - 85 - 183 - 6 - 58 - 188 - 6 - 54 - 191 - 14 - 54 - 191 - 139 - 54 - 192 - 8 - 54 - 192 - 134 - 54 - 255 - 16 - 6 - 83 - 17 - 15 - 211 - 19 - 8 - 83 - 20 - 13 - 83 - 23 - 10 - 83 - 25 - 6 - 83 - 26 - 15 - 211 - 28 - 12 - 83 - 29 - 9 - 83 - 35 - 6 - 83 - 36 - 8 - 211 - 37 - 10 - 83 - 39 - 14 - 83 - 40 - 12 - 211 - 41 - 10 - 83 - 43 - 6 - 83 - 44 - 5 - 82 - 46 - 5 - 210 - 48 - 5 - 82 - 52 - 15 - 82 - 54 - 15 - 210 - 56 - 15 - 82 - 60 - 5 - 82 - 61 - 10 - 210 - 62 - 15 - 82 - 66 - 6 - 82 - 67 - 13 - 82 - 76 - 5 - 83 - 77 - 139 - 89 - 78 - 6 - 211 - 78 - 12 - 82 - 80 - 133 - 89 - 82 - 15 - 82 - 82 - 6 - 83 - 86 - 6 - 89 - 87 - 14 - 83 - 88 - 143 - 89 - 90 - 6 - 82 - 90 - 14 - 210 - 92 - 15 - 83 - 93 - 9 - 89 - 95 - 8 - 83 - 96 - 13 - 89 - 99 - 5 - 83 - 99 - 10 - 82 - 101 - 14 - 83 - 103 - 9 - 89 - 104 - 9 - 83 - 105 - 14 - 210 - 107 - 9 - 89 - 108 - 8 - 83 - 113 - 138 - 89 - 114 - 7 - 83 - 115 - 10 - 82 - 117 - 12 - 82 - 118 - 143 - 89 - 120 - 8 - 82 - 122 - 10 - 83 - 123 - 14 - 89 - 125 - 7 - 83 - 126 - 13 - 83 - 128 - 140 - 89 - 133 - 5 - 83 - 135 - 14 - 83 - 137 - 14 - 210 - 142 - 10 - 82 - 144 - 7 - 82 - 147 - 13 - 83 - 147 - 6 - 82 - 207 - 138 - 84 - 217 - 135 - 212 - 219 - 12 - 84 - 220 - 13 - 134 - 224 - 8 - 6 - 225 - 8 - 6 - 236 - 138 - 97 - 255 - 255 - 205 - 86 - 187 - 90 - 72 - 96 - 205 - 86 - 74 - 87 - 235 - 87 - 50 - 93 - 111 - 88 - 254 - 88 - 254 - 88 - 110 - 89 - 74 - 87 - 235 - 87 - 235 - 87 - 111 - 88 - 74 - 87 - 254 - 88 - 238 - 89 - 95 - 90 - 255 - 205 - 86 - 187 - 90 - 72 - 96 - 163 - 91 - 34 - 92 - 166 - 92 - 50 - 93 - 138 - 93 - 50 - 94 - 50 - 94 - 50 - 94 - 68 - 95 - 68 - 95 - 50 - 93 - 173 - 95 - 166 - 92 - 95 - 90 - 255 - 205 - 86 - 39 - 99 - 39 - 99 - 0 - 97 - 184 - 97 - 114 - 98 - 184 - 97 - 0 - 97 - 0 - 97 - 114 - 98 - 114 - 98 - 184 - 97 - 39 - 99 - 39 - 99 - 114 - 98 - 114 - 98 - 0 - 97 - 13 - 100 - 39 - 99 - 39 - 99 - 13 - 101 - 255 - 129 - 108 - 129 - 108 - 219 - 109 - 211 - 101 - 161 - 102 - 191 - 103 - 130 - 104 - 191 - 103 - 28 - 105 - 28 - 105 - 191 - 103 - 226 - 105 - 211 - 101 - 130 - 104 - 161 - 102 - 161 - 102 - 161 - 102 - 130 - 104 - 130 - 104 - 226 - 105 - 28 - 105 - 160 - 106 - 81 - 107 - 28 - 105 - 81 - 107 - 27 - 108 - 255 - 129 - 108 - 129 - 108 - 219 - 109 - 166 - 110 - 96 - 111 - 96 - 111 - 166 - 110 - 166 - 110 - 56 - 112 - 56 - 112 - 96 - 111 - 35 - 113 - 35 - 113 - 252 - 113 - 188 - 114 - 252 - 113 - 188 - 114 - 121 - 115 - 35 - 113 - 121 - 115 - 66 - 116 - 124 - 117 - 27 - 108 - 255 - 129 - 108 - 129 - 108 - 219 - 109 - 79 - 118 - 79 - 118 - 79 - 118 - 79 - 118 - 210 - 118 - 210 - 118 - 210 - 118 - 79 - 118 - 79 - 118 - 79 - 118 - 210 - 118 - 210 - 118 - 79 - 118 - 90 - 119 - 90 - 119 - 189 - 119 - 233 - 121 - 26 - 121 - 26 - 121 - 233 - 121 - 178 - 122 - 95 - 123 - 14 - 124 - 1 - 125 - 255 - 0 - 0 - 241 - 93 - 254 - 241 - 93 - 254 - 226 - 96 - 93 - 254 - 114 - 57 - 61 - 226 - 97 - 93 - 254 - 84 - 51 - 54 - 58 - 62 - 226 - 97 - 93 - 254 - 91 - 52 - 55 - 65 - 88 - 89 - 89 - 89 - 89 - 89 - 97 - 93 - 254 - 84 - 53 - 56 - 59 - 63 - 226 - 97 - 93 - 254 - 114 - 60 - 64 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 196 - 96 - 90 - 97 - 93 - 254 - 193 - 97 - 226 - 99 - 93 - 254 - 193 - 97 - 241 - 93 - 254 - 133 - 96 - 90 - 90 - 90 - 97 - 241 - 93 - 254 - 129 - 97 - 196 - 99 - 49 - 49 - 93 - 254 - 129 - 97 - 241 - 93 - 254 - 129 - 97 - 241 - 93 - 254 - 136 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 106 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 97 - 97 - 241 - 93 - 254 - 33 - 129 - 97 - 97 - 241 - 93 - 254 - 33 - 130 - 97 - 97 - 226 - 96 - 93 - 254 - 33 - 129 - 97 - 97 - 226 - 97 - 93 - 254 - 106 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 166 - 96 - 90 - 90 - 90 - 97 - 93 - 254 - 161 - 97 - 226 - 99 - 93 - 254 - 106 - 96 - 90 - 90 - 90 - 99 - 49 - 49 - 49 - 49 - 93 - 254 - 61 - 96 - 90 - 90 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 34 - 244 - 97 - 241 - 93 - 254 - 49 - 97 - 129 - 95 - 196 - 96 - 90 - 90 - 93 - 254 - 34 - 244 - 97 - 193 - 97 - 241 - 93 - 254 - 49 - 97 - 196 - 99 - 49 - 49 - 93 - 254 - 34 - 244 - 97 - 241 - 93 - 254 - 61 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 196 - 96 - 90 - 90 - 93 - 254 - 193 - 97 - 241 - 93 - 254 - 196 - 99 - 49 - 49 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 166 - 96 - 90 - 90 - 90 - 90 - 93 - 254 - 161 - 97 - 241 - 93 - 254 - 166 - 99 - 49 - 49 - 49 - 49 - 93 - 254 - 241 - 93 - 254 - 121 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 113 - 97 - 241 - 93 - 254 - 121 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 241 - 93 - 254 - 76 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 65 - 97 - 241 - 93 - 254 - 76 - 99 - 49 - 49 - 49 - 49 - 96 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 145 - 97 - 241 - 93 - 254 - 145 - 97 - 241 - 93 - 254 - 151 - 99 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 226 - 96 - 93 - 254 - 226 - 97 - 93 - 254 - 181 - 112 - 114 - 114 - 97 - 93 - 254 - 181 - 113 - 115 - 115 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 226 - 97 - 93 - 254 - 181 - 96 - 90 - 90 - 97 - 93 - 254 - 177 - 97 - 226 - 97 - 93 - 254 - 49 - 129 - 117 - 96 - 90 - 90 - 90 - 97 - 226 - 97 - 93 - 254 - 117 - 99 - 49 - 49 - 49 - 97 - 226 - 99 - 93 - 254 - 177 - 97 - 241 - 93 - 254 - 72 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 97 - 241 - 93 - 254 - 50 - 244 - 97 - 177 - 97 - 241 - 93 - 254 - 50 - 244 - 97 - 136 - 244 - 96 - 90 - 99 - 49 - 49 - 49 - 93 - 254 - 70 - 99 - 49 - 49 - 49 - 49 - 97 - 241 - 93 - 254 - 130 - 244 - 97 - 241 - 93 - 254 - 145 - 97 - 241 - 93 - 254 - 130 - 244 - 97 - 241 - 93 - 254 - 151 - 99 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 81 - 244 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 113 - 100 - 241 - 93 - 254 - 49 - 244 - 241 - 93 - 254 - 49 - 244 - 241 - 93 - 254 - 241 - 93 - 254 - 121 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 121 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 177 - 127 - 241 - 93 - 254 - 177 - 127 - 241 - 93 - 254 - 181 - 96 - 90 - 90 - 90 - 93 - 254 - 181 - 99 - 49 - 49 - 49 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 151 - 96 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 151 - 99 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 145 - 127 - 241 - 93 - 254 - 136 - 96 - 90 - 90 - 90 - 90 - 90 - 90 - 93 - 254 - 136 - 99 - 49 - 49 - 49 - 49 - 49 - 49 - 93 - 254 - 49 - 69 - 241 - 93 - 254 - 34 - 66 - 70 - 241 - 93 - 254 - 34 - 67 - 71 - 226 - 100 - 93 - 254 - 34 - 68 - 72 - 226 - 100 - 93 - 254 - 226 - 100 - 93 - 254 - 226 - 100 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 34 - 129 - 130 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 49 - 130 - 177 - 127 - 241 - 93 - 254 - 53 - 130 - 244 - 244 - 244 - 130 - 241 - 93 - 254 - 68 - 244 - 244 - 244 - 130 - 241 - 93 - 254 - 53 - 130 - 244 - 244 - 244 - 130 - 241 - 93 - 254 - 17 - 69 - 53 - 253 - 130 - 241 - 93 - 254 - 2 - 66 - 70 - 241 - 93 - 254 - 2 - 67 - 71 - 241 - 93 - 254 - 2 - 68 - 72 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 142 - 241 - 143 - 254 - 0 - 19 - 36 - 143 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 19 - 36 - 142 - 254 - 0 - 33 - 86 - 142 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 33 - 86 - 143 - 254 - 0 - 253 - 127 - 254 - 161 - 95 - 241 - 127 - 254 - 241 - 127 - 254 - 241 - 127 - 254 - 5 - 253 - 127 - 241 - 127 - 254 - 5 - 127 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 5 - 127 - 244 - 244 - 244 - 127 - 226 - 253 - 127 - 254 - 5 - 127 - 244 - 244 - 244 - 127 - 161 - 130 - 226 - 253 - 127 - 254 - 5 - 127 - 244 - 244 - 244 - 130 - 113 - 130 - 161 - 127 - 226 - 253 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 127 - 127 - 145 - 128 - 226 - 253 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 151 - 253 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 166 - 244 - 244 - 244 - 127 - 127 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 151 - 127 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 151 - 127 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 8 - 127 - 244 - 244 - 244 - 244 - 127 - 127 - 127 - 151 - 130 - 130 - 130 - 244 - 244 - 244 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 181 - 130 - 244 - 244 - 244 - 127 - 254 - 6 - 127 - 244 - 244 - 244 - 244 - 127 - 181 - 127 - 244 - 244 - 244 - 127 - 254 - 6 - 127 - 244 - 244 - 127 - 127 - 127 - 151 - 116 - 119 - 127 - 244 - 244 - 244 - 127 - 254 - 5 - 127 - 244 - 244 - 244 - 244 - 151 - 117 - 120 - 127 - 244 - 244 - 244 - 127 - 254 - 0 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 118 - 121 - 127 - 127 - 127 - 127 - 127 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 226 - 101 - 93 - 254 - 66 - 57 - 61 - 226 - 102 - 93 - 254 - 36 - 51 - 54 - 58 - 62 - 226 - 101 - 93 - 254 - 46 - 52 - 55 - 65 - 88 - 89 - 89 - 89 - 89 - 89 - 89 - 89 - 89 - 102 - 93 - 254 - 36 - 53 - 56 - 59 - 63 - 226 - 101 - 93 - 254 - 66 - 60 - 64 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 33 - 69 - 226 - 102 - 93 - 254 - 18 - 66 - 70 - 226 - 101 - 93 - 254 - 18 - 67 - 71 - 226 - 102 - 93 - 254 - 18 - 68 - 72 - 181 - 103 - 105 - 103 - 105 - 93 - 254 - 181 - 104 - 106 - 104 - 106 - 93 - 254 - 178 - 103 - 105 - 241 - 93 - 254 - 178 - 104 - 106 - 241 - 93 - 254 - 178 - 103 - 105 - 241 - 93 - 254 - 178 - 104 - 106 - 241 - 93 - 254 - 178 - 103 - 105 - 241 - 93 - 254 - 49 - 69 - 178 - 104 - 106 - 241 - 93 - 254 - 34 - 66 - 70 - 178 - 103 - 105 - 241 - 93 - 254 - 34 - 67 - 71 - 178 - 104 - 106 - 241 - 93 - 254 - 34 - 68 - 72 - 241 - 93 - 254 - 177 - 127 - 241 - 93 - 254 - 241 - 93 - 254 - 177 - 127 - 241 - 93 - 254 - 241 - 93 - 254 - 177 - 127 - 241 - 93 - 254 - 17 - 69 - 241 - 93 - 254 - 2 - 66 - 70 - 178 - 103 - 105 - 241 - 93 - 254 - 2 - 67 - 71 - 178 - 104 - 106 - 241 - 93 - 254 - 2 - 66 - 70 - 178 - 103 - 105 - 241 - 93 - 254 - 2 - 67 - 71 - 97 - 129 - 178 - 104 - 106 - 241 - 93 - 254 - 2 - 68 - 72 - 178 - 103 - 105 - 241 - 93 - 254 - 178 - 104 - 106 - 241 - 93 - 254 - 241 - 93 - 254 - 132 - 103 - 105 - 103 - 105 - 241 - 93 - 254 - 132 - 104 - 106 - 104 - 106 - 241 - 93 - 254 - 162 - 103 - 105 - 241 - 93 - 254 - 97 - 129 - 162 - 104 - 106 - 226 - 127 - 93 - 254 - 162 - 103 - 105 - 226 - 127 - 93 - 254 - 17 - 244 - 102 - 112 - 114 - 114 - 114 - 104 - 106 - 226 - 127 - 93 - 254 - 17 - 244 - 102 - 113 - 115 - 115 - 115 - 103 - 105 - 226 - 127 - 93 - 254 - 162 - 104 - 106 - 226 - 127 - 93 - 254 - 226 - 127 - 93 - 254 - 226 - 127 - 93 - 254 - 66 - 103 - 105 - 241 - 93 - 254 - 66 - 104 - 106 - 241 - 93 - 254 - 241 - 93 - 254 - 130 - 103 - 105 - 241 - 93 - 254 - 132 - 104 - 106 - 103 - 105 - 241 - 93 - 254 - 162 - 104 - 106 - 241 - 93 - 254 - 162 - 103 - 105 - 241 - 93 - 254 - 162 - 104 - 106 - 241 - 93 - 254 - 162 - 103 - 105 - 241 - 93 - 254 - 97 - 129 - 162 - 104 - 106 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 17 - 69 - 241 - 93 - 254 - 2 - 66 - 70 - 241 - 93 - 254 - 2 - 67 - 71 - 241 - 93 - 254 - 2 - 66 - 70 - 241 - 93 - 254 - 2 - 67 - 71 - 241 - 93 - 254 - 2 - 68 - 72 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 33 - 69 - 241 - 93 - 254 - 18 - 66 - 70 - 241 - 93 - 254 - 18 - 67 - 71 - 241 - 93 - 254 - 18 - 68 - 72 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 211 - 112 - 114 - 93 - 254 - 211 - 113 - 115 - 93 - 254 - 8 - 253 - 244 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 17 - 69 - 226 - 98 - 93 - 254 - 2 - 66 - 70 - 193 - 127 - 226 - 98 - 93 - 254 - 2 - 67 - 71 - 193 - 127 - 226 - 98 - 93 - 254 - 2 - 68 - 72 - 163 - 103 - 105 - 127 - 226 - 98 - 93 - 254 - 133 - 103 - 105 - 104 - 106 - 127 - 226 - 98 - 93 - 254 - 130 - 104 - 106 - 226 - 98 - 93 - 254 - 2 - 103 - 105 - 130 - 103 - 105 - 226 - 98 - 93 - 254 - 0 - 104 - 106 - 90 - 90 - 90 - 90 - 90 - 90 - 104 - 106 - 90 - 90 - 90 - 127 - 90 - 93 - 254 - 0 - 103 - 105 - 49 - 49 - 49 - 49 - 49 - 49 - 103 - 105 - 49 - 49 - 49 - 127 - 49 - 93 - 254 - 2 - 104 - 106 - 130 - 104 - 106 - 209 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 132 - 103 - 105 - 103 - 105 - 209 - 127 - 241 - 93 - 254 - 2 - 104 - 106 - 132 - 104 - 106 - 104 - 106 - 209 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 132 - 103 - 105 - 103 - 105 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 132 - 104 - 106 - 104 - 106 - 226 - 127 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 130 - 103 - 105 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 130 - 104 - 106 - 194 - 244 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 130 - 103 - 105 - 194 - 244 - 127 - 241 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 130 - 104 - 106 - 194 - 244 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 130 - 103 - 105 - 194 - 244 - 127 - 241 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 130 - 104 - 106 - 194 - 244 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 134 - 103 - 105 - 103 - 105 - 244 - 127 - 241 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 134 - 104 - 106 - 104 - 106 - 244 - 127 - 241 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 129 - 130 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 129 - 130 - 177 - 128 - 226 - 127 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 133 - 103 - 105 - 103 - 105 - 127 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 65 - 130 - 133 - 104 - 106 - 104 - 106 - 127 - 226 - 127 - 93 - 254 - 2 - 103 - 105 - 65 - 130 - 130 - 103 - 105 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 65 - 128 - 130 - 104 - 106 - 226 - 127 - 93 - 254 - 0 - 103 - 105 - 90 - 90 - 90 - 90 - 90 - 90 - 103 - 105 - 90 - 90 - 90 - 90 - 127 - 93 - 254 - 0 - 104 - 106 - 49 - 49 - 49 - 49 - 49 - 49 - 104 - 106 - 49 - 49 - 49 - 49 - 127 - 93 - 254 - 2 - 103 - 105 - 129 - 130 - 177 - 127 - 226 - 127 - 93 - 254 - 2 - 104 - 106 - 129 - 130 - 226 - 127 - 93 - 254 - 209 - 127 - 241 - 93 - 254 - 209 - 127 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 33 - 69 - 226 - 101 - 93 - 254 - 18 - 66 - 70 - 226 - 102 - 93 - 254 - 18 - 67 - 71 - 226 - 101 - 93 - 254 - 18 - 66 - 70 - 226 - 102 - 93 - 254 - 18 - 67 - 71 - 226 - 101 - 93 - 254 - 18 - 68 - 72 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 226 - 101 - 93 - 254 - 226 - 102 - 93 - 254 - 211 - 103 - 105 - 93 - 254 - 211 - 104 - 106 - 93 - 254 - 181 - 103 - 105 - 103 - 105 - 93 - 254 - 181 - 104 - 106 - 104 - 106 - 93 - 254 - 181 - 103 - 105 - 103 - 105 - 93 - 254 - 181 - 104 - 106 - 104 - 106 - 93 - 254 - 193 - 127 - 241 - 93 - 254 - 193 - 127 - 241 - 93 - 254 - 17 - 69 - 129 - 129 - 193 - 127 - 241 - 93 - 254 - 2 - 66 - 70 - 65 - 129 - 129 - 129 - 193 - 127 - 241 - 93 - 254 - 2 - 67 - 71 - 129 - 129 - 193 - 127 - 241 - 93 - 254 - 2 - 66 - 70 - 193 - 127 - 241 - 93 - 254 - 2 - 67 - 71 - 178 - 103 - 105 - 241 - 93 - 254 - 2 - 68 - 72 - 178 - 104 - 106 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 151 - 103 - 105 - 103 - 105 - 103 - 105 - 93 - 254 - 151 - 104 - 106 - 104 - 106 - 104 - 106 - 93 - 254 - 104 - 103 - 105 - 103 - 105 - 103 - 105 - 103 - 105 - 241 - 93 - 254 - 104 - 104 - 106 - 104 - 106 - 104 - 106 - 104 - 106 - 241 - 93 - 254 - 241 - 93 - 254 - 241 - 93 - 254 - 134 - 112 - 114 - 114 - 114 - 103 - 105 - 241 - 93 - 254 - 134 - 113 - 115 - 115 - 115 - 104 - 106 - 241 - 93 - 254 - 0 - 253 - 127 - 254 - 241 - 127 - 254 - 226 - 244 - 127 - 254 - 8 - 253 - 127 - 241 - 127 - 254 - 1 - 127 - 177 - 95 - 226 - 244 - 127 - 254 - 1 - 127 - 113 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 98 - 244 - 127 - 226 - 244 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 97 - 244 - 226 - 244 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 97 - 244 - 226 - 244 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 97 - 244 - 226 - 244 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 97 - 244 - 226 - 244 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 241 - 127 - 254 - 4 - 127 - 116 - 119 - 128 - 98 - 244 - 127 - 226 - 244 - 127 - 254 - 4 - 127 - 117 - 120 - 130 - 113 - 127 - 241 - 127 - 254 - 4 - 114 - 118 - 121 - 127 - 177 - 95 - 226 - 244 - 127 - 254 - 0 - 115 - 115 - 115 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 161 - 73 - 196 - 91 - 92 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 113 - 87 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 193 - 73 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 145 - 87 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 81 - 87 - 181 - 73 - 76 - 80 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 129 - 87 - 181 - 84 - 77 - 81 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 181 - 85 - 78 - 82 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 79 - 83 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 254 - 3 - 93 - 74 - 94 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 70 - 253 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 81 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 113 - 87 - 177 - 73 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 161 - 87 - 196 - 91 - 92 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 130 - 130 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 128 - 130 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 193 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 66 - 253 - 130 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 66 - 128 - 130 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 193 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 76 - 80 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 181 - 84 - 77 - 81 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 145 - 87 - 181 - 85 - 78 - 82 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 181 - 73 - 79 - 83 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 145 - 108 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 145 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 254 - 3 - 93 - 74 - 94 - 145 - 87 - 254 - 3 - 93 - 74 - 94 - 113 - 108 - 177 - 73 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 113 - 109 - 196 - 91 - 92 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 226 - 109 - 110 - 254 - 9 - 93 - 74 - 108 - 108 - 130 - 130 - 130 - 130 - 130 - 166 - 130 - 130 - 130 - 130 - 108 - 110 - 254 - 9 - 93 - 74 - 109 - 109 - 130 - 130 - 130 - 130 - 130 - 166 - 130 - 130 - 130 - 130 - 109 - 110 - 254 - 9 - 93 - 74 - 108 - 108 - 130 - 130 - 130 - 130 - 130 - 166 - 128 - 130 - 130 - 130 - 108 - 110 - 254 - 4 - 93 - 74 - 109 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 161 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 161 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 81 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 81 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 226 - 109 - 110 - 254 - 4 - 93 - 74 - 108 - 108 - 226 - 108 - 110 - 254 - 7 - 93 - 74 - 109 - 109 - 130 - 130 - 130 - 136 - 130 - 130 - 130 - 130 - 130 - 130 - 109 - 110 - 254 - 7 - 93 - 74 - 108 - 108 - 130 - 130 - 130 - 136 - 130 - 130 - 130 - 130 - 130 - 130 - 108 - 110 - 254 - 7 - 93 - 74 - 109 - 109 - 130 - 130 - 130 - 136 - 128 - 130 - 130 - 130 - 130 - 130 - 109 - 110 - 254 - 3 - 93 - 74 - 108 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 97 - 244 - 196 - 76 - 80 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 81 - 244 - 181 - 84 - 77 - 81 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 70 - 253 - 244 - 181 - 85 - 78 - 82 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 79 - 83 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 85 - 253 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 113 - 244 - 196 - 76 - 80 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 113 - 244 - 181 - 84 - 77 - 81 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 85 - 253 - 244 - 181 - 85 - 78 - 82 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 79 - 83 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 70 - 253 - 244 - 226 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 97 - 244 - 196 - 76 - 80 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 98 - 253 - 244 - 181 - 84 - 77 - 81 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 82 - 253 - 244 - 130 - 253 - 244 - 181 - 85 - 78 - 82 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 79 - 83 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 70 - 253 - 244 - 226 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 196 - 76 - 80 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 84 - 253 - 244 - 181 - 84 - 77 - 81 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 145 - 244 - 181 - 85 - 78 - 82 - 109 - 110 - 254 - 3 - 93 - 74 - 94 - 65 - 244 - 145 - 244 - 196 - 79 - 83 - 108 - 110 - 254 - 3 - 93 - 74 - 94 - 84 - 253 - 244 - 226 - 109 - 110 - 254 - 13 - 93 - 108 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 226 - 108 - 110 - 254 - 2 - 93 - 109 - 226 - 109 - 110 - 254 - 2 - 93 - 108 - 226 - 108 - 110 - 254 - 2 - 93 - 109 - 226 - 109 - 110 - 254 - 2 - 93 - 108 - 226 - 108 - 110 - 254 - 2 - 93 - 109 - 226 - 109 - 110 - 254 - 2 - 93 - 108 - 226 - 108 - 110 - 254 - 2 - 93 - 109 - 226 - 109 - 110 - 254 - 2 - 93 - 108 - 226 - 108 - 110 - 254 - 2 - 93 - 109 - 226 - 109 - 110 - 254 - 3 - 93 - 108 - 108 - 211 - 108 - 108 - 110 - 254 - 3 - 93 - 109 - 109 - 211 - 109 - 109 - 110 - 254 - 3 - 93 - 108 - 108 - 241 - 110 - 254 - 3 - 93 - 109 - 109 - 241 - 110 - 254 - 0 - 93 - 108 - 108 - 108 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 130 - 130 - 110 - 254 - 4 - 93 - 109 - 109 - 109 - 211 - 130 - 130 - 110 - 254 - 4 - 93 - 108 - 108 - 108 - 211 - 130 - 130 - 110 - 254 - 4 - 93 - 109 - 109 - 109 - 151 - 225 - 127 - 127 - 127 - 127 - 127 - 110 - 254 - 0 - 93 - 108 - 108 - 108 - 127 - 127 - 236 - 236 - 236 - 236 - 127 - 127 - 127 - 127 - 127 - 110 - 254 - 6 - 93 - 109 - 109 - 109 - 127 - 127 - 166 - 127 - 127 - 127 - 127 - 127 - 110 - 254 - 2 - 49 - 128 - 226 - 101 - 102 - 254 - 2 - 50 - 130 - 226 - 97 - 232 - 254 - 2 - 49 - 130 - 181 - 112 - 114 - 114 - 97 - 232 - 254 - 2 - 50 - 130 - 181 - 113 - 115 - 115 - 97 - 232 - 254 - 2 - 49 - 130 - 50 - 52 - 53 - 226 - 96 - 232 - 254 - 0 - 50 - 130 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 97 - 232 - 254 - 2 - 49 - 130 - 82 - 54 - 55 - 196 - 56 - 57 - 97 - 232 - 254 - 2 - 50 - 130 - 226 - 97 - 232 - 254 - 2 - 49 - 130 - 145 - 129 - 226 - 96 - 232 - 254 - 2 - 50 - 127 - 145 - 129 - 226 - 96 - 232 - 254 - 2 - 49 - 127 - 145 - 129 - 226 - 97 - 232 - 254 - 2 - 50 - 127 - 226 - 97 - 232 - 254 - 2 - 49 - 127 - 76 - 58 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 97 - 232 - 254 - 2 - 50 - 127 - 98 - 54 - 55 - 226 - 97 - 232 - 254 - 2 - 49 - 127 - 196 - 112 - 114 - 96 - 232 - 254 - 2 - 50 - 127 - 196 - 113 - 115 - 97 - 232 - 254 - 2 - 49 - 127 - 97 - 128 - 166 - 112 - 114 - 114 - 114 - 96 - 232 - 254 - 2 - 50 - 127 - 97 - 130 - 166 - 113 - 115 - 115 - 115 - 97 - 232 - 254 - 2 - 49 - 127 - 181 - 112 - 114 - 114 - 96 - 232 - 254 - 2 - 50 - 127 - 181 - 113 - 115 - 115 - 99 - 100 - 254 - 4 - 49 - 127 - 127 - 127 - 82 - 52 - 53 - 226 - 101 - 102 - 254 - 0 - 50 - 127 - 127 - 127 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 97 - 232 - 254 - 4 - 49 - 127 - 127 - 127 - 81 - 55 - 226 - 99 - 100 - 254 - 4 - 50 - 127 - 127 - 127 - 196 - 112 - 114 - 114 - 114 - 254 - 4 - 49 - 127 - 127 - 127 - 196 - 113 - 115 - 115 - 115 - 254 - 4 - 50 - 127 - 127 - 127 - 226 - 101 - 102 - 254 - 8 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 226 - 97 - 232 - 254 - 12 - 50 - 127 - 127 - 127 - 127 - 127 - 127 - 109 - 109 - 109 - 109 - 107 - 226 - 97 - 232 - 254 - 12 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 110 - 110 - 110 - 110 - 108 - 226 - 96 - 232 - 254 - 8 - 50 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 226 - 96 - 232 - 254 - 8 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 226 - 97 - 232 - 254 - 12 - 50 - 127 - 127 - 127 - 127 - 127 - 127 - 109 - 109 - 109 - 109 - 107 - 226 - 97 - 232 - 254 - 12 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 110 - 110 - 110 - 110 - 108 - 226 - 97 - 232 - 254 - 11 - 50 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 130 - 226 - 97 - 232 - 254 - 11 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 130 - 226 - 99 - 100 - 254 - 11 - 50 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 130 - 226 - 112 - 114 - 254 - 11 - 49 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 130 - 226 - 113 - 115 - 254 - 4 - 50 - 127 - 127 - 127 - 81 - 53 - 161 - 128 - 226 - 101 - 102 - 254 - 0 - 49 - 127 - 127 - 127 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 97 - 232 - 254 - 4 - 50 - 127 - 127 - 127 - 82 - 54 - 55 - 226 - 99 - 100 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 226 - 101 - 102 - 254 - 2 - 50 - 73 - 49 - 53 - 114 - 52 - 53 - 226 - 97 - 232 - 254 - 0 - 49 - 73 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 96 - 232 - 254 - 2 - 50 - 73 - 81 - 55 - 196 - 56 - 57 - 97 - 232 - 254 - 2 - 49 - 73 - 161 - 129 - 226 - 96 - 232 - 254 - 2 - 50 - 73 - 161 - 129 - 226 - 97 - 232 - 254 - 2 - 49 - 73 - 193 - 53 - 226 - 96 - 232 - 254 - 2 - 50 - 73 - 61 - 58 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 99 - 100 - 254 - 2 - 49 - 73 - 98 - 54 - 55 - 226 - 112 - 114 - 254 - 2 - 50 - 73 - 226 - 113 - 115 - 254 - 2 - 49 - 73 - 226 - 101 - 102 - 254 - 2 - 50 - 73 - 226 - 97 - 232 - 254 - 2 - 49 - 73 - 161 - 129 - 226 - 96 - 232 - 254 - 2 - 50 - 73 - 161 - 129 - 226 - 97 - 232 - 254 - 2 - 49 - 73 - 65 - 53 - 196 - 56 - 57 - 96 - 232 - 254 - 0 - 50 - 73 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 96 - 232 - 254 - 4 - 49 - 73 - 54 - 55 - 226 - 97 - 232 - 254 - 2 - 50 - 73 - 226 - 99 - 100 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 49 - 70 - 178 - 52 - 53 - 254 - 2 - 49 - 73 - 49 - 71 - 181 - 58 - 51 - 51 - 51 - 51 - 254 - 2 - 50 - 73 - 49 - 72 - 225 - 55 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 65 - 53 - 130 - 52 - 53 - 254 - 0 - 50 - 73 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 254 - 2 - 49 - 73 - 97 - 55 - 146 - 54 - 55 - 254 - 2 - 50 - 73 - 162 - 63 - 66 - 254 - 2 - 49 - 73 - 145 - 61 - 254 - 2 - 50 - 73 - 147 - 62 - 64 - 67 - 254 - 2 - 49 - 73 - 147 - 70 - 65 - 68 - 254 - 2 - 50 - 73 - 145 - 71 - 254 - 2 - 49 - 73 - 145 - 72 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 178 - 52 - 53 - 254 - 2 - 49 - 73 - 106 - 58 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 254 - 2 - 50 - 73 - 129 - 55 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 226 - 101 - 102 - 254 - 2 - 50 - 73 - 196 - 56 - 57 - 97 - 232 - 254 - 4 - 49 - 73 - 52 - 53 - 97 - 53 - 226 - 96 - 232 - 254 - 0 - 50 - 73 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 97 - 232 - 254 - 2 - 49 - 73 - 49 - 55 - 226 - 96 - 232 - 254 - 2 - 50 - 73 - 226 - 97 - 232 - 254 - 2 - 49 - 73 - 145 - 130 - 211 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 81 - 129 - 145 - 130 - 211 - 127 - 97 - 232 - 254 - 2 - 49 - 73 - 145 - 130 - 211 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 211 - 127 - 97 - 232 - 254 - 2 - 49 - 73 - 121 - 58 - 51 - 51 - 51 - 51 - 51 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 130 - 54 - 55 - 211 - 127 - 97 - 232 - 254 - 2 - 49 - 73 - 81 - 53 - 211 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 61 - 58 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 127 - 97 - 232 - 254 - 2 - 49 - 73 - 65 - 55 - 181 - 56 - 57 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 211 - 127 - 96 - 232 - 254 - 2 - 49 - 73 - 211 - 127 - 96 - 232 - 254 - 2 - 50 - 73 - 211 - 127 - 99 - 100 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 146 - 63 - 66 - 226 - 112 - 114 - 254 - 2 - 50 - 73 - 114 - 70 - 61 - 226 - 113 - 115 - 254 - 2 - 49 - 73 - 116 - 71 - 62 - 64 - 67 - 226 - 112 - 114 - 254 - 2 - 50 - 73 - 113 - 72 - 146 - 65 - 68 - 226 - 113 - 115 - 254 - 2 - 49 - 73 - 130 - 63 - 66 - 226 - 112 - 114 - 254 - 2 - 50 - 73 - 113 - 61 - 226 - 113 - 115 - 254 - 2 - 49 - 73 - 100 - 70 - 62 - 69 - 67 - 196 - 112 - 114 - 114 - 114 - 254 - 2 - 50 - 73 - 97 - 71 - 196 - 113 - 115 - 115 - 115 - 254 - 2 - 49 - 73 - 97 - 72 - 254 - 2 - 50 - 73 - 166 - 112 - 114 - 114 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 166 - 113 - 115 - 115 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 166 - 112 - 114 - 114 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 166 - 113 - 115 - 115 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 136 - 112 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 136 - 113 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 226 - 112 - 114 - 254 - 2 - 50 - 73 - 226 - 113 - 115 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 254 - 2 - 49 - 73 - 254 - 3 - 50 - 73 - 95 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 254 - 6 - 49 - 73 - 127 - 127 - 127 - 127 - 165 - 253 - 127 - 254 - 2 - 50 - 73 - 81 - 127 - 161 - 127 - 254 - 6 - 49 - 73 - 244 - 244 - 244 - 127 - 161 - 127 - 254 - 6 - 50 - 73 - 244 - 244 - 244 - 127 - 161 - 127 - 254 - 6 - 49 - 73 - 244 - 244 - 244 - 127 - 161 - 127 - 254 - 6 - 50 - 73 - 244 - 244 - 244 - 127 - 161 - 127 - 254 - 6 - 49 - 73 - 244 - 244 - 244 - 127 - 161 - 127 - 210 - 63 - 66 - 254 - 2 - 50 - 73 - 161 - 127 - 193 - 61 - 254 - 2 - 49 - 73 - 195 - 62 - 64 - 67 - 254 - 2 - 50 - 73 - 129 - 127 - 195 - 70 - 65 - 68 - 254 - 2 - 49 - 73 - 129 - 127 - 193 - 71 - 254 - 2 - 50 - 73 - 129 - 127 - 178 - 63 - 72 - 254 - 2 - 49 - 73 - 129 - 127 - 161 - 61 - 254 - 2 - 50 - 73 - 129 - 127 - 164 - 62 - 69 - 68 - 70 - 254 - 2 - 49 - 73 - 129 - 127 - 209 - 71 - 254 - 2 - 50 - 73 - 129 - 127 - 209 - 72 - 254 - 2 - 49 - 73 - 254 - 2 - 50 - 73 - 65 - 53 - 130 - 52 - 53 - 254 - 0 - 49 - 73 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 51 - 254 - 4 - 50 - 73 - 54 - 55 - 113 - 55 - 254 - 2 - 49 - 73 - 226 - 253 - 127 - 254 - 2 - 50 - 73 - 151 - 58 - 51 - 51 - 51 - 51 - 127 - 127 - 254 - 2 - 49 - 73 - 177 - 55 - 226 - 253 - 127 - 254 - 2 - 50 - 73 - 226 - 112 - 114 - 254 - 2 - 49 - 73 - 146 - 63 - 66 - 226 - 113 - 115 - 254 - 2 - 50 - 73 - 129 - 61 - 226 - 112 - 114 - 254 - 2 - 49 - 73 - 131 - 62 - 64 - 67 - 226 - 113 - 115 - 254 - 2 - 50 - 73 - 131 - 70 - 65 - 68 - 226 - 112 - 114 - 254 - 2 - 49 - 73 - 129 - 71 - 226 - 113 - 115 - 254 - 2 - 50 - 73 - 129 - 72 - 196 - 112 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 196 - 113 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 151 - 112 - 114 - 114 - 114 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 151 - 113 - 115 - 115 - 115 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 106 - 112 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 254 - 2 - 49 - 73 - 106 - 113 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 254 - 2 - 50 - 73 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 127 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 127 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 127 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 127 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 127 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 142 - 241 - 143 - 254 - 0 - 19 - 36 - 143 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 19 - 36 - 142 - 254 - 0 - 33 - 81 - 142 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 33 - 81 - 143 - 254 - 0 - 253 - 127 - 254 - 0 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 116 - 119 - 127 - 254 - 0 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 117 - 120 - 127 - 254 - 0 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 118 - 121 - 127 - 254 - 0 - 253 - 127 - 254 - 241 - 127 - 254 - 241 - 127 - 254 - 1 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 253 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 133 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 13 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 118 - 127 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 118 - 127 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 49 - 127 - 118 - 127 - 244 - 244 - 244 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 49 - 127 - 118 - 253 - 127 - 241 - 127 - 254 - 4 - 127 - 116 - 119 - 127 - 113 - 127 - 241 - 127 - 254 - 4 - 127 - 117 - 120 - 127 - 177 - 127 - 241 - 127 - 254 - 0 - 114 - 118 - 121 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 2 - 49 - 73 - 194 - 63 - 66 - 241 - 93 - 254 - 2 - 50 - 73 - 129 - 70 - 177 - 61 - 241 - 93 - 254 - 2 - 49 - 73 - 129 - 71 - 181 - 62 - 64 - 112 - 114 - 103 - 254 - 2 - 50 - 73 - 131 - 72 - 63 - 66 - 196 - 65 - 113 - 115 - 103 - 254 - 2 - 49 - 73 - 129 - 61 - 193 - 74 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 130 - 62 - 69 - 177 - 61 - 226 - 253 - 103 - 254 - 2 - 49 - 73 - 178 - 62 - 69 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 226 - 253 - 103 - 254 - 2 - 49 - 73 - 241 - 93 - 254 - 2 - 50 - 73 - 241 - 93 - 254 - 2 - 49 - 73 - 193 - 104 - 241 - 93 - 254 - 2 - 50 - 73 - 193 - 104 - 241 - 93 - 254 - 2 - 49 - 73 - 196 - 104 - 74 - 66 - 93 - 254 - 2 - 50 - 73 - 178 - 63 - 66 - 241 - 93 - 254 - 2 - 49 - 73 - 161 - 61 - 241 - 93 - 254 - 2 - 50 - 73 - 164 - 62 - 69 - 67 - 74 - 241 - 93 - 254 - 2 - 49 - 73 - 161 - 104 - 193 - 61 - 241 - 93 - 254 - 2 - 50 - 73 - 161 - 104 - 194 - 62 - 69 - 241 - 93 - 254 - 2 - 49 - 73 - 161 - 104 - 241 - 93 - 254 - 2 - 50 - 73 - 161 - 104 - 241 - 93 - 254 - 2 - 49 - 73 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 49 - 70 - 129 - 103 - 196 - 63 - 66 - 103 - 103 - 254 - 2 - 49 - 73 - 49 - 71 - 129 - 103 - 177 - 61 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 49 - 72 - 129 - 103 - 181 - 62 - 64 - 66 - 103 - 103 - 254 - 2 - 49 - 73 - 129 - 103 - 181 - 70 - 65 - 67 - 103 - 103 - 254 - 2 - 50 - 73 - 129 - 103 - 177 - 71 - 226 - 253 - 103 - 254 - 2 - 49 - 73 - 177 - 72 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 211 - 77 - 103 - 103 - 254 - 2 - 49 - 73 - 181 - 103 - 75 - 78 - 103 - 103 - 254 - 2 - 50 - 73 - 113 - 129 - 181 - 103 - 76 - 79 - 103 - 103 - 254 - 2 - 49 - 73 - 113 - 129 - 177 - 103 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 177 - 103 - 226 - 253 - 103 - 254 - 2 - 49 - 73 - 162 - 63 - 66 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 130 - 103 - 61 - 211 - 63 - 103 - 103 - 254 - 2 - 49 - 73 - 133 - 103 - 62 - 69 - 67 - 61 - 226 - 253 - 103 - 254 - 2 - 50 - 73 - 129 - 103 - 196 - 62 - 64 - 103 - 103 - 254 - 2 - 49 - 73 - 81 - 70 - 129 - 103 - 181 - 63 - 66 - 65 - 103 - 103 - 254 - 2 - 50 - 73 - 81 - 71 - 161 - 61 - 226 - 253 - 103 - 254 - 2 - 49 - 73 - 81 - 72 - 162 - 62 - 69 - 241 - 93 - 254 - 2 - 50 - 73 - 241 - 93 - 254 - 2 - 49 - 103 - 166 - 253 - 103 - 254 - 8 - 50 - 103 - 103 - 103 - 130 - 130 - 130 - 130 - 166 - 253 - 103 - 254 - 2 - 49 - 103 - 113 - 103 - 241 - 103 - 254 - 2 - 50 - 103 - 113 - 103 - 241 - 103 - 254 - 2 - 49 - 103 - 114 - 253 - 103 - 241 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 118 - 244 - 103 - 109 - 109 - 109 - 107 - 241 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 133 - 103 - 110 - 110 - 110 - 108 - 241 - 103 - 254 - 2 - 50 - 103 - 65 - 128 - 114 - 244 - 103 - 241 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 129 - 103 - 211 - 112 - 114 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 114 - 244 - 103 - 211 - 113 - 115 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 129 - 103 - 241 - 103 - 254 - 2 - 50 - 103 - 65 - 128 - 118 - 244 - 103 - 109 - 109 - 109 - 107 - 241 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 133 - 103 - 110 - 110 - 110 - 108 - 241 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 114 - 244 - 103 - 241 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 129 - 103 - 211 - 112 - 109 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 114 - 244 - 103 - 211 - 113 - 110 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 129 - 103 - 226 - 253 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 117 - 103 - 103 - 109 - 109 - 107 - 226 - 253 - 103 - 254 - 2 - 49 - 103 - 65 - 129 - 117 - 103 - 103 - 110 - 110 - 108 - 226 - 253 - 103 - 254 - 2 - 50 - 103 - 65 - 130 - 226 - 253 - 103 - 254 - 5 - 49 - 127 - 105 - 127 - 105 - 226 - 105 - 127 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 211 - 111 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 196 - 112 - 114 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 196 - 113 - 115 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 151 - 112 - 114 - 114 - 114 - 114 - 105 - 106 - 254 - 6 - 50 - 105 - 106 - 105 - 106 - 111 - 151 - 113 - 115 - 115 - 115 - 115 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 211 - 111 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 127 - 106 - 127 - 106 - 226 - 106 - 127 - 254 - 5 - 49 - 127 - 105 - 127 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 4 - 49 - 106 - 105 - 106 - 226 - 105 - 93 - 254 - 4 - 50 - 105 - 106 - 105 - 226 - 106 - 105 - 254 - 4 - 49 - 106 - 105 - 106 - 226 - 105 - 106 - 254 - 4 - 50 - 105 - 106 - 105 - 161 - 129 - 226 - 106 - 105 - 254 - 4 - 49 - 106 - 105 - 106 - 226 - 105 - 106 - 254 - 4 - 50 - 105 - 106 - 105 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 4 - 49 - 106 - 105 - 106 - 226 - 105 - 106 - 254 - 4 - 50 - 105 - 106 - 105 - 177 - 111 - 226 - 106 - 105 - 254 - 4 - 49 - 106 - 105 - 106 - 226 - 105 - 106 - 254 - 4 - 50 - 105 - 106 - 105 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 106 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 105 - 106 - 254 - 5 - 50 - 127 - 106 - 127 - 106 - 226 - 106 - 127 - 254 - 5 - 49 - 127 - 105 - 127 - 105 - 209 - 127 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 209 - 127 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 209 - 111 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 209 - 127 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 6 - 49 - 106 - 105 - 106 - 105 - 111 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 127 - 106 - 127 - 106 - 241 - 93 - 254 - 5 - 49 - 127 - 105 - 127 - 105 - 113 - 95 - 196 - 253 - 105 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 196 - 253 - 106 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 253 - 105 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 253 - 105 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 226 - 253 - 105 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 113 - 244 - 181 - 253 - 105 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 113 - 244 - 181 - 253 - 106 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 241 - 93 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 196 - 253 - 105 - 254 - 6 - 49 - 106 - 105 - 106 - 105 - 111 - 196 - 253 - 106 - 254 - 5 - 50 - 105 - 106 - 105 - 106 - 151 - 253 - 105 - 254 - 5 - 49 - 106 - 105 - 106 - 105 - 151 - 253 - 106 - 254 - 5 - 50 - 127 - 106 - 127 - 106 - 241 - 93 - 254 - 11 - 49 - 127 - 105 - 127 - 105 - 127 - 105 - 127 - 105 - 127 - 105 - 226 - 253 - 105 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 226 - 253 - 105 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 226 - 253 - 105 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 253 - 106 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 127 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 127 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 127 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 127 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 127 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 241 - 93 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 105 - 93 - 254 - 11 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 226 - 106 - 105 - 254 - 11 - 50 - 127 - 106 - 127 - 106 - 127 - 106 - 127 - 106 - 127 - 106 - 226 - 105 - 106 - 254 - 11 - 49 - 127 - 105 - 127 - 105 - 127 - 105 - 127 - 105 - 127 - 105 - 226 - 106 - 105 - 254 - 11 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 226 - 105 - 106 - 254 - 12 - 49 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 109 - 107 - 226 - 106 - 105 - 254 - 12 - 50 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 106 - 105 - 110 - 108 - 226 - 105 - 106 - 254 - 11 - 49 - 106 - 127 - 106 - 127 - 106 - 127 - 106 - 127 - 106 - 127 - 226 - 106 - 105 - 254 - 2 - 50 - 105 - 226 - 127 - 106 - 254 - 2 - 49 - 106 - 241 - 93 - 254 - 2 - 50 - 105 - 241 - 93 - 254 - 2 - 49 - 106 - 65 - 105 - 241 - 93 - 254 - 2 - 50 - 105 - 65 - 106 - 241 - 93 - 254 - 2 - 49 - 106 - 65 - 105 - 241 - 93 - 254 - 2 - 50 - 105 - 65 - 106 - 241 - 93 - 254 - 2 - 49 - 106 - 65 - 105 - 241 - 93 - 254 - 2 - 50 - 105 - 65 - 106 - 241 - 93 - 254 - 2 - 49 - 106 - 65 - 105 - 241 - 93 - 254 - 2 - 50 - 105 - 76 - 106 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 2 - 49 - 106 - 254 - 11 - 50 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 254 - 11 - 49 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 241 - 105 - 254 - 1 - 50 - 241 - 106 - 254 - 2 - 82 - 86 - 241 - 82 - 254 - 2 - 83 - 87 - 241 - 83 - 254 - 3 - 84 - 82 - 86 - 211 - 82 - 86 - 84 - 254 - 3 - 85 - 83 - 87 - 211 - 83 - 87 - 85 - 254 - 18 - 85 - 89 - 66 - 82 - 86 - 210 - 84 - 88 - 254 - 2 - 82 - 86 - 66 - 85 - 89 - 211 - 85 - 89 - 82 - 254 - 2 - 83 - 87 - 241 - 83 - 254 - 2 - 84 - 88 - 241 - 84 - 254 - 2 - 85 - 89 - 226 - 82 - 85 - 254 - 226 - 83 - 87 - 254 - 18 - 82 - 86 - 226 - 85 - 89 - 254 - 18 - 84 - 88 - 254 - 3 - 82 - 85 - 89 - 194 - 82 - 86 - 254 - 2 - 83 - 87 - 194 - 85 - 89 - 254 - 2 - 84 - 88 - 49 - 128 - 241 - 82 - 254 - 2 - 85 - 89 - 241 - 83 - 254 - 18 - 82 - 86 - 241 - 84 - 254 - 18 - 84 - 88 - 241 - 85 - 254 - 18 - 85 - 89 - 254 - 254 - 254 - 18 - 82 - 86 - 254 - 18 - 84 - 87 - 130 - 128 - 130 - 241 - 82 - 254 - 3 - 82 - 85 - 89 - 65 - 244 - 241 - 84 - 254 - 2 - 83 - 87 - 241 - 85 - 254 - 2 - 84 - 88 - 65 - 244 - 194 - 82 - 86 - 254 - 2 - 85 - 89 - 196 - 85 - 89 - 82 - 86 - 254 - 226 - 83 - 87 - 254 - 18 - 82 - 86 - 226 - 84 - 88 - 254 - 18 - 85 - 89 - 177 - 244 - 226 - 85 - 89 - 254 - 50 - 130 - 128 - 254 - 177 - 244 - 226 - 82 - 86 - 254 - 2 - 82 - 86 - 226 - 83 - 87 - 254 - 2 - 83 - 87 - 226 - 85 - 82 - 254 - 3 - 85 - 82 - 86 - 241 - 83 - 254 - 18 - 83 - 87 - 178 - 253 - 130 - 241 - 84 - 254 - 18 - 84 - 88 - 66 - 82 - 86 - 241 - 85 - 254 - 18 - 85 - 89 - 66 - 85 - 89 - 226 - 82 - 86 - 254 - 129 - 244 - 226 - 84 - 87 - 254 - 226 - 85 - 89 - 254 - 5 - 253 - 111 - 181 - 253 - 111 - 254 - 177 - 111 - 254 - 2 - 82 - 86 - 177 - 111 - 254 - 2 - 83 - 87 - 177 - 111 - 241 - 82 - 254 - 3 - 84 - 88 - 86 - 177 - 111 - 241 - 83 - 254 - 3 - 85 - 89 - 87 - 177 - 111 - 241 - 84 - 254 - 18 - 85 - 89 - 102 - 253 - 111 - 241 - 85 - 254 - 254 - 254 - 254 - 226 - 82 - 86 - 254 - 2 - 82 - 86 - 226 - 85 - 89 - 254 - 2 - 83 - 87 - 254 - 8 - 253 - 111 - 254 - 2 - 85 - 89 - 254 - 226 - 82 - 86 - 254 - 211 - 82 - 83 - 87 - 254 - 211 - 83 - 85 - 89 - 254 - 210 - 84 - 88 - 254 - 210 - 85 - 89 - 254 - 7 - 253 - 111 - 166 - 253 - 111 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 3 - 59 - 91 - 111 - 65 - 244 - 97 - 244 - 129 - 244 - 161 - 244 - 193 - 244 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 211 - 244 - 111 - 59 - 254 - 0 - 59 - 91 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 130 - 130 - 111 - 59 - 254 - 3 - 59 - 91 - 86 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 87 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 89 - 65 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 145 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 9 - 253 - 111 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 129 - 111 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 132 - 253 - 111 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 51 - 253 - 111 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 49 - 111 - 81 - 111 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 49 - 111 - 91 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 59 - 254 - 2 - 111 - 91 - 49 - 111 - 226 - 92 - 59 - 254 - 2 - 111 - 91 - 61 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 111 - 59 - 254 - 2 - 111 - 91 - 226 - 111 - 59 - 254 - 2 - 111 - 91 - 226 - 111 - 59 - 254 - 12 - 253 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 129 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 81 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 86 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 87 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 88 - 145 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 3 - 59 - 91 - 89 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 82 - 82 - 86 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 82 - 83 - 87 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 49 - 90 - 82 - 85 - 89 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 113 - 90 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 177 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 162 - 94 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 147 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 49 - 90 - 131 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 115 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 99 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 83 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 67 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 2 - 59 - 91 - 51 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 5 - 59 - 91 - 94 - 111 - 111 - 226 - 111 - 59 - 254 - 4 - 59 - 91 - 111 - 111 - 226 - 253 - 111 - 254 - 3 - 59 - 111 - 111 - 226 - 105 - 111 - 254 - 2 - 253 - 111 - 226 - 106 - 111 - 254 - 1 - 111 - 129 - 111 - 226 - 105 - 111 - 254 - 1 - 111 - 226 - 106 - 111 - 254 - 1 - 111 - 226 - 105 - 111 - 254 - 1 - 111 - 226 - 106 - 111 - 254 - 1 - 111 - 226 - 105 - 111 - 254 - 1 - 111 - 226 - 106 - 111 - 254 - 1 - 111 - 226 - 105 - 111 - 254 - 1 - 111 - 226 - 106 - 111 - 254 - 6 - 111 - 105 - 105 - 105 - 105 - 105 - 181 - 105 - 105 - 105 - 105 - 111 - 254 - 0 - 111 - 106 - 106 - 106 - 106 - 106 - 128 - 130 - 130 - 130 - 130 - 106 - 106 - 106 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 100 - 253 - 221 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 76 - 128 - 130 - 222 - 222 - 222 - 222 - 130 - 130 - 130 - 130 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 81 - 111 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 161 - 111 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 12 - 111 - 105 - 109 - 109 - 109 - 109 - 109 - 109 - 109 - 109 - 109 - 107 - 226 - 105 - 111 - 254 - 12 - 111 - 106 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 108 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 115 - 253 - 244 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 115 - 253 - 244 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 115 - 253 - 244 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 115 - 253 - 244 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 115 - 253 - 244 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 115 - 253 - 244 - 226 - 106 - 111 - 254 - 7 - 111 - 105 - 109 - 109 - 109 - 109 - 107 - 166 - 105 - 105 - 105 - 105 - 105 - 111 - 254 - 7 - 111 - 106 - 110 - 110 - 110 - 110 - 108 - 166 - 106 - 106 - 106 - 106 - 106 - 111 - 254 - 7 - 111 - 105 - 109 - 109 - 109 - 109 - 107 - 166 - 105 - 105 - 105 - 105 - 105 - 111 - 254 - 7 - 111 - 106 - 110 - 110 - 110 - 110 - 108 - 166 - 106 - 106 - 106 - 106 - 106 - 111 - 254 - 7 - 111 - 105 - 105 - 105 - 105 - 105 - 105 - 166 - 105 - 105 - 105 - 105 - 105 - 111 - 254 - 7 - 111 - 106 - 106 - 106 - 106 - 106 - 106 - 166 - 106 - 106 - 106 - 106 - 106 - 111 - 254 - 0 - 111 - 105 - 111 - 111 - 111 - 111 - 111 - 130 - 130 - 130 - 111 - 111 - 111 - 111 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 0 - 111 - 105 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 95 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 2 - 111 - 105 - 226 - 105 - 111 - 254 - 2 - 111 - 106 - 226 - 106 - 111 - 254 - 0 - 111 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 105 - 111 - 254 - 0 - 111 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 106 - 111 - 254 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 146 - 97 - 183 - 97 - 218 - 97 - 146 - 97 - 183 - 97 - 218 - 97 - 146 - 97 - 183 - 97 - 218 - 97 - 146 - 97 - 183 - 97 - 218 - 97 - 144 - 97 - 2 - 96 - 115 - 96 - 254 - 96 - 2 - 96 - 115 - 96 - 254 - 96 - 2 - 96 - 115 - 96 - 254 - 96 - 2 - 96 - 115 - 96 - 254 - 96 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 7 - 7 - 15 - 14 - 31 - 27 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 240 - 240 - 224 - 64 - 240 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 3 - 3 - 7 - 7 - 15 - 13 - 15 - 12 - 0 - 0 - 0 - 0 - 0 - 0 - 192 - 192 - 248 - 248 - 240 - 32 - 248 - 128 - 248 - 48 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 7 - 7 - 15 - 14 - 31 - 27 - 31 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 240 - 240 - 224 - 64 - 240 - 0 - 240 - 96 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 2 - 15 - 9 - 13 - 0 - 24 - 16 - 12 - 8 - 3 - 3 - 60 - 63 - 67 - 124 - 156 - 224 - 176 - 192 - 160 - 192 - 144 - 224 - 80 - 96 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 7 - 7 - 15 - 14 - 31 - 27 - 0 - 0 - 0 - 0 - 0 - 0 - 14 - 0 - 142 - 128 - 252 - 252 - 236 - 76 - 252 - 12 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 31 - 31 - 15 - 4 - 31 - 2 - 15 - 12 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 224 - 224 - 240 - 240 - 248 - 160 - 248 - 32 - 7 - 7 - 15 - 15 - 15 - 15 - 31 - 31 - 31 - 30 - 63 - 62 - 63 - 62 - 63 - 63 - 224 - 224 - 240 - 240 - 240 - 208 - 224 - 0 - 240 - 64 - 224 - 0 - 224 - 0 - 192 - 64 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 28 - 28 - 62 - 62 - 127 - 127 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 23 - 7 - 63 - 10 - 63 - 28 - 31 - 27 - 31 - 24 - 7 - 0 - 13 - 15 - 29 - 31 - 28 - 5 - 24 - 7 - 6 - 6 - 14 - 14 - 240 - 96 - 224 - 0 - 128 - 192 - 176 - 240 - 56 - 176 - 24 - 224 - 96 - 96 - 112 - 112 - 3 - 0 - 15 - 15 - 63 - 15 - 55 - 7 - 0 - 15 - 16 - 31 - 24 - 28 - 14 - 14 - 240 - 0 - 64 - 192 - 124 - 224 - 60 - 112 - 8 - 200 - 24 - 248 - 24 - 120 - 0 - 0 - 7 - 0 - 14 - 15 - 30 - 31 - 30 - 24 - 4 - 27 - 0 - 15 - 7 - 7 - 7 - 7 - 224 - 0 - 128 - 128 - 192 - 192 - 0 - 160 - 0 - 224 - 192 - 192 - 224 - 224 - 128 - 128 - 31 - 24 - 7 - 0 - 15 - 15 - 31 - 15 - 48 - 15 - 16 - 31 - 49 - 61 - 33 - 33 - 240 - 96 - 224 - 0 - 88 - 192 - 248 - 192 - 0 - 224 - 0 - 192 - 128 - 128 - 192 - 192 - 31 - 24 - 7 - 0 - 29 - 31 - 124 - 63 - 96 - 14 - 80 - 31 - 56 - 63 - 32 - 38 - 248 - 120 - 240 - 16 - 160 - 224 - 196 - 228 - 12 - 220 - 12 - 252 - 0 - 192 - 0 - 0 - 31 - 24 - 31 - 31 - 31 - 31 - 14 - 15 - 1 - 3 - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 224 - 192 - 48 - 128 - 112 - 224 - 240 - 192 - 224 - 168 - 232 - 120 - 248 - 112 - 112 - 60 - 63 - 59 - 60 - 18 - 17 - 3 - 4 - 1 - 14 - 1 - 30 - 0 - 63 - 0 - 127 - 64 - 160 - 0 - 224 - 0 - 192 - 0 - 224 - 128 - 96 - 128 - 112 - 0 - 240 - 0 - 240 - 255 - 255 - 127 - 127 - 62 - 62 - 28 - 28 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 15 - 8 - 13 - 14 - 33 - 47 - 56 - 61 - 56 - 63 - 0 - 7 - 0 - 0 - 0 - 0 - 7 - 7 - 15 - 15 - 15 - 12 - 31 - 22 - 63 - 48 - 63 - 48 - 15 - 8 - 11 - 15 - 192 - 192 - 240 - 240 - 224 - 128 - 248 - 0 - 248 - 64 - 240 - 240 - 224 - 0 - 128 - 192 - 0 - 0 - 3 - 3 - 7 - 7 - 7 - 6 - 15 - 11 - 31 - 24 - 31 - 24 - 7 - 4 - 0 - 0 - 224 - 224 - 248 - 248 - 240 - 64 - 252 - 0 - 252 - 32 - 248 - 120 - 240 - 0 - 7 - 7 - 15 - 15 - 15 - 12 - 31 - 22 - 63 - 48 - 63 - 48 - 15 - 8 - 31 - 31 - 192 - 192 - 240 - 240 - 224 - 128 - 248 - 0 - 248 - 64 - 240 - 240 - 224 - 0 - 64 - 192 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 28 - 28 - 34 - 62 - 73 - 115 - 177 - 193 - 89 - 99 - 34 - 62 - 28 - 28 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 7 - 15 - 15 - 15 - 12 - 31 - 22 - 63 - 48 - 63 - 48 - 15 - 12 - 14 - 0 - 222 - 200 - 254 - 240 - 254 - 158 - 254 - 6 - 252 - 68 - 252 - 252 - 248 - 24 - 7 - 7 - 31 - 31 - 15 - 2 - 31 - 0 - 63 - 6 - 63 - 12 - 15 - 1 - 29 - 31 - 128 - 128 - 248 - 240 - 252 - 96 - 204 - 176 - 192 - 32 - 192 - 240 - 224 - 56 - 224 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 7 - 143 - 136 - 216 - 208 - 120 - 120 - 110 - 238 - 251 - 227 - 255 - 96 - 0 - 0 - 3 - 3 - 7 - 7 - 15 - 15 - 31 - 31 - 31 - 30 - 63 - 62 - 63 - 62 - 0 - 0 - 224 - 224 - 240 - 240 - 240 - 208 - 224 - 0 - 240 - 64 - 224 - 0 - 224 - 0 - 27 - 31 - 59 - 63 - 56 - 59 - 56 - 7 - 24 - 7 - 0 - 30 - 28 - 28 - 60 - 60 - 160 - 224 - 176 - 240 - 56 - 184 - 56 - 192 - 48 - 192 - 0 - 240 - 112 - 112 - 120 - 120 - 11 - 15 - 19 - 31 - 3 - 31 - 48 - 63 - 48 - 63 - 48 - 60 - 32 - 32 - 0 - 0 - 0 - 192 - 216 - 192 - 252 - 224 - 252 - 224 - 128 - 224 - 0 - 224 - 112 - 112 - 120 - 120 - 23 - 31 - 7 - 31 - 0 - 31 - 0 - 15 - 1 - 15 - 5 - 7 - 14 - 14 - 7 - 7 - 192 - 128 - 224 - 128 - 96 - 128 - 0 - 224 - 128 - 224 - 192 - 192 - 64 - 64 - 0 - 0 - 15 - 15 - 31 - 31 - 56 - 7 - 48 - 7 - 24 - 31 - 24 - 31 - 24 - 24 - 12 - 12 - 92 - 224 - 92 - 224 - 8 - 104 - 56 - 248 - 56 - 248 - 56 - 184 - 0 - 0 - 0 - 0 - 62 - 63 - 62 - 55 - 60 - 35 - 28 - 7 - 102 - 127 - 99 - 127 - 96 - 126 - 64 - 64 - 176 - 240 - 160 - 240 - 2 - 114 - 6 - 254 - 6 - 254 - 134 - 254 - 0 - 0 - 0 - 0 - 31 - 31 - 30 - 31 - 8 - 15 - 0 - 7 - 0 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 192 - 48 - 96 - 224 - 120 - 248 - 248 - 200 - 242 - 130 - 78 - 190 - 60 - 124 - 56 - 56 - 191 - 169 - 235 - 191 - 188 - 252 - 255 - 255 - 207 - 203 - 31 - 16 - 31 - 17 - 30 - 30 - 0 - 255 - 0 - 0 - 15 - 15 - 248 - 255 - 254 - 255 - 255 - 127 - 131 - 131 - 0 - 0 - 127 - 127 - 120 - 123 - 1 - 2 - 1 - 2 - 0 - 7 - 0 - 15 - 0 - 31 - 0 - 63 - 192 - 64 - 64 - 160 - 0 - 224 - 176 - 64 - 240 - 0 - 0 - 224 - 0 - 224 - 0 - 240 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 7 - 15 - 15 - 15 - 12 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 192 - 192 - 240 - 240 - 224 - 128 - 31 - 22 - 31 - 16 - 31 - 24 - 55 - 56 - 59 - 51 - 56 - 39 - 28 - 31 - 60 - 60 - 248 - 0 - 248 - 64 - 240 - 240 - 248 - 24 - 184 - 168 - 24 - 224 - 56 - 248 - 60 - 60 - 0 - 0 - 7 - 7 - 15 - 15 - 15 - 12 - 31 - 22 - 63 - 48 - 63 - 48 - 15 - 9 - 0 - 0 - 192 - 192 - 240 - 240 - 224 - 128 - 248 - 0 - 248 - 64 - 254 - 240 - 252 - 240 - 11 - 15 - 1 - 15 - 0 - 31 - 0 - 31 - 96 - 127 - 96 - 126 - 96 - 108 - 64 - 64 - 224 - 224 - 128 - 192 - 0 - 192 - 64 - 224 - 128 - 224 - 0 - 224 - 112 - 112 - 120 - 120 - 7 - 7 - 15 - 15 - 31 - 31 - 31 - 28 - 63 - 61 - 63 - 60 - 127 - 124 - 127 - 127 - 192 - 192 - 224 - 224 - 240 - 112 - 240 - 16 - 240 - 80 - 240 - 16 - 224 - 128 - 192 - 64 - 121 - 122 - 48 - 55 - 6 - 1 - 7 - 8 - 0 - 31 - 0 - 63 - 0 - 127 - 0 - 255 - 196 - 32 - 28 - 224 - 48 - 192 - 192 - 0 - 0 - 192 - 0 - 224 - 0 - 224 - 0 - 224 - 0 - 0 - 224 - 224 - 240 - 144 - 136 - 136 - 132 - 132 - 140 - 140 - 250 - 250 - 253 - 17 - 61 - 209 - 125 - 83 - 249 - 151 - 19 - 255 - 30 - 254 - 252 - 252 - 240 - 240 - 0 - 0 - 7 - 7 - 15 - 15 - 15 - 15 - 31 - 28 - 31 - 29 - 63 - 60 - 63 - 60 - 63 - 63 - 30 - 30 - 17 - 17 - 30 - 16 - 31 - 19 - 28 - 20 - 204 - 207 - 255 - 191 - 175 - 168 - 61 - 62 - 56 - 63 - 30 - 25 - 3 - 4 - 1 - 14 - 0 - 31 - 0 - 63 - 0 - 127 - 192 - 32 - 0 - 240 - 48 - 192 - 96 - 128 - 192 - 32 - 0 - 240 - 0 - 240 - 0 - 240 - 254 - 254 - 254 - 130 - 254 - 238 - 56 - 40 - 56 - 40 - 56 - 40 - 56 - 40 - 56 - 56 - 238 - 238 - 238 - 170 - 254 - 186 - 254 - 130 - 254 - 186 - 238 - 170 - 238 - 170 - 238 - 238 - 254 - 254 - 254 - 130 - 254 - 190 - 252 - 132 - 252 - 188 - 254 - 190 - 254 - 130 - 254 - 254 - 246 - 246 - 254 - 154 - 254 - 154 - 254 - 170 - 254 - 162 - 254 - 178 - 238 - 170 - 238 - 238 - 252 - 252 - 254 - 134 - 254 - 178 - 238 - 170 - 238 - 170 - 254 - 178 - 254 - 134 - 252 - 252 - 0 - 0 - 34 - 34 - 85 - 85 - 85 - 85 - 85 - 85 - 85 - 85 - 34 - 34 - 0 - 0 - 0 - 0 - 32 - 32 - 80 - 80 - 80 - 80 - 80 - 80 - 80 - 80 - 32 - 32 - 0 - 0 - 0 - 0 - 18 - 18 - 53 - 53 - 21 - 21 - 21 - 21 - 21 - 21 - 18 - 18 - 0 - 0 - 0 - 0 - 34 - 34 - 85 - 85 - 21 - 21 - 37 - 37 - 69 - 69 - 114 - 114 - 0 - 0 - 0 - 0 - 162 - 162 - 165 - 165 - 165 - 165 - 245 - 245 - 37 - 37 - 34 - 34 - 0 - 0 - 0 - 0 - 114 - 114 - 69 - 69 - 101 - 101 - 21 - 21 - 21 - 21 - 98 - 98 - 0 - 0 - 0 - 0 - 98 - 98 - 149 - 149 - 101 - 101 - 181 - 181 - 149 - 149 - 98 - 98 - 0 - 0 - 0 - 0 - 110 - 110 - 238 - 238 - 110 - 110 - 110 - 110 - 111 - 111 - 103 - 103 - 0 - 0 - 0 - 0 - 190 - 190 - 185 - 185 - 185 - 185 - 190 - 190 - 184 - 184 - 56 - 56 - 0 - 0 - 0 - 0 - 60 - 60 - 102 - 102 - 94 - 94 - 94 - 94 - 126 - 126 - 60 - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 12 - 16 - 16 - 32 - 32 - 32 - 32 - 64 - 64 - 0 - 0 - 0 - 0 - 24 - 24 - 60 - 36 - 122 - 86 - 60 - 12 - 8 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 7 - 7 - 100 - 100 - 84 - 85 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 224 - 224 - 240 - 240 - 240 - 160 - 248 - 128 - 119 - 87 - 123 - 120 - 79 - 79 - 124 - 124 - 56 - 56 - 31 - 31 - 7 - 7 - 1 - 1 - 248 - 48 - 240 - 0 - 248 - 248 - 28 - 20 - 127 - 125 - 204 - 252 - 25 - 249 - 241 - 241 - 248 - 48 - 241 - 1 - 249 - 249 - 28 - 20 - 127 - 125 - 204 - 252 - 24 - 248 - 240 - 240 - 0 - 0 - 7 - 7 - 15 - 15 - 201 - 201 - 169 - 171 - 239 - 175 - 231 - 167 - 243 - 144 - 0 - 0 - 224 - 224 - 240 - 240 - 240 - 64 - 252 - 0 - 252 - 32 - 248 - 120 - 240 - 0 - 255 - 255 - 143 - 143 - 248 - 248 - 224 - 224 - 111 - 127 - 60 - 63 - 15 - 15 - 3 - 3 - 252 - 252 - 247 - 245 - 31 - 21 - 252 - 252 - 139 - 251 - 27 - 251 - 243 - 240 - 195 - 195 - 0 - 0 - 224 - 224 - 240 - 240 - 240 - 64 - 255 - 3 - 255 - 32 - 251 - 123 - 243 - 3 - 252 - 252 - 247 - 245 - 31 - 21 - 252 - 252 - 136 - 248 - 24 - 248 - 240 - 240 - 192 - 192 - 0 - 0 - 60 - 60 - 110 - 110 - 94 - 94 - 94 - 94 - 126 - 126 - 60 - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 36 - 36 - 26 - 26 - 1 - 1 - 6 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 4 - 4 - 9 - 9 - 11 - 11 - 15 - 14 - 0 - 0 - 0 - 0 - 0 - 0 - 252 - 252 - 226 - 226 - 253 - 253 - 249 - 145 - 253 - 193 - 15 - 14 - 9 - 8 - 15 - 15 - 103 - 100 - 100 - 100 - 20 - 23 - 3 - 3 - 0 - 0 - 253 - 25 - 249 - 1 - 249 - 249 - 214 - 86 - 127 - 63 - 125 - 249 - 249 - 253 - 254 - 254 - 15 - 14 - 9 - 8 - 15 - 15 - 7 - 4 - 4 - 4 - 20 - 23 - 99 - 99 - 96 - 96 - 15 - 15 - 19 - 19 - 39 - 39 - 39 - 38 - 47 - 43 - 63 - 56 - 63 - 56 - 39 - 36 - 252 - 252 - 226 - 226 - 249 - 249 - 241 - 65 - 253 - 1 - 253 - 33 - 249 - 121 - 241 - 1 - 63 - 63 - 223 - 212 - 212 - 212 - 212 - 223 - 52 - 63 - 31 - 31 - 15 - 15 - 3 - 3 - 249 - 249 - 174 - 174 - 255 - 127 - 125 - 241 - 241 - 253 - 254 - 254 - 254 - 254 - 252 - 252 - 63 - 63 - 31 - 20 - 20 - 20 - 20 - 31 - 52 - 63 - 223 - 223 - 207 - 207 - 195 - 195 - 0 - 0 - 0 - 0 - 30 - 30 - 115 - 115 - 255 - 255 - 127 - 127 - 30 - 30 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 1 - 1 - 2 - 2 - 4 - 4 - 15 - 8 - 7 - 4 - 3 - 2 - 1 - 1 - 0 - 0 - 128 - 128 - 0 - 0 - 193 - 0 - 247 - 0 - 255 - 0 - 255 - 64 - 255 - 227 - 62 - 62 - 19 - 0 - 153 - 0 - 193 - 0 - 227 - 0 - 255 - 0 - 255 - 128 - 127 - 65 - 62 - 62 - 64 - 64 - 160 - 32 - 224 - 32 - 192 - 64 - 192 - 64 - 128 - 128 - 0 - 0 - 0 - 0 - 126 - 126 - 255 - 131 - 255 - 187 - 255 - 163 - 255 - 163 - 255 - 135 - 255 - 255 - 126 - 126 - 126 - 126 - 153 - 153 - 165 - 165 - 141 - 141 - 153 - 153 - 129 - 129 - 153 - 153 - 126 - 126 - 126 - 126 - 255 - 131 - 255 - 187 - 255 - 163 - 255 - 163 - 255 - 135 - 255 - 255 - 126 - 126 - 60 - 60 - 126 - 66 - 255 - 129 - 255 - 129 - 255 - 255 - 66 - 66 - 66 - 66 - 60 - 60 - 0 - 0 - 110 - 110 - 191 - 147 - 191 - 131 - 255 - 131 - 126 - 70 - 60 - 44 - 24 - 24 - 0 - 0 - 16 - 0 - 16 - 0 - 254 - 0 - 124 - 0 - 56 - 0 - 124 - 0 - 198 - 0 - 0 - 0 - 16 - 16 - 16 - 16 - 254 - 254 - 124 - 124 - 56 - 56 - 124 - 124 - 198 - 198 - 195 - 195 - 61 - 61 - 195 - 195 - 255 - 255 - 255 - 255 - 239 - 231 - 255 - 255 - 219 - 219 - 60 - 60 - 32 - 78 - 255 - 255 - 255 - 189 - 255 - 255 - 255 - 255 - 255 - 189 - 255 - 255 - 15 - 15 - 31 - 16 - 56 - 48 - 112 - 64 - 96 - 64 - 192 - 128 - 192 - 128 - 192 - 128 - 191 - 191 - 255 - 64 - 64 - 0 - 0 - 0 - 0 - 0 - 65 - 65 - 65 - 65 - 0 - 0 - 128 - 128 - 248 - 120 - 60 - 4 - 12 - 4 - 14 - 2 - 6 - 2 - 5 - 3 - 5 - 3 - 192 - 128 - 192 - 128 - 224 - 128 - 112 - 64 - 62 - 32 - 35 - 60 - 29 - 30 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 63 - 0 - 156 - 127 - 227 - 227 - 255 - 255 - 128 - 128 - 191 - 128 - 175 - 136 - 191 - 152 - 191 - 128 - 255 - 255 - 255 - 255 - 255 - 255 - 3 - 3 - 255 - 3 - 239 - 11 - 255 - 27 - 255 - 3 - 255 - 255 - 255 - 255 - 60 - 60 - 126 - 126 - 219 - 219 - 219 - 219 - 255 - 255 - 60 - 0 - 126 - 98 - 54 - 54 - 0 - 0 - 0 - 0 - 0 - 0 - 60 - 60 - 126 - 126 - 219 - 219 - 60 - 0 - 195 - 195 - 24 - 24 - 60 - 36 - 126 - 82 - 126 - 66 - 255 - 193 - 255 - 133 - 255 - 129 - 255 - 163 - 255 - 129 - 255 - 195 - 126 - 102 - 60 - 60 - 153 - 153 - 219 - 219 - 126 - 126 - 60 - 60 - 129 - 129 - 129 - 129 - 195 - 195 - 195 - 195 - 231 - 165 - 231 - 165 - 231 - 165 - 231 - 165 - 255 - 189 - 255 - 153 - 126 - 66 - 60 - 60 - 153 - 153 - 219 - 219 - 126 - 126 - 60 - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 96 - 96 - 144 - 144 - 208 - 208 - 208 - 208 - 144 - 144 - 232 - 224 - 126 - 110 - 61 - 45 - 31 - 15 - 31 - 6 - 63 - 57 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 96 - 96 - 144 - 144 - 208 - 208 - 208 - 208 - 144 - 144 - 232 - 224 - 62 - 46 - 61 - 45 - 127 - 111 - 31 - 6 - 30 - 16 - 55 - 55 - 0 - 0 - 0 - 0 - 60 - 60 - 110 - 110 - 94 - 94 - 94 - 94 - 126 - 126 - 60 - 60 - 0 - 0 - 0 - 0 - 60 - 0 - 110 - 0 - 94 - 0 - 94 - 0 - 126 - 0 - 60 - 0 - 5 - 3 - 13 - 3 - 9 - 7 - 10 - 6 - 50 - 14 - 228 - 28 - 8 - 248 - 240 - 240 - 0 - 0 - 0 - 0 - 2 - 2 - 0 - 0 - 17 - 17 - 5 - 4 - 3 - 1 - 46 - 42 - 6 - 6 - 8 - 8 - 39 - 36 - 44 - 40 - 27 - 17 - 148 - 128 - 89 - 73 - 51 - 35 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 48 - 48 - 72 - 72 - 68 - 68 - 117 - 69 - 119 - 102 - 57 - 57 - 0 - 0 - 0 - 0 - 12 - 12 - 18 - 18 - 34 - 34 - 174 - 162 - 238 - 102 - 156 - 156 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 97 - 97 - 151 - 150 - 137 - 137 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 134 - 134 - 233 - 105 - 145 - 145 - 63 - 63 - 109 - 112 - 127 - 127 - 142 - 139 - 175 - 171 - 254 - 251 - 255 - 131 - 254 - 135 - 128 - 128 - 64 - 192 - 224 - 224 - 176 - 16 - 240 - 240 - 176 - 16 - 240 - 240 - 64 - 192 - 31 - 31 - 54 - 56 - 63 - 63 - 71 - 69 - 87 - 85 - 127 - 125 - 55 - 53 - 7 - 5 - 192 - 192 - 160 - 96 - 240 - 240 - 88 - 136 - 248 - 248 - 88 - 136 - 248 - 248 - 32 - 224 - 1 - 1 - 7 - 6 - 15 - 8 - 63 - 56 - 79 - 72 - 143 - 142 - 191 - 136 - 247 - 247 - 128 - 128 - 96 - 224 - 144 - 112 - 220 - 60 - 210 - 50 - 241 - 113 - 221 - 49 - 239 - 239 - 1 - 1 - 3 - 3 - 7 - 7 - 15 - 15 - 15 - 15 - 62 - 62 - 224 - 224 - 0 - 0 - 255 - 157 - 119 - 117 - 39 - 37 - 7 - 5 - 63 - 59 - 62 - 34 - 159 - 159 - 250 - 250 - 0 - 0 - 56 - 56 - 56 - 40 - 56 - 40 - 56 - 40 - 56 - 40 - 56 - 40 - 56 - 40 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 11 - 10 - 207 - 207 - 233 - 233 - 57 - 57 - 7 - 7 - 3 - 2 - 63 - 62 - 113 - 113 - 208 - 80 - 243 - 243 - 87 - 87 - 92 - 92 - 224 - 224 - 192 - 64 - 252 - 124 - 142 - 142 - 235 - 138 - 127 - 127 - 10 - 10 - 58 - 58 - 119 - 119 - 3 - 2 - 15 - 15 - 28 - 28 - 215 - 81 - 254 - 254 - 144 - 144 - 156 - 156 - 238 - 238 - 192 - 64 - 240 - 240 - 56 - 56 - 127 - 124 - 31 - 24 - 47 - 32 - 95 - 67 - 93 - 68 - 223 - 207 - 251 - 136 - 127 - 127 - 120 - 248 - 140 - 124 - 242 - 14 - 251 - 135 - 253 - 3 - 253 - 131 - 251 - 7 - 254 - 254 - 7 - 5 - 63 - 61 - 63 - 34 - 31 - 29 - 46 - 34 - 95 - 71 - 93 - 68 - 63 - 63 - 184 - 120 - 196 - 60 - 250 - 6 - 251 - 199 - 253 - 3 - 253 - 131 - 251 - 7 - 254 - 254 - 63 - 63 - 108 - 99 - 127 - 127 - 254 - 130 - 255 - 187 - 254 - 130 - 255 - 131 - 127 - 127 - 56 - 56 - 238 - 222 - 242 - 206 - 189 - 99 - 253 - 227 - 189 - 99 - 253 - 227 - 254 - 254 - 28 - 28 - 62 - 62 - 47 - 47 - 39 - 39 - 103 - 103 - 193 - 193 - 128 - 128 - 0 - 0 - 115 - 115 - 6 - 6 - 25 - 24 - 39 - 32 - 126 - 65 - 125 - 71 - 126 - 86 - 120 - 120 - 56 - 40 - 56 - 40 - 56 - 40 - 254 - 254 - 130 - 130 - 68 - 68 - 40 - 40 - 16 - 16 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 62 - 62 - 71 - 69 - 230 - 165 - 230 - 165 - 254 - 153 - 253 - 195 - 28 - 28 - 38 - 38 - 66 - 66 - 70 - 66 - 158 - 130 - 190 - 134 - 188 - 188 - 96 - 96 - 0 - 0 - 62 - 62 - 71 - 69 - 230 - 165 - 230 - 165 - 254 - 153 - 253 - 227 - 31 - 23 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 190 - 190 - 193 - 193 - 1 - 1 - 251 - 195 - 0 - 0 - 62 - 62 - 127 - 127 - 255 - 231 - 255 - 193 - 255 - 231 - 127 - 127 - 62 - 62 - 0 - 0 - 0 - 0 - 128 - 128 - 224 - 224 - 248 - 248 - 224 - 224 - 192 - 192 - 0 - 0 - 255 - 255 - 69 - 131 - 255 - 255 - 77 - 131 - 255 - 254 - 195 - 127 - 220 - 228 - 187 - 200 - 0 - 0 - 0 - 0 - 224 - 224 - 56 - 56 - 236 - 12 - 244 - 132 - 119 - 15 - 244 - 12 - 63 - 63 - 127 - 65 - 254 - 129 - 254 - 177 - 252 - 179 - 249 - 135 - 255 - 135 - 121 - 121 - 0 - 0 - 128 - 128 - 128 - 128 - 128 - 128 - 254 - 254 - 1 - 109 - 1 - 109 - 254 - 254 - 255 - 129 - 127 - 125 - 127 - 65 - 63 - 33 - 159 - 159 - 250 - 250 - 115 - 115 - 2 - 2 - 255 - 255 - 69 - 131 - 255 - 255 - 77 - 131 - 254 - 254 - 227 - 124 - 223 - 225 - 190 - 130 - 0 - 0 - 0 - 0 - 0 - 0 - 192 - 192 - 48 - 48 - 233 - 9 - 247 - 231 - 19 - 31 - 127 - 127 - 78 - 112 - 127 - 127 - 63 - 61 - 87 - 85 - 87 - 84 - 255 - 248 - 255 - 128 - 248 - 248 - 36 - 28 - 252 - 252 - 26 - 6 - 254 - 254 - 237 - 35 - 255 - 191 - 229 - 35 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 135 - 123 - 123 - 3 - 3 - 37 - 37 - 104 - 104 - 159 - 159 - 104 - 104 - 32 - 32 - 252 - 252 - 6 - 46 - 2 - 106 - 130 - 202 - 252 - 252 - 255 - 255 - 132 - 132 - 0 - 0 - 127 - 127 - 3 - 3 - 5 - 5 - 40 - 40 - 104 - 104 - 159 - 159 - 104 - 104 - 32 - 32 - 60 - 60 - 2 - 106 - 130 - 202 - 252 - 252 - 66 - 66 - 255 - 255 - 66 - 66 - 0 - 0 - 0 - 0 - 124 - 124 - 251 - 199 - 132 - 131 - 130 - 129 - 121 - 71 - 62 - 62 - 0 - 0 - 0 - 0 - 0 - 0 - 224 - 224 - 62 - 254 - 48 - 240 - 192 - 192 - 0 - 0 - 0 - 0 - 187 - 136 - 127 - 4 - 219 - 55 - 166 - 126 - 120 - 248 - 129 - 129 - 1 - 1 - 1 - 1 - 244 - 12 - 246 - 78 - 250 - 198 - 122 - 70 - 246 - 158 - 252 - 76 - 240 - 48 - 224 - 224 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 1 - 1 - 2 - 2 - 61 - 60 - 99 - 64 - 254 - 129 - 253 - 171 - 254 - 254 - 189 - 132 - 125 - 4 - 223 - 52 - 166 - 123 - 111 - 255 - 191 - 176 - 31 - 21 - 31 - 31 - 250 - 14 - 250 - 6 - 250 - 6 - 250 - 6 - 126 - 130 - 253 - 3 - 249 - 7 - 254 - 254 - 63 - 63 - 127 - 127 - 255 - 200 - 255 - 129 - 255 - 144 - 255 - 196 - 255 - 255 - 255 - 255 - 252 - 252 - 254 - 254 - 255 - 39 - 255 - 3 - 255 - 19 - 255 - 71 - 255 - 255 - 255 - 255 - 254 - 218 - 255 - 137 - 255 - 205 - 119 - 87 - 114 - 82 - 98 - 98 - 32 - 32 - 32 - 32 - 62 - 62 - 99 - 99 - 127 - 127 - 62 - 62 - 8 - 8 - 107 - 107 - 62 - 62 - 28 - 28 - 60 - 60 - 106 - 70 - 66 - 126 - 60 - 60 - 24 - 24 - 255 - 255 - 217 - 135 - 217 - 135 - 60 - 60 - 66 - 126 - 153 - 231 - 165 - 195 - 165 - 195 - 153 - 231 - 66 - 126 - 60 - 60 - 0 - 0 - 60 - 60 - 102 - 102 - 90 - 90 - 90 - 90 - 102 - 102 - 60 - 60 - 0 - 0 - 0 - 0 - 56 - 56 - 127 - 127 - 254 - 228 - 255 - 176 - 255 - 134 - 126 - 0 - 0 - 0 - 0 - 62 - 28 - 93 - 0 - 65 - 0 - 62 - 0 - 8 - 0 - 107 - 0 - 62 - 0 - 28 - 126 - 126 - 165 - 195 - 255 - 255 - 165 - 195 - 255 - 255 - 165 - 195 - 90 - 102 - 60 - 60 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 24 - 24 - 24 - 24 - 56 - 56 - 248 - 248 - 240 - 240 - 0 - 0 - 0 - 0 - 0 - 0 - 126 - 126 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 126 - 126 - 255 - 255 - 17 - 17 - 17 - 17 - 17 - 17 - 17 - 17 - 255 - 17 - 17 - 255 - 255 - 255 - 255 - 255 - 255 - 195 - 255 - 195 - 126 - 126 - 255 - 255 - 255 - 195 - 255 - 195 - 126 - 126 - 16 - 16 - 16 - 16 - 40 - 40 - 40 - 40 - 68 - 68 - 124 - 68 - 124 - 68 - 124 - 124 - 126 - 126 - 159 - 159 - 255 - 255 - 110 - 66 - 110 - 66 - 255 - 255 - 159 - 159 - 126 - 126 - 126 - 126 - 255 - 131 - 255 - 131 - 255 - 135 - 126 - 126 - 0 - 0 - 0 - 0 - 0 - 0 - 15 - 15 - 11 - 8 - 11 - 8 - 11 - 8 - 27 - 24 - 55 - 48 - 47 - 32 - 47 - 39 - 240 - 240 - 176 - 112 - 176 - 112 - 176 - 112 - 152 - 120 - 220 - 60 - 204 - 60 - 228 - 28 - 46 - 33 - 36 - 35 - 41 - 41 - 47 - 38 - 54 - 49 - 17 - 19 - 14 - 14 - 0 - 0 - 132 - 252 - 244 - 252 - 252 - 92 - 124 - 212 - 220 - 180 - 36 - 108 - 216 - 216 - 0 - 0 - 56 - 56 - 124 - 68 - 238 - 130 - 206 - 138 - 206 - 138 - 254 - 146 - 124 - 68 - 56 - 56 - 0 - 0 - 0 - 0 - 0 - 0 - 15 - 15 - 31 - 31 - 28 - 28 - 24 - 24 - 24 - 24 - 60 - 60 - 102 - 102 - 78 - 78 - 78 - 78 - 78 - 78 - 78 - 78 - 102 - 102 - 60 - 60 - 24 - 24 - 60 - 4 - 60 - 4 - 60 - 4 - 60 - 4 - 60 - 4 - 60 - 4 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 0 - 0 - 0 - 0 - 62 - 62 - 72 - 73 - 174 - 175 - 254 - 255 - 126 - 127 - 62 - 62 - 0 - 0 - 0 - 0 - 128 - 128 - 24 - 24 - 188 - 188 - 152 - 152 - 128 - 128 - 128 - 128 - 0 - 0 - 0 - 0 - 140 - 140 - 18 - 18 - 137 - 137 - 146 - 146 - 140 - 140 - 128 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 240 - 240 - 248 - 248 - 56 - 56 - 24 - 24 - 24 - 24 - 195 - 36 - 0 - 66 - 0 - 129 - 0 - 0 - 0 - 0 - 24 - 0 - 60 - 0 - 102 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 24 - 24 - 24 - 24 - 28 - 28 - 31 - 31 - 15 - 15 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 60 - 60 - 102 - 102 - 102 - 102 - 102 - 102 - 102 - 102 - 60 - 60 - 0 - 0 - 0 - 0 - 24 - 24 - 56 - 56 - 24 - 24 - 24 - 24 - 24 - 24 - 60 - 60 - 0 - 0 - 0 - 0 - 60 - 60 - 78 - 78 - 14 - 14 - 60 - 60 - 112 - 112 - 126 - 126 - 0 - 0 - 0 - 0 - 124 - 124 - 14 - 14 - 60 - 60 - 14 - 14 - 14 - 14 - 124 - 124 - 0 - 0 - 0 - 0 - 60 - 60 - 108 - 108 - 76 - 76 - 78 - 78 - 126 - 126 - 12 - 12 - 0 - 0 - 0 - 0 - 124 - 124 - 96 - 96 - 124 - 124 - 14 - 14 - 78 - 78 - 60 - 60 - 0 - 0 - 0 - 0 - 60 - 60 - 96 - 96 - 124 - 124 - 102 - 102 - 102 - 102 - 60 - 60 - 0 - 0 - 0 - 0 - 126 - 126 - 6 - 6 - 12 - 12 - 24 - 24 - 56 - 56 - 56 - 56 - 0 - 0 - 0 - 0 - 60 - 60 - 78 - 78 - 60 - 60 - 78 - 78 - 78 - 78 - 60 - 60 - 0 - 0 - 0 - 0 - 60 - 60 - 78 - 78 - 78 - 78 - 62 - 62 - 14 - 14 - 60 - 60 - 0 - 0 - 0 - 0 - 60 - 60 - 78 - 78 - 78 - 78 - 126 - 126 - 78 - 78 - 78 - 78 - 0 - 0 - 0 - 0 - 124 - 124 - 102 - 102 - 124 - 124 - 102 - 102 - 102 - 102 - 124 - 124 - 0 - 0 - 0 - 0 - 60 - 60 - 102 - 102 - 96 - 96 - 96 - 96 - 102 - 102 - 60 - 60 - 0 - 0 - 0 - 0 - 124 - 124 - 78 - 78 - 78 - 78 - 78 - 78 - 78 - 78 - 124 - 124 - 0 - 0 - 0 - 0 - 126 - 126 - 96 - 96 - 124 - 124 - 96 - 96 - 96 - 96 - 126 - 126 - 0 - 0 - 0 - 0 - 126 - 126 - 96 - 96 - 96 - 96 - 124 - 124 - 96 - 96 - 96 - 96 - 0 - 0 - 0 - 0 - 60 - 60 - 102 - 102 - 96 - 96 - 110 - 110 - 102 - 102 - 62 - 62 - 0 - 0 - 0 - 0 - 70 - 70 - 70 - 70 - 126 - 126 - 70 - 70 - 70 - 70 - 70 - 70 - 0 - 0 - 0 - 0 - 60 - 60 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 60 - 60 - 0 - 0 - 255 - 255 - 224 - 224 - 207 - 192 - 152 - 135 - 183 - 143 - 175 - 159 - 175 - 159 - 175 - 159 - 0 - 0 - 102 - 102 - 108 - 108 - 120 - 120 - 120 - 120 - 108 - 108 - 102 - 102 - 0 - 0 - 0 - 0 - 96 - 96 - 96 - 96 - 96 - 96 - 96 - 96 - 96 - 96 - 126 - 126 - 0 - 0 - 0 - 0 - 70 - 70 - 110 - 110 - 126 - 126 - 86 - 86 - 70 - 70 - 70 - 70 - 0 - 0 - 0 - 0 - 70 - 70 - 102 - 102 - 118 - 118 - 94 - 94 - 78 - 78 - 70 - 70 - 0 - 0 - 0 - 0 - 60 - 60 - 102 - 102 - 102 - 102 - 102 - 102 - 102 - 102 - 60 - 60 - 0 - 0 - 0 - 0 - 124 - 124 - 102 - 102 - 102 - 102 - 124 - 124 - 96 - 96 - 96 - 96 - 0 - 0 - 0 - 0 - 60 - 60 - 98 - 98 - 98 - 98 - 106 - 106 - 100 - 100 - 58 - 58 - 0 - 0 - 0 - 0 - 124 - 124 - 102 - 102 - 102 - 102 - 124 - 124 - 104 - 104 - 102 - 102 - 0 - 0 - 0 - 0 - 60 - 60 - 96 - 96 - 60 - 60 - 14 - 14 - 78 - 78 - 60 - 60 - 0 - 0 - 0 - 0 - 126 - 126 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 24 - 0 - 0 - 0 - 0 - 70 - 70 - 70 - 70 - 70 - 70 - 70 - 70 - 78 - 78 - 60 - 60 - 0 - 0 - 0 - 0 - 70 - 70 - 70 - 70 - 70 - 70 - 70 - 70 - 44 - 44 - 24 - 24 - 0 - 0 - 0 - 0 - 70 - 70 - 70 - 70 - 86 - 86 - 126 - 126 - 110 - 110 - 70 - 70 - 0 - 0 - 255 - 255 - 7 - 15 - 251 - 7 - 13 - 243 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 0 - 0 - 102 - 102 - 102 - 102 - 60 - 60 - 24 - 24 - 24 - 24 - 24 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 48 - 48 - 48 - 48 - 0 - 0 - 175 - 159 - 175 - 159 - 175 - 159 - 175 - 159 - 175 - 159 - 175 - 159 - 175 - 159 - 191 - 128 - 0 - 0 - 0 - 0 - 48 - 48 - 48 - 48 - 0 - 0 - 48 - 48 - 48 - 48 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 48 - 48 - 48 - 48 - 16 - 16 - 32 - 32 - 0 - 0 - 126 - 126 - 14 - 14 - 28 - 28 - 56 - 56 - 112 - 112 - 126 - 126 - 0 - 0 - 0 - 0 - 28 - 28 - 28 - 28 - 28 - 28 - 28 - 28 - 0 - 0 - 28 - 28 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 60 - 60 - 60 - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 56 - 56 - 124 - 68 - 238 - 130 - 206 - 138 - 206 - 138 - 254 - 146 - 124 - 68 - 56 - 56 - 0 - 0 - 0 - 0 - 68 - 68 - 40 - 40 - 16 - 16 - 40 - 40 - 68 - 68 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 239 - 239 - 16 - 16 - 16 - 247 - 16 - 247 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 126 - 124 - 255 - 254 - 255 - 130 - 195 - 130 - 255 - 254 - 255 - 254 - 195 - 130 - 195 - 130 - 255 - 254 - 255 - 254 - 195 - 130 - 195 - 130 - 255 - 254 - 255 - 254 - 195 - 130 - 195 - 130 - 239 - 239 - 16 - 16 - 16 - 247 - 16 - 247 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 28 - 28 - 34 - 34 - 79 - 79 - 75 - 75 - 17 - 17 - 17 - 17 - 1 - 1 - 1 - 1 - 112 - 112 - 136 - 136 - 196 - 196 - 36 - 36 - 16 - 16 - 16 - 16 - 0 - 0 - 0 - 0 - 1 - 1 - 3 - 3 - 5 - 5 - 9 - 9 - 17 - 17 - 33 - 33 - 65 - 65 - 129 - 129 - 0 - 124 - 0 - 68 - 0 - 84 - 0 - 40 - 0 - 40 - 0 - 40 - 0 - 56 - 0 - 0 - 1 - 1 - 2 - 2 - 4 - 4 - 8 - 8 - 16 - 16 - 32 - 32 - 64 - 64 - 128 - 128 - 0 - 126 - 56 - 199 - 124 - 131 - 124 - 131 - 124 - 131 - 124 - 131 - 56 - 199 - 0 - 126 - 0 - 0 - 16 - 16 - 56 - 56 - 124 - 124 - 0 - 0 - 16 - 16 - 56 - 56 - 124 - 124 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 3 - 1 - 1 - 6 - 6 - 10 - 10 - 12 - 12 - 48 - 48 - 80 - 80 - 96 - 96 - 128 - 128 - 0 - 0 - 0 - 0 - 8 - 0 - 24 - 0 - 36 - 0 - 68 - 0 - 146 - 0 - 57 - 0 - 129 - 129 - 65 - 65 - 33 - 33 - 17 - 17 - 9 - 9 - 5 - 5 - 3 - 3 - 1 - 1 - 255 - 255 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 255 - 255 - 63 - 63 - 127 - 127 - 255 - 200 - 255 - 129 - 255 - 144 - 255 - 196 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 12 - 16 - 16 - 32 - 32 - 32 - 32 - 64 - 64 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 36 - 36 - 26 - 26 - 1 - 1 - 6 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 1 - 1 - 2 - 2 - 4 - 4 - 15 - 8 - 7 - 4 - 3 - 2 - 1 - 1 - 0 - 0 - 128 - 128 - 0 - 0 - 193 - 0 - 247 - 0 - 255 - 0 - 255 - 64 - 255 - 227 - 62 - 62 - 19 - 0 - 153 - 0 - 193 - 0 - 227 - 0 - 255 - 0 - 255 - 128 - 127 - 65 - 62 - 62 - 64 - 64 - 160 - 32 - 224 - 32 - 192 - 64 - 192 - 64 - 128 - 128 - 0 - 0 - 0 - 0 - 15 - 15 - 18 - 18 - 62 - 62 - 34 - 34 - 91 - 91 - 65 - 65 - 97 - 97 - 35 - 35 - 192 - 192 - 96 - 96 - 32 - 32 - 48 - 48 - 16 - 16 - 16 - 16 - 16 - 16 - 240 - 240 - 62 - 62 - 4 - 4 - 14 - 14 - 16 - 16 - 62 - 62 - 192 - 192 - 168 - 168 - 255 - 255 - 8 - 8 - 7 - 7 - 0 - 0 - 0 - 0 - 7 - 7 - 24 - 24 - 18 - 18 - 255 - 255 - 0 - 0 - 240 - 240 - 12 - 12 - 2 - 2 - 129 - 129 - 1 - 1 - 65 - 65 - 254 - 254 - 255 - 255 - 255 - 255 - 255 - 200 - 255 - 129 - 255 - 144 - 255 - 196 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 39 - 255 - 3 - 255 - 19 - 255 - 71 - 255 - 255 - 255 - 255 - 255 - 255 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 128 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 252 - 252 - 254 - 254 - 255 - 39 - 255 - 3 - 255 - 19 - 255 - 71 - 255 - 255 - 255 - 255 - 0 - 0 - 24 - 24 - 36 - 36 - 90 - 90 - 90 - 90 - 36 - 36 - 24 - 24 - 0 - 0 - 0 - 0 - 255 - 255 - 129 - 129 - 66 - 66 - 60 - 60 - 0 - 0 - 170 - 170 - 85 - 85 - 98 - 98 - 159 - 159 - 98 - 98 - 0 - 0 - 126 - 126 - 129 - 129 - 126 - 126 - 0 - 0 - 246 - 246 - 149 - 149 - 246 - 246 - 0 - 0 - 124 - 124 - 178 - 178 - 183 - 183 - 124 - 124 - 0 - 0 - 67 - 67 - 69 - 69 - 79 - 79 - 73 - 73 - 65 - 65 - 127 - 127 - 95 - 95 - 0 - 0 - 226 - 226 - 18 - 18 - 151 - 151 - 149 - 149 - 245 - 245 - 37 - 37 - 167 - 167 - 66 - 66 - 66 - 66 - 66 - 66 - 67 - 67 - 65 - 65 - 65 - 65 - 65 - 65 - 67 - 67 - 32 - 32 - 32 - 32 - 111 - 111 - 233 - 233 - 70 - 70 - 70 - 70 - 73 - 73 - 207 - 207 - 0 - 0 - 0 - 16 - 0 - 56 - 0 - 56 - 0 - 124 - 0 - 108 - 0 - 108 - 0 - 56 - 128 - 128 - 64 - 64 - 32 - 32 - 16 - 16 - 8 - 8 - 4 - 4 - 2 - 2 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 8 - 255 - 64 - 255 - 17 - 255 - 0 - 255 - 0 - 255 - 255 - 0 - 255 - 255 - 255 - 0 - 255 - 255 - 255 - 255 - 255 - 126 - 126 - 255 - 131 - 255 - 187 - 255 - 163 - 255 - 163 - 255 - 135 - 255 - 255 - 126 - 126 - 126 - 126 - 131 - 131 - 159 - 159 - 159 - 159 - 159 - 159 - 255 - 255 - 255 - 255 - 126 - 126 - 255 - 255 - 255 - 34 - 255 - 34 - 255 - 34 - 255 - 255 - 255 - 136 - 255 - 136 - 255 - 136 - 63 - 63 - 127 - 127 - 255 - 200 - 255 - 129 - 255 - 144 - 255 - 196 - 255 - 255 - 255 - 255 - 252 - 252 - 254 - 254 - 255 - 39 - 255 - 3 - 255 - 19 - 255 - 71 - 255 - 255 - 255 - 255 - 62 - 62 - 99 - 99 - 193 - 193 - 129 - 129 - 131 - 131 - 131 - 131 - 239 - 239 - 127 - 127 - 63 - 63 - 127 - 127 - 255 - 255 - 255 - 255 - 247 - 247 - 213 - 213 - 85 - 85 - 81 - 81 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 119 - 119 - 85 - 85 - 85 - 85 - 17 - 17 - 252 - 252 - 254 - 254 - 255 - 255 - 255 - 255 - 119 - 119 - 85 - 85 - 85 - 85 - 20 - 20 - 255 - 255 - 255 - 153 - 255 - 153 - 255 - 153 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 200 - 255 - 129 - 255 - 144 - 255 - 196 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 39 - 255 - 3 - 255 - 19 - 255 - 71 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 128 - 255 - 128 - 255 - 128 - 255 - 128 - 255 - 255 - 127 - 64 - 127 - 64 - 255 - 255 - 199 - 63 - 199 - 63 - 199 - 63 - 199 - 63 - 255 - 255 - 230 - 30 - 230 - 30 - 127 - 64 - 127 - 64 - 127 - 64 - 127 - 64 - 63 - 63 - 127 - 64 - 127 - 64 - 127 - 64 - 230 - 30 - 230 - 30 - 230 - 30 - 230 - 30 - 252 - 252 - 230 - 30 - 230 - 30 - 230 - 30 - 253 - 253 - 255 - 134 - 255 - 132 - 255 - 132 - 255 - 132 - 255 - 132 - 255 - 132 - 255 - 132 - 247 - 247 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 192 - 255 - 96 - 255 - 48 - 255 - 16 - 255 - 31 - 255 - 24 - 255 - 24 - 255 - 24 - 255 - 132 - 255 - 132 - 255 - 132 - 135 - 252 - 132 - 255 - 252 - 255 - 255 - 255 - 253 - 253 - 255 - 8 - 255 - 8 - 255 - 8 - 255 - 8 - 8 - 255 - 8 - 255 - 255 - 255 - 247 - 247 - 255 - 24 - 255 - 24 - 255 - 24 - 255 - 24 - 63 - 255 - 127 - 240 - 255 - 224 - 255 - 192 - 191 - 191 - 255 - 97 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 255 - 33 - 225 - 63 - 33 - 255 - 63 - 255 - 255 - 255 - 191 - 191 - 102 - 102 - 255 - 153 - 255 - 153 - 255 - 153 - 255 - 153 - 255 - 153 - 255 - 153 - 102 - 102 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 17 - 17 - 17 - 17 - 17 - 17 - 17 - 17 - 255 - 17 - 17 - 255 - 255 - 255 - 126 - 126 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 129 - 255 - 126 - 126 - 195 - 114 - 90 - 195 - 187 - 90 - 195 - 101 - 91 - 195 - 235 - 91 - 195 - 68 - 92 - 195 - 222 - 92 - 205 - 75 - 88 - 205 - 146 - 88 - 201 - 250 - 29 - 218 - 254 - 3 - 200 - 33 - 0 - 218 - 126 - 61 - 119 - 192 - 62 - 40 - 119 - 35 - 42 - 78 - 43 - 214 - 1 - 39 - 34 - 254 - 153 - 32 - 4 - 13 - 121 - 119 - 201 - 33 - 29 - 218 - 254 - 80 - 40 - 9 - 167 - 192 - 177 - 32 - 15 - 62 - 3 - 119 - 201 - 121 - 167 - 192 - 62 - 2 - 119 - 62 - 80 - 224 - 6 - 201 - 121 - 254 - 1 - 192 - 62 - 1 - 119 - 62 - 48 - 224 - 6 - 201 - 240 - 237 - 71 - 167 - 202 - 165 - 89 - 250 - 11 - 218 - 111 - 38 - 192 - 17 - 8 - 0 - 229 - 25 - 125 - 234 - 11 - 218 - 254 - 80 - 32 - 5 - 62 - 48 - 234 - 11 - 218 - 225 - 14 - 32 - 22 - 246 - 125 - 254 - 48 - 32 - 18 - 121 - 234 - 3 - 218 - 122 - 234 - 7 - 218 - 120 - 254 - 192 - 32 - 65 - 234 - 12 - 218 - 24 - 60 - 254 - 56 - 32 - 18 - 121 - 234 - 4 - 218 - 122 - 234 - 8 - 218 - 120 - 254 - 192 - 32 - 43 - 234 - 13 - 218 - 24 - 38 - 254 - 64 - 32 - 18 - 121 - 234 - 5 - 218 - 122 - 234 - 9 - 218 - 120 - 254 - 192 - 32 - 21 - 234 - 14 - 218 - 24 - 16 - 121 - 234 - 6 - 218 - 122 - 234 - 10 - 218 - 120 - 254 - 192 - 32 - 3 - 234 - 15 - 218 - 240 - 236 - 34 - 240 - 235 - 34 - 120 - 17 - 88 - 89 - 254 - 1 - 40 - 57 - 20 - 254 - 2 - 40 - 52 - 20 - 254 - 4 - 40 - 47 - 20 - 254 - 5 - 40 - 42 - 20 - 254 - 8 - 40 - 37 - 22 - 89 - 29 - 254 - 16 - 40 - 30 - 20 - 254 - 32 - 40 - 25 - 20 - 254 - 64 - 40 - 20 - 20 - 254 - 80 - 40 - 15 - 20 - 254 - 128 - 40 - 10 - 20 - 30 - 95 - 254 - 255 - 40 - 3 - 17 - 254 - 246 - 122 - 34 - 35 - 240 - 236 - 34 - 240 - 235 - 198 - 8 - 34 - 123 - 119 - 175 - 224 - 237 - 224 - 236 - 224 - 235 - 120 - 17 - 0 - 1 - 254 - 1 - 40 - 54 - 20 - 254 - 2 - 40 - 49 - 20 - 20 - 254 - 4 - 40 - 43 - 20 - 254 - 5 - 40 - 38 - 22 - 8 - 254 - 8 - 40 - 32 - 22 - 16 - 254 - 16 - 40 - 26 - 22 - 32 - 254 - 32 - 40 - 20 - 22 - 64 - 254 - 64 - 40 - 14 - 22 - 80 - 254 - 80 - 40 - 8 - 22 - 128 - 254 - 128 - 40 - 2 - 24 - 3 - 205 - 102 - 1 - 33 - 48 - 192 - 229 - 126 - 167 - 202 - 102 - 90 - 125 - 1 - 6 - 218 - 17 - 10 - 218 - 33 - 19 - 218 - 254 - 72 - 40 - 73 - 13 - 29 - 45 - 254 - 64 - 40 - 48 - 13 - 29 - 45 - 254 - 56 - 40 - 22 - 13 - 29 - 45 - 250 - 12 - 218 - 254 - 192 - 40 - 65 - 126 - 60 - 119 - 254 - 2 - 194 - 102 - 90 - 175 - 119 - 24 - 53 - 250 - 13 - 218 - 254 - 192 - 40 - 46 - 126 - 60 - 119 - 254 - 2 - 194 - 102 - 90 - 175 - 119 - 24 - 34 - 250 - 14 - 218 - 254 - 192 - 40 - 27 - 126 - 60 - 119 - 254 - 2 - 32 - 101 - 175 - 119 - 24 - 16 - 250 - 15 - 218 - 254 - 192 - 40 - 9 - 126 - 60 - 119 - 254 - 2 - 32 - 83 - 175 - 119 - 225 - 229 - 53 - 44 - 44 - 44 - 44 - 53 - 45 - 45 - 126 - 254 - 246 - 56 - 19 - 26 - 60 - 18 - 119 - 254 - 249 - 56 - 11 - 61 - 61 - 119 - 254 - 247 - 40 - 4 - 61 - 61 - 18 - 119 - 10 - 61 - 2 - 32 - 42 - 62 - 32 - 2 - 62 - 246 - 18 - 175 - 50 - 50 - 34 - 44 - 44 - 44 - 34 - 34 - 119 - 125 - 33 - 12 - 218 - 1 - 4 - 0 - 254 - 54 - 40 - 11 - 44 - 254 - 62 - 40 - 6 - 44 - 254 - 70 - 40 - 1 - 44 - 175 - 119 - 9 - 119 - 225 - 17 - 8 - 0 - 25 - 125 - 254 - 80 - 194 - 168 - 89 - 201 - 33 - 48 - 192 - 240 - 4 - 230 - 3 - 60 - 71 - 62 - 32 - 198 - 24 - 5 - 32 - 251 - 71 - 34 - 62 - 16 - 79 - 34 - 175 - 87 - 240 - 153 - 254 - 2 - 32 - 3 - 62 - 32 - 87 - 122 - 34 - 44 - 120 - 34 - 121 - 198 - 8 - 34 - 122 - 60 - 34 - 44 - 120 - 198 - 8 - 71 - 34 - 121 - 34 - 122 - 198 - 16 - 87 - 34 - 44 - 120 - 34 - 121 - 198 - 8 - 34 - 20 - 122 - 119 - 62 - 21 - 224 - 179 - 201 - 250 - 39 - 218 - 203 - 71 - 40 - 7 - 240 - 128 - 203 - 71 - 194 - 86 - 91 - 33 - 34 - 218 - 126 - 60 - 119 - 254 - 3 - 192 - 175 - 119 - 250 - 39 - 218 - 203 - 71 - 40 - 44 - 33 - 48 - 192 - 6 - 4 - 126 - 254 - 128 - 40 - 12 - 62 - 24 - 134 - 34 - 44 - 44 - 44 - 5 - 32 - 246 - 24 - 22 - 6 - 2 - 62 - 56 - 34 - 44 - 44 - 44 - 5 - 32 - 249 - 6 - 2 - 62 - 64 - 34 - 44 - 44 - 44 - 5 - 32 - 249 - 33 - 234 - 152 - 1 - 96 - 0 - 17 - 39 - 218 - 26 - 60 - 18 - 254 - 3 - 56 - 16 - 9 - 254 - 5 - 56 - 11 - 9 - 254 - 7 - 56 - 6 - 33 - 234 - 152 - 175 - 60 - 18 - 124 - 234 - 24 - 218 - 125 - 234 - 25 - 218 - 33 - 35 - 218 - 26 - 203 - 71 - 40 - 14 - 62 - 46 - 34 - 62 - 47 - 34 - 62 - 47 - 34 - 62 - 48 - 119 - 24 - 12 - 62 - 45 - 34 - 62 - 44 - 34 - 62 - 44 - 34 - 62 - 45 - 119 - 62 - 22 - 224 - 179 - 201 - 175 - 234 - 34 - 218 - 234 - 39 - 218 - 234 - 26 - 218 - 62 - 23 - 224 - 179 - 201 - 33 - 28 - 218 - 126 - 167 - 32 - 7 - 52 - 33 - 232 - 223 - 62 - 10 - 119 - 33 - 49 - 192 - 17 - 157 - 92 - 6 - 4 - 250 - 20 - 218 - 167 - 40 - 4 - 19 - 61 - 32 - 252 - 52 - 44 - 26 - 79 - 254 - 255 - 32 - 9 - 17 - 157 - 92 - 175 - 234 - 20 - 218 - 26 - 79 - 240 - 153 - 254 - 2 - 32 - 4 - 121 - 198 - 32 - 79 - 121 - 34 - 19 - 44 - 44 - 5 - 32 - 221 - 250 - 20 - 218 - 198 - 4 - 234 - 20 - 218 - 33 - 49 - 192 - 58 - 254 - 128 - 48 - 42 - 198 - 4 - 224 - 174 - 126 - 198 - 16 - 224 - 173 - 1 - 22 - 218 - 10 - 61 - 2 - 192 - 62 - 1 - 2 - 205 - 83 - 1 - 126 - 254 - 46 - 40 - 5 - 254 - 48 - 40 - 6 - 201 - 62 - 24 - 224 - 179 - 201 - 62 - 25 - 224 - 179 - 201 - 175 - 234 - 28 - 218 - 62 - 26 - 224 - 179 - 201 - 33 - 48 - 192 - 6 - 4 - 17 - 157 - 92 - 250 - 20 - 218 - 167 - 40 - 5 - 79 - 19 - 13 - 32 - 252 - 52 - 44 - 44 - 26 - 79 - 254 - 255 - 32 - 9 - 17 - 157 - 92 - 175 - 234 - 20 - 218 - 26 - 79 - 240 - 153 - 254 - 2 - 32 - 4 - 121 - 198 - 32 - 79 - 121 - 34 - 19 - 44 - 5 - 32 - 221 - 250 - 20 - 218 - 198 - 4 - 234 - 20 - 218 - 33 - 48 - 192 - 126 - 254 - 80 - 40 - 9 - 254 - 104 - 40 - 5 - 254 - 128 - 40 - 1 - 201 - 62 - 8 - 234 - 22 - 218 - 62 - 23 - 224 - 179 - 201 - 33 - 48 - 192 - 6 - 4 - 17 - 157 - 92 - 250 - 20 - 218 - 167 - 40 - 5 - 79 - 19 - 13 - 32 - 252 - 53 - 44 - 44 - 26 - 79 - 254 - 255 - 32 - 9 - 17 - 157 - 92 - 175 - 234 - 20 - 218 - 26 - 79 - 240 - 153 - 254 - 2 - 32 - 4 - 121 - 198 - 32 - 79 - 121 - 34 - 19 - 44 - 5 - 32 - 221 - 250 - 20 - 218 - 198 - 4 - 234 - 20 - 218 - 33 - 48 - 192 - 126 - 254 - 56 - 40 - 9 - 254 - 80 - 40 - 5 - 254 - 104 - 40 - 1 - 201 - 62 - 8 - 234 - 22 - 218 - 62 - 23 - 224 - 179 - 201 - 2 - 3 - 18 - 19 - 2 - 3 - 18 - 19 - 2 - 3 - 18 - 19 - 2 - 3 - 18 - 19 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 0 - 1 - 22 - 23 - 0 - 1 - 22 - 23 - 0 - 1 - 22 - 23 - 0 - 1 - 22 - 23 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 4 - 5 - 20 - 21 - 255 - 250 - 23 - 218 - 167 - 194 - 105 - 93 - 14 - 2 - 33 - 209 - 152 - 17 - 96 - 0 - 250 - 48 - 192 - 71 - 254 - 56 - 40 - 4 - 62 - 44 - 34 - 50 - 25 - 120 - 254 - 80 - 40 - 4 - 62 - 44 - 34 - 50 - 25 - 120 - 254 - 104 - 40 - 4 - 62 - 44 - 34 - 50 - 25 - 120 - 254 - 128 - 40 - 4 - 62 - 44 - 34 - 119 - 13 - 32 - 205 - 33 - 49 - 192 - 58 - 198 - 24 - 224 - 174 - 126 - 198 - 8 - 224 - 173 - 205 - 83 - 1 - 126 - 254 - 3 - 40 - 27 - 254 - 229 - 40 - 30 - 254 - 2 - 40 - 12 - 62 - 2 - 234 - 23 - 218 - 33 - 232 - 223 - 62 - 13 - 119 - 201 - 62 - 3 - 234 - 23 - 218 - 24 - 242 - 62 - 4 - 234 - 23 - 218 - 24 - 235 - 240 - 181 - 167 - 40 - 12 - 33 - 232 - 223 - 62 - 14 - 119 - 62 - 1 - 234 - 23 - 218 - 201 - 62 - 16 - 234 - 23 - 218 - 24 - 211 - 250 - 23 - 218 - 254 - 16 - 48 - 48 - 254 - 2 - 210 - 2 - 94 - 250 - 27 - 218 - 61 - 234 - 27 - 218 - 192 - 62 - 64 - 234 - 27 - 218 - 175 - 234 - 23 - 218 - 234 - 20 - 218 - 234 - 28 - 218 - 234 - 30 - 218 - 234 - 32 - 218 - 60 - 234 - 22 - 218 - 62 - 64 - 234 - 31 - 218 - 62 - 27 - 224 - 179 - 201 - 250 - 31 - 218 - 61 - 234 - 31 - 218 - 192 - 62 - 3 - 234 - 31 - 218 - 250 - 23 - 218 - 60 - 234 - 23 - 218 - 254 - 40 - 40 - 63 - 250 - 28 - 218 - 167 - 32 - 16 - 60 - 234 - 28 - 218 - 33 - 224 - 223 - 62 - 4 - 119 - 240 - 153 - 254 - 2 - 40 - 41 - 33 - 50 - 192 - 6 - 4 - 250 - 30 - 218 - 167 - 32 - 15 - 60 - 234 - 30 - 218 - 126 - 198 - 32 - 34 - 44 - 44 - 44 - 5 - 32 - 246 - 201 - 61 - 234 - 30 - 218 - 126 - 214 - 32 - 34 - 44 - 44 - 44 - 5 - 32 - 246 - 201 - 62 - 1 - 234 - 23 - 218 - 60 - 224 - 153 - 224 - 181 - 201 - 250 - 31 - 218 - 61 - 234 - 31 - 218 - 192 - 62 - 4 - 234 - 31 - 218 - 250 - 32 - 218 - 167 - 32 - 42 - 33 - 48 - 192 - 62 - 56 - 71 - 34 - 62 - 88 - 79 - 34 - 44 - 44 - 120 - 34 - 121 - 198 - 8 - 34 - 44 - 44 - 120 - 198 - 8 - 71 - 34 - 121 - 34 - 44 - 44 - 120 - 34 - 121 - 198 - 8 - 34 - 175 - 60 - 234 - 32 - 218 - 201 - 33 - 48 - 192 - 250 - 33 - 218 - 254 - 2 - 202 - 218 - 94 - 167 - 32 - 101 - 126 - 61 - 34 - 44 - 62 - 8 - 71 - 240 - 153 - 254 - 2 - 32 - 4 - 120 - 198 - 32 - 71 - 120 - 34 - 44 - 126 - 61 - 34 - 44 - 120 - 60 - 34 - 44 - 126 - 61 - 34 - 44 - 120 - 198 - 16 - 71 - 34 - 44 - 126 - 61 - 34 - 44 - 120 - 60 - 119 - 250 - 32 - 218 - 60 - 234 - 32 - 218 - 254 - 6 - 192 - 33 - 224 - 223 - 62 - 8 - 119 - 250 - 21 - 218 - 167 - 254 - 153 - 48 - 23 - 198 - 1 - 39 - 234 - 21 - 218 - 17 - 139 - 152 - 250 - 21 - 218 - 71 - 230 - 15 - 18 - 29 - 120 - 230 - 240 - 203 - 55 - 18 - 62 - 1 - 234 - 32 - 218 - 234 - 33 - 218 - 201 - 126 - 60 - 34 - 44 - 44 - 44 - 126 - 60 - 34 - 44 - 44 - 44 - 126 - 60 - 34 - 44 - 44 - 44 - 126 - 60 - 119 - 250 - 32 - 218 - 60 - 234 - 32 - 218 - 254 - 5 - 192 - 33 - 224 - 223 - 62 - 2 - 234 - 33 - 218 - 201 - 126 - 60 - 34 - 44 - 175 - 71 - 240 - 153 - 254 - 2 - 32 - 4 - 120 - 198 - 32 - 71 - 120 - 34 - 44 - 126 - 60 - 34 - 44 - 120 - 60 - 34 - 44 - 126 - 60 - 34 - 44 - 120 - 198 - 16 - 71 - 34 - 44 - 126 - 60 - 34 - 44 - 120 - 60 - 119 - 175 - 234 - 32 - 218 - 234 - 33 - 218 - 250 - 23 - 218 - 61 - 234 - 23 - 218 - 201 - 114 - 138 - 61 - 254 - 9 - 48 - 144 - 130 - 130 - 130 - 147 - 111 - 139 - 61 - 254 - 2 - 141 - 145 - 54 - 80 - 96 - 112 - 128 - 137 - 61 - 254 - 2 - 142 - 65 - 54 - 81 - 97 - 113 - 128 - 138 - 61 - 254 - 2 - 143 - 65 - 54 - 82 - 98 - 114 - 128 - 139 - 61 - 225 - 62 - 254 - 7 - 49 - 51 - 67 - 83 - 99 - 115 - 128 - 130 - 61 - 29 - 225 - 1 - 254 - 7 - 49 - 52 - 68 - 84 - 100 - 116 - 128 - 130 - 61 - 24 - 177 - 28 - 225 - 9 - 254 - 7 - 49 - 53 - 69 - 85 - 101 - 117 - 128 - 130 - 61 - 25 - 177 - 29 - 225 - 8 - 254 - 10 - 132 - 54 - 70 - 86 - 102 - 118 - 136 - 130 - 61 - 41 - 177 - 10 - 225 - 9 - 254 - 7 - 133 - 55 - 71 - 87 - 103 - 119 - 128 - 129 - 61 - 177 - 27 - 254 - 7 - 133 - 56 - 72 - 88 - 104 - 120 - 128 - 129 - 61 - 177 - 29 - 225 - 78 - 254 - 9 - 134 - 57 - 73 - 89 - 105 - 121 - 135 - 131 - 61 - 225 - 79 - 254 - 7 - 49 - 58 - 74 - 90 - 106 - 122 - 128 - 129 - 61 - 225 - 92 - 254 - 7 - 49 - 59 - 75 - 91 - 107 - 123 - 128 - 129 - 61 - 225 - 93 - 254 - 2 - 49 - 65 - 67 - 108 - 124 - 128 - 129 - 61 - 225 - 94 - 254 - 2 - 49 - 65 - 67 - 109 - 125 - 128 - 129 - 61 - 225 - 95 - 254 - 2 - 49 - 65 - 67 - 110 - 126 - 128 - 129 - 61 - 254 - 2 - 49 - 146 - 82 - 127 - 128 - 129 - 61 - 254 - 9 - 50 - 66 - 131 - 131 - 131 - 131 - 129 - 137 - 61 - 254 - 114 - 138 - 61 - 254 - 12 - 15 - 0 - 15 - 15 - 128 - 19 - 12 - 132 - 33 - 12 - 0 - 37 - 12 - 132 - 40 - 4 - 0 - 41 - 4 - 0 - 42 - 6 - 132 - 45 - 139 - 142 - 50 - 15 - 132 - 59 - 15 - 4 - 60 - 15 - 132 - 61 - 15 - 132 - 64 - 3 - 142 - 66 - 15 - 142 - 70 - 141 - 132 - 79 - 15 - 0 - 82 - 4 - 142 - 82 - 143 - 14 - 83 - 141 - 132 - 85 - 15 - 0 - 87 - 12 - 132 - 93 - 12 - 0 - 94 - 140 - 128 - 96 - 12 - 128 - 98 - 12 - 0 - 100 - 15 - 0 - 105 - 15 - 0 - 109 - 15 - 132 - 117 - 15 - 14 - 120 - 15 - 132 - 122 - 15 - 14 - 128 - 12 - 132 - 129 - 8 - 191 - 137 - 3 - 142 - 142 - 135 - 10 - 146 - 132 - 11 - 255 - 255 - 14 - 12 - 132 - 16 - 10 - 132 - 17 - 5 - 194 - 19 - 8 - 0 - 21 - 6 - 194 - 23 - 8 - 66 - 24 - 8 - 132 - 26 - 7 - 194 - 28 - 5 - 66 - 30 - 8 - 194 - 34 - 12 - 4 - 36 - 10 - 4 - 39 - 8 - 132 - 47 - 4 - 4 - 47 - 8 - 132 - 48 - 8 - 0 - 52 - 133 - 10 - 55 - 138 - 10 - 57 - 4 - 194 - 62 - 8 - 132 - 63 - 8 - 194 - 66 - 7 - 194 - 68 - 6 - 66 - 71 - 6 - 66 - 73 - 4 - 194 - 75 - 8 - 132 - 76 - 7 - 194 - 78 - 5 - 66 - 80 - 8 - 66 - 83 - 15 - 132 - 88 - 12 - 0 - 89 - 137 - 0 - 93 - 136 - 10 - 96 - 4 - 10 - 98 - 137 - 10 - 103 - 4 - 194 - 104 - 139 - 4 - 107 - 4 - 66 - 108 - 8 - 132 - 116 - 10 - 11 - 126 - 12 - 132 - 127 - 10 - 66 - 129 - 6 - 66 - 132 - 7 - 10 - 135 - 133 - 54 - 136 - 5 - 54 - 255 - 13 - 77 - 2 - 15 - 10 - 132 - 19 - 15 - 132 - 27 - 6 - 12 - 28 - 6 - 12 - 29 - 79 - 2 - 31 - 13 - 128 - 36 - 79 - 2 - 39 - 79 - 130 - 40 - 6 - 140 - 40 - 77 - 2 - 42 - 15 - 132 - 47 - 8 - 140 - 48 - 8 - 12 - 49 - 8 - 140 - 50 - 206 - 2 - 53 - 11 - 132 - 55 - 76 - 2 - 57 - 205 - 2 - 64 - 4 - 12 - 65 - 4 - 12 - 66 - 141 - 191 - 74 - 11 - 191 - 76 - 141 - 63 - 81 - 4 - 140 - 82 - 4 - 140 - 84 - 68 - 130 - 85 - 133 - 140 - 94 - 12 - 4 - 94 - 14 - 128 - 97 - 132 - 140 - 98 - 132 - 140 - 101 - 132 - 12 - 102 - 132 - 12 - 103 - 132 - 12 - 105 - 16 - 132 - 111 - 10 - 191 - 117 - 141 - 54 - 118 - 13 - 54 - 118 - 141 - 54 - 119 - 13 - 54 - 119 - 141 - 54 - 125 - 142 - 63 - 128 - 13 - 191 - 135 - 142 - 191 - 138 - 13 - 63 - 141 - 5 - 140 - 146 - 13 - 8 - 255 - 255 - 21 - 95 - 190 - 98 - 23 - 104 - 199 - 104 - 190 - 98 - 0 - 98 - 190 - 98 - 129 - 99 - 95 - 100 - 190 - 98 - 13 - 101 - 190 - 98 - 0 - 98 - 129 - 99 - 0 - 98 - 190 - 98 - 222 - 101 - 181 - 102 - 187 - 103 - 255 - 190 - 98 - 23 - 104 - 199 - 104 - 166 - 105 - 97 - 106 - 35 - 107 - 97 - 106 - 245 - 107 - 171 - 108 - 35 - 107 - 35 - 107 - 41 - 109 - 173 - 109 - 245 - 107 - 171 - 108 - 166 - 105 - 187 - 103 - 255 - 190 - 98 - 202 - 118 - 159 - 119 - 47 - 110 - 33 - 111 - 242 - 111 - 242 - 111 - 253 - 112 - 33 - 111 - 47 - 110 - 47 - 110 - 83 - 114 - 242 - 114 - 224 - 115 - 200 - 116 - 135 - 113 - 135 - 113 - 198 - 117 - 255 - 0 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 129 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 196 - 112 - 114 - 96 - 97 - 254 - 2 - 83 - 64 - 196 - 113 - 115 - 96 - 97 - 254 - 2 - 83 - 64 - 193 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 151 - 50 - 82 - 52 - 82 - 82 - 96 - 97 - 254 - 2 - 83 - 64 - 146 - 51 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 129 - 129 - 94 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 94 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 65 - 68 - 161 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 65 - 69 - 177 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 66 - 70 - 193 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 67 - 71 - 211 - 94 - 96 - 97 - 254 - 2 - 83 - 64 - 211 - 54 - 96 - 97 - 254 - 2 - 83 - 64 - 196 - 112 - 114 - 96 - 97 - 254 - 2 - 83 - 64 - 181 - 54 - 113 - 115 - 96 - 97 - 254 - 2 - 83 - 64 - 177 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 178 - 54 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 146 - 129 - 54 - 211 - 94 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 54 - 196 - 50 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 54 - 193 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 94 - 181 - 50 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 94 - 177 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 49 - 68 - 145 - 94 - 226 - 96 - 97 - 254 - 4 - 83 - 64 - 65 - 69 - 161 - 94 - 226 - 96 - 97 - 254 - 4 - 83 - 64 - 66 - 70 - 177 - 94 - 226 - 96 - 97 - 254 - 4 - 83 - 64 - 65 - 69 - 193 - 94 - 226 - 96 - 97 - 254 - 4 - 83 - 64 - 66 - 70 - 211 - 94 - 96 - 97 - 254 - 4 - 83 - 64 - 67 - 71 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 181 - 82 - 82 - 82 - 96 - 97 - 254 - 2 - 83 - 64 - 166 - 54 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 166 - 94 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 166 - 54 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 166 - 94 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 113 - 129 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 113 - 130 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 113 - 129 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 113 - 130 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 113 - 129 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 181 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 121 - 112 - 114 - 114 - 114 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 121 - 113 - 115 - 115 - 115 - 96 - 232 - 232 - 232 - 97 - 254 - 2 - 83 - 64 - 81 - 130 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 130 - 196 - 50 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 130 - 161 - 129 - 193 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 128 - 181 - 50 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 130 - 177 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 130 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 55 - 253 - 244 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 253 - 80 - 254 - 2 - 83 - 64 - 226 - 253 - 82 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 161 - 130 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 129 - 161 - 130 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 161 - 130 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 211 - 54 - 96 - 97 - 254 - 2 - 83 - 64 - 193 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 177 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 161 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 146 - 54 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 54 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 98 - 129 - 54 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 129 - 161 - 127 - 226 - 96 - 97 - 254 - 3 - 83 - 64 - 129 - 82 - 54 - 129 - 161 - 127 - 226 - 96 - 97 - 254 - 3 - 83 - 64 - 129 - 82 - 94 - 129 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 129 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 98 - 129 - 94 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 94 - 161 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 146 - 94 - 127 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 161 - 94 - 196 - 50 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 178 - 94 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 49 - 68 - 181 - 50 - 60 - 49 - 96 - 97 - 254 - 4 - 83 - 64 - 65 - 69 - 177 - 51 - 211 - 94 - 96 - 97 - 254 - 4 - 83 - 64 - 66 - 70 - 226 - 253 - 80 - 254 - 4 - 83 - 64 - 67 - 71 - 254 - 2 - 83 - 64 - 181 - 50 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 177 - 51 - 211 - 54 - 96 - 97 - 254 - 2 - 83 - 64 - 166 - 50 - 49 - 52 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 162 - 51 - 54 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 177 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 178 - 54 - 94 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 161 - 54 - 211 - 94 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 54 - 226 - 253 - 80 - 254 - 2 - 83 - 64 - 129 - 54 - 254 - 2 - 83 - 64 - 113 - 54 - 226 - 253 - 82 - 254 - 2 - 83 - 64 - 97 - 54 - 166 - 72 - 74 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 54 - 166 - 73 - 75 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 94 - 181 - 76 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 94 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 94 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 94 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 94 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 130 - 166 - 94 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 130 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 128 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 49 - 68 - 181 - 99 - 99 - 99 - 96 - 97 - 254 - 4 - 83 - 64 - 65 - 69 - 177 - 54 - 226 - 253 - 80 - 254 - 4 - 83 - 64 - 66 - 70 - 161 - 54 - 226 - 253 - 82 - 254 - 4 - 83 - 64 - 67 - 71 - 145 - 54 - 211 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 129 - 54 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 113 - 54 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 97 - 54 - 166 - 99 - 244 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 54 - 146 - 253 - 99 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 81 - 94 - 151 - 99 - 99 - 244 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 98 - 94 - 99 - 146 - 253 - 99 - 196 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 106 - 99 - 99 - 244 - 99 - 99 - 244 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 91 - 99 - 99 - 99 - 94 - 99 - 99 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 76 - 99 - 99 - 99 - 99 - 244 - 99 - 99 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 53 - 253 - 99 - 151 - 99 - 99 - 99 - 99 - 99 - 96 - 97 - 254 - 0 - 83 - 64 - 99 - 99 - 99 - 99 - 99 - 99 - 244 - 99 - 99 - 99 - 99 - 99 - 96 - 97 - 254 - 8 - 83 - 64 - 99 - 99 - 99 - 99 - 99 - 99 - 151 - 99 - 99 - 99 - 99 - 99 - 96 - 97 - 254 - 2 - 83 - 64 - 211 - 94 - 96 - 97 - 254 - 2 - 83 - 64 - 49 - 244 - 81 - 244 - 113 - 244 - 145 - 244 - 177 - 244 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 142 - 241 - 143 - 254 - 0 - 19 - 36 - 143 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 19 - 36 - 142 - 254 - 0 - 33 - 57 - 142 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 33 - 57 - 143 - 254 - 0 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 1 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 196 - 253 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 113 - 244 - 145 - 244 - 181 - 244 - 127 - 127 - 127 - 127 - 254 - 1 - 127 - 196 - 253 - 127 - 254 - 1 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 196 - 116 - 119 - 127 - 127 - 254 - 196 - 117 - 120 - 127 - 127 - 254 - 0 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 118 - 121 - 127 - 127 - 254 - 0 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 127 - 127 - 254 - 0 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 193 - 244 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 8 - 253 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 116 - 253 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 81 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 81 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 81 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 81 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 51 - 116 - 119 - 127 - 129 - 244 - 161 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 1 - 127 - 51 - 117 - 120 - 127 - 226 - 253 - 127 - 254 - 6 - 114 - 114 - 114 - 118 - 121 - 127 - 193 - 244 - 226 - 253 - 127 - 254 - 0 - 115 - 115 - 115 - 115 - 115 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 226 - 253 - 82 - 254 - 2 - 83 - 64 - 65 - 68 - 181 - 50 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 65 - 69 - 177 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 66 - 70 - 136 - 50 - 49 - 49 - 49 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 50 - 67 - 71 - 136 - 51 - 50 - 49 - 49 - 49 - 49 - 96 - 97 - 254 - 2 - 83 - 64 - 145 - 51 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 96 - 97 - 254 - 2 - 83 - 64 - 226 - 253 - 80 - 254 - 2 - 83 - 64 - 177 - 104 - 254 - 2 - 83 - 64 - 177 - 105 - 254 - 2 - 83 - 64 - 49 - 68 - 181 - 105 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 65 - 69 - 181 - 105 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 66 - 70 - 177 - 105 - 254 - 4 - 83 - 64 - 67 - 71 - 113 - 104 - 177 - 106 - 254 - 2 - 83 - 64 - 81 - 244 - 113 - 105 - 254 - 2 - 83 - 64 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 81 - 244 - 113 - 105 - 254 - 2 - 83 - 64 - 113 - 106 - 254 - 2 - 83 - 64 - 49 - 244 - 113 - 104 - 254 - 2 - 83 - 64 - 49 - 129 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 49 - 244 - 113 - 106 - 241 - 54 - 254 - 2 - 83 - 64 - 177 - 104 - 225 - 54 - 254 - 2 - 83 - 64 - 177 - 105 - 225 - 94 - 254 - 2 - 83 - 64 - 177 - 105 - 226 - 54 - 94 - 254 - 2 - 83 - 64 - 181 - 105 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 178 - 105 - 54 - 254 - 2 - 83 - 64 - 178 - 105 - 94 - 254 - 2 - 83 - 64 - 65 - 68 - 177 - 106 - 209 - 94 - 254 - 2 - 83 - 64 - 50 - 65 - 69 - 145 - 104 - 225 - 94 - 254 - 2 - 83 - 64 - 50 - 66 - 70 - 145 - 105 - 241 - 94 - 254 - 2 - 83 - 64 - 50 - 67 - 71 - 145 - 105 - 254 - 2 - 83 - 64 - 81 - 244 - 151 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 145 - 105 - 241 - 54 - 254 - 2 - 83 - 64 - 145 - 105 - 225 - 54 - 254 - 2 - 83 - 64 - 145 - 106 - 209 - 54 - 254 - 2 - 83 - 64 - 113 - 104 - 209 - 94 - 254 - 2 - 83 - 64 - 49 - 244 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 113 - 106 - 241 - 94 - 254 - 2 - 83 - 64 - 113 - 104 - 254 - 2 - 83 - 64 - 113 - 105 - 254 - 2 - 83 - 64 - 113 - 105 - 254 - 2 - 83 - 64 - 113 - 105 - 254 - 2 - 83 - 64 - 113 - 105 - 226 - 50 - 49 - 254 - 2 - 83 - 64 - 113 - 105 - 225 - 51 - 254 - 2 - 83 - 64 - 113 - 105 - 254 - 2 - 83 - 64 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 49 - 68 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 65 - 69 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 66 - 70 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 65 - 69 - 113 - 105 - 225 - 54 - 254 - 4 - 83 - 64 - 66 - 70 - 113 - 105 - 225 - 94 - 254 - 4 - 83 - 64 - 67 - 71 - 113 - 105 - 226 - 54 - 94 - 254 - 2 - 83 - 64 - 113 - 105 - 209 - 54 - 241 - 50 - 254 - 2 - 83 - 64 - 113 - 105 - 209 - 94 - 241 - 51 - 254 - 2 - 83 - 64 - 113 - 105 - 181 - 50 - 49 - 49 - 60 - 49 - 254 - 2 - 83 - 64 - 113 - 106 - 177 - 51 - 241 - 94 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 81 - 244 - 113 - 244 - 145 - 244 - 225 - 104 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 226 - 105 - 55 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 161 - 104 - 225 - 106 - 254 - 2 - 83 - 64 - 161 - 105 - 254 - 2 - 83 - 64 - 166 - 105 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 113 - 104 - 161 - 105 - 241 - 54 - 254 - 2 - 83 - 64 - 113 - 105 - 161 - 106 - 225 - 54 - 254 - 2 - 83 - 64 - 49 - 129 - 113 - 105 - 225 - 94 - 254 - 2 - 83 - 64 - 49 - 130 - 113 - 105 - 226 - 54 - 94 - 254 - 2 - 83 - 64 - 49 - 129 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 2 - 83 - 64 - 49 - 130 - 113 - 105 - 178 - 95 - 54 - 225 - 104 - 254 - 2 - 83 - 64 - 49 - 129 - 113 - 105 - 166 - 50 - 82 - 60 - 82 - 105 - 82 - 254 - 2 - 83 - 64 - 113 - 105 - 161 - 51 - 211 - 94 - 105 - 55 - 254 - 2 - 83 - 64 - 113 - 106 - 225 - 105 - 254 - 2 - 83 - 64 - 177 - 129 - 226 - 106 - 94 - 254 - 2 - 83 - 64 - 113 - 104 - 254 - 2 - 83 - 64 - 49 - 68 - 121 - 105 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 55 - 254 - 4 - 83 - 64 - 65 - 69 - 113 - 106 - 254 - 4 - 83 - 64 - 66 - 70 - 254 - 4 - 83 - 64 - 67 - 71 - 254 - 2 - 83 - 64 - 196 - 50 - 49 - 49 - 49 - 254 - 2 - 83 - 64 - 193 - 51 - 254 - 2 - 83 - 64 - 226 - 50 - 49 - 254 - 2 - 83 - 64 - 225 - 51 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 65 - 244 - 254 - 2 - 83 - 64 - 65 - 244 - 254 - 2 - 83 - 64 - 65 - 244 - 254 - 2 - 83 - 64 - 129 - 127 - 254 - 2 - 83 - 64 - 129 - 127 - 254 - 2 - 83 - 64 - 129 - 127 - 254 - 2 - 83 - 64 - 49 - 244 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 49 - 244 - 225 - 104 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 226 - 105 - 55 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 225 - 105 - 254 - 2 - 83 - 64 - 225 - 106 - 254 - 2 - 83 - 64 - 49 - 68 - 254 - 4 - 83 - 64 - 65 - 69 - 254 - 4 - 83 - 64 - 66 - 70 - 254 - 4 - 83 - 64 - 67 - 71 - 241 - 99 - 254 - 2 - 83 - 64 - 226 - 253 - 99 - 254 - 2 - 83 - 64 - 211 - 253 - 99 - 254 - 2 - 83 - 64 - 196 - 253 - 99 - 254 - 2 - 83 - 64 - 181 - 253 - 99 - 254 - 2 - 83 - 64 - 166 - 253 - 99 - 254 - 2 - 83 - 64 - 151 - 253 - 99 - 254 - 2 - 83 - 64 - 81 - 129 - 151 - 253 - 99 - 254 - 2 - 83 - 64 - 151 - 253 - 99 - 254 - 2 - 83 - 64 - 49 - 68 - 166 - 253 - 99 - 254 - 4 - 83 - 64 - 65 - 69 - 181 - 253 - 99 - 254 - 4 - 83 - 64 - 66 - 70 - 241 - 54 - 254 - 4 - 83 - 64 - 65 - 69 - 211 - 253 - 99 - 254 - 4 - 83 - 64 - 66 - 70 - 211 - 54 - 99 - 99 - 254 - 4 - 83 - 64 - 67 - 71 - 193 - 54 - 241 - 99 - 254 - 2 - 83 - 64 - 193 - 94 - 254 - 2 - 83 - 64 - 209 - 94 - 254 - 2 - 83 - 64 - 225 - 94 - 254 - 2 - 83 - 64 - 241 - 94 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 226 - 50 - 49 - 254 - 2 - 83 - 64 - 226 - 51 - 50 - 254 - 2 - 83 - 64 - 241 - 51 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 2 - 83 - 64 - 254 - 11 - 101 - 110 - 109 - 110 - 109 - 101 - 101 - 101 - 101 - 101 - 101 - 226 - 101 - 110 - 254 - 11 - 102 - 109 - 110 - 109 - 110 - 102 - 102 - 102 - 102 - 102 - 102 - 226 - 102 - 109 - 254 - 6 - 101 - 110 - 109 - 110 - 89 - 91 - 145 - 95 - 226 - 101 - 110 - 254 - 6 - 102 - 109 - 110 - 109 - 90 - 92 - 226 - 102 - 109 - 254 - 5 - 101 - 110 - 109 - 102 - 85 - 226 - 101 - 110 - 254 - 3 - 102 - 109 - 110 - 65 - 86 - 98 - 93 - 53 - 226 - 102 - 109 - 254 - 3 - 101 - 110 - 109 - 65 - 87 - 226 - 101 - 110 - 254 - 3 - 102 - 109 - 102 - 66 - 88 - 43 - 161 - 129 - 226 - 102 - 109 - 254 - 2 - 101 - 110 - 66 - 89 - 91 - 161 - 130 - 226 - 101 - 110 - 254 - 2 - 102 - 109 - 66 - 90 - 92 - 161 - 129 - 226 - 102 - 109 - 254 - 2 - 101 - 110 - 66 - 87 - 85 - 146 - 95 - 130 - 226 - 101 - 110 - 254 - 2 - 102 - 109 - 161 - 129 - 226 - 102 - 109 - 254 - 2 - 101 - 110 - 66 - 86 - 87 - 226 - 101 - 110 - 254 - 2 - 110 - 109 - 65 - 43 - 196 - 101 - 101 - 110 - 109 - 254 - 2 - 109 - 110 - 65 - 85 - 98 - 93 - 53 - 196 - 102 - 102 - 109 - 110 - 254 - 2 - 102 - 109 - 65 - 87 - 226 - 102 - 109 - 254 - 3 - 101 - 110 - 101 - 66 - 56 - 43 - 226 - 101 - 110 - 254 - 6 - 102 - 109 - 110 - 101 - 56 - 85 - 226 - 102 - 109 - 254 - 9 - 101 - 110 - 109 - 110 - 101 - 101 - 101 - 101 - 101 - 226 - 101 - 110 - 254 - 9 - 102 - 109 - 110 - 109 - 102 - 102 - 102 - 102 - 102 - 226 - 102 - 109 - 254 - 4 - 101 - 110 - 109 - 102 - 81 - 87 - 226 - 101 - 78 - 254 - 3 - 102 - 109 - 110 - 81 - 85 - 181 - 112 - 114 - 114 - 110 - 109 - 254 - 3 - 101 - 110 - 109 - 81 - 85 - 181 - 113 - 115 - 115 - 109 - 110 - 254 - 3 - 102 - 109 - 110 - 81 - 88 - 226 - 102 - 109 - 254 - 3 - 101 - 110 - 109 - 67 - 43 - 43 - 86 - 226 - 101 - 110 - 254 - 3 - 102 - 109 - 110 - 81 - 37 - 226 - 102 - 109 - 254 - 3 - 101 - 110 - 109 - 81 - 87 - 166 - 112 - 114 - 114 - 114 - 114 - 114 - 254 - 3 - 102 - 109 - 110 - 166 - 113 - 115 - 115 - 115 - 115 - 115 - 254 - 3 - 101 - 110 - 109 - 254 - 3 - 102 - 109 - 110 - 254 - 3 - 101 - 110 - 109 - 151 - 112 - 114 - 114 - 114 - 114 - 114 - 114 - 254 - 3 - 102 - 109 - 110 - 151 - 113 - 115 - 115 - 115 - 115 - 115 - 115 - 254 - 3 - 101 - 110 - 109 - 254 - 3 - 102 - 109 - 110 - 81 - 87 - 254 - 3 - 101 - 110 - 109 - 81 - 88 - 225 - 101 - 254 - 3 - 102 - 109 - 110 - 166 - 112 - 114 - 114 - 114 - 110 - 101 - 254 - 3 - 101 - 110 - 109 - 81 - 85 - 166 - 113 - 115 - 115 - 115 - 109 - 110 - 254 - 3 - 102 - 109 - 110 - 81 - 86 - 226 - 102 - 109 - 254 - 3 - 101 - 110 - 109 - 81 - 87 - 226 - 101 - 110 - 254 - 4 - 102 - 109 - 110 - 101 - 81 - 88 - 226 - 102 - 109 - 254 - 6 - 101 - 110 - 109 - 110 - 109 - 86 - 196 - 101 - 101 - 109 - 110 - 254 - 6 - 102 - 109 - 110 - 109 - 110 - 88 - 196 - 102 - 110 - 110 - 109 - 254 - 5 - 101 - 110 - 109 - 110 - 109 - 98 - 93 - 53 - 196 - 101 - 109 - 109 - 110 - 254 - 6 - 102 - 109 - 110 - 109 - 110 - 86 - 196 - 102 - 110 - 110 - 109 - 254 - 22 - 110 - 109 - 110 - 109 - 89 - 91 - 196 - 101 - 109 - 109 - 110 - 254 - 7 - 244 - 109 - 110 - 109 - 110 - 90 - 92 - 196 - 102 - 110 - 110 - 109 - 254 - 6 - 244 - 110 - 109 - 110 - 109 - 43 - 196 - 101 - 109 - 109 - 110 - 254 - 6 - 244 - 109 - 110 - 109 - 110 - 41 - 196 - 102 - 110 - 110 - 109 - 254 - 7 - 244 - 110 - 109 - 110 - 109 - 85 - 56 - 196 - 101 - 109 - 109 - 110 - 254 - 7 - 244 - 109 - 110 - 109 - 110 - 87 - 56 - 196 - 102 - 110 - 110 - 109 - 254 - 7 - 244 - 110 - 109 - 110 - 109 - 85 - 86 - 196 - 101 - 109 - 109 - 110 - 254 - 6 - 244 - 101 - 110 - 109 - 110 - 85 - 196 - 102 - 110 - 110 - 109 - 254 - 6 - 244 - 102 - 109 - 110 - 109 - 87 - 196 - 112 - 114 - 109 - 110 - 254 - 6 - 244 - 101 - 110 - 109 - 110 - 43 - 196 - 113 - 115 - 110 - 109 - 254 - 5 - 244 - 102 - 109 - 110 - 109 - 196 - 101 - 109 - 109 - 110 - 254 - 5 - 244 - 101 - 110 - 109 - 110 - 98 - 93 - 53 - 196 - 102 - 110 - 110 - 109 - 254 - 6 - 244 - 102 - 109 - 110 - 109 - 85 - 196 - 101 - 109 - 109 - 110 - 254 - 6 - 244 - 101 - 110 - 109 - 110 - 88 - 196 - 102 - 110 - 110 - 109 - 254 - 7 - 244 - 102 - 109 - 110 - 109 - 86 - 56 - 196 - 112 - 114 - 109 - 110 - 254 - 21 - 101 - 110 - 109 - 110 - 85 - 196 - 113 - 115 - 110 - 109 - 254 - 17 - 102 - 49 - 102 - 166 - 112 - 114 - 114 - 114 - 109 - 110 - 254 - 34 - 89 - 91 - 166 - 113 - 115 - 115 - 115 - 110 - 109 - 254 - 34 - 90 - 92 - 226 - 101 - 110 - 254 - 226 - 102 - 109 - 254 - 49 - 56 - 226 - 101 - 110 - 254 - 49 - 85 - 82 - 93 - 53 - 226 - 102 - 109 - 254 - 50 - 86 - 85 - 226 - 101 - 102 - 254 - 50 - 87 - 43 - 225 - 102 - 254 - 50 - 88 - 43 - 254 - 50 - 87 - 56 - 254 - 50 - 86 - 56 - 254 - 254 - 49 - 86 - 82 - 93 - 53 - 225 - 101 - 254 - 49 - 85 - 226 - 102 - 101 - 254 - 49 - 86 - 226 - 101 - 110 - 254 - 49 - 87 - 226 - 102 - 109 - 254 - 35 - 89 - 91 - 56 - 226 - 101 - 110 - 254 - 20 - 101 - 90 - 92 - 85 - 226 - 102 - 77 - 254 - 2 - 101 - 110 - 66 - 253 - 56 - 226 - 101 - 78 - 254 - 2 - 102 - 109 - 50 - 101 - 86 - 226 - 102 - 77 - 254 - 4 - 100 - 100 - 81 - 85 - 181 - 253 - 100 - 254 - 4 - 100 - 100 - 81 - 86 - 181 - 253 - 100 - 254 - 4 - 100 - 100 - 81 - 87 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 81 - 85 - 93 - 53 - 226 - 59 - 83 - 254 - 3 - 100 - 100 - 81 - 226 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 89 - 91 - 226 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 90 - 92 - 226 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 85 - 86 - 226 - 253 - 100 - 254 - 4 - 100 - 100 - 81 - 43 - 226 - 59 - 83 - 254 - 4 - 100 - 100 - 81 - 85 - 211 - 127 - 59 - 83 - 254 - 5 - 100 - 100 - 81 - 87 - 86 - 211 - 127 - 59 - 83 - 254 - 5 - 100 - 100 - 81 - 89 - 91 - 211 - 127 - 59 - 83 - 254 - 5 - 100 - 100 - 81 - 90 - 92 - 211 - 127 - 59 - 83 - 254 - 3 - 100 - 100 - 81 - 211 - 127 - 59 - 83 - 254 - 6 - 100 - 100 - 61 - 82 - 93 - 53 - 196 - 58 - 127 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 86 - 196 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 43 - 196 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 87 - 196 - 253 - 100 - 254 - 4 - 100 - 100 - 79 - 80 - 81 - 85 - 196 - 253 - 100 - 254 - 3 - 100 - 100 - 81 - 81 - 88 - 196 - 253 - 100 - 254 - 19 - 102 - 109 - 110 - 241 - 102 - 254 - 34 - 102 - 109 - 254 - 34 - 101 - 110 - 254 - 34 - 102 - 109 - 254 - 34 - 101 - 110 - 82 - 93 - 53 - 225 - 101 - 254 - 34 - 102 - 109 - 226 - 102 - 101 - 254 - 34 - 101 - 110 - 226 - 101 - 110 - 254 - 34 - 102 - 109 - 226 - 102 - 109 - 254 - 19 - 112 - 114 - 110 - 226 - 101 - 110 - 254 - 19 - 113 - 115 - 109 - 211 - 99 - 110 - 109 - 254 - 49 - 102 - 196 - 99 - 99 - 109 - 110 - 254 - 181 - 99 - 99 - 99 - 110 - 109 - 254 - 166 - 99 - 99 - 99 - 99 - 109 - 110 - 254 - 19 - 89 - 91 - 85 - 151 - 99 - 99 - 99 - 99 - 99 - 110 - 109 - 254 - 19 - 90 - 92 - 86 - 166 - 99 - 99 - 99 - 99 - 109 - 110 - 254 - 49 - 87 - 181 - 99 - 99 - 99 - 110 - 109 - 254 - 17 - 43 - 49 - 88 - 196 - 99 - 99 - 109 - 110 - 254 - 17 - 86 - 82 - 93 - 53 - 211 - 99 - 110 - 109 - 254 - 17 - 85 - 49 - 86 - 226 - 101 - 110 - 254 - 17 - 87 - 49 - 85 - 226 - 102 - 100 - 254 - 241 - 100 - 254 - 241 - 100 - 254 - 209 - 127 - 241 - 100 - 254 - 1 - 101 - 33 - 101 - 65 - 101 - 101 - 101 - 129 - 130 - 130 - 130 - 209 - 127 - 241 - 100 - 254 - 11 - 102 - 101 - 110 - 101 - 102 - 101 - 102 - 129 - 130 - 130 - 130 - 209 - 127 - 241 - 100 - 254 - 4 - 101 - 110 - 109 - 102 - 81 - 102 - 177 - 107 - 209 - 107 - 241 - 100 - 254 - 4 - 102 - 109 - 102 - 85 - 162 - 244 - 107 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 66 - 93 - 53 - 179 - 107 - 244 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 50 - 89 - 91 - 162 - 244 - 107 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 50 - 90 - 92 - 179 - 107 - 244 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 49 - 88 - 162 - 244 - 107 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 86 - 119 - 82 - 82 - 82 - 82 - 107 - 244 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 49 - 87 - 117 - 100 - 100 - 100 - 100 - 107 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 88 - 114 - 100 - 95 - 209 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 113 - 100 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 85 - 113 - 100 - 209 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 49 - 87 - 113 - 100 - 209 - 107 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 86 - 113 - 80 - 209 - 107 - 241 - 100 - 254 - 2 - 102 - 109 - 49 - 87 - 209 - 107 - 241 - 100 - 254 - 3 - 101 - 110 - 101 - 66 - 93 - 53 - 209 - 107 - 241 - 100 - 254 - 4 - 102 - 109 - 110 - 87 - 194 - 99 - 107 - 241 - 100 - 254 - 4 - 101 - 110 - 109 - 85 - 179 - 99 - 244 - 244 - 241 - 100 - 254 - 3 - 102 - 109 - 102 - 166 - 99 - 244 - 244 - 244 - 82 - 100 - 254 - 2 - 101 - 110 - 151 - 99 - 244 - 244 - 244 - 244 - 100 - 100 - 254 - 2 - 102 - 109 - 129 - 99 - 166 - 244 - 244 - 244 - 244 - 80 - 100 - 254 - 2 - 101 - 110 - 113 - 99 - 164 - 253 - 244 - 241 - 100 - 254 - 2 - 102 - 109 - 49 - 86 - 97 - 99 - 164 - 244 - 129 - 244 - 244 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 85 - 113 - 99 - 164 - 253 - 244 - 241 - 100 - 254 - 2 - 102 - 109 - 129 - 99 - 164 - 253 - 244 - 241 - 100 - 254 - 2 - 101 - 110 - 49 - 86 - 149 - 99 - 244 - 244 - 244 - 244 - 241 - 100 - 254 - 2 - 102 - 109 - 50 - 87 - 43 - 164 - 130 - 244 - 244 - 244 - 241 - 100 - 254 - 2 - 101 - 110 - 50 - 85 - 43 - 179 - 130 - 244 - 244 - 241 - 100 - 254 - 2 - 102 - 109 - 50 - 89 - 91 - 194 - 99 - 244 - 241 - 100 - 254 - 2 - 101 - 110 - 50 - 90 - 92 - 209 - 99 - 254 - 2 - 102 - 109 - 49 - 86 - 211 - 253 - 100 - 254 - 2 - 101 - 110 - 51 - 87 - 93 - 53 - 211 - 253 - 100 - 254 - 2 - 102 - 109 - 49 - 85 - 166 - 82 - 82 - 82 - 100 - 100 - 100 - 254 - 2 - 100 - 110 - 166 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 89 - 91 - 166 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 90 - 92 - 166 - 253 - 100 - 254 - 4 - 100 - 100 - 81 - 43 - 166 - 253 - 80 - 254 - 4 - 100 - 100 - 81 - 87 - 151 - 253 - 82 - 254 - 4 - 100 - 100 - 81 - 37 - 151 - 253 - 100 - 254 - 3 - 100 - 100 - 81 - 66 - 93 - 53 - 151 - 253 - 100 - 254 - 3 - 100 - 100 - 81 - 151 - 80 - 80 - 100 - 100 - 100 - 100 - 100 - 254 - 5 - 100 - 100 - 61 - 82 - 82 - 181 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 114 - 253 - 130 - 181 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 121 - 130 - 130 - 72 - 74 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 121 - 130 - 130 - 73 - 75 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 114 - 253 - 130 - 166 - 76 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 114 - 253 - 130 - 181 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 121 - 128 - 130 - 72 - 74 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 121 - 130 - 130 - 73 - 75 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 100 - 81 - 114 - 253 - 130 - 166 - 76 - 100 - 100 - 100 - 100 - 100 - 254 - 5 - 100 - 100 - 79 - 80 - 80 - 181 - 253 - 100 - 254 - 6 - 100 - 100 - 81 - 88 - 93 - 53 - 181 - 253 - 100 - 254 - 5 - 100 - 100 - 81 - 89 - 91 - 181 - 253 - 80 - 254 - 5 - 100 - 100 - 81 - 90 - 92 - 254 - 9 - 100 - 100 - 81 - 85 - 86 - 87 - 85 - 86 - 85 - 254 - 3 - 100 - 100 - 81 - 181 - 253 - 82 - 254 - 3 - 100 - 100 - 81 - 81 - 85 - 196 - 253 - 100 - 254 - 4 - 100 - 100 - 61 - 82 - 81 - 86 - 196 - 253 - 100 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 87 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 88 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 87 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 43 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 85 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 86 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 87 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 37 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 86 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 85 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 81 - 86 - 193 - 127 - 226 - 59 - 83 - 254 - 5 - 100 - 100 - 100 - 100 - 81 - 193 - 127 - 226 - 59 - 83 - 254 - 7 - 100 - 100 - 100 - 100 - 81 - 93 - 53 - 193 - 127 - 226 - 59 - 83 - 254 - 5 - 100 - 100 - 100 - 100 - 81 - 178 - 58 - 127 - 226 - 59 - 83 - 254 - 7 - 100 - 100 - 100 - 100 - 81 - 93 - 53 - 161 - 58 - 193 - 127 - 226 - 59 - 83 - 254 - 6 - 100 - 100 - 100 - 100 - 61 - 82 - 151 - 225 - 100 - 100 - 100 - 100 - 100 - 100 - 254 - 0 - 100 - 100 - 100 - 100 - 100 - 100 - 236 - 236 - 236 - 236 - 100 - 100 - 100 - 100 - 100 - 100 - 254 - 6 - 253 - 100 - 166 - 253 - 100 - 254 - 0 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 1 - 127 - 56 - 253 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 130 - 211 - 244 - 127 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 211 - 244 - 127 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 211 - 244 - 127 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 49 - 244 - 81 - 244 - 113 - 244 - 146 - 244 - 130 - 211 - 244 - 127 - 127 - 254 - 1 - 127 - 161 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 56 - 128 - 130 - 130 - 130 - 130 - 130 - 130 - 130 - 211 - 244 - 127 - 127 - 254 - 226 - 253 - 127 - 254 - 114 - 253 - 244 - 196 - 116 - 119 - 127 - 127 - 254 - 114 - 253 - 244 - 196 - 117 - 120 - 127 - 127 - 254 - 0 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 118 - 121 - 127 - 127 - 254 - 0 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 127 - 127 - 254 - 0 - 253 - 127 - 254 - 241 - 127 - 254 - 241 - 127 - 254 - 12 - 253 - 127 - 241 - 127 - 254 - 1 - 127 - 49 - 127 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 98 - 244 - 127 - 177 - 130 - 241 - 127 - 254 - 1 - 127 - 49 - 128 - 113 - 130 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 98 - 244 - 127 - 177 - 130 - 241 - 127 - 254 - 1 - 127 - 49 - 130 - 113 - 128 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 98 - 244 - 127 - 177 - 130 - 241 - 127 - 254 - 1 - 127 - 49 - 130 - 113 - 127 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 34 - 244 - 127 - 98 - 244 - 127 - 177 - 130 - 241 - 127 - 254 - 1 - 127 - 113 - 127 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 98 - 244 - 130 - 177 - 130 - 241 - 127 - 254 - 1 - 127 - 49 - 127 - 113 - 127 - 162 - 244 - 127 - 241 - 127 - 254 - 1 - 127 - 49 - 127 - 98 - 244 - 127 - 177 - 128 - 241 - 127 - 254 - 4 - 127 - 116 - 119 - 127 - 113 - 127 - 162 - 244 - 127 - 241 - 127 - 254 - 4 - 127 - 117 - 120 - 127 - 98 - 244 - 127 - 177 - 130 - 241 - 127 - 254 - 4 - 114 - 118 - 121 - 127 - 113 - 127 - 241 - 127 - 254 - 0 - 115 - 115 - 115 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 31 - 31 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 248 - 248 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 1 - 3 - 3 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 127 - 127 - 192 - 192 - 63 - 0 - 255 - 0 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 240 - 240 - 16 - 16 - 247 - 23 - 244 - 20 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 223 - 223 - 80 - 80 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 191 - 191 - 160 - 160 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 241 - 241 - 25 - 25 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 191 - 191 - 160 - 160 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 240 - 240 - 24 - 24 - 255 - 255 - 255 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 255 - 255 - 255 - 85 - 85 - 170 - 170 - 85 - 85 - 0 - 0 - 0 - 0 - 0 - 0 - 28 - 28 - 34 - 34 - 93 - 93 - 81 - 81 - 93 - 93 - 34 - 34 - 28 - 28 - 0 - 0 - 0 - 22 - 0 - 41 - 0 - 64 - 4 - 128 - 93 - 128 - 62 - 65 - 12 - 50 - 0 - 12 - 63 - 32 - 112 - 80 - 111 - 79 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 252 - 28 - 46 - 62 - 238 - 222 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 3 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 0 - 255 - 0 - 255 - 7 - 252 - 12 - 247 - 7 - 249 - 1 - 254 - 192 - 127 - 112 - 27 - 24 - 247 - 20 - 247 - 244 - 7 - 4 - 7 - 4 - 199 - 196 - 103 - 100 - 183 - 52 - 215 - 20 - 223 - 80 - 223 - 80 - 223 - 80 - 223 - 80 - 223 - 80 - 223 - 80 - 223 - 80 - 255 - 112 - 191 - 160 - 191 - 163 - 190 - 162 - 190 - 162 - 190 - 162 - 190 - 162 - 190 - 162 - 191 - 163 - 237 - 13 - 245 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 255 - 0 - 255 - 31 - 240 - 16 - 255 - 31 - 240 - 0 - 255 - 0 - 255 - 31 - 240 - 16 - 191 - 160 - 191 - 163 - 62 - 34 - 190 - 162 - 190 - 162 - 190 - 162 - 191 - 163 - 60 - 32 - 236 - 12 - 244 - 132 - 252 - 132 - 252 - 132 - 252 - 132 - 252 - 132 - 252 - 140 - 120 - 24 - 0 - 104 - 0 - 150 - 0 - 1 - 132 - 0 - 213 - 0 - 255 - 0 - 52 - 203 - 0 - 52 - 0 - 0 - 0 - 192 - 0 - 32 - 128 - 16 - 128 - 96 - 0 - 128 - 0 - 0 - 0 - 0 - 198 - 198 - 230 - 230 - 230 - 230 - 214 - 214 - 214 - 214 - 206 - 206 - 206 - 206 - 198 - 198 - 192 - 192 - 192 - 192 - 0 - 0 - 219 - 219 - 221 - 221 - 217 - 217 - 217 - 217 - 217 - 217 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 253 - 253 - 135 - 135 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 252 - 252 - 6 - 6 - 127 - 127 - 64 - 64 - 127 - 64 - 127 - 64 - 127 - 64 - 127 - 127 - 0 - 0 - 0 - 0 - 251 - 248 - 15 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 54 - 227 - 227 - 129 - 129 - 0 - 0 - 0 - 0 - 143 - 0 - 255 - 0 - 255 - 0 - 255 - 1 - 255 - 3 - 254 - 254 - 0 - 0 - 0 - 0 - 188 - 160 - 191 - 160 - 191 - 163 - 190 - 162 - 62 - 34 - 62 - 62 - 0 - 0 - 0 - 0 - 125 - 13 - 249 - 25 - 241 - 241 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 0 - 255 - 31 - 240 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 191 - 160 - 191 - 163 - 190 - 162 - 190 - 162 - 190 - 162 - 190 - 190 - 0 - 0 - 0 - 0 - 240 - 48 - 216 - 152 - 236 - 140 - 246 - 134 - 250 - 130 - 254 - 254 - 0 - 0 - 0 - 0 - 0 - 0 - 48 - 48 - 120 - 120 - 51 - 51 - 182 - 182 - 183 - 183 - 182 - 182 - 179 - 179 - 0 - 0 - 0 - 0 - 0 - 0 - 205 - 205 - 110 - 110 - 236 - 236 - 12 - 12 - 236 - 236 - 1 - 1 - 1 - 1 - 1 - 1 - 143 - 143 - 217 - 217 - 217 - 217 - 217 - 217 - 207 - 207 - 128 - 128 - 128 - 128 - 128 - 128 - 158 - 158 - 179 - 179 - 179 - 179 - 179 - 179 - 158 - 158 - 3 - 3 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 251 - 2 - 255 - 0 - 255 - 0 - 255 - 56 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 251 - 3 - 253 - 1 - 255 - 1 - 255 - 225 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 31 - 31 - 48 - 48 - 127 - 96 - 127 - 71 - 125 - 69 - 125 - 69 - 125 - 69 - 125 - 69 - 227 - 227 - 50 - 50 - 219 - 26 - 235 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 255 - 255 - 1 - 1 - 254 - 0 - 255 - 56 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 31 - 31 - 145 - 145 - 223 - 209 - 95 - 81 - 223 - 81 - 223 - 81 - 223 - 81 - 223 - 81 - 31 - 31 - 48 - 48 - 127 - 96 - 127 - 71 - 125 - 69 - 125 - 69 - 125 - 69 - 125 - 69 - 225 - 225 - 49 - 49 - 217 - 25 - 233 - 9 - 249 - 9 - 249 - 9 - 249 - 9 - 249 - 9 - 240 - 240 - 16 - 16 - 240 - 16 - 240 - 16 - 240 - 16 - 240 - 16 - 240 - 16 - 240 - 16 - 15 - 15 - 24 - 24 - 63 - 48 - 63 - 35 - 62 - 34 - 62 - 34 - 62 - 34 - 62 - 34 - 241 - 241 - 25 - 25 - 237 - 13 - 245 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 255 - 255 - 0 - 0 - 255 - 0 - 255 - 28 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 20 - 143 - 143 - 200 - 200 - 111 - 104 - 175 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 252 - 252 - 6 - 6 - 251 - 3 - 253 - 225 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 104 - 72 - 111 - 79 - 127 - 80 - 96 - 127 - 127 - 127 - 63 - 63 - 31 - 31 - 0 - 0 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 3 - 2 - 131 - 130 - 131 - 130 - 131 - 131 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 239 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 161 - 191 - 191 - 127 - 71 - 120 - 64 - 127 - 64 - 127 - 71 - 125 - 69 - 125 - 69 - 125 - 69 - 125 - 125 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 10 - 251 - 251 - 255 - 56 - 199 - 0 - 255 - 1 - 255 - 56 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 239 - 223 - 81 - 223 - 209 - 159 - 145 - 223 - 209 - 223 - 81 - 223 - 81 - 223 - 81 - 223 - 223 - 125 - 69 - 125 - 69 - 127 - 71 - 120 - 64 - 127 - 64 - 127 - 96 - 63 - 48 - 31 - 31 - 249 - 9 - 249 - 9 - 249 - 9 - 249 - 9 - 249 - 9 - 249 - 25 - 241 - 49 - 225 - 225 - 240 - 16 - 240 - 16 - 255 - 31 - 240 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 255 - 255 - 63 - 35 - 60 - 32 - 191 - 160 - 191 - 163 - 190 - 162 - 190 - 162 - 190 - 162 - 190 - 190 - 253 - 133 - 125 - 5 - 253 - 5 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 133 - 253 - 253 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 20 - 247 - 247 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 40 - 239 - 239 - 191 - 161 - 191 - 161 - 255 - 225 - 31 - 1 - 255 - 1 - 255 - 3 - 254 - 6 - 252 - 252 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 1 - 7 - 1 - 7 - 7 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 0 - 110 - 94 - 238 - 222 - 238 - 62 - 30 - 254 - 254 - 254 - 252 - 252 - 248 - 248 - 0 - 0 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 110 - 94 - 0 - 0 - 31 - 31 - 63 - 32 - 112 - 80 - 111 - 79 - 104 - 72 - 104 - 72 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 248 - 248 - 252 - 28 - 46 - 62 - 238 - 222 - 110 - 94 - 110 - 94 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 110 - 94 - 0 - 0 - 255 - 255 - 255 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 104 - 72 - 0 - 0 - 1 - 1 - 6 - 6 - 8 - 8 - 16 - 16 - 32 - 32 - 69 - 64 - 128 - 128 - 0 - 0 - 192 - 192 - 48 - 48 - 8 - 8 - 85 - 5 - 2 - 2 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 224 - 224 - 24 - 24 - 4 - 4 - 2 - 2 - 129 - 129 - 162 - 162 - 169 - 169 - 209 - 209 - 205 - 205 - 253 - 253 - 225 - 97 - 246 - 118 - 220 - 124 - 31 - 18 - 31 - 16 - 15 - 10 - 15 - 15 - 16 - 16 - 34 - 34 - 43 - 43 - 233 - 233 - 255 - 132 - 255 - 255 - 255 - 110 - 227 - 1 - 243 - 211 - 127 - 126 - 249 - 207 - 255 - 255 - 200 - 248 - 136 - 248 - 144 - 240 - 16 - 240 - 224 - 224 - 192 - 64 - 224 - 32 - 255 - 255 - 63 - 32 - 112 - 80 - 111 - 79 - 104 - 72 - 107 - 72 - 107 - 72 - 107 - 75 - 104 - 72 - 231 - 38 - 24 - 24 - 255 - 255 - 0 - 0 - 128 - 128 - 128 - 128 - 128 - 128 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 255 - 0 - 0 - 7 - 1 - 7 - 1 - 7 - 7 - 0 - 0 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 104 - 72 - 107 - 72 - 107 - 72 - 107 - 75 - 255 - 255 - 255 - 255 - 0 - 255 - 0 - 0 - 255 - 0 - 0 - 0 - 187 - 56 - 68 - 68 - 7 - 7 - 4 - 7 - 8 - 15 - 8 - 15 - 9 - 15 - 27 - 31 - 35 - 62 - 47 - 63 - 158 - 158 - 113 - 127 - 65 - 127 - 254 - 230 - 249 - 241 - 207 - 76 - 223 - 88 - 207 - 64 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 63 - 80 - 116 - 80 - 155 - 80 - 63 - 80 - 116 - 80 - 155 - 80 - 63 - 80 - 116 - 80 - 155 - 80 - 63 - 80 - 116 - 80 - 155 - 80 - 192 - 80 - 116 - 78 - 29 - 79 - 216 - 79 - 116 - 78 - 29 - 79 - 216 - 79 - 116 - 78 - 29 - 79 - 216 - 79 - 116 - 78 - 29 - 79 - 216 - 79 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 28 - 28 - 62 - 34 - 63 - 59 - 127 - 71 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 56 - 56 - 124 - 68 - 252 - 220 - 254 - 226 - 0 - 0 - 0 - 0 - 24 - 24 - 60 - 36 - 126 - 82 - 127 - 91 - 63 - 47 - 125 - 69 - 0 - 0 - 0 - 0 - 24 - 24 - 60 - 36 - 126 - 74 - 254 - 218 - 252 - 244 - 190 - 162 - 0 - 0 - 1 - 1 - 27 - 27 - 39 - 39 - 47 - 40 - 63 - 48 - 63 - 32 - 63 - 62 - 248 - 248 - 236 - 28 - 228 - 220 - 228 - 28 - 228 - 28 - 196 - 60 - 132 - 124 - 132 - 124 - 0 - 0 - 1 - 1 - 3 - 2 - 7 - 7 - 15 - 14 - 31 - 16 - 127 - 120 - 143 - 136 - 0 - 0 - 240 - 240 - 216 - 56 - 200 - 184 - 200 - 56 - 200 - 56 - 142 - 126 - 11 - 251 - 0 - 0 - 3 - 3 - 15 - 15 - 121 - 121 - 255 - 159 - 255 - 165 - 255 - 169 - 86 - 86 - 0 - 0 - 192 - 192 - 240 - 240 - 158 - 158 - 255 - 249 - 255 - 165 - 255 - 149 - 106 - 106 - 56 - 56 - 68 - 68 - 130 - 130 - 169 - 169 - 170 - 170 - 173 - 173 - 176 - 176 - 64 - 64 - 0 - 126 - 0 - 229 - 0 - 255 - 126 - 129 - 126 - 231 - 126 - 231 - 24 - 231 - 24 - 231 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 12 - 113 - 113 - 130 - 130 - 124 - 124 - 0 - 126 - 100 - 129 - 126 - 231 - 24 - 231 - 24 - 255 - 126 - 129 - 126 - 255 - 24 - 126 - 0 - 0 - 120 - 120 - 196 - 196 - 130 - 130 - 169 - 169 - 117 - 117 - 3 - 3 - 7 - 7 - 0 - 0 - 0 - 0 - 0 - 0 - 120 - 120 - 140 - 156 - 100 - 28 - 228 - 220 - 228 - 28 - 127 - 119 - 127 - 79 - 255 - 135 - 255 - 181 - 239 - 173 - 231 - 165 - 67 - 66 - 1 - 1 - 254 - 238 - 254 - 242 - 255 - 225 - 255 - 173 - 247 - 181 - 231 - 165 - 194 - 66 - 128 - 128 - 125 - 85 - 127 - 95 - 63 - 41 - 127 - 75 - 126 - 90 - 254 - 154 - 228 - 164 - 64 - 64 - 190 - 170 - 254 - 250 - 252 - 148 - 254 - 210 - 126 - 90 - 127 - 89 - 39 - 37 - 2 - 2 - 15 - 8 - 31 - 16 - 31 - 24 - 7 - 4 - 30 - 25 - 28 - 19 - 15 - 15 - 0 - 0 - 252 - 124 - 254 - 14 - 194 - 194 - 49 - 241 - 33 - 225 - 97 - 225 - 171 - 171 - 62 - 62 - 207 - 204 - 143 - 140 - 71 - 71 - 96 - 96 - 63 - 63 - 60 - 51 - 56 - 39 - 31 - 31 - 9 - 249 - 153 - 249 - 254 - 158 - 16 - 16 - 240 - 240 - 96 - 224 - 192 - 192 - 128 - 128 - 1 - 1 - 7 - 7 - 31 - 31 - 127 - 96 - 255 - 128 - 255 - 252 - 31 - 16 - 31 - 31 - 252 - 252 - 254 - 6 - 250 - 198 - 242 - 14 - 242 - 14 - 243 - 15 - 225 - 31 - 255 - 255 - 0 - 0 - 56 - 56 - 70 - 70 - 129 - 129 - 148 - 148 - 171 - 171 - 64 - 64 - 0 - 0 - 24 - 255 - 24 - 255 - 126 - 129 - 126 - 255 - 24 - 255 - 129 - 255 - 126 - 126 - 126 - 126 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 1 - 1 - 1 - 3 - 3 - 7 - 7 - 15 - 8 - 0 - 0 - 30 - 30 - 121 - 121 - 141 - 157 - 101 - 29 - 230 - 222 - 228 - 28 - 228 - 28 - 15 - 8 - 31 - 16 - 63 - 33 - 63 - 62 - 31 - 16 - 63 - 32 - 63 - 60 - 7 - 4 - 228 - 28 - 196 - 60 - 196 - 60 - 132 - 124 - 252 - 124 - 254 - 14 - 194 - 66 - 177 - 113 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 7 - 7 - 31 - 28 - 31 - 16 - 62 - 49 - 120 - 103 - 249 - 198 - 243 - 140 - 0 - 0 - 240 - 240 - 252 - 28 - 246 - 14 - 58 - 198 - 58 - 198 - 123 - 135 - 123 - 135 - 65 - 65 - 33 - 34 - 18 - 20 - 13 - 14 - 150 - 152 - 93 - 94 - 38 - 56 - 29 - 30 - 4 - 4 - 8 - 136 - 144 - 80 - 96 - 224 - 210 - 50 - 116 - 244 - 200 - 56 - 112 - 240 - 33 - 34 - 34 - 36 - 45 - 46 - 150 - 152 - 157 - 158 - 102 - 120 - 29 - 30 - 98 - 108 - 8 - 136 - 136 - 72 - 104 - 232 - 210 - 50 - 114 - 242 - 204 - 60 - 112 - 240 - 140 - 108 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 131 - 131 - 134 - 134 - 74 - 74 - 113 - 113 - 2 - 2 - 2 - 2 - 3 - 3 - 112 - 112 - 208 - 208 - 16 - 16 - 8 - 8 - 136 - 136 - 8 - 8 - 8 - 8 - 240 - 240 - 31 - 16 - 63 - 33 - 63 - 62 - 15 - 11 - 28 - 20 - 28 - 20 - 126 - 126 - 145 - 145 - 228 - 28 - 196 - 60 - 140 - 124 - 168 - 104 - 200 - 200 - 24 - 24 - 112 - 112 - 160 - 224 - 62 - 58 - 60 - 52 - 24 - 24 - 8 - 8 - 12 - 12 - 16 - 16 - 16 - 16 - 31 - 31 - 33 - 97 - 33 - 33 - 107 - 107 - 255 - 255 - 225 - 225 - 89 - 89 - 71 - 71 - 128 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 242 - 141 - 243 - 140 - 253 - 194 - 127 - 64 - 127 - 64 - 61 - 34 - 49 - 63 - 31 - 31 - 243 - 15 - 226 - 30 - 242 - 30 - 246 - 30 - 198 - 62 - 142 - 254 - 60 - 252 - 240 - 240 - 34 - 44 - 79 - 79 - 151 - 151 - 41 - 41 - 74 - 74 - 135 - 135 - 140 - 140 - 68 - 68 - 136 - 104 - 228 - 228 - 210 - 210 - 40 - 40 - 164 - 164 - 194 - 194 - 98 - 98 - 68 - 68 - 143 - 143 - 55 - 55 - 73 - 73 - 74 - 74 - 71 - 71 - 70 - 70 - 34 - 34 - 0 - 0 - 226 - 226 - 216 - 216 - 36 - 36 - 164 - 164 - 196 - 196 - 196 - 196 - 136 - 136 - 0 - 0 - 65 - 66 - 54 - 54 - 7 - 8 - 118 - 126 - 153 - 153 - 47 - 47 - 68 - 68 - 34 - 34 - 4 - 132 - 216 - 216 - 192 - 32 - 220 - 252 - 50 - 50 - 232 - 232 - 68 - 68 - 136 - 136 - 0 - 0 - 0 - 0 - 120 - 120 - 252 - 196 - 227 - 131 - 252 - 196 - 120 - 120 - 0 - 0 - 195 - 195 - 61 - 61 - 195 - 195 - 255 - 255 - 255 - 255 - 239 - 231 - 255 - 255 - 219 - 219 - 60 - 60 - 32 - 78 - 255 - 255 - 255 - 189 - 255 - 255 - 255 - 255 - 255 - 189 - 255 - 255 - 0 - 0 - 0 - 0 - 3 - 3 - 12 - 12 - 16 - 16 - 32 - 32 - 32 - 32 - 64 - 64 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 36 - 36 - 26 - 26 - 1 - 1 - 6 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 128 - 128 - 64 - 64 - 1 - 1 - 2 - 2 - 4 - 4 - 15 - 8 - 7 - 4 - 3 - 2 - 1 - 1 - 0 - 0 - 128 - 128 - 0 - 0 - 193 - 0 - 247 - 0 - 255 - 0 - 255 - 64 - 255 - 227 - 62 - 62 - 19 - 0 - 153 - 0 - 193 - 0 - 227 - 0 - 255 - 0 - 255 - 128 - 127 - 65 - 62 - 62 - 64 - 64 - 160 - 32 - 224 - 32 - 192 - 64 - 192 - 64 - 128 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 2 - 0 - 3 - 0 - 7 - 0 - 15 - 0 - 50 - 0 - 120 - 0 - 132 - 0 - 2 - 0 - 2 - 0 - 130 - 0 - 194 - 0 - 4 - 0 - 4 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 2 - 0 - 4 - 0 - 8 - 0 - 16 - 0 - 32 - 0 - 64 - 0 - 128 - 0 - 2 - 0 - 4 - 0 - 8 - 0 - 8 - 0 - 0 - 0 - 16 - 0 - 4 - 0 - 4 - 0 - 4 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 8 - 0 - 32 - 0 - 56 - 0 - 30 - 0 - 15 - 0 - 6 - 0 - 4 - 0 - 6 - 0 - 7 - 0 - 16 - 0 - 16 - 0 - 0 - 0 - 128 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 16 - 0 - 144 - 0 - 144 - 0 - 160 - 0 - 160 - 0 - 224 - 0 - 64 - 0 - 6 - 0 - 8 - 0 - 8 - 0 - 16 - 0 - 0 - 0 - 33 - 0 - 39 - 0 - 31 - 0 - 128 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 96 - 0 - 192 - 0 - 130 - 0 - 4 - 0 - 64 - 0 - 64 - 0 - 96 - 0 - 32 - 0 - 32 - 0 - 224 - 0 - 16 - 0 - 8 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 2 - 0 - 2 - 0 - 4 - 0 - 8 - 0 - 128 - 0 - 144 - 0 - 208 - 0 - 16 - 0 - 32 - 0 - 32 - 0 - 32 - 0 - 4 - 0 - 4 - 0 - 4 - 0 - 4 - 0 - 2 - 0 - 2 - 0 - 2 - 0 - 2 - 0 - 56 - 0 - 196 - 0 - 1 - 0 - 2 - 0 - 131 - 0 - 7 - 0 - 15 - 0 - 50 - 0 - 64 - 0 - 128 - 0 - 1 - 0 - 2 - 0 - 4 - 0 - 8 - 0 - 16 - 0 - 32 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 251 - 253 - 3 - 0 - 153 - 0 - 153 - 0 - 129 - 0 - 255 - 0 - 153 - 0 - 193 - 0 - 66 - 0 - 126 - 0 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 28 - 0 - 54 - 0 - 107 - 0 - 221 - 0 - 255 - 0 - 255 - 0 - 254 - 0 - 125 - 0 - 187 - 0 - 255 - 0 - 255 - 0 - 255 - 0 - 0 - 0 - 0 - 4 - 0 - 2 - 0 - 2 - 0 - 23 - 0 - 151 - 2 - 109 - 2 - 61 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 32 - 0 - 64 - 0 - 192 - 0 - 160 - 7 - 120 - 13 - 112 - 24 - 160 - 24 - 96 - 24 - 96 - 9 - 48 - 5 - 24 - 0 - 15 - 0 - 232 - 128 - 112 - 128 - 112 - 192 - 48 - 128 - 96 - 128 - 96 - 0 - 192 - 0 - 0 - 0 - 15 - 0 - 8 - 0 - 8 - 0 - 7 - 0 - 2 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 0 - 0 - 183 - 0 - 0 - 0 - 255 - 0 - 32 - 0 - 49 - 0 - 254 - 0 - 2 - 0 - 2 - 0 - 252 - 0 - 8 - 0 - 240 - 0 - 128 - 0 - 128 - 0 - 31 - 0 - 32 - 0 - 32 - 0 - 32 - 0 - 32 - 0 - 127 - 0 - 128 - 0 - 255 - 0 - 0 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 128 - 0 - 192 - 0 - 32 - 0 - 224 - 255 - 255 - 255 - 255 - 0 - 255 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 0 - 255 - 0 - 0 - 129 - 0 - 66 - 0 - 36 - 0 - 24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 66 - 0 - 90 - 0 - 102 - 0 - 195 - 0 - 129 - 0 - 231 - 0 - 231 - 0 - 153 - 0 - 153 - 0 - 153 - 0 - 189 - 0 - 165 - 0 - 153 - 0 - 66 - 0 - 102 - 0 - 90 - 0 - 19 - 0 - 21 - 0 - 25 - 0 - 17 - 0 - 17 - 0 - 19 - 0 - 21 - 0 - 25 - 0 - 56 - 0 - 68 - 0 - 130 - 0 - 169 - 0 - 170 - 0 - 173 - 0 - 176 - 0 - 64 - 0 - 126 - 0 - 193 - 0 - 129 - 0 - 129 - 0 - 231 - 0 - 231 - 0 - 153 - 0 - 153 - 0 - 28 - 0 - 34 - 0 - 65 - 0 - 149 - 0 - 85 - 0 - 181 - 0 - 13 - 0 - 2 - 0 - 0 - 0 - 129 - 0 - 66 - 0 - 165 - 0 - 126 - 0 - 60 - 0 - 24 - 0 - 0 - 0 - 66 - 0 - 70 - 0 - 66 - 0 - 70 - 0 - 66 - 0 - 70 - 0 - 66 - 0 - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 63 - 255 - 30 - 255 - 252 - 255 - 255 - 255 - 255 - 255 - 207 - 255 - 135 - 255 - 255 - 255 - 255 - 255 - 126 - 255 - 63 - 255 - 255 - 255 - 243 - 255 - 225 - 255 - 255 - 126 - 126 - 255 - 131 - 255 - 187 - 255 - 163 - 255 - 163 - 255 - 135 - 255 - 255 - 126 - 126 - 126 - 126 - 253 - 195 - 253 - 131 - 251 - 135 - 255 - 142 - 168 - 223 - 223 - 255 - 125 - 125 - 118 - 118 - 255 - 203 - 253 - 99 - 253 - 51 - 219 - 55 - 147 - 127 - 127 - 255 - 230 - 230 - 127 - 127 - 192 - 192 - 159 - 159 - 187 - 187 - 191 - 191 - 191 - 191 - 183 - 183 - 191 - 191 - 254 - 254 - 3 - 3 - 253 - 253 - 239 - 239 - 253 - 253 - 127 - 127 - 255 - 255 - 251 - 251 - 191 - 191 - 189 - 189 - 191 - 191 - 175 - 175 - 191 - 191 - 190 - 190 - 223 - 223 - 127 - 127 - 255 - 255 - 223 - 223 - 253 - 253 - 255 - 255 - 247 - 247 - 255 - 255 - 255 - 255 - 254 - 254 - 255 - 219 - 255 - 137 - 255 - 141 - 255 - 223 - 122 - 90 - 114 - 114 - 48 - 48 - 32 - 32 - 126 - 126 - 251 - 199 - 253 - 131 - 253 - 195 - 253 - 243 - 253 - 203 - 121 - 79 - 254 - 206 - 242 - 142 - 231 - 223 - 205 - 255 - 125 - 115 - 126 - 98 - 249 - 199 - 243 - 255 - 126 - 126 - 127 - 127 - 247 - 199 - 238 - 142 - 221 - 156 - 187 - 184 - 246 - 240 - 255 - 255 - 127 - 127 - 254 - 254 - 111 - 15 - 223 - 31 - 187 - 59 - 119 - 115 - 239 - 231 - 255 - 255 - 254 - 254 - 126 - 126 - 239 - 207 - 223 - 159 - 187 - 187 - 247 - 243 - 239 - 231 - 255 - 255 - 126 - 126 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 62 - 32 - 224 - 0 - 240 - 0 - 240 - 0 - 47 - 230 - 15 - 203 - 55 - 71 - 62 - 16 - 224 - 0 - 240 - 0 - 240 - 0 - 240 - 0 - 240 - 0 - 240 - 0 - 240 - 0 - 47 - 230 - 15 - 176 - 79 - 240 - 128 - 169 - 161 - 224 - 129 - 121 - 224 - 128 - 62 - 48 - 224 - 0 - 201 - 124 - 224 - 150 - 125 - 224 - 151 - 126 - 167 - 40 - 29 - 254 - 128 - 40 - 23 - 240 - 150 - 103 - 240 - 151 - 111 - 17 - 16 - 0 - 25 - 240 - 143 - 61 - 224 - 143 - 200 - 24 - 224 - 175 - 224 - 149 - 24 - 233 - 224 - 149 - 6 - 7 - 17 - 134 - 255 - 42 - 18 - 19 - 5 - 32 - 250 - 240 - 137 - 33 - 55 - 76 - 7 - 95 - 22 - 0 - 25 - 94 - 35 - 86 - 26 - 111 - 19 - 26 - 103 - 19 - 26 - 224 - 144 - 19 - 26 - 224 - 145 - 94 - 35 - 86 - 35 - 240 - 140 - 224 - 148 - 126 - 254 - 255 - 40 - 199 - 254 - 253 - 32 - 12 - 240 - 140 - 238 - 16 - 224 - 148 - 24 - 234 - 19 - 19 - 24 - 230 - 254 - 254 - 40 - 248 - 224 - 137 - 240 - 135 - 71 - 26 - 79 - 240 - 139 - 203 - 119 - 32 - 6 - 240 - 144 - 128 - 137 - 24 - 10 - 120 - 245 - 240 - 144 - 71 - 241 - 144 - 153 - 222 - 8 - 224 - 147 - 240 - 136 - 71 - 19 - 26 - 19 - 79 - 240 - 139 - 203 - 111 - 32 - 6 - 240 - 145 - 128 - 137 - 24 - 10 - 120 - 245 - 240 - 145 - 71 - 241 - 144 - 153 - 222 - 8 - 224 - 146 - 229 - 240 - 141 - 103 - 240 - 142 - 111 - 240 - 149 - 167 - 40 - 4 - 62 - 255 - 24 - 2 - 240 - 147 - 34 - 240 - 146 - 34 - 240 - 137 - 34 - 240 - 148 - 71 - 240 - 139 - 176 - 71 - 240 - 138 - 176 - 34 - 124 - 224 - 141 - 125 - 224 - 142 - 225 - 195 - 114 - 72 - 33 - 9 - 194 - 126 - 71 - 167 - 200 - 45 - 126 - 254 - 15 - 208 - 112 - 44 - 54 - 0 - 201 - 10 - 95 - 22 - 0 - 13 - 10 - 13 - 13 - 13 - 13 - 13 - 13 - 167 - 200 - 254 - 2 - 40 - 20 - 25 - 126 - 254 - 127 - 40 - 35 - 10 - 150 - 2 - 28 - 123 - 12 - 12 - 12 - 12 - 12 - 12 - 12 - 2 - 201 - 123 - 254 - 255 - 40 - 35 - 25 - 126 - 254 - 127 - 40 - 6 - 10 - 134 - 2 - 29 - 24 - 229 - 43 - 29 - 24 - 246 - 27 - 43 - 62 - 2 - 12 - 12 - 12 - 12 - 12 - 12 - 2 - 13 - 13 - 13 - 13 - 13 - 13 - 24 - 227 - 175 - 12 - 12 - 12 - 12 - 12 - 12 - 2 - 12 - 2 - 201 - 28 - 26 - 254 - 15 - 48 - 73 - 28 - 61 - 18 - 29 - 62 - 15 - 18 - 24 - 64 - 245 - 26 - 167 - 32 - 14 - 250 - 12 - 194 - 254 - 3 - 62 - 2 - 56 - 2 - 62 - 4 - 234 - 14 - 194 - 241 - 24 - 33 - 240 - 179 - 254 - 13 - 202 - 127 - 74 - 17 - 7 - 194 - 240 - 129 - 71 - 240 - 128 - 203 - 79 - 32 - 215 - 245 - 250 - 14 - 194 - 254 - 4 - 32 - 5 - 62 - 2 - 234 - 14 - 194 - 241 - 203 - 71 - 32 - 15 - 26 - 254 - 1 - 40 - 177 - 203 - 120 - 194 - 119 - 74 - 203 - 72 - 32 - 63 - 201 - 26 - 167 - 32 - 242 - 33 - 10 - 194 - 126 - 167 - 40 - 235 - 203 - 64 - 40 - 231 - 54 - 0 - 33 - 3 - 194 - 229 - 126 - 254 - 24 - 40 - 25 - 230 - 240 - 246 - 4 - 119 - 250 - 14 - 194 - 254 - 4 - 40 - 8 - 62 - 2 - 234 - 14 - 194 - 234 - 8 - 194 - 33 - 12 - 194 - 54 - 48 - 33 - 224 - 223 - 54 - 1 - 62 - 1 - 18 - 225 - 24 - 184 - 33 - 12 - 194 - 126 - 254 - 6 - 32 - 7 - 240 - 159 - 167 - 32 - 2 - 54 - 0 - 240 - 179 - 254 - 13 - 6 - 3 - 40 - 6 - 240 - 181 - 167 - 200 - 6 - 1 - 33 - 169 - 255 - 17 - 0 - 192 - 42 - 167 - 40 - 8 - 28 - 28 - 28 - 28 - 5 - 32 - 245 - 201 - 229 - 33 - 5 - 194 - 70 - 33 - 1 - 194 - 42 - 198 - 254 - 18 - 28 - 14 - 2 - 203 - 104 - 40 - 2 - 14 - 248 - 42 - 129 - 18 - 14 - 96 - 28 - 240 - 179 - 254 - 13 - 32 - 10 - 14 - 122 - 240 - 228 - 254 - 11 - 32 - 2 - 14 - 110 - 121 - 18 - 28 - 175 - 18 - 225 - 45 - 14 - 10 - 203 - 104 - 32 - 2 - 14 - 9 - 113 - 33 - 224 - 223 - 54 - 2 - 62 - 12 - 234 - 174 - 192 - 62 - 255 - 234 - 169 - 192 - 201 - 33 - 12 - 194 - 54 - 32 - 195 - 186 - 73 - 240 - 129 - 230 - 3 - 32 - 135 - 240 - 128 - 203 - 71 - 200 - 33 - 174 - 192 - 126 - 167 - 202 - 12 - 74 - 53 - 201 - 240 - 159 - 167 - 200 - 254 - 255 - 200 - 250 - 216 - 192 - 167 - 40 - 6 - 61 - 234 - 216 - 192 - 24 - 42 - 250 - 220 - 192 - 203 - 39 - 95 - 22 - 0 - 33 - 228 - 74 - 25 - 94 - 35 - 86 - 213 - 225 - 250 - 217 - 192 - 22 - 0 - 95 - 25 - 42 - 254 - 255 - 40 - 26 - 234 - 218 - 192 - 126 - 234 - 216 - 192 - 28 - 28 - 123 - 234 - 217 - 192 - 240 - 128 - 234 - 219 - 192 - 250 - 218 - 192 - 224 - 128 - 224 - 129 - 201 - 175 - 234 - 218 - 192 - 24 - 237 - 80 - 101 - 224 - 101 - 112 - 102 - 6 - 4 - 17 - 16 - 0 - 33 - 16 - 194 - 229 - 126 - 254 - 128 - 32 - 2 - 54 - 255 - 167 - 32 - 30 - 213 - 17 - 7 - 0 - 25 - 209 - 126 - 167 - 40 - 43 - 45 - 45 - 126 - 45 - 45 - 45 - 167 - 32 - 21 - 52 - 240 - 243 - 79 - 240 - 164 - 145 - 79 - 126 - 145 - 119 - 225 - 25 - 5 - 32 - 210 - 240 - 164 - 224 - 243 - 201 - 53 - 240 - 243 - 79 - 240 - 164 - 145 - 79 - 126 - 145 - 119 - 24 - 233 - 225 - 229 - 54 - 128 - 44 - 44 - 54 - 255 - 24 - 223 - 240 - 238 - 254 - 3 - 192 - 33 - 45 - 192 - 240 - 164 - 71 - 240 - 242 - 144 - 50 - 250 - 1 - 194 - 214 - 11 - 119 - 250 - 10 - 194 - 167 - 32 - 11 - 240 - 241 - 71 - 214 - 4 - 190 - 48 - 10 - 120 - 190 - 208 - 54 - 0 - 62 - 4 - 224 - 238 - 201 - 62 - 2 - 234 - 7 - 194 - 201 - 33 - 1 - 194 - 126 - 254 - 180 - 216 - 254 - 192 - 208 - 175 - 224 - 153 - 224 - 181 - 60 - 224 - 179 - 60 - 234 - 232 - 223 - 62 - 144 - 224 - 166 - 201 - 240 - 153 - 254 - 1 - 192 - 240 - 166 - 167 - 40 - 16 - 230 - 3 - 192 - 175 - 234 - 0 - 194 - 250 - 3 - 194 - 238 - 16 - 234 - 3 - 194 - 201 - 62 - 2 - 224 - 153 - 175 - 234 - 0 - 194 - 250 - 3 - 194 - 246 - 16 - 234 - 3 - 194 - 201 - 240 - 153 - 254 - 4 - 40 - 37 - 254 - 3 - 192 - 240 - 166 - 167 - 40 - 12 - 230 - 3 - 192 - 250 - 3 - 194 - 238 - 16 - 234 - 3 - 194 - 201 - 62 - 4 - 224 - 153 - 62 - 64 - 224 - 166 - 250 - 3 - 194 - 230 - 15 - 234 - 3 - 194 - 201 - 240 - 166 - 167 - 40 - 12 - 230 - 3 - 192 - 250 - 0 - 194 - 238 - 128 - 234 - 0 - 194 - 201 - 175 - 224 - 153 - 234 - 0 - 194 - 250 - 3 - 194 - 230 - 15 - 234 - 3 - 194 - 201 - 240 - 159 - 254 - 255 - 192 - 240 - 128 - 71 - 250 - 218 - 192 - 184 - 40 - 33 - 33 - 0 - 195 - 250 - 217 - 192 - 95 - 22 - 0 - 25 - 250 - 218 - 192 - 34 - 250 - 216 - 192 - 119 - 28 - 28 - 123 - 234 - 217 - 192 - 120 - 234 - 218 - 192 - 175 - 234 - 216 - 192 - 201 - 250 - 216 - 192 - 60 - 234 - 216 - 192 - 201 - 141 - 76 - 145 - 76 - 149 - 76 - 153 - 76 - 157 - 76 - 161 - 76 - 165 - 76 - 169 - 76 - 141 - 76 - 145 - 76 - 177 - 76 - 181 - 76 - 185 - 76 - 189 - 76 - 165 - 76 - 173 - 76 - 193 - 76 - 197 - 76 - 201 - 76 - 205 - 76 - 209 - 76 - 213 - 76 - 217 - 76 - 221 - 76 - 225 - 76 - 229 - 76 - 233 - 76 - 237 - 76 - 241 - 76 - 245 - 76 - 245 - 76 - 245 - 76 - 249 - 76 - 253 - 76 - 1 - 77 - 5 - 77 - 9 - 77 - 13 - 77 - 25 - 77 - 21 - 77 - 17 - 77 - 29 - 77 - 33 - 77 - 37 - 77 - 249 - 248 - 44 - 77 - 249 - 248 - 51 - 77 - 249 - 248 - 58 - 77 - 249 - 248 - 65 - 77 - 249 - 248 - 72 - 77 - 249 - 248 - 79 - 77 - 249 - 251 - 86 - 77 - 249 - 251 - 93 - 77 - 252 - 252 - 97 - 77 - 249 - 248 - 104 - 77 - 249 - 248 - 111 - 77 - 249 - 248 - 118 - 77 - 249 - 248 - 125 - 77 - 249 - 248 - 132 - 77 - 249 - 248 - 139 - 77 - 249 - 248 - 146 - 77 - 249 - 248 - 153 - 77 - 249 - 248 - 160 - 77 - 249 - 248 - 167 - 77 - 249 - 251 - 174 - 77 - 249 - 251 - 181 - 77 - 249 - 248 - 188 - 77 - 249 - 248 - 195 - 77 - 249 - 248 - 202 - 77 - 249 - 248 - 209 - 77 - 249 - 248 - 216 - 77 - 249 - 248 - 223 - 77 - 249 - 248 - 230 - 77 - 249 - 248 - 237 - 77 - 249 - 248 - 244 - 77 - 249 - 248 - 251 - 77 - 249 - 248 - 2 - 78 - 249 - 248 - 9 - 78 - 249 - 248 - 20 - 78 - 249 - 247 - 31 - 78 - 249 - 248 - 42 - 78 - 249 - 248 - 53 - 78 - 249 - 248 - 68 - 78 - 0 - 1 - 16 - 17 - 255 - 68 - 78 - 2 - 3 - 18 - 19 - 255 - 68 - 78 - 4 - 5 - 20 - 21 - 255 - 68 - 78 - 0 - 1 - 22 - 23 - 255 - 68 - 78 - 8 - 9 - 24 - 25 - 255 - 68 - 78 - 10 - 11 - 26 - 27 - 255 - 68 - 78 - 0 - 1 - 12 - 13 - 255 - 68 - 78 - 0 - 1 - 28 - 29 - 255 - 68 - 78 - 98 - 255 - 68 - 78 - 112 - 113 - 114 - 115 - 255 - 68 - 78 - 112 - 113 - 116 - 115 - 255 - 68 - 78 - 99 - 100 - 101 - 102 - 255 - 68 - 78 - 99 - 100 - 101 - 103 - 255 - 68 - 78 - 32 - 33 - 48 - 49 - 255 - 68 - 78 - 34 - 35 - 50 - 51 - 255 - 68 - 78 - 36 - 37 - 52 - 53 - 255 - 68 - 78 - 34 - 35 - 54 - 55 - 255 - 68 - 78 - 40 - 41 - 56 - 57 - 255 - 68 - 78 - 42 - 43 - 58 - 59 - 255 - 68 - 78 - 44 - 45 - 60 - 61 - 255 - 68 - 78 - 46 - 47 - 62 - 63 - 255 - 68 - 78 - 64 - 65 - 66 - 67 - 255 - 68 - 78 - 68 - 69 - 70 - 71 - 255 - 68 - 78 - 117 - 118 - 119 - 120 - 255 - 68 - 78 - 117 - 118 - 121 - 120 - 255 - 68 - 78 - 104 - 105 - 106 - 107 - 255 - 68 - 78 - 104 - 108 - 106 - 109 - 255 - 68 - 78 - 160 - 161 - 176 - 177 - 255 - 68 - 78 - 162 - 163 - 178 - 179 - 255 - 68 - 78 - 78 - 73 - 80 - 81 - 255 - 68 - 78 - 72 - 73 - 74 - 75 - 255 - 68 - 78 - 12 - 13 - 28 - 29 - 255 - 68 - 78 - 46 - 47 - 62 - 63 - 255 - 92 - 78 - 44 - 44 - 79 - 60 - 45 - 61 - 76 - 77 - 255 - 76 - 78 - 14 - 79 - 45 - 76 - 30 - 60 - 61 - 77 - 255 - 92 - 78 - 38 - 39 - 79 - 60 - 45 - 61 - 76 - 77 - 255 - 92 - 78 - 254 - 124 - 97 - 125 - 111 - 126 - 123 - 127 - 255 - 92 - 78 - 254 - 124 - 97 - 125 - 111 - 126 - 97 - 125 - 111 - 126 - 123 - 127 - 255 - 0 - 0 - 0 - 8 - 8 - 0 - 8 - 8 - 0 - 0 - 0 - 9 - 0 - 17 - 0 - 25 - 8 - 0 - 8 - 9 - 8 - 17 - 8 - 25 - 0 - 0 - 8 - 0 - 0 - 8 - 8 - 8 - 0 - 16 - 8 - 16 - 0 - 24 - 8 - 24 - 0 - 32 - 8 - 32 - 0 - 40 - 8 - 40 - 15 - 15 - 60 - 16 - 79 - 201 - 20 - 15 - 4 - 24 - 15 - 54 - 24 - 143 - 54 - 25 - 15 - 54 - 25 - 143 - 54 - 26 - 15 - 54 - 26 - 143 - 54 - 29 - 15 - 4 - 31 - 7 - 188 - 31 - 78 - 201 - 35 - 15 - 132 - 36 - 79 - 73 - 49 - 4 - 4 - 49 - 4 - 60 - 52 - 135 - 10 - 55 - 138 - 58 - 58 - 137 - 10 - 60 - 79 - 2 - 62 - 139 - 4 - 65 - 9 - 132 - 71 - 78 - 2 - 76 - 79 - 73 - 81 - 15 - 177 - 83 - 15 - 4 - 87 - 14 - 49 - 88 - 15 - 4 - 94 - 138 - 132 - 96 - 8 - 49 - 99 - 4 - 60 - 106 - 8 - 4 - 109 - 4 - 60 - 113 - 16 - 11 - 114 - 6 - 58 - 119 - 6 - 11 - 121 - 78 - 73 - 126 - 79 - 73 - 134 - 74 - 2 - 136 - 15 - 49 - 137 - 15 - 49 - 137 - 135 - 60 - 138 - 15 - 49 - 141 - 135 - 132 - 142 - 15 - 60 - 144 - 74 - 73 - 149 - 11 - 49 - 155 - 5 - 3 - 165 - 5 - 3 - 175 - 5 - 3 - 185 - 5 - 3 - 195 - 69 - 3 - 215 - 5 - 3 - 225 - 138 - 59 - 227 - 7 - 54 - 228 - 5 - 54 - 255 - 12 - 133 - 37 - 15 - 16 - 4 - 16 - 140 - 132 - 19 - 5 - 37 - 19 - 15 - 142 - 22 - 15 - 4 - 25 - 136 - 37 - 26 - 136 - 37 - 29 - 78 - 2 - 30 - 5 - 37 - 32 - 4 - 181 - 33 - 196 - 2 - 40 - 7 - 37 - 42 - 12 - 14 - 44 - 15 - 4 - 45 - 131 - 181 - 46 - 6 - 37 - 49 - 12 - 132 - 50 - 4 - 181 - 51 - 2 - 4 - 52 - 12 - 132 - 55 - 143 - 4 - 59 - 134 - 53 - 62 - 12 - 132 - 64 - 12 - 4 - 68 - 6 - 37 - 69 - 11 - 14 - 70 - 8 - 37 - 73 - 15 - 4 - 75 - 132 - 181 - 78 - 8 - 14 - 79 - 12 - 132 - 81 - 206 - 73 - 83 - 5 - 37 - 85 - 15 - 142 - 86 - 12 - 4 - 88 - 14 - 142 - 99 - 11 - 14 - 105 - 131 - 3 - 115 - 131 - 3 - 123 - 5 - 181 - 123 - 207 - 73 - 124 - 136 - 37 - 126 - 15 - 14 - 127 - 15 - 132 - 129 - 78 - 2 - 132 - 8 - 10 - 136 - 13 - 4 - 137 - 71 - 58 - 140 - 138 - 54 - 141 - 10 - 54 - 142 - 137 - 54 - 143 - 9 - 54 - 146 - 138 - 54 - 148 - 11 - 54 - 148 - 139 - 54 - 150 - 139 - 54 - 152 - 10 - 54 - 153 - 137 - 54 - 155 - 8 - 54 - 156 - 135 - 54 - 158 - 5 - 54 - 255 - 14 - 140 - 11 - 18 - 9 - 56 - 20 - 9 - 57 - 25 - 136 - 56 - 29 - 5 - 59 - 38 - 10 - 58 - 39 - 8 - 54 - 39 - 136 - 54 - 39 - 13 - 71 - 40 - 198 - 2 - 41 - 13 - 4 - 53 - 16 - 14 - 55 - 7 - 4 - 57 - 16 - 14 - 63 - 14 - 11 - 65 - 140 - 56 - 68 - 140 - 57 - 70 - 132 - 58 - 76 - 4 - 11 - 78 - 16 - 11 - 85 - 9 - 54 - 85 - 137 - 54 - 87 - 16 - 11 - 93 - 16 - 59 - 96 - 145 - 59 - 111 - 15 - 60 - 113 - 15 - 177 - 115 - 15 - 49 - 122 - 143 - 188 - 123 - 10 - 132 - 124 - 143 - 71 - 136 - 12 - 188 - 137 - 138 - 60 - 146 - 14 - 50 - 255 - 165 - 86 - 165 - 86 - 194 - 92 - 204 - 82 - 83 - 83 - 201 - 83 - 83 - 83 - 32 - 84 - 170 - 84 - 240 - 84 - 83 - 83 - 204 - 82 - 32 - 84 - 32 - 84 - 170 - 84 - 83 - 83 - 78 - 85 - 78 - 85 - 185 - 98 - 59 - 99 - 185 - 98 - 185 - 98 - 178 - 99 - 221 - 85 - 59 - 99 - 73 - 86 - 255 - 194 - 92 - 165 - 86 - 194 - 92 - 201 - 87 - 136 - 88 - 201 - 87 - 36 - 89 - 231 - 89 - 36 - 89 - 75 - 90 - 231 - 89 - 136 - 88 - 75 - 90 - 188 - 90 - 188 - 90 - 201 - 87 - 194 - 91 - 75 - 92 - 73 - 86 - 255 - 165 - 86 - 165 - 86 - 194 - 92 - 129 - 93 - 239 - 93 - 239 - 93 - 129 - 93 - 87 - 94 - 192 - 94 - 239 - 93 - 239 - 93 - 92 - 95 - 206 - 95 - 78 - 96 - 78 - 96 - 66 - 97 - 66 - 97 - 5 - 98 - 255 - 44 - 82 - 44 - 82 - 44 - 82 - 44 - 82 - 255 - 0 - 5 - 1 - 1 - 5 - 24 - 136 - 10 - 1 - 2 - 10 - 24 - 136 - 255 - 7 - 0 - 2 - 7 - 16 - 120 - 11 - 8 - 1 - 11 - 80 - 48 - 255 - 7 - 2 - 1 - 7 - 32 - 128 - 14 - 2 - 2 - 14 - 32 - 128 - 255 - 5 - 5 - 1 - 5 - 56 - 88 - 15 - 5 - 2 - 15 - 56 - 88 - 255 - 6 - 2 - 2 - 6 - 32 - 128 - 17 - 8 - 1 - 17 - 80 - 96 - 255 - 8 - 7 - 1 - 8 - 72 - 48 - 15 - 7 - 2 - 15 - 72 - 136 - 255 - 7 - 1 - 1 - 7 - 24 - 64 - 11 - 2 - 2 - 11 - 32 - 136 - 255 - 3 - 2 - 2 - 3 - 32 - 128 - 22 - 7 - 2 - 22 - 72 - 152 - 255 - 6 - 2 - 1 - 6 - 32 - 144 - 18 - 6 - 1 - 18 - 64 - 136 - 255 - 4 - 2 - 40 - 7 - 3 - 42 - 7 - 15 - 40 - 11 - 14 - 44 - 15 - 19 - 192 - 255 - 4 - 1 - 40 - 7 - 15 - 42 - 11 - 19 - 40 - 13 - 14 - 42 - 255 - 1 - 14 - 42 - 2 - 8 - 40 - 2 - 15 - 192 - 3 - 2 - 7 - 10 - 10 - 7 - 12 - 13 - 192 - 13 - 6 - 40 - 14 - 11 - 40 - 255 - 1 - 1 - 40 - 1 - 9 - 40 - 2 - 18 - 240 - 4 - 14 - 40 - 7 - 9 - 40 - 11 - 4 - 44 - 14 - 9 - 192 - 15 - 4 - 40 - 17 - 8 - 42 - 255 - 1 - 9 - 192 - 2 - 4 - 240 - 2 - 16 - 192 - 4 - 16 - 40 - 8 - 15 - 44 - 9 - 15 - 40 - 10 - 11 - 40 - 255 - 4 - 15 - 40 - 6 - 10 - 44 - 12 - 2 - 40 - 18 - 2 - 42 - 19 - 17 - 40 - 255 - 5 - 3 - 40 - 7 - 0 - 192 - 13 - 4 - 42 - 15 - 3 - 40 - 255 - 1 - 18 - 40 - 2 - 10 - 192 - 4 - 15 - 240 - 6 - 13 - 40 - 8 - 12 - 7 - 10 - 19 - 40 - 255 - 1 - 18 - 40 - 2 - 9 - 192 - 7 - 11 - 40 - 8 - 9 - 42 - 11 - 4 - 240 - 15 - 3 - 40 - 255 - 3 - 16 - 40 - 8 - 9 - 192 - 10 - 7 - 40 - 12 - 0 - 44 - 14 - 17 - 192 - 15 - 17 - 40 - 16 - 17 - 192 - 20 - 9 - 40 - 21 - 3 - 42 - 255 - 5 - 10 - 40 - 8 - 6 - 40 - 10 - 9 - 40 - 13 - 5 - 44 - 15 - 5 - 40 - 17 - 0 - 192 - 255 - 3 - 14 - 40 - 9 - 10 - 40 - 10 - 14 - 42 - 12 - 14 - 44 - 15 - 14 - 40 - 24 - 7 - 40 - 255 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 2 - 142 - 143 - 211 - 142 - 143 - 142 - 254 - 2 - 143 - 142 - 211 - 143 - 142 - 143 - 254 - 226 - 253 - 96 - 254 - 33 - 52 - 196 - 58 - 61 - 97 - 97 - 254 - 18 - 49 - 53 - 181 - 56 - 59 - 62 - 96 - 96 - 254 - 18 - 50 - 54 - 181 - 57 - 60 - 63 - 97 - 97 - 254 - 18 - 49 - 53 - 226 - 253 - 96 - 254 - 18 - 50 - 54 - 226 - 253 - 97 - 254 - 18 - 51 - 55 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 211 - 58 - 96 - 96 - 254 - 196 - 56 - 59 - 97 - 97 - 254 - 196 - 57 - 60 - 96 - 96 - 254 - 65 - 52 - 226 - 253 - 97 - 254 - 50 - 49 - 53 - 166 - 58 - 61 - 64 - 67 - 96 - 96 - 254 - 50 - 50 - 54 - 151 - 56 - 59 - 62 - 65 - 68 - 97 - 97 - 254 - 50 - 51 - 55 - 151 - 57 - 60 - 63 - 66 - 69 - 96 - 96 - 254 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 181 - 112 - 114 - 114 - 96 - 96 - 254 - 97 - 129 - 181 - 113 - 115 - 115 - 97 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 254 - 33 - 52 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 226 - 253 - 97 - 254 - 18 - 49 - 53 - 226 - 253 - 96 - 254 - 18 - 50 - 54 - 226 - 253 - 97 - 254 - 18 - 51 - 55 - 113 - 129 - 196 - 112 - 114 - 96 - 96 - 254 - 113 - 129 - 196 - 113 - 115 - 97 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 166 - 58 - 61 - 64 - 67 - 96 - 96 - 254 - 151 - 56 - 59 - 62 - 65 - 68 - 97 - 97 - 254 - 151 - 57 - 60 - 63 - 66 - 69 - 96 - 96 - 254 - 226 - 253 - 97 - 254 - 81 - 130 - 145 - 99 - 226 - 253 - 96 - 254 - 81 - 130 - 145 - 100 - 226 - 253 - 97 - 254 - 81 - 130 - 145 - 99 - 226 - 253 - 96 - 254 - 81 - 128 - 145 - 100 - 226 - 253 - 97 - 254 - 211 - 99 - 96 - 96 - 254 - 209 - 100 - 254 - 209 - 99 - 254 - 209 - 100 - 254 - 254 - 254 - 254 - 254 - 254 - 254 - 17 - 52 - 209 - 99 - 254 - 2 - 49 - 53 - 211 - 100 - 97 - 97 - 254 - 2 - 50 - 54 - 226 - 253 - 96 - 254 - 2 - 51 - 55 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 17 - 129 - 81 - 99 - 226 - 253 - 96 - 254 - 82 - 100 - 99 - 226 - 253 - 97 - 254 - 97 - 100 - 145 - 99 - 226 - 253 - 96 - 254 - 145 - 100 - 226 - 253 - 97 - 254 - 49 - 95 - 145 - 99 - 226 - 253 - 96 - 254 - 145 - 100 - 226 - 253 - 97 - 254 - 211 - 99 - 96 - 96 - 254 - 211 - 100 - 97 - 97 - 254 - 145 - 99 - 254 - 145 - 100 - 254 - 145 - 99 - 254 - 145 - 100 - 254 - 115 - 253 - 99 - 254 - 17 - 244 - 49 - 244 - 81 - 244 - 115 - 253 - 100 - 196 - 58 - 61 - 64 - 67 - 254 - 181 - 56 - 59 - 62 - 65 - 68 - 254 - 181 - 57 - 60 - 63 - 66 - 69 - 254 - 66 - 106 - 107 - 181 - 58 - 61 - 64 - 67 - 60 - 254 - 65 - 99 - 166 - 56 - 71 - 61 - 64 - 67 - 60 - 254 - 50 - 99 - 100 - 165 - 70 - 59 - 62 - 65 - 68 - 254 - 49 - 100 - 166 - 57 - 60 - 63 - 66 - 69 - 60 - 254 - 49 - 100 - 254 - 254 - 254 - 211 - 58 - 61 - 64 - 254 - 196 - 56 - 59 - 62 - 65 - 254 - 33 - 52 - 196 - 57 - 60 - 63 - 66 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 254 - 18 - 51 - 55 - 254 - 254 - 254 - 254 - 254 - 254 - 196 - 58 - 61 - 64 - 67 - 254 - 181 - 56 - 59 - 62 - 65 - 68 - 254 - 181 - 57 - 60 - 63 - 66 - 69 - 254 - 254 - 196 - 112 - 114 - 99 - 99 - 254 - 33 - 52 - 196 - 113 - 115 - 100 - 100 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 254 - 18 - 51 - 55 - 166 - 253 - 99 - 254 - 166 - 253 - 100 - 254 - 254 - 129 - 244 - 161 - 244 - 193 - 244 - 225 - 244 - 254 - 254 - 136 - 253 - 99 - 254 - 136 - 253 - 100 - 254 - 254 - 129 - 244 - 161 - 244 - 193 - 244 - 225 - 244 - 254 - 254 - 106 - 253 - 99 - 254 - 106 - 253 - 100 - 254 - 120 - 253 - 244 - 254 - 102 - 106 - 107 - 106 - 107 - 106 - 105 - 241 - 99 - 254 - 241 - 100 - 254 - 196 - 106 - 107 - 106 - 107 - 254 - 82 - 244 - 127 - 226 - 253 - 96 - 254 - 82 - 244 - 127 - 226 - 253 - 97 - 254 - 82 - 244 - 127 - 226 - 253 - 96 - 254 - 82 - 244 - 127 - 226 - 253 - 97 - 254 - 82 - 244 - 127 - 226 - 253 - 96 - 254 - 82 - 244 - 127 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 161 - 129 - 226 - 253 - 97 - 254 - 116 - 112 - 114 - 114 - 129 - 226 - 253 - 96 - 254 - 17 - 52 - 116 - 113 - 115 - 115 - 129 - 226 - 253 - 97 - 254 - 2 - 49 - 53 - 226 - 253 - 96 - 254 - 2 - 50 - 54 - 226 - 253 - 97 - 254 - 2 - 51 - 55 - 226 - 253 - 96 - 254 - 166 - 58 - 61 - 64 - 67 - 97 - 97 - 254 - 151 - 56 - 59 - 62 - 65 - 68 - 96 - 96 - 254 - 151 - 57 - 60 - 63 - 66 - 69 - 97 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 166 - 99 - 99 - 99 - 99 - 96 - 96 - 254 - 166 - 100 - 100 - 100 - 100 - 97 - 97 - 254 - 254 - 254 - 97 - 127 - 254 - 33 - 129 - 82 - 244 - 127 - 254 - 33 - 129 - 82 - 244 - 127 - 254 - 33 - 129 - 82 - 244 - 127 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 226 - 253 - 96 - 254 - 254 - 181 - 253 - 99 - 254 - 33 - 52 - 181 - 253 - 100 - 254 - 18 - 49 - 53 - 136 - 99 - 99 - 106 - 107 - 99 - 99 - 106 - 107 - 254 - 18 - 50 - 54 - 136 - 100 - 100 - 99 - 99 - 100 - 100 - 99 - 99 - 254 - 18 - 51 - 55 - 136 - 106 - 107 - 100 - 100 - 106 - 107 - 100 - 100 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 241 - 143 - 254 - 241 - 142 - 254 - 33 - 142 - 241 - 143 - 254 - 0 - 19 - 36 - 143 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 142 - 19 - 36 - 142 - 254 - 0 - 33 - 72 - 142 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 143 - 33 - 72 - 143 - 254 - 0 - 253 - 127 - 254 - 41 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 128 - 241 - 127 - 254 - 41 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 244 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 241 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 130 - 211 - 116 - 119 - 127 - 254 - 11 - 127 - 127 - 244 - 244 - 244 - 244 - 130 - 244 - 244 - 244 - 129 - 211 - 117 - 120 - 127 - 254 - 0 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 114 - 118 - 121 - 127 - 254 - 5 - 100 - 99 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 6 - 99 - 100 - 99 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 3 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 6 - 99 - 106 - 107 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 3 - 100 - 106 - 107 - 226 - 101 - 103 - 254 - 2 - 99 - 105 - 196 - 112 - 114 - 102 - 104 - 254 - 2 - 100 - 105 - 196 - 113 - 115 - 101 - 103 - 254 - 5 - 99 - 100 - 99 - 106 - 107 - 226 - 102 - 104 - 254 - 6 - 100 - 99 - 100 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 5 - 99 - 100 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 5 - 100 - 99 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 5 - 99 - 100 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 5 - 100 - 106 - 107 - 106 - 107 - 226 - 101 - 103 - 254 - 7 - 99 - 99 - 99 - 99 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 5 - 100 - 100 - 100 - 100 - 105 - 226 - 101 - 103 - 254 - 5 - 99 - 99 - 99 - 99 - 105 - 226 - 102 - 104 - 254 - 4 - 253 - 100 - 181 - 112 - 114 - 114 - 101 - 103 - 254 - 6 - 99 - 106 - 107 - 106 - 107 - 105 - 181 - 113 - 115 - 115 - 102 - 104 - 254 - 4 - 99 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 3 - 100 - 99 - 105 - 226 - 102 - 104 - 254 - 3 - 99 - 100 - 105 - 226 - 101 - 103 - 254 - 3 - 100 - 106 - 107 - 181 - 112 - 114 - 114 - 102 - 104 - 254 - 4 - 99 - 106 - 107 - 105 - 181 - 113 - 115 - 115 - 101 - 103 - 254 - 2 - 100 - 105 - 226 - 102 - 104 - 254 - 2 - 106 - 107 - 226 - 101 - 103 - 254 - 3 - 106 - 107 - 105 - 226 - 102 - 104 - 254 - 5 - 99 - 106 - 107 - 106 - 107 - 241 - 101 - 254 - 2 - 100 - 99 - 241 - 102 - 254 - 3 - 99 - 100 - 105 - 241 - 101 - 254 - 2 - 100 - 105 - 241 - 102 - 254 - 113 - 129 - 177 - 129 - 241 - 101 - 254 - 113 - 130 - 177 - 130 - 241 - 102 - 254 - 113 - 129 - 177 - 129 - 241 - 101 - 254 - 49 - 95 - 241 - 102 - 254 - 3 - 106 - 107 - 105 - 211 - 101 - 103 - 101 - 254 - 2 - 100 - 105 - 211 - 102 - 104 - 102 - 254 - 3 - 99 - 106 - 107 - 226 - 101 - 103 - 254 - 2 - 100 - 105 - 226 - 102 - 104 - 254 - 2 - 244 - 99 - 226 - 101 - 103 - 254 - 18 - 100 - 105 - 226 - 102 - 104 - 254 - 0 - 244 - 99 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 100 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 0 - 244 - 99 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 101 - 103 - 93 - 93 - 93 - 254 - 31 - 100 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 102 - 104 - 93 - 93 - 93 - 254 - 0 - 244 - 106 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 112 - 114 - 99 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 113 - 115 - 100 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 226 - 102 - 104 - 254 - 97 - 244 - 161 - 130 - 226 - 101 - 103 - 254 - 161 - 129 - 226 - 102 - 104 - 254 - 97 - 244 - 146 - 95 - 130 - 226 - 101 - 103 - 254 - 161 - 129 - 226 - 102 - 104 - 254 - 97 - 244 - 161 - 130 - 226 - 101 - 103 - 254 - 226 - 102 - 104 - 254 - 254 - 254 - 254 - 5 - 106 - 107 - 106 - 107 - 105 - 211 - 106 - 107 - 106 - 254 - 19 - 106 - 107 - 105 - 226 - 101 - 103 - 254 - 226 - 102 - 104 - 254 - 254 - 254 - 226 - 101 - 103 - 254 - 226 - 102 - 104 - 254 - 226 - 101 - 103 - 254 - 226 - 102 - 104 - 254 - 254 - 254 - 18 - 99 - 105 - 145 - 244 - 177 - 99 - 254 - 2 - 99 - 100 - 145 - 244 - 177 - 100 - 254 - 3 - 100 - 106 - 105 - 145 - 244 - 177 - 99 - 254 - 3 - 99 - 99 - 105 - 145 - 244 - 177 - 100 - 254 - 3 - 100 - 100 - 105 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 3 - 99 - 99 - 105 - 177 - 99 - 254 - 4 - 100 - 100 - 106 - 105 - 113 - 129 - 177 - 100 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 3 - 106 - 107 - 105 - 178 - 99 - 105 - 254 - 178 - 100 - 105 - 254 - 178 - 99 - 105 - 254 - 179 - 100 - 106 - 105 - 254 - 178 - 106 - 105 - 254 - 180 - 106 - 107 - 106 - 105 - 254 - 179 - 106 - 107 - 105 - 254 - 178 - 99 - 105 - 254 - 178 - 100 - 105 - 254 - 179 - 106 - 107 - 105 - 254 - 19 - 106 - 107 - 105 - 254 - 3 - 99 - 99 - 105 - 254 - 3 - 100 - 100 - 105 - 162 - 106 - 105 - 254 - 3 - 106 - 107 - 105 - 163 - 106 - 107 - 105 - 254 - 3 - 106 - 107 - 105 - 254 - 3 - 99 - 106 - 107 - 254 - 2 - 100 - 105 - 163 - 106 - 107 - 105 - 254 - 3 - 106 - 107 - 105 - 165 - 106 - 107 - 106 - 107 - 105 - 254 - 31 - 253 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 106 - 107 - 106 - 107 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 106 - 107 - 106 - 107 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 237 - 106 - 105 - 93 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 3 - 100 - 99 - 105 - 226 - 101 - 103 - 254 - 4 - 99 - 100 - 106 - 105 - 226 - 102 - 104 - 254 - 3 - 100 - 99 - 105 - 254 - 3 - 99 - 100 - 105 - 254 - 2 - 100 - 99 - 254 - 3 - 99 - 100 - 105 - 254 - 5 - 100 - 99 - 106 - 107 - 105 - 254 - 4 - 99 - 100 - 106 - 105 - 254 - 3 - 100 - 99 - 105 - 254 - 3 - 99 - 100 - 105 - 254 - 3 - 100 - 99 - 105 - 194 - 99 - 105 - 254 - 5 - 99 - 100 - 99 - 106 - 105 - 193 - 100 - 254 - 5 - 100 - 99 - 100 - 106 - 107 - 194 - 99 - 105 - 254 - 4 - 99 - 100 - 106 - 105 - 194 - 100 - 105 - 254 - 3 - 100 - 99 - 105 - 254 - 3 - 99 - 100 - 105 - 254 - 2 - 100 - 99 - 254 - 2 - 99 - 100 - 115 - 106 - 107 - 105 - 254 - 2 - 100 - 105 - 118 - 99 - 106 - 107 - 106 - 107 - 105 - 254 - 2 - 106 - 105 - 116 - 100 - 106 - 107 - 105 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 106 - 107 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 99 - 106 - 107 - 105 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 93 - 93 - 93 - 93 - 93 - 93 - 100 - 106 - 105 - 93 - 93 - 93 - 93 - 93 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 0 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 226 - 253 - 127 - 254 - 1 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 130 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 161 - 128 - 226 - 253 - 127 - 254 - 1 - 127 - 113 - 128 - 162 - 253 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 147 - 253 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 162 - 237 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 113 - 127 - 162 - 237 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 162 - 237 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 65 - 127 - 147 - 253 - 127 - 226 - 253 - 127 - 254 - 1 - 127 - 65 - 127 - 102 - 244 - 244 - 244 - 244 - 244 - 130 - 226 - 253 - 127 - 254 - 5 - 127 - 127 - 116 - 119 - 127 - 102 - 244 - 244 - 244 - 244 - 244 - 130 - 226 - 253 - 127 - 254 - 5 - 127 - 127 - 117 - 120 - 127 - 102 - 244 - 244 - 244 - 244 - 244 - 130 - 226 - 253 - 127 - 254 - 0 - 114 - 114 - 118 - 121 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 127 - 254 - 254 - 33 - 90 - 161 - 95 - 225 - 108 - 254 - 46 - 91 - 73 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 109 - 108 - 254 - 33 - 92 - 113 - 90 - 226 - 108 - 109 - 254 - 121 - 91 - 73 - 94 - 94 - 94 - 94 - 94 - 109 - 108 - 254 - 113 - 92 - 226 - 108 - 109 - 254 - 33 - 52 - 225 - 109 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 254 - 18 - 49 - 53 - 129 - 244 - 196 - 112 - 114 - 114 - 108 - 254 - 18 - 50 - 54 - 129 - 244 - 196 - 113 - 115 - 115 - 109 - 254 - 18 - 51 - 55 - 254 - 254 - 254 - 196 - 253 - 110 - 254 - 196 - 253 - 110 - 254 - 254 - 254 - 196 - 253 - 110 - 254 - 129 - 244 - 196 - 253 - 110 - 254 - 254 - 65 - 90 - 97 - 90 - 254 - 76 - 91 - 73 - 91 - 73 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 254 - 65 - 92 - 97 - 92 - 254 - 33 - 52 - 145 - 244 - 254 - 18 - 49 - 53 - 254 - 18 - 50 - 54 - 145 - 244 - 254 - 18 - 51 - 55 - 97 - 52 - 254 - 82 - 49 - 53 - 145 - 244 - 254 - 82 - 50 - 54 - 254 - 82 - 49 - 53 - 145 - 244 - 254 - 82 - 50 - 54 - 254 - 82 - 51 - 55 - 254 - 17 - 52 - 254 - 2 - 49 - 53 - 254 - 2 - 50 - 54 - 177 - 90 - 254 - 2 - 49 - 53 - 181 - 91 - 73 - 94 - 94 - 94 - 254 - 2 - 50 - 54 - 177 - 92 - 254 - 2 - 51 - 55 - 254 - 254 - 196 - 253 - 108 - 254 - 52 - 112 - 114 - 114 - 108 - 196 - 253 - 109 - 254 - 52 - 113 - 115 - 115 - 109 - 196 - 253 - 108 - 254 - 196 - 253 - 109 - 254 - 254 - 17 - 52 - 226 - 110 - 108 - 254 - 2 - 49 - 53 - 166 - 108 - 108 - 108 - 108 - 108 - 109 - 254 - 2 - 50 - 54 - 166 - 109 - 109 - 109 - 109 - 109 - 108 - 254 - 2 - 51 - 55 - 166 - 108 - 108 - 108 - 108 - 108 - 109 - 254 - 165 - 253 - 109 - 254 - 254 - 97 - 95 - 166 - 253 - 110 - 254 - 254 - 166 - 253 - 110 - 254 - 49 - 52 - 254 - 34 - 49 - 53 - 166 - 253 - 110 - 254 - 34 - 50 - 54 - 166 - 253 - 110 - 254 - 34 - 51 - 55 - 254 - 254 - 254 - 211 - 253 - 108 - 254 - 211 - 253 - 109 - 254 - 241 - 108 - 254 - 17 - 130 - 49 - 90 - 97 - 108 - 241 - 109 - 254 - 17 - 130 - 61 - 91 - 73 - 94 - 109 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 94 - 108 - 254 - 17 - 130 - 50 - 92 - 244 - 97 - 108 - 241 - 109 - 254 - 17 - 130 - 65 - 244 - 97 - 109 - 161 - 129 - 241 - 108 - 254 - 17 - 130 - 65 - 244 - 97 - 108 - 161 - 129 - 241 - 109 - 254 - 17 - 130 - 65 - 244 - 97 - 109 - 161 - 129 - 241 - 108 - 254 - 17 - 128 - 65 - 244 - 97 - 108 - 161 - 129 - 241 - 109 - 254 - 17 - 130 - 65 - 244 - 97 - 109 - 181 - 91 - 73 - 94 - 94 - 108 - 254 - 17 - 130 - 65 - 244 - 97 - 108 - 241 - 109 - 254 - 17 - 130 - 97 - 109 - 241 - 108 - 254 - 241 - 109 - 254 - 151 - 91 - 88 - 94 - 94 - 94 - 94 - 108 - 254 - 17 - 52 - 241 - 109 - 254 - 2 - 49 - 53 - 211 - 253 - 108 - 254 - 2 - 50 - 54 - 211 - 253 - 109 - 254 - 2 - 51 - 55 - 254 - 254 - 226 - 253 - 108 - 254 - 17 - 52 - 226 - 253 - 109 - 254 - 2 - 49 - 53 - 196 - 112 - 114 - 108 - 110 - 254 - 2 - 50 - 54 - 196 - 113 - 115 - 109 - 108 - 254 - 2 - 49 - 53 - 145 - 95 - 226 - 108 - 109 - 254 - 2 - 50 - 54 - 226 - 109 - 110 - 254 - 2 - 51 - 55 - 114 - 108 - 90 - 254 - 121 - 109 - 91 - 73 - 94 - 94 - 94 - 94 - 94 - 94 - 254 - 114 - 108 - 92 - 254 - 113 - 109 - 254 - 254 - 254 - 113 - 108 - 254 - 113 - 109 - 254 - 113 - 108 - 254 - 33 - 90 - 113 - 109 - 161 - 90 - 254 - 46 - 91 - 88 - 94 - 94 - 94 - 94 - 94 - 94 - 87 - 88 - 94 - 91 - 73 - 94 - 254 - 33 - 92 - 161 - 92 - 254 - 209 - 108 - 254 - 209 - 109 - 254 - 164 - 253 - 108 - 254 - 33 - 244 - 65 - 244 - 97 - 244 - 129 - 244 - 164 - 253 - 109 - 254 - 254 - 254 - 12 - 108 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 108 - 110 - 254 - 1 - 109 - 161 - 109 - 254 - 1 - 108 - 97 - 108 - 254 - 1 - 109 - 97 - 109 - 254 - 1 - 108 - 104 - 253 - 110 - 254 - 1 - 109 - 254 - 8 - 108 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 254 - 1 - 109 - 113 - 108 - 254 - 1 - 108 - 113 - 109 - 254 - 1 - 109 - 49 - 108 - 180 - 253 - 108 - 254 - 1 - 108 - 60 - 109 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 109 - 109 - 109 - 109 - 254 - 1 - 109 - 225 - 108 - 254 - 1 - 108 - 225 - 109 - 254 - 8 - 109 - 110 - 110 - 110 - 110 - 110 - 110 - 110 - 225 - 108 - 254 - 225 - 109 - 254 - 225 - 110 - 254 - 3 - 108 - 85 - 86 - 226 - 108 - 110 - 254 - 3 - 109 - 85 - 90 - 97 - 90 - 226 - 109 - 110 - 254 - 0 - 108 - 85 - 91 - 73 - 94 - 94 - 87 - 88 - 94 - 94 - 94 - 94 - 94 - 94 - 108 - 110 - 254 - 3 - 109 - 85 - 92 - 97 - 92 - 226 - 109 - 108 - 254 - 3 - 108 - 85 - 86 - 226 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 81 - 80 - 226 - 109 - 110 - 254 - 0 - 108 - 85 - 86 - 76 - 78 - 81 - 89 - 89 - 89 - 89 - 89 - 89 - 89 - 83 - 108 - 110 - 254 - 6 - 109 - 85 - 86 - 77 - 79 - 82 - 211 - 84 - 109 - 108 - 254 - 3 - 108 - 85 - 86 - 226 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 226 - 109 - 110 - 254 - 3 - 108 - 85 - 86 - 81 - 80 - 226 - 108 - 110 - 254 - 0 - 109 - 85 - 86 - 76 - 78 - 81 - 89 - 89 - 89 - 89 - 89 - 89 - 89 - 83 - 109 - 108 - 254 - 6 - 108 - 85 - 86 - 77 - 79 - 82 - 211 - 84 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 226 - 109 - 110 - 254 - 3 - 108 - 85 - 86 - 166 - 108 - 110 - 108 - 110 - 108 - 110 - 254 - 3 - 109 - 85 - 86 - 166 - 109 - 108 - 109 - 108 - 109 - 108 - 254 - 0 - 108 - 85 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 108 - 109 - 108 - 109 - 108 - 109 - 254 - 0 - 109 - 85 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 109 - 110 - 109 - 110 - 109 - 110 - 254 - 0 - 108 - 85 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 93 - 108 - 108 - 108 - 108 - 108 - 108 - 254 - 3 - 109 - 85 - 86 - 166 - 253 - 109 - 254 - 3 - 108 - 85 - 86 - 211 - 110 - 108 - 110 - 254 - 8 - 109 - 85 - 86 - 58 - 61 - 64 - 67 - 80 - 226 - 109 - 108 - 254 - 0 - 108 - 85 - 56 - 59 - 62 - 65 - 68 - 81 - 89 - 89 - 89 - 89 - 89 - 83 - 108 - 109 - 254 - 8 - 109 - 85 - 57 - 60 - 63 - 66 - 69 - 82 - 161 - 129 - 211 - 84 - 109 - 110 - 254 - 3 - 108 - 85 - 86 - 161 - 129 - 226 - 253 - 108 - 254 - 3 - 109 - 85 - 86 - 161 - 129 - 226 - 253 - 109 - 254 - 3 - 108 - 85 - 86 - 226 - 108 - 110 - 254 - 3 - 109 - 85 - 86 - 226 - 109 - 108 - 254 - 3 - 108 - 85 - 86 - 113 - 80 - 226 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 91 - 76 - 78 - 81 - 89 - 89 - 89 - 89 - 89 - 83 - 109 - 110 - 254 - 3 - 108 - 85 - 86 - 83 - 77 - 79 - 82 - 211 - 84 - 108 - 108 - 254 - 3 - 109 - 85 - 86 - 211 - 108 - 109 - 109 - 254 - 3 - 108 - 85 - 86 - 194 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 178 - 108 - 109 - 254 - 3 - 108 - 85 - 86 - 162 - 108 - 109 - 254 - 3 - 109 - 85 - 86 - 146 - 108 - 109 - 254 - 3 - 108 - 85 - 86 - 145 - 109 - 254 - 3 - 109 - 85 - 86 - 254 - 3 - 108 - 85 - 86 - 254 - 3 - 109 - 85 - 86 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 2 - 108 - 110 - 211 - 253 - 108 - 254 - 2 - 109 - 108 - 211 - 253 - 109 - 254 - 2 - 108 - 109 - 81 - 80 - 211 - 110 - 108 - 108 - 254 - 2 - 109 - 108 - 61 - 76 - 78 - 81 - 89 - 89 - 89 - 89 - 89 - 89 - 89 - 83 - 109 - 109 - 254 - 2 - 108 - 109 - 51 - 77 - 79 - 82 - 211 - 84 - 108 - 108 - 254 - 1 - 109 - 226 - 253 - 109 - 254 - 1 - 110 - 226 - 253 - 110 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 31 - 253 - 93 - 254 - 1 - 108 - 211 - 253 - 108 - 254 - 1 - 109 - 65 - 80 - 211 - 253 - 109 - 254 - 1 - 108 - 38 - 76 - 78 - 81 - 89 - 83 - 108 - 211 - 253 - 108 - 254 - 1 - 109 - 35 - 77 - 79 - 82 - 101 - 84 - 109 - 110 - 110 - 110 - 211 - 253 - 109 - 254 - 1 - 108 - 211 - 253 - 108 - 254 - 6 - 109 - 108 - 110 - 108 - 110 - 108 - 151 - 225 - 110 - 110 - 110 - 109 - 109 - 109 - 254 - 0 - 108 - 109 - 108 - 109 - 108 - 109 - 236 - 236 - 236 - 236 - 108 - 108 - 108 - 108 - 108 - 108 - 254 - 6 - 109 - 110 - 109 - 110 - 109 - 110 - 166 - 253 - 109 - 254 - 166 - 99 - 99 - 99 - 99 - 96 - 96 - 254 - 166 - 100 - 100 - 100 - 100 - 97 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 33 - 52 - 226 - 237 - 97 - 254 - 18 - 49 - 53 - 226 - 237 - 96 - 254 - 18 - 50 - 54 - 226 - 237 - 97 - 254 - 18 - 49 - 53 - 226 - 237 - 96 - 254 - 18 - 50 - 54 - 181 - 58 - 61 - 64 - 237 - 97 - 254 - 18 - 51 - 55 - 166 - 56 - 59 - 62 - 65 - 237 - 96 - 254 - 166 - 57 - 60 - 63 - 66 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 166 - 58 - 61 - 64 - 67 - 237 - 97 - 254 - 151 - 56 - 59 - 62 - 65 - 68 - 237 - 96 - 254 - 151 - 57 - 60 - 63 - 66 - 69 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 67 - 253 - 244 - 130 - 253 - 99 - 211 - 99 - 96 - 96 - 254 - 67 - 253 - 244 - 130 - 253 - 100 - 211 - 100 - 97 - 97 - 254 - 67 - 253 - 244 - 130 - 106 - 107 - 226 - 253 - 96 - 254 - 226 - 253 - 97 - 254 - 211 - 99 - 96 - 96 - 254 - 33 - 52 - 211 - 100 - 97 - 97 - 254 - 18 - 49 - 53 - 226 - 237 - 96 - 254 - 18 - 50 - 54 - 226 - 237 - 97 - 254 - 18 - 51 - 55 - 211 - 99 - 96 - 96 - 254 - 211 - 100 - 97 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 211 - 99 - 96 - 96 - 254 - 211 - 100 - 97 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 211 - 99 - 96 - 96 - 254 - 211 - 100 - 97 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 129 - 99 - 226 - 237 - 96 - 254 - 129 - 100 - 226 - 237 - 97 - 254 - 114 - 253 - 99 - 226 - 237 - 96 - 254 - 114 - 253 - 100 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 33 - 52 - 226 - 237 - 97 - 254 - 18 - 49 - 53 - 226 - 237 - 96 - 254 - 18 - 50 - 54 - 226 - 237 - 97 - 254 - 18 - 51 - 55 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 226 - 237 - 96 - 254 - 226 - 237 - 97 - 254 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 202 - 80 - 214 - 80 - 215 - 80 - 228 - 80 - 241 - 80 - 253 - 80 - 254 - 80 - 11 - 81 - 24 - 81 - 37 - 81 - 50 - 81 - 62 - 81 - 62 - 81 - 63 - 81 - 79 - 81 - 92 - 81 - 117 - 81 - 145 - 81 - 167 - 81 - 183 - 81 - 196 - 81 - 215 - 81 - 234 - 81 - 6 - 82 - 25 - 82 - 43 - 82 - 0 - 65 - 1 - 7 - 0 - 24 - 16 - 91 - 17 - 10 - 16 - 7 - 0 - 75 - 1 - 10 - 0 - 45 - 16 - 20 - 0 - 118 - 16 - 1 - 17 - 16 - 16 - 36 - 17 - 11 - 16 - 0 - 0 - 43 - 1 - 15 - 0 - 44 - 16 - 31 - 17 - 11 - 16 - 39 - 17 - 1 - 1 - 9 - 0 - 32 - 16 - 93 - 17 - 20 - 16 - 25 - 0 - 39 - 16 - 10 - 17 - 6 - 16 - 42 - 0 - 81 - 16 - 14 - 17 - 6 - 16 - 2 - 0 - 99 - 1 - 15 - 17 - 7 - 16 - 6 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 40 - 16 - 10 - 17 - 11 - 16 - 37 - 17 - 17 - 16 - 17 - 17 - 8 - 16 - 4 - 0 - 28 - 16 - 4 - 17 - 4 - 1 - 3 - 0 - 31 - 16 - 2 - 17 - 13 - 16 - 7 - 0 - 47 - 16 - 1 - 17 - 13 - 16 - 4 - 0 - 29 - 1 - 12 - 0 - 89 - 16 - 3 - 17 - 15 - 0 - 31 - 32 - 10 - 0 - 34 - 16 - 0 - 17 - 22 - 16 - 61 - 17 - 26 - 16 - 0 - 0 - 27 - 16 - 47 - 17 - 15 - 1 - 1 - 0 - 41 - 16 - 4 - 17 - 13 - 16 - 10 - 0 - 64 - 1 - 12 - 33 - 1 - 32 - 8 - 0 - 41 - 32 - 23 - 0 - 71 - 16 - 23 - 17 - 24 - 16 - 26 - 0 - 18 - 16 - 7 - 17 - 12 - 16 - 1 - 0 - 21 - 16 - 9 - 17 - 11 - 16 - 32 - 0 - 29 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 0 - 38 - 16 - 3 - 17 - 13 - 16 - 9 - 0 - 8 - 16 - 12 - 17 - 13 - 16 - 10 - 0 - 24 - 16 - 4 - 17 - 11 - 16 - 4 - 0 - 34 - 16 - 1 - 17 - 17 - 16 - 2 - 0 - 61 - 16 - 8 - 17 - 12 - 16 - 13 - 0 - 112 - 1 - 5 - 17 - 7 - 16 - 4 - 0 - 32 - 16 - 13 - 17 - 28 - 16 - 26 - 0 - 37 - 1 - 16 - 17 - 5 - 16 - 6 - 0 - 44 - 16 - 3 - 17 - 17 - 16 - 14 - 0 - 38 - 16 - 16 - 17 - 23 - 16 - 3 - 0 - 20 - 1 - 13 - 0 - 27 - 16 - 10 - 0 - 42 - 17 - 13 - 16 - 3 - 0 - 14 - 32 - 6 - 0 - 26 - 16 - 3 - 17 - 9 - 16 - 8 - 0 - 23 - 16 - 8 - 1 - 5 - 17 - 4 - 0 - 20 - 32 - 6 - 0 - 152 - 1 - 9 - 17 - 6 - 16 - 2 - 0 - 45 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 174 - 104 - 227 - 104 - 54 - 105 - 115 - 105 - 12 - 105 - 189 - 105 - 158 - 105 - 233 - 105 - 122 - 104 - 109 - 104 - 97 - 105 - 195 - 104 - 239 - 104 - 66 - 105 - 128 - 105 - 22 - 105 - 203 - 105 - 239 - 104 - 15 - 106 - 239 - 104 - 239 - 104 - 128 - 105 - 80 - 106 - 156 - 106 - 105 - 106 - 144 - 106 - 168 - 106 - 168 - 106 - 117 - 106 - 168 - 106 - 148 - 112 - 159 - 112 - 170 - 112 - 181 - 112 - 192 - 112 - 203 - 112 - 214 - 112 - 225 - 112 - 193 - 121 - 204 - 121 - 215 - 121 - 226 - 121 - 237 - 121 - 248 - 121 - 3 - 122 - 14 - 122 - 79 - 126 - 25 - 122 - 36 - 122 - 245 - 197 - 213 - 229 - 62 - 3 - 224 - 255 - 251 - 240 - 223 - 254 - 1 - 40 - 64 - 254 - 2 - 40 - 90 - 240 - 222 - 167 - 32 - 90 - 14 - 211 - 242 - 167 - 40 - 7 - 175 - 226 - 62 - 8 - 234 - 224 - 223 - 205 - 89 - 107 - 205 - 121 - 107 - 205 - 244 - 103 - 205 - 157 - 107 - 205 - 184 - 109 - 205 - 239 - 107 - 175 - 234 - 224 - 223 - 234 - 232 - 223 - 234 - 240 - 223 - 234 - 248 - 223 - 224 - 223 - 62 - 7 - 224 - 255 - 225 - 209 - 193 - 241 - 217 - 205 - 75 - 107 - 175 - 234 - 225 - 223 - 234 - 241 - 223 - 234 - 249 - 223 - 62 - 48 - 224 - 222 - 33 - 236 - 103 - 205 - 223 - 106 - 24 - 207 - 33 - 240 - 103 - 24 - 246 - 175 - 224 - 222 - 24 - 179 - 33 - 222 - 255 - 53 - 126 - 254 - 40 - 40 - 237 - 254 - 32 - 40 - 225 - 254 - 24 - 40 - 229 - 254 - 16 - 32 - 176 - 52 - 24 - 173 - 178 - 227 - 131 - 199 - 178 - 227 - 193 - 199 - 250 - 240 - 223 - 254 - 1 - 40 - 13 - 250 - 241 - 223 - 254 - 1 - 40 - 43 - 201 - 128 - 58 - 32 - 176 - 198 - 234 - 241 - 223 - 33 - 63 - 223 - 203 - 254 - 175 - 234 - 244 - 223 - 224 - 26 - 33 - 71 - 112 - 205 - 25 - 107 - 240 - 4 - 230 - 31 - 71 - 62 - 208 - 128 - 234 - 245 - 223 - 33 - 3 - 104 - 195 - 230 - 106 - 240 - 4 - 230 - 7 - 71 - 33 - 244 - 223 - 52 - 126 - 33 - 245 - 223 - 254 - 14 - 48 - 10 - 52 - 52 - 126 - 230 - 248 - 176 - 14 - 29 - 226 - 201 - 254 - 30 - 40 - 5 - 53 - 53 - 53 - 24 - 239 - 175 - 234 - 241 - 223 - 224 - 26 - 33 - 63 - 223 - 203 - 190 - 1 - 54 - 223 - 10 - 111 - 12 - 10 - 103 - 205 - 25 - 107 - 201 - 0 - 176 - 83 - 128 - 199 - 62 - 3 - 33 - 104 - 104 - 195 - 185 - 106 - 60 - 128 - 160 - 80 - 132 - 205 - 155 - 104 - 200 - 62 - 14 - 33 - 117 - 104 - 195 - 185 - 106 - 0 - 128 - 210 - 10 - 134 - 61 - 128 - 163 - 9 - 135 - 250 - 225 - 223 - 24 - 12 - 250 - 225 - 223 - 254 - 3 - 200 - 250 - 225 - 223 - 254 - 5 - 200 - 254 - 4 - 200 - 254 - 6 - 200 - 254 - 8 - 200 - 254 - 11 - 200 - 201 - 205 - 149 - 104 - 200 - 62 - 16 - 33 - 134 - 104 - 205 - 185 - 106 - 33 - 228 - 223 - 54 - 10 - 44 - 54 - 134 - 201 - 205 - 12 - 107 - 167 - 202 - 244 - 104 - 33 - 228 - 223 - 94 - 44 - 86 - 229 - 33 - 15 - 0 - 25 - 14 - 19 - 125 - 226 - 71 - 12 - 124 - 230 - 63 - 226 - 225 - 50 - 112 - 201 - 205 - 149 - 104 - 200 - 62 - 3 - 33 - 139 - 104 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 175 - 234 - 225 - 223 - 224 - 16 - 224 - 18 - 33 - 31 - 223 - 203 - 190 - 201 - 0 - 128 - 226 - 6 - 135 - 0 - 128 - 226 - 131 - 135 - 205 - 144 - 104 - 200 - 33 - 2 - 105 - 195 - 185 - 106 - 33 - 228 - 223 - 52 - 126 - 254 - 4 - 40 - 6 - 254 - 24 - 202 - 244 - 104 - 201 - 33 - 7 - 105 - 205 - 216 - 106 - 201 - 87 - 150 - 140 - 48 - 199 - 87 - 150 - 140 - 53 - 199 - 205 - 155 - 104 - 200 - 62 - 8 - 33 - 44 - 105 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 33 - 228 - 223 - 126 - 52 - 254 - 0 - 40 - 6 - 254 - 1 - 202 - 244 - 104 - 201 - 33 - 49 - 105 - 195 - 216 - 106 - 84 - 0 - 154 - 32 - 135 - 62 - 96 - 234 - 230 - 223 - 62 - 5 - 33 - 92 - 105 - 195 - 185 - 106 - 39 - 128 - 138 - 16 - 134 - 62 - 16 - 234 - 230 - 223 - 62 - 5 - 33 - 110 - 105 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 33 - 230 - 223 - 62 - 16 - 134 - 119 - 254 - 224 - 202 - 244 - 104 - 14 - 19 - 226 - 12 - 62 - 134 - 226 - 201 - 44 - 128 - 211 - 64 - 132 - 205 - 155 - 104 - 200 - 62 - 8 - 33 - 153 - 105 - 195 - 185 - 106 - 58 - 128 - 227 - 32 - 134 - 243 - 179 - 163 - 147 - 131 - 115 - 99 - 83 - 67 - 51 - 35 - 35 - 19 - 0 - 250 - 225 - 223 - 254 - 8 - 200 - 62 - 6 - 33 - 170 - 105 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 33 - 228 - 223 - 78 - 52 - 6 - 0 - 33 - 175 - 105 - 9 - 126 - 167 - 202 - 244 - 104 - 14 - 18 - 226 - 12 - 12 - 62 - 135 - 226 - 201 - 62 - 6 - 33 - 241 - 105 - 195 - 185 - 106 - 0 - 48 - 240 - 167 - 199 - 0 - 48 - 240 - 177 - 199 - 0 - 48 - 240 - 186 - 199 - 0 - 48 - 240 - 196 - 199 - 0 - 48 - 240 - 212 - 199 - 0 - 48 - 240 - 203 - 199 - 205 - 12 - 107 - 167 - 192 - 250 - 228 - 223 - 60 - 234 - 228 - 223 - 254 - 1 - 40 - 19 - 254 - 2 - 40 - 20 - 254 - 3 - 40 - 21 - 254 - 4 - 40 - 22 - 254 - 5 - 40 - 23 - 195 - 244 - 104 - 33 - 246 - 105 - 24 - 18 - 33 - 251 - 105 - 24 - 13 - 33 - 0 - 106 - 24 - 8 - 33 - 5 - 106 - 24 - 3 - 33 - 10 - 106 - 195 - 216 - 106 - 0 - 244 - 87 - 128 - 62 - 48 - 33 - 76 - 106 - 195 - 185 - 106 - 250 - 249 - 223 - 254 - 1 - 200 - 201 - 0 - 44 - 30 - 128 - 31 - 45 - 47 - 61 - 63 - 0 - 205 - 88 - 106 - 200 - 62 - 6 - 33 - 95 - 106 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 33 - 252 - 223 - 78 - 52 - 6 - 0 - 33 - 99 - 106 - 9 - 126 - 167 - 40 - 36 - 224 - 34 - 201 - 0 - 109 - 84 - 128 - 62 - 22 - 33 - 140 - 106 - 195 - 185 - 106 - 0 - 242 - 85 - 128 - 205 - 88 - 106 - 200 - 62 - 21 - 33 - 152 - 106 - 195 - 185 - 106 - 205 - 12 - 107 - 167 - 192 - 175 - 234 - 249 - 223 - 224 - 33 - 33 - 79 - 223 - 203 - 190 - 201 - 245 - 29 - 240 - 209 - 18 - 28 - 241 - 28 - 18 - 29 - 175 - 18 - 28 - 28 - 18 - 28 - 18 - 123 - 254 - 229 - 40 - 9 - 254 - 245 - 40 - 19 - 254 - 253 - 40 - 22 - 201 - 197 - 14 - 16 - 6 - 5 - 24 - 19 - 197 - 14 - 22 - 6 - 4 - 24 - 12 - 197 - 14 - 26 - 6 - 5 - 24 - 5 - 197 - 14 - 32 - 6 - 4 - 42 - 226 - 12 - 5 - 32 - 250 - 193 - 201 - 28 - 224 - 209 - 28 - 61 - 203 - 39 - 79 - 6 - 0 - 9 - 78 - 35 - 70 - 105 - 96 - 124 - 201 - 213 - 107 - 98 - 52 - 42 - 190 - 32 - 3 - 45 - 175 - 119 - 209 - 201 - 197 - 14 - 48 - 42 - 226 - 12 - 121 - 254 - 64 - 32 - 248 - 193 - 201 - 175 - 234 - 225 - 223 - 234 - 233 - 223 - 234 - 241 - 223 - 234 - 249 - 223 - 234 - 31 - 223 - 234 - 47 - 223 - 234 - 63 - 223 - 234 - 79 - 223 - 224 - 223 - 224 - 222 - 62 - 255 - 224 - 37 - 62 - 3 - 224 - 216 - 62 - 1 - 224 - 18 - 224 - 23 - 224 - 33 - 175 - 224 - 16 - 224 - 26 - 201 - 17 - 224 - 223 - 26 - 167 - 40 - 12 - 33 - 31 - 223 - 203 - 254 - 33 - 0 - 103 - 205 - 250 - 106 - 233 - 28 - 26 - 167 - 40 - 7 - 33 - 22 - 103 - 205 - 253 - 106 - 233 - 201 - 17 - 248 - 223 - 26 - 167 - 40 - 12 - 33 - 79 - 223 - 203 - 254 - 33 - 44 - 103 - 205 - 250 - 106 - 233 - 28 - 26 - 167 - 40 - 7 - 33 - 52 - 103 - 205 - 253 - 106 - 233 - 201 - 205 - 38 - 107 - 201 - 33 - 232 - 223 - 42 - 167 - 200 - 119 - 254 - 255 - 40 - 241 - 71 - 33 - 60 - 103 - 120 - 230 - 31 - 205 - 253 - 106 - 205 - 136 - 108 - 205 - 185 - 107 - 201 - 250 - 233 - 223 - 167 - 200 - 33 - 43 - 108 - 61 - 40 - 6 - 35 - 35 - 35 - 35 - 24 - 247 - 42 - 224 - 216 - 42 - 224 - 214 - 42 - 224 - 217 - 42 - 224 - 218 - 175 - 224 - 213 - 224 - 215 - 201 - 250 - 249 - 223 - 254 - 1 - 192 - 126 - 203 - 79 - 62 - 247 - 40 - 2 - 62 - 127 - 205 - 31 - 108 - 201 - 250 - 233 - 223 - 167 - 40 - 46 - 33 - 213 - 255 - 205 - 220 - 107 - 250 - 179 - 255 - 254 - 5 - 40 - 33 - 240 - 216 - 254 - 1 - 40 - 31 - 254 - 3 - 40 - 23 - 52 - 42 - 190 - 192 - 45 - 54 - 0 - 44 - 44 - 52 - 240 - 217 - 203 - 70 - 202 - 31 - 108 - 240 - 218 - 14 - 37 - 226 - 201 - 62 - 255 - 24 - 248 - 240 - 217 - 24 - 244 - 2 - 36 - 101 - 86 - 1 - 0 - 189 - 0 - 2 - 32 - 127 - 183 - 1 - 0 - 237 - 0 - 2 - 24 - 127 - 247 - 2 - 64 - 127 - 247 - 2 - 64 - 127 - 247 - 3 - 24 - 127 - 247 - 3 - 16 - 90 - 165 - 1 - 0 - 101 - 0 - 3 - 0 - 0 - 0 - 2 - 8 - 127 - 181 - 1 - 0 - 237 - 0 - 1 - 0 - 237 - 0 - 3 - 0 - 0 - 0 - 1 - 0 - 237 - 0 - 2 - 24 - 126 - 231 - 1 - 24 - 237 - 231 - 1 - 0 - 222 - 0 - 42 - 79 - 126 - 71 - 10 - 18 - 28 - 3 - 10 - 18 - 201 - 42 - 18 - 28 - 42 - 18 - 201 - 205 - 75 - 107 - 175 - 234 - 213 - 255 - 234 - 215 - 255 - 17 - 0 - 223 - 6 - 0 - 42 - 18 - 28 - 205 - 130 - 108 - 17 - 16 - 223 - 205 - 130 - 108 - 17 - 32 - 223 - 205 - 130 - 108 - 17 - 48 - 223 - 205 - 130 - 108 - 17 - 64 - 223 - 205 - 130 - 108 - 33 - 16 - 223 - 17 - 20 - 223 - 205 - 119 - 108 - 33 - 32 - 223 - 17 - 36 - 223 - 205 - 119 - 108 - 33 - 48 - 223 - 17 - 52 - 223 - 205 - 119 - 108 - 33 - 64 - 223 - 17 - 68 - 223 - 205 - 119 - 108 - 1 - 16 - 4 - 33 - 18 - 223 - 54 - 1 - 121 - 133 - 111 - 5 - 32 - 248 - 175 - 234 - 30 - 223 - 234 - 46 - 223 - 234 - 62 - 223 - 201 - 229 - 175 - 224 - 26 - 107 - 98 - 205 - 25 - 107 - 225 - 24 - 42 - 205 - 46 - 109 - 205 - 67 - 109 - 95 - 205 - 46 - 109 - 205 - 67 - 109 - 87 - 205 - 46 - 109 - 205 - 67 - 109 - 79 - 44 - 44 - 115 - 44 - 114 - 44 - 113 - 45 - 45 - 45 - 45 - 229 - 33 - 208 - 255 - 126 - 225 - 254 - 3 - 40 - 202 - 205 - 46 - 109 - 195 - 209 - 109 - 213 - 42 - 95 - 58 - 87 - 19 - 123 - 34 - 122 - 50 - 209 - 201 - 213 - 42 - 95 - 58 - 87 - 19 - 19 - 24 - 241 - 42 - 79 - 58 - 71 - 10 - 71 - 201 - 225 - 24 - 43 - 240 - 208 - 254 - 3 - 32 - 16 - 250 - 56 - 223 - 203 - 127 - 40 - 9 - 126 - 254 - 6 - 32 - 4 - 62 - 64 - 224 - 28 - 229 - 125 - 198 - 9 - 111 - 126 - 167 - 32 - 222 - 125 - 198 - 4 - 111 - 203 - 126 - 32 - 214 - 225 - 205 - 216 - 110 - 45 - 45 - 195 - 170 - 110 - 45 - 45 - 45 - 45 - 205 - 58 - 109 - 125 - 198 - 4 - 95 - 84 - 205 - 119 - 108 - 254 - 0 - 40 - 31 - 254 - 255 - 40 - 4 - 44 - 195 - 207 - 109 - 45 - 229 - 205 - 58 - 109 - 205 - 67 - 109 - 95 - 205 - 46 - 109 - 205 - 67 - 109 - 87 - 225 - 123 - 34 - 122 - 50 - 24 - 213 - 33 - 233 - 223 - 54 - 0 - 205 - 75 - 107 - 201 - 33 - 233 - 223 - 126 - 167 - 200 - 62 - 1 - 224 - 208 - 33 - 16 - 223 - 44 - 42 - 167 - 202 - 120 - 109 - 53 - 194 - 77 - 109 - 44 - 44 - 205 - 67 - 109 - 254 - 0 - 202 - 125 - 109 - 254 - 157 - 202 - 254 - 108 - 230 - 240 - 254 - 160 - 32 - 26 - 120 - 230 - 15 - 79 - 6 - 0 - 229 - 17 - 1 - 223 - 26 - 111 - 19 - 26 - 103 - 9 - 126 - 225 - 45 - 34 - 205 - 46 - 109 - 205 - 67 - 109 - 120 - 79 - 6 - 0 - 205 - 46 - 109 - 240 - 208 - 254 - 4 - 202 - 46 - 110 - 229 - 125 - 198 - 5 - 111 - 93 - 84 - 44 - 44 - 121 - 254 - 1 - 40 - 15 - 54 - 0 - 33 - 112 - 111 - 9 - 42 - 18 - 28 - 126 - 18 - 225 - 195 - 69 - 110 - 54 - 1 - 225 - 24 - 23 - 229 - 17 - 70 - 223 - 33 - 2 - 112 - 9 - 42 - 18 - 28 - 123 - 254 - 75 - 32 - 248 - 14 - 32 - 33 - 68 - 223 - 24 - 45 - 229 - 240 - 208 - 254 - 1 - 40 - 33 - 254 - 2 - 40 - 25 - 14 - 26 - 250 - 63 - 223 - 203 - 127 - 32 - 5 - 175 - 226 - 62 - 128 - 226 - 12 - 44 - 44 - 44 - 44 - 42 - 95 - 22 - 0 - 24 - 21 - 14 - 22 - 24 - 5 - 14 - 16 - 62 - 0 - 12 - 44 - 44 - 44 - 58 - 167 - 32 - 79 - 42 - 95 - 44 - 42 - 87 - 229 - 44 - 44 - 42 - 167 - 40 - 2 - 30 - 1 - 44 - 44 - 54 - 0 - 44 - 126 - 225 - 203 - 127 - 32 - 19 - 122 - 226 - 12 - 123 - 226 - 12 - 42 - 226 - 12 - 126 - 246 - 128 - 226 - 125 - 246 - 5 - 111 - 203 - 134 - 225 - 45 - 58 - 50 - 45 - 17 - 208 - 255 - 26 - 254 - 4 - 40 - 9 - 60 - 18 - 17 - 16 - 0 - 25 - 195 - 197 - 109 - 33 - 30 - 223 - 52 - 33 - 46 - 223 - 52 - 33 - 62 - 223 - 52 - 201 - 6 - 0 - 229 - 225 - 44 - 24 - 172 - 120 - 203 - 63 - 111 - 38 - 0 - 25 - 94 - 201 - 229 - 125 - 198 - 6 - 111 - 126 - 230 - 15 - 40 - 22 - 224 - 209 - 240 - 208 - 14 - 19 - 254 - 1 - 40 - 14 - 14 - 24 - 254 - 2 - 40 - 8 - 14 - 29 - 254 - 3 - 40 - 2 - 225 - 201 - 44 - 42 - 95 - 126 - 87 - 213 - 125 - 198 - 4 - 111 - 70 - 240 - 209 - 254 - 1 - 24 - 9 - 254 - 3 - 24 - 0 - 33 - 255 - 255 - 24 - 28 - 17 - 57 - 111 - 205 - 207 - 110 - 203 - 64 - 32 - 2 - 203 - 51 - 123 - 230 - 15 - 203 - 95 - 40 - 6 - 38 - 255 - 246 - 240 - 24 - 2 - 38 - 0 - 111 - 209 - 25 - 125 - 226 - 12 - 124 - 226 - 24 - 191 - 0 - 0 - 0 - 0 - 0 - 0 - 16 - 0 - 15 - 0 - 0 - 17 - 0 - 15 - 240 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 1 - 18 - 16 - 255 - 239 - 0 - 15 - 44 - 0 - 156 - 0 - 6 - 1 - 107 - 1 - 201 - 1 - 35 - 2 - 119 - 2 - 198 - 2 - 18 - 3 - 86 - 3 - 155 - 3 - 218 - 3 - 22 - 4 - 78 - 4 - 131 - 4 - 181 - 4 - 229 - 4 - 17 - 5 - 59 - 5 - 99 - 5 - 137 - 5 - 172 - 5 - 206 - 5 - 237 - 5 - 10 - 6 - 39 - 6 - 66 - 6 - 91 - 6 - 114 - 6 - 137 - 6 - 158 - 6 - 178 - 6 - 196 - 6 - 214 - 6 - 231 - 6 - 247 - 6 - 6 - 7 - 20 - 7 - 33 - 7 - 45 - 7 - 57 - 7 - 68 - 7 - 79 - 7 - 89 - 7 - 98 - 7 - 107 - 7 - 115 - 7 - 123 - 7 - 131 - 7 - 138 - 7 - 144 - 7 - 151 - 7 - 157 - 7 - 162 - 7 - 167 - 7 - 172 - 7 - 177 - 7 - 182 - 7 - 186 - 7 - 190 - 7 - 193 - 7 - 196 - 7 - 200 - 7 - 203 - 7 - 206 - 7 - 209 - 7 - 212 - 7 - 214 - 7 - 217 - 7 - 219 - 7 - 221 - 7 - 223 - 7 - 0 - 0 - 0 - 0 - 0 - 192 - 161 - 0 - 58 - 0 - 192 - 177 - 0 - 41 - 1 - 192 - 129 - 0 - 41 - 4 - 192 - 1 - 35 - 69 - 103 - 137 - 171 - 205 - 239 - 254 - 220 - 186 - 152 - 118 - 84 - 50 - 16 - 1 - 18 - 35 - 52 - 69 - 86 - 103 - 120 - 137 - 154 - 171 - 188 - 205 - 221 - 238 - 255 - 1 - 35 - 86 - 120 - 153 - 152 - 118 - 103 - 154 - 223 - 254 - 201 - 133 - 66 - 17 - 0 - 1 - 35 - 69 - 103 - 137 - 171 - 204 - 205 - 0 - 12 - 176 - 187 - 0 - 251 - 187 - 187 - 0 - 3 - 6 - 12 - 24 - 48 - 9 - 18 - 36 - 4 - 8 - 2 - 4 - 8 - 16 - 32 - 64 - 12 - 24 - 48 - 5 - 10 - 1 - 0 - 5 - 10 - 20 - 40 - 80 - 15 - 30 - 60 - 3 - 6 - 12 - 24 - 48 - 96 - 18 - 36 - 72 - 8 - 16 - 0 - 7 - 14 - 28 - 56 - 112 - 21 - 42 - 84 - 4 - 8 - 16 - 32 - 64 - 128 - 24 - 48 - 96 - 0 - 87 - 112 - 229 - 115 - 233 - 115 - 235 - 115 - 0 - 0 - 0 - 119 - 112 - 163 - 115 - 167 - 115 - 169 - 115 - 0 - 0 - 0 - 98 - 112 - 233 - 114 - 245 - 114 - 1 - 115 - 21 - 115 - 0 - 119 - 112 - 130 - 114 - 136 - 114 - 0 - 0 - 142 - 114 - 0 - 87 - 112 - 35 - 116 - 47 - 116 - 59 - 116 - 71 - 116 - 0 - 98 - 112 - 188 - 117 - 200 - 117 - 212 - 117 - 236 - 117 - 0 - 98 - 112 - 210 - 119 - 220 - 119 - 230 - 119 - 242 - 119 - 0 - 119 - 112 - 236 - 112 - 248 - 112 - 4 - 113 - 16 - 113 - 24 - 113 - 64 - 113 - 64 - 113 - 93 - 113 - 255 - 255 - 238 - 112 - 32 - 113 - 144 - 113 - 144 - 113 - 173 - 113 - 255 - 255 - 250 - 112 - 48 - 113 - 226 - 113 - 226 - 113 - 19 - 114 - 255 - 255 - 6 - 113 - 101 - 114 - 116 - 114 - 255 - 255 - 18 - 113 - 157 - 102 - 0 - 128 - 165 - 1 - 1 - 0 - 157 - 118 - 0 - 129 - 164 - 66 - 62 - 58 - 169 - 54 - 54 - 54 - 54 - 54 - 54 - 0 - 157 - 55 - 112 - 160 - 164 - 82 - 78 - 76 - 169 - 72 - 72 - 72 - 72 - 72 - 72 - 0 - 164 - 1 - 169 - 58 - 1 - 163 - 62 - 162 - 76 - 167 - 1 - 169 - 52 - 76 - 1 - 72 - 163 - 68 - 62 - 169 - 68 - 1 - 164 - 62 - 169 - 1 - 165 - 1 - 0 - 164 - 1 - 169 - 62 - 1 - 62 - 1 - 1 - 62 - 1 - 1 - 1 - 1 - 1 - 58 - 163 - 54 - 52 - 169 - 48 - 1 - 52 - 1 - 1 - 66 - 164 - 1 - 165 - 1 - 164 - 1 - 169 - 62 - 1 - 62 - 1 - 1 - 62 - 1 - 1 - 1 - 1 - 1 - 58 - 163 - 54 - 52 - 165 - 1 - 1 - 0 - 164 - 1 - 169 - 76 - 1 - 163 - 78 - 162 - 82 - 167 - 1 - 169 - 68 - 82 - 1 - 78 - 163 - 76 - 72 - 169 - 76 - 1 - 164 - 68 - 169 - 1 - 165 - 1 - 0 - 164 - 1 - 169 - 78 - 1 - 78 - 1 - 1 - 78 - 1 - 1 - 1 - 1 - 1 - 76 - 163 - 72 - 68 - 169 - 66 - 1 - 68 - 1 - 1 - 72 - 164 - 1 - 165 - 1 - 164 - 1 - 169 - 78 - 1 - 78 - 1 - 1 - 78 - 1 - 1 - 1 - 1 - 1 - 76 - 163 - 72 - 68 - 164 - 66 - 62 - 58 - 54 - 0 - 163 - 68 - 169 - 68 - 1 - 58 - 163 - 68 - 169 - 68 - 1 - 58 - 163 - 68 - 169 - 68 - 1 - 58 - 163 - 68 - 169 - 68 - 1 - 58 - 163 - 54 - 169 - 54 - 1 - 68 - 163 - 54 - 169 - 54 - 1 - 68 - 163 - 54 - 169 - 54 - 1 - 68 - 163 - 54 - 169 - 54 - 1 - 68 - 0 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 58 - 169 - 58 - 1 - 72 - 163 - 58 - 169 - 58 - 1 - 72 - 163 - 58 - 169 - 58 - 1 - 72 - 163 - 58 - 169 - 58 - 1 - 72 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 72 - 169 - 72 - 1 - 62 - 163 - 82 - 82 - 78 - 78 - 76 - 76 - 72 - 72 - 0 - 163 - 6 - 6 - 6 - 6 - 11 - 11 - 169 - 11 - 11 - 11 - 11 - 11 - 11 - 0 - 169 - 6 - 1 - 1 - 16 - 1 - 6 - 1 - 6 - 1 - 16 - 1 - 6 - 0 - 148 - 114 - 255 - 255 - 130 - 114 - 181 - 114 - 255 - 255 - 136 - 114 - 209 - 114 - 255 - 255 - 142 - 114 - 157 - 115 - 0 - 128 - 169 - 1 - 162 - 26 - 1 - 34 - 16 - 20 - 24 - 26 - 1 - 40 - 34 - 1 - 1 - 26 - 1 - 34 - 16 - 20 - 24 - 26 - 1 - 163 - 1 - 169 - 1 - 1 - 0 - 157 - 147 - 0 - 128 - 162 - 26 - 1 - 34 - 16 - 20 - 24 - 26 - 1 - 40 - 34 - 1 - 1 - 26 - 1 - 34 - 16 - 20 - 24 - 26 - 1 - 164 - 1 - 0 - 162 - 6 - 1 - 1 - 6 - 1 - 6 - 6 - 1 - 6 - 6 - 1 - 1 - 6 - 1 - 1 - 6 - 1 - 6 - 6 - 1 - 164 - 1 - 0 - 32 - 115 - 39 - 115 - 39 - 115 - 90 - 115 - 255 - 255 - 235 - 114 - 27 - 115 - 39 - 115 - 39 - 115 - 90 - 115 - 255 - 255 - 247 - 114 - 110 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 115 - 133 - 115 - 133 - 115 - 115 - 115 - 255 - 255 - 3 - 115 - 142 - 115 - 255 - 255 - 21 - 115 - 157 - 128 - 0 - 129 - 0 - 157 - 48 - 0 - 128 - 167 - 1 - 0 - 164 - 64 - 163 - 62 - 169 - 56 - 62 - 56 - 171 - 1 - 168 - 54 - 163 - 40 - 42 - 162 - 42 - 46 - 163 - 42 - 46 - 165 - 40 - 164 - 64 - 163 - 62 - 169 - 56 - 62 - 56 - 171 - 1 - 168 - 54 - 163 - 40 - 42 - 162 - 42 - 46 - 163 - 50 - 161 - 46 - 50 - 46 - 42 - 165 - 40 - 0 - 165 - 42 - 164 - 1 - 50 - 165 - 60 - 164 - 56 - 163 - 56 - 162 - 60 - 56 - 165 - 54 - 1 - 1 - 1 - 0 - 157 - 55 - 112 - 160 - 0 - 163 - 64 - 66 - 64 - 66 - 64 - 66 - 64 - 78 - 64 - 66 - 64 - 66 - 64 - 66 - 64 - 60 - 0 - 66 - 80 - 66 - 80 - 66 - 80 - 66 - 80 - 0 - 163 - 6 - 162 - 6 - 6 - 163 - 6 - 162 - 6 - 6 - 163 - 6 - 162 - 6 - 6 - 163 - 11 - 162 - 6 - 6 - 0 - 190 - 115 - 0 - 0 - 171 - 115 - 212 - 115 - 157 - 161 - 0 - 128 - 160 - 1 - 161 - 88 - 84 - 82 - 78 - 74 - 166 - 1 - 162 - 64 - 1 - 50 - 1 - 157 - 48 - 0 - 128 - 161 - 88 - 84 - 82 - 78 - 74 - 166 - 1 - 157 - 161 - 0 - 128 - 162 - 78 - 1 - 82 - 1 - 0 - 157 - 55 - 112 - 32 - 161 - 88 - 84 - 82 - 78 - 74 - 166 - 1 - 162 - 96 - 1 - 98 - 1 - 237 - 115 - 0 - 0 - 255 - 115 - 17 - 116 - 157 - 96 - 0 - 128 - 168 - 82 - 162 - 82 - 1 - 82 - 1 - 82 - 1 - 168 - 86 - 88 - 90 - 0 - 157 - 131 - 0 - 128 - 168 - 74 - 162 - 74 - 1 - 74 - 1 - 74 - 1 - 168 - 78 - 80 - 82 - 0 - 157 - 23 - 112 - 33 - 168 - 112 - 162 - 112 - 1 - 112 - 1 - 112 - 1 - 168 - 116 - 118 - 120 - 0 - 95 - 116 - 145 - 116 - 145 - 116 - 24 - 117 - 255 - 255 - 37 - 116 - 79 - 116 - 185 - 116 - 185 - 116 - 72 - 117 - 255 - 255 - 49 - 116 - 111 - 116 - 239 - 116 - 239 - 116 - 120 - 117 - 255 - 255 - 61 - 116 - 133 - 116 - 163 - 117 - 255 - 255 - 73 - 116 - 157 - 162 - 0 - 128 - 162 - 64 - 68 - 1 - 72 - 1 - 68 - 1 - 64 - 165 - 60 - 0 - 157 - 130 - 0 - 128 - 162 - 74 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 165 - 68 - 0 - 157 - 55 - 112 - 160 - 162 - 82 - 84 - 1 - 88 - 1 - 84 - 1 - 82 - 64 - 54 - 1 - 48 - 40 - 1 - 1 - 1 - 0 - 162 - 6 - 6 - 1 - 6 - 1 - 6 - 1 - 6 - 165 - 6 - 0 - 162 - 58 - 1 - 1 - 167 - 64 - 163 - 58 - 164 - 1 - 50 - 170 - 54 - 68 - 68 - 68 - 72 - 74 - 165 - 1 - 162 - 58 - 58 - 1 - 167 - 64 - 163 - 58 - 165 - 1 - 170 - 72 - 1 - 1 - 54 - 58 - 60 - 165 - 58 - 0 - 162 - 74 - 1 - 1 - 167 - 82 - 163 - 74 - 162 - 68 - 78 - 1 - 84 - 164 - 68 - 170 - 72 - 84 - 84 - 84 - 88 - 92 - 162 - 88 - 82 - 1 - 74 - 164 - 64 - 162 - 74 - 74 - 1 - 167 - 82 - 163 - 74 - 162 - 68 - 78 - 1 - 84 - 164 - 68 - 170 - 72 - 1 - 1 - 72 - 74 - 78 - 165 - 74 - 0 - 167 - 50 - 58 - 163 - 64 - 167 - 60 - 68 - 163 - 74 - 167 - 64 - 72 - 163 - 54 - 167 - 50 - 58 - 163 - 64 - 167 - 50 - 58 - 163 - 64 - 167 - 60 - 68 - 163 - 74 - 167 - 64 - 72 - 163 - 54 - 167 - 50 - 58 - 163 - 64 - 0 - 170 - 68 - 68 - 68 - 68 - 64 - 60 - 167 - 64 - 50 - 163 - 1 - 162 - 54 - 1 - 1 - 54 - 54 - 58 - 1 - 60 - 165 - 64 - 170 - 68 - 1 - 68 - 68 - 72 - 74 - 167 - 72 - 64 - 163 - 1 - 167 - 68 - 64 - 163 - 60 - 162 - 1 - 60 - 1 - 1 - 164 - 64 - 0 - 170 - 84 - 84 - 84 - 84 - 82 - 78 - 167 - 82 - 74 - 163 - 1 - 162 - 72 - 1 - 1 - 72 - 72 - 74 - 1 - 78 - 165 - 82 - 170 - 84 - 1 - 84 - 84 - 88 - 92 - 167 - 88 - 82 - 163 - 1 - 167 - 84 - 82 - 163 - 78 - 162 - 1 - 68 - 1 - 1 - 164 - 72 - 0 - 167 - 60 - 68 - 163 - 74 - 167 - 50 - 58 - 163 - 64 - 167 - 64 - 72 - 163 - 54 - 167 - 50 - 58 - 163 - 64 - 167 - 60 - 68 - 163 - 74 - 167 - 58 - 64 - 163 - 72 - 167 - 60 - 68 - 163 - 74 - 162 - 1 - 64 - 1 - 1 - 164 - 64 - 0 - 163 - 6 - 169 - 6 - 1 - 6 - 163 - 11 - 169 - 6 - 1 - 6 - 163 - 6 - 169 - 6 - 1 - 6 - 163 - 11 - 169 - 6 - 1 - 6 - 0 - 8 - 118 - 40 - 118 - 40 - 118 - 247 - 118 - 255 - 255 - 190 - 117 - 244 - 117 - 119 - 118 - 119 - 118 - 53 - 119 - 255 - 255 - 202 - 117 - 28 - 118 - 181 - 118 - 181 - 118 - 181 - 118 - 214 - 118 - 181 - 118 - 181 - 118 - 181 - 118 - 214 - 118 - 115 - 119 - 255 - 255 - 214 - 117 - 36 - 118 - 189 - 119 - 255 - 255 - 238 - 117 - 157 - 132 - 0 - 0 - 162 - 112 - 112 - 112 - 1 - 106 - 1 - 106 - 1 - 102 - 1 - 102 - 1 - 164 - 106 - 0 - 157 - 116 - 0 - 0 - 162 - 102 - 102 - 102 - 1 - 96 - 1 - 96 - 1 - 92 - 1 - 92 - 1 - 164 - 96 - 0 - 157 - 55 - 112 - 32 - 165 - 1 - 1 - 0 - 165 - 1 - 1 - 0 - 157 - 130 - 0 - 0 - 168 - 68 - 163 - 72 - 164 - 78 - 72 - 164 - 68 - 163 - 72 - 68 - 164 - 64 - 163 - 58 - 54 - 168 - 68 - 163 - 72 - 164 - 78 - 163 - 72 - 68 - 162 - 88 - 92 - 163 - 88 - 162 - 82 - 88 - 163 - 82 - 162 - 78 - 82 - 163 - 78 - 162 - 72 - 68 - 163 - 64 - 168 - 68 - 163 - 72 - 164 - 78 - 72 - 164 - 68 - 163 - 72 - 68 - 164 - 64 - 163 - 58 - 54 - 168 - 58 - 163 - 62 - 58 - 54 - 48 - 44 - 165 - 48 - 1 - 0 - 157 - 112 - 0 - 129 - 168 - 78 - 163 - 82 - 164 - 88 - 82 - 164 - 78 - 163 - 82 - 78 - 164 - 72 - 163 - 68 - 64 - 168 - 78 - 163 - 82 - 164 - 88 - 163 - 82 - 78 - 165 - 82 - 1 - 168 - 78 - 163 - 82 - 164 - 88 - 82 - 164 - 78 - 163 - 82 - 78 - 164 - 72 - 163 - 68 - 64 - 168 - 68 - 163 - 72 - 68 - 64 - 58 - 54 - 165 - 58 - 1 - 0 - 163 - 40 - 162 - 64 - 54 - 163 - 40 - 64 - 163 - 40 - 162 - 64 - 54 - 163 - 40 - 64 - 163 - 26 - 162 - 50 - 40 - 163 - 26 - 50 - 163 - 26 - 162 - 50 - 40 - 163 - 26 - 50 - 0 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 163 - 34 - 162 - 58 - 48 - 163 - 34 - 58 - 163 - 34 - 162 - 58 - 48 - 163 - 34 - 58 - 0 - 168 - 92 - 163 - 96 - 164 - 102 - 163 - 102 - 162 - 106 - 102 - 164 - 96 - 163 - 102 - 96 - 163 - 92 - 162 - 96 - 92 - 163 - 88 - 162 - 82 - 78 - 165 - 102 - 168 - 102 - 163 - 96 - 165 - 102 - 1 - 168 - 82 - 163 - 88 - 164 - 92 - 88 - 168 - 82 - 163 - 78 - 164 - 72 - 163 - 68 - 64 - 168 - 68 - 163 - 72 - 164 - 78 - 82 - 165 - 88 - 1 - 0 - 168 - 68 - 163 - 72 - 164 - 78 - 163 - 78 - 162 - 82 - 78 - 164 - 72 - 163 - 78 - 72 - 163 - 68 - 162 - 72 - 68 - 163 - 64 - 162 - 58 - 54 - 165 - 78 - 168 - 78 - 163 - 72 - 165 - 78 - 1 - 168 - 82 - 163 - 88 - 164 - 92 - 88 - 168 - 82 - 163 - 78 - 164 - 72 - 163 - 68 - 64 - 168 - 68 - 163 - 72 - 164 - 78 - 82 - 165 - 88 - 1 - 0 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 163 - 26 - 162 - 50 - 40 - 163 - 26 - 50 - 163 - 26 - 162 - 50 - 40 - 163 - 26 - 50 - 163 - 48 - 162 - 72 - 38 - 163 - 48 - 72 - 163 - 48 - 162 - 72 - 38 - 163 - 48 - 72 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 163 - 30 - 162 - 54 - 44 - 163 - 30 - 54 - 165 - 34 - 34 - 26 - 26 - 30 - 30 - 34 - 34 - 0 - 163 - 6 - 162 - 6 - 6 - 163 - 11 - 162 - 6 - 6 - 163 - 6 - 162 - 6 - 6 - 163 - 11 - 162 - 6 - 6 - 0 - 13 - 120 - 67 - 120 - 75 - 121 - 255 - 255 - 212 - 119 - 250 - 119 - 135 - 120 - 23 - 121 - 255 - 255 - 222 - 119 - 26 - 120 - 243 - 120 - 243 - 120 - 120 - 121 - 255 - 255 - 232 - 119 - 43 - 120 - 168 - 121 - 255 - 255 - 244 - 119 - 157 - 146 - 0 - 128 - 162 - 82 - 1 - 80 - 1 - 78 - 74 - 1 - 1 - 1 - 167 - 64 - 164 - 40 - 0 - 157 - 98 - 0 - 128 - 165 - 1 - 162 - 1 - 167 - 40 - 164 - 16 - 0 - 157 - 55 - 112 - 32 - 162 - 112 - 1 - 110 - 1 - 108 - 106 - 1 - 1 - 164 - 1 - 64 - 0 - 166 - 6 - 161 - 6 - 163 - 11 - 166 - 6 - 161 - 6 - 163 - 11 - 162 - 1 - 6 - 1 - 1 - 166 - 11 - 161 - 6 - 163 - 6 - 0 - 163 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 165 - 1 - 163 - 1 - 110 - 164 - 110 - 163 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 58 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 165 - 1 - 166 - 1 - 161 - 110 - 163 - 1 - 164 - 86 - 0 - 163 - 82 - 1 - 166 - 78 - 161 - 74 - 166 - 1 - 161 - 82 - 168 - 1 - 166 - 74 - 161 - 78 - 162 - 82 - 1 - 82 - 1 - 163 - 78 - 74 - 82 - 84 - 88 - 92 - 1 - 74 - 74 - 68 - 64 - 166 - 1 - 161 - 74 - 164 - 1 - 163 - 60 - 64 - 68 - 72 - 163 - 1 - 112 - 164 - 112 - 163 - 82 - 1 - 166 - 78 - 161 - 74 - 166 - 1 - 161 - 82 - 168 - 1 - 166 - 74 - 161 - 78 - 162 - 82 - 1 - 82 - 1 - 163 - 78 - 74 - 92 - 88 - 98 - 166 - 82 - 161 - 78 - 163 - 1 - 74 - 74 - 78 - 82 - 166 - 1 - 161 - 74 - 164 - 1 - 163 - 84 - 82 - 74 - 78 - 166 - 1 - 161 - 112 - 163 - 1 - 164 - 88 - 0 - 163 - 50 - 166 - 88 - 161 - 40 - 163 - 50 - 88 - 50 - 90 - 50 - 90 - 50 - 92 - 50 - 92 - 50 - 94 - 68 - 94 - 60 - 92 - 60 - 92 - 58 - 88 - 58 - 88 - 78 - 82 - 84 - 86 - 165 - 1 - 0 - 163 - 1 - 92 - 96 - 98 - 163 - 96 - 166 - 1 - 161 - 88 - 164 - 1 - 163 - 84 - 1 - 166 - 88 - 161 - 84 - 163 - 1 - 162 - 82 - 1 - 84 - 1 - 86 - 1 - 88 - 1 - 163 - 1 - 92 - 96 - 98 - 163 - 96 - 166 - 1 - 161 - 88 - 164 - 1 - 163 - 104 - 102 - 1 - 98 - 165 - 1 - 0 - 163 - 1 - 74 - 78 - 68 - 78 - 166 - 64 - 161 - 72 - 163 - 1 - 64 - 68 - 60 - 166 - 72 - 161 - 68 - 163 - 54 - 165 - 1 - 163 - 1 - 74 - 78 - 68 - 78 - 166 - 64 - 161 - 72 - 163 - 1 - 64 - 50 - 50 - 1 - 50 - 1 - 1 - 1 - 1 - 0 - 163 - 60 - 74 - 60 - 74 - 58 - 74 - 58 - 74 - 54 - 92 - 54 - 92 - 162 - 74 - 1 - 78 - 1 - 80 - 1 - 82 - 1 - 163 - 60 - 74 - 60 - 74 - 58 - 74 - 58 - 74 - 66 - 80 - 66 - 80 - 161 - 88 - 1 - 88 - 1 - 162 - 84 - 1 - 82 - 1 - 78 - 1 - 0 - 163 - 6 - 166 - 6 - 161 - 6 - 163 - 11 - 166 - 6 - 161 - 6 - 163 - 6 - 166 - 6 - 161 - 6 - 163 - 11 - 166 - 6 - 161 - 6 - 0 - 0 - 110 - 112 - 193 - 125 - 199 - 125 - 0 - 0 - 205 - 125 - 0 - 119 - 112 - 98 - 125 - 102 - 125 - 104 - 125 - 0 - 0 - 0 - 98 - 112 - 16 - 125 - 22 - 125 - 28 - 125 - 34 - 125 - 0 - 98 - 112 - 23 - 124 - 45 - 124 - 65 - 124 - 69 - 124 - 0 - 87 - 112 - 178 - 123 - 0 - 0 - 182 - 123 - 0 - 0 - 0 - 98 - 112 - 232 - 123 - 236 - 123 - 0 - 0 - 0 - 0 - 0 - 130 - 112 - 65 - 123 - 75 - 123 - 0 - 0 - 0 - 0 - 0 - 130 - 112 - 255 - 122 - 3 - 123 - 5 - 123 - 0 - 0 - 0 - 119 - 112 - 199 - 122 - 205 - 122 - 0 - 0 - 0 - 0 - 0 - 119 - 112 - 47 - 122 - 55 - 122 - 63 - 122 - 71 - 122 - 77 - 122 - 146 - 122 - 255 - 255 - 49 - 122 - 94 - 122 - 167 - 122 - 255 - 255 - 57 - 122 - 111 - 122 - 181 - 122 - 255 - 255 - 65 - 122 - 128 - 122 - 255 - 255 - 71 - 122 - 157 - 144 - 0 - 0 - 165 - 1 - 30 - 32 - 164 - 34 - 36 - 163 - 38 - 40 - 42 - 44 - 0 - 157 - 160 - 0 - 0 - 165 - 1 - 16 - 18 - 164 - 20 - 22 - 163 - 24 - 26 - 28 - 30 - 0 - 157 - 55 - 112 - 32 - 165 - 1 - 40 - 42 - 164 - 44 - 46 - 163 - 48 - 50 - 52 - 54 - 0 - 161 - 6 - 6 - 6 - 6 - 11 - 6 - 6 - 6 - 6 - 6 - 6 - 6 - 11 - 6 - 6 - 6 - 0 - 157 - 96 - 0 - 193 - 164 - 30 - 42 - 40 - 52 - 165 - 50 - 1 - 164 - 30 - 42 - 40 - 52 - 165 - 54 - 1 - 0 - 157 - 131 - 0 - 0 - 162 - 16 - 14 - 12 - 10 - 8 - 6 - 4 - 2 - 0 - 161 - 40 - 64 - 38 - 62 - 36 - 60 - 34 - 58 - 32 - 56 - 30 - 54 - 28 - 52 - 26 - 50 - 0 - 211 - 122 - 255 - 255 - 199 - 122 - 233 - 122 - 255 - 255 - 205 - 122 - 157 - 132 - 0 - 128 - 162 - 64 - 66 - 64 - 66 - 64 - 66 - 64 - 66 - 64 - 70 - 76 - 82 - 88 - 82 - 76 - 70 - 0 - 157 - 116 - 0 - 128 - 162 - 16 - 18 - 16 - 18 - 16 - 18 - 16 - 18 - 34 - 40 - 46 - 52 - 58 - 52 - 46 - 40 - 0 - 7 - 123 - 0 - 0 - 33 - 123 - 52 - 123 - 157 - 96 - 0 - 129 - 163 - 60 - 74 - 84 - 74 - 64 - 74 - 60 - 58 - 42 - 157 - 48 - 0 - 129 - 161 - 58 - 60 - 58 - 54 - 164 - 58 - 0 - 157 - 128 - 0 - 129 - 163 - 68 - 74 - 92 - 164 - 88 - 163 - 82 - 164 - 74 - 163 - 78 - 165 - 74 - 0 - 157 - 55 - 112 - 33 - 168 - 84 - 82 - 164 - 66 - 163 - 60 - 165 - 50 - 83 - 123 - 113 - 123 - 83 - 123 - 122 - 123 - 0 - 0 - 130 - 123 - 161 - 123 - 130 - 123 - 170 - 123 - 157 - 102 - 0 - 129 - 163 - 88 - 96 - 102 - 96 - 86 - 96 - 102 - 96 - 84 - 96 - 102 - 96 - 82 - 88 - 98 - 88 - 80 - 88 - 98 - 88 - 78 - 88 - 96 - 88 - 0 - 76 - 82 - 88 - 92 - 88 - 74 - 86 - 78 - 0 - 82 - 88 - 92 - 86 - 164 - 96 - 64 - 0 - 157 - 102 - 0 - 129 - 164 - 120 - 163 - 116 - 112 - 168 - 120 - 162 - 112 - 116 - 163 - 120 - 120 - 116 - 112 - 120 - 122 - 126 - 130 - 1 - 112 - 112 - 104 - 164 - 102 - 120 - 0 - 163 - 106 - 112 - 116 - 120 - 164 - 116 - 102 - 0 - 163 - 122 - 106 - 110 - 102 - 165 - 112 - 0 - 184 - 123 - 0 - 0 - 202 - 123 - 157 - 80 - 0 - 128 - 161 - 64 - 1 - 64 - 1 - 64 - 1 - 163 - 66 - 162 - 70 - 164 - 74 - 0 - 157 - 23 - 112 - 160 - 162 - 120 - 120 - 120 - 163 - 122 - 162 - 126 - 161 - 130 - 112 - 130 - 112 - 130 - 112 - 130 - 112 - 130 - 112 - 130 - 112 - 130 - 112 - 130 - 112 - 0 - 238 - 123 - 0 - 0 - 3 - 124 - 157 - 115 - 0 - 128 - 163 - 30 - 161 - 1 - 163 - 30 - 161 - 1 - 163 - 30 - 161 - 1 - 163 - 30 - 161 - 1 - 0 - 157 - 211 - 0 - 192 - 163 - 28 - 161 - 1 - 163 - 28 - 161 - 1 - 163 - 28 - 161 - 1 - 163 - 28 - 161 - 1 - 75 - 124 - 82 - 124 - 108 - 124 - 82 - 124 - 111 - 124 - 75 - 124 - 82 - 124 - 108 - 124 - 82 - 124 - 111 - 124 - 0 - 0 - 118 - 124 - 125 - 124 - 149 - 124 - 125 - 124 - 158 - 124 - 118 - 124 - 125 - 124 - 149 - 124 - 125 - 124 - 158 - 124 - 165 - 124 - 165 - 124 - 235 - 124 - 255 - 255 - 69 - 124 - 157 - 147 - 0 - 128 - 163 - 1 - 0 - 162 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 74 - 1 - 64 - 1 - 64 - 1 - 64 - 1 - 64 - 0 - 165 - 1 - 0 - 1 - 74 - 1 - 74 - 74 - 1 - 0 - 157 - 195 - 0 - 192 - 163 - 56 - 0 - 164 - 66 - 162 - 70 - 76 - 74 - 70 - 163 - 80 - 80 - 162 - 80 - 84 - 74 - 76 - 163 - 70 - 70 - 162 - 70 - 76 - 74 - 70 - 0 - 66 - 90 - 88 - 84 - 80 - 76 - 74 - 70 - 0 - 66 - 80 - 70 - 74 - 66 - 1 - 0 - 157 - 23 - 112 - 32 - 163 - 1 - 162 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 56 - 94 - 70 - 94 - 56 - 94 - 70 - 94 - 66 - 90 - 88 - 84 - 80 - 76 - 74 - 70 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 66 - 80 - 56 - 80 - 56 - 94 - 70 - 94 - 56 - 94 - 70 - 94 - 66 - 80 - 56 - 80 - 66 - 1 - 0 - 163 - 1 - 162 - 6 - 11 - 6 - 11 - 6 - 11 - 11 - 11 - 6 - 11 - 6 - 11 - 6 - 161 - 11 - 11 - 162 - 6 - 11 - 6 - 11 - 6 - 11 - 6 - 11 - 11 - 11 - 11 - 6 - 11 - 6 - 11 - 1 - 0 - 52 - 125 - 255 - 255 - 16 - 125 - 40 - 125 - 255 - 255 - 22 - 125 - 64 - 125 - 255 - 255 - 28 - 125 - 85 - 125 - 255 - 255 - 34 - 125 - 157 - 84 - 0 - 128 - 162 - 80 - 78 - 76 - 74 - 72 - 70 - 0 - 157 - 52 - 0 - 128 - 162 - 58 - 56 - 54 - 52 - 50 - 48 - 0 - 157 - 23 - 112 - 32 - 168 - 68 - 167 - 68 - 74 - 168 - 80 - 80 - 168 - 68 - 167 - 68 - 74 - 168 - 80 - 80 - 0 - 162 - 6 - 6 - 6 - 167 - 11 - 162 - 6 - 6 - 6 - 167 - 11 - 0 - 125 - 125 - 0 - 0 - 106 - 125 - 146 - 125 - 157 - 209 - 0 - 128 - 167 - 50 - 54 - 58 - 60 - 64 - 68 - 72 - 74 - 78 - 82 - 84 - 88 - 92 - 0 - 157 - 65 - 0 - 128 - 170 - 1 - 167 - 50 - 54 - 58 - 60 - 64 - 68 - 72 - 74 - 78 - 82 - 84 - 88 - 92 - 0 - 157 - 55 - 112 - 32 - 162 - 74 - 1 - 82 - 78 - 1 - 84 - 82 - 1 - 88 - 84 - 1 - 92 - 88 - 1 - 96 - 92 - 1 - 98 - 96 - 1 - 102 - 98 - 1 - 106 - 102 - 1 - 108 - 106 - 1 - 112 - 108 - 1 - 116 - 112 - 1 - 120 - 116 - 1 - 122 - 120 - 1 - 126 - 211 - 125 - 255 - 255 - 193 - 125 - 249 - 125 - 255 - 255 - 199 - 125 - 63 - 126 - 255 - 255 - 205 - 125 - 157 - 145 - 0 - 128 - 162 - 64 - 78 - 64 - 78 - 64 - 78 - 64 - 78 - 68 - 82 - 68 - 78 - 68 - 82 - 68 - 78 - 74 - 88 - 74 - 88 - 74 - 88 - 74 - 88 - 78 - 78 - 74 - 74 - 72 - 72 - 68 - 68 - 0 - 157 - 145 - 0 - 128 - 161 - 96 - 102 - 112 - 96 - 102 - 112 - 96 - 102 - 112 - 96 - 102 - 112 - 96 - 102 - 112 - 1 - 92 - 100 - 112 - 92 - 100 - 112 - 92 - 100 - 112 - 92 - 100 - 112 - 92 - 100 - 112 - 1 - 98 - 106 - 112 - 98 - 106 - 112 - 98 - 106 - 112 - 98 - 106 - 112 - 98 - 106 - 112 - 1 - 110 - 92 - 110 - 92 - 106 - 112 - 106 - 88 - 102 - 86 - 102 - 86 - 98 - 106 - 98 - 82 - 0 - 162 - 6 - 161 - 6 - 6 - 162 - 6 - 161 - 6 - 6 - 162 - 6 - 161 - 6 - 6 - 0 - 0 - 119 - 112 - 90 - 126 - 104 - 126 - 118 - 126 - 144 - 126 - 158 - 126 - 170 - 126 - 204 - 126 - 204 - 126 - 249 - 126 - 255 - 255 - 94 - 126 - 165 - 126 - 170 - 126 - 204 - 126 - 204 - 126 - 249 - 126 - 255 - 255 - 108 - 126 - 36 - 127 - 41 - 127 - 41 - 127 - 59 - 127 - 59 - 127 - 76 - 127 - 76 - 127 - 110 - 127 - 136 - 127 - 110 - 127 - 145 - 127 - 255 - 255 - 128 - 126 - 178 - 127 - 178 - 127 - 178 - 127 - 178 - 127 - 219 - 127 - 255 - 255 - 152 - 126 - 157 - 48 - 0 - 129 - 170 - 1 - 0 - 157 - 144 - 0 - 129 - 0 - 163 - 76 - 58 - 68 - 76 - 80 - 62 - 72 - 80 - 82 - 64 - 74 - 82 - 86 - 68 - 78 - 86 - 90 - 72 - 82 - 90 - 92 - 74 - 82 - 92 - 90 - 72 - 82 - 90 - 92 - 74 - 82 - 92 - 0 - 162 - 90 - 1 - 1 - 82 - 1 - 1 - 72 - 1 - 1 - 86 - 1 - 92 - 1 - 90 - 86 - 165 - 82 - 1 - 162 - 1 - 162 - 90 - 1 - 1 - 82 - 1 - 1 - 72 - 1 - 164 - 82 - 162 - 1 - 80 - 82 - 164 - 86 - 162 - 1 - 164 - 76 - 80 - 1 - 0 - 168 - 82 - 162 - 80 - 82 - 164 - 86 - 72 - 168 - 90 - 162 - 86 - 90 - 163 - 92 - 76 - 82 - 80 - 168 - 82 - 162 - 80 - 82 - 164 - 86 - 72 - 168 - 90 - 162 - 86 - 90 - 163 - 96 - 74 - 82 - 88 - 164 - 92 - 98 - 165 - 90 - 86 - 0 - 157 - 55 - 112 - 160 - 0 - 162 - 68 - 68 - 92 - 92 - 68 - 68 - 92 - 92 - 68 - 68 - 92 - 92 - 68 - 68 - 92 - 92 - 0 - 58 - 58 - 82 - 82 - 58 - 58 - 82 - 82 - 58 - 58 - 82 - 82 - 58 - 58 - 82 - 82 - 0 - 163 - 82 - 82 - 82 - 82 - 80 - 80 - 80 - 80 - 78 - 78 - 78 - 78 - 76 - 76 - 76 - 76 - 68 - 68 - 68 - 68 - 66 - 66 - 66 - 66 - 62 - 62 - 62 - 62 - 72 - 72 - 72 - 72 - 0 - 162 - 44 - 44 - 68 - 68 - 44 - 44 - 68 - 68 - 44 - 44 - 68 - 68 - 44 - 44 - 68 - 68 - 42 - 42 - 66 - 66 - 42 - 42 - 66 - 66 - 0 - 38 - 38 - 62 - 62 - 48 - 48 - 72 - 72 - 0 - 40 - 40 - 64 - 64 - 40 - 40 - 64 - 64 - 40 - 40 - 64 - 64 - 40 - 40 - 64 - 64 - 48 - 48 - 58 - 66 - 48 - 48 - 58 - 66 - 48 - 48 - 56 - 62 - 48 - 48 - 56 - 62 - 0 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 161 - 6 - 6 - 162 - 11 - 0 - 162 - 6 - 6 - 16 - 6 - 6 - 6 - 16 - 6 - 6 - 6 - 16 - 6 - 6 - 6 - 16 - 6 - 0 - 255 - 255 - 255 - 195 - 98 - 103 - 195 - 38 - 107 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 -} -_soundregs = { - 0 - 0 - 0.5 - 0 - 0 - 1 - 0 - 0 -} - - -//----- Key pressed events -------------------------------------------------------------------------------------------- - -WhenKeyPressed(r) -{ -} - - -//----- Broadcast received events ------------------------------------------------------------------------------------- - -WhenBroadcastReceived(emulate!!) -{ - Pen.Clear(); - Event.BroadcastAndWait("prune"); - Event.Broadcast("create sound"); - Call $load ROM(_ROM); - Call get game title; - Call __INIT; - Call _setup; - _PC = 256; - time1 = 0; - FPS = 0; - Event.Broadcast("text"); - Forever - { - Call .loop; - } -} - -WhenBroadcastReceived(exit emulator) -{ - Event.Broadcast("prune"); -} - -WhenBroadcastReceived(Nuke all lists) -{ - List.DeleteAll(_ROM); -} - -WhenBroadcastReceived(Project not saving fix) -{ - List.DeleteAll(_GBCPALETTELOOKUP); - List.DeleteAll(_RAM); - List.DeleteAll(temp.0); - List.DeleteAll(temp.1); - List.DeleteAll(_pix); - List.DeleteAll($A); - List.DeleteAll($B); - List.DeleteAll(.ptr index); - List.DeleteAll(vol); - List.DeleteAll(.addr2ptr); - List.DeleteAll(FT.re); - List.DeleteAll(FT.im); - List.DeleteAll(testroms); - List.DeleteAll(bin_table); - List.DeleteAll(.HEX); - List.DeleteAll(_waveBuffer); - List.DeleteAll(_waveBuffer2); - List.DeleteAll(m); -} - - -//----- Custom blocks ------------------------------------------------------------------------------------------------- - -Define $ab reset (warp=true) -{ - List.DeleteAll($A); - List.DeleteAll($B); - Repeat (8) - { - List.Add($A, 0); - } - Repeat (8) - { - List.Add($B, 0); - } -} - -Define $incA (warp=false) -{ - Repeat Until (($A[last] == 0) Or ($A[last] == "")) - { - List.DeleteItem($A, last); - } - List.ReplaceItem($A, last, 1); - Repeat ((8 - List.Length($A))) - { - List.Add($A, 0); - } -} - -Define $incB (warp=false) -{ - Repeat Until (($B[last] == 0) Or ($B[last] == "")) - { - List.DeleteItem($B, last); - } - List.ReplaceItem($B, last, 1); - Repeat ((8 - List.Length($B))) - { - List.Add($B, 0); - } -} - -Define $load ROM(string ROM) (warp=true) -{ - loop = 0; - List.DeleteAll(_ROM); - If (Operator.LetterOf(ROM, 2) == "x") - { - If (Operator.LetterOf(ROM, 5) == ",") - { - Repeat ((Variable.Length(ROM) / 6)) - { - _RE = (0 + Operator.Join("0x", Operator.Join(Operator.LetterOf(ROM, ((loop * 6) + 3)), Operator.LetterOf(ROM, ((loop * 6) + 4))))); - List.Add(_ROM, _RE); - loop += 1; - } - } - Else - { - Repeat ((Variable.Length(ROM) / 5)) - { - _RE = (0 + Operator.Join("0x", Operator.Join(Operator.LetterOf(ROM, ((loop * 5) + 3)), Operator.LetterOf(ROM, ((loop * 5) + 4))))); - List.Add(_ROM, _RE); - loop += 1; - } - } - } - Else - { - Repeat ((Variable.Length(ROM) / 2)) - { - _RE = (0 + Operator.Join("0x", Operator.Join(Operator.LetterOf(ROM, ((loop * 2) + 1)), Operator.LetterOf(ROM, ((loop * 2) + 2))))); - List.Add(_ROM, _RE); - loop += 1; - } - } - List.DeleteAll(_cartridge stuff); - List.Add(_cartridge stuff, _ROM[324]); - List.Add(_cartridge stuff, _ROM[328]); - List.Add(_cartridge stuff, 2^x[(_ROM[329] + 2)]); - _rom size = _cartridge stuff[3]; - .GBC? = floor((_cartridge stuff[1] / 128)); - _Z = _ROM[330]; - If (_Z == 2) - { - List.Add(_cartridge stuff, 8); - } - Else - { - If (_Z == 3) - { - List.Add(_cartridge stuff, 32); - } - Else - { - If (_Z == 4) - { - List.Add(_cartridge stuff, 128); - } - Else - { - If (_Z == 5) - { - List.Add(_cartridge stuff, 64); - } - Else - { - List.Add(_cartridge stuff, 0); - } - } - } - } -} - -Define $reset registers (warp=true) -{ - _PC = 256; - _SP = 65534; - -LY = 0; - lines = 0; - List.DeleteAll(_REGISTERS); - If (.GBC? == 0) - { - List.Add(_REGISTERS, 1); - } - Else - { - List.Add(_REGISTERS, 17); - } - List.Add(_REGISTERS, 0); - List.Add(_REGISTERS, 19); - List.Add(_REGISTERS, 0); - List.Add(_REGISTERS, 216); - List.Add(_REGISTERS, 176); - List.Add(_REGISTERS, 1); - List.Add(_REGISTERS, 77); - List.Add(_REGISTERS, 0); - Call ~FLAGSWRITE; -} - -Define &joypad (warp=true) -{ - T4.2 = T4.1; - T4 = 15; - List.DeleteAll($A); - Call .Z = rMEM("0xFF00"); - List.Add($A, ((floor((_Z / 16)) % 2) == 0)); - List.Add($A, ((floor((_Z / 32)) % 2) == 0)); - T4 += (((($A[1] * joypad buttons[1]) > 0) Or (($A[2] * joypad buttons[5]) > 0)) * -8); - T4 += (((($A[1] * joypad buttons[2]) > 0) Or (($A[2] * joypad buttons[6]) > 0)) * -4); - T4 += (((($A[1] * joypad buttons[3]) > 0) Or (($A[2] * joypad buttons[7]) > 0)) * -2); - T4 += (((($A[1] * joypad buttons[4]) > 0) Or (($A[2] * joypad buttons[8]) > 0)) * -1); - T4.1 = T4; - If (T4.1 < T4.2) - { - Call *set IF(4) ,(1); - } - Call .DMA write(((((_Z - (_Z % 16)) + T4) % 64) + 0xC0)) to("0xFF00"); - ,joypad = 0; -} - -Define *decode sound from address(string X) (warp=true) -{ - List.DeleteAll(_soundregs); - loop = (X + 4); - Call .S = rMEM(loop); - List.Add(_soundregs, (floor((_S / 128)) % 2)); - List.Add(_soundregs, (floor((_S / 64)) % 2)); - List.Add(_soundregs, (floor((_S / 1)) % 8)); - loop += -1; - Call .S = rMEM(loop); - List.ReplaceItem(_soundregs, last, ((_soundregs[last] * 256) + _S)); - loop += -1; - Call .S = rMEM(loop); - List.Add(_soundregs, (floor((_S / 16)) % 16)); - List.Add(_soundregs, (floor((_S / 8)) % 2)); - List.Add(_soundregs, (floor((_S / 1)) % 8)); - loop += -1; - Call .S = rMEM(loop); - List.Add(_soundregs, (floor((_S / 64)) % 4)); - List.Add(_soundregs, (floor((_S / 1)) % 64)); -} - -Define *goto(string x)(string y) (warp=true) -{ - Motion.GoToXY((((x + 0.5) * _SIZE) - _XSHIFT), (_YSHIFT - ((y + 0.5) * _SIZE))); -} - -Define *monodecode palettes address(string addr) (warp=true) -{ - Call .Z = rMEM(addr); - T1 = _Z; - List.Add(*palette, _DMGPALETTE[(4 - (floor((T1 / 1)) % 4))]); - List.Add(*palette, _DMGPALETTE[(4 - (floor((T1 / 4)) % 4))]); - List.Add(*palette, _DMGPALETTE[(4 - (floor((T1 / 16)) % 4))]); - List.Add(*palette, _DMGPALETTE[(4 - (floor((T1 / 64)) % 4))]); -} - -Define *OAMsearch (warp=true) -{ - g = 0; - List.DeleteAll(*OAMidx); - List.DeleteAll(*OAMy); - List.DeleteAll(*OAMx); - Repeat (40) - { - .spritesize = (8 + (Operator.LetterOf(-LCDC, 6) * 8)); - Call .Z = rMEM((0xFE00 + (g * 4))); - _Z += -16; - If (List.Length(*OAMidx) < 10) - { - If ((Not ((-LY < _Z))) And (-LY < (_Z + .spritesize))) - { - List.Add(*OAMidx, (0xFE00 + (g * 4))); - List.Add(*OAMy, _Z); - Call .Z = rMEM(((0xFE00 + (g * 4)) + 1)); - List.Add(*OAMx, (_Z - 8)); - } - } - g += 1; - } - If (.GBC? == 0) - { - Call *sort by x position; - } -} - -Define *palette decode (warp=true) -{ - List.DeleteAll(*palette); - Call *monodecode palettes address("0xFF47"); - Call *monodecode palettes address("0xFF48"); - Call *monodecode palettes address("0xFF49"); -} - -Define *render frame (warp=true) -{ - If (render == 0) - { - Stop(this script); - } - Pen.Clear(); - Call *goto(0)(0); - Pen.Down(); - T1 = 0; - T2 = 0; - T3 = 1; - i = 1; - Repeat (23041) - { - i += 1; - If (_pix[(i - 1)] == _pix[i]) - { - T3 += 1; - } - Else - { - T1 += T3; - Pen.SetPenColorToColor(_pix[(i - 1)]); - control_while ?? - probably legacy function from Scratch 2.0; - Call *goto(T1)(T2); - T3 = 1; - } - } - Pen.Clear(); -} - -Define *reset PPU (warp=true) -{ - Call *STATUS(0); - Call *setLY(0); - -WLY = 0; - -windowWasDrawn? = 0; - _lineCyc = 0; - _PIXEL# = 0; -} - -Define *set IF(string bit) ,(string val) (warp=true) -{ - If (val == 1) - { - Call .DMA write(or_table[(((_RAM[_IFindex] * 256) + 2^x[(bit + 1)]) + 1)]) to("0xFF0F"); - } - Else - { - Call .DMA write(and_table[(((_RAM[_IFindex] * 256) + (255 - 2^x[(bit + 1)])) + 1)]) to("0xFF0F"); - } -} - -Define *setLY(string n) (warp=true) -{ - -LY = n; - Call .DMA write(n) to("0xFF44"); -} - -Define *set STAT(string bit) ,(string cond) (warp=true) -{ - Call ~set bit(bit) of(_RAM[(T9 + 1)]) to(( + cond)); - Call .DMA write(_RE) to("0xFF41"); -} - -Define *sort by x position (warp=true) -{ - If (List.Length(*OAMx) > 0) - { - h = 0; - Repeat (List.Length(*OAMx)) - { - h += 1; - i = h; - T2 = 0; - control_while ?? - probably legacy function from Scratch 2.0; - } - } -} - -Define *STATUS(string 2) (warp=true) -{ - _Z = _RAM[_STATindex]; - -STATUS = 2; - Call .DMA write(((_Z - (_Z % 4)) + 2)) to("0xFF41"); -} - -Define *swap(string a)(string b) (warp=true) -{ - T1 = *OAMidx[a]; - List.ReplaceItem(*OAMidx, a, *OAMidx[b]); - List.ReplaceItem(*OAMidx, b, T1); - T1 = *OAMx[a]; - List.ReplaceItem(*OAMx, a, *OAMx[b]); - List.ReplaceItem(*OAMx, b, T1); - T1 = *OAMy[a]; - List.ReplaceItem(*OAMy, a, *OAMy[b]); - List.ReplaceItem(*OAMy, b, T1); -} - -Define +convert freq to midi(string f) (warp=true) -{ - _RE = (((ln((f / 440)) / ln(2)) * 12) + 69); -} - -Define +convert GB freq to MIDI(string f) (warp=false) -{ - _RE = (((ln(((131072 / (2048 - f)) / 440)) / ln(2)) * 12) + 69); - If (_RE > 109) - { - _RE = -1; - } -} - -Define +update sound (warp=false) -{ - Call *decode sound from address("0xFF10"); - List.ReplaceItem(+AUDIO ENGINE duty cycle, 1, _soundregs[7]); - Call +convert GB freq to MIDI(_soundregs[3]); - List.ReplaceItem(+AUDIO ENGINE pitch, 1, _RE); - List.ReplaceItem(+AUDIO ENGINE volume, 1, _soundregs[4]); - Call *decode sound from address("0xFF15"); - List.ReplaceItem(voice, 2, _soundregs[7]); - Call +convert GB freq to MIDI(_soundregs[3]); - List.ReplaceItem(pitches, 2, _RE); - List.ReplaceItem(volume, 2, _soundregs[4]); - Call *decode sound from address("0xFF1A"); - Call +convert GB freq to MIDI(_soundregs[3]); - List.ReplaceItem(pitches, 3, _RE); - List.ReplaceItem(volume, 3, floor((15 / 2^x[(Operator.LetterOf(4012, (floor(((_soundregs[4] % 8) / 2)) + 1)) + 1)]))); - loop = "0xFF30"; - List.DeleteAll(wave); - Repeat (16) - { - Call .S = rMEM(loop); - loop += 1; - List.Add(wave, (floor((_S / 16)) % 16)); - List.Add(wave, (floor((_S / 1)) % 16)); - } - Call *decode sound from address("0xFF1F"); - List.ReplaceItem(voice, 4, (floor((_soundregs[3] / 8)) % 2)); - If ((_soundregs[3] % 8) == 0) - { - List.ReplaceItem(_soundregs, 3, (_soundregs[3] + 0.5)); - } - Call +convert freq to midi(((32768 / (_soundregs[3] % 8)) / (2^x[(floor((_soundregs[3] / 16)) + 1)] * 2))); - List.ReplaceItem(pitches, 4, _RE); - List.ReplaceItem(volume, 4, _soundregs[4]); - Call .S = rMEM("0xFF24"); - _S = ((_S % 8) / 8); - List.ReplaceItem(volume, 1, (volume[1] * _S)); - List.ReplaceItem(volume, 2, (volume[2] * _S)); - List.ReplaceItem(volume, 3, (volume[3] * _S)); - List.ReplaceItem(volume, 4, (volume[4] * _S)); - Call .S = rMEM("0xFF25"); - List.ReplaceItem(+AUDIO ENGINE pan, 1, ((floor((_S / 1)) % 2) - (floor((_S / 16)) % 2))); - List.ReplaceItem(+AUDIO ENGINE pan, 2, ((floor((_S / 2)) % 2) - (floor((_S / 32)) % 2))); - List.ReplaceItem(+AUDIO ENGINE pan, 3, ((floor((_S / 4)) % 2) - (floor((_S / 64)) % 2))); - List.ReplaceItem(+AUDIO ENGINE pan, 4, ((floor((_S / 8)) % 2) - (floor((_S / 128)) % 2))); -} - -Define .decodeCGBpalette(string #) (warp=true) -{ - List.ReplaceItem(_PALETTE RAM, ((# * 2) + 2), (_PALETTE RAM[((# * 2) + 2)] % 128)); - T6 = ((_PALETTE RAM[((# * 2) + 2)] * 256) + _PALETTE RAM[((# * 2) + 1)]); - List.ReplaceItem(*palette, (# + 1), _GBCPALETTELOOKUP[(T6 + 1)]); -} - -Define .DMA write(string b) to(string a) (warp=true) -{ - List.ReplaceItem(_RAM, (.ptr[.addr2ptr[(a + 1)]] + .ptr index[(a + 1)]), b); -} - -Define .GDMA transfer (warp=true) -{ - Repeat (.DMAlength) - { - Call .S = rMEM(.DMAstart); - Call .DMA write(_S) to(.DMAend); - .DMAstart += 1; - .DMAend += 1; - Call _; - If (.SPEED == 2) - { - Call _; - } - .DMAlength += -1; - } - .DMAenable = 0; - Call .DMA write(255) to("0xFF55"); - Call write DMA; -} - -Define .HDMA transfer (warp=true) -{ - If (.DMAlength > 0) - { - Repeat (16) - { - Call .S = rMEM(.DMAstart); - Call .DMA write(_S) to(.DMAend); - .DMAstart += 1; - .DMAend += 1; - Call _; - If (.SPEED == 2) - { - Call _; - } - .DMAlength += -1; - } - } - If (.DMAlength > 0) - { - Call .DMA write((floor((.DMAlength / 16)) - 1)) to("0xFF55"); - } - Else - { - Call .DMA write(255) to("0xFF55"); - .DMAenable = 0; - } - .HDMAenable = 0; - Call write DMA; -} - -Define .INTRpush (warp=true) -{ - _SP = ((_SP - 1) % 65536); - Call _; - Call .write(_SP) byte(floor(((_PC / 256) % 256))); - Call z; - Call find bit; - _A = _T; - Call _; - _SP = ((_SP - 1) % 65536); - Call .write(_SP) byte(floor((_PC % 256))); - Call _; - If (_A == 0) - { - _PC = 0; - } - Else - { - Call *set IF(_B) ,(0); - _PC = _INTRdest; - } -} - -Define .loop (warp=true) -{ - time2 = Sensing.DaysSince2000(); - Call __run cycles; - FPS += (((1 / ((Sensing.DaysSince2000() - time2) * 86400)) - FPS) / 12); -} - -Define .MBC handler(string type) a(string a) b(string b) (warp=true) -{ - If (type == 1) - { - If ((Not ((a < "0x2000"))) And (a < "0x4000")) - { - _R = ((b % 32) + ((b % 32) == 0)); - _current bank = ((_current bank - (_current bank % 32)) + ((_R % 32) % _rom size)); - Call _swap ROM bank X to(_current bank); - } - } - Else - { - If (type == 3) - { - If ((Not ((a < "0x2000"))) And (a < "0x4000")) - { - _R = (b + (b == 0)); - If (b == 0) - { - _current bank = 1; - } - Else - { - _current bank = (b % 128); - } - Call _swap ROM bank X to(_current bank); - } - Else - { - If ((Not ((a < "0x4000"))) And (a < "0x6000")) - { - List.ReplaceItem(.ptr, 4, (((b % _cartridge stuff[4]) * 8192) + .pointerStart[4])); - } - } - } - Else - { - If (type == 5) - { - If ((Not ((a < "0x2000"))) And (a < "0x3000")) - { - _current bank = ((_current bank - (_current bank % 256)) + b); - Call _swap ROM bank X to(_current bank); - } - Else - { - If ((Not ((a < "0x3000"))) And (a < "0x4000")) - { - _current bank = ((_current bank % 256) + ((b % 2) * 256)); - Call _swap ROM bank X to(_current bank); - } - Else - { - } - } - } - } - } -} - -Define .PIX (warp=true) -{ - Call .PIX(_X)(-LY); - _PIXEL# += 1; - List.ReplaceItem(_pix, _PIXEL#, *palette[(((@PAL * 4) + @PIX) + 1)]); - _X += 1; -} - -Define .PIX(string x)(string y) (warp=true) -{ - @PAL = 0; - If (((x < -wx) Or (y < _RAM[(T9 + 10)])) Or (Operator.LetterOf(-LCDC, 3) == 0)) - { - T1 = (x + -scx); - T2 = (y + _RAM[(T9 + 2)]); - .tileB = (0x9800 + (1024 * Operator.LetterOf(-LCDC, 5))); - } - Else - { - T1 = (x - -wx); - T2 = -WLY; - .tileB = (0x9800 + (1024 * Operator.LetterOf(-LCDC, 2))); - .windowflag = 1; - } - If ((.GBC? == 1) Or (Operator.LetterOf(-LCDC, 8) == 1)) - { - .vbank = 0; - T4 = (.tileB + (((floor((T2 / 8)) % 32) * 32) + (floor((T1 / 8)) % 32))); - If (.GBC? == 1) - { - Call .r(1)(T4); - T5 = bin_table[(_Z + 1)]; - @PAL = (_Z % 8); - .Mpri = Operator.LetterOf(-LCDC, 8); - .vbank = Operator.LetterOf(T5, 5); - .Spri = Operator.LetterOf(T5, 1); - If (Operator.LetterOf(T5, 3) == 1) - { - T1 = (7 - T1); - } - If (Operator.LetterOf(T5, 2) == 1) - { - T2 = (7 - T2); - } - } - Call .r(0)(T4); - If ((Operator.LetterOf(-LCDC, 4) == 1) Or (_Z > 127)) - { - .tileB = "0x8000"; - } - Else - { - .tileB = "0x9000"; - } - T4 = (.tileB + ((_Z * 16) + ((T2 % 8) * 2))); - T11 = (8 - (T1 % 8)); - Call .r(.vbank)(T4); - @PIX = (floor((_Z / 2^x[T11])) % 2); - Call .r(.vbank)((T4 + 1)); - @PIX += ((floor((_Z / 2^x[T11])) % 2) * 2); - } - Else - { - @PIX = 0; - } - If (Operator.LetterOf(-LCDC, 7) == 1) - { - .spritesize = (8 + (Operator.LetterOf(-LCDC, 6) * 8)); - i = 0; - List.DeleteAll($A); - Repeat (List.Length(*OAMx)) - { - i += 1; - If ((y < (*OAMy[i] + .spritesize)) And ((Not ((x < *OAMx[i]))) And (x < (*OAMx[i] + 8)))) - { - List.Add($A, i); - } - } - j3 = 1; - Repeat (List.Length($A)) - { - i = $A[j3]; - j3 += 1; - Call .Z = rMEM((*OAMidx[i] + 3)); - .vbank = 0; - If (.GBC? == 1) - { - .vbank = (floor((_Z / 8)) % 2); - .spriteCpal = (_Z % 8); - } - .spriteattributes = bin_table[(_Z + 1)]; - T1 = (x - *OAMx[i]); - T2 = (y - *OAMy[i]); - If (Operator.LetterOf(.spriteattributes, 3) == 1) - { - T1 = (7 - T1); - } - If (Operator.LetterOf(.spriteattributes, 2) == 1) - { - If (Operator.LetterOf(-LCDC, 6) == 1) - { - T2 = (15 - T2); - } - Else - { - T2 = (7 - T2); - } - } - Call .Z = rMEM((*OAMidx[i] + 2)); - If (Operator.LetterOf(-LCDC, 6) == 1) - { - _Z = (_Z - (_Z % 2)); - If (Not ((T2 < 8))) - { - _Z += 1; - } - } - T4 = (0x8000 + ((_Z * 16) + ((T2 % 8) * 2))); - Call .r(.vbank)(T4); - T3 = (floor((_Z / 2^x[(8 - (T1 % 8))])) % 2); - Call .r(.vbank)((T4 + 1)); - T3 += ((floor((_Z / 2^x[(8 - (T1 % 8))])) % 2) * 2); - If ((T3 > 0) And ((@PIX == 0) Or (Not (((Operator.LetterOf(.spriteattributes, 1) == 1) Or ((.GBC? * (.Spri * .Mpri)) == 1)))))) - { - @PIX = T3; - If (.GBC? == 1) - { - @PAL = (.spriteCpal + 8); - } - Else - { - @PAL = (1 + Operator.LetterOf(.spriteattributes, 4)); - } - Stop(this script); - } - } - } -} - -Define .ppu regs (warp=true) -{ - -LYC = _RAM[(T9 + 5)]; - -LCDC = bin_table[(_RAM[T9] + 1)]; - -LCDS = bin_table[(_RAM[(T9 + 1)] + 1)]; -} - -Define .r(string bank)(string addr) (warp=true) -{ - _Z = _RAM[((bank * 8192) + .ptr index[(addr + 1)])]; -} - -Define .S = rMEM(string a) (warp=true) -{ - T10 = (.ptr[.addr2ptr[(a + 1)]] + .ptr index[(a + 1)]); - If (a < 32768) - { - _S = _ROM[T10]; - } - Else - { - _S = _RAM[T10]; - } -} - -Define .TIMERS (warp=true) -{ - .DIVCYCLES = ((.DIVCYCLES + 4) % 65536); - Call .DMA write(floor((.DIVCYCLES / 256))) to("0xFF04"); - If (.TACFLAG == 1) - { - .TACFLAG = 0; - Call .Z = rMEM("0xFF06"); - Call .DMA write(_Z) to("0xFF05"); - Call *set IF(2) ,(1); - } - Call .Z = rMEM("0xFF07"); - .timenable = (floor((_Z / 4)) % 2); - .TAC2 = .TAC1; - .TAC1 = ((.timenable * floor((.DIVCYCLES / 2^x[(Operator.LetterOf(9357, ((_Z % 4) + 1)) + 1)]))) % 2); - If (.TAC1 < .TAC2) - { - Call .Z = rMEM("0xFF05"); - If (_Z == 255) - { - Call .DMA write(0) to("0xFF05"); - .TACFLAG = 1; - } - Else - { - Call .DMA write((_Z + 1)) to("0xFF05"); - } - } -} - -Define .write(string a) byte(string b) (warp=true) -{ - T5 = (.ptr[.addr2ptr[(a + 1)]] + .ptr index[(a + 1)]); - If (a < 32768) - { - Call .MBC handler(_MBCnumber) a(a) b(b); - } - Else - { - List.ReplaceItem(_RAM, T5, b); - } - If (floor((a / 128)) == 510) - { - Call .ppu regs; - If (a == "0xFF46") - { - *OAMDMA# = 0; - If (b < "0xE0") - { - *OAMDMAS = (b * 256); - } - Else - { - *OAMDMAS = ((b - 32) * 256); - } - Stop(this script); - } - If (.GBC? == 1) - { - If (a == "0xFF3F") - { - } - If (a == "0xFF4F") - { - List.ReplaceItem(.ptr, 3, ((b % 2) * 8192)); - Stop(this script); - } - If ((a == "0xFF68") Or (a == "0xFF6A")) - { - T6 = ((_RAM[T5] % 64) + ((a == "0xFF6A") * 64)); - List.ReplaceItem(_RAM, (T5 + 1), _PALETTE RAM[(T6 + 1)]); - Stop(this script); - } - If ((a == "0xFF69") Or (a == "0xFF6B")) - { - T5 = (.ptr[.addr2ptr[((a - 1) + 1)]] + .ptr index[((a - 1) + 1)]); - T6 = ((_RAM[T5] % 64) + ((a == "0xFF6B") * 64)); - List.ReplaceItem(_PALETTE RAM, (T6 + 1), b); - Call .decodeCGBpalette(floor((T6 / 2))); - T4 = floor((_RAM[T5] / 128)); - List.ReplaceItem(_RAM, T5, ((_RAM[T5] + T4) % 256)); - If ((_RAM[T5] == 0) And (T4 == 1)) - { - List.ReplaceItem(_RAM, T5, "0xC0"); - } - Stop(this script); - } - If (a == "0xFF70") - { - List.ReplaceItem(.ptr, 6, (((b % 8) * 4096) + .pointerStart[6])); - Stop(this script); - } - If (a == "0xFF55") - { - T5 = (.ptr[.addr2ptr[(0xFF50 + 1)]] + .ptr index[(0xFF50 + 1)]); - If ((.DMAenable == 1) And (floor((b / 128)) == 0)) - { - .DMAenable = 0; - List.ReplaceItem(_RAM, (T5 + 5), (128 + (b % 128))); - Stop(this script); - } - .DMAstart = ((_RAM[(T5 + 1)] * 256) + _RAM[(T5 + 2)]); - .DMAend = ((((_RAM[(T5 + 3)] % 32) + 128) * 256) + _RAM[(T5 + 4)]); - .DMAstart = (.DMAstart - (.DMAstart % 16)); - .DMAend = (.DMAend - (.DMAend % 16)); - .DMAlength = (((b % 128) + 1) * 16); - .DMAtype = floor((b / 128)); - If ((.DMAtype == 1) And (Operator.LetterOf(-LCDC, 1) == 0)) - { - .HDMAenable = 1; - } - .DMAenable = 1; - List.ReplaceItem(_RAM, (T5 + 5), (b % 128)); - Stop(this script); - } - If (a == "0xFF4D") - { - List.ReplaceItem(_RAM, T5, (((.SPEED - 1) * 128) + (b % 2))); - Stop(this script); - } - } - If (a == "0xFF00") - { - ,joypad = 1; - Stop(this script); - } - If ((.GBC? == 0) And (((a == "0xFF47") Or (a == "0xFF48")) Or (a == "0xFF49"))) - { - Call *palette decode; - Stop(this script); - } - If (a == "0xFF02") - { - List.ReplaceItem(_RAM, T5, or_table[(((_RAM[T5] * 256) + 0b01111100) + 1)]); - Stop(this script); - } - } -} - -Define .Z = rMEM(string a) (warp=true) -{ - T5 = (.ptr[.addr2ptr[(a + 1)]] + .ptr index[(a + 1)]); - If (a < 32768) - { - _Z = _ROM[T5]; - } - Else - { - _Z = _RAM[T5]; - } -} - -Define CLS (warp=true) -{ - List.DeleteAll(_pix); - Repeat (23040) - { - List.Add(_pix, "#000000"); - } -} - -Define color correct(string R)(string G)(string B) (warp=false) -{ - List.DeleteAll($A); - List.Add($A, (R * (255 / 31))); - List.Add($A, (G * (255 / 31))); - List.Add($A, (B * (255 / 31))); - _RE = Operator.Join("#", Operator.Join(.HEX[($A[3] + 1)], Operator.Join(.HEX[($A[2] + 1)], .HEX[($A[1] + 1)]))); -} - -Define convert(string x) to base 16 (warp=true) -{ - _RE = Operator.Join(Operator.LetterOf("0123456789ABCDEF", (floor((x / 16)) + 1)), Operator.LetterOf("0123456789ABCDEF", (floor((x % 16)) + 1))); -} - -Define CPU (warp=false) -{ - Call INTR; - .IME = abs(.IME); - If (_HALT == 1) - { - Call _; - Stop(this script); - } - List.DeleteAll(byteStack); - Call _; - Call PC++; - .instrID = (0 + _instrIDs[(byteStack[1] + 1)]); - .instr = _instrParam[(byteStack[1] + 1)]; - If (.instrID < 16) - { - If (.instrID < 8) - { - If (.instrID < 4) - { - If (.instrID < 2) - { - If (.instrID < 1) - { - } - Else - { - Call ~LD(Operator.LetterOf(.instr, 2))(Operator.LetterOf(.instr, 3)); - } - } - Else - { - If (.instrID < 3) - { - Call ~MISC(Operator.LetterOf(.instr, 2)); - } - Else - { - .IME = ( - Operator.LetterOf(.instr, 2)); - } - } - } - Else - { - If (.instrID < 6) - { - If (.instrID < 5) - { - Call ~ADD HL,(Operator.LetterOf(.instr, 2))(Operator.LetterOf(.instr, 3)); - } - Else - { - Call ~ADD A,(Operator.LetterOf(.instr, 3)) |(Operator.LetterOf(.instr, 2)); - } - } - Else - { - If (.instrID < 7) - { - Call ~SUB A,(Operator.LetterOf(.instr, 3)) |(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~AND A,(Operator.LetterOf(.instr, 3)); - } - } - } - } - Else - { - If (.instrID < 12) - { - If (.instrID < 10) - { - If (.instrID < 9) - { - Call ~XOR A,(Operator.LetterOf(.instr, 3)); - } - Else - { - Call ~OR A,(Operator.LetterOf(.instr, 3)); - } - } - Else - { - If (.instrID < 11) - { - Call ~LD16(Operator.LetterOf(.instr, 2))(Operator.LetterOf(.instr, 3)); - } - Else - { - Call ~LDPTR(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2))(Operator.LetterOf(.instr, 5)); - } - } - } - Else - { - If (.instrID < 14) - { - If (.instrID < 13) - { - Call ~INC/DEC16(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~INC/DEC8(Operator.LetterOf(.instr, 3)) |(Operator.LetterOf(.instr, 2)); - } - } - Else - { - If (.instrID < 15) - { - Call ~JR(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~RET(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2)); - } - } - } - } - } - Else - { - If (.instrID < 24) - { - If (.instrID < 20) - { - If (.instrID < 18) - { - If (.instrID < 17) - { - Call ~JP(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~CALL(Operator.LetterOf(.instr, 3))(Operator.LetterOf(.instr, 4)) |(Operator.LetterOf(.instr, 2)); - } - } - Else - { - If (.instrID < 19) - { - Call ~POP; - List.ReplaceItem(_REGISTERS, Operator.LetterOf(.instr, 2), floor((_T / 256))); - List.ReplaceItem(_REGISTERS, Operator.LetterOf(.instr, 3), (_T % 256)); - If (Operator.LetterOf(.instr, 3) == 6) - { - Call ~FLAGSWRITE; - } - } - Else - { - If (Operator.LetterOf(.instr, 3) == 6) - { - Call ~FLAGSREAD; - } - Call ~PUSH(_REGISTERS[Operator.LetterOf(.instr, 2)])(_REGISTERS[Operator.LetterOf(.instr, 3)]); - } - } - } - Else - { - If (.instrID < 22) - { - If (.instrID < 21) - { - Call ~RST(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~JPHL/LDSPHL(Operator.LetterOf(.instr, 2)); - } - } - Else - { - If (.instrID < 23) - { - Call ~RLC/RRC(1) |(Operator.LetterOf(.instr, 2)); - } - Else - { - Call ~RL/RR(1) |(Operator.LetterOf(.instr, 2)); - } - List.ReplaceItem(Flag bits, 1, 0); - } - } - } - Else - { - If (.instrID < 28) - { - If (.instrID < 26) - { - If (.instrID < 25) - { - Call ~LD ZRAM(Operator.LetterOf(.instr, 2))(Operator.LetterOf(.instr, 3)); - } - Else - { - Call ~ADDSPI8/LDHLSP+I8(Operator.LetterOf(.instr, 2)); - } - } - Else - { - If (.instrID < 27) - { - Call ~LDU16(Operator.LetterOf(.instr, 2)); - } - } - } - } - } -} - -Define cycle (warp=true) -{ - If (.DMAenable == 1) - { - If (.DMAtype == 1) - { - If (.HDMAenable == 1) - { - Call .HDMA transfer; - } - Else - { - Call CPU; - } - } - Else - { - Call .GDMA transfer; - } - } - Else - { - Call CPU; - } - If ((lines % 36) == 0) - { - If (lock == 0) - { - loop = "0xFF30"; - _A = ((floor((lines / 36)) % 8) * 32); - Repeat (16) - { - Call .S = rMEM(loop); - _A += 1; - List.ReplaceItem(_waveBuffer, _A, (floor((_S / 16)) % 16)); - _A += 1; - List.ReplaceItem(_waveBuffer, _A, (floor((_S / 1)) % 16)); - loop += 1; - } - lock = 1; - If ((lines % 288) == 0) - { - List.DeleteAll(_waveBuffer2); - _A = 0; - Repeat (256) - { - _A += 1; - List.Add(_waveBuffer2, _waveBuffer[_A]); - } - } - } - } - Else - { - lock = 0; - } -} - -Define find bit (warp=true) -{ - i = 8; - control_while ?? - probably legacy function from Scratch 2.0; - i = (8 - i); - _B = i; - _INTRdest = ((_B + 8) * 8); -} - -Define generate table(string n) (warp=true) -{ - g = n; - List.DeleteAll(bin_table); - Repeat (n) - { - List.Add(bin_table, ""); - } - Repeat (Operator.Round((ln(n) / ln(2)))) - { - i = 0; - _S = 0; - g = floor((g / 2)); - Repeat (n) - { - List.ReplaceItem(bin_table, (i + 1), Operator.Join(bin_table[(i + 1)], _S)); - i += 1; - If ((i % g) == 0) - { - _S = (1 - _S); - } - } - } -} - -Define get game title (warp=true) -{ - List.DeleteAll(_gametitle); - _R = "0x134"; - Repeat (11) - { - Call .S = rMEM(_R); - _R += 1; - List.Add(_gametitle, _S); - } - control_while ?? - probably legacy function from Scratch 2.0; -} - -Define INTR (warp=true) -{ - Call z; - If (_T > 0) - { - _HALT = 0; - If (.IME < 1) - { - Stop(this script); - } - Call .INTRpush; - .IME = 0; - } -} - -Define PC++ (warp=true) -{ - Call .S = rMEM(_PC); - List.Add(byteStack, _S); - _PC = ((_PC + 1) % 65536); -} - -Define update (warp=true) -{ - If (-LY < 144) - { - If (_lineCyc == 456) - { - Call *STATUS(2); - _lineCyc = 0; - _X = 0; - Call *setLY((-LY + 1)); - lines += 1; - -WLY += .windowflag; - .windowflag = 0; - If (-LY == 144) - { - Call *set IF(0) ,(1); - Call *STATUS(1); - Call *render frame; - _frames += 1; - If (render == 1) - { - render = 0; - } - If (_frames > _frameskip) - { - _frames += ( - _frameskip); - render = 1; - } - -WLY = 0; - } - If (-LY == -keyRandom) - { - Call update joypad and register; - } - Stop(this script); - } - If (_lineCyc == 80) - { - Call *OAMsearch; - Call *STATUS(3); - -SCXMOD8 = (_RAM[(T9 + 3)] % 8); - Stop(this script); - } - If (_lineCyc == 248) - { - Call *STATUS(0); - If ((.DMAenable * .DMAtype) == 1) - { - .HDMAenable = 1; - } - Stop(this script); - } - } - Else - { - If (_lineCyc == 456) - { - _lineCyc = 0; - Call *setLY((-LY + 1)); - If (-LY == 154) - { - Call *setLY(0); - Call *STATUS(2); - _PIXEL# = 0; - } - } - } -} - -Define update joypad (warp=true) -{ - List.DeleteAll(joypad buttons); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[1]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[2]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[3]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[4]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[5]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[6]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[7]))); - List.Add(joypad buttons, ( + Sensing.KeyPressed(controls.GB[8]))); -} - -Define update joypad and register (warp=true) -{ - Call update joypad; - Call &joypad; -} - -Define update LCDSTAT (warp=true) -{ - _STATcond2 = _STATcond1; - _STATcond1 = ( + ((-LYmask == -LYC) Or (((Operator.LetterOf(-LCDS, 3) * -STATUS) == 2) Or (((Operator.LetterOf(-LCDS, 4) * -STATUS) == 1) Or ((Operator.LetterOf(-LCDS, 5) * (-STATUS == 0)) == 1))))); - Call *set STAT(2) ,(( + (-LYmask == -LYC))); - If (_STATcond1 > _STATcond2) - { - Call *set IF(1) ,(1); - } -} - -Define view palette (warp=true) -{ - T1 = 64; - Pen.SetPenSizeTo(10); - Motion.SetY(0); - Repeat (8) - { - Motion.SetX(-220); - Repeat (4) - { - T1 += 1; - Pen.SetPenColorToColor(*palette[T1]); - Pen.Down(); - Pen.Clear(); - Motion.ChangeXBy(10); - } - Motion.ChangeYBy(-10); - } -} - -Define write DMA (warp=true) -{ - Call .DMA write(floor(((.DMAstart / 256) % 256))) to("0xFF51"); - Call .DMA write(floor((.DMAstart % 256))) to("0xFF52"); - Call .DMA write(floor(((.DMAend / 256) % 256))) to("0xFF53"); - Call .DMA write(floor((.DMAend % 256))) to("0xFF54"); -} - -Define z (warp=true) -{ - List.DeleteAll($C); - List.Add($C, _RAM[_IFindex]); - List.Add($C, _RAM[_IEindex]); - _T = and_table[((($C[1] * 256) + $C[2]) + 1)]; -} - -Define _ (warp=true) -{ - _lineCyc += (4 / .SPEED); - ,c += (4 / .SPEED); - If (*OAMDMA# < 160) - { - Repeat (4) - { - Call .Z = rMEM((*OAMDMAS + *OAMDMA#)); - Call .DMA write(_Z) to((0xFE00 + *OAMDMA#)); - *OAMDMA# += 1; - } - } - Call .TIMERS; - Call .Z = rMEM("0xFF40"); - If (_Z < 128) - { - Call *reset PPU; - } - Else - { - If (((-LY < 144) And ((_lineCyc == 80) Or (_lineCyc == 248))) Or (_lineCyc == 456)) - { - Call update; - } - If ((-STATUS * render) == 3) - { - If (_X < 160) - { - Call _graphics registers; - Call .PIX; - Call .PIX; - If (.SPEED == 1) - { - Call .PIX; - Call .PIX; - } - } - } - If ((-LY * (_lineCyc > 4)) == 153) - { - -LYmask = 0; - Call .DMA write(0) to("0xFF44"); - } - Else - { - -LYmask = -LY; - } - Call update LCDSTAT; - } -} - -Define _bitwise init (warp=true) -{ - List.DeleteAll($A); - List.DeleteAll($B); - Repeat (8) - { - List.Add($A, 0); - List.Add($B, 0); - } - List.DeleteAll(and_table); - Repeat (256) - { - Repeat (256) - { - T1 = "0b"; - i = 0; - Repeat (8) - { - i += 1; - T1 = Operator.Join(T1, ( + ($A[i] And $B[i]))); - } - Call $incA; - List.Add(and_table, (T1 + 0)); - } - Call $incB; - } - List.DeleteAll(or_table); - Repeat (256) - { - Repeat (256) - { - T1 = "0b"; - i = 0; - Repeat (8) - { - i += 1; - T1 = Operator.Join(T1, ( + ($A[i] Or $B[i]))); - } - Call $incA; - List.Add(or_table, (T1 + 0)); - } - Call $incB; - } - List.DeleteAll(xor_table); - Repeat (256) - { - Repeat (256) - { - T1 = "0b"; - i = 0; - Repeat (8) - { - i += 1; - T1 = Operator.Join(T1, ( + (Not (($A[i] == $B[i]))))); - } - Call $incA; - List.Add(xor_table, (T1 + 0)); - } - Call $incB; - } -} - -Define _graphics registers (warp=true) -{ - -scx = _RAM[(T9 + 3)]; - -scx = ((-scx - (-scx % 8)) + -SCXMOD8); - -wx = (_RAM[(T9 + 11)] - 7); -} - -Define _init cpu tables (warp=true) -{ - T1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; - T2 = 0; - List.DeleteAll($A); - Repeat (26) - { - T2 += 1; - List.Add($A, Operator.LetterOf(T1, T2)); - } - T1 = "~ J23 K023 L+23 M+2 M-2 A2U V0 B0SP D23 K123 L-23 M+3 M-3 A3U V1 B1STOP J45 K045 L+45 M+4 M-4 A4U W0 N0 D45 K145 L-45 M+5 M-5 A5U W1 N110 J78 K078+ L+78 M+7 M-7 A7U B2DAA N111 D78 K178+ L-78 M+8 M-8 A8U B3CPL N140 JSP K078- L+SP M+9 M-9 A9U B4SCF N141 DSP K178- L-SP M+1 M-1 A1U B5CCF A22 A23 A24 A25 A27 A28 A29 A21 A32 A33 A34 A35 A37 A38 A39 A31 A42 A43 A44 A45 A47 A48 A49 A41 A52 A53 A54 A55 A57 A58 A59 A51 A72 A73 A74 A75 A77 A78 A79 A71 A82 A83 A84 A85 A87 A88 A89 A81 A92 A93 A94 A95 A97 A98 B6HALT A91 A12 A13 A14 A15 A17 A18 A19 A11 E02 E03 E04 E05 E07 E08 E09 E01 E12 E13 E14 E15 E17 E18 E19 E11 F02 F03 F04 F05 F07 F08 F09 F01 F12 F13 F14 F15 F17 F18 F19 F11 G02 G03 G04 G05 G07 G08 G09 G01 H02 H03 H04 H05 H07 H08 H09 H01 I02 I03 I04 I05 I07 I08 I09 I01 F22 F23 F24 F25 F27 F28 F29 F21 O110 R23 P110 P000 Q110 S23 E0U T0 O111 O000 P111 B7CB Q111 Q000 E1U T1 O140 R45 P140 - Q140 S45 F0U T2 O141 O200 P141 - Q141 - F1U T3 X0U R78 X03 - - S78 G0U T4 Y0 U0 Z0 - - - H0U T5 X1U R16 X13 C0 - S16 I0U T6 Y1 U1 Z1 C1 - - F2U T7"; - T2 = 0; - T3 = ""; - List.DeleteAll(_instrParam); - Repeat (Variable.Length(T1)) - { - T2 += 1; - If (Operator.LetterOf(T1, T2) == " ") - { - List.Add(_instrParam, T3); - T3 = ""; - } - Else - { - T3 = Operator.Join(T3, Operator.LetterOf(T1, T2)); - } - } - List.Add(_instrParam, T3); - T3 = ""; - List.DeleteAll(_instrIDs); - T2 = 0; - Repeat (256) - { - T2 += 1; - List.Add(_instrIDs, List.IndexOf($A, Operator.LetterOf(_instrParam[T2], 1))); - } -} - -Define _initMemPointers (warp=false) -{ - List.DeleteAll(.addr2ptr); - List.DeleteAll(.pointerStart); - List.DeleteAll(.ptr); - List.DeleteAll(_RAM); - List.DeleteAll(.ptr index); - Call _new pointer length("0x4000") map to ram(2) offset(""); - Call _new pointer length("0x4000") map to ram(2) offset(""); - Call _new pointer length("0x2000") map to ram(1) offset(""); - Repeat ((.GBC? * 0x2000)) - { - List.Add(_RAM, 0); - } - Call _new pointer length("0x2000") map to ram(0) offset(""); - If (_cartridge stuff[4] > 0) - { - Repeat ((_cartridge stuff[4] * 1024)) - { - List.Add(_RAM, 0); - } - } - Else - { - List.ReplaceItem(.ptr, 4, 1000000); - } - Call _new pointer length("0x1000") map to ram(1) offset(""); - Call _new pointer length("0x1000") map to ram(1) offset(""); - _S = .ptr[last]; - Repeat ((.GBC? * 0x7000)) - { - List.Add(_RAM, 0); - } - Call _new pointer length("0x1000") map to ram(0) offset(2); - Call _new pointer length("0xE00") map to ram(0) offset(2); - Repeat (2) - { - List.DeleteItem(.pointerStart, last); - List.DeleteItem(.ptr, last); - } - Call _new pointer length("0xA0") map to ram(1) offset(""); - Call _new pointer length("0x60") map to ram(0) offset(""); - Call _new pointer length("0x80") map to ram(1) offset(""); - Call _new pointer length("0x80") map to ram(1) offset(""); - List.ReplaceItem(.ptr, 2, 16384); -} - -Define _new pointer length(string l) map to ram(string q) offset(string o) (warp=false) -{ - List.Add(.pointerStart, List.Length(_RAM)); - List.Add(.ptr, List.Length(_RAM)); - i = 0; - Repeat (l) - { - List.Add(.addr2ptr, (List.Length(.pointerStart) - o)); - If (q == 1) - { - List.Add(_RAM, 0); - } - i += 1; - List.Add(.ptr index, i); - } -} - -Define _setup (warp=true) -{ - List.DeleteAll(_DMGPALETTE); - If - { - List.Add(_DMGPALETTE, "#081820"); - List.Add(_DMGPALETTE, "#43654d"); - List.Add(_DMGPALETTE, "#7eb27a"); - List.Add(_DMGPALETTE, "#b9ffa8"); - } - Else - { - List.Add(_DMGPALETTE, "#19394d"); - List.Add(_DMGPALETTE, "#38786f"); - List.Add(_DMGPALETTE, "#7eb97a"); - List.Add(_DMGPALETTE, "#eef2ae"); - } - _SIZE = 2; - Pen.SetPenSizeTo(_SIZE); - _XSHIFT = 160; - _YSHIFT = 144; - .soundEnable = 1; - time1 = Sensing.DaysSince2000(); -} - -Define _swap ROM bank X to(string n) (warp=true) -{ - List.ReplaceItem(.ptr, 2, (n * 16384)); -} - -Define __INIT (warp=true) -{ - List.DeleteAll(.HEX); - control_for_each ?? - probably legacy function from Scratch 2.0; - _current bank = 1; - loop = 0; - _frames = 0; - _frameskip = 2.4; - .DIVCYCLES = 4; - _lineCyc = 0; - ,c = 0; - .Mpri = 1; - *OAMDMA# = 160; - .DMAenable = 0; - .DMAtype = 0; - .HDMAenable = 0; - .DIV2 = 0; - Call _initMemPointers; - Call .write("0xFF00") byte("0xFF"); - Call .write("0xFF13") byte(0); - Call .write("0xFF14") byte(0); - Call .write("0xFF40") byte("0x91"); - Call .write("0xFF4D") byte(((.GBC? == 0) * 255)); - Call .write("0xFF4F") byte(0); - Call .write("0xFF68") byte(0); - _R = 0; - _HALT = 0; - List.DeleteAll(_pix); - -LY = 153; - Call *reset PPU; - Call CLS; - Call $reset registers; - Call _init cpu tables; - .IME = 0; - .TAC1 = 0; - .TACFLAG = 0; - List.DeleteAll(2^x); - List.Add(2^x, 1); - Repeat (15) - { - List.Add(2^x, (2 * 2^x[last])); - } - .SPEED = 1; - _STATcond1 = 2; - T9 = (.ptr[.addr2ptr[(0xFF40 + 1)]] + .ptr index[(0xFF40 + 1)]); - _IFindex = (.ptr[.addr2ptr[(0xFF0F + 1)]] + .ptr index[(0xFF0F + 1)]); - _IEindex = (.ptr[.addr2ptr[(0xFFFF + 1)]] + .ptr index[(0xFFFF + 1)]); - _STATindex = (.ptr[.addr2ptr[(0xFF41 + 1)]] + .ptr index[(0xFF41 + 1)]); - If (_cartridge stuff[2] < 1) - { - _MBCnumber = 0; - } - Else - { - If (_cartridge stuff[2] < 3) - { - _MBCnumber = 1; - } - Else - { - If (_cartridge stuff[2] < "0x0A") - { - _MBCnumber = 1; - } - Else - { - If (_cartridge stuff[2] < "0x0E") - { - _MBCnumber = "M1"; - } - Else - { - If (_cartridge stuff[2] < "0x14") - { - _MBCnumber = 3; - } - Else - { - If (_cartridge stuff[2] < "0x1F") - { - _MBCnumber = 5; - } - Else - { - If (_cartridge stuff[2] < "0x21") - { - _MBCnumber = 6; - } - Else - { - If (_cartridge stuff[2] < "0x22") - { - _MBCnumber = 7; - } - Else - { - _MBCnumber = "NA"; - } - } - } - } - } - } - } - } - List.DeleteAll(_PALETTE RAM); - List.DeleteAll(*palette); - List.DeleteAll(.vals); - List.Add(.vals, 80); - List.Add(.vals, 248); - If (.GBC? == 1) - { - Repeat (128) - { - List.Add(_PALETTE RAM, 0); - } - Repeat (64) - { - List.Add(*palette, "#000000"); - } - List.DeleteAll(_GBCPALETTELOOKUP); - T1 = 0; - Repeat (32) - { - T2 = 0; - Repeat (32) - { - T3 = 0; - Repeat (32) - { - Call color correct(T1)(T2)(T3); - List.Add(_GBCPALETTELOOKUP, _RE); - T3 += 1; - } - T2 += 1; - } - T1 += 1; - } - _A = 0; - Repeat (5) - { - List.ReplaceItem(*palette, (_A + 1), Operator.Join("#", "F0F0F0")); - List.ReplaceItem(*palette, (_A + 2), Operator.Join("#", "A0A0A0")); - List.ReplaceItem(*palette, (_A + 3), Operator.Join("#", 505050)); - List.ReplaceItem(*palette, (_A + 4), Operator.Join("#", 000000)); - _A += 4; - } - } - List.DeleteAll(_waveBuffer); - Repeat (256) - { - List.Add(_waveBuffer, 0); - } - Call .DMA write(( + 0b11100100)) to("0xFF47"); - Call *monodecode palettes address("0xFF47"); -} - -Define __run cycles (warp=true) -{ - -keyRandom = Operator.Random(1 / 144); - control_while ?? - probably legacy function from Scratch 2.0; - ,c += -70224; - Call +update sound; -} - -Define ~ADD A,(string r1) |(string p1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r1 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r1]; - } - } - List.ReplaceItem(Flag bits, 3, ( + ((((_REGISTERS[1] % 16) + (_S % 16)) + (Flag bits[4] * (p1 == 1))) > 15))); - List.ReplaceItem(Flag bits, 2, 0); - _S += ((Flag bits[4] * (p1 == 1)) + _REGISTERS[1]); - List.ReplaceItem(Flag bits, 4, ( + (_S > 255))); - List.ReplaceItem(_REGISTERS, 1, (_S % 256)); - List.ReplaceItem(Flag bits, 1, ( + (_REGISTERS[1] == 0))); -} - -Define ~ADD HL,(string r1)(string r2) (warp=true) -{ - Call _; - If (r1 == "S") - { - _S = _SP; - } - Else - { - _S = ((_REGISTERS[r1] * 256) + _REGISTERS[r2]); - } - _T = ((_REGISTERS[7] * 256) + _REGISTERS[8]); - List.ReplaceItem(Flag bits, 3, ( + (((_T % 4096) + (_S % 4096)) > 4095))); - List.ReplaceItem(Flag bits, 2, 0); - _T += _S; - List.ReplaceItem(Flag bits, 4, ( + (_T > 65535))); - List.ReplaceItem(_REGISTERS, 7, floor(((_T / 256) % 256))); - List.ReplaceItem(_REGISTERS, 8, (_T % 256)); -} - -Define ~ADDSPI8/LDHLSP+I8(string p1) (warp=true) -{ - List.ReplaceItem(Flag bits, 1, 0); - List.ReplaceItem(Flag bits, 2, 0); - Call PC++; - Call _; - _T = (byteStack[2] - ((byteStack[2] > 127) * 256)); - List.ReplaceItem(Flag bits, 3, ( + ((((_SP % 16) + (_T % 16)) % 32) > 15))); - List.ReplaceItem(Flag bits, 4, ( + ((((_SP % 256) + (_T % 256)) % 512) > 255))); - Call _; - If (p1 == 0) - { - Call _; - _SP = ((_SP + _T) % 65536); - } - Else - { - List.ReplaceItem(_REGISTERS, 7, (floor(((_SP + _T) / 256)) % 256)); - List.ReplaceItem(_REGISTERS, 8, ((_SP + _T) % 256)); - } -} - -Define ~AND A,(string r1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r1 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r1]; - } - } - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 1); - List.ReplaceItem(Flag bits, 4, 0); - List.ReplaceItem(_REGISTERS, 1, and_table[(((_REGISTERS[1] * 256) + _S) + 1)]); - List.ReplaceItem(Flag bits, 1, ( + (_REGISTERS[1] == 0))); -} - -Define ~CALL(string c1)(string c2) |(string p1) (warp=true) -{ - Call _; - Call PC++; - Call _; - Call PC++; - If ((p1 == 0) Or (Flag bits[c1] == c2)) - { - Call ~PUSH(floor((_PC / 256)))((_PC % 256)); - _PC = ((byteStack[3] * 256) + byteStack[2]); - } -} - -Define ~CB prefixed (warp=false) -{ - Call _; - Call PC++; - T7 = byteStack[2]; - T8 = (T7 % 8); - If (T8 == 6) - { - _R = ((_REGISTERS[7] * 256) + _REGISTERS[8]); - Call .S = rMEM(_R); - _T = _S; - Call _; - } - Else - { - _T = _REGISTERS[Operator.LetterOf(23457891, (T8 + 1))]; - } - List.ReplaceItem(_REGISTERS, 9, _T); - If (T7 < 128) - { - If (T7 < 64) - { - If (T7 < 32) - { - If (T7 < 16) - { - Call ~RLC/RRC(9) |(floor(((T7 % 16) / 8))); - } - Else - { - Call ~RL/RR(9) |(floor(((T7 % 16) / 8))); - } - } - Else - { - If (T7 < 48) - { - Call ~SLA/SRA(9) |(floor(((T7 % 16) / 8))); - } - Else - { - Call ~SWAP/SRL(9) |(floor(((T7 % 16) / 8))); - } - } - _RE = _REGISTERS[9]; - } - Else - { - List.ReplaceItem(Flag bits, 1, ( + ((floor((_REGISTERS[9] / 2^x[(floor(((T7 % 64) / 8)) + 1)])) % 2) == 0))); - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 1); - Stop(this script); - } - } - Else - { - Call ~set bit(floor(((T7 % 64) / 8))) of(_REGISTERS[9]) to(floor(((T7 % 128) / 64))); - } - If (T8 == 6) - { - Call .write(_R) byte(_RE); - Call _; - } - Else - { - List.ReplaceItem(_REGISTERS, Operator.LetterOf(23457891, (T8 + 1)), _RE); - } -} - -Define ~DAA (warp=true) -{ - If Flag bits[2] - { - If Flag bits[4] - { - List.ReplaceItem(_REGISTERS, 1, (_REGISTERS[1] - 96)); - } - If Flag bits[3] - { - List.ReplaceItem(_REGISTERS, 1, (_REGISTERS[1] - 6)); - } - } - Else - { - If (Flag bits[4] Or (_REGISTERS[1] > "0x99")) - { - List.ReplaceItem(_REGISTERS, 1, (_REGISTERS[1] + 96)); - List.ReplaceItem(Flag bits, 4, 1); - } - If (Flag bits[3] Or ((_REGISTERS[1] % 16) > 9)) - { - List.ReplaceItem(_REGISTERS, 1, (_REGISTERS[1] + 6)); - } - } - List.ReplaceItem(_REGISTERS, 1, (_REGISTERS[1] % 256)); - List.ReplaceItem(Flag bits, 3, 0); - List.ReplaceItem(Flag bits, 1, ( + (_REGISTERS[1] == 0))); -} - -Define ~FLAGSREAD (warp=true) -{ - List.ReplaceItem(_REGISTERS, 6, ((Flag bits[1] * 128) + ((Flag bits[2] * 64) + ((Flag bits[3] * 32) + (Flag bits[4] * 16))))); -} - -Define ~FLAGSWRITE (warp=true) -{ - List.DeleteAll(Flag bits); - List.Add(Flag bits, (floor((_REGISTERS[6] / 128)) % 2)); - List.Add(Flag bits, (floor((_REGISTERS[6] / 64)) % 2)); - List.Add(Flag bits, (floor((_REGISTERS[6] / 32)) % 2)); - List.Add(Flag bits, (floor((_REGISTERS[6] / 16)) % 2)); -} - -Define ~INC/DEC8(string r1) |(string p1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - _S = _REGISTERS[r1]; - } - T7 = ((p1 == "+") - (p1 == "-")); - _T = (_S + T7); - List.ReplaceItem(Flag bits, 2, ( + (p1 == "-"))); - If Flag bits[2] - { - List.ReplaceItem(Flag bits, 3, (1 - ((((_S % 16) + (T7 % 16)) % 32) > 15))); - } - Else - { - List.ReplaceItem(Flag bits, 3, ( + ((((_S % 16) + (T7 % 16)) % 32) > 15))); - } - If (r1 == 9) - { - Call _; - Call .write(((_REGISTERS[7] * 256) + _REGISTERS[8])) byte((_T % 256)); - } - Else - { - List.ReplaceItem(_REGISTERS, r1, (_T % 256)); - } - List.ReplaceItem(Flag bits, 1, ( + ((_T % 256) == 0))); -} - -Define ~INC/DEC16(string r1)(string r2) |(string p1) (warp=true) -{ - _S = ((p1 == "+") - (p1 == "-")); - Call _; - If (r1 == "S") - { - _SP = ((_SP + _S) % 65536); - } - Else - { - _T = (_REGISTERS[r2] + _S); - List.ReplaceItem(_REGISTERS, r2, (_T % 256)); - List.ReplaceItem(_REGISTERS, r1, ((_REGISTERS[r1] + floor((_T / 256))) % 256)); - } -} - -Define ~JP(string c1)(string c2) |(string p1) (warp=true) -{ - Call PC++; - Call _; - Call PC++; - Call _; - If ((p1 == 0) Or (Flag bits[c1] == c2)) - { - _PC = ((byteStack[3] * 256) + byteStack[2]); - Call _; - } -} - -Define ~JPHL/LDSPHL(string r1) (warp=true) -{ - If (r1 == 0) - { - _PC = ((_REGISTERS[7] * 256) + _REGISTERS[8]); - } - Else - { - Call _; - _SP = ((_REGISTERS[7] * 256) + _REGISTERS[8]); - } -} - -Define ~JR(string c1)(string c2) |(string p1) (warp=true) -{ - Call _; - Call PC++; - If ((p1 == 0) Or (Flag bits[c1] == c2)) - { - Call _; - _PC = ((_PC + (byteStack[2] - ((byteStack[2] > 127) * 256))) % 65536); - } -} - -Define ~LD(string r1)(string r2) (warp=true) -{ - If (r2 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r2 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r2]; - } - } - If (r1 == 9) - { - Call _; - Call .write(((_REGISTERS[7] * 256) + _REGISTERS[8])) byte(_S); - } - Else - { - List.ReplaceItem(_REGISTERS, r1, _S); - } -} - -Define ~LD16(string r1)(string r2) (warp=true) -{ - Call _; - Call PC++; - Call _; - Call PC++; - If (r1 == "S") - { - _SP = ((byteStack[3] * 256) + byteStack[2]); - } - Else - { - List.ReplaceItem(_REGISTERS, r1, byteStack[3]); - List.ReplaceItem(_REGISTERS, r2, byteStack[2]); - } -} - -Define ~LDPTR(string r1)(string r2) |(string p1)(string p2) (warp=true) -{ - Call _; - If (p1 == 0) - { - Call .write(((_REGISTERS[r1] * 256) + _REGISTERS[r2])) byte(_REGISTERS[1]); - } - Else - { - Call .S = rMEM(((_REGISTERS[r1] * 256) + _REGISTERS[r2])); - List.ReplaceItem(_REGISTERS, 1, _S); - } - If (p2 > "") - { - _S = ((p2 == "+") - (p2 == "-")); - _T = (_REGISTERS[8] + _S); - List.ReplaceItem(_REGISTERS, 8, (_T % 256)); - List.ReplaceItem(_REGISTERS, 7, floor((_REGISTERS[7] + (_T / 256)))); - } -} - -Define ~LDU16(string p1) (warp=true) -{ - Call _; - Call PC++; - Call _; - Call PC++; - Call _; - If (p1 == 0) - { - Call .write(((byteStack[3] * 256) + byteStack[2])) byte(_REGISTERS[1]); - } - Else - { - Call .S = rMEM(((byteStack[3] * 256) + byteStack[2])); - List.ReplaceItem(_REGISTERS, 1, _S); - } -} - -Define ~LD ZRAM(string p1)(string p2) (warp=true) -{ - _T = "0xFF00"; - If (p2 == "U") - { - Call _; - Call PC++; - _T += byteStack[2]; - } - Else - { - _T += _REGISTERS[3]; - } - Call _; - If (p1 == 0) - { - Call .write(_T) byte(_REGISTERS[1]); - } - Else - { - Call .S = rMEM(_T); - List.ReplaceItem(_REGISTERS, 1, _S); - } -} - -Define ~MISC(string p1) (warp=true) -{ - If (p1 < 4) - { - If (p1 < 2) - { - If (p1 < 1) - { - Call _; - Call PC++; - Call _; - Call PC++; - _T = ((byteStack[3] * 256) + byteStack[2]); - Call _; - Call .write(_T) byte((_SP % 256)); - Call _; - Call .write(((_T + 1) % 65536)) byte(floor((_SP / 256))); - } - Else - { - If (.GBC? == 1) - { - .DIVCYCLES = 0; - Call _; - Call .S = rMEM("0xFF4D"); - If ((_S % 2) == 1) - { - If (.SPEED == 1) - { - .SPEED = 2; - } - Else - { - .SPEED = 1; - } - Call .DMA write(((.SPEED - 1) * 128)) to("0xFF4D"); - _lineCyc = (_lineCyc - (_lineCyc % 4)); - Call PC++; - } - } - Else - { - } - } - } - Else - { - If (p1 < 3) - { - Call ~DAA; - } - Else - { - List.ReplaceItem(_REGISTERS, 1, (255 - _REGISTERS[1])); - List.ReplaceItem(Flag bits, 2, 1); - List.ReplaceItem(Flag bits, 3, 1); - } - } - } - Else - { - If (p1 < 6) - { - If (p1 < 5) - { - List.ReplaceItem(Flag bits, 4, 1); - } - Else - { - List.ReplaceItem(Flag bits, 4, (1 - Flag bits[4])); - } - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 0); - } - Else - { - If (p1 < 7) - { - _HALT = 1; - } - Else - { - Call ~CB prefixed; - } - } - } -} - -Define ~OR A,(string r1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r1 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r1]; - } - } - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 0); - List.ReplaceItem(Flag bits, 4, 0); - List.ReplaceItem(_REGISTERS, 1, or_table[(((_REGISTERS[1] * 256) + _S) + 1)]); - List.ReplaceItem(Flag bits, 1, ( + (_REGISTERS[1] == 0))); -} - -Define ~POP (warp=true) -{ - Call _; - Call .S = rMEM(_SP); - _T = _S; - _SP = ((_SP + 1) % 65536); - Call _; - Call .S = rMEM(_SP); - _T += (_S * 256); - _SP = ((_SP + 1) % 65536); -} - -Define ~PUSH(string uH)(string uL) (warp=true) -{ - Call _; - _SP = ((_SP - 1) % 65536); - Call _; - Call .write(_SP) byte(uH); - _SP = ((_SP - 1) % 65536); - Call _; - Call .write(_SP) byte(uL); -} - -Define ~RET(string c1)(string c2) |(string p1) (warp=true) -{ - If (((p1 == 0) Or (p1 == 2)) Or (Flag bits[c1] == c2)) - { - If (p1 == 1) - { - Call _; - } - Call ~POP; - _PC = _T; - } - If (p1 == 2) - { - .IME = -1; - } - Call _; -} - -Define ~RL/RR(string r1) |(string d1) (warp=true) -{ - _S = _REGISTERS[r1]; - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 0); - If (d1 == 0) - { - _S = ((_S * 2) + Flag bits[4]); - List.ReplaceItem(Flag bits, 4, ( + (_S > 255))); - } - Else - { - _T = Flag bits[4]; - List.ReplaceItem(Flag bits, 4, (_S % 2)); - _S = (floor((_S / 2)) + (_T * 128)); - } - _S = (_S % 256); - List.ReplaceItem(Flag bits, 1, ( + (_S == 0))); - List.ReplaceItem(_REGISTERS, r1, _S); -} - -Define ~RLC/RRC(string r1) |(string d1) (warp=true) -{ - _S = _REGISTERS[r1]; - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 0); - If (d1 == 0) - { - _S = ((_S * 2) + floor((_S / 128))); - List.ReplaceItem(Flag bits, 4, ( + (_S > 255))); - } - Else - { - List.ReplaceItem(Flag bits, 4, (_S % 2)); - _S = (floor((_S / 2)) + ((_S % 2) * 128)); - } - _S = (_S % 256); - List.ReplaceItem(Flag bits, 1, ( + (_S == 0))); - List.ReplaceItem(_REGISTERS, r1, _S); -} - -Define ~RST(string n) (warp=true) -{ - Call ~PUSH(floor((_PC / 256)))((_PC % 256)); - _PC = (n * 8); -} - -Define ~set bit(string x) of(string n) to(string b) (warp=true) -{ - _RE = ((n - (n % 2^x[(x + 2)])) + ((b * 2^x[(x + 1)]) + (n % 2^x[(x + 1)]))); -} - -Define ~SLA/SRA(string r1) |(string p1) (warp=true) -{ - _S = _REGISTERS[r1]; - If (p1 == 0) - { - _S = (_S * 2); - List.ReplaceItem(Flag bits, 4, ( + (_S > 255))); - _S = (_S % 256); - } - Else - { - List.ReplaceItem(Flag bits, 4, (_S % 2)); - _S = ((floor((_S / 2)) + (floor((_S / 128)) * 128)) % 256); - } - List.ReplaceItem(Flag bits, 3, 0); - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 1, ( + (_S == 0))); - List.ReplaceItem(_REGISTERS, r1, _S); -} - -Define ~SUB A,(string r1) |(string p1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r1 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r1]; - } - } - List.ReplaceItem(Flag bits, 3, ( + (((((_REGISTERS[1] % 16) - (_S % 16)) - (Flag bits[4] * (p1 == 1))) % 32) > 15))); - List.ReplaceItem(Flag bits, 2, 1); - _S += (Flag bits[4] * (p1 == 1)); - _S = (_REGISTERS[1] - _S); - List.ReplaceItem(Flag bits, 4, ( + (_S < 0))); - If (Not ((p1 == 2))) - { - List.ReplaceItem(_REGISTERS, 1, (_S % 256)); - } - List.ReplaceItem(Flag bits, 1, ( + ((_S % 256) == 0))); -} - -Define ~SWAP/SRL(string r1) |(string p1) (warp=true) -{ - _S = _REGISTERS[r1]; - If (p1 == 0) - { - List.ReplaceItem(Flag bits, 4, 0); - _S = (((_S % 16) * 16) + floor((_S / 16))); - } - Else - { - List.ReplaceItem(Flag bits, 4, (_S % 2)); - _S = floor((_S / 2)); - } - List.ReplaceItem(Flag bits, 3, 0); - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 1, ( + (_S == 0))); - List.ReplaceItem(_REGISTERS, r1, _S); -} - -Define ~XOR A,(string r1) (warp=true) -{ - If (r1 == 9) - { - Call _; - Call .S = rMEM(((_REGISTERS[7] * 256) + _REGISTERS[8])); - } - Else - { - If (r1 == "U") - { - Call _; - Call PC++; - _S = byteStack[2]; - } - Else - { - _S = _REGISTERS[r1]; - } - } - List.ReplaceItem(Flag bits, 2, 0); - List.ReplaceItem(Flag bits, 3, 0); - List.ReplaceItem(Flag bits, 4, 0); - List.ReplaceItem(_REGISTERS, 1, xor_table[(((_REGISTERS[1] * 256) + _S) + 1)]); - List.ReplaceItem(Flag bits, 1, ( + (_REGISTERS[1] == 0))); -} - - -//----- Orphaned blocks ----------------------------------------------------------------------------------------------- - -8 - -HALF_C - -hc - -8_1 - -0 - -1 - -pair - -d1 - -d2 - -down arrow - -up arrow - -left arrow - -right arrow - -right arrow - -space - -s - -Call ​​log​​(-LY) - -List.Add(buf, ((_waveBuffer[_A] / 8) - 1)) - -a - - -//----- Costumes ------------------------------------------------------------------------------------------------------ - -costume1.svg diff --git a/HelloWorld.txt b/HelloWorld.txt index d1267fd..d818260 100644 --- a/HelloWorld.txt +++ b/HelloWorld.txt @@ -1,6 +1,10 @@ //----- Variables ----------------------------------------------------------------------------------------------------- Ahello = 1 +arm7.pc = 0 +arm7.read_return = 0 +arm9.pc = 0 +arm9.read_return = 0 bg_mode = 0 c8scrnsize = 0 calc.char = 0 @@ -9,6 +13,7 @@ calc.temp = 0 calc.temp2 = 0 chip8.audio toggle = 0 chip8.audio_buffer = 0 +chip8.blendmode = 0 chip8.delay_timer = 0 chip8.drawflag = 0 chip8.drawmode = 0 @@ -35,6 +40,18 @@ chip8.Shift_quirk = 0 chip8.sound_timer = 0 chip8.spritewidth = 0 chip8m.collisioncolor = 0 +core.byte_return = 0 +core.condition_test = 0 +core.dummy = 0 +core.dummy2 = 0 +core.dummy_op = 0 +core.instruction_format = 0 +core.little_endian = 0 +core.op.dummy = 0 +core.op.dummy2 = 0 +core.read_return = 0 +core.rotate_return = 0 +core.shift_return = 0 flags.met = 0 import.ascii = 0 import.binary = 0 @@ -53,6 +70,7 @@ program.done = 0 read.return = 0 read.single.return = 0 rom.name = 0 +S = 0 scanX = 0 scanY = 0 SF2091! fix = 0 @@ -60,6 +78,7 @@ speed (CPF) = 0 storage.byte = 0 temp = 0 tile_mode = 0 +Velocity = 0 VIP jumps = 0 _id = 0 _pitch = 0 @@ -67,6 +86,9 @@ _pitch = 0 //----- Lists --------------------------------------------------------------------------------------------------------- +arm7.registers = { } +arm9.flags = { } +arm9.registers = { } Boot-128 = { } chip8.audio = { } chip8.keyboard = { } @@ -96,6 +118,7 @@ WhenGreenFlagClicked() WhenBroadcastReceived(HelloInter) { + Event.Broadcast("un-needed broadcast"); List.Show(MainHello); List.Add(MainHello, "Ultimate "Hello,World" Esolang Interpreter Wave edition by oxiti8"); List.Add(MainHello, ">>>"); @@ -137,61 +160,62 @@ WhenBroadcastReceived(HelloInter) } Else { - If (Input == "exitop") + If (Input == "wh") { - List.Add(MainHello, "Chip-8 exit opcode is 0xFD"); + List.Add(MainHello, "World, Hello!"); } Else { - If (Input == "wh") + If (Input == "clear") { - List.Add(MainHello, "World, Hello!"); + List.DeleteAll(MainHello); + List.Show(MainHello); + List.Add(MainHello, "Ultimate "Hello,World" Esolang Interpreter Wave edition by oxiti8"); + List.Add(MainHello, ">>>"); + Input = 0; } Else { - If (Input == "clear") + If (Operator.Join(Operator.LetterOf(Input, 1), Operator.Join(Operator.LetterOf(Input, 2), Operator.Join(Operator.LetterOf(Input, 3), Operator.LetterOf(Input, 4)))) == "load") { - List.DeleteAll(MainHello); - List.Show(MainHello); - List.Add(MainHello, "Ultimate "Hello,World" Esolang Interpreter Wave edition by oxiti8"); - List.Add(MainHello, ">>>"); - Input = 0; - } - Else - { - If (Operator.Join(Operator.LetterOf(Input, 1), Operator.Join(Operator.LetterOf(Input, 2), Operator.Join(Operator.LetterOf(Input, 3), Operator.LetterOf(Input, 4)))) == "Load") + If Operator.Contains(Input, "Rocket Launcher") { - If Operator.Contains(Input, "Rocket Launcher") + _ROM = "00E0A260600761386219D027D127A25E60006118D011700830401214681E69112258600FE09E12246008F018225879FF22586002F015F007300012366001F0183900122C00E0640CC520C640D65174FF34001248691A122EA268D89700EEFF0080808080808080002070707070F85000"; + Event.Broadcast("Load_Prebuilt_game"); + } + Else + { + If Operator.Contains(Input, "1P Pong") { - _ROM = "00E0A260600761386219D027D127A25E60006118D011700830401214681E69112258600FE09E12246008F018225879FF22586002F015F007300012366001F0183900122C00E0640CC520C640D65174FF34001248691A122EA268D89700EEFF0080808080808080002070707070F85000"; + _ROM = "6A026B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB68D70C00A7DFE40007D026000601F8D02DCD6A2F0D67186848794603F8602611F871246021278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146500D4557415F229D45500EE808080808080800000000000"; Event.Broadcast("Load_Prebuilt_game"); } Else { - If Operator.Contains(Input, "1P Pong") + If Operator.Contains(Input, "Breakout") { - _ROM = "6A026B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB68D70C00A7DFE40007D026000601F8D02DCD6A2F0D67186848794603F8602611F871246021278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146500D4557415F229D45500EE808080808080800000000000"; + _ROM = "A2CC6A0661036B086000D01170087BFF3B00120A71027AFF3A00120666006714A2CD6020611ED011631D623F820277FF470012AAFF0AA2CBD23165FFC401340164FFA2CD6C006E04EEA16CFE6E06EEA16C02D01180C4D0114F01129842006401423F64FF430012CE431F12A4A2CBD23182448354D2313F011242431E12986A02FA187601A2CA1288D231C401340164FFC5013501650112426A03FA18A2CBD23173FF1236A2CBD2311228A2CDD011A2F0F633F2656318641BF029D3457305F129D3457305F229D34512C8F080FFFFA2DE63156210D325A2E3631DD32512AAEE8ACE8C8AEE88CC88EE"; Event.Broadcast("Load_Prebuilt_game"); } Else { - If Operator.Contains(Input, "Breakout") + If Operator.Contains(Input, "Pong 2") { - _ROM = "A2CC6A0661036B086000D01170087BFF3B00120A71027AFF3A00120666006714A2CD6020611ED011631D623F820277FF470012AAFF0AA2CBD23165FFC401340164FFA2CD6C006E04EEA16CFE6E06EEA16C02D01180C4D0114F01129842006401423F64FF430012CE431F12A4A2CBD23182448354D2313F011242431E12986A02FA187601A2CA1288D231C401340164FFC5013501650112426A03FA18A2CBD23173FF1236A2CBD2311228A2CDD011A2F0F633F2656318641BF029D3457305F129D3457305F229D34512C8F080FFFFA2DE63156210D325A2E3631DD32512AAEE8ACE8C8AEE88CC88EE"; + _ROM = "22FC6B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB6600CE0A17DFE600DE0A17D02601F8D02DCD6A2F0D67186848794603F8602611F871246001278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146502D4557415F229D45500EE808080808080800000000000C0C0C000FF006B206C00A2F6DBC47C043C2013026A006B006C1FA2FADAB1DAC17A083A401312A2F66A006B20DBA100EE"; Event.Broadcast("Load_Prebuilt_game"); } Else { - If Operator.Contains(Input, "Pong 2") + If Operator.Contains(Input, "Keypad test") { - _ROM = "22FC6B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB6600CE0A17DFE600DE0A17D02601F8D02DCD6A2F0D67186848794603F8602611F871246001278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146502D4557415F229D45500EE808080808080800000000000C0C0C000FF006B206C00A2F6DBC47C043C2013026A006B006C1FA2FADAB1DAC17A083A401312A2F66A006B20DBA100EE"; + _ROM = "6014610AF20A00E0F229D0151204"; Event.Broadcast("Load_Prebuilt_game"); } Else { - If Operator.Contains(Input, "Keypad test") + If Operator.Contains(Input, "16 color test") { - _ROM = "6014610AF20A00E0F229D0151204"; + _ROM = "F301A21860046104D0127102F701D0127102FF01D012121633330F0F5555FFFF00"; Event.Broadcast("Load_Prebuilt_game"); } Else @@ -204,7 +228,9 @@ WhenBroadcastReceived(HelloInter) } Else { - Event.Broadcast("get_rom"); + Sensing.Ask("Paste CHIP-8 rom in base64 now."); + _ROM = Sensing.Answer(); + Event.Broadcast("Load_base64"); } } } @@ -212,89 +238,91 @@ WhenBroadcastReceived(HelloInter) } } } + } + Else + { + If (Input == "+") + { + control_incr_counter ?? - probably legacy function from Scratch 2.0; + List.Add(MainHello, control_get_counter ?? - probably legacy function from Scratch 2.0); + } Else { - If (Input == "+") + If (Input == "credits") { - control_incr_counter ?? - probably legacy function from Scratch 2.0; - List.Add(MainHello, control_get_counter ?? - probably legacy function from Scratch 2.0); + List.Add(MainHello, "Wave Multi-Emulator credits"); + List.Add(MainHello, "Concept: @Geotale/@EmulatorsOnScratch"); + List.Add(MainHello, "Menu: @Geotale @Executec @oxiti8"); + List.Add(MainHello, "WAVE-8: @Geotale @oxiti8 @Kouzeru @52525rr"); + List.Add(MainHello, "rrGBC: @52525rr"); + List.Add(MainHello, "Nintendo DS Emulator: @Geotale/@EmulatorsOnScratch"); + List.Add(MainHello, "Cool NES Emulator: @GenericHeroGuy"); + List.Add(MainHello, "Bytepusher: @52525rr"); + List.Add(MainHello, "UHWEI Wave Edition: @oxiti8"); + List.Add(MainHello, "SI8080: @oxiti8, @Kouzeru for renderer"); + List.Add(MainHello, "Music: Purple Planet Music - Chilled - Global Tech, Nintendo 3DS HOME menu BGM, Mario Paint - Special Stamps"); + List.Add(MainHello, "Special Thanks: StinkerB06 and Tobiasvl for helping with DXYN "); + List.Add(MainHello, "@AArt1256, @52525rr, and @Kouzeru for help with XO-CHIP"); + List.Add(MainHello, "Gulrak for the help with documenting Megachip"); + List.Add(MainHello, "CHIP8 Wave logo ROM by @AArt1256"); + List.Add(MainHello, "Thanks to everyone who has contributed to the project over the past 3 years!"); } Else { - If (Input == "credits") + If (Input == "Exit") { - List.Add(MainHello, "Concept: @Geotale/@EmulatorsOnScratch"); - List.Add(MainHello, "Menu: @Geotale @Executec @oxiti8"); - List.Add(MainHello, "WAVE-8: @Geotale @oxiti8 @Kouzeru @52525rr"); - List.Add(MainHello, "DualGB: @52525rr"); - List.Add(MainHello, "Game Boy Advance Emulator: @Geotale/@EmulatorsOnScratch"); - List.Add(MainHello, "Nintendo DS Emulator: @Geotale/@EmulatorsOnScratch"); - List.Add(MainHello, "Cool NES Emulator: @GenericHeroGuy"); - List.Add(MainHello, "Bytepusher: @52525rr"); - List.Add(MainHello, "UHWEI Wave Edition: @oxiti8"); - List.Add(MainHello, "SI8080: @oxiti8"); - List.Add(MainHello, "Music: Purple Planet Music - Chilled - Global Tech, Nintendo 3DS HOME menu BGM, Mario Paint - Special Stamps"); - List.Add(MainHello, "Special Thanks: StinkerB06 and Tobiasvl for helping with DXYN "); - List.Add(MainHello, "@AArt1256, @52525rr, and @Kouzeru for help with XO-CHIP"); - List.Add(MainHello, "CHIP8 Wave logo ROM by @AArt1256"); + List.Add(MainHello, "Exiting..."); + Event.Broadcast("Launch Emulator"); + List.Hide(MainHello); + List.DeleteAll(MainHello); + Event.BroadcastAndWait("Launch EmulatorWaitd"); + Event.Broadcast("exit emulator"); + Stop(this script); } Else { - If (Input == "Exit") + If (Input == "Set start address") { - List.Add(MainHello, "Exiting..."); - Event.Broadcast("Launch Emulator"); - List.Hide(MainHello); - List.DeleteAll(MainHello); - Event.BroadcastAndWait("Launch EmulatorWaitd"); - Event.Broadcast("exit emulator"); - Stop(this script); + Sensing.Ask("What address will Chip8 programs start at?"); + chip8.starting address = (Sensing.Answer() % 65536); + List.Add(MainHello, Operator.Join("Chip8 starting address set to ", chip8.starting address)); } Else { - If (Input == "Set start address") - { - Sensing.Ask("What address will Chip8 programs start at?"); - chip8.starting address = (Sensing.Answer() % 65536); - List.Add(MainHello, Operator.Join("Chip8 starting address set to ", chip8.starting address)); - } - Else + If (Input == 9) { - If (Input == 9) + Ahello = 99; + Repeat Until (Not ((Ahello > 0))) { - Ahello = 99; - Repeat Until (Not ((Ahello > 0))) + If (Ahello == 1) + { + List.Add(MainHello, Operator.Join(Ahello, Operator.Join(" bottle of pop on the wall, ", Operator.Join(Ahello, " bottle of pop.")))); + } + Else + { + List.Add(MainHello, Operator.Join(Ahello, Operator.Join(" bottles of pop on the wall, ", Operator.Join(Ahello, " bottles of pop.")))); + } + Ahello += -1; + If (Ahello > 1) + { + List.Add(MainHello, Operator.Join("Take one down, pass it around, ", Operator.Join(Ahello, " bottles of pop on the wall."))); + } + Else { If (Ahello == 1) { - List.Add(MainHello, Operator.Join(Ahello, Operator.Join(" bottle of pop on the wall, ", Operator.Join(Ahello, " bottle of pop.")))); + List.Add(MainHello, Operator.Join("Take one down, pass it around, ", Operator.Join(Ahello, " bottle of pop on the wall."))); } Else { - List.Add(MainHello, Operator.Join(Ahello, Operator.Join(" bottles of pop on the wall, ", Operator.Join(Ahello, " bottles of pop.")))); - } - Ahello += -1; - If (Ahello > 1) - { - List.Add(MainHello, Operator.Join("Take one down, pass it around, ", Operator.Join(Ahello, " bottles of pop on the wall."))); - } - Else - { - If (Ahello == 1) - { - List.Add(MainHello, Operator.Join("Take one down, pass it around, ", Operator.Join(Ahello, " bottle of pop on the wall."))); - } - Else - { - List.Add(MainHello, "Take one down, pass it around, no more bottles of pop on the wall."); - } + List.Add(MainHello, "Take one down, pass it around, no more bottles of pop on the wall."); } } } - Else - { - List.Add(MainHello, " "); - } + } + Else + { + List.Add(MainHello, " "); } } } @@ -396,10 +424,10 @@ Define _bitwise init (warp=true) Repeat (8) { r.0 += 1; - r.1 = Operator.Join(r.1, ( + (temp.0[r.0] And temp.1[r.0]))); + r.1 = Operator.Join(r.1, Operator.Round((temp.0[r.0] And temp.1[r.0]))); } Call $incA; - List.Add(and_table, (r.1 + 0)); + List.Add(and_table, Operator.Round(r.1)); } Call $incB; } @@ -413,10 +441,10 @@ Define _bitwise init (warp=true) Repeat (8) { r.0 += 1; - r.1 = Operator.Join(r.1, ( + (temp.0[r.0] Or temp.1[r.0]))); + r.1 = Operator.Join(r.1, Operator.Round((temp.0[r.0] Or temp.1[r.0]))); } Call $incA; - List.Add(or_table, (r.1 + 0)); + List.Add(or_table, Operator.Round(r.1)); } Call $incB; } @@ -430,10 +458,10 @@ Define _bitwise init (warp=true) Repeat (8) { r.0 += 1; - r.1 = Operator.Join(r.1, ( + (Not ((temp.0[r.0] == temp.1[r.0]))))); + r.1 = Operator.Join(r.1, Operator.Round((Not ((temp.0[r.0] == temp.1[r.0]))))); } Call $incA; - List.Add(xor_table, (r.1 + 0)); + List.Add(xor_table, Operator.Round(r.1)); } Call $incB; } diff --git a/Icon Template 1.txt b/Icon Template 1.txt index 6b30d70..3974b84 100644 --- a/Icon Template 1.txt +++ b/Icon Template 1.txt @@ -70,7 +70,7 @@ WhenBroadcastReceived(exit emulator) Looks.Hide(); Control.Wait(1.5); Looks.SwitchCostumeTo(0import); - Repeat (11) + Repeat (10) { Control.CreateCloneOf(_myself_); Looks.NextCostume(); @@ -97,10 +97,10 @@ Control.WhenIStartAsClone() Looks.SetSizeTo(52); Forever { - Wait Until Sensing.TouchingObject(Sprite3); + Wait Until (abs(Motion.XPosition()) < 74); Looks.SetSizeTo(55); Velocity = 5; - Wait Until (Not (Sensing.TouchingObject(Sprite3))); + Wait Until (74 < abs(Motion.XPosition())); Looks.SetSizeTo(98); Velocity = -5; } @@ -110,14 +110,14 @@ Control.WhenIStartAsClone() { Looks.SetEffectTo(GHOST, 100); Looks.Show(); - Motion.GoToXY((MenuScroll + ((Costume.GetNumberName(number) - 2) * 200)), (((Menu Theme[3] * 50) + ((cos(my variable) * 2) * ((Menu Theme[7] == 0) * Sensing.TouchingObject(Sprite3)))) - 230)); + Motion.GoToXY((MenuScroll + ((Costume.GetNumberName(number) - 2) * 200)), (((Menu Theme[3] * 50) + ((cos(my variable) * 2) * ((Menu Theme[7] == 0) * (abs(Motion.XPosition()) < 74)))) - 230)); Repeat ((11 * (1 + is compiled?))) { Looks.ChangeEffectBy(GHOST, (-5 * (2 - is compiled?))); } Forever { - Motion.GoToXY((MenuScroll + ((Costume.GetNumberName(number) - 2) * 200)), (((Menu Theme[3] * 50) + ((cos(my variable) * 2) * ((Menu Theme[7] == 0) * Sensing.TouchingObject(Sprite3)))) - 230)); + Motion.GoToXY((MenuScroll + ((Costume.GetNumberName(number) - 2) * 200)), (((Menu Theme[3] * 50) + ((cos(my variable) * 2) * ((Menu Theme[7] == 0) * (abs(Motion.XPosition()) < 74)))) - 230)); S = Looks.Size(); Looks.SetSizeTo(50); If Sensing.TouchingObject(_edge_) @@ -162,7 +162,6 @@ Control.WhenIStartAsClone() 1W8.svg 2DS.svg 2GB.svg -2GBA.svg 2N64.svg 2NES.svg 2UHWEI.svg diff --git a/Import ROM.txt b/Import ROM.txt index e119b09..cd951ee 100644 --- a/Import ROM.txt +++ b/Import ROM.txt @@ -37,12 +37,12 @@ chip8.spritewidth = 0 chip8m.collisioncolor = 0 flags.met = 0 import.ascii = !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~▒∠ā∇√∫Σ▶π ∂≤≥≠α→←↓↑γδεηθλρστωΔΠΩ■∞ ¡¢£¤¥¦§¨©ª«¬ -import.binary = 000000 +import.binary = 000110100000100000011101 import.char = 68 import.dummy = 1 import.percent = 0 -import.read_return = 163 -import.rom_length = 10537 +import.read_return = 167 +import.rom_length = 942038 import.status = 5 load = op.opcode = 0 @@ -81,7 +81,6 @@ load = { 0 0 } -Load ROMs: _rom = { } mappers = { 0 1 @@ -187,9 +186,6 @@ WhenBroadcastReceived(get_controls) { } If (Romimportflag == -1000) - { - } - If (Romimportflag == -1200) { Looks.SwitchCostumeTo(d); List.Show(controls.NES); @@ -216,7 +212,7 @@ WhenBroadcastReceived(get_controls) } } } - If (Romimportflag == -1800) + If (Romimportflag == -1600) { Looks.SwitchCostumeTo(e); List.Show(controls.SI8080); @@ -268,16 +264,6 @@ WhenBroadcastReceived(get_rom) If ((Romimportflag / -200) > 1) { If (Romimportflag == -800) - { - Looks.SwitchCostumeTo(C); - Sensing.Ask(""); - If (Not ((Sensing.Answer() == ""))) - { - Call convert_b64(Sensing.Answer()); - Sound.Play(423930__mudkip2016__correct2); - } - } - If (Romimportflag == -1000) { Looks.SwitchCostumeTo(B); Sensing.Ask(""); @@ -287,7 +273,7 @@ WhenBroadcastReceived(get_rom) Sound.Play(423930__mudkip2016__correct2); } } - If (Romimportflag == -1200) + If (Romimportflag == -1000) { Looks.SwitchCostumeTo(D); Sensing.Ask(""); @@ -313,7 +299,7 @@ WhenBroadcastReceived(get_rom) } } } - If ((Romimportflag == -400) Or (Romimportflag == -1400)) + If ((Romimportflag == -400) Or (Romimportflag == -1200)) { Looks.SwitchCostumeTo(T); Sensing.Ask(""); @@ -329,7 +315,7 @@ WhenBroadcastReceived(get_rom) } } } - If (Romimportflag == -1800) + If (Romimportflag == -1600) { Looks.SwitchCostumeTo(g); Sensing.Ask(""); @@ -365,6 +351,11 @@ WhenBroadcastReceived(get_rom) Romimportflag = 0; } +WhenBroadcastReceived(Load_base64) +{ + Call convert_b64(_ROM); +} + WhenBroadcastReceived(Load_Prebuilt_game) { Call import_rom(_ROM)(0); @@ -378,11 +369,10 @@ Define convert_b64(string code) (warp=true) Looks.SwitchCostumeTo(H); import.binary = ""; import.char = 1; - import.status = "(1/2) Converting to binary... (0%)"; - Variable.Show(import.status); + List.Add(MainHello, "(1/2) Converting to binary... (0%)"); Repeat (Variable.Length(code)) { - import.status = Operator.Join("(1/2) Converting to binary... (", Operator.Join(floor((100 * (import.char / Variable.Length(code)))), "%)")); + List.ReplaceItem(MainHello, last, Operator.Join("(1/2) Converting to binary... (", Operator.Join(floor((100 * (import.char / Variable.Length(code)))), "%)"))); Looks.SwitchCostumeTo(Operator.LetterOf(code, import.char)); If ((floor(((Costume.GetNumberName(number) - 1) / 32)) % 2) == 0) { @@ -434,16 +424,17 @@ Define convert_b64(string code) (warp=true) } import.char += 1; } - List.DeleteAll(PAKROM); + List.DeleteAll(_rom); import.char = 1; - import.status = "(2/2) Importing rom... (0%)"; + List.Add(MainHello, "(2/2) Importing rom... (0%)"); + import.status = ""; Repeat ((Variable.Length(import.binary) / 8)) { - import.status = Operator.Join("(2/2) Importing rom... (", Operator.Join(floor((100 * (import.char / Variable.Length(import.binary)))), "%)")); - List.Add(PAKROM, ((((128 * Operator.LetterOf(import.binary, import.char)) + (64 * Operator.LetterOf(import.binary, (import.char + 1)))) + ((32 * Operator.LetterOf(import.binary, (import.char + 2))) + (16 * Operator.LetterOf(import.binary, (import.char + 3))))) + (((8 * Operator.LetterOf(import.binary, (import.char + 4))) + (4 * Operator.LetterOf(import.binary, (import.char + 5)))) + ((2 * Operator.LetterOf(import.binary, (import.char + 6))) + Operator.LetterOf(import.binary, (import.char + 7)))))); + List.ReplaceItem(MainHello, last, Operator.Join("(2/2) Importing rom... (", Operator.Join(floor((100 * (import.char / Variable.Length(import.binary)))), "%)"))); + List.Add(_rom, ((((128 * Operator.LetterOf(import.binary, import.char)) + (64 * Operator.LetterOf(import.binary, (import.char + 1)))) + ((32 * Operator.LetterOf(import.binary, (import.char + 2))) + (16 * Operator.LetterOf(import.binary, (import.char + 3))))) + (((8 * Operator.LetterOf(import.binary, (import.char + 4))) + (4 * Operator.LetterOf(import.binary, (import.char + 5)))) + ((2 * Operator.LetterOf(import.binary, (import.char + 6))) + Operator.LetterOf(import.binary, (import.char + 7)))))); import.char += 8; } - Variable.Hide(import.status); + List.Add(MainHello, "Import complete."); } Define import_rom(string rom)(string flag) (warp=true) @@ -514,41 +505,6 @@ Define import_rom(string rom)(string flag) (warp=true) } } } - If (flag == 2) - { - If (import.status == 1) - { - Repeat Until ("0x7FF" < List.Length(_rom)) - { - List.Add(_rom, 0); - import.rom_length += 1; - } - } - If (import.status == 2) - { - Repeat Until ("0xFFF" < List.Length(_rom)) - { - List.Add(_rom, 0); - import.rom_length += 1; - } - } - If (import.status == 3) - { - Repeat Until ("0x17FF" < List.Length(_rom)) - { - List.Add(_rom, 0); - import.rom_length += 1; - } - } - If (import.status == 4) - { - Repeat Until ("0x1FFF" < List.Length(_rom)) - { - List.Add(_rom, 0); - import.rom_length += 1; - } - } - } } Define load NES(string data) (warp=true) @@ -661,7 +617,7 @@ Define load rom (warp=true) import.char = 1; Repeat ((Variable.Length(Sensing.Answer()) / 24)) { - List.Add(_rom, ( + Operator.Join("0x", Operator.Join(Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 2)), Operator.LetterOf(Sensing.Answer(), (import.char + 3))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 8)), Operator.LetterOf(Sensing.Answer(), (import.char + 9)))), Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 14)), Operator.LetterOf(Sensing.Answer(), (import.char + 15))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 20)), Operator.LetterOf(Sensing.Answer(), (import.char + 21)))))))); + List.Add(_rom, Operator.Round(Operator.Join("0x", Operator.Join(Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 2)), Operator.LetterOf(Sensing.Answer(), (import.char + 3))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 8)), Operator.LetterOf(Sensing.Answer(), (import.char + 9)))), Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 14)), Operator.LetterOf(Sensing.Answer(), (import.char + 15))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 20)), Operator.LetterOf(Sensing.Answer(), (import.char + 21)))))))); import.status = Operator.Join("Importing ROM as list... ", Operator.Join((Operator.Round((1000 * (import.char / Variable.Length(Sensing.Answer())))) / 10), "%")); import.char += 24; } @@ -671,7 +627,7 @@ Define load rom (warp=true) import.char = 1; Repeat ((Variable.Length(Sensing.Answer()) / 8)) { - List.Add(_rom, ( + Operator.Join("0x", Operator.Join(Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), import.char), Operator.LetterOf(Sensing.Answer(), (import.char + 1))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 2)), Operator.LetterOf(Sensing.Answer(), (import.char + 3)))), Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 4)), Operator.LetterOf(Sensing.Answer(), (import.char + 5))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 6)), Operator.LetterOf(Sensing.Answer(), (import.char + 7)))))))); + List.Add(_rom, Operator.Round(Operator.Join("0x", Operator.Join(Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), import.char), Operator.LetterOf(Sensing.Answer(), (import.char + 1))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 2)), Operator.LetterOf(Sensing.Answer(), (import.char + 3)))), Operator.Join(Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 4)), Operator.LetterOf(Sensing.Answer(), (import.char + 5))), Operator.Join(Operator.LetterOf(Sensing.Answer(), (import.char + 6)), Operator.LetterOf(Sensing.Answer(), (import.char + 7)))))))); import.status = Operator.Join("Importing ROM as list... ", Operator.Join((Operator.Round((1000 * (import.char / Variable.Length(Sensing.Answer())))) / 10), "%")); import.char += 8; } @@ -734,6 +690,20 @@ Define read byte(string addr) (warp=true) } +//----- Orphaned blocks ----------------------------------------------------------------------------------------------- + +If (Romimportflag == -3000) +{ + Looks.SwitchCostumeTo(C); + Sensing.Ask(""); + If (Not ((Sensing.Answer() == ""))) + { + Call convert_b64(Sensing.Answer()); + Sound.Play(423930__mudkip2016__correct2); + } +} + + //----- Costumes ------------------------------------------------------------------------------------------------------ +.svg diff --git a/README.md b/README.md index 39c075f..edbe919 100644 --- a/README.md +++ b/README.md @@ -11,48 +11,66 @@ If you are looking for information on the HyperWaveCHIP-64 extension for CHIP-8, Changelog: +**V1.0.X** + + +1.0.1: +- rrGBC: Updated to rrGBC v0.11. +- WAVE-8: enabled collision counting for SCHIP+HPS mode. + +1.0.0: +- General: New screen fade transition added, slightly sped up initial table generation, removed references to DualGB. +- WAVE-8: Fixed Clipping, added wrapping/clipping toggle, added HyperWAVEChip-64 1.1 support, made SCHIP+HPS mode more accurate with better half pixel scrolling support and Vsync in lores mode. +- DualGB: Replaced DualGB with rrgbc V0.10. +- REGBA: Removed GBA emulator. +- SI8080: Fixed countless CPU bugs, added new mode selection menu, added CP/M version function, added FPS counter, added partial refresh display, added space invaders audio support, fixed terminal formatting. +- Cool NES: minor optimizations. +- Bytepusher: sped up import and execution processes with custom blocks. + + **V0.9.X:** -V0.9.13: + +0.9.13: Moved bitwise table generator from DualGB to UHWEI, changed table generation message screen, added compatibility notice to GBA emulator backdrop. -V0.9.12: +0.9.12: - WAVE-8: fixed SF2091! fix to actually fix SF2091!. SI8080: fixed MOV RAM to reg, added more info to debug logs, which now appear upon CP/M jump errors. AC flag and DAA support have now been added. -V0.9.11: +0.9.11: - DualGB: added support for hex input with commas and 0x. - SI8080: made fixes to terminal output. -V0.9.10: +0.9.10: - SI8080: Added debug log function, fixed PUSH/POP PSW, added jump to 0 check. -V0.9.9: +0.9.9: - SI8080: Remappable controls support added, made MOV instruction fixes, added Space Invaders shift register. -V0.9.8: SI8080: Added interrupt and Input support to SI8080, Space Invaders now boots. +0.9.8: SI8080: Added interrupt and Input support to SI8080, Space Invaders now boots. -V0.9.7: Some SI8080 framework updates. +0.9.7: Some SI8080 framework updates. -V0.9.6: +0.9.6: - WAVE-8: Added clipping support and a new VIP compatibility mode that adds the VF Reset and VBlank quirks. - SI8080: Started work on DAA and interrupts. -V0.9.5: Removed SFE++. Made SI8080 now use the font renderer from DualGB instead, added some debug info, and fixed some issues. +0.9.5: Removed SFE++. Made SI8080 now use the font renderer from DualGB instead, added some debug info, and fixed some issues. -V0.9.4: +0.9.4: - WAVE-8: Added partial screen refreshes, Replaced the Legacy renderer with a faster single-pass version of the scanline renderer called "Classic". -V0.9.3: Fixed DualGB not displaying game titles correctly, added @-Rex-'s SFE++ for CP/M Terminal +0.9.3: Fixed DualGB not displaying game titles correctly, added @-Rex-'s SFE++ for CP/M Terminal - WAVE-8: Rotate ops fixed - DualGB: Updated table generation to include binary table - SI8080: Added CP/M call support, added every remaining op except IN, OUT, and DAA -V0.9.2: Added DAD ops, updated size warning +0.9.2: Added DAD ops, updated size warning -V0.9.1: Added a size limit warning to the ROM importer +0.9.1: Added a size limit warning to the ROM importer - SI8080: tons of ops added, added option for split and combined roms, added option to point where the rom should be placed in memory -V0.9: +0.9: - General: Regen bitwise tables only upon initial project start, added control remapping options for GB, NES, and CHIP-8, moved randomized theme function to “Import Theme” (now triggered by typing "random"), added 640x480 support, added increased color options for themes, removed Goddess A. - WAVE-8: use lookup tables for bitwise operations, fixed fx0a, fixed sprite transparencies in MegaChip, changed default palette to greyscale instead of CGA0, removed PC display, prevent Megachip mode from being untoggled, fixed audio not playing when buffer is not updated, and fixed VF flag in shifts being set based on VX instead of VY in VIP shift mode. - DualGB: Audio quality improvements, RLE counter removed. @@ -62,33 +80,33 @@ V0.9: **V0.8.X:** -V0.8.7: Fix LY=LYC check in DualGB +0.8.7: Fix LY=LYC check in DualGB -V0.8.6: Add row 256 wrapping behavior to MegaChip +0.8.6: Add row 256 wrapping behavior to MegaChip -V0.8.5: MegaChip: Fix 256-dimension sprites not rendering, fix transparencies and collisions, add 09NN +0.8.5: MegaChip: Fix 256-dimension sprites not rendering, fix transparencies and collisions, add 09NN -V0.8.4: Add mostly functional MegaChip support (No audio, transparencies, or sprite blending) +0.8.4: Add mostly functional MegaChip support (No audio, transparencies, or sprite blending) -V0.8.3: Have VF be set after shifting in 8XY6 & 8XYE instead of before; fixes Danm8ku +0.8.3: Have VF be set after shifting in 8XY6 & 8XYE instead of before; fixes Danm8ku -V0.8.2: Fixed an issue where the HPS flag wasn't reset upon resetting Wave-8 +0.8.2: Fixed an issue where the HPS flag wasn't reset upon resetting Wave-8 -V0.8: Implemented a new rom importer system. Updated DualGB to the latest build. Updated CoolNES to 2.4. Added CLS V-blank behavior to WAVE-8's MegaChip mode. +0.8: Implemented a new rom importer system. Updated DualGB to the latest build. Updated CoolNES to 2.4. Added CLS V-blank behavior to WAVE-8's MegaChip mode. **V0.7.X:** -V0.7.9: Fixed a variety of audio issues with Chip-8 that caused audio to not play in any CHIP-8/SCHIP games, and also added debug info to the pause menu. +0.7.9: Fixed a variety of audio issues with Chip-8 that caused audio to not play in any CHIP-8/SCHIP games, and also added debug info to the pause menu. -V0.7.8: Add very early Mega-Chip support. +0.7.8: Add very early Mega-Chip support. -V0.7.7: Fix hi-res CHIP8 games taking forever to load. +0.7.7: Fix hi-res CHIP8 games taking forever to load. -V0.7.6: Add Boot-128 support, Fix bitshifts not setting VF correctly in CHIP-8 +0.7.6: Add Boot-128 support, Fix bitshifts not setting VF correctly in CHIP-8 -V0.7.5: Update DualGB to Early GBC build. +0.7.5: Update DualGB to Early GBC build. 0.7.4: Major GUI overhaul, add BBC micro:bit integration. CHIP8: Change 00F0 to 00E1. Goddess A: Minor updates to CPU structure. GBA: ROM importer fixed. diff --git a/SI8080.txt b/SI8080.txt index a92715f..5888266 100644 --- a/SI8080.txt +++ b/SI8080.txt @@ -1,56 +1,83 @@ //----- Variables ----------------------------------------------------------------------------------------------------- -8080.cycles = 2007 +8080.cycles = 16683 8080.RAM mirror = 65536 -8080.readreturn = 0 +8080.readreturn = 0x02 8080.shift register offset = 0 +FPS = 333.34631771755 +i = 8 //----- Lists --------------------------------------------------------------------------------------------------------- _flags = { + 1 + 1 + 1 0 0 - 1 0 - 1 0 - 1 0 } +//----- Sprite clicked events ----------------------------------------------------------------------------------------- + +WhenThisSpriteClicked() +{ + Sound.Play(13); + If (Costume.GetNumberName(number) == 2) + { + _PC = 0; + 8080.screenrotation = 0; + 8080.mode = 0; + Stop(this script); + } + If (Costume.GetNumberName(number) == 3) + { + _PC = 256; + 8080.mode = 1; + Stop(this script); + } + Sensing.Ask("Where should the ROM be loaded in memory?"); + _PC = Sensing.Answer(); + Sensing.Ask("How should the screen be oriented? (0=Vertical, 1=Horizontal)"); + 8080.screenrotation = (Sensing.Answer() % 2); + Sensing.Ask("What mode should be used? (0=Space Invaders, 1=CP/M HLE)"); + 8080.mode = (Sensing.Answer() % 2); +} + + //----- Broadcast received events ------------------------------------------------------------------------------------- WhenBroadcastReceived(8080) { Call initialize; - Looks.Say(""); - Forever - { - Call Step CPU(16666); - Call Interrupt(1); - Call Step CPU(16666); - Call Interrupt(2); - If (8080.mode == 0) - { - Call render.sideways; - } - } +} + +WhenBroadcastReceived(clonekiller) +{ + Looks.Hide(); + Control.DeleteThisClone(); } WhenBroadcastReceived(exit emulator) { Stop(other scripts in sprite); + Looks.Hide(); + Looks.SetSizeTo(100); Variable.Hide(_PC); List.Hide(_registers); Variable.Hide(8080.cycles); List.Hide(_memory); Variable.Hide(_SP); Variable.Hide(8080.InterruptFlag); + Variable.Hide(FPS); List.DeleteAll(logzz); List.Hide(_flags); List.Hide(logzz); + Control.DeleteThisClone(); } WhenBroadcastReceived(Project not saving fix) @@ -59,8 +86,114 @@ WhenBroadcastReceived(Project not saving fix) } +//----- Start as clone ------------------------------------------------------------------------------------------------ + +Control.WhenIStartAsClone() +{ + Forever + { + If Sensing.TouchingObject(_mouse_) + { + If (Costume.GetNumberName(number) == 2) + { + Looks.Say("Starting Address = 0x0, Mode = 0 (screen)"); + } + If (Costume.GetNumberName(number) == 3) + { + Looks.Say("Starting Address = 0x100, Mode = 1 (terminal)"); + } + } + Else + { + Looks.SetSizeTo(100); + Looks.Say(""); + } + } +} + + //----- Custom blocks ------------------------------------------------------------------------------------------------- +Define 8080.boot (warp=false) +{ + 8080.cycles = _PC; + _SP = 356; + 8080.InterruptFlag = 0; + 8080.lastout = 420; + List.DeleteAll(_registers); + Repeat (9) + { + List.Add(_registers, 0); + } + List.DeleteAll(_flags); + Repeat (8) + { + List.Add(_flags, 0); + } + List.ReplaceItem(_flags, 2, 1); + List.DeleteAll(_memory); + Repeat (65536) + { + List.Add(_memory, 0); + } + List.DeleteAll(_memorydirtyaddresses); + List.DeleteAll(_memorydirtyflags); + List.DeleteAll(_memorylastdrawndisplay); + Repeat (7168) + { + List.Add(_memorydirtyflags, 0); + List.Add(_memorylastdrawndisplay, -1); + } + 8080.RAM mirror = 65536; + List.DeleteAll(_colours); + List.Add(_colours, "0x00000000"); + List.Add(_colours, "0xFFFFFF"); + List.Add(_colours, "0xFF0000"); + List.Add(_colours, "0x00FF00"); + If (8080.mode == 1) + { + List.ReplaceItem(_memory, 8, "0xC9"); + } + 8080.shift register offset = 0; + control_clear_counter ?? - probably legacy function from Scratch 2.0; + Repeat ((List.Length(_rom) + )) + { + List.ReplaceItem(_memory, (8080.cycles + 1), _rom[(control_get_counter ?? - probably legacy function from Scratch 2.0 + 1)]); + 8080.cycles += 1; + control_incr_counter ?? - probably legacy function from Scratch 2.0; + } + List.DeleteAll(logzz); + Variable.Show(FPS); + Looks.SwitchBackdropTo(Black); + Looks.Say(""); + Sound.StopAllSounds(); + Forever + { + Call 8080.frame; + } +} + +Define 8080.frame (warp=true) +{ + frame = Sensing.DaysSince2000(); + Call Step CPU(16667); + Call Interrupt(1); + Call Step CPU(16667); + Call Interrupt(2); + If (8080.mode == 0) + { + If (8080.screenrotation == 0) + { + Call render.vertical; + } + Else + { + Call render.horizontal; + } + } + FPS = (1 / ((Sensing.DaysSince2000() - frame) * 86400)); +} + Define ADC(string register) (warp=true) { If (-1 < register) @@ -83,11 +216,11 @@ Define ADC(string register) (warp=true) 8080.cycles += 7; } r.1 = (_registers[8] + (8080.readreturn + _flags[1])); - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, (((_registers[8] % 16) + ((8080.readreturn + _flags[1]) % 16)) > 15)); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + List.ReplaceItem(_flags, 1, Operator.Round((r.1 > 255))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round((((_registers[8] % 16) + ((8080.readreturn + _flags[1]) % 16)) > 15))); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); List.ReplaceItem(_registers, 8, (r.1 % 256)); } @@ -113,11 +246,11 @@ Define ADD(string register) (warp=true) 8080.cycles += 7; } r.1 = (_registers[8] + 8080.readreturn); - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, ((((_registers[8] % 16) + (8080.readreturn % 16)) > 15) + )); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + List.ReplaceItem(_flags, 1, Operator.Round((r.1 > 255))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round((((8080.readreturn % 16) + (_registers[8] % 16)) > 15))); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); List.ReplaceItem(_registers, 8, (r.1 % 256)); } @@ -144,10 +277,10 @@ Define ANA(string register) (warp=true) } r.1 = and_table[(((_registers[8] * 256) + 8080.readreturn) + 1)]; List.ReplaceItem(_flags, 1, 0); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, (((or_table[(((_registers[8] * 256) + 8080.readreturn) + 1)] % 8) > 0) + )); - List.ReplaceItem(_flags, 7, ((r.1 == 0) + )); - List.ReplaceItem(_flags, 8, ((r.1 > 127) + )); + Call parity flag(bin_table[(r.1 + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round(((or_table[(((_registers[8] * 256) + 8080.readreturn) + 1)] % 9) > 0))); + List.ReplaceItem(_flags, 7, Operator.Round((r.1 == 0))); + List.ReplaceItem(_flags, 8, Operator.Round((r.1 > 127))); List.ReplaceItem(_registers, 8, r.1); } @@ -168,7 +301,13 @@ Define CALL(bool condition) (warp=true) Define CMP(string register) (warp=true) { - If (-1 < register) + If (-1 == register) + { + Call Read byte(_PC)(""); + _PC += 1; + 8080.cycles += 7; + } + Else { If (register == 6) { @@ -181,36 +320,32 @@ Define CMP(string register) (warp=true) 8080.cycles += 4; } } - Else - { - Call Read byte(_PC)(""); - _PC += 1; - 8080.cycles += 7; - } - r.1 = ((_registers[8] - 8080.readreturn) % 65536); - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, ((((_registers[8] % 16) - (8080.readreturn % 16)) < 0) + 0)); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + 8080.readreturn = (256 - 8080.readreturn); + r.1 = (_registers[8] + 8080.readreturn); + List.ReplaceItem(_flags, 1, Operator.Round((256 > r.1))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round((((_registers[8] % 16) + (8080.readreturn % 16)) > 15))); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); } Define DAA (warp=true) { - r.1 = _registers[8]; - If (((r.1 % 16) > 9) Or (_flags[5] == 1)) + r.1 = 0; + If (((_registers[8] % 16) > 9) Or (_flags[5] == 1)) { - r.1 = ((r.1 + 6) % 256); + r.1 += 6; } - List.ReplaceItem(_flags, 5, (((_registers[8] % 16) > 9) + )); - If ((floor((r.1 / 16)) > 9) Or (_flags[1] == 1)) + List.ReplaceItem(_flags, 5, Operator.Round(((_registers[8] % 16) > 9))); + If (((floor((_registers[8] / 16)) > 9) Or (_flags[1] == 1)) Or ((floor((_registers[8] / 16)) > 8) And ((_registers[8] % 16) > 9))) { - r.1 = (r.1 + 6); + r.1 += 96; } - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + r.1 += _registers[8]; + List.ReplaceItem(_flags, 1, Operator.Round((r.1 > 255))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); List.ReplaceItem(_registers, 8, (r.1 % 256)); 8080.cycles += 4; } @@ -218,17 +353,17 @@ Define DAA (warp=true) Define DAD(string regpair) (warp=true) { r.1 = (((_registers[regpair] * 256) + _registers[(regpair + 1)]) + ((_registers[5] * 256) + _registers[6])); - List.ReplaceItem(_flags, 1, ((r.1 > 65535) + )); + List.ReplaceItem(_flags, 1, Operator.Round((r.1 > 65535))); List.ReplaceItem(_registers, 5, floor(((r.1 % 65536) / 256))); - List.ReplaceItem(_registers, 6, ((r.1 % 65536) % 256)); + List.ReplaceItem(_registers, 6, (r.1 % 256)); 8080.cycles += 10; } Define DAD SP (warp=true) { - r.1 = ((_SP + ((_registers[5] * 256) + _registers[6])) % 65536); - List.ReplaceItem(_flags, 1, ((r.1 > 65535) + )); - List.ReplaceItem(_registers, 5, floor((r.1 / 256))); + r.1 = (_SP + ((_registers[5] * 256) + _registers[6])); + List.ReplaceItem(_flags, 1, Operator.Round((r.1 > 65535))); + List.ReplaceItem(_registers, 5, floor(((r.1 % 65536) / 256))); List.ReplaceItem(_registers, 6, (r.1 % 256)); 8080.cycles += 10; } @@ -242,61 +377,28 @@ Define IN (warp=true) 8080.cycles += 10; } -Define initialize (warp=true) +Define initialize (warp=false) { Pen.Clear(); Pen.Clear(); - _SP = 61440; - 8080.InterruptFlag = 0; Pen.SetPenSizeTo(1); - List.DeleteAll(_registers); - Repeat (9) - { - List.Add(_registers, 0); - } - List.DeleteAll(_flags); - Repeat (8) - { - List.Add(_flags, 0); - } - List.ReplaceItem(_flags, 2, 1); - List.DeleteAll(_memory); - Repeat (65536) - { - List.Add(_memory, 0); - } - List.DeleteAll(_colours); - List.Add(_colours, 0); - Sensing.Ask("Where should the ROM be loaded in memory?"); - 8080.cycles = Sensing.Answer(); - _PC = Sensing.Answer(); - Sensing.Ask("What mode should be used? (0=Space Invaders, 1=CP/M HLE)"); - 8080.mode = Operator.Round(Sensing.Answer()); - If (8080.mode == 0) - { - 8080.RAM mirror = "0x4000"; - } - Else - { - 8080.RAM mirror = 65536; - List.ReplaceItem(_memory, 8, "0xC9"); - } - 8080.shift register offset = 0; - control_clear_counter ?? - probably legacy function from Scratch 2.0; - Repeat ((List.Length(_rom) + )) - { - List.ReplaceItem(_memory, (8080.cycles + 1), _rom[(control_get_counter ?? - probably legacy function from Scratch 2.0 + 1)]); - 8080.cycles += 1; - control_incr_counter ?? - probably legacy function from Scratch 2.0; - } - 8080.cycles = 0; - Variable.Show(_PC); - List.Show(_registers); - Variable.Show(_SP); - Variable.Show(8080.InterruptFlag); - List.Show(_memory); - List.Show(_flags); - List.DeleteAll(logzz); + 8080.mode = 99; + Looks.SwitchCostumeTo(SI); + List.DeleteAll(8080.Terminal); + Looks.Show(); + Motion.GoToXY(-141, 64); + Repeat (2) + { + Control.CreateCloneOf(_myself_); + Looks.NextCostume(); + Motion.ChangeYBy(-50); + } + Looks.SwitchCostumeTo(Manual); + Event.BroadcastAndWait("un-needed broadcast"); + Wait Until (8080.mode < 99); + Stop(other scripts in sprite); + Event.BroadcastAndWait("clonekiller"); + Call 8080.boot; } Define INR/DCR(string register)(string amount) (warp=true) @@ -312,17 +414,17 @@ Define INR/DCR(string register)(string amount) (warp=true) 8080.cycles += 5; } r.1 = ((8080.readreturn + amount) % 65536); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); + Call parity flag(bin_table[((r.1 % 256) + 1)]); If (amount == -1) { - List.ReplaceItem(_flags, 5, ((Not ((((8080.readreturn - 1) % 16) == 15))) + 0)); + List.ReplaceItem(_flags, 5, Operator.Round((Not ((((8080.readreturn - 1) % 16) == 15))))); } Else { - List.ReplaceItem(_flags, 5, (((r.1 % 16) == 0) + 0)); + List.ReplaceItem(_flags, 5, Operator.Round(((r.1 % 16) == 0))); } - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); If (register == 6) { Call Write byte(((_registers[5] * 256) + _registers[6]))((r.1 % 256)); @@ -335,9 +437,13 @@ Define INR/DCR(string register)(string amount) (warp=true) Define Interrupt(string interrupt #) (warp=true) { - If (8080.InterruptFlag == 1) + If (8080.mode == 0) { - Call RST(interrupt #); + If (8080.InterruptFlag == 1) + { + Call RST(interrupt #); + } + 8080.InterruptFlag = 0; } } @@ -346,7 +452,7 @@ Define INX/DCX(string regpair)(string amount) (warp=true) r.1 = ((((_registers[regpair] * 256) + _registers[(regpair + 1)]) + amount) % 65536); List.ReplaceItem(_registers, regpair, floor((r.1 / 256))); List.ReplaceItem(_registers, (regpair + 1), (r.1 % 256)); - 8080.cycles += 6; + 8080.cycles += 5; } Define JMP(bool condition) (warp=true) @@ -367,7 +473,7 @@ Define LDA (warp=true) { Call Read byte(_PC)(1); Call Read byte(8080.readreturn)(""); - List.ReplaceItem(_registers, 8, 8080.readreturn); + List.ReplaceItem(_registers, 8, (8080.readreturn % 256)); 8080.cycles += 13; _PC += 2; } @@ -413,19 +519,16 @@ Define MOV(string op) (warp=true) { If ((op % 8) == 6) { - List.Add(logzz, "MOV M to reg"); Call MOV RAM to reg((((floor(((op + 64) / 16)) - 4) * 2) + (((op + 64) % 16) == 14))); } Else { If (floor((op / 8)) == 6) { - List.Add(logzz, "MOV reg to M"); Call MOV reg((op % 8)) to RAM at address in regpair(5); } Else { - List.Add(logzz, "MOV reg to reg"); Call MOV reg((op % 8)) to reg(floor((op / 8))); } } @@ -433,7 +536,6 @@ Define MOV(string op) (warp=true) Define MOV RAM to reg(string register) (warp=true) { - List.Add(logzz, Operator.Join("RAM to reg ", Operator.Join((register + 1), " initiated"))); Call Read byte(((_registers[5] * 256) + _registers[6]))(""); List.ReplaceItem(_registers, (register + 1), 8080.readreturn); 8080.cycles += 7; @@ -453,7 +555,7 @@ Define MOV reg(string origin) to reg(string destination) (warp=true) Define MVI(string register) (warp=true) { - Call Read byte(_PC)(0); + Call Read byte(_PC)(""); If (register == 6) { Call Write byte(((_registers[5] * 256) + _registers[6]))(8080.readreturn); @@ -463,8 +565,8 @@ Define MVI(string register) (warp=true) { List.ReplaceItem(_registers, (register + 1), 8080.readreturn); } - 8080.cycles += 7; _PC += 1; + 8080.cycles += 7; } Define opcode(string op1) (warp=true) @@ -732,7 +834,7 @@ Define opcode(string op1) (warp=true) Call MVI(5); Stop(this script); } - List.ReplaceItem(_registers, 8, xor_table[(65281 + _registers[8])]); + List.ReplaceItem(_registers, 8, (255 - _registers[8])); 8080.cycles += 4; } } @@ -824,7 +926,7 @@ Define opcode(string op1) (warp=true) } } } - List.ReplaceItem(_flags, 1, ((_flags[1] == 0) + )); + List.ReplaceItem(_flags, 1, Operator.Round((_flags[1] == 0))); 8080.cycles += 4; Stop(this script); } @@ -1273,9 +1375,9 @@ Define ORA(string register) (warp=true) r.1 = or_table[(((_registers[8] * 256) + 8080.readreturn) + 1)]; List.ReplaceItem(_flags, 1, 0); List.ReplaceItem(_flags, 5, 0); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 7, ((r.1 == 0) + )); - List.ReplaceItem(_flags, 8, ((r.1 > 127) + )); + Call parity flag(bin_table[(r.1 + 1)]); + List.ReplaceItem(_flags, 7, Operator.Round((r.1 == 0))); + List.ReplaceItem(_flags, 8, Operator.Round((r.1 > 127))); List.ReplaceItem(_registers, 8, r.1); } @@ -1298,30 +1400,81 @@ Define Output to device #(string device) (warp=true) } If (device == 3) { + If (Not (((_registers[8] % 16) == 8080.lastout))) + { + 8080.lastout = (_registers[8] % 16); + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 5) == 1) + { + Sound.Play(3); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 6) == 1) + { + Sound.Play(2); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 7) == 1) + { + Sound.Play(1); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 8) == 1) + { + Sound.Play(0); + } + } Stop(this script); } If (device == 4) { - List.ReplaceItem(_registers, 9, ((_registers[8] * 256) + (floor((_registers[9] / 256)) % 256))); + List.ReplaceItem(_registers, 9, ((_registers[8] * 256) + floor((_registers[9] / 256)))); Stop(this script); } If (device == 5) { + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 8) == 1) + { + Sound.Play(4); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 7) == 1) + { + Sound.Play(5); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 6) == 1) + { + Sound.Play(6); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 5) == 1) + { + Sound.Play(7); + } + If (Operator.LetterOf(bin_table[(_registers[8] + 1)], 4) == 1) + { + Sound.Play(8); + } Stop(this script); } If (device == 6) { Stop(this script); } - Looks.Say(Operator.Join("Invalid OUT device ID # ", device)); - Wait Until Sensing.MouseDown(); - Stop(all); } + List.Show(logzz); + Stop(all); +} + +Define parity flag(string binary) (warp=true) +{ + r.7 = 0; + control_clear_counter ?? - probably legacy function from Scratch 2.0; + Repeat (8) + { + control_incr_counter ?? - probably legacy function from Scratch 2.0; + r.7 += Operator.LetterOf(binary, control_get_counter ?? - probably legacy function from Scratch 2.0); + } + List.ReplaceItem(_flags, 3, (((r.7 % 2) + 1) % 2)); } Define PCHL (warp=true) { - _PC = (((_registers[5] * 256) + _registers[6]) + 1); + _PC = ((_registers[5] * 256) + _registers[6]); 8080.cycles += 5; } @@ -1337,41 +1490,55 @@ Define POP(string register) (warp=true) Define POP PSW (warp=true) { - _SP += 2; - Call Read byte((_SP - 1))(""); + Call Read byte((_SP + 1))(""); List.ReplaceItem(_registers, 8, 8080.readreturn); - Call Read byte((_SP - 2))(""); + Call Read byte(_SP)(""); + _SP += 2; control_clear_counter ?? - probably legacy function from Scratch 2.0; Repeat (8) { control_incr_counter ?? - probably legacy function from Scratch 2.0; - List.ReplaceItem(_flags, control_get_counter ?? - probably legacy function from Scratch 2.0, Operator.LetterOf(bin_table[(8080.readreturn + 1)], control_get_counter ?? - probably legacy function from Scratch 2.0)); + List.ReplaceItem(_flags, (9 - control_get_counter ?? - probably legacy function from Scratch 2.0), Operator.LetterOf(bin_table[(8080.readreturn + 1)], control_get_counter ?? - probably legacy function from Scratch 2.0)); } + List.ReplaceItem(_flags, 2, 1); + List.ReplaceItem(_flags, 4, 0); + List.ReplaceItem(_flags, 6, 0); 8080.cycles += 10; } Define PUSH(string register) (warp=true) { - Call Write byte((_SP - 1))(_registers[register]); - Call Write byte((_SP - 2))(_registers[(register + 1)]); _SP += -2; + Call Write byte(_SP)(_registers[(register + 1)]); + Call Write byte((_SP + 1))(_registers[register]); 8080.cycles += 11; } Define PUSH PSW (warp=true) { - Call Write byte((_SP - 1))(_registers[8]); - Call Write byte((_SP - 2))((Operator.Join("0b", _flags) + )); _SP += -2; + Call Write byte((_SP + 1))(_registers[8]); + Call Write byte(_SP)(Operator.Round(Operator.Join("0b", Operator.Join(Operator.Join(Operator.Join(_flags[8], _flags[7]), Operator.Join(0, _flags[5])), Operator.Join(Operator.Join(0, _flags[3]), Operator.Join(1, _flags[1])))))); 8080.cycles += 11; } Define Read byte(string address)(string extrabytes) (warp=true) { - 8080.readreturn = _memory[((address % 8080.RAM mirror) + 1)]; - If (1 == extrabytes) + If ((16383 < address) And (8080.mode == 0)) + { + 8080.readreturn = _memory[(address - 8191)]; + If (1 == extrabytes) + { + 8080.readreturn += (_memory[(address - 8190)] * 256); + } + } + Else { - 8080.readreturn += (_memory[((address % 8080.RAM mirror) + 2)] * 256); + 8080.readreturn = _memory[((address % 65536) + 1)]; + If (1 == extrabytes) + { + 8080.readreturn += (_memory[((address % 65536) + 2)] * 256); + } } } @@ -1379,57 +1546,100 @@ Define Read from device #(string device) (warp=true) { If (8080.mode == 0) { + If (device == 0) + { + 8080.readreturn = 112; + Stop(this script); + } If (device == 1) { - 8080.readreturn = (Operator.Join("0b", Operator.Join(Operator.Join(Operator.Join(0, (Sensing.KeyPressed(controls.SI8080[2]) + )), Operator.Join((Sensing.KeyPressed(controls.SI8080[3]) + ), 0)), Operator.Join(Operator.Join((Sensing.KeyPressed(controls.SI8080[4]) + ), (Sensing.KeyPressed(controls.SI8080[5]) + )), Operator.Join((Sensing.KeyPressed(controls.SI8080[6]) + ), 0)))) + ); + 8080.readreturn = Operator.Round(Operator.Join("0b0", Operator.Join(Operator.Join(Operator.Round(Sensing.KeyPressed(controls.SI8080[6])), Operator.Join(Operator.Round(Sensing.KeyPressed(controls.SI8080[5])), Operator.Round(Sensing.KeyPressed(controls.SI8080[4])))), Operator.Join(Operator.Join(0, Operator.Round(Sensing.KeyPressed(controls.SI8080[3]))), Operator.Join(Operator.Round(Sensing.KeyPressed(controls.SI8080[2])), Operator.Round(Sensing.KeyPressed(controls.SI8080[1]))))))); Stop(this script); } If (device == 2) { - 8080.readreturn = (Operator.Join("0b", Operator.Join(Operator.Join(Operator.Join(1, 1), Operator.Join(0, 1)), Operator.Join(Operator.Join((Sensing.KeyPressed(controls.SI8080[7]) + ), (Sensing.KeyPressed(controls.SI8080[8]) + )), Operator.Join((Sensing.KeyPressed(controls.SI8080[9]) + ), ((Not (Sensing.KeyPressed(controls.SI8080[1]))) + ))))) + ); + 8080.readreturn = Operator.Round(Operator.Join("0b0", Operator.Join(Operator.Join(Operator.Join(Operator.Round(Sensing.KeyPressed(controls.SI8080[9])), Operator.Round(Sensing.KeyPressed(controls.SI8080[8]))), Operator.Round(Sensing.KeyPressed(controls.SI8080[7]))), 0000))); Stop(this script); } If (device == 3) { - 8080.readreturn = (floor((_registers[9] / floor(10 ^((log(2) * 8080.shift register offset))))) % 256); + List.Add(logzz, Operator.Join("IN device ID # ", device)); + 8080.readreturn = floor((((_registers[9] * e ^((ln(2) * 8080.shift register offset))) % 65536) / 256)); Stop(this script); } - Looks.Say(Operator.Join("Invalid IN device ID # ", device)); - Wait Until Sensing.MouseDown(); - Stop(all); } + List.Add(logzz, Operator.Join("Invalid IN device ID # ", device)); + List.Show(logzz); + Stop(all); } -Define render.sideways (warp=true) +Define render.horizontal (warp=true) { - Motion.SetX(-130); - r.0 = 9216; - Repeat (224) + Repeat (List.Length(_memorydirtyaddresses)) { - List.DeleteAll(_scanline); - Repeat (32) + r.0 = _memorydirtyaddresses[last]; + List.DeleteItem(_memorydirtyaddresses, last); + List.ReplaceItem(_memorydirtyflags, (r.0 + 1), 0); + r.1 = _memory[(r.0 + 9217)]; + If (Not ((r.1 == _memorylastdrawndisplay[(r.0 + 1)]))) { - r.0 += 1; - r.2 = bin_table[(_memory[r.0] + 1)]; - control_clear_counter ?? - probably legacy function from Scratch 2.0; - Repeat (8) - { - control_incr_counter ?? - probably legacy function from Scratch 2.0; - List.Add(_scanline, Operator.LetterOf(r.2, control_get_counter ?? - probably legacy function from Scratch 2.0)); - } + List.ReplaceItem(_memorylastdrawndisplay, (r.0 + 1), r.1); + Motion.GoToXY((((r.0 % 32) * 8) - 130), (100 - floor((r.0 / 32)))); + r.2 = bin_table[(r.1 + 1)]; + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 8) + 1)]); + Pen.Down(); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 7) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 6) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 5) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 4) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 3) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 2) + 1)]); + Motion.ChangeXBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 1) + 1)]); + Motion.ChangeXBy(1); + Pen.Clear(); } - Motion.SetY(-150); - r.2 = 1; - Pen.SetPenColorToColor(_colours[(_scanline[r.2] + 1)]); - Pen.Down(); - Repeat (256) + } +} + +Define render.vertical (warp=true) +{ + Repeat (List.Length(_memorydirtyaddresses)) + { + r.0 = _memorydirtyaddresses[last]; + List.DeleteItem(_memorydirtyaddresses, last); + List.ReplaceItem(_memorydirtyflags, (r.0 + 1), 0); + r.1 = _memory[(r.0 + 9217)]; + If (Not ((r.1 == _memorylastdrawndisplay[(r.0 + 1)]))) { - r.2 += 1; + List.ReplaceItem(_memorylastdrawndisplay, (r.0 + 1), r.1); + Motion.GoToXY((floor((r.0 / 32)) - 130), (((r.0 % 32) * 8) - 150)); + r.2 = bin_table[(r.1 + 1)]; + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 8) + 1)]); + Pen.Down(); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 7) + 1)]); Motion.ChangeYBy(1); - Pen.SetPenColorToColor(_colours[(_scanline[r.2] + 1)]); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 6) + 1)]); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 5) + 1)]); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 4) + 1)]); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 3) + 1)]); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 2) + 1)]); + Motion.ChangeYBy(1); + Pen.SetPenColorToColor(_colours[(Operator.LetterOf(r.2, 1) + 1)]); + Pen.Down(); + Pen.Clear(); } - Pen.Clear(); - Motion.ChangeXBy(1); } } @@ -1462,7 +1672,7 @@ Define RLC/RAL(bool using carry) (warp=true) } } } - List.ReplaceItem(_flags, 1, ( + (_registers[8] > 127))); + List.ReplaceItem(_flags, 1, Operator.Round((_registers[8] > 127))); List.ReplaceItem(_registers, 8, (r.0 % 256)); 8080.cycles += 4; } @@ -1472,7 +1682,7 @@ Define RRC/RAR(bool using carry) (warp=true) r.0 = ((floor((_registers[8] / 2)) + ((_registers[8] % 2) * 128)) % 256); If using carry { - If (Not ((((r.0 > 127) + ) == _flags[1]))) + If (Not (((r.0 > 127) == _flags[1]))) { If (r.0 > 127) { @@ -1491,10 +1701,10 @@ Define RRC/RAR(bool using carry) (warp=true) Define RST(string address) (warp=true) { - _PC = (address * 8); _SP += -2; Call Write byte(_SP)((_PC % 256)); Call Write byte((_SP + 1))(floor((_PC / 256))); + _PC = (address * 8); 8080.cycles += 11; } @@ -1519,15 +1729,21 @@ Define SBB(string register) (warp=true) _PC += 1; 8080.cycles += 7; } - r.1 = ((_registers[8] - (8080.readreturn + _flags[1])) % 65536); - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, ((((_registers[8] % 16) - ((8080.readreturn + _flags[1]) % 16)) < 0) + 0)); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + r.1 = (_registers[8] + (256 - (8080.readreturn + _flags[1]))); + List.ReplaceItem(_flags, 1, Operator.Round((256 > r.1))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round((((_registers[8] % 16) + ((256 - (8080.readreturn + _flags[1])) % 16)) > 15))); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); List.ReplaceItem(_registers, 8, (r.1 % 256)); } +Define Set FPS (warp=true) +{ + FPS = (1 / ((Sensing.DaysSince2000() - frame) * 86400)); + frame = Sensing.DaysSince2000(); +} + Define SHLD (warp=true) { Call Read byte(_PC)(1); @@ -1551,11 +1767,11 @@ Define STA (warp=true) _PC += 2; } -Define Step CPU(string cycles) (warp=false) +Define Step CPU(string cycles) (warp=true) { + 8080.cycles = 0; Repeat Until ((8080.cycles == cycles) Or (cycles < 8080.cycles)) { - List.Add(logzz, Operator.Join(_memory[(_PC + 1)], Operator.Join(Operator.Join(" PC: ", _PC), Operator.Join(" Regs: ", _registers)))); Call opcode(_memory[(_PC + 1)]); If (8080.mode == 1) { @@ -1572,7 +1788,6 @@ Define Step CPU(string cycles) (warp=false) } } } - 8080.cycles = 0; } Define SUB(string register) (warp=true) @@ -1596,12 +1811,13 @@ Define SUB(string register) (warp=true) _PC += 1; 8080.cycles += 7; } - r.1 = ((_registers[8] - 8080.readreturn) % 65536); - List.ReplaceItem(_flags, 1, ((r.1 > 255) + )); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 5, ((((_registers[8] % 16) - (8080.readreturn % 16)) < 0) + 0)); - List.ReplaceItem(_flags, 7, (((r.1 % 256) == 0) + )); - List.ReplaceItem(_flags, 8, (((r.1 % 256) > 127) + )); + 8080.readreturn = (256 - 8080.readreturn); + r.1 = (_registers[8] + 8080.readreturn); + List.ReplaceItem(_flags, 1, Operator.Round((256 > r.1))); + Call parity flag(bin_table[((r.1 % 256) + 1)]); + List.ReplaceItem(_flags, 5, Operator.Round((((_registers[8] % 16) + (8080.readreturn % 16)) > 15))); + List.ReplaceItem(_flags, 7, Operator.Round(((r.1 % 256) == 0))); + List.ReplaceItem(_flags, 8, Operator.Round(((r.1 % 256) > 127))); List.ReplaceItem(_registers, 8, (r.1 % 256)); } @@ -1609,14 +1825,22 @@ Define Write byte(string address)(string byte) (warp=true) { If (8080.mode == 0) { - If ((address % 8080.RAM mirror) < "0x2000") + If ((8191 < address) And (address < 16384)) { - List.ReplaceItem(_memory, ((address % 8080.RAM mirror) + 1), byte); + If (address > 9215) + { + If (_memorydirtyflags[(address - 9215)] == 0) + { + List.ReplaceItem(_memorydirtyflags, (address - 9215), 1); + List.Add(_memorydirtyaddresses, (address - 9216)); + } + } + List.ReplaceItem(_memory, (address + 1), byte); } } Else { - List.ReplaceItem(_memory, ((address % 8080.RAM mirror) + 1), byte); + List.ReplaceItem(_memory, (address + 1), byte); } } @@ -1655,9 +1879,9 @@ Define XRA(string register) (warp=true) r.1 = xor_table[(((_registers[8] * 256) + 8080.readreturn) + 1)]; List.ReplaceItem(_flags, 1, 0); List.ReplaceItem(_flags, 5, 0); - List.ReplaceItem(_flags, 3, (((r.1 % 2) + 1) % 2)); - List.ReplaceItem(_flags, 7, ((r.1 == 0) + )); - List.ReplaceItem(_flags, 8, ((r.1 > 127) + )); + Call parity flag(bin_table[(r.1 + 1)]); + List.ReplaceItem(_flags, 7, Operator.Round((r.1 == 0))); + List.ReplaceItem(_flags, 8, Operator.Round((r.1 > 127))); List.ReplaceItem(_registers, 8, r.1); } @@ -1675,14 +1899,24 @@ Define XTHL (warp=true) //----- Orphaned blocks ----------------------------------------------------------------------------------------------- -List.ReplaceItem(_flags, 5, ((((_registers[8] % 16) + (8080.readreturn % 16)) > 15) + )) +r.7 = Operator.Join(Operator.LetterOf("0123456789ABCDEF", ((floor((_PC / 4096)) % 16) + 1)), Operator.Join(Operator.LetterOf("0123456789ABCDEF", ((floor((_PC / 256)) % 16) + 1)), Operator.Join(Operator.LetterOf("0123456789ABCDEF", ((floor((_PC / 16)) % 16) + 1)), Operator.LetterOf("0123456789ABCDEF", ((_PC % 16) + 1))))) + +List.ReplaceItem(_flags, 5, Operator.Round(((((_registers[8] % 16) + (8080.readreturn % 16)) % 17) > 0))) + +Motion.SetY(100) + +Motion.SetX(-130) + +Repeat (60) -Call Step CPU(1) //----- Costumes ------------------------------------------------------------------------------------------------------ -costume1.svg +blank.svg +CPM.svg +Manual.svg +SI.svg //----- Sounds -------------------------------------------------------------------------------------------------------- diff --git a/Sprite1.txt b/Sprite1.txt index 2b30eb4..574c549 100644 --- a/Sprite1.txt +++ b/Sprite1.txt @@ -187,14 +187,6 @@ WhenBroadcastReceived(GUI_Emulator_Select) Event.Broadcast("emulate!!"); } If (MenuScroll == -800) - { - Event.Broadcast("Launch Emulator"); - Sound.Play((2 + (2 * Menu Theme[7]))); - Event.BroadcastAndWait("Launch EmulatorWaitd"); - Looks.SwitchBackdropTo(Black); - Event.Broadcast("Game Boy Advance"); - } - If (MenuScroll == -1000) { Event.Broadcast("Launch Emulator"); Sound.Play((2 + (2 * Menu Theme[7]))); @@ -202,17 +194,18 @@ WhenBroadcastReceived(GUI_Emulator_Select) Looks.SwitchBackdropTo(screen); Event.Broadcast("start game"); } - If (MenuScroll == -1200) + If (MenuScroll == -1000) { Event.Broadcast("Launch Emulator"); Sound.Play((2 + (2 * Menu Theme[7]))); Event.BroadcastAndWait("Launch EmulatorWaitd"); Looks.SwitchBackdropTo(NES); - coolnes_convert = 1; Event.BroadcastAndWait("init"); + Event.BroadcastAndWait("un-needed broadcast"); Event.Broadcast("unpause"); + coolnes_convert = 1; } - If (MenuScroll == -1400) + If (MenuScroll == -1200) { Event.Broadcast("Launch Emulator"); Sound.Play((2 + (2 * Menu Theme[7]))); @@ -220,7 +213,7 @@ WhenBroadcastReceived(GUI_Emulator_Select) Looks.SwitchBackdropTo(BytePusher); Event.Broadcast("BytePusher"); } - If (MenuScroll == -1600) + If (MenuScroll == -1400) { Event.Broadcast("Launch Emulator"); Sound.Play((2 + (2 * Menu Theme[7]))); @@ -228,7 +221,7 @@ WhenBroadcastReceived(GUI_Emulator_Select) Looks.SwitchBackdropTo(HelloWorld); Event.Broadcast("HelloInter"); } - If (MenuScroll == -1800) + If (MenuScroll == -1600) { Event.Broadcast("Launch Emulator"); Sound.Play((2 + (2 * Menu Theme[7]))); diff --git a/Sprite2.txt b/Sprite2.txt index 797f4f3..37c07da 100644 --- a/Sprite2.txt +++ b/Sprite2.txt @@ -1,10 +1,21 @@ //----- Variables ----------------------------------------------------------------------------------------------------- +arm7.pc = 0 +arm7.read_return = 0 +arm9.pc = 0 +arm9.read_return = 0 +bg_mode = 0 c8.Load/Save_Quirk = 0 c8.Shift_quirk = 0 +c8.Wrap_mode = 0 c8scrnsize = 0 +calc.char = 0 +calc.return = 0 +calc.temp = 0 +calc.temp2 = 0 chip8.audio toggle = 0 chip8.audio_buffer = 0 +chip8.blendmode = 0 chip8.delay_timer = 0 chip8.drawflag = 0 chip8.drawmode = 0 @@ -15,6 +26,7 @@ chip8.dummy2 = 0 chip8.dummy3 = 0 chip8.dummy4 = 0 chip8.dummy5 = 0 +chip8.fx0aflag = 0 chip8.HPSFlag = 0 chip8.I = 0 chip8.pc = 0 @@ -26,8 +38,31 @@ chip8.screenwidth = 0 chip8.sound_timer = 0 chip8.spritewidth = 0 chip8m.collisioncolor = 0 +core.byte_return = 0 +core.condition_test = 0 +core.dummy = 0 +core.dummy2 = 0 +core.dummy_op = 0 +core.instruction_format = 0 +core.little_endian = 0 +core.op.dummy = 0 +core.op.dummy2 = 0 +core.read_return = 0 +core.rotate_return = 0 +core.shift_return = 0 CPF = 0 +flags.met = 0 +op.opcode = 0 +op.pos = 0 +op.temp = 0 +program.done = 0 +read.return = 0 +read.single.return = 0 +scanX = 0 +scanY = 0 SF2091! fix = 0 +storage.byte = 0 +tile_mode = 0 VIP jumps = 0 _id = 0 _pitch = 0 @@ -35,6 +70,9 @@ _pitch = 0 //----- Lists --------------------------------------------------------------------------------------------------------- +arm7.registers = { } +arm9.flags = { } +arm9.registers = { } Boot-128 = { } chip8.keyboard = { } chip8.memory = { } @@ -57,9 +95,9 @@ WhenThisSpriteClicked() } If ((MenuScroll > 200) Or (Not (((MenuScroll % 100) == 0)))) { - MenuScroll = -1800; + MenuScroll = -1600; } - If ((-1800 > MenuScroll) Or (Not (((MenuScroll % 100) == 0)))) + If ((-1600 > MenuScroll) Or (Not (((MenuScroll % 100) == 0)))) { MenuScroll = 200; } diff --git a/Sprite3.txt b/Sprite3.txt index 6d0f5ec..3fa0860 100644 --- a/Sprite3.txt +++ b/Sprite3.txt @@ -7,19 +7,11 @@ _pitch = 0 //----- Broadcast received events ------------------------------------------------------------------------------------- -WhenBroadcastReceived(Chip-8) -{ - Control.DeleteThisClone(); -} - WhenBroadcastReceived(exit emulator) { Stop(other scripts in sprite); Motion.GoToXY(0, 0); - Looks.Show(); - Looks.SetEffectTo(GHOST, 100); - Looks.SetSizeTo(100); - Looks.SwitchCostumeTo(costume1); + Looks.Hide(); Control.DeleteThisClone(); } @@ -28,6 +20,11 @@ WhenBroadcastReceived(remapwave8) Call Draw Keys starting at(-67)(105) With(4) rows and(4) columns; } +WhenBroadcastReceived(WAVE-8 reset) +{ + Control.DeleteThisClone(); +} + WhenBroadcastReceived(WAVE-8_drawkeys) { Call Draw Keys starting at(-67)(-39) With(4) rows and(4) columns; @@ -43,12 +40,12 @@ Control.WhenIStartAsClone() { If (Sensing.MouseDown() And Sensing.TouchingObject(_mouse_)) { - List.ReplaceItem(Mobile Keypad state, (Costume.GetNumberName(number) - ((Menu Theme[8] * 16) + 1)), 1); + List.ReplaceItem(Mobile Keypad state, (Costume.GetNumberName(number) - (Menu Theme[8] * 16)), 1); Looks.SetEffectTo(BRIGHTNESS, -20); } Else { - List.ReplaceItem(Mobile Keypad state, (Costume.GetNumberName(number) - ((Menu Theme[8] * 16) + 1)), 0); + List.ReplaceItem(Mobile Keypad state, (Costume.GetNumberName(number) - (Menu Theme[8] * 16)), 0); Looks.SetEffectTo(BRIGHTNESS, 0); } } @@ -61,7 +58,7 @@ Define Draw Keys starting at(string Xstart)(string Ystart) With(string rows) row { Looks.Show(); Looks.SetEffectTo(GHOST, (100 - (Menu Theme[8] * 100))); - Looks.SwitchCostumeTo(((Menu Theme[8] * 16) + 1)); + Looks.SwitchCostumeTo((Menu Theme[8] * 16)); Motion.GoToXY(Xstart, Ystart); List.DeleteAll(Mobile Keypad state); Repeat ((rows * columns)) @@ -83,6 +80,13 @@ Define Draw Keys starting at(string Xstart)(string Ystart) With(string rows) row } +//----- Orphaned blocks ----------------------------------------------------------------------------------------------- + +16 + +Looks.Show() + + //----- Costumes ------------------------------------------------------------------------------------------------------ 0.png @@ -114,7 +118,6 @@ Define Draw Keys starting at(string Xstart)(string Ystart) With(string rows) row a.png b.png c.png -costume1.svg d.png e.png f.png diff --git a/Sprite6.txt b/Sprite6.txt index eca70e8..338d387 100644 --- a/Sprite6.txt +++ b/Sprite6.txt @@ -4,11 +4,24 @@ WhenGreenFlagClicked() { Motion.GoToXY(0, 0); Looks.Hide(); + Costume.GoToFrontBack(front); } //----- Broadcast received events ------------------------------------------------------------------------------------- +WhenBroadcastReceived(exit emulator) +{ + If (Theme Switch Flag == 1) + { + Wait Until (Theme Switch Flag == 0); + Looks.Hide(); + } + Motion.GoToXY(0, 0); + Looks.Hide(); + Costume.GoToFrontBack(front); +} + WhenBroadcastReceived(Launch EmulatorWaitd) { Looks.SetEffectTo(GHOST, 100); @@ -18,14 +31,13 @@ WhenBroadcastReceived(Launch EmulatorWaitd) Control.Wait(0); Looks.ChangeEffectBy(GHOST, -10); } - Event.Broadcast("un-needed broadcast"); } WhenBroadcastReceived(un-needed broadcast) { Repeat (10) { - Looks.ChangeEffectBy(GHOST, -10); + Looks.ChangeEffectBy(GHOST, 10); } Looks.Hide(); } diff --git a/Stage.txt b/Stage.txt index 47fe445..693db3c 100644 --- a/Stage.txt +++ b/Stage.txt @@ -1,22 +1,33 @@ //----- Variables ----------------------------------------------------------------------------------------------------- ++globalVol.L = 0.875 ++globalVol.R = 0.875 +,c2 = 0 +,joypad2 = 0 +-LCDC2 = 0 +.GBC?2 = 0 +.IME2 = 0 +.instr2 = 0 +.instrID2 = 0 .RLE segments = 0 8080.InterruptFlag = 0 -8080.mode = 1 -A = 60 -Accumulator = 1 +8080.lastout = 1 +8080.mode = 99 +8080.screenrotation = 0 +A = 120 +Acc🚽 = 8 address = 210 amp = 10 -arm7.cycles = 8 -arm9.cycles = 15 +arm7.cycles = 0 +arm9.cycles = 10 battery = 1 bg_color = #000000 bus.out = chip8.audioflag = 1 chip8.CompatMode = Octo -chip8.spriteheight = 9 +chip8.spriteheight = 1 chip8.starting address = 512 -chip8m.samplerate = 44100 +chip8m.samplerate = 11025 chr_ram = 0 chr_size = 8192 clock.m = 24 @@ -25,25 +36,30 @@ coolnes_convert = 0 coolnes_regenerate = 1 cycles = 0 data = 29 -display.scan_x = 31 -display.scan_y = 158 +DEBUG.TOTALCYCLES = 0 +debugCallsToRender = 0 +deltaTime = 0.016999959945679 +display.scan_x = 0 +display.scan_y = 263 +displayFPS = 60.78980808241 DSmode = 0 Enable APU = 1 -flags.c = 0 -flags.n = 0 -flags.v = 0 -flags.z = 0 -frame = 19 +frame = 8561.0963285532 +framecount = 957 Frameskip = 1 GUItemp = 140 gui_disabled = 0 i2 = 256 +i3 = 0 idle_skip = 0 Inemu? = 0 +INSTRS EXECUTED = 0 IRQ = 0 j2 = -255 -j3 = 1 +j3 = 256 +JIT BLOCKS CREATED = 320241 Load Rom Flag = 0 +logline = 0 mapper = 0 mask = 0 MenuScroll = -400 @@ -53,7 +69,6 @@ offset = 0 options.vertical_screens = 0 PC = 2 pitch = -400 -pixel = 38401 prg_size = 16384 q = 64 quality = 128 @@ -65,24 +80,34 @@ r.4 = 0 r.5 = 0 r.6 = 0 r.7 = 0 -r.8 = -180 +r.8 = 0 r.9 = -1.40625 reg.out = reg.pc = 20 +render2 = 0 render_enabled = 1 rom.designation = -rom.title = ¢E¢?∠P¢ +rom.title = Default Romimportflag = 0 S2 = 43 stage width = 480 +T12 = 0 +T12 = 0 Theme Switch Flag = 0 wram_enabled = 1 wram_size = 8192 +x0 = 740204860.63 _FPS = 21.276594470595 -_HALT = 1 -_PC = 0 +_frameskip2 = 0 +_HALT = 0 +_IF = 0 +_PC = 16 +_RE2 = 0 _ROM = 0 -_SP = 1280 +_S2 = 0 +_SP = 9212 +_T2 = 0 +__ = 84 __SIZE = 0 __XSHIFT = 160 __YSHIFT = 144 @@ -92,156 +117,73 @@ __YSHIFT = 144 *graphicsBuffer = { } +AUDIO ENGINE pan = { + -1 0 0 0 - 0 -} -.HEX = { } -8080.Terminal = { - 0x0A } -AND = { } -and_table = { } -apu = { - 440.3968996063 - 0 ++sound channels active = { 1 - 588.74111842105 - 0 1 - 146.79896653543 - 0 - 447443.25 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 0 + 1 +} ++sound clone duty cycle = { 0 0 0 0 +} ++sound clones active = { + 1 + 1 + 1 + 1 +} ++sound duty cycle = { + 1 + 1 0 0 +} ++sound envelope timer = { 0 0 0 0 +} ++sound length timer = { 0 0 0 0 +} ++sound pitch = { + 1933 + 1990 + 710 + 2048 +} ++sound volume = { 0 0 0 0 +} +.HEX = { } +8080.Terminal = { } +AND = { } +and_table = { } +apu = { + 15980.116071429 0 + 2 + 13982.6015625 0 0 + 146.79896653543 0 + 447443.25 0 0 } @@ -272,10 +214,266 @@ arm9.memory5 = { } arm9.memory6 = { } arm9.rom = { } arm9.standard_palettes = { } -bin_table = { } +bin_table = { + 00000000 + 00000001 + 00000010 + 00000011 + 00000100 + 00000101 + 00000110 + 00000111 + 00001000 + 00001001 + 00001010 + 00001011 + 00001100 + 00001101 + 00001110 + 00001111 + 00010000 + 00010001 + 00010010 + 00010011 + 00010100 + 00010101 + 00010110 + 00010111 + 00011000 + 00011001 + 00011010 + 00011011 + 00011100 + 00011101 + 00011110 + 00011111 + 00100000 + 00100001 + 00100010 + 00100011 + 00100100 + 00100101 + 00100110 + 00100111 + 00101000 + 00101001 + 00101010 + 00101011 + 00101100 + 00101101 + 00101110 + 00101111 + 00110000 + 00110001 + 00110010 + 00110011 + 00110100 + 00110101 + 00110110 + 00110111 + 00111000 + 00111001 + 00111010 + 00111011 + 00111100 + 00111101 + 00111110 + 00111111 + 01000000 + 01000001 + 01000010 + 01000011 + 01000100 + 01000101 + 01000110 + 01000111 + 01001000 + 01001001 + 01001010 + 01001011 + 01001100 + 01001101 + 01001110 + 01001111 + 01010000 + 01010001 + 01010010 + 01010011 + 01010100 + 01010101 + 01010110 + 01010111 + 01011000 + 01011001 + 01011010 + 01011011 + 01011100 + 01011101 + 01011110 + 01011111 + 01100000 + 01100001 + 01100010 + 01100011 + 01100100 + 01100101 + 01100110 + 01100111 + 01101000 + 01101001 + 01101010 + 01101011 + 01101100 + 01101101 + 01101110 + 01101111 + 01110000 + 01110001 + 01110010 + 01110011 + 01110100 + 01110101 + 01110110 + 01110111 + 01111000 + 01111001 + 01111010 + 01111011 + 01111100 + 01111101 + 01111110 + 01111111 + 10000000 + 10000001 + 10000010 + 10000011 + 10000100 + 10000101 + 10000110 + 10000111 + 10001000 + 10001001 + 10001010 + 10001011 + 10001100 + 10001101 + 10001110 + 10001111 + 10010000 + 10010001 + 10010010 + 10010011 + 10010100 + 10010101 + 10010110 + 10010111 + 10011000 + 10011001 + 10011010 + 10011011 + 10011100 + 10011101 + 10011110 + 10011111 + 10100000 + 10100001 + 10100010 + 10100011 + 10100100 + 10100101 + 10100110 + 10100111 + 10101000 + 10101001 + 10101010 + 10101011 + 10101100 + 10101101 + 10101110 + 10101111 + 10110000 + 10110001 + 10110010 + 10110011 + 10110100 + 10110101 + 10110110 + 10110111 + 10111000 + 10111001 + 10111010 + 10111011 + 10111100 + 10111101 + 10111110 + 10111111 + 11000000 + 11000001 + 11000010 + 11000011 + 11000100 + 11000101 + 11000110 + 11000111 + 11001000 + 11001001 + 11001010 + 11001011 + 11001100 + 11001101 + 11001110 + 11001111 + 11010000 + 11010001 + 11010010 + 11010011 + 11010100 + 11010101 + 11010110 + 11010111 + 11011000 + 11011001 + 11011010 + 11011011 + 11011100 + 11011101 + 11011110 + 11011111 + 11100000 + 11100001 + 11100010 + 11100011 + 11100100 + 11100101 + 11100110 + 11100111 + 11101000 + 11101001 + 11101010 + 11101011 + 11101100 + 11101101 + 11101110 + 11101111 + 11110000 + 11110001 + 11110010 + 11110011 + 11110100 + 11110101 + 11110110 + 11110111 + 11111000 + 11111001 + 11111010 + 11111011 + 11111100 + 11111101 + 11111110 + 11111111 +} BIOS = { } buf = { } -CARTRAM = { } chip8.audiobuffer = { } chip8m.PCM = { } chr_rom = { @@ -8497,8 +8695,8 @@ controls.GB = { right arrow enter space - a - s + x + z } controls.NES = { l @@ -8511,8 +8709,8 @@ controls.NES = { d } controls.SI8080 = { - C - Enter + c + enter space w a @@ -8522,15 +8720,17 @@ controls.SI8080 = { right arrow } core.shared_wram = { } +cpu.AND = { } +cpu.OR = { } +cpu.XOR = { } +debug.hex = { } +debug.logfile = { } display.screen = { } -EWRAM = { } flag_names = { } FT.im = { } FT.re = { } gui = { } hex = { } -IORAM = { } -IWRAM = { } joypad buttons = { 0 0 @@ -8541,21 +8741,200 @@ joypad buttons = { 0 0 } +keys = { + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +} logtemp = { } logzz = { } -m = { } -MainHello = { } -Menu Theme = { - 1 - 1 - 2 - 3 +m = { + 39.75 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 59.247188174121 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 32.844566206111 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20.251401948138 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 15.078923857215 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 11.089709463779 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 10.288129848188 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 8.4512806461927 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 7.972609359551 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 7.3204101584593 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 8.1967834067412 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 7.6741727656229 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 6.7824077814507 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 4.9905398654087 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 5.7403481399635 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 6.0298251574475 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 0 0 0 0 -} -Mobile Keypad state = { 0 0 0 @@ -8572,18 +8951,104 @@ Mobile Keypad state = { 0 0 0 -} -nt_map = { 0 0 - 1 - 1 -} -OAM = { } -oam = { } -or_table = { } -PAKROM = { } -Palette = { + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +} +MainHello = { } +Menu Theme = { + 1 + 1 + 2 + 3 + 0 + 0 + 0 + 0 +} +Mobile Keypad state = { + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +} +nt_map = { + 0 + 0 + 1 + 1 +} +oam = { } +or_table = { } +Palette = { 0 0 0 @@ -8618,13 +9083,12 @@ Palette = { 0 0 } -PALRAM = { } pattern = { } pitches = { - 35.623683437704 - 35.623683437704 + 40.581605982162 + 66.159756794049 -1 - 143.6236834377 + 0 } pixel_buffer = { } prg_banks = { @@ -25031,19 +25495,18 @@ temp.0 = { } temp.1 = { } text = { } voice = { - 0 - 0 + 3 + 2 0 0 } vol = { } volume = { - 0 - 0 - 0 - 0 + 1.25 + 1.875 + 1.875 + 1.875 } -VRAM = { } vram.engine_a.bg = { } vram.engine_a.obj = { } vram.engine_b.bg = { } @@ -25052,12 +25515,12 @@ vram.lcdc = { } wave = { } xor_table = { } _colours = { - 0x00000000 + 0x000000 0x00C4FF 0x4072EE 0x00FFFF - 0xFF0000 - 0x00FF00 + 0xF39900 + 0xF39900 0x0000FF 0xFFFF00 0x880000 @@ -25316,21 +25779,78 @@ _DMGCOLORS = { #b9ffa8 } _gametitle = { - 83 - 85 - 80 - 69 - 82 - 32 - 77 - 65 - 82 - 73 - 79 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 } _memory = { } -_pixels = { } -_r = { +_memorydirtyaddresses = { } +_memorydirtyflags = { 0 0 0 @@ -25346,136 +25866,14459 @@ _r = { 0 0 0 - 144926428 -} -_registers = { 0 0 - 0x0C - 0x0A - 0x04 0 0 - 0x0A 0 -} -_rom = { - 0xA3 - 0x42 - 0xF1 - 0x03 - 0xA3 - 0x45 - 0xF2 - 0x03 - 0xA3 - 0x3F - 0xF3 - 0x03 - 0x00 - 0xFF - 0x80 - 0x50 - 0xA3 - 0x0F - 0xF4 - 0x1E - 0xF0 - 0x55 - 0xC0 - 0x3F - 0xA3 - 0x17 - 0xF4 - 0x1E - 0x80 - 0x00 - 0xF0 - 0x55 - 0x80 - 0x60 - 0xA3 - 0x1F - 0xF4 - 0x1E - 0xF0 - 0x55 - 0xC0 - 0x3F - 0xA3 - 0x27 - 0xF4 - 0x1E - 0x80 - 0x00 - 0xF0 - 0x55 - 0xA3 - 0x0C - 0x74 - 0x01 - 0xC9 - 0x08 - 0x85 - 0x94 - 0x75 - 0x03 - 0xC9 - 0x08 - 0x86 - 0x94 - 0x76 - 0x04 - 0x6F - 0x08 - 0x8F - 0x47 - 0x4F - 0x00 - 0x12 - 0x0E - 0xF1 - 0x01 - 0x6A - 0x00 - 0xF2 - 0x01 - 0xA3 - 0x0F - 0xFA - 0x1E - 0xF0 - 0x65 - 0x87 - 0x00 - 0xA3 - 0x17 - 0xFA - 0x1E - 0xF0 - 0x65 - 0x88 - 0x00 - 0x87 - 0x74 - 0x87 - 0x54 - 0xA3 - 0x0D - 0xD7 - 0x81 - 0xF1 - 0x01 - 0xA3 - 0x1F - 0xFA - 0x1E - 0xF0 - 0x65 - 0x87 - 0x00 - 0xA3 - 0x27 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +} +_memorylastdrawndisplay = { + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x23 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x32 + 0x00 + 0x00 + 0x45 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x49 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x49 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x31 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x26 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x22 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x3E + 0x00 + 0x3E + 0x00 + 0x00 + 0x0F + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x45 + 0x00 + 0x41 + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x49 + 0x00 + 0x41 + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x51 + 0x00 + 0x41 + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x3E + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0xFF + 0x01 + 0 + 0x00 + 0 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x01 + 0 + 0x00 + 0 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x23 + 0x00 + 0x7F + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x45 + 0x00 + 0x48 + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x4C + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x4A + 0x00 + 0x00 + 0x1F + 0x01 + 0 + 0x00 + 0 + 252 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x31 + 0x00 + 0x31 + 0x00 + 0x00 + 0x0F + 0x01 + 0 + 0x00 + 0 + 248 + 176 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 96 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x72 + 0x00 + 0x7F + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0x00 + 176 + 176 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x49 + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x49 + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x49 + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x4E + 0x00 + 0x41 + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 176 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 252 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 255 + 176 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 255 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x08 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 255 + 127 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x45 + 0x00 + 0x14 + 0x00 + 0x00 + 0 + 0x01 + 0x00 + 0x00 + 0 + 255 + 63 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x22 + 0x00 + 0x00 + 0 + 0x01 + 0x00 + 0x00 + 0 + 255 + 31 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x51 + 0x00 + 0x41 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 255 + 15 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x3E + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x21 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x22 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x14 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 15 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 31 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 63 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 127 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 255 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 252 + 255 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 248 + 255 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x45 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 248 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 252 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 255 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 127 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 63 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 31 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x72 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 255 + 15 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x51 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x51 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x4E + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x36 + 0x00 + 0x32 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x49 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x49 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x49 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x36 + 0x00 + 0x26 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 26 + 0 + 0 + 0x00 + 0 + 0x00 + 0 + 0x3E + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x45 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x49 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0x00 + 0 + 0x51 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x3E + 0x00 + 0x22 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 217 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 241 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x04 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 224 + 48 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x0C + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 240 + 127 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x1E + 0x00 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 209 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x37 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 224 + 255 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x7C + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 208 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x74 + 0x00 + 0x00 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x7E + 0x00 + 0x00 + 0x00 + 0x48 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x7E + 0x00 + 0x00 + 0x00 + 0x4C + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x74 + 0x00 + 0x00 + 0x00 + 0x4A + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x7C + 0x00 + 0x00 + 0x00 + 0x31 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 255 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x37 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 248 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x1E + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x3E + 0x01 + 0x00 + 0x00 + 0 + 216 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x0C + 0x00 + 0x00 + 0x00 + 0x7F + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 241 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x04 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 224 + 255 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 240 + 127 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x22 + 0x01 + 0x00 + 0x00 + 0 + 209 + 32 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 240 + 16 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 225 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x48 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x4C + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x4A + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x31 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x0F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x1F + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x01 + 0x00 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x32 + 0x00 + 0x00 + 0x49 + 0x01 + 0x00 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x49 + 0 + 0 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x49 + 0 + 0 + 0x7F + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x41 + 0 + 0 + 0xFF + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x26 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x7F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x7F + 0x01 + 0x00 + 0x1F + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0 + 0 + 0x00 + 0x00 + 0x3E + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x1F + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x0F + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x3E + 0x01 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x22 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 161 + 15 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 216 + 31 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 241 + 63 + 0 + 0 + 0 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x3E + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 224 + 127 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x41 + 0x00 + 0x00 + 0x7F + 0x01 + 0x00 + 0x00 + 0 + 240 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x41 + 0x00 + 0x00 + 0x41 + 0x01 + 0x00 + 0x00 + 0 + 208 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 240 + 96 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x3E + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 224 + 176 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0 + 208 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x40 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x7F + 0x00 + 0x00 + 0x40 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x48 + 0x00 + 0x00 + 0x7F + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x4C + 0x00 + 0x00 + 0x40 + 0x01 + 0x00 + 0x00 + 0x00 + 240 + 176 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x4A + 0x00 + 0x00 + 0x40 + 0x01 + 0x00 + 0x00 + 0x00 + 248 + 255 + 0 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x31 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 252 + 255 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 255 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 127 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x7F + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 255 + 63 + 0 + 0 + 0 + 0 + 0x00 + 57 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 255 + 31 + 0 + 0 + 0 + 0 + 0x00 + 121 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 255 + 15 + 0 + 0 + 0 + 0 + 0x00 + 122 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x49 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 110 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 236 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 250 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 250 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 236 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x08 + 0x00 + 0x00 + 0x21 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 110 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x14 + 0x00 + 0x00 + 0x7F + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x22 + 0x00 + 0x00 + 0x01 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 121 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 57 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 56 + 0 + 56 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x1E + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 122 + 0 + 122 + 0 + 14 + 0 + 14 + 0 + 0 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x23 + 0x00 + 0x00 + 0x29 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 127 + 0 + 127 + 0 + 24 + 0 + 24 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x45 + 0x00 + 0x00 + 0x49 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 109 + 0 + 109 + 0 + 190 + 0 + 190 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x49 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 236 + 0 + 236 + 0 + 109 + 0 + 109 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x49 + 0x00 + 0x00 + 0x46 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 0 + 250 + 0 + 61 + 0 + 61 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x31 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 0 + 250 + 0 + 60 + 0 + 60 + 0 + 252 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 236 + 0 + 236 + 0 + 61 + 0 + 61 + 0 + 104 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 109 + 0 + 61 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 127 + 0 + 127 + 0 + 190 + 0 + 190 + 0 + 26 + 0 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 122 + 0 + 122 + 0 + 24 + 0 + 24 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x41 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0 + 0 + 56 + 0 + 56 + 0 + 14 + 0 + 14 + 0 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x22 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x14 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x08 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 + 0x00 +} +_pixels = { } +_registers = { } +_rom = { + 0xA3 + 0x52 + 0xF1 + 0x03 + 0xA3 + 0x55 + 0xF2 + 0x03 + 0xA3 + 0x4F + 0xF3 + 0x03 + 0xA7 + 0x78 + 0xF0 + 0x03 + 0xA7 + 0x63 + 0xF4 + 0x03 + 0xF5 + 0x03 + 0x00 + 0xFF + 0x80 + 0x50 + 0xA3 + 0x1F + 0xF4 + 0x1E + 0xF0 + 0x55 + 0xC0 + 0x3F + 0xA3 + 0x27 + 0xF4 + 0x1E + 0x80 + 0x00 + 0xF0 + 0x55 + 0x80 + 0x60 + 0xA3 + 0x2F + 0xF4 + 0x1E + 0xF0 + 0x55 + 0xC0 + 0x3F + 0xA3 + 0x37 + 0xF4 + 0x1E + 0x80 + 0x00 + 0xF0 + 0x55 + 0xA3 + 0x1C + 0x74 + 0x01 + 0xC9 + 0x08 + 0x85 + 0x94 + 0x75 + 0x03 + 0xC9 + 0x08 + 0x86 + 0x94 + 0x76 + 0x04 + 0x6F + 0x08 + 0x8F + 0x47 + 0x4F + 0x00 + 0x12 + 0x18 + 0xF1 + 0x01 + 0x6A + 0x00 + 0xF2 + 0x01 + 0xA3 + 0x1F + 0xFA + 0x1E + 0xF0 + 0x65 + 0x87 + 0x00 + 0xA3 + 0x27 + 0xFA + 0x1E + 0xF0 + 0x65 + 0x88 + 0x00 + 0x87 + 0x74 + 0x87 + 0x54 + 0xA3 + 0x1D + 0xD7 + 0x81 + 0xF1 + 0x01 + 0xA3 + 0x2F + 0xFA + 0x1E + 0xF0 + 0x65 + 0x87 + 0x00 + 0xA3 + 0x37 0xFA 0x1E 0xF0 @@ -25487,7 +40330,7 @@ _rom = { 0x87 0x64 0xA3 - 0x0D + 0x1D 0xD7 0x81 0x7A @@ -25499,11 +40342,11 @@ _rom = { 0x4F 0x00 0x12 - 0x4E + 0x58 0xF3 0x01 0xA3 - 0x48 + 0x58 0x6D 0x00 0x6E @@ -25531,13 +40374,13 @@ _rom = { 0x3E 0x06 0x12 - 0x94 + 0x9E 0x6A 0x00 0xF2 0x01 0xA3 - 0x0F + 0x1F 0xFA 0x1E 0xF0 @@ -25545,7 +40388,7 @@ _rom = { 0x87 0x00 0xA3 - 0x17 + 0x27 0xFA 0x1E 0xF0 @@ -25557,13 +40400,13 @@ _rom = { 0x87 0x54 0xA3 - 0x0C + 0x1C 0xD7 0x81 0xF1 0x01 0xA3 - 0x1F + 0x2F 0xFA 0x1E 0xF0 @@ -25571,7 +40414,7 @@ _rom = { 0x87 0x00 0xA3 - 0x27 + 0x37 0xFA 0x1E 0xF0 @@ -25583,7 +40426,7 @@ _rom = { 0x87 0x64 0xA3 - 0x0E + 0x1E 0xD7 0x81 0x7A @@ -25595,31 +40438,37 @@ _rom = { 0x4F 0x00 0x12 - 0xAE + 0xB8 0x75 0x02 0x76 0x04 0xA3 - 0x2F + 0x3F 0xFF 0x55 0xA3 - 0x2F + 0x3F 0xFF 0x65 0xFF 0x07 0x3F 0x00 - 0x12 - 0xF8 + 0x13 + 0x02 0x6F 0x02 0xFF 0x15 + 0x60 + 0x08 + 0xE0 + 0x9E 0x12 - 0xAC + 0xB6 + 0x16 + 0x58 0x81 0x24 0x80 @@ -26456,13 +41305,562 @@ _rom = { 0x00 0xF8 0x00 + 0xFF + 0x01 + 0x00 + 0xFE + 0xA7 + 0x56 + 0xF0 + 0x03 + 0xA7 + 0x5D + 0xF1 + 0x03 + 0xA7 + 0x66 + 0xF2 + 0x03 + 0xA7 + 0x63 + 0xF4 + 0x03 + 0xF5 + 0x03 + 0xA7 + 0x60 + 0xF8 + 0x03 + 0x00 + 0xF3 + 0x61 + 0x00 + 0x6A + 0x00 + 0x6B + 0x3A + 0x6C + 0x00 + 0x27 + 0x42 + 0x61 + 0x17 + 0x27 + 0x42 + 0x68 + 0x02 + 0x69 + 0x0C + 0xF1 + 0x01 + 0xA7 + 0x58 + 0xDC + 0x85 + 0xDB + 0x95 + 0xF2 + 0x01 + 0x6E + 0x1E + 0x64 + 0x03 + 0xF4 + 0x29 + 0xDE + 0x95 + 0x65 + 0x3C + 0xF5 + 0x15 + 0xF4 + 0x18 + 0xF5 + 0x07 + 0x35 + 0x00 + 0x16 + 0x9E + 0xDE + 0x95 + 0x74 + 0xFF + 0xF4 + 0x29 + 0xDE + 0x95 + 0x34 + 0x00 + 0x16 + 0x98 + 0xDE + 0x95 + 0xF3 + 0x01 + 0x00 + 0xE0 + 0xF2 + 0x01 + 0x6D + 0x17 + 0x6E + 0x1A + 0xA7 + 0x78 + 0xFA + 0x33 + 0xF0 + 0x65 + 0xF0 + 0x29 + 0xDD + 0xE5 + 0xA7 + 0x79 + 0x7D + 0x07 + 0xF0 + 0x65 + 0xF0 + 0x29 + 0xDD + 0xE5 + 0x7D + 0x07 + 0xA7 + 0x7A + 0xF0 + 0x65 + 0xF0 + 0x29 + 0xDD + 0xE5 + 0xF1 + 0x01 + 0x87 + 0xC0 + 0x60 + 0x05 + 0xE0 + 0xA1 + 0x7C + 0x01 + 0x4C + 0x40 + 0x27 + 0x32 + 0x60 + 0x07 + 0xE0 + 0xA1 + 0x78 + 0xFF + 0x60 + 0x09 + 0xE0 + 0xA1 + 0x78 + 0x01 + 0x7B + 0xFE + 0x6F + 0x40 + 0x8F + 0xB7 + 0x3F + 0x00 + 0x27 + 0x3A + 0x61 + 0x00 + 0x27 + 0x42 + 0x61 + 0x17 + 0x27 + 0x42 + 0xF1 + 0x01 + 0xA7 + 0x58 + 0xDB + 0x95 + 0xDC + 0x85 + 0x4F + 0x01 + 0x17 + 0x1E + 0xFF + 0x07 + 0x3F + 0x00 + 0x17 + 0x12 + 0x6F + 0x03 + 0xFF + 0x15 + 0x16 + 0xB2 + 0xF8 + 0x01 + 0x00 + 0xF1 + 0xA7 + 0x69 + 0xDC + 0x8F + 0x61 + 0x14 + 0xF1 + 0x18 + 0xFE + 0x0A + 0x3E + 0x08 + 0x17 + 0x2A + 0x16 + 0x58 + 0x7A + 0x01 + 0x6C + 0x00 + 0xF4 + 0x18 + 0x00 + 0xEE + 0xC9 + 0x0F + 0x79 + 0x01 + 0x6B + 0x3E + 0x00 + 0xEE + 0x00 + 0xF1 + 0x64 + 0x00 + 0xF5 + 0x01 + 0xA7 + 0x67 + 0xD4 + 0x11 + 0x74 + 0x08 + 0x34 + 0x40 + 0x17 + 0x4A + 0x00 + 0xF3 + 0x00 + 0xEE + 0x50 + 0x50 + 0x50 + 0xF8 + 0xD8 + 0xF8 + 0x50 + 0x00 + 0xB0 + 0xF0 + 0xFF + 0x00 + 0x00 + 0xF3 + 0x99 + 0x00 + 0xFF + 0xFF + 0xFF + 0xF8 + 0x88 + 0xF8 + 0x80 + 0x80 + 0x00 + 0xF8 + 0x88 + 0x88 + 0xF8 + 0x00 + 0xA8 + 0xA8 + 0xA8 + 0x50 + 0x00 + 0x00 + 0x00 + 0xf0 } _scanline = { 0 384 } _waveBuffer = { } -_waveBuffer2 = { } +_waveBuffer2 = { + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 6 + 7 + 7 + 8 + 8 + 9 + 9 + 10 + 10 + 11 + 11 + 12 + 13 + 13 + 14 + 15 + 0 + 0 +} //----- Green flag events --------------------------------------------------------------------------------------------- @@ -26514,7 +41912,7 @@ WhenBroadcastReceived(exit emulator) { MenuScroll += (-50 / (is compiled? + 1)); } - If ((-1800 > MenuScroll) Or (Not (((MenuScroll % 200) == 0)))) + If ((-1600 > MenuScroll) Or (Not (((MenuScroll % 200) == 0)))) { MenuScroll = 200; } @@ -26529,7 +41927,7 @@ WhenBroadcastReceived(exit emulator) } If ((MenuScroll > 200) Or (Not (((MenuScroll % 200) == 0)))) { - MenuScroll = -1800; + MenuScroll = -1600; } Control.Wait(0.1); } @@ -26584,23 +41982,23 @@ Define decrypt(string Decryption) (warp=false) { If (Decryption == "random") { - List.ReplaceItem(Menu Theme, 1, Operator.Random(1 / 6)); - List.ReplaceItem(Menu Theme, 2, Operator.Random(1 / 9)); - List.ReplaceItem(Menu Theme, 3, Operator.Random(2 / 4)); - List.ReplaceItem(Menu Theme, 4, Operator.Random(0 / 1)); - List.ReplaceItem(Menu Theme, 5, Operator.Random(0 / 9)); - List.ReplaceItem(Menu Theme, 6, Operator.Random(0 / 9)); - List.ReplaceItem(Menu Theme, 7, Operator.Random(0 / 1)); - List.ReplaceItem(Menu Theme, 8, Operator.Random(0 / 1)); + List.ReplaceItem(Menu Theme, 1, Operator.Random(1 , 6)); + List.ReplaceItem(Menu Theme, 2, Operator.Random(1 , 9)); + List.ReplaceItem(Menu Theme, 3, Operator.Random(2 , 4)); + List.ReplaceItem(Menu Theme, 4, Operator.Random(0 , 1)); + List.ReplaceItem(Menu Theme, 5, Operator.Random(0 , 9)); + List.ReplaceItem(Menu Theme, 6, Operator.Random(0 , 9)); + List.ReplaceItem(Menu Theme, 7, Operator.Random(0 , 1)); + List.ReplaceItem(Menu Theme, 8, Operator.Random(0 , 1)); } Else { List.DeleteAll(Menu Theme); - Accumulator = 0; + Acc🚽 = 0; Repeat (Variable.Length(Decryption)) { - Accumulator += 1; - List.Add(Menu Theme, Operator.LetterOf(Decryption, Accumulator)); + Acc🚽 += 1; + List.Add(Menu Theme, Operator.LetterOf(Decryption, Acc🚽)); } } } @@ -26620,25 +42018,26 @@ Define decrypt(string Decryption) (warp=false) //----- Costumes ------------------------------------------------------------------------------------------------------ -Black.png +angry.png +backdrop1.svg +Black.svg BytePusher.png Chip-8.svg -Game Boy.png +Game Boy.svg Gradient.svg Gradient2.svg HelloWorld.svg NES.png screen.svg SI8080.svg -VMU_Bezel.png WDS menu theme.png //----- Sounds -------------------------------------------------------------------------------------------------------- -3DS-Menu.mp3 12 Special Stamps.mp3 Get Stickbugged Lol.mp3 ping-bing.wav Purple Planet Music - Chilled - Global Tech.wav Slide WDS.wav +WDS-Menu.mp3 diff --git a/draw.txt b/draw.txt index f172261..dab287e 100644 --- a/draw.txt +++ b/draw.txt @@ -11,33 +11,6 @@ stretch_y = 1 -//----- Key pressed events -------------------------------------------------------------------------------------------- - -WhenKeyPressed(8) -{ - If (gui[1] == 1) - { - Variable.Hide(scaling); - Variable.Hide(size_mod); - Variable.Hide(o_up); - Variable.Hide(o_down); - Variable.Hide(stretch_x); - Variable.Hide(stretch_y); - List.ReplaceItem(gui, 1, 0); - } - Else - { - Variable.Show(scaling); - Variable.Show(size_mod); - Variable.Show(o_up); - Variable.Show(o_down); - Variable.Show(stretch_x); - Variable.Show(stretch_y); - List.ReplaceItem(gui, 1, 1); - } -} - - //----- Broadcast received events ------------------------------------------------------------------------------------- WhenBroadcastReceived(display_size) @@ -137,6 +110,30 @@ Define fade (warp=false) } +//----- Orphaned blocks ----------------------------------------------------------------------------------------------- + +If (gui[1] == 1) +{ + Variable.Hide(scaling); + Variable.Hide(size_mod); + Variable.Hide(o_up); + Variable.Hide(o_down); + Variable.Hide(stretch_x); + Variable.Hide(stretch_y); + List.ReplaceItem(gui, 1, 0); +} +Else +{ + Variable.Show(scaling); + Variable.Show(size_mod); + Variable.Show(o_up); + Variable.Show(o_down); + Variable.Show(stretch_x); + Variable.Show(stretch_y); + List.ReplaceItem(gui, 1, 1); +} + + //----- Costumes ------------------------------------------------------------------------------------------------------ costume1.png diff --git a/font.txt b/font.txt index d022987..18f095a 100644 --- a/font.txt +++ b/font.txt @@ -108,6 +108,49 @@ $prg_banks = 0 $prg_bank_mode = 0 $reg0 = 0 $reg1 = 0 +*OAMDMA# = 0 +*OAMDMAS = 0 +,c = 0 +,joypad = 0 +-keyRandom = 0 +-LCDC = 0 +-LCDS = 0 +-LY = 0 +-LYC = 0 +-LYmask = 0 +-scx = 0 +-SCXMOD8 = 0 +-STATUS = 0 +-windowWasDrawn? = 0 +-WLY = 0 +-wx = 0 +.DIV2 = 0 +.DIVCYCLES = 0 +.DMAenable = 0 +.DMAend = 0 +.DMAlength = 0 +.DMAstart = 0 +.DMAtype = 0 +.GBC? = 0 +.HDMAenable = 0 +.IME = 0 +.instr = 0 +.instrID = 0 +.Mpri = 0 +.soundEnable = 0 +.SPEED = 0 +.Spri = 0 +.spriteattributes = 0 +.spriteCpal = 0 +.spritesize = 0 +.t = 0 +.TAC1 = 0 +.TAC2 = 0 +.TACFLAG = 0 +.tileB = 0 +.timenable = 0 +.vbank = 0 +.windowflag = 0 @bg_pattern = 0 @bit = 0 @counter = 0 @@ -123,8 +166,10 @@ $reg1 = 0 @nmi_flag = 0 @nt_data = 0 @oam_addr = 0 +@PAL = 0 @palette = 0 @pattern_addr = 0 +@PIX = 0 @read_buffer = 0 @render_bg = 0 @render_sprite = 0 @@ -145,21 +190,70 @@ $reg1 = 0 @vram_incr = 0 @write_toggle = 0 cpu_cycle = 0 +delta = 0 +FPS = 0 +g = 0 +h = 0 i = 0 i = 0 j = 0 k = 1 -l = 1 +l = 68 +lines = 0 +lock = 0 +loop = 0 m = 16 nes: address = 0 nes: data = 0 nes: IRQ = 0 nes: NMI = 0 +render = 0 +s = 0 +sound = 0 +T1 = 0 +T2 = 0 +T3 = 0 +T4 = 0 +T4.1 = 0 +T4.2 = 0 +T5 = 0 +T6 = 0 +T7 = 0 +T8 = 0 +T9 = 0 +T10 = 0 +T11 = 0 temp = 0 -v = 11.115006658737 +time1 = 0 +time2 = 0 +v = 0.01562874795644 x = -166 y = 120 z = 0.01 +_A = 0 +_B = 0 +_current bank = 0 +_frames = 0 +_frameskip = 0 +_IEindex = 0 +_IFindex = 0 +_INTRdest = 0 +_lineCyc = 0 +_MBCnumber = 0 +_PIXEL# = 0 +_R = 0 +_RE = 0 +_rom size = 0 +_S = 0 +_SIZE = 0 +_STATcond1 = 0 +_STATcond2 = 0 +_STATindex = 0 +_T = 0 +_X = 0 +_XSHIFT = 0 +_YSHIFT = 0 +_Z = 0 //----- Lists --------------------------------------------------------------------------------------------------------- @@ -172,6 +266,19 @@ z = 0.01 !wram = { } #length_table = { } #noise_period = { } +$A = { } +$B = { } +$C = { } +*OAMidx = { } +*OAMx = { } +*OAMy = { } +*palette = { } +.addr2ptr = { } +.pointerStart = { } +.ptr = { } +.ptr index = { } +.vals = { } +2^x = { } @attribute0 = { } @attribute1 = { } @attribute2 = { } @@ -187,6 +294,7 @@ z = 0.01 @palette = { } @spr_palette = { } @temp_oam = { } +byteStack = { } dat = { 0000000000000000 0000183C3C180000 @@ -413,22 +521,43 @@ dat = { 0F0F0F0F0F0F0F0F FFFFFFFF00000000 } +Flag bits = { } +testroms = { } +_cartridge stuff = { } +_DMGPALETTE = { } +_GBCPALETTELOOKUP = { } +_instrIDs = { } +_instrParam = { } +_PALETTE RAM = { } +_pix = { } +_RAM = { } +_REGISTERS = { } +_ROM = { } +_soundregs = { } //----- Broadcast received events ------------------------------------------------------------------------------------- WhenBroadcastReceived(CP/M Call) { - Pen.SetPenColorToColor(#468ed2); If (_registers[2] == 2) { - List.DeleteAll(8080.Terminal); - List.Add(8080.Terminal, _registers[4]); - Call Renterminal; + If (_registers[4] == 10) + { + List.DeleteAll(8080.Terminal); + y += -10; + } + Else + { + Call Clear line; + List.Add(8080.Terminal, _registers[4]); + Call Renterminal; + } Stop(this script); } If (_registers[2] == 9) { + Pen.SetPenColorToColor(#468ed2); List.DeleteAll(8080.Terminal); r.0 = ((_registers[3] * 256) + _registers[4]); Repeat Until (_memory[(r.0 + 1)] == 36) @@ -439,14 +568,27 @@ WhenBroadcastReceived(CP/M Call) Call Renterminal; Stop(this script); } -} - -WhenBroadcastReceived(emulate!!) -{ - Control.Wait(1); - Forever + If (_registers[2] == 12) + { + List.ReplaceItem(_registers, 6, "0x22"); + Stop(this script); + } + If (_registers[2] == 7) + { + List.ReplaceItem(_registers, 8, _memory[4]); + Stop(this script); + } + If (_registers[2] == 8) { - Call c; + List.ReplaceItem(_memory, 4, _registers[4]); + Stop(this script); + } + If (_registers[2] == 0) + { + Stop(other scripts in sprite); + List.Add(logzz, "CP/M function 0: System Reset"); + List.Show(logzz); + Stop(all); } } @@ -456,7 +598,7 @@ WhenBroadcastReceived(exit emulator) y = 120; } -WhenBroadcastReceived(text) +WhenBroadcastReceived(reset emulator) { Pen.SetPenColorToColor(#65ffce); Call rentitle; @@ -478,7 +620,7 @@ Define c (warp=true) x = -226; Pen.SetPenColorToColor(#61f8c9); z = 100; - v = Sensing.Of(FPS, Game Boy); + v = Sensing.Of(fps1, GB); Call fc(v); Call d(3); Call renchar x((x - 5)) y(-156) s(2) d(46); @@ -486,6 +628,18 @@ Define c (warp=true) Call d(1); } +Define Clear line (warp=true) +{ + Pen.SetPenColorToColor(#000000); + Pen.SetPenSizeTo(9); + y += 10; + Motion.GoToXY(-240, (y - 1)); + Pen.Down(); + Motion.GoToXY(240, (y - 1)); + Pen.Clear(); + Pen.SetPenColorToColor(#468ed2); +} + Define d(string n) (warp=true) { Repeat (n) @@ -551,12 +705,17 @@ Define Renterminal (warp=true) { Call renchar x(((l - (List.Length(8080.Terminal) / 2)) * 6)) y(y) s(1) d(8080.Terminal[(l + 1)]); l += 1; + If (100 < List.Length(8080.Terminal)) + { + List.DeleteItem(8080.Terminal, 2); + y += -5; + } } y += -10; If (y < -150) { Pen.Clear(); - y = 120; + y = 130; } } @@ -573,9 +732,7 @@ Define rentitle (warp=true) //----- Orphaned blocks ----------------------------------------------------------------------------------------------- -lines - -(r.0 + 1) +(8080.Terminal[l] == "0x0a") //----- Costumes ------------------------------------------------------------------------------------------------------ diff --git a/nes.txt b/nes.txt index 2405a81..d8ee156 100644 --- a/nes.txt +++ b/nes.txt @@ -1,7 +1,7 @@ //----- Variables ----------------------------------------------------------------------------------------------------- -!A = 15 -!apu_cycle = 554901 +!A = 115 +!apu_cycle = 3537699 !break = 0 !C = 1 !ctrl_strobe = 0 @@ -17,12 +17,12 @@ !penalty = 0 !port1_count = 8 !port2_count = 0 -!ppu_cycle = 328 +!ppu_cycle = 108 !SP = 253 !sprite_dma = 768 !V = 0 !X = 0 -!Y = 242 +!Y = 243 !Z = 1 #dmc_address = 59776 #dmc_enabled = 0 @@ -42,40 +42,40 @@ #noise_start = 0 #noise_volume = 0 #sequence = 1 -#sq0_constant = 1 +#sq0_constant = 0 #sq0_counter_halt = 0 #sq0_decay = 0 -#sq0_divider = 0 -#sq0_duty = 1 -#sq0_enabled = 0 +#sq0_divider = 3 +#sq0_duty = 2 +#sq0_enabled = 1 #sq0_lengthcounter = 0 -#sq0_period = 253 +#sq0_period = 6 #sq0_start = 0 -#sq0_swcounter = 3 -#sq0_swenable = 0 -#sq0_swnegate = 0 -#sq0_swperiod = 7 +#sq0_swcounter = 0 +#sq0_swenable = 1 +#sq0_swnegate = 1 +#sq0_swperiod = 0 #sq0_swreload = 0 -#sq0_swshift = 7 -#sq0_swtarget = 254 -#sq0_volume = 0 +#sq0_swshift = 1 +#sq0_swtarget = 2 +#sq0_volume = 7 #sq1_constant = 1 -#sq1_counter_halt = 0 +#sq1_counter_halt = 1 #sq1_decay = 0 -#sq1_divider = 0 -#sq1_duty = 1 -#sq1_enabled = 0 +#sq1_divider = 6 +#sq1_duty = 0 +#sq1_enabled = 1 #sq1_lengthcounter = 0 -#sq1_period = 189 +#sq1_period = 7 #sq1_start = 0 -#sq1_swcounter = 3 +#sq1_swcounter = 1 #sq1_swenable = 0 #sq1_swnegate = 0 -#sq1_swperiod = 7 +#sq1_swperiod = 1 #sq1_swreload = 0 -#sq1_swshift = 7 -#sq1_swtarget = 190 -#sq1_volume = 0 +#sq1_swshift = 2 +#sq1_swtarget = 8 +#sq1_volume = 15 #tri_control = 1 #tri_enabled = 0 #tri_lengthcounter = 0 @@ -115,7 +115,7 @@ $reg1 = 0 @fine_x = 0 @frameskip = 0 @hflip = 1 -@lastframe = 8339.6056596296 +@lastframe = 8541.1551731597 @mask_bg = 1 @mask_sprite = 1 @nametable_index = 2 @@ -124,12 +124,12 @@ $reg1 = 0 @nt_data = 0 @oam_addr = 1 @palette = 1 -@pattern_addr = 259 +@pattern_addr = 260 @read_buffer = 0 @render_bg = 1 @render_sprite = 0 @result = 00000000 -@scanline = 100 +@scanline = 85 @sprite0_bit = 0 @sprite_attribute = 66 @sprite_hit = 0 @@ -141,12 +141,12 @@ $reg1 = 0 @sprite_y = 128 @temp_addr = 0 @tile_index = 32 -@vram_addr = 16768 +@vram_addr = 20800 @vram_incr = 0 @write_toggle = 0 -cpu_cycle = 549573 +cpu_cycle = 3537228 nes: address = 210 -nes: data = 15 +nes: data = 115 nes: IRQ = 0 nes: NMI = 0 temp = 2 @@ -835,6 +835,26 @@ WhenKeyPressed(6) WhenBroadcastReceived(init) { + frame = 1; + @sprite_hit = 0; + @sprite_overflow = 0; + @vram_incr = 0; + @sprite_pattern = 0; + @bg_pattern = 0; + @sprite_size = 1; + @nmi_enabled = 0; + @nmi_flag = 0; + @mask_bg = 0; + @mask_sprite = 0; + @render_bg = 0; + @render_sprite = 0; + render_enabled = 0; + @vram_addr = 8192; + @data_latch = 00000000; + @write_toggle = 0; + @read_buffer = 0; + @frameskip = 0; + @scanline = 0; !A = 0; !X = 0; !Y = 0; @@ -858,44 +878,6 @@ WhenBroadcastReceived(init) !ppu_cycle = 27; !apu_cycle = 7457; !idle_skip = 0; - List.DeleteAll(!ram); - Repeat (2048) - { - List.Add(!ram, 0); - } - If (battery == 1) - { - List.DeleteAll(!wram); - Repeat (wram_size) - { - List.Add(!wram, 0); - } - battery = 0; - } -} - -WhenBroadcastReceived(init) -{ - frame = 1; - @sprite_hit = 0; - @sprite_overflow = 0; - @vram_incr = 0; - @sprite_pattern = 0; - @bg_pattern = 0; - @sprite_size = 1; - @nmi_enabled = 0; - @nmi_flag = 0; - @mask_bg = 0; - @mask_sprite = 0; - @render_bg = 0; - @render_sprite = 0; - render_enabled = 0; - @vram_addr = 8192; - @data_latch = 00000000; - @write_toggle = 0; - @read_buffer = 0; - @frameskip = 0; - @scanline = 0; @lastframe = Sensing.DaysSince2000(); Call @init; } @@ -919,14 +901,6 @@ WhenBroadcastReceived(init) #sq0_swnegate = 0; #sq1_swenable = 0; #sq1_swnegate = 0; - Repeat (10) - { - List.Add(apu, 0); - } - List.ReplaceItem(apu, 2, 0); - List.ReplaceItem(apu, 5, 0); - List.ReplaceItem(apu, 8, 0); - List.ReplaceItem(apu, 10, 0); } WhenBroadcastReceived(init) @@ -1089,14 +1063,7 @@ Define !address (warp=true) nes: address = ((nes: address + !X) % 256); Call !read; temp = nes: data; - If ((nes: address % 256) == 255) - { - nes: address += -255; - } - Else - { - nes: address += 1; - } + nes: address = ((nes: address + 1) % 256); Call !read; nes: address = ((nes: data * 256) + temp); Stop(this script); @@ -3459,8 +3426,8 @@ Define @init (warp=true) List.DeleteAll(@spr_palette); Repeat (16) { - List.Add(@bg_palette, @palette[Operator.Random(1 / 64)]); - List.Add(@spr_palette, @palette[Operator.Random(1 / 64)]); + List.Add(@bg_palette, @palette[Operator.Random(1 , 64)]); + List.Add(@spr_palette, @palette[Operator.Random(1 , 64)]); } bg_color = @bg_palette[1]; List.DeleteAll(@ciram0); @@ -3491,6 +3458,25 @@ Define @init (warp=true) List.Add(@oam_mem, 0); } List.DeleteAll(@temp_oam); + List.DeleteAll(!ram); + Repeat (2048) + { + List.Add(!ram, 0); + } + If (battery == 1) + { + List.DeleteAll(!wram); + Repeat (wram_size) + { + List.Add(!wram, 0); + } + battery = 0; + } + List.DeleteAll(apu); + Repeat (11) + { + List.Add(apu, 0); + } } Define @ppu (warp=true) @@ -3501,8 +3487,8 @@ Define @ppu (warp=true) @frameskip += 1; If (@frameskip > Frameskip) { - @frameskip = 0; Event.Broadcast("draw"); + @frameskip = 0; } } } diff --git a/project.json b/project.json index 26feb42..b531bb9 100644 --- a/project.json +++ b/project.json @@ -1 +1 @@ -{"targets":[{"isStage":true,"name":"Stage","variables":{"`jEk@4|i[#Fk?(8x)AV.-my variable":["my variable","0"],"BE)e;?PnrdmTcO@x9]LQ":["MenuScroll",-400],"jHyV3Vm:Q@rIq$YA]IYG":["flags.c","0"],"wmU,n(01t/a%O{Fxi,s+":["flags.z","0"],"3RS/JX,H|~mNq!j_oSzZ":["flags.n","0"],"7F=kKfGq93{+Pi_o%2}h":["flags.v","0"],"ADJlW=I)6p}6xuy9|I*R":["pixel",38401],"Wi^qSRY3?saxL.IB^T(P":["rom.title","¢E¢?∠P¢"],"6)MJ1%:{yyW@[$pAU+RW":["arm7.cycles",8],"q|i3L@-9Yg3eW}Spl-lX":["arm9.cycles",15],"pXkI+kwkMT/GFMgtL=VH":["display.scan_x",31],"D*/(a|uRL{vFdIeuWJq}":["display.scan_y",158],"uEtD!M_zC8*GB%@71_@h":["options.vertical_screens",0],"/y%V|a=uht4rVd|2*2+a":["DSmode","0"],"26y~e9uZ-)1V@_#QCbz=":["Accumulator",1],"~kMyjD5[oxb%25@;,!jb":["A",60],"HBshDh%Y+0(5_G*i%?=U-S-":["S2",43],"HBshDh%Y+0(5_G*i%?=U-PC-":["PC",2],"HBshDh%Y+0(5_G*i%?=U-temp-":["GUItemp",140],"HBshDh%Y+0(5_G*i%?=U-mask-":["mask","0"],"HBshDh%Y+0(5_G*i%?=U-offset-":["offset",0],"S{03QX|)N}3Qs.R+iMd5":["reg.pc",20],";1C82k3(=Dty1MVk@`8~":["reg.out",""],"UIt#_f^App(Xeh^B9zjR":["bus.out",""],"g28e.W~Kp`M%wes)3?Gr":["clock.m",24],"?]mws|{Gz19yl|:g,]z(":["clock.t",96],"od4rT?;Bw52y-r9gIuW2":["_ROM","0"],"2|8uqLL4Dl//c4+.iA2j":["Theme Switch Flag","0"],"oW{#?FHT;/hE!l+8(A64":["chip8.starting address",512],"DO@o4r%E;$$f$zC!7%Qb":["chip8.CompatMode","Octo"],"]qC)w3}-oa/}ILT-dNb=":["Inemu?","0"],"w=hd1PshEda%bO|xM^6q":["_PC",0],"Au!*6~mqLy!.|jpv|6f!":["_SP",1280],"F_}DPF^fI%3NP^P]}FKY":["_HALT","1"],"F=zKR.?|B`nQvFM,z(Fw":["__XSHIFT",160],":p`%H4!;G.]W;6lcwPAB":["__SIZE","0"],"d9/@u6`9MK4Cba;GI38K":["__YSHIFT",144],"|Wne6DL=-zq^m9{2r`hA":["q",64],"1(hsS=.HEnKV_~]$(r+5":["pitch",-400],"flj)QgXS,93H6OayZ`w[-r.0-":["r.0",256],"flj)QgXS,93H6OayZ`w[-r.2-":["r.2",1],"flj)QgXS,93H6OayZ`w[-r.3-":["r.3",0],"flj)QgXS,93H6OayZ`w[-r.1-":["r.1",0],"flj)QgXS,93H6OayZ`w[-r.8-":["r.8",-180],"flj)QgXS,93H6OayZ`w[-r.9-":["r.9",-1.40625],"flj)QgXS,93H6OayZ`w[-r.4-":["r.4",0],"flj)QgXS,93H6OayZ`w[-r.5-":["r.5",0],"flj)QgXS,93H6OayZ`w[-r.7-":["r.7",0],"flj)QgXS,93H6OayZ`w[-r.6-":["r.6",0],"*cu$N5#KACc@_m}ZOQx7":["rom.designation",""],"k5)b[wmY/GqpIVZ[MN!#":["NMI","0"],"PxY`1ASMu4N9720`N$*u":["IRQ",0],"[.c%Zp0y%mFS90_Jf^!0":["address",210],"2sZ~|=Tg1SFq.9?bA!CG":["data",29],"~s-a1kNvmHy%k|6}Y3^~":["bg_color","#000000"],"wf$pnFUa#7qieC$aq~T9":["frame",19],"kG=l#K?vQ345t{T6HPPz":["render_enabled",1],"NU:_6z!NTL[oUrq[!GqQ":["coolnes_convert","0"],"%XjU5(A-f?.:2f)2OCXj":["wram_enabled","1"],"zbJieX,I^/*TuxDYgB2.":["wram_size",8192],"_5s67veUe?q~:arP76/I":["prg_size",16384],"H0q(Yr;S8emYQ`u=.co}":["battery","1"],"T*Lc1tcF[lxG@/W!jiQ0":["Frameskip","1"],"70;C?(`taL+qCsw6v*gi":["chr_ram","0"],"2YEF=*pQ`ymj}xOTf{?k":["mapper",0],"W35mZn3CY:LS+.IAtmge":["chr_size",8192],"lWF?u*+y?xh}I(}~K.X2":["coolnes_regenerate","1"],"}#/T$/!oxFk]}F%H}-cC":["gui_disabled",0],"G(YRd^aUK_k)d~bJ8S@h":["chip8.audioflag","1"],"OF2DV+zKpqx9z3vPfGKN":["j2",-255],"kAMTG-A{dB6Z1S4,`$2$":["_FPS",21.276594470594546],"kb{abR#{v#9?Q9G51V95":[".RLE segments",0],"4M*03Ap*{iT39zNp]4vF":["Romimportflag","0"],"N`et#hF/mNUQ?WM0|0ij":["chip8.spriteheight",9],"n5MwDuyB]-ZSKqim@`ip":["idle_skip",0],"ZU1H]fgUo{pr?8j#775;":["Enable APU","1"],"Jz!(reWdKcB6wz9(@ZOs":["chip8m.samplerate",44100],"i!Gu6~8n7Kk|ypDR{}Pb":["stage width",480],"k%s.$KTqVN5iXl^Zm!/f":["Load Rom Flag","0"],"DJ~1Ck7Y%xr-L5e*i(oz":["j3","1"],"w+P+Pep[i1(OdhNI0ghA":["i2",256],"d8yQmxwHD@EL!![dF$O4":["amp","10"],"),FI]}BC9Yl17xV5^-f8":["quality",128],"!+5p_#N7^W]PZ+A=m=oI":["cycles","0"],"m]ROHZvewvW*HDY)ha@)":["8080.mode",1],"j+^-/^#ziTd]J%3izp|U":["8080.InterruptFlag","0"]},"lists":{"mLiY::;)lv|cNt1?Woo3":["_rom",["0xA3","0x42","0xF1","0x03","0xA3","0x45","0xF2","0x03","0xA3","0x3F","0xF3","0x03","0x00","0xFF","0x80","0x50","0xA3","0x0F","0xF4","0x1E","0xF0","0x55","0xC0","0x3F","0xA3","0x17","0xF4","0x1E","0x80","0x00","0xF0","0x55","0x80","0x60","0xA3","0x1F","0xF4","0x1E","0xF0","0x55","0xC0","0x3F","0xA3","0x27","0xF4","0x1E","0x80","0x00","0xF0","0x55","0xA3","0x0C","0x74","0x01","0xC9","0x08","0x85","0x94","0x75","0x03","0xC9","0x08","0x86","0x94","0x76","0x04","0x6F","0x08","0x8F","0x47","0x4F","0x00","0x12","0x0E","0xF1","0x01","0x6A","0x00","0xF2","0x01","0xA3","0x0F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x17","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x54","0xA3","0x0D","0xD7","0x81","0xF1","0x01","0xA3","0x1F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x27","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x64","0xA3","0x0D","0xD7","0x81","0x7A","0x01","0x6F","0x08","0x8F","0xA7","0x4F","0x00","0x12","0x4E","0xF3","0x01","0xA3","0x48","0x6D","0x00","0x6E","0x26","0x7D","0x10","0xDD","0xE0","0x7D","0xF0","0x6F","0x40","0xFF","0x1E","0x7D","0x10","0x4D","0x60","0x7E","0xF0","0x4D","0x60","0x6D","0x00","0x3E","0x06","0x12","0x94","0x6A","0x00","0xF2","0x01","0xA3","0x0F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x17","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x54","0xA3","0x0C","0xD7","0x81","0xF1","0x01","0xA3","0x1F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x27","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x64","0xA3","0x0E","0xD7","0x81","0x7A","0x01","0x6F","0x08","0x8F","0xA7","0x4F","0x00","0x12","0xAE","0x75","0x02","0x76","0x04","0xA3","0x2F","0xFF","0x55","0xA3","0x2F","0xFF","0x65","0xFF","0x07","0x3F","0x00","0x12","0xF8","0x6F","0x02","0xFF","0x15","0x12","0xAC","0x81","0x24","0x80","0xF4","0x00","0xEE","0x00","0x00","0xF0","0xC0","0xCC","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFF","0xFF","0x00","0xC4","0xFF","0x40","0x72","0xEE","0x01","0xFF","0x00","0xFF","0x00","0x7F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFE","0x00","0x7E","0x00","0x80","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x80","0xFF","0x80","0xFF","0x00","0x7F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x40","0xFE","0x00","0x7F","0x80","0x80","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xBF","0xC0","0xBF","0x80","0x30","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x40","0x00","0x40","0x40","0xCF","0xC0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFF","0x7F","0x7F","0xBF","0x3F","0x8F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x80","0x3F","0x40","0x40","0x70","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xEF","0xFF","0xFF","0xFF","0x00","0x5F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x30","0x0F","0x00","0x0F","0xFF","0xA0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xF8","0x00","0xF8","0x00","0xE0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xF0","0x00","0xF0","0x00","0x10","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x00","0x7F","0x80","0x7F","0xC0","0x3F","0xC1","0x3F","0xE1","0x1F","0xE3","0x1F","0xE3","0x1F","0xF3","0x0F","0xF7","0x0F","0xFF","0x07","0xFF","0x07","0xFF","0x03","0xFF","0x03","0xFF","0x03","0xFF","0x01","0xFF","0x80","0x80","0x3F","0x00","0x3F","0x81","0x3F","0x80","0x1F","0xC2","0x3F","0xC0","0x0F","0xF4","0x0F","0xE4","0x07","0xF8","0x07","0xF0","0x07","0xF0","0x03","0xF8","0x03","0xF8","0x01","0xFC","0x01","0xFC","0x00","0xFE","0x7F","0x00","0xFF","0xC0","0xFF","0xC0","0xFF","0xC0","0xFF","0xE1","0xFF","0xE1","0xFF","0xF3","0xFF","0xF3","0xFF","0xFB","0xF7","0xFF","0xF7","0xFF","0xE7","0xFF","0xE3","0xFF","0xE3","0xFF","0xC1","0xFF","0xC1","0xFF","0x80","0x80","0x00","0x00","0x00","0x80","0x00","0xE1","0x01","0xC0","0x01","0xE2","0x03","0xE0","0x03","0xE4","0x03","0xF4","0x0F","0xF0","0x0B","0xF8","0x13","0xF8","0x11","0xFC","0x01","0xFC","0x20","0xFC","0x00","0xFE","0x3F","0x3F","0x7F","0x7F","0xFF","0xFF","0xFE","0xFF","0xFE","0xFF","0xFD","0xFF","0xFD","0xFF","0xFB","0xFF","0xFB","0xFF","0xFF","0xFB","0xF7","0xFB","0xFF","0xF3","0xEF","0xF1","0xFF","0xE1","0xDF","0xE1","0xDF","0xC0","0x40","0xC0","0x80","0x80","0x00","0x00","0x01","0x00","0x01","0x00","0x02","0x00","0x02","0x01","0x04","0x01","0x04","0x03","0x00","0x07","0x08","0x07","0x00","0x09","0x10","0x03","0x00","0x10","0x20","0x00","0x20","0x20","0x1F","0x80","0xDF","0xC0","0xDF","0xE0","0xEF","0xE0","0xEF","0xF0","0xFF","0xF0","0xF7","0xF1","0xFF","0xF9","0xFB","0xFB","0xFB","0xFF","0xFD","0xFF","0xFD","0xFF","0xFF","0xFF","0xFE","0xFF","0xFF","0xFF","0xFF","0x7F","0xE0","0x40","0x20","0x20","0x60","0x00","0xD0","0x10","0xF0","0x00","0xE0","0x08","0xF8","0x08","0xF0","0x00","0xF4","0x05","0xFC","0x01","0xFA","0x01","0xFE","0x01","0xFC","0x00","0xFF","0x00","0xFE","0x00","0x7F","0x80","0x3F","0xCF","0x7F","0xFF","0x7F","0xBF","0x7F","0xBF","0xFF","0x7F","0xFF","0x7F","0xFE","0xFF","0xFE","0xFF","0xFF","0xFF","0xFD","0xFF","0xFF","0xFF","0xFB","0xFF","0xFB","0xFF","0xF7","0xFB","0xF7","0xFF","0xFF","0xFF","0x00","0x30","0x3F","0x80","0x3F","0xC0","0xFF","0x40","0x7F","0x80","0x7E","0x80","0xFF","0x00","0xFD","0x00","0xFC","0x00","0xFE","0x01","0xF8","0x01","0xFC","0x03","0xF4","0x03","0xF8","0x04","0x68","0x00","0x60","0x07","0xDF","0xFC","0xFF","0xFE","0xFF","0xFC","0xFF","0xF8","0xFF","0xF8","0xFF","0xF0","0xFF","0xE0","0x7F","0xC0","0xFF","0xC0","0xFF","0xC0","0xFF","0x80","0xFF","0x00","0xFF","0x00","0xFC","0x00","0xFC","0x00","0xFC","0x00","0x20","0x02","0x1F","0xFC","0x3F","0xF8","0x3F","0xF0","0x3F","0xF0","0x7F","0xE0","0x00","0x00","0x80","0x20","0xFF","0x80","0xFF","0x80","0xFF","0x00","0xFE","0x00","0xFE","0x00","0x03","0x00","0x0A","0x00","0xF8","0x00"]],"8Tw(LA8~j_|@CGcGVjif":["MainHello",[]],"ZB/w=2p^tT17{[.^{4lN":["_r",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",144926428]],"Wdv|s)sKi5w2g!ptBTWv":["CARTRAM",[]],"m2z%[*=9RCJJ%,jzp{^w":["EWRAM",[]],"pas}mCv+v#nSd51Kn#1$":["IORAM",[]],"H{~g(O6*Cm~XzS0VV1;.":["IWRAM",[]],"BIIaeU[k,+7^!J2afXkT":["VRAM",[]],"AY0ltbJCCbW!P`l`UfON":["_pixels",[]],"2^3x|Rqqju,bMtfgid%0":["arm9.rom",[]],"iQF=oI}+|V%s*{,h}nm{":["arm7.rom",[]],"HBshDh%Y+0(5_G*i%?=U-AND-list":["AND",[]],"HBshDh%Y+0(5_G*i%?=U-hex-list":["hex",[]],"HBshDh%Y+0(5_G*i%?=U-Palette-list":["Palette",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"HBshDh%Y+0(5_G*i%?=U-controller 1 state-list":["Mobile Keypad state",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"jJsF,.RD8,2t*cl*n?p6":["PAKROM",[]],"c;0;9@3O4n4FloYvD_w?":["OAM",[]],"-27BR8:6fV0T3v$8oN%(":["PALRAM",[]],"o9uHH*42(Vb;iI,jwYr2":["Menu Theme",["1","1","2","3","0","0","0","0"]],"E$.ShehU4wuDtCF}{|rY":["_registers",["0","0","0x0C","0x0A","0x04",0,"0","0x0A","0"]],"0#g*goO+jhSwd~1NreFg":["reg_names",[]],"I63N$8?MbeN%*VS^[e`a":["_memory",[]],"KoqBef(DQ*bEZsT@-v`L":["flag_names",[]],"*6ctRg,UST)3?h^IgrxZ":["oam",[]],"y8$TZGjr(vK|SME``+kg":["vram.lcdc",[]],"-:a738GrUS[#_#`8,`@%":["vram.engine_b.obj",[]],"iGLIHi+i9Aryu]bYNNR[":["vram.engine_a.obj",[]],".wS@_(1Qq^rK*BvUIeL=":["vram.engine_b.bg",[]],"f(0D*PHb:{[P[u.%V!V!":["vram.engine_a.bg",[]],"TC(NK4(a9G2=hyz,3gi/":["arm9.standard_palettes",[]],"($T#j?Vp+GTwR+m^G=dx":["arm9.io_ports",[]],"Z$-F@yScmi?NzxiL#9Z}":["core.shared_wram",[]],"9_eB!Y3}VuUy)u[LEDQh":["arm9.memory6",[]],"rSU1^x`,g=a?Z@^[xY+T":["arm9.memory5",[]],"8ZEv{03A@CaKJ(|pk`ZJ":["arm9.memory4",[]],"YA6yOCRUtqW/G7^UVjbW":["arm9.memory3",[]],";ZESGDsO)m0*x9$^rcW0":["arm9.memory2",[]],";%5/]?BxpeXK6De;T-%,":["arm9.memory1",[]],"maIIt!.}+ozpZ,ARCmRi":["arm7.vwram",[]],"Z#J.8^J=g($xQr6Bd]q;":["arm7.wireless.state_1",[]],"*hfP4YR*A??5WtLr/#n9":["arm7.wireless.state_0",[]],"[OgGz#.!E)`2Slmt%$Pa":["arm7.io_ports",[]],"Q]Hi]W=b+k/y*Sg6BSu0":["arm7.wram",[]],":S.^^KK:vu#%(*yMlfJO":["arm7.memory6",[]],"j9b@y^=0+Drg2s/R}(2x":["arm7.memory5",[]],"gX9cZO43r+,(hL2#O2Cp":["arm7.memory4",[]],"njAyQRkE{z;A1-]^jkB{":["arm7.memory3",[]],"QYb|2MR}$=p9XPp0!WTj":["arm7.memory2",[]],"Uvf04Qoh/5TL1wO%-Z.D":["arm7.memory1",[]],"{0m^r8XB06mP:WDHBc!.":["display.screen",[]],"#_[CK=fABC,PAZ_,6!9!":["arm7.flags",["false","false","false","false"]],"Fp2OyYdk}?8Nbn$hfEg`":["ROM",[]],"GH;evIT.P{UuSVtHs:`*":["*graphicsBuffer",[]],"a,K{HPy[l|6bp/FIJ0WV":["logtemp",[]],"!M?/`s.Bs8q0RAQblZa9":["logzz",[]],"xMDma1Q3J!y1yjTBt7(F":["pitches",[35.62368343770409,35.62368343770409,-1,143.62368343770407]],"2[P;mjw2X?Sv?vbz7D(?":["joypad buttons",[0,0,0,0,0,0,0,0]],"UrPQMZ+enGUmzM`fAi$,":["voice",[0,0,"0",0]],"*df.:JNR*^GpTa_k=NdQ":["wave",[]],"g|w%1=[YgXkc0z(63t|f":["volume",[0,0,0,0]],"Ok6b#fye79@mqZ]dIPt5":["vol",[]],"flj)QgXS,93H6OayZ`w[-temp.0-list":["temp.0",[]],"flj)QgXS,93H6OayZ`w[-temp.1-list":["temp.1",[]],"flj)QgXS,93H6OayZ`w[-FT.re-list":["FT.re",[]],"flj)QgXS,93H6OayZ`w[-FT.im-list":["FT.im",[]],"7nRsy`H|tfHd3Y=;qpJ|":["soundnames",["p0","p1","","no"]],"|wrT},$[.z]EPbXVhvr[":["_colours",["0x00000000","0x00C4FF","0x4072EE","0x00FFFF","0xFF0000","0x00FF00","0x0000FF","0xFFFF00","0x880000","0x008800","0x000088","0x888800","0xFF00FF","0x00FFFF","0x880088","0x008888","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"," 0x00FFFFFF"]],"KciKQ4B%I^{Ge#cm.(%/":["_scanline",[0,384]],"E)Xr`w!wLD[:xYMS;Sc^":["chip8.audiobuffer",[]],"2qm7j|WZgQAFvgiJG^Rn":["prg_rom",[76,245,197,96,120,216,162,255,154,173,2,32,16,251,173,2,32,16,251,169,0,141,0,32,141,1,32,141,5,32,141,5,32,173,2,32,162,32,142,6,32,162,0,142,6,32,162,0,160,15,169,0,141,7,32,202,208,250,136,208,247,169,63,141,6,32,169,0,141,6,32,162,0,189,120,255,141,7,32,232,224,32,208,245,169,192,141,23,64,169,0,141,21,64,169,120,133,208,169,251,133,209,169,127,133,211,160,0,140,6,32,140,6,32,169,0,133,215,169,7,133,208,169,195,133,209,32,167,194,32,141,194,162,18,32,97,194,165,213,74,74,74,176,28,74,176,12,74,176,39,74,176,3,76,129,192,76,38,193,32,111,198,198,215,16,219,169,13,133,215,208,213,32,111,198,230,215,165,215,201,14,144,202,169,0,133,215,240,196,32,137,198,165,215,240,6,32,237,192,76,129,192,169,0,133,216,230,215,32,237,192,230,215,165,215,201,14,208,245,169,0,133,215,165,216,240,2,169,255,133,0,32,237,193,76,129,192,165,215,10,170,189,10,193,141,0,2,189,11,193,141,1,2,169,193,72,169,222,72,169,0,133,0,108,0,2,45,199,45,199,219,199,133,200,222,203,248,205,238,206,162,207,116,209,251,212,212,193,74,223,184,219,170,225,169,0,133,215,169,146,133,208,169,196,133,209,32,167,194,32,141,194,162,15,32,97,194,165,213,74,74,74,176,28,74,176,12,74,176,39,74,176,3,76,53,193,76,114,192,32,111,198,198,215,16,219,169,10,133,215,208,213,32,111,198,230,215,165,215,201,11,144,202,169,0,133,215,240,196,32,137,198,165,215,240,6,32,161,193,76,53,193,169,0,133,216,230,215,32,161,193,230,215,165,215,201,11,208,245,169,0,133,215,165,216,240,2,169,255,133,0,32,237,193,76,53,193,165,215,10,170,189,190,193,141,0,2,189,191,193,141,1,2,169,193,72,169,222,72,169,0,133,0,108,0,2,163,198,163,198,30,229,61,231,211,232,22,233,134,235,246,237,102,240,214,242,70,245,169,0,133,0,32,0,217,32,224,218,234,234,234,165,0,240,2,133,216,76,237,193,76,129,192,32,141,194,169,0,133,211,165,215,24,105,4,10,38,211,10,38,211,10,38,211,10,38,211,10,38,211,72,165,211,9,32,141,6,32,104,9,4,141,6,32,165,0,240,29,201,255,240,38,74,74,74,74,170,189,81,194,141,7,32,165,0,41,15,170,189,81,194,141,7,32,76,148,194,169,79,141,7,32,169,75,141,7,32,76,148,194,169,69,141,7,32,169,114,141,7,32,76,148,194,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,165,215,24,105,4,168,169,132,141,0,32,169,32,141,6,32,169,2,141,6,32,169,32,136,200,208,2,169,42,141,7,32,136,202,208,241,169,128,141,0,32,76,148,194,165,210,197,210,240,252,96,169,0,141,5,32,141,5,32,169,0,141,6,32,169,0,141,6,32,96,169,0,141,0,32,141,1,32,32,237,194,169,32,141,6,32,160,0,140,6,32,162,32,177,208,240,32,201,255,240,13,141,7,32,200,208,2,230,209,202,208,237,240,233,200,208,2,230,209,169,32,141,7,32,202,208,248,240,218,169,128,141,0,32,169,14,141,1,32,96,169,32,141,6,32,169,0,141,6,32,162,30,169,32,160,32,141,7,32,136,208,250,202,208,245,96,255,255,255,255,32,32,32,32,45,45,32,82,117,110,32,97,108,108,32,116,101,115,116,115,255,32,32,32,32,45,45,32,66,114,97,110,99,104,32,116,101,115,116,115,255,32,32,32,32,45,45,32,70,108,97,103,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,109,109,101,100,105,97,116,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,109,112,108,105,101,100,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,116,97,99,107,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,99,99,117,109,117,108,97,116,111,114,32,116,101,115,116,115,255,32,32,32,32,45,45,32,40,73,110,100,105,114,101,99,116,44,88,41,32,116,101,115,116,115,255,32,32,32,32,45,45,32,90,101,114,111,112,97,103,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,40,73,110,100,105,114,101,99,116,41,44,89,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,44,89,32,116,101,115,116,115,255,32,32,32,32,45,45,32,90,101,114,111,112,97,103,101,44,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,44,88,32,116,101,115,116,115,255,255,255,32,32,32,32,85,112,47,68,111,119,110,58,32,115,101,108,101,99,116,32,116,101,115,116,255,32,32,32,32,32,32,83,116,97,114,116,58,32,114,117,110,32,116,101,115,116,255,32,32,32,32,32,83,101,108,101,99,116,58,32,73,110,118,97,108,105,100,32,111,112,115,33,255,0,255,255,255,255,32,32,32,32,45,45,32,82,117,110,32,97,108,108,32,116,101,115,116,115,255,32,32,32,32,45,45,32,78,79,80,32,116,101,115,116,115,255,32,32,32,32,45,45,32,76,65,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,65,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,66,67,32,116,101,115,116,32,40,111,112,99,111,100,101,32,48,69,66,104,41,255,32,32,32,32,45,45,32,68,67,80,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,83,66,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,76,79,32,116,101,115,116,115,255,32,32,32,32,45,45,32,82,76,65,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,82,69,32,116,101,115,116,115,255,32,32,32,32,45,45,32,82,82,65,32,116,101,115,116,115,255,255,255,255,255,255,32,32,32,32,85,112,47,68,111,119,110,58,32,115,101,108,101,99,116,32,116,101,115,116,255,32,32,32,32,32,32,83,116,97,114,116,58,32,114,117,110,32,116,101,115,116,255,32,32,32,32,32,83,101,108,101,99,116,58,32,78,111,114,109,97,108,32,111,112,115,255,0,72,138,72,173,2,32,169,32,141,6,32,169,64,141,6,32,230,210,169,0,141,5,32,141,5,32,169,0,141,6,32,169,0,141,6,32,162,9,142,22,64,202,142,22,64,173,22,64,74,38,212,202,208,247,165,212,170,69,214,37,212,133,213,134,214,104,170,104,64,64,162,0,134,0,134,16,134,17,32,45,199,32,219,199,32,133,200,32,222,203,32,248,205,32,238,206,32,162,207,32,116,209,32,251,212,32,0,217,165,0,133,16,169,0,133,0,32,224,218,32,74,223,32,184,219,32,170,225,32,163,198,32,30,229,32,61,231,32,211,232,32,22,233,32,134,235,32,246,237,32,102,240,32,214,242,165,0,133,17,169,0,133,0,32,70,245,165,0,5,16,5,17,240,14,32,111,198,166,0,134,2,166,16,134,3,76,110,198,32,137,198,96,169,3,141,21,64,169,135,141,0,64,169,137,141,1,64,169,240,141,2,64,169,0,141,3,64,96,169,2,141,21,64,169,63,141,4,64,169,154,141,5,64,169,255,141,6,64,169,0,141,7,64,96,160,78,169,255,133,1,32,176,198,32,183,198,96,169,255,72,169,170,208,5,169,52,72,169,85,40,4,169,68,169,100,169,234,234,234,234,8,72,12,169,169,234,234,234,234,8,72,20,169,52,169,84,169,116,169,212,169,244,169,234,234,234,234,8,72,26,58,90,122,218,250,128,137,234,234,234,234,8,72,28,169,169,60,169,169,92,169,169,124,169,169,220,169,169,252,169,169,234,234,234,234,8,72,162,5,104,201,85,240,10,201,170,240,6,104,132,0,76,40,199,104,41,203,201,0,240,6,201,203,240,2,132,0,200,202,208,224,96,234,56,176,4,162,1,134,0,234,24,176,3,76,64,199,162,2,134,0,234,56,144,3,76,75,199,162,3,134,0,234,24,144,4,162,4,134,0,234,169,0,240,4,162,5,134,0,234,169,64,240,3,76,104,199,162,6,134,0,234,169,64,208,4,162,7,134,0,234,169,0,208,3,76,125,199,162,8,134,0,234,169,255,133,1,36,1,112,4,162,9,134,0,234,36,1,80,3,76,150,199,162,10,134,0,234,169,0,133,1,36,1,80,4,162,11,134,0,234,36,1,112,3,76,175,199,162,12,134,0,234,169,0,16,4,162,13,134,0,234,169,128,16,3,76,217,199,162,14,134,0,234,169,128,48,4,162,15,134,0,234,169,0,48,3,76,217,199,162,16,134,0,234,96,234,169,255,133,1,36,1,169,0,56,120,248,8,104,41,239,201,111,240,4,162,17,134,0,234,169,64,133,1,36,1,216,169,16,24,8,104,41,239,201,100,240,4,162,18,134,0,234,169,128,133,1,36,1,248,169,0,56,8,104,41,239,201,47,240,4,162,19,134,0,234,169,255,72,40,208,9,16,7,80,5,144,3,76,53,200,162,20,134,0,234,169,4,72,40,240,9,48,7,112,5,176,3,76,73,200,162,21,134,0,234,248,169,255,133,1,36,1,24,169,0,72,169,255,104,208,9,48,7,80,5,176,3,76,103,200,162,22,134,0,234,169,0,133,1,36,1,56,169,255,72,169,0,104,240,9,16,7,112,5,144,3,76,132,200,162,23,134,0,96,234,24,169,255,133,1,36,1,169,85,9,170,176,11,16,9,201,255,208,5,80,3,76,162,200,162,24,134,0,234,56,184,169,0,9,0,208,9,112,7,144,5,48,3,76,184,200,162,25,134,0,234,24,36,1,169,85,41,170,208,9,80,7,176,5,48,3,76,207,200,162,26,134,0,234,56,184,169,248,41,239,144,11,16,9,201,232,208,5,112,3,76,231,200,162,27,134,0,234,24,36,1,169,95,73,170,176,11,16,9,201,245,208,5,80,3,76,0,201,162,28,134,0,234,56,184,169,112,73,112,208,9,112,7,144,5,48,3,76,22,201,162,29,134,0,234,24,36,1,169,0,105,105,48,11,176,9,201,105,208,5,112,3,76,47,201,162,30,134,0,234,56,248,36,1,169,1,105,105,48,11,176,9,201,107,208,5,112,3,76,73,201,162,31,134,0,234,216,56,184,169,127,105,127,16,11,176,9,201,255,208,5,80,3,76,98,201,162,32,134,0,234,24,36,1,169,127,105,128,16,11,176,9,201,255,208,5,112,3,76,123,201,162,33,134,0,234,56,184,169,127,105,128,208,9,48,7,112,5,144,3,76,145,201,162,34,134,0,234,56,184,169,159,240,9,16,7,112,5,144,3,76,165,201,162,35,134,0,234,24,36,1,169,0,208,9,48,7,80,5,176,3,76,186,201,162,35,134,0,234,36,1,169,64,201,64,48,9,144,7,208,5,80,3,76,208,201,162,36,134,0,234,184,201,63,240,9,48,7,144,5,112,3,76,227,201,162,37,134,0,234,201,65,240,7,16,5,16,3,76,243,201,162,38,134,0,234,169,128,201,0,240,7,16,5,144,3,76,5,202,162,39,134,0,234,201,128,208,7,48,5,144,3,76,21,202,162,40,134,0,234,201,129,176,7,240,5,16,3,76,37,202,162,41,134,0,234,201,127,144,7,240,5,48,3,76,53,202,162,42,134,0,234,36,1,160,64,192,64,208,9,48,7,144,5,80,3,76,75,202,162,43,134,0,234,184,192,63,240,9,48,7,144,5,112,3,76,94,202,162,44,134,0,234,192,65,240,7,16,5,16,3,76,110,202,162,45,134,0,234,160,128,192,0,240,7,16,5,144,3,76,128,202,162,46,134,0,234,192,128,208,7,48,5,144,3,76,144,202,162,47,134,0,234,192,129,176,7,240,5,16,3,76,160,202,162,48,134,0,234,192,127,144,7,240,5,48,3,76,176,202,162,49,134,0,234,36,1,162,64,224,64,208,9,48,7,144,5,80,3,76,198,202,169,50,133,0,234,184,224,63,240,9,48,7,144,5,112,3,76,217,202,169,51,133,0,234,224,65,240,7,16,5,16,3,76,233,202,169,52,133,0,234,162,128,224,0,240,7,16,5,144,3,76,251,202,169,53,133,0,234,224,128,208,7,48,5,144,3,76,11,203,169,54,133,0,234,224,129,176,7,240,5,16,3,76,27,203,169,55,133,0,234,224,127,144,7,240,5,48,3,76,43,203,169,56,133,0,234,56,184,162,159,240,9,16,7,112,5,144,3,76,63,203,162,57,134,0,234,24,36,1,162,0,208,9,48,7,80,5,176,3,76,84,203,162,58,134,0,234,56,184,160,159,240,9,16,7,112,5,144,3,76,104,203,162,59,134,0,234,24,36,1,160,0,208,9,48,7,80,5,176,3,76,125,203,162,60,134,0,234,169,85,162,170,160,51,201,85,208,35,224,170,208,31,192,51,208,27,201,85,208,23,224,170,208,19,192,51,208,15,201,86,240,11,224,171,240,7,192,52,240,3,76,175,203,162,61,134,0,160,113,32,49,249,233,64,32,55,249,200,32,71,249,233,63,32,76,249,200,32,92,249,233,65,32,98,249,200,32,114,249,233,0,32,118,249,200,32,128,249,233,127,32,132,249,96,234,169,255,133,1,169,68,162,85,160,102,232,136,224,86,208,33,192,101,208,29,232,232,136,136,224,88,208,21,192,99,208,17,202,200,224,87,208,11,192,100,208,7,201,68,208,3,76,20,204,162,62,134,0,234,56,162,105,169,150,36,1,160,255,200,208,61,48,59,144,57,80,55,192,0,208,51,200,240,48,48,46,144,44,80,42,24,184,160,0,136,240,35,16,33,176,31,112,29,192,255,208,25,24,136,240,21,16,19,176,17,112,15,192,254,208,11,201,150,208,7,224,105,208,3,76,98,204,162,63,134,0,234,56,160,105,169,150,36,1,162,255,232,208,61,48,59,144,57,80,55,224,0,208,51,232,240,48,48,46,144,44,80,42,24,184,162,0,202,240,35,16,33,176,31,112,29,224,255,208,25,24,202,240,21,16,19,176,17,112,15,224,254,208,11,201,150,208,7,192,105,208,3,76,176,204,162,64,134,0,234,169,133,162,52,160,153,24,36,1,168,240,46,176,44,80,42,16,40,201,133,208,36,224,52,208,32,192,133,208,28,169,0,56,184,168,208,21,144,19,112,17,48,15,201,0,208,11,224,52,208,7,192,0,208,3,76,239,204,162,65,134,0,234,169,133,162,52,160,153,24,36,1,170,240,46,176,44,80,42,16,40,201,133,208,36,224,133,208,32,192,153,208,28,169,0,56,184,170,208,21,144,19,112,17,48,15,201,0,208,11,224,0,208,7,192,153,208,3,76,46,205,162,66,134,0,234,169,133,162,52,160,153,24,36,1,152,240,46,176,44,80,42,16,40,201,153,208,36,224,52,208,32,192,153,208,28,160,0,56,184,152,208,21,144,19,112,17,48,15,201,0,208,11,224,52,208,7,192,0,208,3,76,109,205,162,67,134,0,234,169,133,162,52,160,153,24,36,1,138,240,46,176,44,80,42,48,40,201,52,208,36,224,52,208,32,192,153,208,28,162,0,56,184,138,208,21,144,19,112,17,48,15,201,0,208,11,224,0,208,7,192,153,208,3,76,172,205,162,68,134,0,234,186,142,255,7,160,51,162,105,169,132,24,36,1,154,240,50,16,48,176,46,80,44,201,132,208,40,224,105,208,36,192,51,208,32,160,1,169,4,56,184,162,0,186,240,21,48,19,144,17,112,15,224,105,208,11,201,4,208,7,192,1,208,3,76,243,205,162,69,134,0,174,255,7,154,96,169,255,133,1,186,142,255,7,234,162,128,154,169,51,72,169,105,72,186,224,126,208,32,104,201,105,208,27,104,201,51,208,22,186,224,128,208,17,173,128,1,201,51,208,10,173,127,1,201,105,208,3,76,51,206,162,70,134,0,234,162,128,154,32,61,206,76,91,206,186,224,126,208,25,104,104,186,224,128,208,18,169,0,32,78,206,104,201,77,208,8,104,201,206,208,3,76,95,206,162,71,134,0,234,169,206,72,169,102,72,96,162,119,160,105,24,36,1,169,131,32,102,206,240,36,16,34,176,32,80,30,201,131,208,26,192,105,208,22,224,119,208,18,56,184,169,0,32,102,206,208,9,48,7,144,5,112,3,76,157,206,162,72,134,0,234,169,206,72,169,174,72,169,101,72,169,85,160,136,162,153,64,48,53,80,51,240,49,144,47,201,85,208,43,192,136,208,39,224,153,208,35,169,206,72,169,206,72,169,135,72,169,85,64,16,21,112,19,208,17,144,15,201,85,208,11,192,136,208,7,224,153,208,3,76,233,206,162,73,134,0,174,255,7,154,96,162,85,160,105,169,255,133,1,234,36,1,56,169,1,74,144,29,208,27,48,25,80,23,201,0,208,19,184,169,170,74,176,13,240,11,48,9,112,7,201,85,208,3,76,32,207,162,74,134,0,234,36,1,56,169,128,10,144,30,208,28,48,26,80,24,201,0,208,20,184,56,169,85,10,176,13,240,11,16,9,112,7,201,170,208,3,76,75,207,162,75,134,0,234,36,1,56,169,1,106,144,30,240,28,16,26,80,24,201,128,208,20,184,24,169,85,106,144,13,240,11,48,9,112,7,201,42,208,3,76,118,207,162,76,134,0,234,36,1,56,169,128,42,144,30,240,28,48,26,80,24,201,1,208,20,184,24,169,85,42,176,13,240,11,16,9,112,7,201,170,208,3,76,161,207,162,77,134,0,96,165,0,141,255,7,169,0,133,128,169,2,133,129,169,255,133,1,169,0,133,130,169,3,133,131,133,132,169,0,133,255,169,4,133,0,169,90,141,0,2,169,91,141,0,3,169,92,141,3,3,169,93,141,0,4,162,0,161,128,201,90,208,31,232,232,161,128,201,91,208,23,232,161,128,201,92,208,16,162,0,161,255,201,93,208,8,162,129,161,255,201,90,240,5,169,88,141,255,7,169,170,162,0,129,128,232,232,169,171,129,128,232,169,172,129,128,162,0,169,173,129,255,173,0,2,201,170,208,21,173,0,3,201,171,208,14,173,3,3,201,172,208,7,173,0,4,201,173,240,5,169,89,141,255,7,173,255,7,133,0,169,0,141,0,3,169,170,141,0,2,162,0,160,90,32,182,247,1,128,32,192,247,200,32,206,247,1,130,32,211,247,200,32,223,247,33,128,32,229,247,200,169,239,141,0,3,32,241,247,33,130,32,246,247,200,32,4,248,65,128,32,10,248,200,169,112,141,0,3,32,24,248,65,130,32,29,248,200,169,105,141,0,2,32,41,248,97,128,32,47,248,200,32,61,248,97,128,32,67,248,200,169,127,141,0,2,32,81,248,97,128,32,86,248,200,169,128,141,0,2,32,100,248,97,128,32,106,248,200,32,120,248,97,128,32,125,248,200,169,64,141,0,2,32,137,248,193,128,32,142,248,200,72,169,63,141,0,2,104,32,154,248,193,128,32,156,248,200,72,169,65,141,0,2,104,193,128,32,168,248,200,72,169,0,141,0,2,104,32,178,248,193,128,32,181,248,200,72,169,128,141,0,2,104,193,128,32,191,248,200,72,169,129,141,0,2,104,193,128,32,201,248,200,72,169,127,141,0,2,104,193,128,32,211,248,200,169,64,141,0,2,32,49,249,225,128,32,55,249,200,169,63,141,0,2,32,71,249,225,128,32,76,249,200,169,65,141,0,2,32,92,249,225,128,32,98,249,200,169,0,141,0,2,32,114,249,225,128,32,118,249,200,169,127,141,0,2,32,128,249,225,128,32,132,249,96,169,85,133,120,169,255,133,1,36,1,160,17,162,35,169,0,165,120,240,16,48,14,201,85,208,10,192,17,208,6,224,35,80,2,240,4,169,118,133,0,169,70,36,1,133,120,240,10,16,8,80,6,165,120,201,70,240,4,169,119,133,0,169,85,133,120,36,1,169,17,162,35,160,0,164,120,240,16,48,14,192,85,208,10,201,17,208,6,224,35,80,2,240,4,169,120,133,0,160,70,36,1,132,120,240,10,16,8,80,6,164,120,192,70,240,4,169,121,133,0,36,1,169,85,133,120,160,17,169,35,162,0,166,120,240,16,48,14,224,85,208,10,192,17,208,6,201,35,80,2,240,4,169,122,133,0,162,70,36,1,134,120,240,10,16,8,80,6,166,120,224,70,240,4,169,123,133,0,169,192,133,120,162,51,160,136,169,5,36,120,16,16,80,14,208,12,201,5,208,8,224,51,208,4,192,136,240,4,169,124,133,0,169,3,133,120,169,1,36,120,48,8,112,6,240,4,201,1,240,4,169,125,133,0,160,126,169,170,133,120,32,182,247,5,120,32,192,247,200,169,0,133,120,32,206,247,5,120,32,211,247,200,169,170,133,120,32,223,247,37,120,32,229,247,200,169,239,133,120,32,241,247,37,120,32,246,247,200,169,170,133,120,32,4,248,69,120,32,10,248,200,169,112,133,120,32,24,248,69,120,32,29,248,200,169,105,133,120,32,41,248,101,120,32,47,248,200,32,61,248,101,120,32,67,248,200,169,127,133,120,32,81,248,101,120,32,86,248,200,169,128,133,120,32,100,248,101,120,32,106,248,200,32,120,248,101,120,32,125,248,200,169,64,133,120,32,137,248,197,120,32,142,248,200,72,169,63,133,120,104,32,154,248,197,120,32,156,248,200,72,169,65,133,120,104,197,120,32,168,248,200,72,169,0,133,120,104,32,178,248,197,120,32,181,248,200,72,169,128,133,120,104,197,120,32,191,248,200,72,169,129,133,120,104,197,120,32,201,248,200,72,169,127,133,120,104,197,120,32,211,248,200,169,64,133,120,32,49,249,229,120,32,55,249,200,169,63,133,120,32,71,249,229,120,32,76,249,200,169,65,133,120,32,92,249,229,120,32,98,249,200,169,0,133,120,32,114,249,229,120,32,118,249,200,169,127,133,120,32,128,249,229,120,32,132,249,200,169,64,133,120,32,137,248,170,228,120,32,142,248,200,169,63,133,120,32,154,248,228,120,32,156,248,200,169,65,133,120,228,120,32,168,248,200,169,0,133,120,32,178,248,170,228,120,32,181,248,200,169,128,133,120,228,120,32,191,248,200,169,129,133,120,228,120,32,201,248,200,169,127,133,120,228,120,32,211,248,200,152,170,169,64,133,120,32,221,248,196,120,32,226,248,232,169,63,133,120,32,238,248,196,120,32,240,248,232,169,65,133,120,196,120,32,252,248,232,169,0,133,120,32,6,249,196,120,32,9,249,232,169,128,133,120,196,120,32,19,249,232,169,129,133,120,196,120,32,29,249,232,169,127,133,120,196,120,32,39,249,232,138,168,32,144,249,133,120,70,120,165,120,32,157,249,200,133,120,70,120,165,120,32,173,249,200,32,189,249,133,120,6,120,165,120,32,195,249,200,133,120,6,120,165,120,32,212,249,200,32,228,249,133,120,102,120,165,120,32,234,249,200,133,120,102,120,165,120,32,251,249,200,32,10,250,133,120,38,120,165,120,32,16,250,200,133,120,38,120,165,120,32,33,250,169,255,133,120,133,1,36,1,56,230,120,208,12,48,10,80,8,144,6,165,120,201,0,240,4,169,171,133,0,169,127,133,120,184,24,230,120,240,12,16,10,112,8,176,6,165,120,201,128,240,4,169,172,133,0,169,0,133,120,36,1,56,198,120,240,12,16,10,80,8,144,6,165,120,201,255,240,4,169,173,133,0,169,128,133,120,184,24,198,120,240,12,48,10,112,8,176,6,165,120,201,127,240,4,169,174,133,0,169,1,133,120,198,120,240,4,169,175,133,0,96,169,85,141,120,6,169,255,133,1,36,1,160,17,162,35,169,0,173,120,6,240,16,48,14,201,85,208,10,192,17,208,6,224,35,80,2,240,4,169,176,133,0,169,70,36,1,141,120,6,240,11,16,9,80,7,173,120,6,201,70,240,4,169,177,133,0,169,85,141,120,6,36,1,169,17,162,35,160,0,172,120,6,240,16,48,14,192,85,208,10,201,17,208,6,224,35,80,2,240,4,169,178,133,0,160,70,36,1,140,120,6,240,11,16,9,80,7,172,120,6,192,70,240,4,169,179,133,0,36,1,169,85,141,120,6,160,17,169,35,162,0,174,120,6,240,16,48,14,224,85,208,10,192,17,208,6,201,35,80,2,240,4,169,180,133,0,162,70,36,1,142,120,6,240,11,16,9,80,7,174,120,6,224,70,240,4,169,181,133,0,169,192,141,120,6,162,51,160,136,169,5,44,120,6,16,16,80,14,208,12,201,5,208,8,224,51,208,4,192,136,240,4,169,182,133,0,169,3,141,120,6,169,1,44,120,6,48,8,112,6,240,4,201,1,240,4,169,183,133,0,160,184,169,170,141,120,6,32,182,247,13,120,6,32,192,247,200,169,0,141,120,6,32,206,247,13,120,6,32,211,247,200,169,170,141,120,6,32,223,247,45,120,6,32,229,247,200,169,239,141,120,6,32,241,247,45,120,6,32,246,247,200,169,170,141,120,6,32,4,248,77,120,6,32,10,248,200,169,112,141,120,6,32,24,248,77,120,6,32,29,248,200,169,105,141,120,6,32,41,248,109,120,6,32,47,248,200,32,61,248,109,120,6,32,67,248,200,169,127,141,120,6,32,81,248,109,120,6,32,86,248,200,169,128,141,120,6,32,100,248,109,120,6,32,106,248,200,32,120,248,109,120,6,32,125,248,200,169,64,141,120,6,32,137,248,205,120,6,32,142,248,200,72,169,63,141,120,6,104,32,154,248,205,120,6,32,156,248,200,72,169,65,141,120,6,104,205,120,6,32,168,248,200,72,169,0,141,120,6,104,32,178,248,205,120,6,32,181,248,200,72,169,128,141,120,6,104,205,120,6,32,191,248,200,72,169,129,141,120,6,104,205,120,6,32,201,248,200,72,169,127,141,120,6,104,205,120,6,32,211,248,200,169,64,141,120,6,32,49,249,237,120,6,32,55,249,200,169,63,141,120,6,32,71,249,237,120,6,32,76,249,200,169,65,141,120,6,32,92,249,237,120,6,32,98,249,200,169,0,141,120,6,32,114,249,237,120,6,32,118,249,200,169,127,141,120,6,32,128,249,237,120,6,32,132,249,200,169,64,141,120,6,32,137,248,170,236,120,6,32,142,248,200,169,63,141,120,6,32,154,248,236,120,6,32,156,248,200,169,65,141,120,6,236,120,6,32,168,248,200,169,0,141,120,6,32,178,248,170,236,120,6,32,181,248,200,169,128,141,120,6,236,120,6,32,191,248,200,169,129,141,120,6,236,120,6,32,201,248,200,169,127,141,120,6,236,120,6,32,211,248,200,152,170,169,64,141,120,6,32,221,248,204,120,6,32,226,248,232,169,63,141,120,6,32,238,248,204,120,6,32,240,248,232,169,65,141,120,6,204,120,6,32,252,248,232,169,0,141,120,6,32,6,249,204,120,6,32,9,249,232,169,128,141,120,6,204,120,6,32,19,249,232,169,129,141,120,6,204,120,6,32,29,249,232,169,127,141,120,6,204,120,6,32,39,249,232,138,168,32,144,249,141,120,6,78,120,6,173,120,6,32,157,249,200,141,120,6,78,120,6,173,120,6,32,173,249,200,32,189,249,141,120,6,14,120,6,173,120,6,32,195,249,200,141,120,6,14,120,6,173,120,6,32,212,249,200,32,228,249,141,120,6,110,120,6,173,120,6,32,234,249,200,141,120,6,110,120,6,173,120,6,32,251,249,200,32,10,250,141,120,6,46,120,6,173,120,6,32,16,250,200,141,120,6,46,120,6,173,120,6,32,33,250,169,255,141,120,6,133,1,36,1,56,238,120,6,208,13,48,11,80,9,144,7,173,120,6,201,0,240,4,169,229,133,0,169,127,141,120,6,184,24,238,120,6,240,13,16,11,112,9,176,7,173,120,6,201,128,240,4,169,230,133,0,169,0,141,120,6,36,1,56,206,120,6,240,13,16,11,80,9,144,7,173,120,6,201,255,240,4,169,231,133,0,169,128,141,120,6,184,24,206,120,6,240,13,48,11,112,9,176,7,173,120,6,201,127,240,4,169,232,133,0,169,1,141,120,6,206,120,6,240,4,169,233,133,0,96,169,163,133,51,169,137,141,0,3,169,18,141,69,2,169,255,133,1,162,101,169,0,133,137,169,3,133,138,160,0,56,169,0,184,177,137,240,12,144,10,112,8,201,137,208,4,224,101,240,4,169,234,133,0,169,255,133,151,133,152,36,152,160,52,177,151,201,163,208,2,176,4,169,235,133,0,165,0,72,169,70,133,255,169,1,133,0,160,255,177,255,201,18,240,4,104,169,236,72,104,133,0,162,237,169,0,133,51,169,4,133,52,160,0,24,169,255,133,1,36,1,169,170,141,0,4,169,85,17,51,176,8,16,6,201,255,208,2,112,2,134,0,232,56,184,169,0,17,51,240,6,112,4,144,2,48,2,134,0,232,24,36,1,169,85,49,51,208,6,80,4,176,2,16,2,134,0,232,56,184,169,239,141,0,4,169,248,49,51,144,8,16,6,201,232,208,2,80,2,134,0,232,24,36,1,169,170,141,0,4,169,95,81,51,176,8,16,6,201,245,208,2,112,2,134,0,232,56,184,169,112,141,0,4,81,51,208,6,112,4,144,2,16,2,134,0,232,24,36,1,169,105,141,0,4,169,0,113,51,48,8,176,6,201,105,208,2,80,2,134,0,232,56,36,1,169,0,113,51,48,8,176,6,201,106,208,2,80,2,134,0,232,56,184,169,127,141,0,4,113,51,16,8,176,6,201,255,208,2,112,2,134,0,232,24,36,1,169,128,141,0,4,169,127,113,51,16,8,176,6,201,255,208,2,80,2,134,0,232,56,184,169,128,141,0,4,169,127,113,51,208,6,48,4,112,2,176,2,134,0,232,36,1,169,64,141,0,4,209,51,48,6,144,4,208,2,112,2,134,0,232,184,206,0,4,209,51,240,6,48,4,144,2,80,2,134,0,232,238,0,4,238,0,4,209,51,240,2,48,2,134,0,232,169,0,141,0,4,169,128,209,51,240,4,16,2,176,2,134,0,232,160,128,140,0,4,160,0,209,51,208,4,48,2,176,2,134,0,232,238,0,4,209,51,176,4,240,2,48,2,134,0,232,206,0,4,206,0,4,209,51,144,4,240,2,16,2,134,0,96,169,0,133,51,169,4,133,52,160,0,162,1,36,1,169,64,141,0,4,56,241,51,48,10,144,8,208,6,112,4,201,0,240,2,134,0,232,184,56,169,64,206,0,4,241,51,240,10,48,8,144,6,112,4,201,1,240,2,134,0,232,169,64,56,36,1,238,0,4,238,0,4,241,51,176,10,240,8,16,6,112,4,201,255,240,2,134,0,232,24,169,0,141,0,4,169,128,241,51,144,4,201,127,240,2,134,0,232,56,169,127,141,0,4,169,129,241,51,80,6,144,4,201,2,240,2,134,0,232,169,0,169,135,145,51,173,0,4,201,135,240,2,134,0,232,169,126,141,0,2,169,219,141,1,2,108,0,2,169,0,141,255,2,169,1,141,0,3,169,3,141,0,2,169,169,141,0,1,169,85,141,1,1,169,96,141,2,1,169,169,141,0,3,169,170,141,1,3,169,96,141,2,3,32,181,219,201,170,240,2,134,0,96,108,255,2,169,255,133,1,169,170,133,51,169,187,133,137,162,0,169,102,36,1,56,160,0,180,51,16,18,240,16,80,14,144,12,201,102,208,8,224,0,208,4,192,170,240,4,169,8,133,0,162,138,169,102,184,24,160,0,180,255,16,18,240,16,112,14,176,12,192,187,208,8,201,102,208,4,224,138,240,4,169,9,133,0,36,1,56,160,68,162,0,148,51,165,51,144,24,201,68,208,20,80,18,24,184,160,153,162,128,148,133,165,5,176,6,201,153,208,2,80,4,169,10,133,0,160,11,169,170,162,120,133,120,32,182,247,21,0,32,192,247,200,169,0,133,120,32,206,247,21,0,32,211,247,200,169,170,133,120,32,223,247,53,0,32,229,247,200,169,239,133,120,32,241,247,53,0,32,246,247,200,169,170,133,120,32,4,248,85,0,32,10,248,200,169,112,133,120,32,24,248,85,0,32,29,248,200,169,105,133,120,32,41,248,117,0,32,47,248,200,32,61,248,117,0,32,67,248,200,169,127,133,120,32,81,248,117,0,32,86,248,200,169,128,133,120,32,100,248,117,0,32,106,248,200,32,120,248,117,0,32,125,248,200,169,64,133,120,32,137,248,213,0,32,142,248,200,72,169,63,133,120,104,32,154,248,213,0,32,156,248,200,72,169,65,133,120,104,213,0,32,168,248,200,72,169,0,133,120,104,32,178,248,213,0,32,181,248,200,72,169,128,133,120,104,213,0,32,191,248,200,72,169,129,133,120,104,213,0,32,201,248,200,72,169,127,133,120,104,213,0,32,211,248,200,169,64,133,120,32,49,249,245,0,32,55,249,200,169,63,133,120,32,71,249,245,0,32,76,249,200,169,65,133,120,32,92,249,245,0,32,98,249,200,169,0,133,120,32,114,249,245,0,32,118,249,200,169,127,133,120,32,128,249,245,0,32,132,249,169,170,133,51,169,187,133,137,162,0,160,102,36,1,56,169,0,181,51,16,18,240,16,80,14,144,12,192,102,208,8,224,0,208,4,201,170,240,4,169,34,133,0,162,138,160,102,184,24,169,0,181,255,16,18,240,16,112,14,176,12,201,187,208,8,192,102,208,4,224,138,240,4,169,35,133,0,36,1,56,169,68,162,0,149,51,165,51,144,24,201,68,208,20,80,18,24,184,169,153,162,128,149,133,165,5,176,6,201,153,208,2,80,4,169,36,133,0,160,37,162,120,32,144,249,149,0,86,0,181,0,32,157,249,200,149,0,86,0,181,0,32,173,249,200,32,189,249,149,0,22,0,181,0,32,195,249,200,149,0,22,0,181,0,32,212,249,200,32,228,249,149,0,118,0,181,0,32,234,249,200,149,0,118,0,181,0,32,251,249,200,32,10,250,149,0,54,0,181,0,32,16,250,200,149,0,54,0,181,0,32,33,250,169,255,149,0,133,1,36,1,56,246,0,208,12,48,10,80,8,144,6,181,0,201,0,240,4,169,45,133,0,169,127,149,0,184,24,246,0,240,12,16,10,112,8,176,6,181,0,201,128,240,4,169,46,133,0,169,0,149,0,36,1,56,214,0,240,12,16,10,80,8,144,6,181,0,201,255,240,4,169,47,133,0,169,128,149,0,184,24,214,0,240,12,48,10,112,8,176,6,181,0,201,127,240,4,169,48,133,0,169,1,149,0,214,0,240,4,169,49,133,0,169,51,133,120,169,68,160,120,162,0,56,36,1,182,0,144,18,80,16,48,14,240,12,224,51,208,8,192,120,208,4,201,68,240,4,169,50,133,0,169,151,133,127,169,71,160,255,162,0,24,184,182,128,176,18,112,16,16,14,240,12,224,151,208,8,192,255,208,4,201,71,240,4,169,51,133,0,169,0,133,127,169,71,160,255,162,105,24,184,150,128,176,24,112,22,48,20,240,18,224,105,208,14,192,255,208,10,201,71,208,6,165,127,201,105,240,4,169,52,133,0,169,245,133,79,169,71,160,79,36,1,162,0,56,150,0,144,22,80,20,48,18,208,16,224,0,208,12,192,79,208,8,201,71,208,4,165,79,240,4,169,53,133,0,96,169,137,141,0,3,169,163,133,51,169,18,141,69,2,162,101,160,0,56,169,0,184,185,0,3,240,12,144,10,112,8,201,137,208,4,224,101,240,4,169,54,133,0,169,255,133,1,36,1,160,52,185,255,255,201,163,208,2,176,4,169,55,133,0,169,70,133,255,160,255,185,70,1,201,18,240,4,169,56,133,0,162,57,24,169,255,133,1,36,1,169,170,141,0,4,169,85,160,0,25,0,4,176,8,16,6,201,255,208,2,112,2,134,0,232,56,184,169,0,25,0,4,240,6,112,4,144,2,48,2,134,0,232,24,36,1,169,85,57,0,4,208,6,80,4,176,2,16,2,134,0,232,56,184,169,239,141,0,4,169,248,57,0,4,144,8,16,6,201,232,208,2,80,2,134,0,232,24,36,1,169,170,141,0,4,169,95,89,0,4,176,8,16,6,201,245,208,2,112,2,134,0,232,56,184,169,112,141,0,4,89,0,4,208,6,112,4,144,2,16,2,134,0,232,24,36,1,169,105,141,0,4,169,0,121,0,4,48,8,176,6,201,105,208,2,80,2,134,0,232,56,36,1,169,0,121,0,4,48,8,176,6,201,106,208,2,80,2,134,0,232,56,184,169,127,141,0,4,121,0,4,16,8,176,6,201,255,208,2,112,2,134,0,232,24,36,1,169,128,141,0,4,169,127,121,0,4,16,8,176,6,201,255,208,2,80,2,134,0,232,56,184,169,128,141,0,4,169,127,121,0,4,208,6,48,4,112,2,176,2,134,0,232,36,1,169,64,141,0,4,217,0,4,48,6,144,4,208,2,112,2,134,0,232,184,206,0,4,217,0,4,240,6,48,4,144,2,80,2,134,0,232,238,0,4,238,0,4,217,0,4,240,2,48,2,134,0,232,169,0,141,0,4,169,128,217,0,4,240,4,16,2,176,2,134,0,232,160,128,140,0,4,160,0,217,0,4,208,4,48,2,176,2,134,0,232,238,0,4,217,0,4,176,4,240,2,48,2,134,0,232,206,0,4,206,0,4,217,0,4,144,4,240,2,16,2,134,0,232,36,1,169,64,141,0,4,56,249,0,4,48,10,144,8,208,6,112,4,201,0,240,2,134,0,232,184,56,169,64,206,0,4,249,0,4,240,10,48,8,144,6,112,4,201,1,240,2,134,0,232,169,64,56,36,1,238,0,4,238,0,4,249,0,4,176,10,240,8,16,6,112,4,201,255,240,2,134,0,232,24,169,0,141,0,4,169,128,249,0,4,144,4,201,127,240,2,134,0,232,56,169,127,141,0,4,169,129,249,0,4,80,6,144,4,201,2,240,2,134,0,232,169,0,169,135,153,0,4,173,0,4,201,135,240,2,134,0,96,169,255,133,1,169,170,141,51,6,169,187,141,137,6,162,0,169,102,36,1,56,160,0,188,51,6,16,18,240,16,80,14,144,12,201,102,208,8,224,0,208,4,192,170,240,4,169,81,133,0,162,138,169,102,184,24,160,0,188,255,5,16,18,240,16,112,14,176,12,192,187,208,8,201,102,208,4,224,138,240,4,169,82,133,0,160,83,169,170,162,120,141,120,6,32,182,247,29,0,6,32,192,247,200,169,0,141,120,6,32,206,247,29,0,6,32,211,247,200,169,170,141,120,6,32,223,247,61,0,6,32,229,247,200,169,239,141,120,6,32,241,247,61,0,6,32,246,247,200,169,170,141,120,6,32,4,248,93,0,6,32,10,248,200,169,112,141,120,6,32,24,248,93,0,6,32,29,248,200,169,105,141,120,6,32,41,248,125,0,6,32,47,248,200,32,61,248,125,0,6,32,67,248,200,169,127,141,120,6,32,81,248,125,0,6,32,86,248,200,169,128,141,120,6,32,100,248,125,0,6,32,106,248,200,32,120,248,125,0,6,32,125,248,200,169,64,141,120,6,32,137,248,221,0,6,32,142,248,200,72,169,63,141,120,6,104,32,154,248,221,0,6,32,156,248,200,72,169,65,141,120,6,104,221,0,6,32,168,248,200,72,169,0,141,120,6,104,32,178,248,221,0,6,32,181,248,200,72,169,128,141,120,6,104,221,0,6,32,191,248,200,72,169,129,141,120,6,104,221,0,6,32,201,248,200,72,169,127,141,120,6,104,221,0,6,32,211,248,200,169,64,141,120,6,32,49,249,253,0,6,32,55,249,200,169,63,141,120,6,32,71,249,253,0,6,32,76,249,200,169,65,141,120,6,32,92,249,253,0,6,32,98,249,200,169,0,141,120,6,32,114,249,253,0,6,32,118,249,200,169,127,141,120,6,32,128,249,253,0,6,32,132,249,169,170,141,51,6,169,187,141,137,6,162,0,160,102,36,1,56,169,0,189,51,6,16,18,240,16,80,14,144,12,192,102,208,8,224,0,208,4,201,170,240,4,169,106,133,0,162,138,160,102,184,24,169,0,189,255,5,16,18,240,16,112,14,176,12,201,187,208,8,192,102,208,4,224,138,240,4,169,107,133,0,36,1,56,169,68,162,0,157,51,6,173,51,6,144,26,201,68,208,22,80,20,24,184,169,153,162,128,157,133,5,173,5,6,176,6,201,153,208,2,80,4,169,108,133,0,160,109,162,109,32,144,249,157,0,6,94,0,6,189,0,6,32,157,249,200,157,0,6,94,0,6,189,0,6,32,173,249,200,32,189,249,157,0,6,30,0,6,189,0,6,32,195,249,200,157,0,6,30,0,6,189,0,6,32,212,249,200,32,228,249,157,0,6,126,0,6,189,0,6,32,234,249,200,157,0,6,126,0,6,189,0,6,32,251,249,200,32,10,250,157,0,6,62,0,6,189,0,6,32,16,250,200,157,0,6,62,0,6,189,0,6,32,33,250,169,255,157,0,6,133,1,36,1,56,254,0,6,208,13,48,11,80,9,144,7,189,0,6,201,0,240,4,169,117,133,0,169,127,157,0,6,184,24,254,0,6,240,13,16,11,112,9,176,7,189,0,6,201,128,240,4,169,118,133,0,169,0,157,0,6,36,1,56,222,0,6,240,13,16,11,80,9,144,7,189,0,6,201,255,240,4,169,119,133,0,169,128,157,0,6,184,24,222,0,6,240,13,48,11,112,9,176,7,189,0,6,201,127,240,4,169,120,133,0,169,1,157,0,6,222,0,6,240,4,169,121,133,0,169,51,141,120,6,169,68,160,120,162,0,56,36,1,190,0,6,144,18,80,16,48,14,240,12,224,51,208,8,192,120,208,4,201,68,240,4,169,122,133,0,169,151,141,127,6,169,71,160,255,162,0,24,184,190,128,5,176,18,112,16,16,14,240,12,224,151,208,8,192,255,208,4,201,71,240,4,169,123,133,0,96,169,85,141,128,5,169,170,141,50,4,169,128,133,67,169,5,133,68,169,50,133,69,169,4,133,70,162,3,160,119,169,255,133,1,36,1,56,169,0,163,64,234,234,234,234,240,18,48,16,80,14,144,12,201,85,208,8,224,85,208,4,192,119,240,4,169,124,133,0,162,5,160,51,184,24,169,0,163,64,234,234,234,234,240,18,16,16,112,14,176,12,201,170,208,8,224,170,208,4,192,51,240,4,169,125,133,0,169,135,133,103,169,50,133,104,160,87,36,1,56,169,0,167,103,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,126,133,0,160,83,184,24,169,0,167,104,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,83,240,4,169,127,133,0,169,135,141,119,5,169,50,141,120,5,160,87,36,1,56,169,0,175,119,5,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,128,133,0,160,83,184,24,169,0,175,120,5,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,83,240,4,169,129,133,0,169,255,133,67,169,4,133,68,169,50,133,69,169,4,133,70,169,85,141,128,5,169,170,141,50,4,162,3,160,129,36,1,56,169,0,179,67,234,234,234,234,240,18,48,16,80,14,144,12,201,85,208,8,224,85,208,4,192,129,240,4,169,130,133,0,162,5,160,0,184,24,169,0,179,69,234,234,234,234,240,18,16,16,112,14,176,12,201,170,208,8,224,170,208,4,192,0,240,4,169,131,133,0,169,135,133,103,169,50,133,104,160,87,36,1,56,169,0,183,16,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,132,133,0,160,255,184,24,169,0,183,105,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,255,240,4,169,133,133,0,169,135,141,135,5,169,50,141,136,5,160,48,36,1,56,169,0,191,87,5,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,48,240,4,169,134,133,0,160,64,184,24,169,0,191,72,5,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,64,240,4,169,135,133,0,96,169,192,133,1,169,0,141,137,4,169,137,133,96,169,4,133,97,160,68,162,23,169,62,36,1,24,131,73,234,234,234,234,208,25,176,23,80,21,16,19,201,62,208,15,192,68,208,11,224,23,208,7,173,137,4,201,22,240,4,169,136,133,0,160,68,162,122,169,102,56,184,131,230,234,234,234,234,240,25,144,23,112,21,48,19,201,102,208,15,192,68,208,11,224,122,208,7,173,137,4,201,98,240,4,169,137,133,0,169,255,133,73,160,68,162,170,169,85,36,1,24,135,73,234,234,234,234,240,24,176,22,80,20,16,18,201,85,208,14,192,68,208,10,224,170,208,6,165,73,201,0,240,4,169,138,133,0,169,0,133,86,160,88,162,239,169,102,56,184,135,86,234,234,234,234,240,24,144,22,112,20,48,18,201,102,208,14,192,88,208,10,224,239,208,6,165,86,201,102,240,4,169,139,133,0,169,255,141,73,5,160,229,162,175,169,245,36,1,24,143,73,5,234,234,234,234,240,25,176,23,80,21,16,19,201,245,208,15,192,229,208,11,224,175,208,7,173,73,5,201,165,240,4,169,140,133,0,169,0,141,86,5,160,88,162,179,169,151,56,184,143,86,5,234,234,234,234,240,25,144,23,112,21,16,19,201,151,208,15,192,88,208,11,224,179,208,7,173,86,5,201,147,240,4,169,141,133,0,169,255,133,73,160,255,162,170,169,85,36,1,24,151,74,234,234,234,234,240,24,176,22,80,20,16,18,201,85,208,14,192,255,208,10,224,170,208,6,165,73,201,0,240,4,169,142,133,0,169,0,133,86,160,6,162,239,169,102,56,184,151,80,234,234,234,234,240,24,144,22,112,20,48,18,201,102,208,14,192,6,208,10,224,239,208,6,165,86,201,102,240,4,169,143,133,0,96,160,144,32,49,249,235,64,234,234,234,234,32,55,249,200,32,71,249,235,63,234,234,234,234,32,76,249,200,32,92,249,235,65,234,234,234,234,32,98,249,200,32,114,249,235,0,234,234,234,234,32,118,249,200,32,128,249,235,127,234,234,234,234,32,132,249,96,169,255,133,1,160,149,162,2,169,71,133,71,169,6,133,72,169,235,141,71,6,32,49,250,195,69,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,195,69,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,195,69,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,200,169,235,133,71,32,49,250,199,71,234,234,234,234,32,55,250,165,71,201,234,240,2,132,0,200,169,0,133,71,32,66,250,199,71,234,234,234,234,32,71,250,165,71,201,255,240,2,132,0,200,169,55,133,71,32,84,250,199,71,234,234,234,234,32,89,250,165,71,201,54,240,2,132,0,200,169,235,141,71,6,32,49,250,207,71,6,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,207,71,6,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,207,71,6,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,169,235,141,71,6,169,72,133,69,169,5,133,70,160,255,32,49,250,211,69,234,234,8,72,160,158,104,40,32,55,250,173,71,6,201,234,240,2,132,0,160,255,169,0,141,71,6,32,66,250,211,69,234,234,8,72,160,159,104,40,32,71,250,173,71,6,201,255,240,2,132,0,160,255,169,55,141,71,6,32,84,250,211,69,234,234,8,72,160,160,104,40,32,89,250,173,71,6,201,54,240,2,132,0,160,161,162,255,169,235,133,71,32,49,250,215,72,234,234,234,234,32,55,250,165,71,201,234,240,2,132,0,200,169,0,133,71,32,66,250,215,72,234,234,234,234,32,71,250,165,71,201,255,240,2,132,0,200,169,55,133,71,32,84,250,215,72,234,234,234,234,32,89,250,165,71,201,54,240,2,132,0,169,235,141,71,6,160,255,32,49,250,219,72,5,234,234,8,72,160,164,104,40,32,55,250,173,71,6,201,234,240,2,132,0,160,255,169,0,141,71,6,32,66,250,219,72,5,234,234,8,72,160,165,104,40,32,71,250,173,71,6,201,255,240,2,132,0,160,255,169,55,141,71,6,32,84,250,219,72,5,234,234,8,72,160,166,104,40,32,89,250,173,71,6,201,54,240,2,132,0,160,167,162,255,169,235,141,71,6,32,49,250,223,72,5,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,223,72,5,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,223,72,5,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,96,169,255,133,1,160,170,162,2,169,71,133,71,169,6,133,72,169,235,141,71,6,32,177,250,227,69,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,227,69,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,227,69,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,200,169,235,133,71,32,177,250,231,71,234,234,234,234,32,183,250,165,71,201,236,240,2,132,0,200,169,255,133,71,32,194,250,231,71,234,234,234,234,32,199,250,165,71,201,0,240,2,132,0,200,169,55,133,71,32,212,250,231,71,234,234,234,234,32,218,250,165,71,201,56,240,2,132,0,200,169,235,141,71,6,32,177,250,239,71,6,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,239,71,6,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,239,71,6,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,169,235,141,71,6,169,72,133,69,169,5,133,70,160,255,32,177,250,243,69,234,234,8,72,160,179,104,40,32,183,250,173,71,6,201,236,240,2,132,0,160,255,169,255,141,71,6,32,194,250,243,69,234,234,8,72,160,180,104,40,32,199,250,173,71,6,201,0,240,2,132,0,160,255,169,55,141,71,6,32,212,250,243,69,234,234,8,72,160,181,104,40,32,218,250,173,71,6,201,56,240,2,132,0,160,182,162,255,169,235,133,71,32,177,250,247,72,234,234,234,234,32,183,250,165,71,201,236,240,2,132,0,200,169,255,133,71,32,194,250,247,72,234,234,234,234,32,199,250,165,71,201,0,240,2,132,0,200,169,55,133,71,32,212,250,247,72,234,234,234,234,32,218,250,165,71,201,56,240,2,132,0,169,235,141,71,6,160,255,32,177,250,251,72,5,234,234,8,72,160,185,104,40,32,183,250,173,71,6,201,236,240,2,132,0,160,255,169,255,141,71,6,32,194,250,251,72,5,234,234,8,72,160,186,104,40,32,199,250,173,71,6,201,0,240,2,132,0,160,255,169,55,141,71,6,32,212,250,251,72,5,234,234,8,72,160,187,104,40,32,218,250,173,71,6,201,56,240,2,132,0,160,188,162,255,169,235,141,71,6,32,177,250,255,72,5,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,255,72,5,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,255,72,5,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,96,169,255,133,1,160,191,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,123,250,3,69,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,3,69,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,3,69,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,200,169,165,133,71,32,123,250,7,71,234,234,234,234,32,129,250,165,71,201,74,240,2,132,0,200,169,41,133,71,32,140,250,7,71,234,234,234,234,32,145,250,165,71,201,82,240,2,132,0,200,169,55,133,71,32,158,250,7,71,234,234,234,234,32,164,250,165,71,201,110,240,2,132,0,200,169,165,141,71,6,32,123,250,15,71,6,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,15,71,6,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,15,71,6,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,123,250,19,69,234,234,8,72,160,200,104,40,32,129,250,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,140,250,19,69,234,234,8,72,160,201,104,40,32,145,250,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,158,250,19,69,234,234,8,72,160,202,104,40,32,164,250,173,71,6,201,110,240,2,132,0,160,203,162,255,169,165,133,71,32,123,250,23,72,234,234,234,234,32,129,250,165,71,201,74,240,2,132,0,200,169,41,133,71,32,140,250,23,72,234,234,234,234,32,145,250,165,71,201,82,240,2,132,0,200,169,55,133,71,32,158,250,23,72,234,234,234,234,32,164,250,165,71,201,110,240,2,132,0,169,165,141,71,6,160,255,32,123,250,27,72,5,234,234,8,72,160,206,104,40,32,129,250,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,140,250,27,72,5,234,234,8,72,160,207,104,40,32,145,250,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,158,250,27,72,5,234,234,8,72,160,208,104,40,32,164,250,173,71,6,201,110,240,2,132,0,160,209,162,255,169,165,141,71,6,32,123,250,31,72,5,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,31,72,5,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,31,72,5,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,96,169,255,133,1,160,212,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,83,251,35,69,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,35,69,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,35,69,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,200,169,165,133,71,32,83,251,39,71,234,234,234,234,32,89,251,165,71,201,74,240,2,132,0,200,169,41,133,71,32,100,251,39,71,234,234,234,234,32,105,251,165,71,201,82,240,2,132,0,200,169,55,133,71,32,104,250,39,71,234,234,234,234,32,110,250,165,71,201,111,240,2,132,0,200,169,165,141,71,6,32,83,251,47,71,6,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,47,71,6,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,47,71,6,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,83,251,51,69,234,234,8,72,160,221,104,40,32,89,251,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,100,251,51,69,234,234,8,72,160,222,104,40,32,105,251,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,104,250,51,69,234,234,8,72,160,223,104,40,32,110,250,173,71,6,201,111,240,2,132,0,160,224,162,255,169,165,133,71,32,83,251,55,72,234,234,234,234,32,89,251,165,71,201,74,240,2,132,0,200,169,41,133,71,32,100,251,55,72,234,234,234,234,32,105,251,165,71,201,82,240,2,132,0,200,169,55,133,71,32,104,250,55,72,234,234,234,234,32,110,250,165,71,201,111,240,2,132,0,169,165,141,71,6,160,255,32,83,251,59,72,5,234,234,8,72,160,227,104,40,32,89,251,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,100,251,59,72,5,234,234,8,72,160,228,104,40,32,105,251,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,104,250,59,72,5,234,234,8,72,160,229,104,40,32,110,250,173,71,6,201,111,240,2,132,0,160,230,162,255,169,165,141,71,6,32,83,251,63,72,5,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,63,72,5,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,63,72,5,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,96,169,255,133,1,160,233,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,29,251,67,69,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,67,69,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,67,69,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,200,169,165,133,71,32,29,251,71,71,234,234,234,234,32,35,251,165,71,201,82,240,2,132,0,200,169,41,133,71,32,46,251,71,71,234,234,234,234,32,51,251,165,71,201,20,240,2,132,0,200,169,55,133,71,32,64,251,71,71,234,234,234,234,32,70,251,165,71,201,27,240,2,132,0,200,169,165,141,71,6,32,29,251,79,71,6,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,79,71,6,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,79,71,6,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,29,251,83,69,234,234,8,72,160,242,104,40,32,35,251,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,46,251,83,69,234,234,8,72,160,243,104,40,32,51,251,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,64,251,83,69,234,234,8,72,160,244,104,40,32,70,251,173,71,6,201,27,240,2,132,0,160,245,162,255,169,165,133,71,32,29,251,87,72,234,234,234,234,32,35,251,165,71,201,82,240,2,132,0,200,169,41,133,71,32,46,251,87,72,234,234,234,234,32,51,251,165,71,201,20,240,2,132,0,200,169,55,133,71,32,64,251,87,72,234,234,234,234,32,70,251,165,71,201,27,240,2,132,0,169,165,141,71,6,160,255,32,29,251,91,72,5,234,234,8,72,160,248,104,40,32,35,251,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,46,251,91,72,5,234,234,8,72,160,249,104,40,32,51,251,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,64,251,91,72,5,234,234,8,72,160,250,104,40,32,70,251,173,71,6,201,27,240,2,132,0,160,251,162,255,169,165,141,71,6,32,29,251,95,72,5,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,95,72,5,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,95,72,5,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,96,169,255,133,1,160,1,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,233,250,99,69,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,99,69,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,99,69,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,200,169,165,133,71,32,233,250,103,71,234,234,234,234,32,239,250,165,71,201,82,240,2,132,0,200,169,41,133,71,32,250,250,103,71,234,234,234,234,32,255,250,165,71,201,20,240,2,132,0,200,169,55,133,71,32,10,251,103,71,234,234,234,234,32,16,251,165,71,201,155,240,2,132,0,200,169,165,141,71,6,32,233,250,111,71,6,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,111,71,6,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,111,71,6,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,233,250,115,69,234,234,8,72,160,10,104,40,32,239,250,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,250,250,115,69,234,234,8,72,160,11,104,40,32,255,250,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,10,251,115,69,234,234,8,72,160,12,104,40,32,16,251,173,71,6,201,155,240,2,132,0,160,13,162,255,169,165,133,71,32,233,250,119,72,234,234,234,234,32,239,250,165,71,201,82,240,2,132,0,200,169,41,133,71,32,250,250,119,72,234,234,234,234,32,255,250,165,71,201,20,240,2,132,0,200,169,55,133,71,32,10,251,119,72,234,234,234,234,32,16,251,165,71,201,155,240,2,132,0,169,165,141,71,6,160,255,32,233,250,123,72,5,234,234,8,72,160,16,104,40,32,239,250,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,250,250,123,72,5,234,234,8,72,160,17,104,40,32,255,250,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,10,251,123,72,5,234,234,8,72,160,18,104,40,32,16,251,173,71,6,201,155,240,2,132,0,160,19,162,255,169,165,141,71,6,32,233,250,127,72,5,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,127,72,5,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,127,72,5,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,96,24,169,255,133,1,36,1,169,85,96,176,9,16,7,201,255,208,3,80,1,96,132,0,96,56,184,169,0,96,208,7,112,5,144,3,48,1,96,132,0,96,24,36,1,169,85,96,208,7,80,5,176,3,48,1,96,132,0,96,56,184,169,248,96,144,9,16,7,201,232,208,3,112,1,96,132,0,96,24,36,1,169,95,96,176,9,16,7,201,245,208,3,80,1,96,132,0,96,56,184,169,112,96,208,7,112,5,144,3,48,1,96,132,0,96,24,36,1,169,0,96,48,9,176,7,201,105,208,3,112,1,96,132,0,96,56,36,1,169,0,96,48,9,176,7,201,106,208,3,112,1,96,132,0,96,56,184,169,127,96,16,9,176,7,201,255,208,3,80,1,96,132,0,96,24,36,1,169,127,96,16,9,176,7,201,255,208,3,112,1,96,132,0,96,56,184,169,127,96,208,7,48,5,112,3,144,1,96,132,0,96,36,1,169,64,96,48,7,144,5,208,3,80,1,96,132,0,96,184,96,240,7,48,5,144,3,112,1,96,132,0,96,240,5,16,3,16,1,96,132,0,96,169,128,96,240,5,16,3,144,1,96,132,0,96,208,5,48,3,144,1,96,132,0,96,176,5,240,3,16,1,96,132,0,96,144,5,240,3,48,1,96,132,0,96,36,1,160,64,96,48,7,144,5,208,3,80,1,96,134,0,96,184,96,240,7,48,5,144,3,112,1,96,134,0,96,240,5,16,3,16,1,96,134,0,96,160,128,96,240,5,16,3,144,1,96,134,0,96,208,5,48,3,144,1,96,134,0,96,176,5,240,3,16,1,96,134,0,96,144,5,240,3,48,1,96,134,0,96,36,1,169,64,56,96,48,11,144,9,208,7,112,5,201,0,208,1,96,132,0,96,184,56,169,64,96,240,11,48,9,144,7,112,5,201,1,208,1,96,132,0,96,169,64,56,36,1,96,176,11,240,9,16,7,112,5,201,255,208,1,96,132,0,96,24,169,128,96,144,5,201,127,208,1,96,132,0,96,56,169,129,96,80,7,144,5,201,2,208,1,96,132,0,96,162,85,169,255,133,1,234,36,1,56,169,1,96,144,27,208,25,48,23,80,21,201,0,208,17,184,169,170,96,176,11,240,9,48,7,112,5,201,85,208,1,96,132,0,96,36,1,56,169,128,96,144,28,208,26,48,24,80,22,201,0,208,18,184,169,85,56,96,176,11,240,9,16,7,112,5,201,170,208,1,96,132,0,96,36,1,56,169,1,96,144,28,240,26,16,24,80,22,201,128,208,18,184,24,169,85,96,144,11,240,9,48,7,112,5,201,42,208,1,96,132,0,36,1,56,169,128,96,144,28,240,26,48,24,80,22,201,1,208,18,184,24,169,85,96,176,11,240,9,16,7,112,5,201,170,208,1,96,132,0,96,36,1,24,169,64,96,80,44,176,42,48,40,201,64,208,36,96,184,56,169,255,96,112,28,208,26,48,24,144,22,201,255,208,18,96,36,1,169,240,96,80,10,240,8,16,6,144,4,201,240,240,2,132,0,96,36,1,56,169,117,96,80,118,240,116,48,114,176,112,201,101,208,108,96,36,1,24,169,179,96,80,99,144,97,16,95,201,251,208,91,96,184,24,169,195,96,112,83,240,81,16,79,176,77,201,211,208,73,96,36,1,56,169,16,96,80,64,240,62,48,60,176,58,201,126,208,54,96,36,1,24,169,64,96,112,45,176,43,48,41,201,83,208,37,96,184,56,169,255,96,112,29,240,27,16,25,144,23,201,255,208,19,96,36,1,56,169,240,96,112,10,240,8,16,6,144,4,201,184,240,2,132,0,96,36,1,24,169,178,96,112,42,144,40,48,38,201,5,208,34,96,184,24,169,66,96,112,26,48,24,176,22,201,87,208,18,96,36,1,56,169,117,96,112,9,48,7,144,5,201,17,208,1,96,133,0,36,1,24,169,179,96,80,80,144,78,16,76,201,225,208,72,96,184,24,169,66,96,112,64,240,62,48,60,144,58,201,86,208,54,96,36,1,56,169,117,96,80,45,240,43,48,41,144,39,201,110,208,35,96,36,1,24,169,179,96,80,26,144,24,48,22,201,2,208,18,96,184,24,169,66,96,112,10,240,8,48,6,176,4,201,66,240,2,132,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,255,128,128,0,0,0,0,0,255,0,0,0,0,0,1,1,255,1,1,0,0,0,0,0,0,0,0,0,0,0,124,254,0,192,192,254,124,0,254,254,0,240,192,254,254,0,198,198,2,254,198,198,198,0,204,216,0,240,216,204,198,0,198,238,2,214,198,198,198,0,198,198,2,214,206,198,198,0,124,254,2,198,198,254,124,0,252,254,2,252,192,192,192,0,204,204,0,120,48,48,48,0,24,24,24,24,24,24,24,0,252,254,2,6,28,112,254,0,252,254,2,60,60,2,254,0,24,24,216,216,254,24,24,0,254,254,0,128,252,6,254,0,124,254,0,192,252,198,254,0,254,254,6,12,24,16,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,255,255,24,24,24,24,24,24,255,255,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,24,24,0,51,51,102,0,0,0,0,0,102,102,255,102,255,102,102,0,24,62,96,60,6,124,24,0,98,102,12,24,48,102,70,0,60,102,60,56,103,102,63,0,12,12,24,0,0,0,0,0,12,24,48,48,48,24,12,0,48,24,12,12,12,24,48,0,0,102,60,255,60,102,0,0,0,24,24,126,24,24,0,0,0,0,0,0,0,24,24,48,0,0,0,110,59,0,0,0,0,0,0,0,0,24,24,0,0,3,6,12,24,48,96,0,62,99,103,107,115,99,62,0,12,28,12,12,12,12,63,0,62,99,99,14,56,99,127,0,62,99,99,14,99,99,62,0,6,14,30,38,127,6,6,0,127,99,96,126,3,99,62,0,62,99,96,126,99,99,62,0,127,99,6,12,24,24,60,0,62,99,99,62,99,99,62,0,62,99,99,63,3,99,62,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,48,14,24,48,96,48,24,14,0,0,0,126,0,126,0,0,0,112,24,12,6,12,24,112,0,126,99,3,6,28,0,24,24,124,198,206,238,224,230,124,0,28,54,99,127,99,99,99,0,110,115,99,126,99,99,126,0,30,51,96,96,96,51,30,0,108,118,99,99,99,102,124,0,127,49,48,60,48,49,127,0,127,49,48,60,48,48,120,0,30,51,96,103,99,55,29,0,99,99,99,127,99,99,99,0,60,24,24,24,24,24,60,0,31,6,6,6,6,102,60,0,102,102,108,120,108,103,99,0,120,48,96,96,99,99,126,0,99,119,127,107,99,99,99,0,99,115,123,111,103,99,99,0,28,54,99,99,99,54,28,0,110,115,99,126,96,96,96,0,28,54,99,107,103,54,29,0,110,115,99,126,108,103,99,0,62,99,96,62,3,99,62,0,126,90,24,24,24,24,60,0,115,51,99,99,99,118,60,0,115,51,99,99,102,60,24,0,115,51,99,107,127,119,99,0,99,99,54,28,54,99,99,0,51,99,99,54,28,120,112,0,127,99,6,28,51,99,126,0,60,48,48,48,48,48,60,0,64,96,48,24,12,6,2,0,60,12,12,12,12,12,60,0,0,24,60,126,24,24,24,24,0,0,0,0,0,0,255,255,48,48,24,0,0,0,0,0,0,0,63,99,99,103,59,0,96,96,110,115,99,99,62,0,0,0,62,99,96,99,62,0,3,3,59,103,99,99,62,0,0,0,62,97,127,96,62,0,14,24,24,60,24,24,60,0,0,0,62,96,99,99,61,0,96,96,110,115,99,102,103,0,0,0,30,12,12,12,30,0,0,0,63,6,6,6,102,60,96,96,102,110,124,103,99,0,28,12,12,12,12,12,30,0,0,0,110,127,107,98,103,0,0,0,110,115,99,102,103,0,0,0,62,99,99,99,62,0,0,0,62,99,115,110,96,96,0,0,62,99,103,59,3,3,0,0,110,115,99,126,99,0,0,0,62,113,28,71,62,0,6,12,63,24,24,27,14,0,0,0,115,51,99,103,59,0,0,0,115,51,99,102,60,0,0,0,99,107,127,119,99,0,0,0,99,54,28,54,99,0,0,0,51,99,99,63,3,62,0,0,127,14,28,56,127,0,60,66,153,161,161,153,66,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,6,18,51,51,6,18,51,56,6,18,51,58,6,18,51,15,6,18,51,51,6,18,51,56,6,18,51,58,6,18,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,197,4,192,244,197]],"!-);EWw5je`a}{IyVf4v":["controls.NES",["l","k","c","m","w","s","a","d"]],"28|ndmww*C9:h(p(1Xha":["prg_banks",[0,8192,0,8192]],"dkAVj{sdjrdbPacRA(Ya":["bin_table",[]],"]?ktZ5{ATqh5n-y_rI;)":["gui",[]],"%0@eg_iM4%`6o1lYsAwI":["pixel_buffer",[]],").*ULJU,pB|kwbQcAq=W":["pattern",[]],"?y(KCJo)9i,S7J!}tsTu":["nt_map",["0","0","1","1"]],",41reDUn/;X!Ns7I!@{C":["chr_rom",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,255,128,128,0,0,0,128,128,255,128,128,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,1,1,255,1,1,0,0,0,1,1,255,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,254,0,192,192,254,124,0,124,254,0,192,192,254,124,0,254,254,0,240,192,254,254,0,254,254,0,240,192,254,254,0,198,198,2,254,198,198,198,0,198,198,2,254,198,198,198,0,204,216,0,240,216,204,198,0,204,216,0,240,216,204,198,0,198,238,2,214,198,198,198,0,198,238,2,214,198,198,198,0,198,198,2,214,206,198,198,0,198,198,2,214,206,198,198,0,124,254,2,198,198,254,124,0,124,254,2,198,198,254,124,0,252,254,2,252,192,192,192,0,252,254,2,252,192,192,192,0,204,204,0,120,48,48,48,0,204,204,0,120,48,48,48,0,24,24,24,24,24,24,24,0,24,24,24,24,24,24,24,0,252,254,2,6,28,112,254,0,252,254,2,6,28,112,254,0,252,254,2,60,60,2,254,0,252,254,2,60,60,2,254,0,24,24,216,216,254,24,24,0,24,24,216,216,254,24,24,0,254,254,0,128,252,6,254,0,254,254,0,128,252,6,254,0,124,254,0,192,252,198,254,0,124,254,0,192,252,198,254,0,254,254,6,12,24,16,48,0,254,254,6,12,24,16,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,255,255,24,24,24,24,24,24,255,255,24,24,24,24,24,24,255,255,0,0,0,24,24,24,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,24,24,0,24,24,24,24,0,24,24,0,51,51,102,0,0,0,0,0,51,51,102,0,0,0,0,0,102,102,255,102,255,102,102,0,102,102,255,102,255,102,102,0,24,62,96,60,6,124,24,0,24,62,96,60,6,124,24,0,98,102,12,24,48,102,70,0,98,102,12,24,48,102,70,0,60,102,60,56,103,102,63,0,60,102,60,56,103,102,63,0,12,12,24,0,0,0,0,0,12,12,24,0,0,0,0,0,12,24,48,48,48,24,12,0,12,24,48,48,48,24,12,0,48,24,12,12,12,24,48,0,48,24,12,12,12,24,48,0,0,102,60,255,60,102,0,0,0,102,60,255,60,102,0,0,0,24,24,126,24,24,0,0,0,24,24,126,24,24,0,0,0,0,0,0,0,24,24,48,0,0,0,0,0,24,24,48,0,0,0,110,59,0,0,0,0,0,0,110,59,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,24,24,0,0,3,6,12,24,48,96,0,0,3,6,12,24,48,96,0,62,99,103,107,115,99,62,0,62,99,103,107,115,99,62,0,12,28,12,12,12,12,63,0,12,28,12,12,12,12,63,0,62,99,99,14,56,99,127,0,62,99,99,14,56,99,127,0,62,99,99,14,99,99,62,0,62,99,99,14,99,99,62,0,6,14,30,38,127,6,6,0,6,14,30,38,127,6,6,0,127,99,96,126,3,99,62,0,127,99,96,126,3,99,62,0,62,99,96,126,99,99,62,0,62,99,96,126,99,99,62,0,127,99,6,12,24,24,60,0,127,99,6,12,24,24,60,0,62,99,99,62,99,99,62,0,62,99,99,62,99,99,62,0,62,99,99,63,3,99,62,0,62,99,99,63,3,99,62,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,48,0,0,24,24,0,24,24,48,14,24,48,96,48,24,14,0,14,24,48,96,48,24,14,0,0,0,126,0,126,0,0,0,0,0,126,0,126,0,0,0,112,24,12,6,12,24,112,0,112,24,12,6,12,24,112,0,126,99,3,6,28,0,24,24,126,99,3,6,28,0,24,24,124,198,206,238,224,230,124,0,124,198,206,238,224,230,124,0,28,54,99,127,99,99,99,0,28,54,99,127,99,99,99,0,110,115,99,126,99,99,126,0,110,115,99,126,99,99,126,0,30,51,96,96,96,51,30,0,30,51,96,96,96,51,30,0,108,118,99,99,99,102,124,0,108,118,99,99,99,102,124,0,127,49,48,60,48,49,127,0,127,49,48,60,48,49,127,0,127,49,48,60,48,48,120,0,127,49,48,60,48,48,120,0,30,51,96,103,99,55,29,0,30,51,96,103,99,55,29,0,99,99,99,127,99,99,99,0,99,99,99,127,99,99,99,0,60,24,24,24,24,24,60,0,60,24,24,24,24,24,60,0,31,6,6,6,6,102,60,0,31,6,6,6,6,102,60,0,102,102,108,120,108,103,99,0,102,102,108,120,108,103,99,0,120,48,96,96,99,99,126,0,120,48,96,96,99,99,126,0,99,119,127,107,99,99,99,0,99,119,127,107,99,99,99,0,99,115,123,111,103,99,99,0,99,115,123,111,103,99,99,0,28,54,99,99,99,54,28,0,28,54,99,99,99,54,28,0,110,115,99,126,96,96,96,0,110,115,99,126,96,96,96,0,28,54,99,107,103,54,29,0,28,54,99,107,103,54,29,0,110,115,99,126,108,103,99,0,110,115,99,126,108,103,99,0,62,99,96,62,3,99,62,0,62,99,96,62,3,99,62,0,126,90,24,24,24,24,60,0,126,90,24,24,24,24,60,0,115,51,99,99,99,118,60,0,115,51,99,99,99,118,60,0,115,51,99,99,102,60,24,0,115,51,99,99,102,60,24,0,115,51,99,107,127,119,99,0,115,51,99,107,127,119,99,0,99,99,54,28,54,99,99,0,99,99,54,28,54,99,99,0,51,99,99,54,28,120,112,0,51,99,99,54,28,120,112,0,127,99,6,28,51,99,126,0,127,99,6,28,51,99,126,0,60,48,48,48,48,48,60,0,60,48,48,48,48,48,60,0,64,96,48,24,12,6,2,0,64,96,48,24,12,6,2,0,60,12,12,12,12,12,60,0,60,12,12,12,12,12,60,0,0,24,60,126,24,24,24,24,0,24,60,126,24,24,24,24,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,48,48,24,0,0,0,0,0,48,48,24,0,0,0,0,0,0,0,63,99,99,103,59,0,0,0,63,99,99,103,59,0,96,96,110,115,99,99,62,0,96,96,110,115,99,99,62,0,0,0,62,99,96,99,62,0,0,0,62,99,96,99,62,0,3,3,59,103,99,99,62,0,3,3,59,103,99,99,62,0,0,0,62,97,127,96,62,0,0,0,62,97,127,96,62,0,14,24,24,60,24,24,60,0,14,24,24,60,24,24,60,0,0,0,62,96,99,99,61,0,0,0,62,96,99,99,61,0,96,96,110,115,99,102,103,0,96,96,110,115,99,102,103,0,0,0,30,12,12,12,30,0,0,0,30,12,12,12,30,0,0,0,63,6,6,6,102,60,0,0,63,6,6,6,102,60,96,96,102,110,124,103,99,0,96,96,102,110,124,103,99,0,28,12,12,12,12,12,30,0,28,12,12,12,12,12,30,0,0,0,110,127,107,98,103,0,0,0,110,127,107,98,103,0,0,0,110,115,99,102,103,0,0,0,110,115,99,102,103,0,0,0,62,99,99,99,62,0,0,0,62,99,99,99,62,0,0,0,62,99,115,110,96,96,0,0,62,99,115,110,96,96,0,0,62,99,103,59,3,3,0,0,62,99,103,59,3,3,0,0,110,115,99,126,99,0,0,0,110,115,99,126,99,0,0,0,62,113,28,71,62,0,0,0,62,113,28,71,62,0,6,12,63,24,24,27,14,0,6,12,63,24,24,27,14,0,0,0,115,51,99,103,59,0,0,0,115,51,99,103,59,0,0,0,115,51,99,102,60,0,0,0,115,51,99,102,60,0,0,0,99,107,127,119,99,0,0,0,99,107,127,119,99,0,0,0,99,54,28,54,99,0,0,0,99,54,28,54,99,0,0,0,51,99,99,63,3,62,0,0,51,99,99,63,3,62,0,0,127,14,28,56,127,0,0,0,127,14,28,56,127,0,60,66,153,161,161,153,66,60,60,66,153,161,161,153,66,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"c[9|smMH$3,uB:vpwT}n":["BIOS",[]],"#yxQVD.W=QA4e-TaHe-w":["_gametitle",[83,85,80,69,82,32,77,65,82,73,79]],",lx%]OZrHg|(jHyY#^#E":["text",[]],"JZ0nOH#MsoLAasA7xYd+":[".HEX",[]],"q~]_[iVvJ`d|+?RSqc^Y":["_DMGCOLORS",["#081820","#43654d","#7eb27a","#b9ffa8"]],"(M5DY~$!E(Xt6VWlGk_1":["+AUDIO ENGINE pan",[0,0,0,0]],"v]0UUq`G]chfwu4/UQ~q":["apu",[440.3968996062992,"0",1,588.7411184210526,"0",1,146.79896653543307,"0",447443.25,0,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"{uxN85FR2v428H5s1TII":["chip8m.PCM",[]],"EesKz%n[:9y6^o:vvoD_":["controls.chip8",["x","1","2","3","q","w","e","a","s","d","z","c","4","r","f","v"]],"5D)3w-mP8HqcU~;jGYPw":["controls.GB",["down arrow","up arrow","left arrow","right arrow","enter","space","a","s"]],"u{Z6Yo:g|j(7O+@6yd=b":["and_table",[]],"yYeY/%}@PaP{fMkLU1ve":["xor_table",[]],"Lwfvqs]/^buKKht}YcaC":["or_table",[]],",(xt46oqz;F}4Roa*4l1":["_waveBuffer",[]],"ki7qXD%gNvvUz@OLl,$4":["_waveBuffer2",[]],"@Mu*IPvEI${W#Lm!SQml":["m",[]],"~*y,0~Y1ZelwR60?hGDD":["buf",[]],"=Nnh8d@ok|B?)Hea*-9a":["8080.Terminal",["0x0A"]],"xYpkP=%}3N3fIXniRLxO":["controls.SI8080",["C","Enter","space","w","a","d","up arrow","left arrow","right arrow"]]},"broadcasts":{"oauq{1.?KIC%2JlgJq^:":"get_rom","onPsFYdb^;g,DoWfegZ6":"Chip-8","JCga`c%_Lh.vS^Oi-]%~":"Launch Emulator","!2(a]?F2a@E8z]_J[5|e":"Launch EmulatorWaitd","z5-P7L^,~Tl$WbM;J[:d":"un-needed broadcast","~aYLGw3tAmLz}I]nV`xz":"fade_out","!J7PA/A8Vo=COeNoxT48":"stop_scripts","UJX@vI^YiH#tJAcG0`PO":"HelloInter","=S|@YQlTW;?zdH4GQx;V":"Game Boy Advance","sAp!P:%BE4X1aTl2,yZo":"hard_reset","I[k!}33MuoO@u.@pU!xX":"reset","gofV]+|49LxJ]7Ibhwn8":"start game",";hlm4HQ+D)yZ$]6D9TXl":"exit emulator","xB|em[!gg`ddhH3H,iB6":"get_theme","SbKns6%SF_audjA)ak#n":"Load_Prebuilt_game","*~j7B^$jo;Babt$i@0p-":"render_screen","x8INpJ;)l|hiI!g`;GE|":"Project not saving fix","i``63/!/.F6oLg73$p#5":"GUI_Emulator_Select","eUXr-]/_0N]qtaXLt(ye":"prune","`NRJ+e5K0Tj^PUuZG!,Z":"wave","#z59?3=sivtfq@){KBjG":"sound.updatech8buffer","1$IbL{2UD4|fdA:ahKxG":"wave create",".+sr=pJUQmu{0)%LLjC}":"BytePusher","nXk!G*y_h@WG)9_e/VKR":"Nuke all lists","Pi~qDSlxleRjJ@ah)D#o":"WAVE-8_drawkeys","O7?o@Pl6XR6dG~oq]ZEc":"create sound","!SuCzx,hkc:*t}L8cFj=":"m1","Nj?La~+UE`p(Sb+Pu6FT":"soundsync","q@nrUic%_jFs,BP#Pz@]":"emulate!!","a^/anM#`b=kW!Z3.YYJW":"text","a/*ydNVQOyIS;1P2=ed*":"pause","so.q}ABBns#?n!myeYQ(":"unpause","/]Pw*,JgP~%ctRqLaCr]":"init","SnQYRZP^Bda`yWbPz,$[":"make_tables","a,=[Gay5*+98NY%7e1=p":"draw","ET.1ru=%3YXJv8(/!(4S":"5b","0|$coU#Vlwnj!3!NWjhi":"display_size","?5cnTm~BIOy)iiINw1|j":"dmc_start","rKDIUs;/F{C6pMu5`JB^":"dmc_stop","X8}7lXU4UNdr2{s]fs4c":"sound.updateMC8buffer","5F;%8N/Qr^Di?+)(*eE.":"8080","g91@,@Kt00yu7FuRXO~I":"get_controls","5V0sDNDr+0A=YC_`nb#{":"remapwave8","DcmIuyN[t=e,sXx3*Ij3":"logomove","Hl=mTBLxLS*0,~TGH|OS":"CP/M Call"},"blocks":{"aKD":{"opcode":"event_whenflagclicked","next":"AA","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":971,"y":-526},"AA":{"opcode":"data_setvariableto","next":"jM","parent":"aKD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Load Rom Flag","k%s.$KTqVN5iXl^Zm!/f"]},"shadow":false,"topLevel":false},"jM":{"opcode":"control_if","next":"2z","parent":"AA","inputs":{"CONDITION":[2,"aKE"],"SUBSTACK":[2,"AB"]},"fields":{},"shadow":false,"topLevel":false},"aKE":{"opcode":"operator_equals","next":null,"parent":"jM","inputs":{"OPERAND1":[3,[12,"coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"AB":{"opcode":"looks_switchbackdropto","next":"2A","parent":"jM","inputs":{"BACKDROP":[1,"aKF"]},"fields":{},"shadow":false,"topLevel":false},"aKF":{"opcode":"looks_backdrops","next":null,"parent":"AB","inputs":{},"fields":{"BACKDROP":["Gradient2",null]},"shadow":true,"topLevel":false},"2A":{"opcode":"data_setvariableto","next":"2B","parent":"AB","inputs":{"VALUE":[1,[10,"Rebuilding Tables..."]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"2B":{"opcode":"data_showvariable","next":"2C","parent":"2A","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"2C":{"opcode":"event_broadcastandwait","next":"aKG","parent":"2B","inputs":{"BROADCAST_INPUT":[1,[11,"make_tables","SnQYRZP^Bda`yWbPz,$["]]},"fields":{},"shadow":false,"topLevel":false},"aKG":{"opcode":"data_setvariableto","next":null,"parent":"2C","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"]},"shadow":false,"topLevel":false},"2z":{"opcode":"data_hidevariable","next":"2D","parent":"jM","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"2D":{"opcode":"data_setvariableto","next":"R9","parent":"2z","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"R9":{"opcode":"event_broadcast","next":null,"parent":"2D","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aKH":{"opcode":"event_whenbroadcastreceived","next":"AC","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]},"shadow":false,"topLevel":true,"x":1527,"y":754},"AC":{"opcode":"control_stop","next":"-","parent":"aKH","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"-":{"opcode":"control_repeat","next":"AD","parent":"AC","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"aKI"]},"fields":{},"shadow":false,"topLevel":false},"aKI":{"opcode":"sound_changevolumeby","next":null,"parent":"-","inputs":{"VOLUME":[1,[4,"-10"]]},"fields":{},"shadow":false,"topLevel":false},"AD":{"opcode":"sound_stopallsounds","next":".","parent":"-","inputs":{},"fields":{},"shadow":false,"topLevel":false},".":{"opcode":"control_if","next":null,"parent":"AD","inputs":{"CONDITION":[2,"aKJ"],"SUBSTACK":[2,"AE"]},"fields":{},"shadow":false,"topLevel":false},"aKJ":{"opcode":"operator_equals","next":null,"parent":".","inputs":{"OPERAND1":[3,[12,"Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"AE":{"opcode":"event_broadcastandwait","next":"aKK","parent":".","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"aKK":{"opcode":"event_broadcast","next":null,"parent":"AE","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aKL":{"opcode":"event_whenbroadcastreceived","next":"AF","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":369,"y":64},"AF":{"opcode":"data_setvariableto","next":"AG","parent":"aKL","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"]},"shadow":false,"topLevel":false},"AG":{"opcode":"sound_stopallsounds","next":"jN","parent":"AF","inputs":{},"fields":{},"shadow":false,"topLevel":false},"jN":{"opcode":"looks_switchbackdropto","next":"AH","parent":"AG","inputs":{"BACKDROP":[3,"aKM","aKN"]},"fields":{},"shadow":false,"topLevel":false},"aKM":{"opcode":"data_itemoflist","next":null,"parent":"jN","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aKN":{"opcode":"looks_backdrops","next":null,"parent":"jN","inputs":{},"fields":{"BACKDROP":["Gradient",null]},"shadow":true,"topLevel":false},"AH":{"opcode":"pen_clear","next":"AI","parent":"jN","inputs":{},"fields":{},"shadow":false,"topLevel":false},"AI":{"opcode":"microbit_displayClear","next":"AJ","parent":"AH","inputs":{},"fields":{},"shadow":false,"topLevel":false},"AJ":{"opcode":"sound_setvolumeto","next":"AK","parent":"AI","inputs":{"VOLUME":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"AK":{"opcode":"control_forever","next":null,"parent":"AJ","inputs":{"SUBSTACK":[2,"aE"]},"fields":{},"shadow":false,"topLevel":false},"aE":{"opcode":"sound_playuntildone","next":null,"parent":"AK","inputs":{"SOUND_MENU":[3,"AL","aKO"]},"fields":{},"shadow":false,"topLevel":false},"AL":{"opcode":"operator_add","next":null,"parent":"aE","inputs":{"NUM1":[3,"aKP",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aKP":{"opcode":"data_itemoflist","next":null,"parent":"AL","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aKO":{"opcode":"sound_sounds_menu","next":null,"parent":"aE","inputs":{},"fields":{"SOUND_MENU":["Purple Planet Music - Chilled - Global Tech",null]},"shadow":true,"topLevel":false},"aKQ":{"opcode":"event_whenbroadcastreceived","next":"AM","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":387,"y":2655},"AM":{"opcode":"control_wait","next":"AN","parent":"aKQ","inputs":{"DURATION":[1,[5,"2"]]},"fields":{},"shadow":false,"topLevel":false},"AN":{"opcode":"control_forever","next":null,"parent":"AM","inputs":{"SUBSTACK":[2,"R!"]},"fields":{},"shadow":false,"topLevel":false},"R!":{"opcode":"control_if","next":null,"parent":"AN","inputs":{"CONDITION":[2,"2E"],"SUBSTACK":[2,"jO"]},"fields":{},"shadow":false,"topLevel":false},"2E":{"opcode":"operator_not","next":null,"parent":"R!","inputs":{"OPERAND":[2,"aKR"]},"fields":{},"shadow":false,"topLevel":false},"aKR":{"opcode":"operator_equals","next":null,"parent":"2E","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jO":{"opcode":"control_if","next":"jP","parent":"R!","inputs":{"CONDITION":[2,"jQ"],"SUBSTACK":[2,"eE"]},"fields":{},"shadow":false,"topLevel":false},"jQ":{"opcode":"operator_or","next":null,"parent":"jO","inputs":{"OPERAND1":[2,"jR"],"OPERAND2":[2,"AO"]},"fields":{},"shadow":false,"topLevel":false},"jR":{"opcode":"operator_or","next":null,"parent":"jQ","inputs":{"OPERAND1":[2,"AP"],"OPERAND2":[2,"AQ"]},"fields":{},"shadow":false,"topLevel":false},"AP":{"opcode":"sensing_keypressed","next":null,"parent":"jR","inputs":{"KEY_OPTION":[1,"aKS"]},"fields":{},"shadow":false,"topLevel":false},"aKS":{"opcode":"sensing_keyoptions","next":null,"parent":"AP","inputs":{},"fields":{"KEY_OPTION":["right arrow",null]},"shadow":true,"topLevel":false},"AQ":{"opcode":"sensing_keypressed","next":null,"parent":"jR","inputs":{"KEY_OPTION":[1,"aKT"]},"fields":{},"shadow":false,"topLevel":false},"aKT":{"opcode":"sensing_keyoptions","next":null,"parent":"AQ","inputs":{},"fields":{"KEY_OPTION":["d",null]},"shadow":true,"topLevel":false},"AO":{"opcode":"microbit_isTilted","next":null,"parent":"jQ","inputs":{"DIRECTION":[1,"aKU"]},"fields":{},"shadow":false,"topLevel":false},"aKU":{"opcode":"microbit_menu_tiltDirectionAny","next":null,"parent":"AO","inputs":{},"fields":{"tiltDirectionAny":["right",null]},"shadow":true,"topLevel":false},"eE":{"opcode":"sound_play","next":"eF","parent":"jO","inputs":{"SOUND_MENU":[3,"AR","aKV"]},"fields":{},"shadow":false,"topLevel":false},"AR":{"opcode":"operator_add","next":null,"parent":"eE","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aKW",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aKW":{"opcode":"data_itemoflist","next":null,"parent":"AR","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aKV":{"opcode":"sound_sounds_menu","next":null,"parent":"eE","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"eF":{"opcode":"control_repeat","next":"a3","parent":"eE","inputs":{"TIMES":[3,"AS",[6,"0"]],"SUBSTACK":[2,"AT"]},"fields":{},"shadow":false,"topLevel":false},"AS":{"opcode":"operator_multiply","next":null,"parent":"eF","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"AU",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"AU":{"opcode":"operator_add","next":null,"parent":"AS","inputs":{"NUM1":[3,"aKX",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aKX":{"opcode":"argument_reporter_boolean","next":null,"parent":"AU","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"AT":{"opcode":"data_changevariableby","next":null,"parent":"eF","inputs":{"VALUE":[3,"AV",[4,"0"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"AV":{"opcode":"operator_divide","next":null,"parent":"AT","inputs":{"NUM1":[1,[4,"-50"]],"NUM2":[3,"AW",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"AW":{"opcode":"operator_add","next":null,"parent":"AV","inputs":{"NUM1":[3,"aKY",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aKY":{"opcode":"argument_reporter_boolean","next":null,"parent":"AW","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"a3":{"opcode":"control_if","next":"aKZ","parent":"eF","inputs":{"CONDITION":[2,"jS"],"SUBSTACK":[2,"aK0"]},"fields":{},"shadow":false,"topLevel":false},"jS":{"opcode":"operator_or","next":null,"parent":"a3","inputs":{"OPERAND1":[2,"aK1"],"OPERAND2":[2,"AX"]},"fields":{},"shadow":false,"topLevel":false},"aK1":{"opcode":"operator_gt","next":null,"parent":"jS","inputs":{"OPERAND1":[1,[10,"-1800"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"AX":{"opcode":"operator_not","next":null,"parent":"jS","inputs":{"OPERAND":[2,"AY"]},"fields":{},"shadow":false,"topLevel":false},"AY":{"opcode":"operator_equals","next":null,"parent":"AX","inputs":{"OPERAND1":[3,"aK2",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aK2":{"opcode":"operator_mod","next":null,"parent":"AY","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"aK0":{"opcode":"data_setvariableto","next":null,"parent":"a3","inputs":{"VALUE":[1,[10,"200"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"aKZ":{"opcode":"control_wait","next":null,"parent":"a3","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"jP":{"opcode":"control_if","next":"jT","parent":"jO","inputs":{"CONDITION":[2,"jU"],"SUBSTACK":[2,"a4"]},"fields":{},"shadow":false,"topLevel":false},"jU":{"opcode":"operator_or","next":null,"parent":"jP","inputs":{"OPERAND1":[2,"jV"],"OPERAND2":[2,"AZ"]},"fields":{},"shadow":false,"topLevel":false},"jV":{"opcode":"operator_or","next":null,"parent":"jU","inputs":{"OPERAND1":[2,"A0"],"OPERAND2":[2,"A1"]},"fields":{},"shadow":false,"topLevel":false},"A0":{"opcode":"sensing_keypressed","next":null,"parent":"jV","inputs":{"KEY_OPTION":[1,"aK3"]},"fields":{},"shadow":false,"topLevel":false},"aK3":{"opcode":"sensing_keyoptions","next":null,"parent":"A0","inputs":{},"fields":{"KEY_OPTION":["left arrow",null]},"shadow":true,"topLevel":false},"A1":{"opcode":"sensing_keypressed","next":null,"parent":"jV","inputs":{"KEY_OPTION":[1,"aK4"]},"fields":{},"shadow":false,"topLevel":false},"aK4":{"opcode":"sensing_keyoptions","next":null,"parent":"A1","inputs":{},"fields":{"KEY_OPTION":["a",null]},"shadow":true,"topLevel":false},"AZ":{"opcode":"microbit_isTilted","next":null,"parent":"jU","inputs":{"DIRECTION":[1,"aK5"]},"fields":{},"shadow":false,"topLevel":false},"aK5":{"opcode":"microbit_menu_tiltDirectionAny","next":null,"parent":"AZ","inputs":{},"fields":{"tiltDirectionAny":["left",null]},"shadow":true,"topLevel":false},"a4":{"opcode":"sound_play","next":"a5","parent":"jP","inputs":{"SOUND_MENU":[3,"A2","aK6"]},"fields":{},"shadow":false,"topLevel":false},"A2":{"opcode":"operator_add","next":null,"parent":"a4","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aK7",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aK7":{"opcode":"data_itemoflist","next":null,"parent":"A2","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aK6":{"opcode":"sound_sounds_menu","next":null,"parent":"a4","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"a5":{"opcode":"control_repeat","next":"a6","parent":"a4","inputs":{"TIMES":[3,"A3",[6,"0"]],"SUBSTACK":[2,"A4"]},"fields":{},"shadow":false,"topLevel":false},"A3":{"opcode":"operator_multiply","next":null,"parent":"a5","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"A5",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A5":{"opcode":"operator_add","next":null,"parent":"A3","inputs":{"NUM1":[3,"aK8",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aK8":{"opcode":"argument_reporter_boolean","next":null,"parent":"A5","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"A4":{"opcode":"data_changevariableby","next":null,"parent":"a5","inputs":{"VALUE":[3,"A6",[4,"0"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"A6":{"opcode":"operator_divide","next":null,"parent":"A4","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"A7",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A7":{"opcode":"operator_add","next":null,"parent":"A6","inputs":{"NUM1":[3,"aK9",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aK9":{"opcode":"argument_reporter_boolean","next":null,"parent":"A7","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"a6":{"opcode":"control_if","next":"aK!","parent":"a5","inputs":{"CONDITION":[2,"jW"],"SUBSTACK":[2,"aK#"]},"fields":{},"shadow":false,"topLevel":false},"jW":{"opcode":"operator_or","next":null,"parent":"a6","inputs":{"OPERAND1":[2,"aK%"],"OPERAND2":[2,"A8"]},"fields":{},"shadow":false,"topLevel":false},"aK%":{"opcode":"operator_gt","next":null,"parent":"jW","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"A8":{"opcode":"operator_not","next":null,"parent":"jW","inputs":{"OPERAND":[2,"A9"]},"fields":{},"shadow":false,"topLevel":false},"A9":{"opcode":"operator_equals","next":null,"parent":"A8","inputs":{"OPERAND1":[3,"aK(",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aK(":{"opcode":"operator_mod","next":null,"parent":"A9","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"aK#":{"opcode":"data_setvariableto","next":null,"parent":"a6","inputs":{"VALUE":[1,[10,"-1800"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"aK!":{"opcode":"control_wait","next":null,"parent":"a6","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"jT":{"opcode":"control_if","next":null,"parent":"jP","inputs":{"CONDITION":[2,"jX"],"SUBSTACK":[2,"A!"]},"fields":{},"shadow":false,"topLevel":false},"jX":{"opcode":"operator_and","next":null,"parent":"jT","inputs":{"OPERAND1":[2,"jY"],"OPERAND2":[2,"A#"]},"fields":{},"shadow":false,"topLevel":false},"jY":{"opcode":"operator_or","next":null,"parent":"jX","inputs":{"OPERAND1":[2,"jZ"],"OPERAND2":[2,"A%"]},"fields":{},"shadow":false,"topLevel":false},"jZ":{"opcode":"operator_or","next":null,"parent":"jY","inputs":{"OPERAND1":[2,"A("],"OPERAND2":[2,"A)"]},"fields":{},"shadow":false,"topLevel":false},"A(":{"opcode":"sensing_keypressed","next":null,"parent":"jZ","inputs":{"KEY_OPTION":[1,"aK)"]},"fields":{},"shadow":false,"topLevel":false},"aK)":{"opcode":"sensing_keyoptions","next":null,"parent":"A(","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"A)":{"opcode":"sensing_keypressed","next":null,"parent":"jZ","inputs":{"KEY_OPTION":[1,"aK*"]},"fields":{},"shadow":false,"topLevel":false},"aK*":{"opcode":"sensing_keyoptions","next":null,"parent":"A)","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"A%":{"opcode":"microbit_isButtonPressed","next":null,"parent":"jY","inputs":{"BTN":[1,"aK+"]},"fields":{},"shadow":false,"topLevel":false},"aK+":{"opcode":"microbit_menu_buttons","next":null,"parent":"A%","inputs":{},"fields":{"buttons":["A",null]},"shadow":true,"topLevel":false},"A#":{"opcode":"operator_equals","next":null,"parent":"jX","inputs":{"OPERAND1":[3,"aK,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aK,":{"opcode":"operator_mod","next":null,"parent":"A#","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"A!":{"opcode":"event_broadcast","next":"a7","parent":"jT","inputs":{"BROADCAST_INPUT":[1,[11,"GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]]},"fields":{},"shadow":false,"topLevel":false},"a7":{"opcode":"control_if_else","next":null,"parent":"A!","inputs":{"CONDITION":[2,"A*"],"SUBSTACK":[2,"A+"],"SUBSTACK2":[2,"A,"]},"fields":{},"shadow":false,"topLevel":false},"A*":{"opcode":"operator_and","next":null,"parent":"a7","inputs":{"OPERAND1":[2,"aK-"],"OPERAND2":[2,"aK."]},"fields":{},"shadow":false,"topLevel":false},"aK-":{"opcode":"operator_gt","next":null,"parent":"A*","inputs":{"OPERAND1":[1,[10,"-200"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK.":{"opcode":"operator_equals","next":null,"parent":"A*","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A+":{"opcode":"control_stop","next":"aK/","parent":"a7","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aK/":{"opcode":"control_stop","next":null,"parent":"A+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"A,":{"opcode":"control_wait_until","next":null,"parent":"a7","inputs":{"CONDITION":[2,"A-"]},"fields":{},"shadow":false,"topLevel":false},"A-":{"opcode":"operator_not","next":null,"parent":"A,","inputs":{"OPERAND":[2,"j0"]},"fields":{},"shadow":false,"topLevel":false},"j0":{"opcode":"operator_or","next":null,"parent":"A-","inputs":{"OPERAND1":[2,"j1"],"OPERAND2":[2,"A."]},"fields":{},"shadow":false,"topLevel":false},"j1":{"opcode":"operator_or","next":null,"parent":"j0","inputs":{"OPERAND1":[2,"A/"],"OPERAND2":[2,"A:"]},"fields":{},"shadow":false,"topLevel":false},"A/":{"opcode":"sensing_keypressed","next":null,"parent":"j1","inputs":{"KEY_OPTION":[1,"aK:"]},"fields":{},"shadow":false,"topLevel":false},"aK:":{"opcode":"sensing_keyoptions","next":null,"parent":"A/","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"A:":{"opcode":"sensing_keypressed","next":null,"parent":"j1","inputs":{"KEY_OPTION":[1,"aK;"]},"fields":{},"shadow":false,"topLevel":false},"aK;":{"opcode":"sensing_keyoptions","next":null,"parent":"A:","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"A.":{"opcode":"microbit_isButtonPressed","next":null,"parent":"j0","inputs":{"BTN":[1,"aK="]},"fields":{},"shadow":false,"topLevel":false},"aK=":{"opcode":"microbit_menu_buttons","next":null,"parent":"A.","inputs":{},"fields":{"buttons":["A",null]},"shadow":true,"topLevel":false},"aK?":{"opcode":"event_whenbroadcastreceived","next":"j2","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_theme","xB|em[!gg`ddhH3H,iB6"]},"shadow":false,"topLevel":true,"x":369,"y":568},"j2":{"opcode":"microbit_displaySymbol","next":"j3","parent":"aK?","inputs":{"MATRIX":[1,"aK@"]},"fields":{},"shadow":false,"topLevel":false},"aK@":{"opcode":"matrix","next":null,"parent":"j2","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"j3":{"opcode":"sensing_askandwait","next":"j4","parent":"j2","inputs":{"QUESTION":[3,"A;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"A;":{"opcode":"operator_join","next":null,"parent":"j3","inputs":{"STRING1":[1,[10,"Paste your 8-digit theme code now. (Current code: "]],"STRING2":[3,"A=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"A=":{"opcode":"operator_join","next":null,"parent":"A;","inputs":{"STRING1":[3,"j5",[10,""]],"STRING2":[1,[10,")"]]},"fields":{},"shadow":false,"topLevel":false},"j5":{"opcode":"operator_join","next":null,"parent":"A=","inputs":{"STRING1":[3,"j6",[10,""]],"STRING2":[3,"j7",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j6":{"opcode":"operator_join","next":null,"parent":"j5","inputs":{"STRING1":[3,"j8",[10,""]],"STRING2":[3,"j9",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j8":{"opcode":"operator_join","next":null,"parent":"j6","inputs":{"STRING1":[3,"aK[",[10,""]],"STRING2":[3,"aK]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK[":{"opcode":"data_itemoflist","next":null,"parent":"j8","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aK]":{"opcode":"data_itemoflist","next":null,"parent":"j8","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"j9":{"opcode":"operator_join","next":null,"parent":"j6","inputs":{"STRING1":[3,"aK^",[10,""]],"STRING2":[3,"aK_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK^":{"opcode":"data_itemoflist","next":null,"parent":"j9","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aK_":{"opcode":"data_itemoflist","next":null,"parent":"j9","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"j7":{"opcode":"operator_join","next":null,"parent":"j5","inputs":{"STRING1":[3,"j!",[10,""]],"STRING2":[3,"j#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j!":{"opcode":"operator_join","next":null,"parent":"j7","inputs":{"STRING1":[3,"aK`",[10,""]],"STRING2":[3,"aK{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK`":{"opcode":"data_itemoflist","next":null,"parent":"j!","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aK{":{"opcode":"data_itemoflist","next":null,"parent":"j!","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"j#":{"opcode":"operator_join","next":null,"parent":"j7","inputs":{"STRING1":[3,"aK|",[10,""]],"STRING2":[3,"aK}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK|":{"opcode":"data_itemoflist","next":null,"parent":"j#","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aK}":{"opcode":"data_itemoflist","next":null,"parent":"j#","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"j4":{"opcode":"procedures_call","next":"A?","parent":"j3","inputs":{"Y5U!10,iILijcuE`/_rN":[3,"aK~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"decrypt %s","argumentids":"[\"Y5U!10,iILijcuE`/_rN\"]","warp":"false"}},"aK~":{"opcode":"sensing_answer","next":null,"parent":"j4","inputs":{},"fields":{},"shadow":false,"topLevel":false},"A?":{"opcode":"microbit_displayClear","next":"A@","parent":"j4","inputs":{},"fields":{},"shadow":false,"topLevel":false},"A@":{"opcode":"data_setvariableto","next":"aLa","parent":"A?","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"]},"shadow":false,"topLevel":false},"aLa":{"opcode":"event_broadcast","next":null,"parent":"A@","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"A[":{"opcode":"procedures_definition","next":"a8","parent":null,"inputs":{"custom_block":[1,"A]"]},"fields":{},"shadow":false,"topLevel":true,"x":340,"y":1019},"A]":{"opcode":"procedures_prototype","next":null,"parent":"A[","inputs":{"Y5U!10,iILijcuE`/_rN":[1,"aLb"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"decrypt %s","argumentids":"[\"Y5U!10,iILijcuE`/_rN\"]","argumentnames":"[\"Decryption\"]","argumentdefaults":"[\"\"]","warp":"false"}},"aLb":{"opcode":"argument_reporter_string_number","next":null,"parent":"A]","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":true,"topLevel":false},"a8":{"opcode":"control_if_else","next":null,"parent":"A[","inputs":{"CONDITION":[2,"2F"],"SUBSTACK":[2,"j%"],"SUBSTACK2":[2,"A^"]},"fields":{},"shadow":false,"topLevel":false},"2F":{"opcode":"operator_gt","next":null,"parent":"a8","inputs":{"OPERAND1":[3,"A_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A_":{"opcode":"operator_length","next":null,"parent":"2F","inputs":{"STRING":[3,"aLc",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aLc":{"opcode":"argument_reporter_string_number","next":null,"parent":"A_","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"j%":{"opcode":"control_if_else","next":null,"parent":"a8","inputs":{"CONDITION":[2,"2G"],"SUBSTACK":[2,"j("],"SUBSTACK2":[2,"A`"]},"fields":{},"shadow":false,"topLevel":false},"2G":{"opcode":"operator_equals","next":null,"parent":"j%","inputs":{"OPERAND1":[3,"aLd",[10,""]],"OPERAND2":[1,[10,"random"]]},"fields":{},"shadow":false,"topLevel":false},"aLd":{"opcode":"argument_reporter_string_number","next":null,"parent":"2G","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"j(":{"opcode":"data_replaceitemoflist","next":"j)","parent":"j%","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aLe",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLe":{"opcode":"operator_random","next":null,"parent":"j(","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"j)":{"opcode":"data_replaceitemoflist","next":"j*","parent":"j(","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aLf",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLf":{"opcode":"operator_random","next":null,"parent":"j)","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"j*":{"opcode":"data_replaceitemoflist","next":"j+","parent":"j)","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aLg",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLg":{"opcode":"operator_random","next":null,"parent":"j*","inputs":{"FROM":[1,[4,"2"]],"TO":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"j+":{"opcode":"data_replaceitemoflist","next":"j,","parent":"j*","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aLh",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLh":{"opcode":"operator_random","next":null,"parent":"j+","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"j,":{"opcode":"data_replaceitemoflist","next":"j-","parent":"j+","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aLi",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLi":{"opcode":"operator_random","next":null,"parent":"j,","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"j-":{"opcode":"data_replaceitemoflist","next":"j.","parent":"j,","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"aLj",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLj":{"opcode":"operator_random","next":null,"parent":"j-","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"j.":{"opcode":"data_replaceitemoflist","next":"A{","parent":"j-","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aLk",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLk":{"opcode":"operator_random","next":null,"parent":"j.","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A{":{"opcode":"data_replaceitemoflist","next":null,"parent":"j.","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aLl",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLl":{"opcode":"operator_random","next":null,"parent":"A{","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A`":{"opcode":"data_deletealloflist","next":"A|","parent":"j%","inputs":{},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"A|":{"opcode":"data_setvariableto","next":"j/","parent":"A`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Accumulator","26y~e9uZ-)1V@_#QCbz="]},"shadow":false,"topLevel":false},"j/":{"opcode":"control_repeat","next":null,"parent":"A|","inputs":{"TIMES":[3,"A}",[6,"0"]],"SUBSTACK":[2,"A~"]},"fields":{},"shadow":false,"topLevel":false},"A}":{"opcode":"operator_length","next":null,"parent":"j/","inputs":{"STRING":[3,"aLm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aLm":{"opcode":"argument_reporter_string_number","next":null,"parent":"A}","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"A~":{"opcode":"data_changevariableby","next":"Ba","parent":"j/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["Accumulator","26y~e9uZ-)1V@_#QCbz="]},"shadow":false,"topLevel":false},"Ba":{"opcode":"data_addtolist","next":null,"parent":"A~","inputs":{"ITEM":[3,"Bb",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bb":{"opcode":"operator_letter_of","next":null,"parent":"Ba","inputs":{"LETTER":[3,[12,"Accumulator","26y~e9uZ-)1V@_#QCbz="],[6,"0"]],"STRING":[3,"aLn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aLn":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bb","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"A^":{"opcode":"data_replaceitemoflist","next":"Bc","parent":"a8","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bc":{"opcode":"data_replaceitemoflist","next":"Bd","parent":"A^","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bd":{"opcode":"data_replaceitemoflist","next":"Be","parent":"Bc","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Be":{"opcode":"data_replaceitemoflist","next":"Bf","parent":"Bd","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bf":{"opcode":"data_replaceitemoflist","next":"Bg","parent":"Be","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bg":{"opcode":"data_replaceitemoflist","next":"Bh","parent":"Bf","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Bh":{"opcode":"data_replaceitemoflist","next":"aLo","parent":"Bg","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aLo":{"opcode":"data_replaceitemoflist","next":null,"parent":"Bh","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false}},"comments":{"/":{"blockId":"a","x":2285,"y":1415,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},":":{"blockId":"f","x":12131,"y":2152,"width":200,"height":200,"minimized":true,"text":"5"},";":{"blockId":"g","x":12131,"y":2392,"width":200,"height":200,"minimized":true,"text":"6"},"W":{"blockId":"b","x":1545,"y":5753,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"a9":{"blockId":"O","x":12135,"y":2632,"width":200,"height":200,"minimized":true,"text":"7"},"a!":{"blockId":"P","x":12131,"y":2872,"width":200,"height":200,"minimized":true,"text":"8"},"a#":{"blockId":"be","x":12131,"y":3112,"width":200,"height":200,"minimized":true,"text":"9"},"a%":{"blockId":"a(","x":12135,"y":3352,"width":200,"height":200,"minimized":true,"text":"A"},"aF":{"blockId":"c","x":360,"y":494,"width":200,"height":200,"minimized":true,"text":"0x2AC - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"aG":{"blockId":"d","x":1827,"y":2451,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aH":{"blockId":"X","x":1826,"y":3635,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"eG":{"blockId":"Y","x":1780,"y":4779,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"po":{"blockId":"h","x":1625,"y":5982,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"Bi":{"blockId":"a)","x":1604,"y":6174,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"Bj":{"blockId":"a*","x":1605,"y":6379,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"a+":{"blockId":"Z","x":1751,"y":6544,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"bf":{"blockId":"e","x":1616,"y":9433,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"O(":{"blockId":"eH","x":1525,"y":12167,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"j:":{"blockId":"i","x":1547,"y":12616,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"j;":{"blockId":"j","x":1890,"y":12873,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"Bk":{"blockId":"Q","x":1569,"y":13153,"width":200,"height":200,"minimized":true,"text":"0010 (Mega-Chip) - Disable Megachip mode"},"bm!":{"blockId":null,"x":844,"y":67,"width":1095,"height":240,"minimized":false,"text":"GUIDE TO THEME CODES:\n-Letter 1: Chooses music track 1-9. (Ex: 1 = play 2nd sound in backdrop, 2 = play 3rd sound in backdrop)\n-Letter 2: Chooses backdrop for main menu. (Ex. 1 = Backdrop #1 [Which is \"Gradient\"]) (hex value, \n-Letter 3: Sets the Y position of the tiles: ([value]*50) - 230\n-Letter 4: If this is 0, the logo does not appear. Any other value will cause it to display (does not affect height like in Executec's Wave Menu Customizer)\n-Letter 5: The first digit of the color value used for the logo and menu tiles\n-Letter 6: The second digit of the color value used for the logo and menu tiles\n-Letter 7: Special menu flag - changes how icons move\n-Letter 8: Special Emu flag - 0 for normal emulator layout, 1 for alt"},"bm#":{"blockId":null,"x":140,"y":-195,"width":350,"height":150,"minimized":false,"text":"Configuration for https://turbowarp.org/\nYou can move, resize, and minimize this comment, but don't edit it by hand. This comment can be deleted to remove the stored settings.\n{\"framerate\":60} // _twconfig_"}},"currentCostume":5,"costumes":[{"name":"Gradient","bitmapResolution":1,"dataFormat":"svg","assetId":"fa175e34628c26896373c3414377ec40","md5ext":"fa175e34628c26896373c3414377ec40.svg","rotationCenterX":359.2589999999998,"rotationCenterY":183.61880608147246},{"name":"WDS menu theme","bitmapResolution":2,"dataFormat":"png","assetId":"2693c857c44627834f8336f9887e42d0","md5ext":"2693c857c44627834f8336f9887e42d0.png","rotationCenterX":480,"rotationCenterY":360},{"name":"Chip-8","bitmapResolution":1,"dataFormat":"svg","assetId":"80df332e9546e3b943bba86dda0bb024","md5ext":"80df332e9546e3b943bba86dda0bb024.svg","rotationCenterX":356.105105105105,"rotationCenterY":193.5},{"name":"Game Boy","bitmapResolution":2,"dataFormat":"png","assetId":"b4ceaa1eaf58a6da8af13b943fa7e356","md5ext":"b4ceaa1eaf58a6da8af13b943fa7e356.png","rotationCenterX":480,"rotationCenterY":360},{"name":"HelloWorld","bitmapResolution":1,"dataFormat":"svg","assetId":"e4d955b6cfc775a43fe5d1b9ea07dd2a","md5ext":"e4d955b6cfc775a43fe5d1b9ea07dd2a.svg","rotationCenterX":347.08859000000007,"rotationCenterY":210},{"name":"Black","bitmapResolution":2,"dataFormat":"png","assetId":"03b7888f70938b472b2ea919c5dc8151","md5ext":"03b7888f70938b472b2ea919c5dc8151.png","rotationCenterX":480,"rotationCenterY":360},{"name":"screen","bitmapResolution":1,"dataFormat":"svg","assetId":"759219d5c8f29a8e007b354561635343","md5ext":"759219d5c8f29a8e007b354561635343.svg","rotationCenterX":240,"rotationCenterY":180.31433},{"name":"NES","bitmapResolution":2,"dataFormat":"png","assetId":"38b1374bdf8cf1b105c406161a56f1f7","md5ext":"38b1374bdf8cf1b105c406161a56f1f7.png","rotationCenterX":480,"rotationCenterY":360},{"name":"SI8080","bitmapResolution":1,"dataFormat":"svg","assetId":"157ef1da5c0fec6d22d45fad5f99edea","md5ext":"157ef1da5c0fec6d22d45fad5f99edea.svg","rotationCenterX":352,"rotationCenterY":226},{"name":"VMU_Bezel","bitmapResolution":2,"dataFormat":"png","assetId":"24b9bed8293a7c0a78ff57bd511c069e","md5ext":"24b9bed8293a7c0a78ff57bd511c069e.png","rotationCenterX":480,"rotationCenterY":360},{"name":"BytePusher","bitmapResolution":2,"dataFormat":"png","assetId":"a16ca25547941108ececb1be532f9f20","md5ext":"a16ca25547941108ececb1be532f9f20.png","rotationCenterX":438,"rotationCenterY":355},{"name":"Gradient2","bitmapResolution":1,"dataFormat":"svg","assetId":"64d71ca977274c77420f2dac75427b5e","md5ext":"64d71ca977274c77420f2dac75427b5e.svg","rotationCenterX":359.52402000000006,"rotationCenterY":179.87586499999998}],"sounds":[{"name":"ping-bing","assetId":"2e8cb3fd485e0c82f52a768c13f6d354","dataFormat":"wav","format":"","rate":48000,"sampleCount":15812,"md5ext":"2e8cb3fd485e0c82f52a768c13f6d354.wav"},{"name":"Slide WDS","assetId":"ceabc6ee6f56f4c82fd9755ca443d497","dataFormat":"wav","format":"","rate":48000,"sampleCount":19339,"md5ext":"ceabc6ee6f56f4c82fd9755ca443d497.wav"},{"name":"Purple Planet Music - Chilled - Global Tech","assetId":"60c0f16e86df1d94f16777e09cfcbd6a","dataFormat":"wav","rate":22050,"sampleCount":2026921,"md5ext":"60c0f16e86df1d94f16777e09cfcbd6a.wav"},{"name":"3DS-Menu","assetId":"2d59971c9a589b079e7ad65140961869","dataFormat":"mp3","rate":48000,"sampleCount":6012342,"md5ext":"2d59971c9a589b079e7ad65140961869.mp3"},{"name":"12 Special Stamps","assetId":"f9501b167681484f7387fd2ac62ea186","dataFormat":"mp3","rate":48000,"sampleCount":2589257,"md5ext":"f9501b167681484f7387fd2ac62ea186.mp3"},{"name":"Get Stickbugged Lol","assetId":"0dacf47808238baf7ac3219f07892016","dataFormat":"mp3","rate":48000,"sampleCount":4256496,"md5ext":"0dacf47808238baf7ac3219f07892016.mp3"}],"volume":100,"layerOrder":0,"tempo":60,"videoTransparency":50,"videoState":"on","textToSpeechLanguage":"en"},{"isStage":false,"name":"nothing","variables":{},"lists":{},"broadcasts":{},"blocks":{},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":26,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"synthesizer","variables":{"ln{MS#PL`8.}h:(_}UB]":["_id",1],"(ecE`kfJLzw4p#})J_i9":["_pitch","0"]},"lists":{},"broadcasts":{},"blocks":{"2H":{"opcode":"operator_not","next":null,"parent":"Bl","inputs":{"OPERAND":[2,"O)"]},"fields":{},"shadow":false,"topLevel":false},"2I":{"opcode":"operator_not","next":null,"parent":"Bl","inputs":{"OPERAND":[2,"aLp"]},"fields":{},"shadow":false,"topLevel":false},"2J":{"opcode":"procedures_definition","next":"2K","parent":null,"inputs":{"custom_block":[1,"2L"]},"fields":{},"shadow":false,"topLevel":true,"x":1152,"y":3042},"2K":{"opcode":"data_deletealloflist","next":"2M","parent":"2J","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"2L":{"opcode":"procedures_prototype","next":null,"parent":"2J","inputs":{"w5XJ!30u%BMD,Rj4C9eX":[1,"aLq"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick %s","argumentids":"[\"w5XJ!30u%BMD,Rj4C9eX\"]","argumentnames":"[\"sample\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"2M":{"opcode":"data_setvariableto","next":"Bm","parent":"2K","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"2N":{"opcode":"procedures_call","next":"2O","parent":"Bm","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","warp":"true"}},"2P":{"opcode":"data_itemoflist","next":null,"parent":"Bn","inputs":{"INDEX":[3,"2Q",[7,0]]},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"Bo":{"opcode":"procedures_definition","next":"Bp","parent":null,"inputs":{"custom_block":[1,"aLr"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":0},"aLr":{"opcode":"procedures_prototype","next":null,"parent":"Bo","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Bp":{"opcode":"data_setvariableto","next":"Bq","parent":"Bo","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"Bq":{"opcode":"data_setvariableto","next":"Br","parent":"Bp","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["q","|Wne6DL=-zq^m9{2r`hA"]},"shadow":false,"topLevel":false},"Br":{"opcode":"data_setvariableto","next":"Bs","parent":"Bq","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"Bs":{"opcode":"control_repeat","next":null,"parent":"Br","inputs":{"TIMES":[1,[6,"63"]],"SUBSTACK":[2,"j="]},"fields":{},"shadow":false,"topLevel":false},"j=":{"opcode":"control_create_clone_of","next":"aLs","parent":"Bs","inputs":{"CLONE_OPTION":[1,"aLt"]},"fields":{},"shadow":false,"topLevel":false},"aLt":{"opcode":"control_create_clone_of_menu","next":null,"parent":"j=","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"aLs":{"opcode":"data_changevariableby","next":null,"parent":"j=","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"aLu":{"opcode":"event_whenbroadcastreceived","next":"Bt","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":2112},"Bt":{"opcode":"control_forever","next":null,"parent":"aLu","inputs":{"SUBSTACK":[2,"bg"]},"fields":{},"shadow":false,"topLevel":false},"bg":{"opcode":"control_if","next":"eI","parent":"Bt","inputs":{"CONDITION":[2,"O*"],"SUBSTACK":[2,"bh"]},"fields":{},"shadow":false,"topLevel":false},"O*":{"opcode":"operator_equals","next":null,"parent":"bg","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"bh":{"opcode":"control_if","next":"Bu","parent":"bg","inputs":{"CONDITION":[2,"Bv"],"SUBSTACK":[2,"Bw"]},"fields":{},"shadow":false,"topLevel":false},"Bv":{"opcode":"operator_not","next":null,"parent":"bh","inputs":{"OPERAND":[2,"Bx"]},"fields":{},"shadow":false,"topLevel":false},"Bx":{"opcode":"operator_equals","next":null,"parent":"Bv","inputs":{"OPERAND1":[3,"aLv",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aLv":{"opcode":"sound_volume","next":null,"parent":"Bx","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Bw":{"opcode":"sound_setvolumeto","next":"aLw","parent":"bh","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aLw":{"opcode":"sound_stopallsounds","next":null,"parent":"Bw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Bu":{"opcode":"control_wait_until","next":null,"parent":"bh","inputs":{"CONDITION":[2,"O+"]},"fields":{},"shadow":false,"topLevel":false},"O+":{"opcode":"operator_gt","next":null,"parent":"Bu","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"eI":{"opcode":"control_if_else","next":null,"parent":"bg","inputs":{"CONDITION":[2,"aLx"],"SUBSTACK":[2,"j?"],"SUBSTACK2":[2,"j@"]},"fields":{},"shadow":false,"topLevel":false},"aLx":{"opcode":"operator_gt","next":null,"parent":"eI","inputs":{"OPERAND1":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[10,""]],"OPERAND2":[3,[12,"q","|Wne6DL=-zq^m9{2r`hA"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j?":{"opcode":"control_if","next":null,"parent":"eI","inputs":{"CONDITION":[2,"By"],"SUBSTACK":[2,"aLy"]},"fields":{},"shadow":false,"topLevel":false},"By":{"opcode":"operator_gt","next":null,"parent":"j?","inputs":{"OPERAND1":[3,"aLz",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aLz":{"opcode":"sound_volume","next":null,"parent":"By","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aLy":{"opcode":"sound_setvolumeto","next":null,"parent":"j?","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"j@":{"opcode":"control_if","next":null,"parent":"eI","inputs":{"CONDITION":[2,"Bz"],"SUBSTACK":[2,"BA"]},"fields":{},"shadow":false,"topLevel":false},"Bz":{"opcode":"operator_not","next":null,"parent":"j@","inputs":{"OPERAND":[2,"j["]},"fields":{},"shadow":false,"topLevel":false},"j[":{"opcode":"operator_equals","next":null,"parent":"Bz","inputs":{"OPERAND1":[3,"aLA",[10,""]],"OPERAND2":[3,"aLB",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aLA":{"opcode":"sound_volume","next":null,"parent":"j[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aLB":{"opcode":"data_itemoflist","next":null,"parent":"j[","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,0]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"BA":{"opcode":"sound_setvolumeto","next":null,"parent":"j@","inputs":{"VOLUME":[3,"aLC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLC":{"opcode":"data_itemoflist","next":null,"parent":"BA","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,0]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"aLD":{"opcode":"event_whenbroadcastreceived","next":"BB","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":6864},"BB":{"opcode":"sound_setvolumeto","next":"BC","parent":"aLD","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"BC":{"opcode":"control_forever","next":null,"parent":"BB","inputs":{"SUBSTACK":[2,"bi"]},"fields":{},"shadow":false,"topLevel":false},"bi":{"opcode":"control_if","next":"BD","parent":"BC","inputs":{"CONDITION":[2,"BE"],"SUBSTACK":[2,"BF"]},"fields":{},"shadow":false,"topLevel":false},"BE":{"opcode":"operator_equals","next":null,"parent":"bi","inputs":{"OPERAND1":[3,"aLE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aLE":{"opcode":"sound_volume","next":null,"parent":"BE","inputs":{},"fields":{},"shadow":false,"topLevel":false},"BF":{"opcode":"control_wait_until","next":null,"parent":"bi","inputs":{"CONDITION":[2,"BG"]},"fields":{},"shadow":false,"topLevel":false},"BG":{"opcode":"operator_gt","next":null,"parent":"BF","inputs":{"OPERAND1":[3,"aLF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aLF":{"opcode":"sound_volume","next":null,"parent":"BG","inputs":{},"fields":{},"shadow":false,"topLevel":false},"BD":{"opcode":"sound_playuntildone","next":null,"parent":"bi","inputs":{"SOUND_MENU":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],"aLG"]},"fields":{},"shadow":false,"topLevel":false},"aLG":{"opcode":"sound_sounds_menu","next":null,"parent":"BD","inputs":{},"fields":{"SOUND_MENU":["sine15",null]},"shadow":true,"topLevel":false},"aLH":{"opcode":"event_whenbroadcastreceived","next":"BH","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":7280},"BH":{"opcode":"control_forever","next":null,"parent":"aLH","inputs":{"SUBSTACK":[2,"BI"]},"fields":{},"shadow":false,"topLevel":false},"BI":{"opcode":"control_if","next":null,"parent":"BH","inputs":{"CONDITION":[2,"Bl"],"SUBSTACK":[2,"BJ"]},"fields":{},"shadow":false,"topLevel":false},"Bl":{"opcode":"operator_and","next":null,"parent":"BI","inputs":{"OPERAND1":[2,"2H"],"OPERAND2":[2,"2I"]},"fields":{},"shadow":false,"topLevel":false},"O)":{"opcode":"operator_equals","next":null,"parent":"2H","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"aLp":{"opcode":"operator_equals","next":null,"parent":"2I","inputs":{"OPERAND1":[3,[12,"_pitch","(ecE`kfJLzw4p#})J_i9"],[10,""]],"OPERAND2":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"BJ":{"opcode":"data_setvariableto","next":"aLI","parent":"BI","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"aLI":{"opcode":"sound_seteffectto","next":null,"parent":"BJ","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"aLJ":{"opcode":"event_whenbroadcastreceived","next":"BK","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave create","1$IbL{2UD4|fdA:ahKxG"]},"shadow":false,"topLevel":true,"x":0,"y":7792},"BK":{"opcode":"procedures_call","next":"aLK","parent":"aLJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","warp":"true"}},"aLK":{"opcode":"event_broadcast","next":null,"parent":"BK","inputs":{"BROADCAST_INPUT":[1,[11,"wave","`NRJ+e5K0Tj^PUuZG!,Z"]]},"fields":{},"shadow":false,"topLevel":false},"aLL":{"opcode":"event_whenbroadcastreceived","next":"BL","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["prune","eUXr-]/_0N]qtaXLt(ye"]},"shadow":false,"topLevel":true,"x":0,"y":7992},"BL":{"opcode":"data_deletealloflist","next":"BM","parent":"aLL","inputs":{},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"BM":{"opcode":"data_deletealloflist","next":"BN","parent":"BL","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"BN":{"opcode":"data_deletealloflist","next":"BO","parent":"BM","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"BO":{"opcode":"data_deletealloflist","next":"BP","parent":"BN","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"BP":{"opcode":"data_deletealloflist","next":"BQ","parent":"BO","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"BQ":{"opcode":"data_deletealloflist","next":"aLM","parent":"BP","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aLM":{"opcode":"control_delete_this_clone","next":null,"parent":"BQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"BR":{"opcode":"procedures_definition","next":"BS","parent":null,"inputs":{"custom_block":[1,"aLN"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":976},"aLN":{"opcode":"procedures_prototype","next":null,"parent":"BR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"BS":{"opcode":"data_deletealloflist","next":"BT","parent":"BR","inputs":{},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"BT":{"opcode":"control_clear_counter","next":"BU","parent":"BS","inputs":{},"fields":{},"shadow":false,"topLevel":false},"BU":{"opcode":"control_repeat","next":null,"parent":"BT","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"BV"]},"fields":{},"shadow":false,"topLevel":false},"BV":{"opcode":"data_setvariableto","next":"BW","parent":"BU","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"BW":{"opcode":"control_incr_counter","next":"BX","parent":"BV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"BX":{"opcode":"control_repeat","next":null,"parent":"BW","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"j]"]},"fields":{},"shadow":false,"topLevel":false},"j]":{"opcode":"data_setvariableto","next":"BY","parent":"BX","inputs":{"VALUE":[3,"aLO",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aLO":{"opcode":"operator_divide","next":null,"parent":"j]","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"BY":{"opcode":"data_addtolist","next":null,"parent":"j]","inputs":{"ITEM":[3,"BZ",[10,""]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"BZ":{"opcode":"operator_multiply","next":null,"parent":"BY","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"B0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B0":{"opcode":"operator_mod","next":null,"parent":"BZ","inputs":{"NUM1":[3,"B1",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"B1":{"opcode":"operator_mathop","next":null,"parent":"B0","inputs":{"NUM":[3,"B2",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"B2":{"opcode":"operator_divide","next":null,"parent":"B1","inputs":{"NUM1":[3,"B3",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B3":{"opcode":"data_itemoflist","next":null,"parent":"B2","inputs":{"INDEX":[3,"aLP",[7,0]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"aLP":{"opcode":"control_get_counter","next":null,"parent":"B3","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aLQ":{"opcode":"event_whenbroadcastreceived","next":"B4","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["sound.updatech8buffer","#z59?3=sivtfq@){KBjG"]},"shadow":false,"topLevel":true,"x":0,"y":3040},"B4":{"opcode":"procedures_call","next":"B5","parent":"aLQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","warp":"true"}},"B5":{"opcode":"procedures_call","next":"B6","parent":"B4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","warp":"true"}},"B6":{"opcode":"procedures_call","next":"aLR","parent":"B5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","warp":"true"}},"aLR":{"opcode":"procedures_call","next":null,"parent":"B6","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","warp":"true"}},"B7":{"opcode":"procedures_definition","next":"B8","parent":null,"inputs":{"custom_block":[1,"aLS"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":440},"aLS":{"opcode":"procedures_prototype","next":null,"parent":"B7","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"B8":{"opcode":"data_setvariableto","next":"B9","parent":"B7","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"B9":{"opcode":"data_deletealloflist","next":"j^","parent":"B8","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"j^":{"opcode":"control_repeat","next":null,"parent":"B9","inputs":{"TIMES":[3,"aLT",[6,0]],"SUBSTACK":[2,"B!"]},"fields":{},"shadow":false,"topLevel":false},"aLT":{"opcode":"data_lengthoflist","next":null,"parent":"j^","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B!":{"opcode":"data_changevariableby","next":"j_","parent":"j^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"j_":{"opcode":"data_setvariableto","next":"j`","parent":"B!","inputs":{"VALUE":[3,"aLU",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aLU":{"opcode":"data_itemoflist","next":null,"parent":"j_","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"j`":{"opcode":"data_setvariableto","next":"B#","parent":"j_","inputs":{"VALUE":[3,"aLV",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aLV":{"opcode":"data_itemoflist","next":null,"parent":"j`","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B#":{"opcode":"data_addtolist","next":null,"parent":"j`","inputs":{"ITEM":[3,"B%",[10,""]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"B%":{"opcode":"operator_multiply","next":null,"parent":"B#","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"B(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B(":{"opcode":"operator_mathop","next":null,"parent":"B%","inputs":{"NUM":[3,"j{",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"j{":{"opcode":"operator_add","next":null,"parent":"B(","inputs":{"NUM1":[3,"aLW",[4,0]],"NUM2":[3,"aLX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLW":{"opcode":"operator_multiply","next":null,"parent":"j{","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLX":{"opcode":"operator_multiply","next":null,"parent":"j{","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]],"NUM2":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B)":{"opcode":"procedures_definition","next":"B*","parent":null,"inputs":{"custom_block":[1,"aLY"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":1592},"aLY":{"opcode":"procedures_prototype","next":null,"parent":"B)","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"B*":{"opcode":"data_deletealloflist","next":"B+","parent":"B)","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"B+":{"opcode":"data_deletealloflist","next":"B,","parent":"B*","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B,":{"opcode":"control_clear_counter","next":"B-","parent":"B+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"B-":{"opcode":"control_repeat","next":null,"parent":"B,","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"B."]},"fields":{},"shadow":false,"topLevel":false},"B.":{"opcode":"control_incr_counter","next":"j|","parent":"B-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"j|":{"opcode":"data_addtolist","next":"B/","parent":"B.","inputs":{"ITEM":[3,"B:",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"B:":{"opcode":"operator_divide","next":null,"parent":"j|","inputs":{"NUM1":[3,"B;",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"B;":{"opcode":"data_itemoflist","next":null,"parent":"B:","inputs":{"INDEX":[3,"aLZ",[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"aLZ":{"opcode":"control_get_counter","next":null,"parent":"B;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"B/":{"opcode":"data_addtolist","next":null,"parent":"j|","inputs":{"ITEM":[3,"B=",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"B=":{"opcode":"operator_divide","next":null,"parent":"B/","inputs":{"NUM1":[3,"B?",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"B?":{"opcode":"data_itemoflist","next":null,"parent":"B=","inputs":{"INDEX":[3,"aL0",[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"aL0":{"opcode":"control_get_counter","next":null,"parent":"B?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aL1":{"opcode":"event_whenbroadcastreceived","next":"B@","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":0,"y":8424},"B@":{"opcode":"control_stop","next":"B[","parent":"aL1","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"B[":{"opcode":"event_broadcast","next":"aL2","parent":"B@","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"aL2":{"opcode":"sound_stopallsounds","next":null,"parent":"B[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aLq":{"opcode":"argument_reporter_string_number","next":null,"parent":"2L","inputs":{},"fields":{"VALUE":["sample",null]},"shadow":true,"topLevel":false},"Bm":{"opcode":"control_repeat","next":"2N","parent":"2M","inputs":{"TIMES":[1,[6,"64"]],"SUBSTACK":[2,"Bn"]},"fields":{},"shadow":false,"topLevel":false},"Bn":{"opcode":"data_addtolist","next":"aL3","parent":"Bm","inputs":{"ITEM":[3,"2P",[10,""]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"2Q":{"opcode":"operator_add","next":null,"parent":"2P","inputs":{"NUM1":[3,"aL4",[4,0]],"NUM2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aL4":{"opcode":"argument_reporter_string_number","next":null,"parent":"2Q","inputs":{},"fields":{"VALUE":["sample",null]},"shadow":false,"topLevel":false},"aL3":{"opcode":"data_changevariableby","next":null,"parent":"Bn","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"2O":{"opcode":"procedures_call","next":"aL5","parent":"2N","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","warp":"true"}},"aL5":{"opcode":"procedures_call","next":null,"parent":"2O","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","warp":"true"}},"B]":{"opcode":"procedures_definition","next":"2R","parent":null,"inputs":{"custom_block":[1,"O,"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":3336},"O,":{"opcode":"procedures_prototype","next":null,"parent":"B]","inputs":{"input0":[3,null,"aL6"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[false]","warp":"true"}},"aL6":{"opcode":"argument_reporter_boolean","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["I",null]},"shadow":true,"topLevel":true,"x":108,"y":3340},"=":{"opcode":"control_if_else","next":"B^","parent":"2S","inputs":{"CONDITION":[2,"j}"],"SUBSTACK":[2,"B_"],"SUBSTACK2":[2,"B`"]},"fields":{},"shadow":false,"topLevel":false},"j}":{"opcode":"operator_lt","next":null,"parent":"=","inputs":{"OPERAND1":[3,"aL7",[10,""]],"OPERAND2":[3,"aL8",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aL7":{"opcode":"data_lengthoflist","next":null,"parent":"j}","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aL8":{"opcode":"data_lengthoflist","next":null,"parent":"j}","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B_":{"opcode":"data_setvariableto","next":null,"parent":"=","inputs":{"VALUE":[3,"aL9",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aL9":{"opcode":"data_lengthoflist","next":null,"parent":"B_","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B`":{"opcode":"data_setvariableto","next":null,"parent":"=","inputs":{"VALUE":[3,"aL!",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aL!":{"opcode":"data_lengthoflist","next":null,"parent":"B`","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"B^":{"opcode":"data_changevariableby","next":"B{","parent":"=","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"B{":{"opcode":"data_setvariableto","next":"B|","parent":"B^","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"B|":{"opcode":"data_setvariableto","next":"bj","parent":"B{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"bj":{"opcode":"control_repeat_until","next":"j~","parent":"B|","inputs":{"CONDITION":[2,"aL#"],"SUBSTACK":[2,"B}"]},"fields":{},"shadow":false,"topLevel":false},"aL#":{"opcode":"operator_gt","next":null,"parent":"bj","inputs":{"OPERAND1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]],"OPERAND2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"B}":{"opcode":"data_changevariableby","next":"aL%","parent":"bj","inputs":{"VALUE":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aL%":{"opcode":"data_changevariableby","next":null,"parent":"B}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"j~":{"opcode":"control_repeat","next":"B~","parent":"bj","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"ka"]},"fields":{},"shadow":false,"topLevel":false},"ka":{"opcode":"data_setvariableto","next":"Ca","parent":"j~","inputs":{"VALUE":[3,"aL(",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aL(":{"opcode":"data_lengthoflist","next":null,"parent":"ka","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Ca":{"opcode":"data_setvariableto","next":"kb","parent":"ka","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"kb":{"opcode":"control_repeat","next":"Cb","parent":"Ca","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"kc"]},"fields":{},"shadow":false,"topLevel":false},"kc":{"opcode":"data_setvariableto","next":"kd","parent":"kb","inputs":{"VALUE":[3,"aL)",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aL)":{"opcode":"operator_multiply","next":null,"parent":"kc","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"kd":{"opcode":"data_changevariableby","next":"Cc","parent":"kc","inputs":{"VALUE":[3,"aL*",[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aL*":{"opcode":"operator_mod","next":null,"parent":"kd","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cc":{"opcode":"data_setvariableto","next":null,"parent":"kd","inputs":{"VALUE":[3,"Cd",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Cd":{"opcode":"operator_mathop","next":null,"parent":"Cc","inputs":{"NUM":[3,"aL+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aL+":{"opcode":"operator_divide","next":null,"parent":"Cd","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cb":{"opcode":"data_changevariableby","next":"ke","parent":"kb","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"ke":{"opcode":"data_addtolist","next":"Ce","parent":"Cb","inputs":{"ITEM":[3,"Cf",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Cf":{"opcode":"operator_add","next":null,"parent":"ke","inputs":{"NUM1":[3,"aL,",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aL,":{"opcode":"data_itemoflist","next":null,"parent":"Cf","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Ce":{"opcode":"data_addtolist","next":null,"parent":"ke","inputs":{"ITEM":[3,"Cg",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"Cg":{"opcode":"operator_add","next":null,"parent":"Ce","inputs":{"NUM1":[3,"aL-",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aL-":{"opcode":"data_itemoflist","next":null,"parent":"Cg","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"B~":{"opcode":"data_setvariableto","next":"kf","parent":"j~","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"kf":{"opcode":"control_repeat","next":"2T","parent":"B~","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"Ch"]},"fields":{},"shadow":false,"topLevel":false},"Ch":{"opcode":"data_setvariableto","next":"kg","parent":"kf","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"kg":{"opcode":"data_setvariableto","next":"kh","parent":"Ch","inputs":{"VALUE":[3,"aL.",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aL.":{"opcode":"operator_divide","next":null,"parent":"kg","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"kh":{"opcode":"control_repeat","next":"aL/","parent":"kg","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"Ci"]},"fields":{},"shadow":false,"topLevel":false},"Ci":{"opcode":"data_setvariableto","next":"pp","parent":"kh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"cz":{"opcode":"control_if_else","next":null,"parent":null,"inputs":{"CONDITION":[1,null],"SUBSTACK":[2,"Cj"],"SUBSTACK2":[1,null]},"fields":{},"shadow":false,"topLevel":true,"x":551,"y":4979},"Cj":{"opcode":"data_setvariableto","next":null,"parent":"cz","inputs":{"VALUE":[3,"aL:",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"aL:":{"opcode":"operator_divide","next":null,"parent":"Cj","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"pp":{"opcode":"data_setvariableto","next":"ki","parent":"Ci","inputs":{"VALUE":[3,"aL;",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"aL;":{"opcode":"operator_divide","next":null,"parent":"pp","inputs":{"NUM1":[1,[4,"-180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ki":{"opcode":"control_repeat","next":"aL=","parent":"pp","inputs":{"TIMES":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,0]],"SUBSTACK":[2,"Ck"]},"fields":{},"shadow":false,"topLevel":false},"Ck":{"opcode":"data_changevariableby","next":"kj","parent":"ki","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"kj":{"opcode":"data_setvariableto","next":"kk","parent":"Ck","inputs":{"VALUE":[3,"aL?",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"aL?":{"opcode":"operator_mathop","next":null,"parent":"kj","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"kk":{"opcode":"data_setvariableto","next":"kl","parent":"kj","inputs":{"VALUE":[3,"aL@",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"aL@":{"opcode":"operator_mathop","next":null,"parent":"kk","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"kl":{"opcode":"data_setvariableto","next":"km","parent":"kk","inputs":{"VALUE":[3,"aL[",[10,""]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"aL[":{"opcode":"data_itemoflist","next":null,"parent":"kl","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"km":{"opcode":"data_setvariableto","next":"kn","parent":"kl","inputs":{"VALUE":[3,"aL]",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"aL]":{"opcode":"data_itemoflist","next":null,"parent":"km","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"kn":{"opcode":"data_setvariableto","next":"ko","parent":"km","inputs":{"VALUE":[3,"kp",[10,""]]},"fields":{"VARIABLE":["r.6","flj)QgXS,93H6OayZ`w[-r.6-"]},"shadow":false,"topLevel":false},"kp":{"opcode":"operator_subtract","next":null,"parent":"kn","inputs":{"NUM1":[3,"aL^",[4,0]],"NUM2":[3,"aL_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aL^":{"opcode":"operator_multiply","next":null,"parent":"kp","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aL_":{"opcode":"operator_multiply","next":null,"parent":"kp","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ko":{"opcode":"data_setvariableto","next":"kq","parent":"kn","inputs":{"VALUE":[3,"kr",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"kr":{"opcode":"operator_add","next":null,"parent":"ko","inputs":{"NUM1":[3,"aL`",[4,0]],"NUM2":[3,"aL{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aL`":{"opcode":"operator_multiply","next":null,"parent":"kr","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aL{":{"opcode":"operator_multiply","next":null,"parent":"kr","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kq":{"opcode":"data_changevariableby","next":"ks","parent":"ko","inputs":{"VALUE":[3,"aL|",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aL|":{"opcode":"operator_subtract","next":null,"parent":"kq","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ks":{"opcode":"data_setvariableto","next":"kt","parent":"kq","inputs":{"VALUE":[3,"aL}",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"aL}":{"opcode":"data_itemoflist","next":null,"parent":"ks","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"kt":{"opcode":"data_setvariableto","next":"ku","parent":"ks","inputs":{"VALUE":[3,"aL~",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"aL~":{"opcode":"data_itemoflist","next":null,"parent":"kt","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"ku":{"opcode":"data_replaceitemoflist","next":"kv","parent":"kt","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"aMa",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aMa":{"opcode":"operator_add","next":null,"parent":"ku","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kv":{"opcode":"data_replaceitemoflist","next":"Cl","parent":"ku","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"aMb",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aMb":{"opcode":"operator_add","next":null,"parent":"kv","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Cl":{"opcode":"data_changevariableby","next":"kw","parent":"kv","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"kw":{"opcode":"data_replaceitemoflist","next":"kx","parent":"Cl","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"aMc",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aMc":{"opcode":"operator_subtract","next":null,"parent":"kw","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kx":{"opcode":"data_replaceitemoflist","next":"ky","parent":"kw","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"aMd",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aMd":{"opcode":"operator_subtract","next":null,"parent":"kx","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ky":{"opcode":"data_changevariableby","next":"aMe","parent":"kx","inputs":{"VALUE":[3,"aMf",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aMf":{"opcode":"operator_subtract","next":null,"parent":"ky","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aMe":{"opcode":"data_changevariableby","next":null,"parent":"ky","inputs":{"VALUE":[3,[12,"r.9","flj)QgXS,93H6OayZ`w[-r.9-"],[4,0]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"aL=":{"opcode":"data_changevariableby","next":null,"parent":"ki","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aL/":{"opcode":"data_changevariableby","next":null,"parent":"kh","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"kz":{"opcode":"data_setvariableto","next":"Cm","parent":"2U","inputs":{"VALUE":[3,"Cn",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Cn":{"opcode":"operator_mathop","next":null,"parent":"kz","inputs":{"NUM":[3,"aMg",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"aMg":{"opcode":"data_lengthoflist","next":null,"parent":"Cn","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Cm":{"opcode":"control_clear_counter","next":"kA","parent":"kz","inputs":{},"fields":{},"shadow":false,"topLevel":false},"kA":{"opcode":"control_repeat","next":null,"parent":"Cm","inputs":{"TIMES":[3,"aMh",[6,0]],"SUBSTACK":[2,"Co"]},"fields":{},"shadow":false,"topLevel":false},"aMh":{"opcode":"data_lengthoflist","next":null,"parent":"kA","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Co":{"opcode":"control_incr_counter","next":"kB","parent":"kA","inputs":{},"fields":{},"shadow":false,"topLevel":false},"kB":{"opcode":"data_addtolist","next":"Cp","parent":"Co","inputs":{"ITEM":[3,"Cq",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Cq":{"opcode":"operator_divide","next":null,"parent":"kB","inputs":{"NUM1":[3,"Cr",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Cr":{"opcode":"data_itemoflist","next":null,"parent":"Cq","inputs":{"INDEX":[3,"aMi",[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aMi":{"opcode":"control_get_counter","next":null,"parent":"Cr","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Cp":{"opcode":"data_addtolist","next":null,"parent":"kB","inputs":{"ITEM":[3,"Cs",[10,""]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"Cs":{"opcode":"operator_divide","next":null,"parent":"Cp","inputs":{"NUM1":[3,"Ct",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ct":{"opcode":"data_itemoflist","next":null,"parent":"Cs","inputs":{"INDEX":[3,"aMj",[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aMj":{"opcode":"control_get_counter","next":null,"parent":"Ct","inputs":{},"fields":{},"shadow":false,"topLevel":false},"2T":{"opcode":"data_deletealloflist","next":"2U","parent":"kf","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"2U":{"opcode":"data_deletealloflist","next":"kz","parent":"2T","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"2R":{"opcode":"data_deletealloflist","next":"2S","parent":"B]","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"2S":{"opcode":"data_deletealloflist","next":"=","parent":"2R","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false}},"comments":{"aMk":{"blockId":"aMl","x":-115,"y":3086,"width":200,"height":200,"minimized":true,"text":"fft"},"aMm":{"blockId":"aMn","x":-88,"y":3186,"width":200,"height":200,"minimized":true,"text":"inverse fft"},"bm%":{"blockId":"bm(","x":395,"y":2270,"width":200,"height":200,"minimized":true,"text":"This affects the height of the \"wave\" in the background."}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"vsine1","assetId":"d2a0d4559613ef2bfc40167edd8c5c4b","dataFormat":"wav","rate":48000,"sampleCount":3072000,"md5ext":"d2a0d4559613ef2bfc40167edd8c5c4b.wav"},{"name":"vsine2","assetId":"f8843c06c36a01ac5928d2a27d144d89","dataFormat":"wav","rate":48000,"sampleCount":1536000,"md5ext":"f8843c06c36a01ac5928d2a27d144d89.wav"},{"name":"vsine3","assetId":"03c7be5de5e3a3e34dec160853ac5f25","dataFormat":"wav","rate":48000,"sampleCount":1024000,"md5ext":"03c7be5de5e3a3e34dec160853ac5f25.wav"},{"name":"vsine4","assetId":"844b136c1c36a43805b45d2d93cd7e31","dataFormat":"wav","rate":48000,"sampleCount":768000,"md5ext":"844b136c1c36a43805b45d2d93cd7e31.wav"},{"name":"vsine5","assetId":"ff957600839bbd58abd52aad2531b67d","dataFormat":"wav","rate":48000,"sampleCount":614400,"md5ext":"ff957600839bbd58abd52aad2531b67d.wav"},{"name":"vsine6","assetId":"b314e31977e690f46450433836c24a4f","dataFormat":"wav","rate":48000,"sampleCount":512000,"md5ext":"b314e31977e690f46450433836c24a4f.wav"},{"name":"vsine7","assetId":"0a1229ba60dd4bdac663c0f64615577a","dataFormat":"wav","rate":48000,"sampleCount":438857,"md5ext":"0a1229ba60dd4bdac663c0f64615577a.wav"},{"name":"vsine8","assetId":"4b936c35b563d559de3122f775393009","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"4b936c35b563d559de3122f775393009.wav"},{"name":"vsine9","assetId":"4147dc61054ccd96f596638c7f298dce","dataFormat":"wav","rate":48000,"sampleCount":341333,"md5ext":"4147dc61054ccd96f596638c7f298dce.wav"},{"name":"vsine10","assetId":"497d0c2eb954ace427b95695e9badbaf","dataFormat":"wav","rate":48000,"sampleCount":307200,"md5ext":"497d0c2eb954ace427b95695e9badbaf.wav"},{"name":"vsine11","assetId":"3aa72c565867b6324d52d29884b9010a","dataFormat":"wav","rate":48000,"sampleCount":279272,"md5ext":"3aa72c565867b6324d52d29884b9010a.wav"},{"name":"vsine12","assetId":"7ffe6b116e37894f3fcbc9f54aab09c0","dataFormat":"wav","rate":48000,"sampleCount":256000,"md5ext":"7ffe6b116e37894f3fcbc9f54aab09c0.wav"},{"name":"vsine13","assetId":"7e1f020e1ea02f5cb1089d5e29de3718","dataFormat":"wav","rate":48000,"sampleCount":236307,"md5ext":"7e1f020e1ea02f5cb1089d5e29de3718.wav"},{"name":"vsine14","assetId":"6ef07ef8283bf79a39f0657f5e87519c","dataFormat":"wav","rate":48000,"sampleCount":219428,"md5ext":"6ef07ef8283bf79a39f0657f5e87519c.wav"},{"name":"vsine15","assetId":"3c958dab6e860e14d79da9e0935cd105","dataFormat":"wav","rate":48000,"sampleCount":204799,"md5ext":"3c958dab6e860e14d79da9e0935cd105.wav"},{"name":"vsine16","assetId":"2780f6f2e63ec9e15b77d3416be9de04","dataFormat":"wav","rate":48000,"sampleCount":192000,"md5ext":"2780f6f2e63ec9e15b77d3416be9de04.wav"},{"name":"vsine17","assetId":"43541ccad018dc3238c62edf73da152a","dataFormat":"wav","rate":48000,"sampleCount":180705,"md5ext":"43541ccad018dc3238c62edf73da152a.wav"},{"name":"vsine18","assetId":"6ef2d0b9c6e95ddbf6118d4fde71a465","dataFormat":"wav","rate":48000,"sampleCount":170666,"md5ext":"6ef2d0b9c6e95ddbf6118d4fde71a465.wav"},{"name":"vsine19","assetId":"0975abf37c53d2a4cc80a9134c6bff05","dataFormat":"wav","rate":48000,"sampleCount":161684,"md5ext":"0975abf37c53d2a4cc80a9134c6bff05.wav"},{"name":"vsine20","assetId":"e0011396c77640d6bf922b06fd0472de","dataFormat":"wav","rate":48000,"sampleCount":153600,"md5ext":"e0011396c77640d6bf922b06fd0472de.wav"},{"name":"vsine21","assetId":"0ed2d10f73d3e122c5a6675e99b65b8f","dataFormat":"wav","rate":48000,"sampleCount":146285,"md5ext":"0ed2d10f73d3e122c5a6675e99b65b8f.wav"},{"name":"vsine22","assetId":"beab5e4215949d6a42f1459b2ef3a76c","dataFormat":"wav","rate":48000,"sampleCount":139636,"md5ext":"beab5e4215949d6a42f1459b2ef3a76c.wav"},{"name":"vsine23","assetId":"dbb8656cbc1bd4be2925369f23d6898b","dataFormat":"wav","rate":48000,"sampleCount":133565,"md5ext":"dbb8656cbc1bd4be2925369f23d6898b.wav"},{"name":"vsine24","assetId":"fb0488ad64a0ad315e4876a7f17b2d57","dataFormat":"wav","rate":48000,"sampleCount":128000,"md5ext":"fb0488ad64a0ad315e4876a7f17b2d57.wav"},{"name":"vsine25","assetId":"d829dd50bcaeccb2f717ab7520792f63","dataFormat":"wav","rate":48000,"sampleCount":122880,"md5ext":"d829dd50bcaeccb2f717ab7520792f63.wav"},{"name":"vsine26","assetId":"2c511d98e28e3c61ff073634e743d1ff","dataFormat":"wav","rate":48000,"sampleCount":118153,"md5ext":"2c511d98e28e3c61ff073634e743d1ff.wav"},{"name":"vsine27","assetId":"ee1a06586e105bd1fa0649f814c37e59","dataFormat":"wav","rate":48000,"sampleCount":113777,"md5ext":"ee1a06586e105bd1fa0649f814c37e59.wav"},{"name":"vsine28","assetId":"45f2e5a14e0184577e79c38391f1162d","dataFormat":"wav","rate":48000,"sampleCount":109714,"md5ext":"45f2e5a14e0184577e79c38391f1162d.wav"},{"name":"vsine29","assetId":"d37c1ab5fb39b216ae2aa483fbf76554","dataFormat":"wav","rate":48000,"sampleCount":105931,"md5ext":"d37c1ab5fb39b216ae2aa483fbf76554.wav"},{"name":"vsine30","assetId":"4c309aee9cc10a42856d5f024e6152d1","dataFormat":"wav","rate":48000,"sampleCount":102399,"md5ext":"4c309aee9cc10a42856d5f024e6152d1.wav"},{"name":"vsine31","assetId":"b5f8f985aef44882ecddfeff9aa6340c","dataFormat":"wav","rate":48000,"sampleCount":99096,"md5ext":"b5f8f985aef44882ecddfeff9aa6340c.wav"},{"name":"vsine32","assetId":"05ded0c8f25e8b03626035df7af32cd0","dataFormat":"wav","rate":48000,"sampleCount":96000,"md5ext":"05ded0c8f25e8b03626035df7af32cd0.wav"},{"name":"vsine33","assetId":"64e74ea408d52d689380f15a59967677","dataFormat":"wav","rate":48000,"sampleCount":93090,"md5ext":"64e74ea408d52d689380f15a59967677.wav"},{"name":"vsine34","assetId":"ae72bc4141df65ff360b8b5937edad3f","dataFormat":"wav","rate":48000,"sampleCount":90352,"md5ext":"ae72bc4141df65ff360b8b5937edad3f.wav"},{"name":"vsine35","assetId":"e7981802fa80be778f5d27c3f3f5bf1c","dataFormat":"wav","rate":48000,"sampleCount":87771,"md5ext":"e7981802fa80be778f5d27c3f3f5bf1c.wav"},{"name":"vsine36","assetId":"fc492a5b4a980d499e4c2e0b88cd4fd9","dataFormat":"wav","rate":48000,"sampleCount":85333,"md5ext":"fc492a5b4a980d499e4c2e0b88cd4fd9.wav"},{"name":"vsine37","assetId":"77d4c2f43b84c3c484969dd515ce266e","dataFormat":"wav","rate":48000,"sampleCount":83027,"md5ext":"77d4c2f43b84c3c484969dd515ce266e.wav"},{"name":"vsine38","assetId":"1ab5e24c20e085722e88f3d59e7bbb4c","dataFormat":"wav","rate":48000,"sampleCount":80842,"md5ext":"1ab5e24c20e085722e88f3d59e7bbb4c.wav"},{"name":"vsine39","assetId":"f06a529769a7725df49c4c4aac922c13","dataFormat":"wav","rate":48000,"sampleCount":78769,"md5ext":"f06a529769a7725df49c4c4aac922c13.wav"},{"name":"vsine40","assetId":"162f68962d9559fb21fc6f9772ed973a","dataFormat":"wav","rate":48000,"sampleCount":76800,"md5ext":"162f68962d9559fb21fc6f9772ed973a.wav"},{"name":"vsine41","assetId":"b0f370580e412c58b81f8d1ce2381ba2","dataFormat":"wav","rate":48000,"sampleCount":74926,"md5ext":"b0f370580e412c58b81f8d1ce2381ba2.wav"},{"name":"vsine42","assetId":"312bbeed8e1f79b76827cf55d344a6e7","dataFormat":"wav","rate":48000,"sampleCount":73142,"md5ext":"312bbeed8e1f79b76827cf55d344a6e7.wav"},{"name":"vsine43","assetId":"7d414df6a72804b9171aed13b73912bb","dataFormat":"wav","rate":48000,"sampleCount":71441,"md5ext":"7d414df6a72804b9171aed13b73912bb.wav"},{"name":"vsine44","assetId":"3131d7a4c3bfde5fd9f75fbacb287d76","dataFormat":"wav","rate":48000,"sampleCount":69818,"md5ext":"3131d7a4c3bfde5fd9f75fbacb287d76.wav"},{"name":"vsine45","assetId":"e928ecbd8ca4d05a2c2fadc4cf61fc7b","dataFormat":"wav","rate":48000,"sampleCount":68266,"md5ext":"e928ecbd8ca4d05a2c2fadc4cf61fc7b.wav"},{"name":"vsine46","assetId":"c42ea2946bd6238e0876097f284c9d8a","dataFormat":"wav","rate":48000,"sampleCount":66782,"md5ext":"c42ea2946bd6238e0876097f284c9d8a.wav"},{"name":"vsine47","assetId":"994c26c4fad9622f43794109082625e4","dataFormat":"wav","rate":48000,"sampleCount":65361,"md5ext":"994c26c4fad9622f43794109082625e4.wav"},{"name":"vsine48","assetId":"ff9f8c0b224ddfab0d7c3fb88c735518","dataFormat":"wav","rate":48000,"sampleCount":64000,"md5ext":"ff9f8c0b224ddfab0d7c3fb88c735518.wav"},{"name":"vsine49","assetId":"618f16364b2db662bfb30d7a16bd975e","dataFormat":"wav","rate":48000,"sampleCount":62693,"md5ext":"618f16364b2db662bfb30d7a16bd975e.wav"},{"name":"vsine50","assetId":"c0690f5fa67a536653f87470a490ab2f","dataFormat":"wav","rate":48000,"sampleCount":61440,"md5ext":"c0690f5fa67a536653f87470a490ab2f.wav"},{"name":"vsine51","assetId":"d372fa5d244ac9914c9c1a35b7a13e5d","dataFormat":"wav","rate":48000,"sampleCount":60235,"md5ext":"d372fa5d244ac9914c9c1a35b7a13e5d.wav"},{"name":"vsine52","assetId":"ec504ca1f5f7d3cb1213ab862075bd87","dataFormat":"wav","rate":48000,"sampleCount":59076,"md5ext":"ec504ca1f5f7d3cb1213ab862075bd87.wav"},{"name":"vsine53","assetId":"70fa8a1643893f74a8cb776337986114","dataFormat":"wav","rate":48000,"sampleCount":57962,"md5ext":"70fa8a1643893f74a8cb776337986114.wav"},{"name":"vsine54","assetId":"ae0ecad466337ae0fc0d5849a449b2f8","dataFormat":"wav","rate":48000,"sampleCount":56888,"md5ext":"ae0ecad466337ae0fc0d5849a449b2f8.wav"},{"name":"vsine55","assetId":"ce8b1e438b332913b2dfff32f86e3445","dataFormat":"wav","rate":48000,"sampleCount":55854,"md5ext":"ce8b1e438b332913b2dfff32f86e3445.wav"},{"name":"vsine56","assetId":"35d84d62eb66e3ebcefdf24ce23c8f24","dataFormat":"wav","rate":48000,"sampleCount":54857,"md5ext":"35d84d62eb66e3ebcefdf24ce23c8f24.wav"},{"name":"vsine57","assetId":"8541f109885e4c6cc8360d109f0d40bb","dataFormat":"wav","rate":48000,"sampleCount":53894,"md5ext":"8541f109885e4c6cc8360d109f0d40bb.wav"},{"name":"vsine58","assetId":"31b337b514b02d981037ddb613fcfe9f","dataFormat":"wav","rate":48000,"sampleCount":52965,"md5ext":"31b337b514b02d981037ddb613fcfe9f.wav"},{"name":"vsine59","assetId":"89398c1bf95f5d7f944ad7fbf447cbfe","dataFormat":"wav","rate":48000,"sampleCount":52067,"md5ext":"89398c1bf95f5d7f944ad7fbf447cbfe.wav"},{"name":"vsine60","assetId":"e44a9c02905cb8918fc1e61136c8620e","dataFormat":"wav","rate":48000,"sampleCount":51199,"md5ext":"e44a9c02905cb8918fc1e61136c8620e.wav"},{"name":"vsine61","assetId":"b7c073a45be2b82f6e92b5bf6f1795f0","dataFormat":"wav","rate":48000,"sampleCount":50360,"md5ext":"b7c073a45be2b82f6e92b5bf6f1795f0.wav"},{"name":"vsine62","assetId":"6cdb0c2cf7548c6c363dc69ca1c15198","dataFormat":"wav","rate":48000,"sampleCount":49548,"md5ext":"6cdb0c2cf7548c6c363dc69ca1c15198.wav"},{"name":"vsine63","assetId":"4f12887efc0f0fe00c5380ca0b8b92ab","dataFormat":"wav","rate":48000,"sampleCount":48761,"md5ext":"4f12887efc0f0fe00c5380ca0b8b92ab.wav"},{"name":"vsine64","assetId":"4a5ae48a071ddbe91adc61f47c42bb38","dataFormat":"wav","rate":48000,"sampleCount":48000,"md5ext":"4a5ae48a071ddbe91adc61f47c42bb38.wav"}],"volume":0,"layerOrder":9,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"HelloWorld","variables":{"M1MRH6V)bg-6jD{ugH=J":["Input","0"],"|vEUSf.D@`%N,D.^3/|b":["Ahello","1"],"Nacx{A2WY%QGLX/QgF]N":["import.char",0],"^agx?=rasT|:*cBkFdeB":["import.binary",0],"3lt5rd5NtHtm.gOc6_3L":["import.status",0],"2gur[deD.u_*HDC_JLPm":["import.read_return",0],"zsxII[X,wz?xvCvofbsI":["import.rom_length",0],"LihSp{MQuQGg`jIcI]x(":["import.dummy",0],"4alDl:(*zINs=KzJfNuw":["import.ascii",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"uAm4?3ed1Q#FT#;rW,cx":["chip8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["chip8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["speed (CPF)",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"IoL_ukas[]D_ug%.x83m":["import.percent",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"S:$!kD9d2^^Zt4F0Bbpw":["chip8.HPS",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpqFO)Ai_xwJZInrX[!~":["load",0],"Mh+n98ZN{1B*npNt5f45":["temp",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Hf?;Y:LWGAxk[p?1562`":["chip8.audio",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"0Gx#lEQQyAoSQ1SH~+fu":["Load ROMs: _rom",[]],"#2t_c630N5NI?I=l]FZ]":["load",[]],"3`C#KsI[WM=%ZSxuHQ!~":["mappers",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"20":{"opcode":"data_replaceitemoflist","next":"21","parent":"2Z","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"e"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"21":{"opcode":"data_replaceitemoflist","next":"22","parent":"20","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"22":{"opcode":"data_replaceitemoflist","next":"23","parent":"21","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[1,[10,"s"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"23":{"opcode":"data_replaceitemoflist","next":"24","parent":"22","inputs":{"INDEX":[1,[7,"10"]],"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"24":{"opcode":"data_replaceitemoflist","next":"25","parent":"23","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[1,[10,"z"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"25":{"opcode":"data_replaceitemoflist","next":"26","parent":"24","inputs":{"INDEX":[1,[7,"12"]],"ITEM":[1,[10,"c"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"26":{"opcode":"data_replaceitemoflist","next":"2[","parent":"25","inputs":{"INDEX":[1,[7,"13"]],"ITEM":[1,[10,"4"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"27":{"opcode":"data_addtolist","next":"CZ","parent":"CY","inputs":{"ITEM":[1,[10,"SI8080: @oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"28":{"opcode":"data_setvariableto","next":"29","parent":"aM_","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Frameskip","T*Lc1tcF[lxG@/W!jiQ0"]},"shadow":false,"topLevel":false},"29":{"opcode":"data_replaceitemoflist","next":"2!","parent":"28","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"l"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"30":{"opcode":"operator_not","next":null,"parent":"3Z","inputs":{"OPERAND":[2,"R]"]},"fields":{},"shadow":false,"topLevel":false},"31":{"opcode":"data_addtolist","next":null,"parent":"3V","inputs":{"ITEM":[3,"aNx",[10,""]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"32":{"opcode":"procedures_definition","next":"R^","parent":null,"inputs":{"custom_block":[1,"33"]},"fields":{},"shadow":false,"topLevel":true,"x":921,"y":64},"33":{"opcode":"procedures_prototype","next":null,"parent":"32","inputs":{"Qi31Z;B$.Clm/kthjb4$":[1,"aNy"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"Qi31Z;B$.Clm/kthjb4$\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"34":{"opcode":"data_deletealloflist","next":"O/","parent":"R^","inputs":{},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"35":{"opcode":"operator_round","next":null,"parent":"R_","inputs":{"NUM":[3,"R`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"36":{"opcode":"data_setvariableto","next":"38","parent":"R_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"37":{"opcode":"operator_mathop","next":null,"parent":"R`","inputs":{"NUM":[3,"aND",[4,"0"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"38":{"opcode":"data_setvariableto","next":"R{","parent":"36","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"39":{"opcode":"operator_mathop","next":null,"parent":"R{","inputs":{"NUM":[3,"aNE",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"2V":{"opcode":"data_replaceitemoflist","next":"2X","parent":"2W","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2W":{"opcode":"data_replaceitemoflist","next":"2V","parent":"2Y","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2X":{"opcode":"data_replaceitemoflist","next":"2Z","parent":"2V","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"q"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2Z":{"opcode":"data_replaceitemoflist","next":"20","parent":"2X","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aMo":{"opcode":"event_whenbroadcastreceived","next":"Cu","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["HelloInter","UJX@vI^YiH#tJAcG0`PO"]},"shadow":false,"topLevel":true,"x":921,"y":1048},"Cu":{"opcode":"data_showlist","next":"Cv","parent":"aMo","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Cv":{"opcode":"data_addtolist","next":"Cw","parent":"Cu","inputs":{"ITEM":[1,[10,"Ultimate \"Hello,World\" Esolang Interpreter Wave edition by oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Cw":{"opcode":"data_addtolist","next":"Cx","parent":"Cv","inputs":{"ITEM":[1,[10,">>>"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Cx":{"opcode":"control_clear_counter","next":"Cy","parent":"Cw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Cy":{"opcode":"data_setvariableto","next":"Cz","parent":"Cx","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"Cz":{"opcode":"data_setvariableto","next":"CA","parent":"Cy","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"CA":{"opcode":"control_forever","next":null,"parent":"Cz","inputs":{"SUBSTACK":[2,"CB"]},"fields":{},"shadow":false,"topLevel":false},"CB":{"opcode":"sensing_askandwait","next":"kC","parent":"CA","inputs":{"QUESTION":[1,[10,"Type commands here."]]},"fields":{},"shadow":false,"topLevel":false},"kC":{"opcode":"data_addtolist","next":"kD","parent":"CB","inputs":{"ITEM":[3,"CC",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CC":{"opcode":"operator_join","next":null,"parent":"kC","inputs":{"STRING1":[1,[10,">>>"]],"STRING2":[3,"aMp",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aMp":{"opcode":"sensing_answer","next":null,"parent":"CC","inputs":{},"fields":{},"shadow":false,"topLevel":false},"kD":{"opcode":"data_setvariableto","next":"?","parent":"kC","inputs":{"VALUE":[3,"aMq",[10,""]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"aMq":{"opcode":"sensing_answer","next":null,"parent":"kD","inputs":{},"fields":{},"shadow":false,"topLevel":false},"?":{"opcode":"control_if_else","next":"aMr","parent":"kD","inputs":{"CONDITION":[2,"kE"],"SUBSTACK":[2,"aMs"],"SUBSTACK2":[2,"bk"]},"fields":{},"shadow":false,"topLevel":false},"kE":{"opcode":"operator_or","next":null,"parent":"?","inputs":{"OPERAND1":[2,"kF"],"OPERAND2":[2,"kG"]},"fields":{},"shadow":false,"topLevel":false},"kF":{"opcode":"operator_or","next":null,"parent":"kE","inputs":{"OPERAND1":[2,"aMt"],"OPERAND2":[2,"aMu"]},"fields":{},"shadow":false,"topLevel":false},"aMt":{"opcode":"operator_equals","next":null,"parent":"kF","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"hw"]]},"fields":{},"shadow":false,"topLevel":false},"aMu":{"opcode":"operator_equals","next":null,"parent":"kF","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"H"]]},"fields":{},"shadow":false,"topLevel":false},"kG":{"opcode":"operator_or","next":null,"parent":"kE","inputs":{"OPERAND1":[2,"aMv"],"OPERAND2":[2,"kH"]},"fields":{},"shadow":false,"topLevel":false},"aMv":{"opcode":"operator_equals","next":null,"parent":"kG","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Hello World"]]},"fields":{},"shadow":false,"topLevel":false},"kH":{"opcode":"operator_or","next":null,"parent":"kG","inputs":{"OPERAND1":[2,"aMw"],"OPERAND2":[2,"kI"]},"fields":{},"shadow":false,"topLevel":false},"aMw":{"opcode":"operator_equals","next":null,"parent":"kH","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Hello, World"]]},"fields":{},"shadow":false,"topLevel":false},"kI":{"opcode":"operator_and","next":null,"parent":"kH","inputs":{"OPERAND1":[2,"aMx"],"OPERAND2":[2,"aMy"]},"fields":{},"shadow":false,"topLevel":false},"aMx":{"opcode":"operator_contains","next":null,"parent":"kI","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Hello"]]},"fields":{},"shadow":false,"topLevel":false},"aMy":{"opcode":"operator_contains","next":null,"parent":"kI","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10," World"]]},"fields":{},"shadow":false,"topLevel":false},"aMs":{"opcode":"data_addtolist","next":null,"parent":"?","inputs":{"ITEM":[1,[10,"Hello, World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"bk":{"opcode":"control_if_else","next":null,"parent":"?","inputs":{"CONDITION":[2,"aMz"],"SUBSTACK":[2,"aMA"],"SUBSTACK2":[2,"bl"]},"fields":{},"shadow":false,"topLevel":false},"aMz":{"opcode":"operator_equals","next":null,"parent":"bk","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"w"]]},"fields":{},"shadow":false,"topLevel":false},"aMA":{"opcode":"data_addtolist","next":null,"parent":"bk","inputs":{"ITEM":[1,[10,"World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"bl":{"opcode":"control_if_else","next":null,"parent":"bk","inputs":{"CONDITION":[2,"aMB"],"SUBSTACK":[2,"aMC"],"SUBSTACK2":[2,"bm"]},"fields":{},"shadow":false,"topLevel":false},"aMB":{"opcode":"operator_equals","next":null,"parent":"bl","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"hh"]]},"fields":{},"shadow":false,"topLevel":false},"aMC":{"opcode":"data_addtolist","next":null,"parent":"bl","inputs":{"ITEM":[1,[10,"Hello, Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"bm":{"opcode":"control_if_else","next":null,"parent":"bl","inputs":{"CONDITION":[2,"aMD"],"SUBSTACK":[2,"aME"],"SUBSTACK2":[2,"eJ"]},"fields":{},"shadow":false,"topLevel":false},"aMD":{"opcode":"operator_equals","next":null,"parent":"bm","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"ww"]]},"fields":{},"shadow":false,"topLevel":false},"aME":{"opcode":"data_addtolist","next":null,"parent":"bm","inputs":{"ITEM":[1,[10,"World, World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"eJ":{"opcode":"control_if_else","next":null,"parent":"bm","inputs":{"CONDITION":[2,"aMF"],"SUBSTACK":[2,"aMG"],"SUBSTACK2":[2,"eK"]},"fields":{},"shadow":false,"topLevel":false},"aMF":{"opcode":"operator_equals","next":null,"parent":"eJ","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"HWorld h"]]},"fields":{},"shadow":false,"topLevel":false},"aMG":{"opcode":"data_addtolist","next":null,"parent":"eJ","inputs":{"ITEM":[1,[10,"Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"eK":{"opcode":"control_if_else","next":null,"parent":"eJ","inputs":{"CONDITION":[2,"aMH"],"SUBSTACK":[2,"aMI"],"SUBSTACK2":[2,"eL"]},"fields":{},"shadow":false,"topLevel":false},"aMH":{"opcode":"operator_equals","next":null,"parent":"eK","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"exitop"]]},"fields":{},"shadow":false,"topLevel":false},"aMI":{"opcode":"data_addtolist","next":null,"parent":"eK","inputs":{"ITEM":[1,[10,"Chip-8 exit opcode is 0xFD"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"eL":{"opcode":"control_if_else","next":null,"parent":"eK","inputs":{"CONDITION":[2,"aMJ"],"SUBSTACK":[2,"aMK"],"SUBSTACK2":[2,"eM"]},"fields":{},"shadow":false,"topLevel":false},"aMJ":{"opcode":"operator_equals","next":null,"parent":"eL","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"wh"]]},"fields":{},"shadow":false,"topLevel":false},"aMK":{"opcode":"data_addtolist","next":null,"parent":"eL","inputs":{"ITEM":[1,[10,"World, Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"eM":{"opcode":"control_if_else","next":null,"parent":"eL","inputs":{"CONDITION":[2,"aML"],"SUBSTACK":[2,"CD"],"SUBSTACK2":[2,"eN"]},"fields":{},"shadow":false,"topLevel":false},"aML":{"opcode":"operator_equals","next":null,"parent":"eM","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"clear"]]},"fields":{},"shadow":false,"topLevel":false},"CD":{"opcode":"data_deletealloflist","next":"CE","parent":"eM","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CE":{"opcode":"data_showlist","next":"CF","parent":"CD","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CF":{"opcode":"data_addtolist","next":"CG","parent":"CE","inputs":{"ITEM":[1,[10,"Ultimate \"Hello,World\" Esolang Interpreter Wave edition by oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CG":{"opcode":"data_addtolist","next":"aMM","parent":"CF","inputs":{"ITEM":[1,[10,">>>"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aMM":{"opcode":"data_setvariableto","next":null,"parent":"CG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"eN":{"opcode":"control_if_else","next":null,"parent":"eM","inputs":{"CONDITION":[2,"CH"],"SUBSTACK":[2,"eO"],"SUBSTACK2":[2,"eP"]},"fields":{},"shadow":false,"topLevel":false},"CH":{"opcode":"operator_equals","next":null,"parent":"eN","inputs":{"OPERAND1":[3,"kJ",[10,""]],"OPERAND2":[1,[10,"Load"]]},"fields":{},"shadow":false,"topLevel":false},"kJ":{"opcode":"operator_join","next":null,"parent":"CH","inputs":{"STRING1":[3,"aMN",[10,""]],"STRING2":[3,"kK",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aMN":{"opcode":"operator_letter_of","next":null,"parent":"kJ","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kK":{"opcode":"operator_join","next":null,"parent":"kJ","inputs":{"STRING1":[3,"aMO",[10,""]],"STRING2":[3,"kL",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aMO":{"opcode":"operator_letter_of","next":null,"parent":"kK","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kL":{"opcode":"operator_join","next":null,"parent":"kK","inputs":{"STRING1":[3,"aMP",[10,""]],"STRING2":[3,"aMQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aMP":{"opcode":"operator_letter_of","next":null,"parent":"kL","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aMQ":{"opcode":"operator_letter_of","next":null,"parent":"kL","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"eO":{"opcode":"control_if_else","next":null,"parent":"eN","inputs":{"CONDITION":[2,"aMR"],"SUBSTACK":[2,"CI"],"SUBSTACK2":[2,"eQ"]},"fields":{},"shadow":false,"topLevel":false},"aMR":{"opcode":"operator_contains","next":null,"parent":"eO","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Rocket Launcher"]]},"fields":{},"shadow":false,"topLevel":false},"CI":{"opcode":"data_setvariableto","next":"aMS","parent":"eO","inputs":{"VALUE":[1,[10,"00E0A260600761386219D027D127A25E60006118D011700830401214681E69112258600FE09E12246008F018225879FF22586002F015F007300012366001F0183900122C00E0640CC520C640D65174FF34001248691A122EA268D89700EEFF0080808080808080002070707070F85000"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aMS":{"opcode":"event_broadcast","next":null,"parent":"CI","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"eQ":{"opcode":"control_if_else","next":null,"parent":"eO","inputs":{"CONDITION":[2,"aMT"],"SUBSTACK":[2,"CJ"],"SUBSTACK2":[2,"eR"]},"fields":{},"shadow":false,"topLevel":false},"aMT":{"opcode":"operator_contains","next":null,"parent":"eQ","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"1P Pong"]]},"fields":{},"shadow":false,"topLevel":false},"CJ":{"opcode":"data_setvariableto","next":"aMU","parent":"eQ","inputs":{"VALUE":[1,[10,"6A026B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB68D70C00A7DFE40007D026000601F8D02DCD6A2F0D67186848794603F8602611F871246021278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146500D4557415F229D45500EE808080808080800000000000"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aMU":{"opcode":"event_broadcast","next":null,"parent":"CJ","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"eR":{"opcode":"control_if_else","next":null,"parent":"eQ","inputs":{"CONDITION":[2,"aMV"],"SUBSTACK":[2,"CK"],"SUBSTACK2":[2,"eS"]},"fields":{},"shadow":false,"topLevel":false},"aMV":{"opcode":"operator_contains","next":null,"parent":"eR","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Breakout"]]},"fields":{},"shadow":false,"topLevel":false},"CK":{"opcode":"data_setvariableto","next":"aMW","parent":"eR","inputs":{"VALUE":[1,[10,"A2CC6A0661036B086000D01170087BFF3B00120A71027AFF3A00120666006714A2CD6020611ED011631D623F820277FF470012AAFF0AA2CBD23165FFC401340164FFA2CD6C006E04EEA16CFE6E06EEA16C02D01180C4D0114F01129842006401423F64FF430012CE431F12A4A2CBD23182448354D2313F011242431E12986A02FA187601A2CA1288D231C401340164FFC5013501650112426A03FA18A2CBD23173FF1236A2CBD2311228A2CDD011A2F0F633F2656318641BF029D3457305F129D3457305F229D34512C8F080FFFFA2DE63156210D325A2E3631DD32512AAEE8ACE8C8AEE88CC88EE"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aMW":{"opcode":"event_broadcast","next":null,"parent":"CK","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"eS":{"opcode":"control_if_else","next":null,"parent":"eR","inputs":{"CONDITION":[2,"aMX"],"SUBSTACK":[2,"CL"],"SUBSTACK2":[2,"bn"]},"fields":{},"shadow":false,"topLevel":false},"aMX":{"opcode":"operator_contains","next":null,"parent":"eS","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Pong 2"]]},"fields":{},"shadow":false,"topLevel":false},"CL":{"opcode":"data_setvariableto","next":"aMY","parent":"eS","inputs":{"VALUE":[1,[10,"22FC6B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB6600CE0A17DFE600DE0A17D02601F8D02DCD6A2F0D67186848794603F8602611F871246001278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146502D4557415F229D45500EE808080808080800000000000C0C0C000FF006B206C00A2F6DBC47C043C2013026A006B006C1FA2FADAB1DAC17A083A401312A2F66A006B20DBA100EE"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aMY":{"opcode":"event_broadcast","next":null,"parent":"CL","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"bn":{"opcode":"control_if_else","next":null,"parent":"eS","inputs":{"CONDITION":[2,"aMZ"],"SUBSTACK":[2,"CM"],"SUBSTACK2":[2,"bo"]},"fields":{},"shadow":false,"topLevel":false},"aMZ":{"opcode":"operator_contains","next":null,"parent":"bn","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Keypad test"]]},"fields":{},"shadow":false,"topLevel":false},"CM":{"opcode":"data_setvariableto","next":"aM0","parent":"bn","inputs":{"VALUE":[1,[10,"6014610AF20A00E0F229D0151204"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aM0":{"opcode":"event_broadcast","next":null,"parent":"CM","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"bo":{"opcode":"control_if_else","next":null,"parent":"bn","inputs":{"CONDITION":[2,"aM1"],"SUBSTACK":[2,"CN"],"SUBSTACK2":[2,"aM2"]},"fields":{},"shadow":false,"topLevel":false},"aM1":{"opcode":"operator_equals","next":null,"parent":"bo","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Load CHIP8"]]},"fields":{},"shadow":false,"topLevel":false},"CN":{"opcode":"sensing_askandwait","next":"kM","parent":"bo","inputs":{"QUESTION":[1,[10,"Paste CHIP-8 rom in hex now."]]},"fields":{},"shadow":false,"topLevel":false},"kM":{"opcode":"data_setvariableto","next":"aM3","parent":"CN","inputs":{"VALUE":[3,"aM4",[10,""]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aM4":{"opcode":"sensing_answer","next":null,"parent":"kM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aM3":{"opcode":"event_broadcast","next":null,"parent":"kM","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"aM2":{"opcode":"event_broadcast","next":null,"parent":"bo","inputs":{"BROADCAST_INPUT":[1,[11,"get_rom","oauq{1.?KIC%2JlgJq^:"]]},"fields":{},"shadow":false,"topLevel":false},"eP":{"opcode":"control_if_else","next":null,"parent":"eN","inputs":{"CONDITION":[2,"aM5"],"SUBSTACK":[2,"CO"],"SUBSTACK2":[2,"bp"]},"fields":{},"shadow":false,"topLevel":false},"aM5":{"opcode":"operator_equals","next":null,"parent":"eP","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"+"]]},"fields":{},"shadow":false,"topLevel":false},"CO":{"opcode":"control_incr_counter","next":"CP","parent":"eP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"CP":{"opcode":"data_addtolist","next":null,"parent":"CO","inputs":{"ITEM":[3,"aM6",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM6":{"opcode":"control_get_counter","next":null,"parent":"CP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bp":{"opcode":"control_if_else","next":null,"parent":"eP","inputs":{"CONDITION":[2,"aM7"],"SUBSTACK":[2,"CQ"],"SUBSTACK2":[2,"bq"]},"fields":{},"shadow":false,"topLevel":false},"aM7":{"opcode":"operator_equals","next":null,"parent":"bp","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"credits"]]},"fields":{},"shadow":false,"topLevel":false},"CQ":{"opcode":"data_addtolist","next":"CR","parent":"bp","inputs":{"ITEM":[1,[10,"Concept: @Geotale/@EmulatorsOnScratch"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CR":{"opcode":"data_addtolist","next":"CS","parent":"CQ","inputs":{"ITEM":[1,[10,"Menu: @Geotale @Executec @oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CS":{"opcode":"data_addtolist","next":"CT","parent":"CR","inputs":{"ITEM":[1,[10,"WAVE-8: @Geotale @oxiti8 @Kouzeru @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CT":{"opcode":"data_addtolist","next":"CU","parent":"CS","inputs":{"ITEM":[1,[10,"DualGB: @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CU":{"opcode":"data_addtolist","next":"CV","parent":"CT","inputs":{"ITEM":[1,[10,"Game Boy Advance Emulator: @Geotale/@EmulatorsOnScratch"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CV":{"opcode":"data_addtolist","next":"CW","parent":"CU","inputs":{"ITEM":[1,[10,"Nintendo DS Emulator: @Geotale/@EmulatorsOnScratch"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CW":{"opcode":"data_addtolist","next":"CX","parent":"CV","inputs":{"ITEM":[1,[10,"Cool NES Emulator: @GenericHeroGuy"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CX":{"opcode":"data_addtolist","next":"CY","parent":"CW","inputs":{"ITEM":[1,[10,"Bytepusher: @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CY":{"opcode":"data_addtolist","next":"27","parent":"CX","inputs":{"ITEM":[1,[10,"UHWEI Wave Edition: @oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"CZ":{"opcode":"data_addtolist","next":"C0","parent":"27","inputs":{"ITEM":[1,[10,"Music: Purple Planet Music - Chilled - Global Tech, Nintendo 3DS HOME menu BGM, Mario Paint - Special Stamps"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C0":{"opcode":"data_addtolist","next":"C1","parent":"CZ","inputs":{"ITEM":[1,[10,"Special Thanks: StinkerB06 and Tobiasvl for helping with DXYN "]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C1":{"opcode":"data_addtolist","next":"aM8","parent":"C0","inputs":{"ITEM":[1,[10,"@AArt1256, @52525rr, and @Kouzeru for help with XO-CHIP"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM8":{"opcode":"data_addtolist","next":null,"parent":"C1","inputs":{"ITEM":[1,[10,"CHIP8 Wave logo ROM by @AArt1256"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"bq":{"opcode":"control_if_else","next":null,"parent":"bp","inputs":{"CONDITION":[2,"aM9"],"SUBSTACK":[2,"C2"],"SUBSTACK2":[2,"br"]},"fields":{},"shadow":false,"topLevel":false},"aM9":{"opcode":"operator_equals","next":null,"parent":"bq","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Exit"]]},"fields":{},"shadow":false,"topLevel":false},"C2":{"opcode":"data_addtolist","next":"C3","parent":"bq","inputs":{"ITEM":[1,[10,"Exiting..."]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C3":{"opcode":"event_broadcast","next":"C4","parent":"C2","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"C4":{"opcode":"data_hidelist","next":"C5","parent":"C3","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C5":{"opcode":"data_deletealloflist","next":"C6","parent":"C4","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C6":{"opcode":"event_broadcastandwait","next":"C7","parent":"C5","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"C7":{"opcode":"event_broadcast","next":"aM!","parent":"C6","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aM!":{"opcode":"control_stop","next":null,"parent":"C7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"br":{"opcode":"control_if_else","next":null,"parent":"bq","inputs":{"CONDITION":[2,"aM#"],"SUBSTACK":[2,"C8"],"SUBSTACK2":[2,"eT"]},"fields":{},"shadow":false,"topLevel":false},"aM#":{"opcode":"operator_equals","next":null,"parent":"br","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Set start address"]]},"fields":{},"shadow":false,"topLevel":false},"C8":{"opcode":"sensing_askandwait","next":"R#","parent":"br","inputs":{"QUESTION":[1,[10,"What address will Chip8 programs start at?"]]},"fields":{},"shadow":false,"topLevel":false},"R#":{"opcode":"data_setvariableto","next":"C9","parent":"C8","inputs":{"VALUE":[3,"C!",[10,""]]},"fields":{"VARIABLE":["chip8.starting address","oW{#?FHT;/hE!l+8(A64"]},"shadow":false,"topLevel":false},"C!":{"opcode":"operator_mod","next":null,"parent":"R#","inputs":{"NUM1":[3,"aM%",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aM%":{"opcode":"sensing_answer","next":null,"parent":"C!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"C9":{"opcode":"data_addtolist","next":null,"parent":"R#","inputs":{"ITEM":[3,"aM(",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM(":{"opcode":"operator_join","next":null,"parent":"C9","inputs":{"STRING1":[1,[10,"Chip8 starting address set to "]],"STRING2":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"eT":{"opcode":"control_if_else","next":null,"parent":"br","inputs":{"CONDITION":[2,"aM)"],"SUBSTACK":[2,"C#"],"SUBSTACK2":[2,"aM*"]},"fields":{},"shadow":false,"topLevel":false},"aM)":{"opcode":"operator_equals","next":null,"parent":"eT","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"C#":{"opcode":"data_setvariableto","next":"kN","parent":"eT","inputs":{"VALUE":[1,[10,"99"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"kN":{"opcode":"control_repeat_until","next":null,"parent":"C#","inputs":{"CONDITION":[2,"C%"],"SUBSTACK":[2,"@"]},"fields":{},"shadow":false,"topLevel":false},"C%":{"opcode":"operator_not","next":null,"parent":"kN","inputs":{"OPERAND":[2,"aM+"]},"fields":{},"shadow":false,"topLevel":false},"aM+":{"opcode":"operator_gt","next":null,"parent":"C%","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@":{"opcode":"control_if_else","next":"C(","parent":"kN","inputs":{"CONDITION":[2,"aM,"],"SUBSTACK":[2,"C)"],"SUBSTACK2":[2,"C*"]},"fields":{},"shadow":false,"topLevel":false},"aM,":{"opcode":"operator_equals","next":null,"parent":"@","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C)":{"opcode":"data_addtolist","next":null,"parent":"@","inputs":{"ITEM":[3,"C+",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C+":{"opcode":"operator_join","next":null,"parent":"C)","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[3,"C,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"C,":{"opcode":"operator_join","next":null,"parent":"C+","inputs":{"STRING1":[1,[10," bottle of pop on the wall, "]],"STRING2":[3,"aM-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aM-":{"opcode":"operator_join","next":null,"parent":"C,","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottle of pop."]]},"fields":{},"shadow":false,"topLevel":false},"C*":{"opcode":"data_addtolist","next":null,"parent":"@","inputs":{"ITEM":[3,"C-",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C-":{"opcode":"operator_join","next":null,"parent":"C*","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[3,"C.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"C.":{"opcode":"operator_join","next":null,"parent":"C-","inputs":{"STRING1":[1,[10," bottles of pop on the wall, "]],"STRING2":[3,"aM.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aM.":{"opcode":"operator_join","next":null,"parent":"C.","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottles of pop."]]},"fields":{},"shadow":false,"topLevel":false},"C(":{"opcode":"data_changevariableby","next":"bs","parent":"@","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"bs":{"opcode":"control_if_else","next":null,"parent":"C(","inputs":{"CONDITION":[2,"aM/"],"SUBSTACK":[2,"C/"],"SUBSTACK2":[2,"bt"]},"fields":{},"shadow":false,"topLevel":false},"aM/":{"opcode":"operator_gt","next":null,"parent":"bs","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C/":{"opcode":"data_addtolist","next":null,"parent":"bs","inputs":{"ITEM":[3,"C:",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C:":{"opcode":"operator_join","next":null,"parent":"C/","inputs":{"STRING1":[1,[10,"Take one down, pass it around, "]],"STRING2":[3,"aM:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aM:":{"opcode":"operator_join","next":null,"parent":"C:","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottles of pop on the wall."]]},"fields":{},"shadow":false,"topLevel":false},"bt":{"opcode":"control_if_else","next":null,"parent":"bs","inputs":{"CONDITION":[2,"aM;"],"SUBSTACK":[2,"C;"],"SUBSTACK2":[2,"aM="]},"fields":{},"shadow":false,"topLevel":false},"aM;":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C;":{"opcode":"data_addtolist","next":null,"parent":"bt","inputs":{"ITEM":[3,"C=",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"C=":{"opcode":"operator_join","next":null,"parent":"C;","inputs":{"STRING1":[1,[10,"Take one down, pass it around, "]],"STRING2":[3,"aM?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aM?":{"opcode":"operator_join","next":null,"parent":"C=","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottle of pop on the wall."]]},"fields":{},"shadow":false,"topLevel":false},"aM=":{"opcode":"data_addtolist","next":null,"parent":"bt","inputs":{"ITEM":[1,[10,"Take one down, pass it around, no more bottles of pop on the wall."]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM*":{"opcode":"data_addtolist","next":null,"parent":"eT","inputs":{"ITEM":[1,[10," "]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aMr":{"opcode":"data_setvariableto","next":null,"parent":"?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"aM@":{"opcode":"event_whenflagclicked","next":"C?","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":921,"y":7808},"C?":{"opcode":"looks_hide","next":"C@","parent":"aM@","inputs":{},"fields":{},"shadow":false,"topLevel":false},"C@":{"opcode":"data_hidelist","next":"aM[","parent":"C?","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM[":{"opcode":"data_deletealloflist","next":null,"parent":"C@","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM]":{"opcode":"event_whenbroadcastreceived","next":"aM^","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]},"shadow":false,"topLevel":true,"x":921,"y":7632},"aM^":{"opcode":"data_addtolist","next":null,"parent":"aM]","inputs":{"ITEM":[1,[10,"ROM Loaded!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"aM_":{"opcode":"event_broadcast","next":"28","parent":null,"inputs":{"BROADCAST_INPUT":[1,[11,"Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":288},"2!":{"opcode":"data_replaceitemoflist","next":"2#","parent":"29","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"k"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2#":{"opcode":"data_replaceitemoflist","next":"2%","parent":"2!","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"c"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2%":{"opcode":"data_replaceitemoflist","next":"2(","parent":"2#","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"m"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2(":{"opcode":"data_replaceitemoflist","next":"2)","parent":"2%","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2)":{"opcode":"data_replaceitemoflist","next":"2*","parent":"2(","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"s"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2*":{"opcode":"data_replaceitemoflist","next":"2+","parent":"2)","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2+":{"opcode":"data_replaceitemoflist","next":"2,","parent":"2*","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"2,":{"opcode":"data_replaceitemoflist","next":"2-","parent":"2+","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2-":{"opcode":"data_replaceitemoflist","next":"2.","parent":"2,","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2.":{"opcode":"data_replaceitemoflist","next":"2/","parent":"2-","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2/":{"opcode":"data_replaceitemoflist","next":"2:","parent":"2.","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2:":{"opcode":"data_replaceitemoflist","next":"2;","parent":"2/","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2;":{"opcode":"data_replaceitemoflist","next":"2=","parent":"2:","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2=":{"opcode":"data_replaceitemoflist","next":"2?","parent":"2;","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2?":{"opcode":"data_replaceitemoflist","next":"2@","parent":"2=","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"2@":{"opcode":"data_replaceitemoflist","next":"2Y","parent":"2?","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"x"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2Y":{"opcode":"data_replaceitemoflist","next":"2W","parent":"2@","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2[":{"opcode":"data_replaceitemoflist","next":"2]","parent":"26","inputs":{"INDEX":[1,[7,"14"]],"ITEM":[1,[10,"r"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2]":{"opcode":"data_replaceitemoflist","next":"2^","parent":"2[","inputs":{"INDEX":[1,[7,"15"]],"ITEM":[1,[10,"f"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2^":{"opcode":"data_replaceitemoflist","next":"2_","parent":"2]","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"v"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"2_":{"opcode":"data_replaceitemoflist","next":"2`","parent":"2^","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"down arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"2`":{"opcode":"data_replaceitemoflist","next":"2{","parent":"2_","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"up arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"2{":{"opcode":"data_replaceitemoflist","next":"2|","parent":"2`","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"left arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"2|":{"opcode":"data_replaceitemoflist","next":"2}","parent":"2{","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"right arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"2}":{"opcode":"data_replaceitemoflist","next":"2~","parent":"2|","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"enter"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"2~":{"opcode":"data_replaceitemoflist","next":"3a","parent":"2}","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"space"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"3a":{"opcode":"data_replaceitemoflist","next":"3b","parent":"2~","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"3b":{"opcode":"data_replaceitemoflist","next":"3c","parent":"3a","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"s"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"3c":{"opcode":"data_deletealloflist","next":"3d","parent":"3b","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3d":{"opcode":"data_addtolist","next":"3e","parent":"3c","inputs":{"ITEM":[1,[10,"C"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3e":{"opcode":"data_addtolist","next":"3f","parent":"3d","inputs":{"ITEM":[1,[10,"Enter"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3f":{"opcode":"data_addtolist","next":"3g","parent":"3e","inputs":{"ITEM":[1,[10,"space"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3g":{"opcode":"data_addtolist","next":"3h","parent":"3f","inputs":{"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3h":{"opcode":"data_addtolist","next":"3i","parent":"3g","inputs":{"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3i":{"opcode":"data_addtolist","next":"3j","parent":"3h","inputs":{"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3j":{"opcode":"data_addtolist","next":"3k","parent":"3i","inputs":{"ITEM":[1,[10,"up arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"3k":{"opcode":"data_addtolist","next":"aM`","parent":"3j","inputs":{"ITEM":[1,[10,"left arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"aM`":{"opcode":"data_addtolist","next":null,"parent":"3k","inputs":{"ITEM":[1,[10,"right arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"aM{":{"opcode":"event_broadcast","next":"aM|","parent":null,"inputs":{"BROADCAST_INPUT":[1,[11,"Nuke all lists","nXk!G*y_h@WG)9_e/VKR"]]},"fields":{},"shadow":false,"topLevel":true,"x":599,"y":64},"aM|":{"opcode":"data_setvariableto","next":null,"parent":"aM{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"3l":{"opcode":"procedures_definition","next":"O-","parent":null,"inputs":{"custom_block":[1,"aM}"]},"fields":{},"shadow":false,"topLevel":true,"x":6941,"y":64},"aM}":{"opcode":"procedures_prototype","next":null,"parent":"3l","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"O-":{"opcode":"control_repeat_until","next":"3m","parent":"3l","inputs":{"CONDITION":[2,"R%"],"SUBSTACK":[2,"aM~"]},"fields":{},"shadow":false,"topLevel":false},"R%":{"opcode":"operator_or","next":null,"parent":"O-","inputs":{"OPERAND1":[2,"3n"],"OPERAND2":[2,"3o"]},"fields":{},"shadow":false,"topLevel":false},"3n":{"opcode":"operator_equals","next":null,"parent":"R%","inputs":{"OPERAND1":[3,"aNa",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNa":{"opcode":"data_itemoflist","next":null,"parent":"3n","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"3o":{"opcode":"operator_equals","next":null,"parent":"R%","inputs":{"OPERAND1":[3,"aNb",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aNb":{"opcode":"data_itemoflist","next":null,"parent":"3o","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aM~":{"opcode":"data_deleteoflist","next":null,"parent":"O-","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"3m":{"opcode":"data_replaceitemoflist","next":"R(","parent":"O-","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"R(":{"opcode":"control_repeat","next":null,"parent":"3m","inputs":{"TIMES":[3,"3p",[6,"0"]],"SUBSTACK":[2,"aNc"]},"fields":{},"shadow":false,"topLevel":false},"3p":{"opcode":"operator_subtract","next":null,"parent":"R(","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"aNd",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNd":{"opcode":"data_lengthoflist","next":null,"parent":"3p","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aNc":{"opcode":"data_addtolist","next":null,"parent":"R(","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"3q":{"opcode":"procedures_definition","next":"O.","parent":null,"inputs":{"custom_block":[1,"aNe"]},"fields":{},"shadow":false,"topLevel":true,"x":6941,"y":536},"aNe":{"opcode":"procedures_prototype","next":null,"parent":"3q","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"O.":{"opcode":"control_repeat_until","next":"3r","parent":"3q","inputs":{"CONDITION":[2,"R)"],"SUBSTACK":[2,"aNf"]},"fields":{},"shadow":false,"topLevel":false},"R)":{"opcode":"operator_or","next":null,"parent":"O.","inputs":{"OPERAND1":[2,"3s"],"OPERAND2":[2,"3t"]},"fields":{},"shadow":false,"topLevel":false},"3s":{"opcode":"operator_equals","next":null,"parent":"R)","inputs":{"OPERAND1":[3,"aNg",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNg":{"opcode":"data_itemoflist","next":null,"parent":"3s","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3t":{"opcode":"operator_equals","next":null,"parent":"R)","inputs":{"OPERAND1":[3,"aNh",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aNh":{"opcode":"data_itemoflist","next":null,"parent":"3t","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aNf":{"opcode":"data_deleteoflist","next":null,"parent":"O.","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3r":{"opcode":"data_replaceitemoflist","next":"R*","parent":"O.","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"R*":{"opcode":"control_repeat","next":null,"parent":"3r","inputs":{"TIMES":[3,"3u",[6,"0"]],"SUBSTACK":[2,"aNi"]},"fields":{},"shadow":false,"topLevel":false},"3u":{"opcode":"operator_subtract","next":null,"parent":"R*","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"aNj",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNj":{"opcode":"data_lengthoflist","next":null,"parent":"3u","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aNi":{"opcode":"data_addtolist","next":null,"parent":"R*","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3v":{"opcode":"procedures_definition","next":"3w","parent":null,"inputs":{"custom_block":[1,"aNk"]},"fields":{},"shadow":false,"topLevel":true,"x":7864,"y":64},"aNk":{"opcode":"procedures_prototype","next":null,"parent":"3v","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_bitwise init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"3w":{"opcode":"data_deletealloflist","next":"3x","parent":"3v","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"3x":{"opcode":"data_deletealloflist","next":"R+","parent":"3w","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"R+":{"opcode":"control_repeat","next":"3y","parent":"3x","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"3z"]},"fields":{},"shadow":false,"topLevel":false},"3z":{"opcode":"data_addtolist","next":"aNl","parent":"R+","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aNl":{"opcode":"data_addtolist","next":null,"parent":"3z","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3y":{"opcode":"data_deletealloflist","next":"R,","parent":"R+","inputs":{},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"R,":{"opcode":"control_repeat","next":"3A","parent":"3y","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"R-"]},"fields":{},"shadow":false,"topLevel":false},"R-":{"opcode":"control_repeat","next":"aNm","parent":"R,","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"3B"]},"fields":{},"shadow":false,"topLevel":false},"3B":{"opcode":"data_setvariableto","next":"3C","parent":"R-","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3C":{"opcode":"data_setvariableto","next":"R.","parent":"3B","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"R.":{"opcode":"control_repeat","next":"3D","parent":"3C","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"3E"]},"fields":{},"shadow":false,"topLevel":false},"3E":{"opcode":"data_changevariableby","next":"3F","parent":"R.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"3F":{"opcode":"data_setvariableto","next":null,"parent":"3E","inputs":{"VALUE":[3,"3G",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3G":{"opcode":"operator_join","next":null,"parent":"3F","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"3H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"3H":{"opcode":"operator_add","next":null,"parent":"3G","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"R/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R/":{"opcode":"operator_and","next":null,"parent":"3H","inputs":{"OPERAND1":[2,"aNn"],"OPERAND2":[2,"aNo"]},"fields":{},"shadow":false,"topLevel":false},"aNn":{"opcode":"data_itemoflist","next":null,"parent":"R/","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aNo":{"opcode":"data_itemoflist","next":null,"parent":"R/","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3D":{"opcode":"procedures_call","next":"3I","parent":"R.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"3I":{"opcode":"data_addtolist","next":null,"parent":"3D","inputs":{"ITEM":[3,"aNp",[10,""]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aNp":{"opcode":"operator_add","next":null,"parent":"3I","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNm":{"opcode":"procedures_call","next":null,"parent":"R-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"3A":{"opcode":"data_deletealloflist","next":"R:","parent":"R,","inputs":{},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"R:":{"opcode":"control_repeat","next":"3J","parent":"3A","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"R;"]},"fields":{},"shadow":false,"topLevel":false},"R;":{"opcode":"control_repeat","next":"aNq","parent":"R:","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"3K"]},"fields":{},"shadow":false,"topLevel":false},"3K":{"opcode":"data_setvariableto","next":"3L","parent":"R;","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3L":{"opcode":"data_setvariableto","next":"R=","parent":"3K","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"R=":{"opcode":"control_repeat","next":"3M","parent":"3L","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"3N"]},"fields":{},"shadow":false,"topLevel":false},"3N":{"opcode":"data_changevariableby","next":"3O","parent":"R=","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"3O":{"opcode":"data_setvariableto","next":null,"parent":"3N","inputs":{"VALUE":[3,"3P",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3P":{"opcode":"operator_join","next":null,"parent":"3O","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"3Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"3Q":{"opcode":"operator_add","next":null,"parent":"3P","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"R?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R?":{"opcode":"operator_or","next":null,"parent":"3Q","inputs":{"OPERAND1":[2,"aNr"],"OPERAND2":[2,"aNs"]},"fields":{},"shadow":false,"topLevel":false},"aNr":{"opcode":"data_itemoflist","next":null,"parent":"R?","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aNs":{"opcode":"data_itemoflist","next":null,"parent":"R?","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3M":{"opcode":"procedures_call","next":"3R","parent":"R=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"3R":{"opcode":"data_addtolist","next":null,"parent":"3M","inputs":{"ITEM":[3,"aNt",[10,""]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aNt":{"opcode":"operator_add","next":null,"parent":"3R","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNq":{"opcode":"procedures_call","next":null,"parent":"R;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"3J":{"opcode":"data_deletealloflist","next":"3S","parent":"R:","inputs":{},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"3S":{"opcode":"control_repeat","next":null,"parent":"3J","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"R@"]},"fields":{},"shadow":false,"topLevel":false},"R@":{"opcode":"control_repeat","next":"aNu","parent":"3S","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"3T"]},"fields":{},"shadow":false,"topLevel":false},"3T":{"opcode":"data_setvariableto","next":"3U","parent":"R@","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3U":{"opcode":"data_setvariableto","next":"R[","parent":"3T","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"R[":{"opcode":"control_repeat","next":"3V","parent":"3U","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"3W"]},"fields":{},"shadow":false,"topLevel":false},"3W":{"opcode":"data_changevariableby","next":"3X","parent":"R[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"3X":{"opcode":"data_setvariableto","next":null,"parent":"3W","inputs":{"VALUE":[3,"3Y",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"3Y":{"opcode":"operator_join","next":null,"parent":"3X","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"3Z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"3Z":{"opcode":"operator_add","next":null,"parent":"3Y","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"30",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R]":{"opcode":"operator_equals","next":null,"parent":"30","inputs":{"OPERAND1":[3,"aNv",[10,""]],"OPERAND2":[3,"aNw",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aNv":{"opcode":"data_itemoflist","next":null,"parent":"R]","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aNw":{"opcode":"data_itemoflist","next":null,"parent":"R]","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"3V":{"opcode":"procedures_call","next":"31","parent":"R[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"aNx":{"opcode":"operator_add","next":null,"parent":"31","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNu":{"opcode":"procedures_call","next":null,"parent":"R@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"aNy":{"opcode":"argument_reporter_string_number","next":null,"parent":"33","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"R^":{"opcode":"data_setvariableto","next":"34","parent":"32","inputs":{"VALUE":[3,"aNz",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aNz":{"opcode":"argument_reporter_string_number","next":null,"parent":"R^","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"O/":{"opcode":"control_repeat","next":"R_","parent":"34","inputs":{"TIMES":[3,"aNA",[6,"0"]],"SUBSTACK":[2,"aNB"]},"fields":{},"shadow":false,"topLevel":false},"aNA":{"opcode":"argument_reporter_string_number","next":null,"parent":"O/","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"aNB":{"opcode":"data_addtolist","next":null,"parent":"O/","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"R_":{"opcode":"control_repeat","next":null,"parent":"O/","inputs":{"TIMES":[3,"35",[6,"0"]],"SUBSTACK":[2,"36"]},"fields":{},"shadow":false,"topLevel":false},"R`":{"opcode":"operator_divide","next":null,"parent":"35","inputs":{"NUM1":[3,"37",[4,"0"]],"NUM2":[3,"aNC",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aND":{"opcode":"argument_reporter_string_number","next":null,"parent":"37","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"aNC":{"opcode":"operator_mathop","next":null,"parent":"R`","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"R{":{"opcode":"data_setvariableto","next":"R|","parent":"38","inputs":{"VALUE":[3,"39",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aNE":{"opcode":"operator_divide","next":null,"parent":"39","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"R|":{"opcode":"control_repeat","next":null,"parent":"R{","inputs":{"TIMES":[3,"aNF",[6,"0"]],"SUBSTACK":[2,"O:"]},"fields":{},"shadow":false,"topLevel":false},"aNF":{"opcode":"argument_reporter_string_number","next":null,"parent":"R|","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"O:":{"opcode":"data_replaceitemoflist","next":"3!","parent":"R|","inputs":{"INDEX":[3,"aNG",[7,"0"]],"ITEM":[3,"3#",[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aNG":{"opcode":"operator_add","next":null,"parent":"O:","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"3#":{"opcode":"operator_join","next":null,"parent":"O:","inputs":{"STRING1":[3,"3%",[10,""]],"STRING2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"3%":{"opcode":"data_itemoflist","next":null,"parent":"3#","inputs":{"INDEX":[3,"aNH",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aNH":{"opcode":"operator_add","next":null,"parent":"3%","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"3!":{"opcode":"data_changevariableby","next":"R}","parent":"O:","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"R}":{"opcode":"control_if","next":null,"parent":"3!","inputs":{"CONDITION":[2,"3("],"SUBSTACK":[2,"3)"]},"fields":{},"shadow":false,"topLevel":false},"3(":{"opcode":"operator_equals","next":null,"parent":"R}","inputs":{"OPERAND1":[3,"aNI",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNI":{"opcode":"operator_mod","next":null,"parent":"3(","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3)":{"opcode":"data_setvariableto","next":null,"parent":"R}","inputs":{"VALUE":[3,"aNJ",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aNJ":{"opcode":"operator_subtract","next":null,"parent":"3)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNK":{"opcode":"event_whenbroadcastreceived","next":"3*","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["make_tables","SnQYRZP^Bda`yWbPz,$["]},"shadow":false,"topLevel":true,"x":48,"y":64},"3*":{"opcode":"procedures_call","next":"aNL","parent":"aNK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_bitwise init","argumentids":"[]","warp":"true"}},"aNL":{"opcode":"procedures_call","next":null,"parent":"3*","inputs":{"Qi31Z;B$.Clm/kthjb4$":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"Qi31Z;B$.Clm/kthjb4$\"]","warp":"true"}}},"comments":{"R~":{"blockId":"cA","x":913,"y":3041,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"Sa":{"blockId":"cB","x":4254,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"Sb":{"blockId":"cC","x":4254,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"14e46ec3e2ba471c2adfe8f119052307","md5ext":"14e46ec3e2ba471c2adfe8f119052307.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":2,"visible":false,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite3","variables":{"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0]},"lists":{},"broadcasts":{},"blocks":{"0":{"opcode":"looks_switchcostumeto","next":"1","parent":"kO","inputs":{"COSTUME":[3,"C[","aNM"]},"fields":{},"shadow":false,"topLevel":false},"1":{"opcode":"motion_gotoxy","next":"C]","parent":"0","inputs":{"X":[3,"aNN",[4,0]],"Y":[3,"aNO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"3+":{"opcode":"looks_show","next":"C_","parent":"C^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aNP":{"opcode":"event_whenbroadcastreceived","next":"C`","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1719,"y":68},"C`":{"opcode":"control_stop","next":"C^","parent":"aNP","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"C^":{"opcode":"motion_gotoxy","next":"3+","parent":"C`","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"C_":{"opcode":"looks_seteffectto","next":"C{","parent":"3+","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"C{":{"opcode":"looks_setsizeto","next":"kP","parent":"C_","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"kP":{"opcode":"looks_switchcostumeto","next":"aNQ","parent":"C{","inputs":{"COSTUME":[1,"aNR"]},"fields":{},"shadow":false,"topLevel":false},"aNR":{"opcode":"looks_costume","next":null,"parent":"kP","inputs":{},"fields":{"COSTUME":["costume1",null]},"shadow":true,"topLevel":false},"aNQ":{"opcode":"control_delete_this_clone","next":null,"parent":"kP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aNS":{"opcode":"event_whenbroadcastreceived","next":"aNT","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["WAVE-8_drawkeys","Pi~qDSlxleRjJ@ah)D#o"]},"shadow":false,"topLevel":true,"x":824,"y":93},"aNT":{"opcode":"procedures_call","next":null,"parent":"aNS","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,[10,"-67"]],"P=n#4paHx7[.aGU2jnRF":[1,[10,"-39"]],".A{XL/=aJQD9Mf6Si7J1":[1,[10,"4"]],"!WwY,eYr76KH6sejF{8b":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","warp":"true"}},"aNU":{"opcode":"control_start_as_clone","next":"kQ","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"kQ":{"opcode":"looks_setsizeto","next":"C|","parent":"aNU","inputs":{"SIZE":[3,"C}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"C}":{"opcode":"operator_subtract","next":null,"parent":"kQ","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"C~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"C~":{"opcode":"operator_multiply","next":null,"parent":"C}","inputs":{"NUM1":[3,"aNV",[4,0]],"NUM2":[1,[4,"25"]]},"fields":{},"shadow":false,"topLevel":false},"aNV":{"opcode":"data_itemoflist","next":null,"parent":"C~","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"C|":{"opcode":"control_forever","next":null,"parent":"kQ","inputs":{"SUBSTACK":[2,"R"]},"fields":{},"shadow":false,"topLevel":false},"R":{"opcode":"control_if_else","next":null,"parent":"C|","inputs":{"CONDITION":[2,"kR"],"SUBSTACK":[2,"kS"],"SUBSTACK2":[2,"kT"]},"fields":{},"shadow":false,"topLevel":false},"kR":{"opcode":"operator_and","next":null,"parent":"R","inputs":{"OPERAND1":[2,"aNW"],"OPERAND2":[2,"Da"]},"fields":{},"shadow":false,"topLevel":false},"aNW":{"opcode":"sensing_mousedown","next":null,"parent":"kR","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Da":{"opcode":"sensing_touchingobject","next":null,"parent":"kR","inputs":{"TOUCHINGOBJECTMENU":[1,"aNX"]},"fields":{},"shadow":false,"topLevel":false},"aNX":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"Da","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"kS":{"opcode":"data_replaceitemoflist","next":"aNY","parent":"R","inputs":{"INDEX":[3,"kU",[7,0]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"kU":{"opcode":"operator_subtract","next":null,"parent":"kS","inputs":{"NUM1":[3,"aNZ",[4,0]],"NUM2":[3,"Db",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aNZ":{"opcode":"looks_costumenumbername","next":null,"parent":"kU","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Db":{"opcode":"operator_add","next":null,"parent":"kU","inputs":{"NUM1":[3,"Dc",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dc":{"opcode":"operator_multiply","next":null,"parent":"Db","inputs":{"NUM1":[3,"aN0",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aN0":{"opcode":"data_itemoflist","next":null,"parent":"Dc","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aNY":{"opcode":"looks_seteffectto","next":null,"parent":"kS","inputs":{"VALUE":[1,[4,"-20"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"kT":{"opcode":"data_replaceitemoflist","next":"aN1","parent":"R","inputs":{"INDEX":[3,"kV",[7,0]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"kV":{"opcode":"operator_subtract","next":null,"parent":"kT","inputs":{"NUM1":[3,"aN2",[4,0]],"NUM2":[3,"Dd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aN2":{"opcode":"looks_costumenumbername","next":null,"parent":"kV","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Dd":{"opcode":"operator_add","next":null,"parent":"kV","inputs":{"NUM1":[3,"De",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"De":{"opcode":"operator_multiply","next":null,"parent":"Dd","inputs":{"NUM1":[3,"aN3",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aN3":{"opcode":"data_itemoflist","next":null,"parent":"De","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aN1":{"opcode":"looks_seteffectto","next":null,"parent":"kT","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"Df":{"opcode":"procedures_definition","next":"Dg","parent":null,"inputs":{"custom_block":[1,"["]},"fields":{},"shadow":false,"topLevel":true,"x":971,"y":580},"[":{"opcode":"procedures_prototype","next":null,"parent":"Df","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,"aN4"],"P=n#4paHx7[.aGU2jnRF":[1,"aN5"],".A{XL/=aJQD9Mf6Si7J1":[1,"aN6"],"!WwY,eYr76KH6sejF{8b":[1,"aN7"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","argumentnames":"[\"Xstart\",\"Ystart\",\"rows\",\"columns\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"aN4":{"opcode":"argument_reporter_string_number","next":null,"parent":"[","inputs":{},"fields":{"VALUE":["Xstart",null]},"shadow":true,"topLevel":false},"aN5":{"opcode":"argument_reporter_string_number","next":null,"parent":"[","inputs":{},"fields":{"VALUE":["Ystart",null]},"shadow":true,"topLevel":false},"aN6":{"opcode":"argument_reporter_string_number","next":null,"parent":"[","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":true,"topLevel":false},"aN7":{"opcode":"argument_reporter_string_number","next":null,"parent":"[","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":true,"topLevel":false},"Dg":{"opcode":"looks_show","next":"kO","parent":"Df","inputs":{},"fields":{},"shadow":false,"topLevel":false},"kO":{"opcode":"looks_seteffectto","next":"0","parent":"Dg","inputs":{"VALUE":[3,"Dh",[4,0]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"Dh":{"opcode":"operator_subtract","next":null,"parent":"kO","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"Di",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Di":{"opcode":"operator_multiply","next":null,"parent":"Dh","inputs":{"NUM1":[3,"aN8",[4,0]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aN8":{"opcode":"data_itemoflist","next":null,"parent":"Di","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"C[":{"opcode":"operator_add","next":null,"parent":"0","inputs":{"NUM1":[3,"Dj",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dj":{"opcode":"operator_multiply","next":null,"parent":"C[","inputs":{"NUM1":[3,"aN9",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aN9":{"opcode":"data_itemoflist","next":null,"parent":"Dj","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aNM":{"opcode":"looks_costume","next":null,"parent":"0","inputs":{},"fields":{"COSTUME":["16",null]},"shadow":true,"topLevel":false},"aNN":{"opcode":"argument_reporter_string_number","next":null,"parent":"1","inputs":{},"fields":{"VALUE":["Xstart",null]},"shadow":false,"topLevel":false},"aNO":{"opcode":"argument_reporter_string_number","next":null,"parent":"1","inputs":{},"fields":{"VALUE":["Ystart",null]},"shadow":false,"topLevel":false},"C]":{"opcode":"data_deletealloflist","next":"k","parent":"1","inputs":{},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"k":{"opcode":"control_repeat","next":"bu","parent":"C]","inputs":{"TIMES":[3,"kW",[6,0]],"SUBSTACK":[2,"aN!"]},"fields":{},"shadow":false,"topLevel":false},"kW":{"opcode":"operator_multiply","next":null,"parent":"k","inputs":{"NUM1":[3,"aN#",[4,0]],"NUM2":[3,"aN%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aN#":{"opcode":"argument_reporter_string_number","next":null,"parent":"kW","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":false,"topLevel":false},"aN%":{"opcode":"argument_reporter_string_number","next":null,"parent":"kW","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":false,"topLevel":false},"aN!":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"bu":{"opcode":"control_repeat","next":"aN(","parent":"k","inputs":{"TIMES":[3,"aN)",[6,0]],"SUBSTACK":[2,"Dk"]},"fields":{},"shadow":false,"topLevel":false},"aN)":{"opcode":"argument_reporter_string_number","next":null,"parent":"bu","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":false,"topLevel":false},"Dk":{"opcode":"motion_setx","next":"bv","parent":"bu","inputs":{"X":[1,[4,"-67"]]},"fields":{},"shadow":false,"topLevel":false},"bv":{"opcode":"control_repeat","next":"aN*","parent":"Dk","inputs":{"TIMES":[3,"aN+",[6,0]],"SUBSTACK":[2,"Dl"]},"fields":{},"shadow":false,"topLevel":false},"aN+":{"opcode":"argument_reporter_string_number","next":null,"parent":"bv","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":false,"topLevel":false},"Dl":{"opcode":"looks_nextcostume","next":"kX","parent":"bv","inputs":{},"fields":{},"shadow":false,"topLevel":false},"kX":{"opcode":"control_create_clone_of","next":"aN,","parent":"Dl","inputs":{"CLONE_OPTION":[1,"aN-"]},"fields":{},"shadow":false,"topLevel":false},"aN-":{"opcode":"control_create_clone_of_menu","next":null,"parent":"kX","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"aN,":{"opcode":"motion_changexby","next":null,"parent":"kX","inputs":{"DX":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},"aN*":{"opcode":"motion_changeyby","next":null,"parent":"bv","inputs":{"DY":[1,[4,"-40"]]},"fields":{},"shadow":false,"topLevel":false},"aN(":{"opcode":"looks_hide","next":null,"parent":"bu","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aN.":{"opcode":"event_whenbroadcastreceived","next":"aN/","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Chip-8","onPsFYdb^;g,DoWfegZ6"]},"shadow":false,"topLevel":true,"x":610,"y":39},"aN/":{"opcode":"control_delete_this_clone","next":null,"parent":"aN.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aN:":{"opcode":"event_whenbroadcastreceived","next":"aN;","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["remapwave8","5V0sDNDr+0A=YC_`nb#{"]},"shadow":false,"topLevel":true,"x":1133,"y":304},"aN;":{"opcode":"procedures_call","next":null,"parent":"aN:","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,[10,"-67"]],"P=n#4paHx7[.aGU2jnRF":[1,[10,"105"]],".A{XL/=aJQD9Mf6Si7J1":[1,[10,"4"]],"!WwY,eYr76KH6sejF{8b":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","warp":"true"}}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"bc9680b94cd42a76b35cf9d00961240c","md5ext":"bc9680b94cd42a76b35cf9d00961240c.svg","rotationCenterX":0.6805555555555429,"rotationCenterY":463.4583433333334},{"name":"1","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"2","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"3","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"4","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"5","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"6","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"7","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"8","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"9","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"10","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"11","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"12","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"13","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"14","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"15","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"16","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"17","bitmapResolution":2,"dataFormat":"png","assetId":"1436f96369704e7e69a60f43dbca2084","md5ext":"1436f96369704e7e69a60f43dbca2084.png","rotationCenterX":56,"rotationCenterY":74},{"name":"18","bitmapResolution":2,"dataFormat":"png","assetId":"0ad18e85db82014b60e95cc5c3d5738d","md5ext":"0ad18e85db82014b60e95cc5c3d5738d.png","rotationCenterX":56,"rotationCenterY":74},{"name":"25","bitmapResolution":2,"dataFormat":"png","assetId":"9feb84674a1dcc30ae85c2cf49ca3a2e","md5ext":"9feb84674a1dcc30ae85c2cf49ca3a2e.png","rotationCenterX":56,"rotationCenterY":74},{"name":"c","bitmapResolution":2,"dataFormat":"png","assetId":"047d56bdf32d6903ca44431b71e728b5","md5ext":"047d56bdf32d6903ca44431b71e728b5.png","rotationCenterX":56,"rotationCenterY":74},{"name":"19","bitmapResolution":2,"dataFormat":"png","assetId":"b5b210d1fc8eb486ccb2fc916c258fdf","md5ext":"b5b210d1fc8eb486ccb2fc916c258fdf.png","rotationCenterX":56,"rotationCenterY":74},{"name":"20","bitmapResolution":2,"dataFormat":"png","assetId":"fa7dd571071e3c99014191f086d18c68","md5ext":"fa7dd571071e3c99014191f086d18c68.png","rotationCenterX":56,"rotationCenterY":74},{"name":"21","bitmapResolution":2,"dataFormat":"png","assetId":"911fa08b976bb79be5ca6331167bc88f","md5ext":"911fa08b976bb79be5ca6331167bc88f.png","rotationCenterX":56,"rotationCenterY":74},{"name":"d","bitmapResolution":2,"dataFormat":"png","assetId":"7e019c91684e0f84d00130c188b56a78","md5ext":"7e019c91684e0f84d00130c188b56a78.png","rotationCenterX":56,"rotationCenterY":74},{"name":"22","bitmapResolution":2,"dataFormat":"png","assetId":"856be3759f14194996271dd779da7a7a","md5ext":"856be3759f14194996271dd779da7a7a.png","rotationCenterX":56,"rotationCenterY":74},{"name":"23","bitmapResolution":2,"dataFormat":"png","assetId":"5d8e272826680dbca5f5f7f853a86dee","md5ext":"5d8e272826680dbca5f5f7f853a86dee.png","rotationCenterX":56,"rotationCenterY":74},{"name":"24","bitmapResolution":2,"dataFormat":"png","assetId":"d98dab2b4abbd7a70dc7414b04bcae8f","md5ext":"d98dab2b4abbd7a70dc7414b04bcae8f.png","rotationCenterX":56,"rotationCenterY":74},{"name":"e","bitmapResolution":2,"dataFormat":"png","assetId":"e7f6f4dbf45e5ee1c63a47be816a9833","md5ext":"e7f6f4dbf45e5ee1c63a47be816a9833.png","rotationCenterX":56,"rotationCenterY":74},{"name":"a","bitmapResolution":2,"dataFormat":"png","assetId":"146b24464e0c0bc585071c34b8e80751","md5ext":"146b24464e0c0bc585071c34b8e80751.png","rotationCenterX":56,"rotationCenterY":74},{"name":"0","bitmapResolution":2,"dataFormat":"png","assetId":"e01696ebf60250767c050f061ebc8add","md5ext":"e01696ebf60250767c050f061ebc8add.png","rotationCenterX":56,"rotationCenterY":74},{"name":"b","bitmapResolution":2,"dataFormat":"png","assetId":"bce7e2aede44d85200de99d7f2b60539","md5ext":"bce7e2aede44d85200de99d7f2b60539.png","rotationCenterX":56,"rotationCenterY":74},{"name":"f","bitmapResolution":2,"dataFormat":"png","assetId":"9daf5ab134f81ec5d1defbe17b210301","md5ext":"9daf5ab134f81ec5d1defbe17b210301.png","rotationCenterX":56,"rotationCenterY":74}],"sounds":[],"volume":100,"layerOrder":21,"visible":true,"x":0,"y":0,"size":58.257663020492465,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Icon Template 1","variables":{"lo_vMT]e;W^6J}L{.;?|":["Velocity",-5],"_FiygW_%~W7KsK!n$5T{":["S",0],"M1MRH6V)bg-6jD{ugH=J":["Input",0],"|vEUSf.D@`%N,D.^3/|b":["Ahello",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"P;qur_QvQJdLi~`CMsNs":["mchip8sprite width",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"aN=":{"opcode":"control_start_as_clone","next":"Dm","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1574,"y":645},"Dm":{"opcode":"looks_show","next":"Dn","parent":"aN=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Dn":{"opcode":"looks_setsizeto","next":"Do","parent":"Dm","inputs":{"SIZE":[1,[4,"52"]]},"fields":{},"shadow":false,"topLevel":false},"Do":{"opcode":"control_forever","next":null,"parent":"Dn","inputs":{"SUBSTACK":[2,"kY"]},"fields":{},"shadow":false,"topLevel":false},"kY":{"opcode":"control_wait_until","next":"Dp","parent":"Do","inputs":{"CONDITION":[2,"Dq"]},"fields":{},"shadow":false,"topLevel":false},"Dp":{"opcode":"looks_setsizeto","next":"Dr","parent":"kY","inputs":{"SIZE":[1,[4,"55"]]},"fields":{},"shadow":false,"topLevel":false},"Dr":{"opcode":"data_setvariableto","next":"kZ","parent":"Dp","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"kZ":{"opcode":"control_wait_until","next":"Ds","parent":"Dr","inputs":{"CONDITION":[2,"Dt"]},"fields":{},"shadow":false,"topLevel":false},"Dt":{"opcode":"operator_not","next":null,"parent":"kZ","inputs":{"OPERAND":[2,"Du"]},"fields":{},"shadow":false,"topLevel":false},"Du":{"opcode":"sensing_touchingobject","next":null,"parent":"Dt","inputs":{"TOUCHINGOBJECTMENU":[1,"aN?"]},"fields":{},"shadow":false,"topLevel":false},"aN?":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"Du","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["Sprite3",null]},"shadow":true,"topLevel":false},"Ds":{"opcode":"looks_setsizeto","next":"aN@","parent":"kZ","inputs":{"SIZE":[1,[4,"98"]]},"fields":{},"shadow":false,"topLevel":false},"aN@":{"opcode":"data_setvariableto","next":null,"parent":"Ds","inputs":{"VALUE":[1,[10,"-5"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"aN[":{"opcode":"control_start_as_clone","next":"Dv","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1950,"y":873},"Dv":{"opcode":"looks_seteffectto","next":"Dw","parent":"aN[","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"Dw":{"opcode":"looks_show","next":"k0","parent":"Dv","inputs":{},"fields":{},"shadow":false,"topLevel":false},"k0":{"opcode":"motion_gotoxy","next":"bw","parent":"Dw","inputs":{"X":[3,"3,",[4,"0"]],"Y":[3,"3-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3,":{"opcode":"operator_add","next":null,"parent":"k0","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[3,"3.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3.":{"opcode":"operator_multiply","next":null,"parent":"3,","inputs":{"NUM1":[3,"3/",[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"3/":{"opcode":"operator_subtract","next":null,"parent":"3.","inputs":{"NUM1":[3,"aN]",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aN]":{"opcode":"looks_costumenumbername","next":null,"parent":"3/","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"3-":{"opcode":"operator_subtract","next":null,"parent":"k0","inputs":{"NUM1":[3,"Dx",[4,"0"]],"NUM2":[1,[4,"230"]]},"fields":{},"shadow":false,"topLevel":false},"Dx":{"opcode":"operator_add","next":null,"parent":"3-","inputs":{"NUM1":[3,"3:",[4,"0"]],"NUM2":[3,"Dy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3:":{"opcode":"operator_multiply","next":null,"parent":"Dx","inputs":{"NUM1":[3,"aN^",[4,"0"]],"NUM2":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"aN^":{"opcode":"data_itemoflist","next":null,"parent":"3:","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Dy":{"opcode":"operator_multiply","next":null,"parent":"Dx","inputs":{"NUM1":[3,"3;",[4,"0"]],"NUM2":[3,"Dz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3;":{"opcode":"operator_multiply","next":null,"parent":"Dy","inputs":{"NUM1":[3,"aN_",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aN_":{"opcode":"operator_mathop","next":null,"parent":"3;","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"Dz":{"opcode":"operator_multiply","next":null,"parent":"Dy","inputs":{"NUM1":[3,"3=",[4,"0"]],"NUM2":[3,"3?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3=":{"opcode":"operator_equals","next":null,"parent":"Dz","inputs":{"OPERAND1":[3,"aN`",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aN`":{"opcode":"data_itemoflist","next":null,"parent":"3=","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"3?":{"opcode":"sensing_touchingobject","next":null,"parent":"Dz","inputs":{"TOUCHINGOBJECTMENU":[1,"aN{"]},"fields":{},"shadow":false,"topLevel":false},"aN{":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"3?","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["Sprite3",null]},"shadow":true,"topLevel":false},"bw":{"opcode":"control_repeat","next":"DA","parent":"k0","inputs":{"TIMES":[3,"DB",[6,"0"]],"SUBSTACK":[2,"DC"]},"fields":{},"shadow":false,"topLevel":false},"DB":{"opcode":"operator_multiply","next":null,"parent":"bw","inputs":{"NUM1":[1,[4,"11"]],"NUM2":[3,"DD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DD":{"opcode":"operator_add","next":null,"parent":"DB","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aN|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aN|":{"opcode":"argument_reporter_boolean","next":null,"parent":"DD","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"DC":{"opcode":"looks_changeeffectby","next":null,"parent":"bw","inputs":{"CHANGE":[3,"DE",[4,"0"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"DE":{"opcode":"operator_multiply","next":null,"parent":"DC","inputs":{"NUM1":[1,[4,"-5"]],"NUM2":[3,"DF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DA":{"opcode":"control_forever","next":null,"parent":"bw","inputs":{"SUBSTACK":[2,"eU"]},"fields":{},"shadow":false,"topLevel":false},"eU":{"opcode":"motion_gotoxy","next":"k1","parent":"DA","inputs":{"X":[3,"DG",[4,"0"]],"Y":[3,"DH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DG":{"opcode":"operator_add","next":null,"parent":"eU","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[3,"DI",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DI":{"opcode":"operator_multiply","next":null,"parent":"DG","inputs":{"NUM1":[3,"DJ",[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"DJ":{"opcode":"operator_subtract","next":null,"parent":"DI","inputs":{"NUM1":[3,"aN}",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aN}":{"opcode":"looks_costumenumbername","next":null,"parent":"DJ","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"DH":{"opcode":"operator_subtract","next":null,"parent":"eU","inputs":{"NUM1":[3,"k2",[4,"0"]],"NUM2":[1,[4,"230"]]},"fields":{},"shadow":false,"topLevel":false},"k2":{"opcode":"operator_add","next":null,"parent":"DH","inputs":{"NUM1":[3,"DK",[4,"0"]],"NUM2":[3,"k3",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DK":{"opcode":"operator_multiply","next":null,"parent":"k2","inputs":{"NUM1":[3,"aN~",[4,"0"]],"NUM2":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"aN~":{"opcode":"data_itemoflist","next":null,"parent":"DK","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"k3":{"opcode":"operator_multiply","next":null,"parent":"k2","inputs":{"NUM1":[3,"DL",[4,"0"]],"NUM2":[3,"k4",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DL":{"opcode":"operator_multiply","next":null,"parent":"k3","inputs":{"NUM1":[3,"aOa",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aOa":{"opcode":"operator_mathop","next":null,"parent":"DL","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"k4":{"opcode":"operator_multiply","next":null,"parent":"k3","inputs":{"NUM1":[3,"DM",[4,"0"]],"NUM2":[3,"DN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DM":{"opcode":"operator_equals","next":null,"parent":"k4","inputs":{"OPERAND1":[3,"aOb",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOb":{"opcode":"data_itemoflist","next":null,"parent":"DM","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"DN":{"opcode":"sensing_touchingobject","next":null,"parent":"k4","inputs":{"TOUCHINGOBJECTMENU":[1,"aOc"]},"fields":{},"shadow":false,"topLevel":false},"aOc":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"DN","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["Sprite3",null]},"shadow":true,"topLevel":false},"k1":{"opcode":"data_setvariableto","next":"DO","parent":"eU","inputs":{"VALUE":[3,"aOd",[10,""]]},"fields":{"VARIABLE":["S","_FiygW_%~W7KsK!n$5T{"]},"shadow":false,"topLevel":false},"aOd":{"opcode":"looks_size","next":null,"parent":"k1","inputs":{},"fields":{},"shadow":false,"topLevel":false},"DO":{"opcode":"looks_setsizeto","next":"eV","parent":"k1","inputs":{"SIZE":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"eV":{"opcode":"control_if_else","next":"aOe","parent":"DO","inputs":{"CONDITION":[2,"DP"],"SUBSTACK":[2,"aOf"],"SUBSTACK2":[2,"aOg"]},"fields":{},"shadow":false,"topLevel":false},"aOf":{"opcode":"looks_seteffectto","next":null,"parent":"eV","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aOg":{"opcode":"looks_seteffectto","next":null,"parent":"eV","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aOe":{"opcode":"looks_setsizeto","next":null,"parent":"eV","inputs":{"SIZE":[3,[12,"S","_FiygW_%~W7KsK!n$5T{"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOh":{"opcode":"control_start_as_clone","next":"DQ","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2288,"y":1758},"DQ":{"opcode":"data_setvariableto","next":"DR","parent":"aOh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"DR":{"opcode":"control_forever","next":null,"parent":"DQ","inputs":{"SUBSTACK":[2,"DS"]},"fields":{},"shadow":false,"topLevel":false},"DS":{"opcode":"looks_changesizeby","next":"eW","parent":"DR","inputs":{"CHANGE":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"eW":{"opcode":"control_if_else","next":"DT","parent":"DS","inputs":{"CONDITION":[2,"DU"],"SUBSTACK":[2,"aOi"],"SUBSTACK2":[2,"DV"]},"fields":{},"shadow":false,"topLevel":false},"DU":{"opcode":"operator_lt","next":null,"parent":"eW","inputs":{"OPERAND1":[3,"aOj",[10,""]],"OPERAND2":[1,[10,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"aOj":{"opcode":"operator_mathop","next":null,"parent":"DU","inputs":{"NUM":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"aOi":{"opcode":"data_setvariableto","next":null,"parent":"eW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"DV":{"opcode":"data_setvariableto","next":null,"parent":"eW","inputs":{"VALUE":[3,"aOk",[10,""]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"aOk":{"opcode":"operator_multiply","next":null,"parent":"DV","inputs":{"NUM1":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]],"NUM2":[1,[4,"0.9"]]},"fields":{},"shadow":false,"topLevel":false},"DT":{"opcode":"looks_seteffectto","next":null,"parent":"eW","inputs":{"VALUE":[3,"DW",[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"aOl":{"opcode":"event_whenthisspriteclicked","next":"k5","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1404,"y":204},"k5":{"opcode":"data_setvariableto","next":"aOm","parent":"aOl","inputs":{"VALUE":[3,"DX",[10,""]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"DX":{"opcode":"operator_multiply","next":null,"parent":"k5","inputs":{"NUM1":[3,"DY",[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"DY":{"opcode":"operator_subtract","next":null,"parent":"DX","inputs":{"NUM1":[3,"aOn",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aOn":{"opcode":"looks_costumenumbername","next":null,"parent":"DY","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aOm":{"opcode":"event_broadcast","next":null,"parent":"k5","inputs":{"BROADCAST_INPUT":[1,[11,"GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]]},"fields":{},"shadow":false,"topLevel":false},"aOo":{"opcode":"event_whenbroadcastreceived","next":"k6","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]},"shadow":false,"topLevel":true,"x":2147,"y":672},"k6":{"opcode":"control_wait","next":"aOp","parent":"aOo","inputs":{"DURATION":[3,"DZ",[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DZ":{"opcode":"operator_subtract","next":null,"parent":"k6","inputs":{"NUM1":[1,[4,"0.5"]],"NUM2":[3,"D0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"D0":{"opcode":"operator_multiply","next":null,"parent":"DZ","inputs":{"NUM1":[1,[4,"0.25"]],"NUM2":[3,"aOq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOq":{"opcode":"argument_reporter_boolean","next":null,"parent":"D0","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"aOp":{"opcode":"control_delete_this_clone","next":null,"parent":"k6","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aOr":{"opcode":"event_whenbroadcastreceived","next":"D1","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":2147,"y":64},"D1":{"opcode":"data_setvariableto","next":"D2","parent":"aOr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"D2":{"opcode":"looks_cleargraphiceffects","next":"k7","parent":"D1","inputs":{},"fields":{},"shadow":false,"topLevel":false},"k7":{"opcode":"looks_seteffectto","next":"D3","parent":"D2","inputs":{"VALUE":[3,"3@",[4,"0"]]},"fields":{"EFFECT":["COLOR",null]},"shadow":false,"topLevel":false},"3@":{"opcode":"operator_join","next":null,"parent":"k7","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"k8",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"k8":{"opcode":"operator_join","next":null,"parent":"3@","inputs":{"STRING1":[3,"aOs",[10,""]],"STRING2":[3,"aOt",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aOs":{"opcode":"data_itemoflist","next":null,"parent":"k8","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aOt":{"opcode":"data_itemoflist","next":null,"parent":"k8","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"D3":{"opcode":"looks_hide","next":"D4","parent":"k7","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aOu":{"opcode":"event_whenbroadcastreceived","next":"aOv","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1655,"y":460},"aOv":{"opcode":"control_delete_this_clone","next":null,"parent":"aOu","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Dq":{"opcode":"sensing_touchingobject","next":null,"parent":"kY","inputs":{"TOUCHINGOBJECTMENU":[1,"aOw"]},"fields":{},"shadow":false,"topLevel":false},"aOw":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"Dq","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["Sprite3",null]},"shadow":true,"topLevel":false},"DF":{"opcode":"operator_subtract","next":null,"parent":"DE","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aOx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOx":{"opcode":"argument_reporter_boolean","next":null,"parent":"DF","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"DP":{"opcode":"sensing_touchingobject","next":null,"parent":"eV","inputs":{"TOUCHINGOBJECTMENU":[1,"aOy"]},"fields":{},"shadow":false,"topLevel":false},"aOy":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"DP","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_edge_",null]},"shadow":true,"topLevel":false},"DW":{"opcode":"operator_subtract","next":null,"parent":"DT","inputs":{"NUM1":[3,"aOz",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aOz":{"opcode":"looks_size","next":null,"parent":"DW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D4":{"opcode":"control_wait","next":"k9","parent":"D3","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"k9":{"opcode":"looks_switchcostumeto","next":"D5","parent":"D4","inputs":{"COSTUME":[1,"aOA"]},"fields":{},"shadow":false,"topLevel":false},"aOA":{"opcode":"looks_costume","next":null,"parent":"k9","inputs":{},"fields":{"COSTUME":["0import",null]},"shadow":true,"topLevel":false},"D5":{"opcode":"control_repeat","next":null,"parent":"k9","inputs":{"TIMES":[1,[6,"11"]],"SUBSTACK":[2,"k!"]},"fields":{},"shadow":false,"topLevel":false},"k!":{"opcode":"control_create_clone_of","next":"aOB","parent":"D5","inputs":{"CLONE_OPTION":[1,"aOC"]},"fields":{},"shadow":false,"topLevel":false},"aOC":{"opcode":"control_create_clone_of_menu","next":null,"parent":"k!","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"aOB":{"opcode":"looks_nextcostume","next":null,"parent":"k!","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{"bm)":{"blockId":"bm*","x":836.9477482862434,"y":2407.7371399176955,"width":200,"height":200,"minimized":true,"text":"Was originially going to use EmulatorsOnScratch's NIntendo DS Emulator, Project could no longer save due to the 4MB of RAM in the lists"}},"currentCostume":11,"costumes":[{"name":"0import","bitmapResolution":1,"dataFormat":"svg","assetId":"8945fe6cebc9f94d17cdede6705cce05","md5ext":"8945fe6cebc9f94d17cdede6705cce05.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659},{"name":"0remap","bitmapResolution":1,"dataFormat":"svg","assetId":"055eb27115bb03ab4b8a45d347c58007","md5ext":"055eb27115bb03ab4b8a45d347c58007.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"0Rom","bitmapResolution":1,"dataFormat":"svg","assetId":"de1a879c7714195d88636ee7886200cd","md5ext":"de1a879c7714195d88636ee7886200cd.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659},{"name":"2W8","bitmapResolution":1,"dataFormat":"svg","assetId":"59ae8592eef8327353523c139f62df65","md5ext":"59ae8592eef8327353523c139f62df65.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"2GB","bitmapResolution":1,"dataFormat":"svg","assetId":"af50aa97274238b77289b30106afd4d7","md5ext":"af50aa97274238b77289b30106afd4d7.svg","rotationCenterX":71.96056752698698,"rotationCenterY":104.98917571884976},{"name":"2GBA","bitmapResolution":1,"dataFormat":"svg","assetId":"66277b8281c7ba82073d03741e78c2a8","md5ext":"66277b8281c7ba82073d03741e78c2a8.svg","rotationCenterX":71.10455419443548,"rotationCenterY":105.02659},{"name":"1DS","bitmapResolution":1,"dataFormat":"svg","assetId":"3f8ffc17fe59c9b69193b6032fde959d","md5ext":"3f8ffc17fe59c9b69193b6032fde959d.svg","rotationCenterX":71.96054500000014,"rotationCenterY":105.02659},{"name":"2NES","bitmapResolution":1,"dataFormat":"svg","assetId":"088ca8aec29f40da4fd7e56773a57308","md5ext":"088ca8aec29f40da4fd7e56773a57308.svg","rotationCenterX":71.96055042857145,"rotationCenterY":105.02659},{"name":"0BP","bitmapResolution":1,"dataFormat":"svg","assetId":"3b2eee0ea8daf95b8e98f0440c363bfc","md5ext":"3b2eee0ea8daf95b8e98f0440c363bfc.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"2UHWEI","bitmapResolution":1,"dataFormat":"svg","assetId":"bf5938324760cd3bee8e55c7c5199045","md5ext":"bf5938324760cd3bee8e55c7c5199045.svg","rotationCenterX":71.96052500000002,"rotationCenterY":105.02659},{"name":"0S8080","bitmapResolution":1,"dataFormat":"svg","assetId":"ec52a0343ea38831ee9677f5346a60b7","md5ext":"ec52a0343ea38831ee9677f5346a60b7.svg","rotationCenterX":71.96049500000004,"rotationCenterY":105.02659},{"name":"2DS","bitmapResolution":1,"dataFormat":"svg","assetId":"0c9f5f87b7ab320543b18ef6eb5845a4","md5ext":"0c9f5f87b7ab320543b18ef6eb5845a4.svg","rotationCenterX":71.96054500000011,"rotationCenterY":105.02659},{"name":"1W8","bitmapResolution":1,"dataFormat":"svg","assetId":"0243ceedbe28dac137c06653cae134ca","md5ext":"0243ceedbe28dac137c06653cae134ca.svg","rotationCenterX":71.96056752698698,"rotationCenterY":72.2372},{"name":"2N64","bitmapResolution":1,"dataFormat":"svg","assetId":"7ea6684aaa1c4d6b3b04f768da84d3d7","md5ext":"7ea6684aaa1c4d6b3b04f768da84d3d7.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659}],"sounds":[{"name":"select","assetId":"65eb4aaa919adcce058cc10a7ed6af29","dataFormat":"wav","format":"","rate":48000,"sampleCount":35108,"md5ext":"65eb4aaa919adcce058cc10a7ed6af29.wav"},{"name":"423930__mudkip2016__correct","assetId":"2b8df150fec576ea0df648ffc581e51e","dataFormat":"wav","rate":48000,"sampleCount":30712,"md5ext":"2b8df150fec576ea0df648ffc581e51e.wav"}],"volume":100,"layerOrder":6,"visible":false,"x":78,"y":-100,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite2","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"3[":{"opcode":"operator_not","next":null,"parent":"k#","inputs":{"OPERAND":[2,"aOD"]},"fields":{},"shadow":false,"topLevel":false},"aOE":{"opcode":"event_whenthisspriteclicked","next":"bx","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"bx":{"opcode":"sound_play","next":"by","parent":"aOE","inputs":{"SOUND_MENU":[3,"D6","aOF"]},"fields":{},"shadow":false,"topLevel":false},"D6":{"opcode":"operator_add","next":null,"parent":"bx","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aOG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aOG":{"opcode":"data_itemoflist","next":null,"parent":"D6","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"aOF":{"opcode":"sound_sounds_menu","next":null,"parent":"bx","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"by":{"opcode":"control_repeat","next":"bz","parent":"bx","inputs":{"TIMES":[3,"D7",[6,0]],"SUBSTACK":[2,"D8"]},"fields":{},"shadow":false,"topLevel":false},"D7":{"opcode":"operator_multiply","next":null,"parent":"by","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"D9",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D9":{"opcode":"operator_add","next":null,"parent":"D7","inputs":{"NUM1":[3,"aOH",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aOH":{"opcode":"argument_reporter_boolean","next":null,"parent":"D9","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"D8":{"opcode":"data_changevariableby","next":null,"parent":"by","inputs":{"VALUE":[3,"k%",[4,0]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"k%":{"opcode":"operator_divide","next":null,"parent":"D8","inputs":{"NUM1":[3,"D!",[4,0]],"NUM2":[3,"D#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D#":{"opcode":"operator_add","next":null,"parent":"k%","inputs":{"NUM1":[3,"aOI",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aOI":{"opcode":"argument_reporter_boolean","next":null,"parent":"D#","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"bz":{"opcode":"control_if","next":"bA","parent":"by","inputs":{"CONDITION":[2,"k("],"SUBSTACK":[2,"aOJ"]},"fields":{},"shadow":false,"topLevel":false},"k(":{"opcode":"operator_or","next":null,"parent":"bz","inputs":{"OPERAND1":[2,"aOK"],"OPERAND2":[2,"D%"]},"fields":{},"shadow":false,"topLevel":false},"aOK":{"opcode":"operator_gt","next":null,"parent":"k(","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"D%":{"opcode":"operator_not","next":null,"parent":"k(","inputs":{"OPERAND":[2,"D("]},"fields":{},"shadow":false,"topLevel":false},"D(":{"opcode":"operator_equals","next":null,"parent":"D%","inputs":{"OPERAND1":[3,"aOL",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOL":{"opcode":"operator_mod","next":null,"parent":"D(","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,0]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aOJ":{"opcode":"data_setvariableto","next":null,"parent":"bz","inputs":{"VALUE":[1,[10,"-1800"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"bA":{"opcode":"control_if","next":"aOM","parent":"bz","inputs":{"CONDITION":[2,"k)"],"SUBSTACK":[2,"aON"]},"fields":{},"shadow":false,"topLevel":false},"k)":{"opcode":"operator_or","next":null,"parent":"bA","inputs":{"OPERAND1":[2,"aOO"],"OPERAND2":[2,"D)"]},"fields":{},"shadow":false,"topLevel":false},"aOO":{"opcode":"operator_gt","next":null,"parent":"k)","inputs":{"OPERAND1":[1,[10,"-1800"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D)":{"opcode":"operator_not","next":null,"parent":"k)","inputs":{"OPERAND":[2,"D*"]},"fields":{},"shadow":false,"topLevel":false},"D*":{"opcode":"operator_equals","next":null,"parent":"D)","inputs":{"OPERAND1":[3,"aOP",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aOP":{"opcode":"operator_mod","next":null,"parent":"D*","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,0]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aON":{"opcode":"data_setvariableto","next":null,"parent":"bA","inputs":{"VALUE":[1,[10,"200"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"aOM":{"opcode":"control_wait","next":null,"parent":"bA","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"aOQ":{"opcode":"control_start_as_clone","next":"D+","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":784},"D+":{"opcode":"looks_seteffectto","next":"D,","parent":"aOQ","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aOR":{"opcode":"control_start_as_clone","next":"D-","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":1136},"D-":{"opcode":"control_forever","next":null,"parent":"aOR","inputs":{"SUBSTACK":[2,"bB"]},"fields":{},"shadow":false,"topLevel":false},"bB":{"opcode":"control_if_else","next":null,"parent":"D-","inputs":{"CONDITION":[2,"k*"],"SUBSTACK":[2,"k+"],"SUBSTACK2":[2,"D."]},"fields":{},"shadow":false,"topLevel":false},"k*":{"opcode":"operator_and","next":null,"parent":"bB","inputs":{"OPERAND1":[2,"aOS"],"OPERAND2":[2,"D/"]},"fields":{},"shadow":false,"topLevel":false},"aOS":{"opcode":"sensing_mousedown","next":null,"parent":"k*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D/":{"opcode":"sensing_touchingobject","next":null,"parent":"k*","inputs":{"TOUCHINGOBJECTMENU":[1,"aOT"]},"fields":{},"shadow":false,"topLevel":false},"aOT":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"D/","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"k+":{"opcode":"sound_play","next":"D:","parent":"bB","inputs":{"SOUND_MENU":[1,"aOU"]},"fields":{},"shadow":false,"topLevel":false},"aOU":{"opcode":"sound_sounds_menu","next":null,"parent":"k+","inputs":{},"fields":{"SOUND_MENU":["Press WDS",null]},"shadow":true,"topLevel":false},"D:":{"opcode":"looks_seteffectto","next":"D;","parent":"k+","inputs":{"VALUE":[1,[4,"-20"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"D;":{"opcode":"looks_setsizeto","next":"k#","parent":"D:","inputs":{"SIZE":[1,[4,"90"]]},"fields":{},"shadow":false,"topLevel":false},"k#":{"opcode":"control_wait_until","next":"D=","parent":"D;","inputs":{"CONDITION":[2,"3["]},"fields":{},"shadow":false,"topLevel":false},"aOD":{"opcode":"sensing_mousedown","next":null,"parent":"3[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D.":{"opcode":"looks_setsizeto","next":"aOV","parent":"bB","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aOV":{"opcode":"looks_seteffectto","next":null,"parent":"D.","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"aOW":{"opcode":"event_whenbroadcastreceived","next":"aOX","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":48,"y":2448},"aOX":{"opcode":"control_delete_this_clone","next":null,"parent":"aOW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aOY":{"opcode":"event_whenbroadcastreceived","next":"D?","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":48,"y":1800},"D?":{"opcode":"looks_hide","next":"D@","parent":"aOY","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D@":{"opcode":"motion_pointindirection","next":"D[","parent":"D?","inputs":{"DIRECTION":[1,[8,"90"]]},"fields":{},"shadow":false,"topLevel":false},"D[":{"opcode":"motion_setrotationstyle","next":"D]","parent":"D@","inputs":{},"fields":{"STYLE":["left-right",null]},"shadow":false,"topLevel":false},"D]":{"opcode":"control_wait","next":"k,","parent":"D[","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"k,":{"opcode":"looks_switchcostumeto","next":"D^","parent":"D]","inputs":{"COSTUME":[1,"aOZ"]},"fields":{},"shadow":false,"topLevel":false},"aOZ":{"opcode":"looks_costume","next":null,"parent":"k,","inputs":{},"fields":{"COSTUME":["200",null]},"shadow":true,"topLevel":false},"D^":{"opcode":"motion_gotoxy","next":"k-","parent":"k,","inputs":{"X":[1,[4,"200"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"k-":{"opcode":"control_create_clone_of","next":"k.","parent":"D^","inputs":{"CLONE_OPTION":[1,"aO0"]},"fields":{},"shadow":false,"topLevel":false},"aO0":{"opcode":"control_create_clone_of_menu","next":null,"parent":"k-","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"k.":{"opcode":"looks_switchcostumeto","next":"D_","parent":"k-","inputs":{"COSTUME":[1,"aO1"]},"fields":{},"shadow":false,"topLevel":false},"aO1":{"opcode":"looks_costume","next":null,"parent":"k.","inputs":{},"fields":{"COSTUME":["-200",null]},"shadow":true,"topLevel":false},"D_":{"opcode":"motion_gotoxy","next":"k/","parent":"k.","inputs":{"X":[1,[4,"-200"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"k/":{"opcode":"control_create_clone_of","next":"aO2","parent":"D_","inputs":{"CLONE_OPTION":[1,"aO3"]},"fields":{},"shadow":false,"topLevel":false},"aO3":{"opcode":"control_create_clone_of_menu","next":null,"parent":"k/","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"aO2":{"opcode":"control_delete_this_clone","next":null,"parent":"k/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aO4":{"opcode":"event_whenbroadcastreceived","next":"aO5","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":355,"y":1900},"aO5":{"opcode":"control_delete_this_clone","next":null,"parent":"aO4","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D!":{"opcode":"operator_subtract","next":null,"parent":"k%","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"D`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D`":{"opcode":"operator_divide","next":null,"parent":"D!","inputs":{"NUM1":[3,"aO6",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aO6":{"opcode":"looks_costumenumbername","next":null,"parent":"D`","inputs":{},"fields":{"NUMBER_NAME":["name",null]},"shadow":false,"topLevel":false},"D,":{"opcode":"looks_show","next":"D{","parent":"D+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D{":{"opcode":"control_repeat","next":null,"parent":"D,","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"aO7"]},"fields":{},"shadow":false,"topLevel":false},"aO7":{"opcode":"looks_changeeffectby","next":null,"parent":"D{","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"D=":{"opcode":"sound_play","next":null,"parent":"k#","inputs":{"SOUND_MENU":[1,"aO8"]},"fields":{},"shadow":false,"topLevel":false},"aO8":{"opcode":"sound_sounds_menu","next":null,"parent":"D=","inputs":{},"fields":{"SOUND_MENU":["Release WDS",null]},"shadow":true,"topLevel":false}},"comments":{"/":{"blockId":"a","x":2404,"y":1489,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},":":{"blockId":"f","x":12130,"y":2200,"width":200,"height":200,"minimized":true,"text":"5"},";":{"blockId":"g","x":12130,"y":2440,"width":200,"height":200,"minimized":true,"text":"6"},"W":{"blockId":"b","x":1656,"y":5827,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"aI":{"blockId":"S","x":12130,"y":808,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"aJ":{"blockId":"T","x":12130,"y":1000,"width":200,"height":200,"minimized":true,"text":"0"},"aK":{"blockId":"U","x":12134,"y":1240,"width":200,"height":200,"minimized":true,"text":"1"},"aL":{"blockId":"V","x":12130,"y":1480,"width":200,"height":200,"minimized":true,"text":"2"},"aM":{"blockId":"2","x":12130,"y":1720,"width":200,"height":200,"minimized":true,"text":"3"},"aN":{"blockId":"3","x":12134,"y":1960,"width":200,"height":200,"minimized":true,"text":"4"},"a9":{"blockId":"O","x":12134,"y":2680,"width":200,"height":200,"minimized":true,"text":"7"},"a!":{"blockId":"P","x":12130,"y":2920,"width":200,"height":200,"minimized":true,"text":"8"},"a#":{"blockId":"be","x":12130,"y":3160,"width":200,"height":200,"minimized":true,"text":"9"},"a%":{"blockId":"a(","x":12134,"y":3400,"width":200,"height":200,"minimized":true,"text":"A"},"aF":{"blockId":"c","x":393,"y":726,"width":200,"height":200,"minimized":false,"text":"0x1260 - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"aG":{"blockId":"d","x":1941,"y":2525,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aH":{"blockId":"X","x":1940,"y":3709,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"eG":{"blockId":"Y","x":1891,"y":4853,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"a+":{"blockId":"Z","x":1861,"y":6066,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"}},"currentCostume":1,"costumes":[{"name":"200","bitmapResolution":1,"dataFormat":"svg","assetId":"3d5a6e502f4702a8015d31a8eb9090e1","md5ext":"3d5a6e502f4702a8015d31a8eb9090e1.svg","rotationCenterX":17.036829203835964,"rotationCenterY":19.901146274402436},{"name":"-200","bitmapResolution":1,"dataFormat":"svg","assetId":"94d087707b37cd1e53b694f40239cd89","md5ext":"94d087707b37cd1e53b694f40239cd89.svg","rotationCenterX":17.036839539277054,"rotationCenterY":19.901140666773188}],"sounds":[{"name":"ping-bing","assetId":"6b1e75f6e47b21c0677b493c4b9e184f","dataFormat":"wav","format":"","rate":48000,"sampleCount":15812,"md5ext":"6b1e75f6e47b21c0677b493c4b9e184f.wav"},{"name":"Slide WDS","assetId":"4ab00ed9fc637a727a779a33a16a5d7b","dataFormat":"wav","format":"","rate":48000,"sampleCount":71749,"md5ext":"4ab00ed9fc637a727a779a33a16a5d7b.wav"},{"name":"Press WDS","assetId":"b55bf6c344c1f5e7e5323eccf819c175","dataFormat":"wav","format":"","rate":48000,"sampleCount":4761,"md5ext":"b55bf6c344c1f5e7e5323eccf819c175.wav"},{"name":"Release WDS","assetId":"e451e63632f213a5e0d001249c3d40f4","dataFormat":"wav","format":"","rate":48000,"sampleCount":6375,"md5ext":"e451e63632f213a5e0d001249c3d40f4.wav"}],"volume":100,"layerOrder":1,"visible":false,"x":-200,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"left-right"},{"isStage":false,"name":"Chip-8","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",744],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",8193],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",23],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",782],"{a[B7#cNJicY#22S6G[g":["chip8.rand",185],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer","0"],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk","0"],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk","0"],"g/7`YLSnP29ZzyQeb?9I":["CPF",60],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",64],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",128],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize","6"],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",3],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",1],"YiRV7D4$v56yf}?X(y.j":["VIP jumps","1"],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix","0"],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",1],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",300],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag","0"],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode","Fast/Sharp"],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",64],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer","1"],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",1],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle","0"],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety","0"],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",8],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",255],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag","0"],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode","0"],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[22,"0","0","0",8,126,4,28,22,8,2,"0","0",0,6,0]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",["0x7C","0xC6","0xCE","0xDE","0xD6","0xF6","0xE6","0xC6","0x7C","0x00","0x10","0x30","0xF0","0x30","0x30","0x30","0x30","0x30","0xFC","0x00","0x78","0xCC","0xCC","0x0C","0x18","0x30","0x60","0xCC","0xFC","0x00","0x78","0xCC","0x0C","0x0C","0x38","0x0C","0x0C","0xCC","0x78","0x00","0x0C","0x1C","0x3C","0x6C","0xCC","0xFE","0x0C","0x0C","0x1E","0x00","0xFC","0xC0","0xC0","0xC0","0xF8","0x0C","0x0C","0xCC","0x78","0x00","0x38","0x60","0xC0","0xC0","0xF8","0xCC","0xCC","0xCC","0x78","0x00","0xFE","0xC6","0xC6","0x06","0x0C","0x18","0x30","0x30","0x30","0x00","0x78","0xCC","0xCC","0xEC","0x78","0xDC","0xCC","0xCC","0x78","0x00","0x7C","0xC6","0xC6","0xC6","0x7E","0x0C","0x18","0x30","0x70","0x00","0x30","0x78","0xCC","0xCC","0xCC","0xFC","0xCC","0xCC","0xCC","0x00","0xFC","0x66","0x66","0x66","0x7C","0x66","0x66","0x66","0xFC","0x00","0x3C","0x66","0xC6","0xC0","0xC0","0xC0","0xC6","0x66","0x3C","0x00","0xF8","0x6C","0x66","0x66","0x66","0x66","0x66","0x6C","0xF8","0x00","0xFE","0x62","0x60","0x64","0x7C","0x64","0x60","0x62","0xFE","0x00","0xFE","0x66","0x62","0x64","0x7C","0x64","0x60","0x60","0xF0","0x00"]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",["00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00"]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",["0x00","0x01","0x63","0x02","0x35","0x00","0x11","0x24","0xF3","0x29","0x21","0x70","0x80","0x40","0x80","0x06","0x80","0x06","0x80","0x06","0x80","0x06","0xF0","0x29","0x21","0x70","0xF4","0x29","0x21","0x70","0xA1","0x76","0x21","0x70","0x75","0xFF","0x21","0x66","0x87","0x80","0x87","0x0E","0x87","0x0E","0x87","0x0E","0x87","0x0E","0x21","0x66","0x88","0x74","0xA0","0x00","0xF4","0x1E","0x80","0x30","0x61","0x80","0xF1","0x1E","0xF1","0x1E","0x70","0xFF","0x30","0x00","0x11","0x3C","0x80","0x80","0xF0","0x55","0x74","0x01","0x44","0x00","0x73","0x01","0x43","0x10","0x12","0x00","0x35","0x27","0x11","0x04","0x65","0x00","0x46","0x18","0x11","0x62","0x76","0x06","0x11","0x04","0x00","0x00","0x11","0x04","0xA1","0x7A","0xD5","0x66","0xF8","0x0A","0xD5","0x66","0xF8","0x29","0xD5","0x65","0x75","0x05","0x00","0xEE","0x00","0x40","0x00","0x40","0x00","0x00","0x00","0x00","0x00","0xF0"]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"2":{"opcode":"data_addtolist","next":"D}","parent":"D|","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aM"},"3":{"opcode":"data_addtolist","next":"Ea","parent":"D~","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aN"},"4":{"opcode":"control_if","next":"5","parent":"k:","inputs":{"CONDITION":[2,"3]"],"SUBSTACK":[2,"pq"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aO9"},"5":{"opcode":"control_if","next":"]","parent":"4","inputs":{"CONDITION":[2,"3^"],"SUBSTACK":[2,"3_"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aO!"},"6":{"opcode":"control_if","next":"pr","parent":"eX","inputs":{"CONDITION":[2,"aO#"],"SUBSTACK":[2,"Ec"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Eb"},"7":{"opcode":"control_if","next":"bC","parent":"l","inputs":{"CONDITION":[2,"Ee"],"SUBSTACK":[2,"ps"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Ed"},"40":{"opcode":"operator_mod","next":null,"parent":"4Z","inputs":{"NUM1":[3,"aO~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"41":{"opcode":"data_itemoflist","next":null,"parent":"pw","inputs":{"INDEX":[3,"42",[7,"0"]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"42":{"opcode":"operator_add","next":null,"parent":"41","inputs":{"NUM1":[3,"Ep",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"43":{"opcode":"operator_multiply","next":null,"parent":"Ep","inputs":{"NUM1":[3,"44",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"44":{"opcode":"data_itemoflist","next":null,"parent":"43","inputs":{"INDEX":[3,"47",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"45":{"opcode":"data_itemoflist","next":null,"parent":"Ep","inputs":{"INDEX":[3,"46",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"46":{"opcode":"operator_add","next":null,"parent":"45","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"49",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"47":{"opcode":"operator_add","next":null,"parent":"44","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"48",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"48":{"opcode":"operator_mod","next":null,"parent":"47","inputs":{"NUM1":[3,"aPa",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"49":{"opcode":"operator_mathop","next":null,"parent":"46","inputs":{"NUM":[3,"9?",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"50":{"opcode":"operator_equals","next":null,"parent":"k[","inputs":{"OPERAND1":[3,"aPu",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"51":{"opcode":"operator_letter_of","next":null,"parent":"pE","inputs":{"LETTER":[3,"Ev",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"52":{"opcode":"operator_mod","next":null,"parent":"Ew","inputs":{"NUM1":[3,"53",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"53":{"opcode":"operator_mathop","next":null,"parent":"52","inputs":{"NUM":[3,"54",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"54":{"opcode":"operator_divide","next":null,"parent":"53","inputs":{"NUM1":[3,"aPv",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"55":{"opcode":"operator_mod","next":null,"parent":"Ev","inputs":{"NUM1":[3,"56",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"56":{"opcode":"operator_mathop","next":null,"parent":"55","inputs":{"NUM":[3,"57",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"57":{"opcode":"operator_divide","next":null,"parent":"56","inputs":{"NUM1":[3,"aPw",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"58":{"opcode":"control_wait","next":"Ex","parent":"k]","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"59":{"opcode":"operator_round","next":null,"parent":"Ey","inputs":{"NUM":[3,"aPx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"60":{"opcode":"operator_add","next":null,"parent":"pK","inputs":{"NUM1":[3,"aP7",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"61":{"opcode":"operator_subtract","next":null,"parent":"bK","inputs":{"NUM1":[1,[4,"65536"]],"NUM2":[3,"aP9",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"62":{"opcode":"data_setvariableto","next":"65","parent":"k`","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"63":{"opcode":"operator_subtract","next":null,"parent":"EN","inputs":{"NUM1":[3,"aP#",[4,"0"]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"64":{"opcode":"operator_add","next":null,"parent":"EP","inputs":{"NUM1":[3,"aP)",[4,"0"]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"65":{"opcode":"control_clear_counter","next":"k{","parent":"62","inputs":{},"fields":{},"shadow":false,"topLevel":false},"66":{"opcode":"control_incr_counter","next":"67","parent":"k{","inputs":{},"fields":{},"shadow":false,"topLevel":false},"67":{"opcode":"data_changevariableby","next":"68","parent":"66","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"68":{"opcode":"data_replaceitemoflist","next":null,"parent":"67","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]],"ITEM":[3,"69",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"69":{"opcode":"operator_add","next":null,"parent":"68","inputs":{"NUM1":[3,"6!",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"70":{"opcode":"data_itemoflist","next":null,"parent":"Sm","inputs":{"INDEX":[3,"71",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"71":{"opcode":"operator_add","next":null,"parent":"70","inputs":{"NUM1":[3,"72",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"72":{"opcode":"data_itemoflist","next":null,"parent":"71","inputs":{"INDEX":[3,"aQq",[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"73":{"opcode":"motion_setx","next":"74","parent":"aQs","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"74":{"opcode":"pen_penDown","next":"pT","parent":"73","inputs":{},"fields":{},"shadow":false,"topLevel":false},"75":{"opcode":"operator_equals","next":null,"parent":"bN","inputs":{"OPERAND1":[3,"aQx",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"76":{"opcode":"operator_equals","next":null,"parent":"pX","inputs":{"OPERAND1":[3,"aQH",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"77":{"opcode":"operator_add","next":null,"parent":"pW","inputs":{"NUM1":[3,"p0",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"78":{"opcode":"operator_equals","next":null,"parent":"p0","inputs":{"OPERAND1":[3,"aQK",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"79":{"opcode":"operator_add","next":null,"parent":"pZ","inputs":{"NUM1":[3,"p2",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"80":{"opcode":"operator_equals","next":null,"parent":"lk","inputs":{"OPERAND1":[3,"aS1",[10,""]],"OPERAND2":[1,[10,"0xFD"]]},"fields":{},"shadow":false,"topLevel":false},"81":{"opcode":"pen_clear","next":"82","parent":"qz","inputs":{},"fields":{},"shadow":false,"topLevel":false},"82":{"opcode":"data_deletealloflist","next":"83","parent":"81","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"83":{"opcode":"data_deletealloflist","next":"84","parent":"82","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"84":{"opcode":"data_deletealloflist","next":"85","parent":"83","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"85":{"opcode":"data_deletealloflist","next":"aS3","parent":"84","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"86":{"opcode":"operator_lt","next":null,"parent":"lm","inputs":{"OPERAND1":[3,"aS6",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"87":{"opcode":"operator_equals","next":null,"parent":"e,","inputs":{"OPERAND1":[3,"aS7",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"88":{"opcode":"data_changevariableby","next":"qA","parent":"e,","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"89":{"opcode":"operator_multiply","next":null,"parent":"qB","inputs":{"NUM1":[3,"aS9",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"90":{"opcode":"operator_add","next":null,"parent":"qS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"92",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"91":{"opcode":"data_itemoflist","next":null,"parent":"qS","inputs":{"INDEX":[3,"93",[7,"0"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"92":{"opcode":"operator_mod","next":null,"parent":"90","inputs":{"NUM1":[3,"aT{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"93":{"opcode":"operator_add","next":null,"parent":"91","inputs":{"NUM1":[3,"Ge",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"94":{"opcode":"operator_multiply","next":null,"parent":"Ge","inputs":{"NUM1":[3,"96",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"95":{"opcode":"data_itemoflist","next":null,"parent":"Ge","inputs":{"INDEX":[3,"99",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"96":{"opcode":"data_itemoflist","next":null,"parent":"94","inputs":{"INDEX":[3,"97",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"97":{"opcode":"operator_add","next":null,"parent":"96","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"98",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"98":{"opcode":"operator_mod","next":null,"parent":"97","inputs":{"NUM1":[3,"aT|",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"99":{"opcode":"operator_add","next":null,"parent":"95","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"3`":{"opcode":"data_addtolist","next":"3|","parent":"3{","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"3|":{"opcode":"data_addtolist","next":"3}","parent":"3`","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"3}":{"opcode":"data_addtolist","next":"3~","parent":"3|","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4a":{"opcode":"data_setvariableto","next":"4c","parent":"4b","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},"4b":{"opcode":"data_setvariableto","next":"4a","parent":"^","inputs":{"VALUE":[1,[10,"Megachip"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"4c":{"opcode":"data_setvariableto","next":"4d","parent":"4a","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"4d":{"opcode":"data_setvariableto","next":"4e","parent":"4c","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"4f":{"opcode":"operator_divide","next":null,"parent":"bD","inputs":{"NUM1":[3,"aO%",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"4g":{"opcode":"procedures_call","next":"k;","parent":"bE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.get_keyboard","argumentids":"[]","warp":"true"}},"4h":{"opcode":"operator_not","next":null,"parent":"Ef","inputs":{"OPERAND":[2,"aO("]},"fields":{},"shadow":false,"topLevel":false},"4i":{"opcode":"data_addtolist","next":"4k","parent":"4j","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4k":{"opcode":"data_addtolist","next":"4l","parent":"4i","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4l":{"opcode":"data_addtolist","next":"4m","parent":"4k","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4m":{"opcode":"data_addtolist","next":"4n","parent":"4l","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4n":{"opcode":"data_addtolist","next":"4o","parent":"4m","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4o":{"opcode":"data_addtolist","next":"4p","parent":"4n","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4p":{"opcode":"data_addtolist","next":"4q","parent":"4o","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4q":{"opcode":"data_addtolist","next":"4r","parent":"4p","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4r":{"opcode":"data_addtolist","next":"4s","parent":"4q","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4s":{"opcode":"data_addtolist","next":"4t","parent":"4r","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4u":{"opcode":"operator_equals","next":null,"parent":"4v","inputs":{"OPERAND1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]],"OPERAND2":[3,"aO)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"4w":{"opcode":"data_addtolist","next":"aO*","parent":"pt","inputs":{"ITEM":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"4x":{"opcode":"operator_multiply","next":null,"parent":"pt","inputs":{"NUM1":[3,"aO+",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4y":{"opcode":"operator_multiply","next":null,"parent":"pu","inputs":{"NUM1":[3,"aO,",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4z":{"opcode":"motion_setx","next":"4A","parent":"Eg","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"4A":{"opcode":"data_setvariableto","next":"k=","parent":"4z","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"4B":{"opcode":"pen_penDown","next":"bD","parent":"k=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"4C":{"opcode":"data_itemoflist","next":null,"parent":"k=","inputs":{"INDEX":[3,"4D",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"4D":{"opcode":"operator_add","next":null,"parent":"4C","inputs":{"NUM1":[3,"aO-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"4E":{"opcode":"pen_penUp","next":"aO.","parent":"bD","inputs":{},"fields":{},"shadow":false,"topLevel":false},"4F":{"opcode":"operator_lt","next":null,"parent":"k?","inputs":{"OPERAND1":[3,"aO/",[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"4G":{"opcode":"operator_mod","next":null,"parent":"Eh","inputs":{"NUM1":[3,"aO:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"4H":{"opcode":"operator_lt","next":null,"parent":"Ei","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"4I",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"4I":{"opcode":"operator_mod","next":null,"parent":"4H","inputs":{"NUM1":[3,"4J",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"4J":{"opcode":"operator_mod","next":null,"parent":"4I","inputs":{"NUM1":[3,"aO;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"4K":{"opcode":"data_changevariableby","next":"aO=","parent":"k@","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"4L":{"opcode":"data_itemoflist","next":null,"parent":"Ej","inputs":{"INDEX":[3,"aO?",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"4M":{"opcode":"data_setvariableto","next":"cD","parent":"Ek","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"4N":{"opcode":"data_setvariableto","next":"pv","parent":"cD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"4O":{"opcode":"data_changevariableby","next":"aO@","parent":"cE","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"4P":{"opcode":"operator_multiply","next":null,"parent":"El","inputs":{"NUM1":[1,[4,"65536"]],"NUM2":[3,"aO[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4Q":{"opcode":"operator_multiply","next":null,"parent":"Em","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"4R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4S":{"opcode":"data_itemoflist","next":null,"parent":"Em","inputs":{"INDEX":[3,"aO]",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4R":{"opcode":"data_itemoflist","next":null,"parent":"4Q","inputs":{"INDEX":[3,"aO^",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4T":{"opcode":"event_broadcast","next":"aO_","parent":"En","inputs":{"BROADCAST_INPUT":[1,[11,"sound.updateMC8buffer","X8}7lXU4UNdr2{s]fs4c"]]},"fields":{},"shadow":false,"topLevel":false},"4U":{"opcode":"operator_multiply","next":null,"parent":"En","inputs":{"NUM1":[1,[4,"120"]],"NUM2":[3,"Eo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4V":{"opcode":"operator_mathop","next":null,"parent":"Eo","inputs":{"NUM":[3,"aO`",[4,"0"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"4W":{"opcode":"operator_equals","next":null,"parent":"bF","inputs":{"OPERAND1":[3,"aO{",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"4X":{"opcode":"data_setvariableto","next":"aO|","parent":"bF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"4Y":{"opcode":"operator_equals","next":null,"parent":"bG","inputs":{"OPERAND1":[3,"aO}",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"4Z":{"opcode":"operator_add","next":null,"parent":"pw","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"40",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4!":{"opcode":"operator_mod","next":null,"parent":"4#","inputs":{"NUM1":[3,"aPb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"4%":{"opcode":"operator_multiply","next":null,"parent":"px","inputs":{"NUM1":[3,"4(",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"4)":{"opcode":"operator_mathop","next":null,"parent":"px","inputs":{"NUM":[3,"4*",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"4(":{"opcode":"data_itemoflist","next":null,"parent":"4%","inputs":{"INDEX":[3,"4+",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4+":{"opcode":"operator_add","next":null,"parent":"4(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"4,",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4,":{"opcode":"operator_mathop","next":null,"parent":"4+","inputs":{"NUM":[3,"4-",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"4-":{"opcode":"operator_divide","next":null,"parent":"4,","inputs":{"NUM1":[3,"aPc",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"4*":{"opcode":"operator_divide","next":null,"parent":"4)","inputs":{"NUM1":[3,"4.",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"4.":{"opcode":"data_itemoflist","next":null,"parent":"4*","inputs":{"INDEX":[3,"4/",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4/":{"opcode":"operator_add","next":null,"parent":"4.","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"4:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4;":{"opcode":"data_deletealloflist","next":"4?","parent":"4=","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"4@":{"opcode":"operator_add","next":null,"parent":"4[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"4]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"4[":{"opcode":"data_itemoflist","next":null,"parent":"py","inputs":{"INDEX":[3,"4@",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4]":{"opcode":"operator_mod","next":null,"parent":"4@","inputs":{"NUM1":[3,"aPd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"4^":{"opcode":"data_hidelist","next":"4`","parent":"4_","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4_":{"opcode":"data_hidelist","next":"4^","parent":"4{","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"4`":{"opcode":"data_deletealloflist","next":"4|","parent":"4^","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"4}":{"opcode":"data_itemoflist","next":null,"parent":"pz","inputs":{"INDEX":[3,"4~",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4~":{"opcode":"operator_add","next":null,"parent":"4}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"5a",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5a":{"opcode":"operator_mod","next":null,"parent":"4~","inputs":{"NUM1":[3,"aPe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5b":{"opcode":"data_addtolist","next":"5c","parent":"U","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5c":{"opcode":"data_addtolist","next":"5d","parent":"5b","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5d":{"opcode":"data_addtolist","next":"Eq","parent":"5c","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5e":{"opcode":"data_addtolist","next":"5f","parent":"Er","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5f":{"opcode":"data_addtolist","next":"D|","parent":"5e","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5g":{"opcode":"data_changevariableby","next":"aPf","parent":"bH","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"5h":{"opcode":"data_setvariableto","next":"pB","parent":"pA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"5i":{"opcode":"operator_gt","next":null,"parent":"pB","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"aPg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"5j":{"opcode":"data_setvariableto","next":null,"parent":"cF","inputs":{"VALUE":[3,"aPh",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"5k":{"opcode":"data_setvariableto","next":"5m","parent":"5l","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"5n":{"opcode":"data_itemoflist","next":null,"parent":"5o","inputs":{"INDEX":[3,"5p",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"5q":{"opcode":"operator_mod","next":null,"parent":"5p","inputs":{"NUM1":[3,"aPi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5o":{"opcode":"operator_multiply","next":null,"parent":"Es","inputs":{"NUM1":[3,"5n",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"5r":{"opcode":"procedures_prototype","next":null,"parent":"5s","inputs":{"SAQ$kmM{QR,tYZNrfC!d":[1,"aPj"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.frame %s","argumentids":"[\"SAQ$kmM{QR,tYZNrfC!d\"]","argumentnames":"[\"cycles\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"5s":{"opcode":"procedures_definition","next":"5t","parent":null,"inputs":{"custom_block":[1,"5r"]},"fields":{},"shadow":false,"topLevel":true,"x":4347,"y":110},"5t":{"opcode":"data_setvariableto","next":"O;","parent":"5s","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"5u":{"opcode":"data_itemoflist","next":null,"parent":"5v","inputs":{"INDEX":[3,"aPk",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5v":{"opcode":"operator_multiply","next":null,"parent":"pC","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"5u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5w":{"opcode":"data_itemoflist","next":null,"parent":"Et","inputs":{"INDEX":[3,"5x",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"5x":{"opcode":"operator_add","next":null,"parent":"5w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"5y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5z":{"opcode":"event_broadcastandwait","next":"5B","parent":"5A","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"5C":{"opcode":"sound_setvolumeto","next":"5D","parent":"5B","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5D":{"opcode":"sound_stopallsounds","next":"5E","parent":"5C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"5E":{"opcode":"data_setvariableto","next":"5F","parent":"5D","inputs":{"VALUE":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"5G":{"opcode":"operator_lt","next":null,"parent":"cG","inputs":{"OPERAND1":[3,"aPl",[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"5H":{"opcode":"operator_lt","next":null,"parent":"O=","inputs":{"OPERAND1":[3,"5I",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"5I":{"opcode":"operator_mod","next":null,"parent":"5H","inputs":{"NUM1":[3,"aPm",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5J":{"opcode":"operator_equals","next":null,"parent":"m","inputs":{"OPERAND1":[3,"5K",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5K":{"opcode":"operator_mod","next":null,"parent":"5J","inputs":{"NUM1":[3,"aPn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5L":{"opcode":"operator_divide","next":null,"parent":"5M","inputs":{"NUM1":[3,"aPo",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5N":{"opcode":"operator_lt","next":null,"parent":"cH","inputs":{"OPERAND1":[3,"aPp",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"5O":{"opcode":"data_addtolist","next":"5Q","parent":"5P","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5P":{"opcode":"data_addtolist","next":"5O","parent":"5R","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5Q":{"opcode":"data_addtolist","next":"3{","parent":"5O","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"3{":{"opcode":"data_addtolist","next":"3`","parent":"5Q","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5S":{"opcode":"operator_equals","next":null,"parent":"pD","inputs":{"OPERAND1":[3,"aPq",[10,""]],"OPERAND2":[1,[10,"A"]]},"fields":{},"shadow":false,"topLevel":false},"5T":{"opcode":"operator_multiply","next":null,"parent":"Eu","inputs":{"NUM1":[3,"5U",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"5U":{"opcode":"data_itemoflist","next":null,"parent":"5T","inputs":{"INDEX":[3,"5V",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5W":{"opcode":"data_itemoflist","next":null,"parent":"Eu","inputs":{"INDEX":[3,"5X",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5X":{"opcode":"operator_add","next":null,"parent":"5W","inputs":{"NUM1":[3,"aPr",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"5V":{"opcode":"operator_add","next":null,"parent":"5U","inputs":{"NUM1":[3,"aPs",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"5Y":{"opcode":"data_replaceitemoflist","next":"aPt","parent":"5Z","inputs":{"INDEX":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[7,"0"]],"ITEM":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aPj":{"opcode":"argument_reporter_string_number","next":null,"parent":"5r","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":true,"topLevel":false},"O;":{"opcode":"control_repeat_until","next":"eY","parent":"5t","inputs":{"CONDITION":[2,"5!"],"SUBSTACK":[2,"5#"]},"fields":{},"shadow":false,"topLevel":false},"5!":{"opcode":"operator_equals","next":null,"parent":"O;","inputs":{"OPERAND1":[3,"aPy",[10,""]],"OPERAND2":[3,[12,"A","~kMyjD5[oxb%25@;,!jb"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aPy":{"opcode":"argument_reporter_string_number","next":null,"parent":"5!","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"5#":{"opcode":"data_changevariableby","next":"pF","parent":"O;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"pF":{"opcode":"procedures_call","next":null,"parent":"5#","inputs":{"Gru`{{yajzXR|i2r[=dY":[3,"5%",[10,""]],"gAh@^I[11@/Q9eU(-Qdz":[3,"5(",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.opcode %s %s","argumentids":"[\"Gru`{{yajzXR|i2r[=dY\",\"gAh@^I[11@/Q9eU(-Qdz\"]","warp":"true"}},"5%":{"opcode":"data_itemoflist","next":null,"parent":"pF","inputs":{"INDEX":[3,"aPz",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aPz":{"opcode":"operator_add","next":null,"parent":"5%","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"5(":{"opcode":"data_itemoflist","next":null,"parent":"pF","inputs":{"INDEX":[3,"aPA",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aPA":{"opcode":"operator_add","next":null,"parent":"5(","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"eY":{"opcode":"control_if_else","next":"Ez","parent":"O;","inputs":{"CONDITION":[2,"aPB"],"SUBSTACK":[2,"EA"],"SUBSTACK2":[2,"5)"]},"fields":{},"shadow":false,"topLevel":false},"aPB":{"opcode":"operator_gt","next":null,"parent":"eY","inputs":{"OPERAND1":[3,[12,"chip8.sound_timer","AYN*TU~SGNlQh:~mri07"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"EA":{"opcode":"data_replaceitemoflist","next":"EB","parent":"eY","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"5*",[10,""]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"5*":{"opcode":"operator_add","next":null,"parent":"EA","inputs":{"NUM1":[3,"5+",[4,"0"]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"5+":{"opcode":"operator_divide","next":null,"parent":"5*","inputs":{"NUM1":[3,"5,",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"5,":{"opcode":"operator_subtract","next":null,"parent":"5+","inputs":{"NUM1":[3,"5-",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"5-":{"opcode":"operator_multiply","next":null,"parent":"5,","inputs":{"NUM1":[3,"5.",[4,"0"]],"NUM2":[1,[4,"120"]]},"fields":{},"shadow":false,"topLevel":false},"5.":{"opcode":"operator_divide","next":null,"parent":"5-","inputs":{"NUM1":[3,"aPC",[4,"0"]],"NUM2":[1,[4,"48"]]},"fields":{},"shadow":false,"topLevel":false},"aPC":{"opcode":"operator_subtract","next":null,"parent":"5.","inputs":{"NUM1":[3,[12,"chip8.pitch","TpKJz2LxQD8g%5l=GF^w"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"EB":{"opcode":"data_setvariableto","next":"k^","parent":"EA","inputs":{"VALUE":[3,"5/",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"5/":{"opcode":"operator_multiply","next":null,"parent":"EB","inputs":{"NUM1":[3,"5:",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"5:":{"opcode":"operator_subtract","next":null,"parent":"5/","inputs":{"NUM1":[3,"aPD",[4,"0"]],"NUM2":[1,[4,"93"]]},"fields":{},"shadow":false,"topLevel":false},"aPD":{"opcode":"data_itemoflist","next":null,"parent":"5:","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"k^":{"opcode":"control_if","next":"aPE","parent":"EB","inputs":{"CONDITION":[2,"aPF"],"SUBSTACK":[2,"5;"]},"fields":{},"shadow":false,"topLevel":false},"aPF":{"opcode":"operator_equals","next":null,"parent":"k^","inputs":{"OPERAND1":[3,[12,"chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"5;":{"opcode":"event_broadcast","next":"aPG","parent":"k^","inputs":{"BROADCAST_INPUT":[1,[11,"sound.updatech8buffer","#z59?3=sivtfq@){KBjG"]]},"fields":{},"shadow":false,"topLevel":false},"aPG":{"opcode":"data_setvariableto","next":null,"parent":"5;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"aPE":{"opcode":"data_changevariableby","next":null,"parent":"k^","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},"5)":{"opcode":"data_replaceitemoflist","next":"aPH","parent":"eY","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"aPH":{"opcode":"data_setvariableto","next":null,"parent":"5)","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"Ez":{"opcode":"control_if","next":null,"parent":"eY","inputs":{"CONDITION":[2,"aPI"],"SUBSTACK":[2,"aPJ"]},"fields":{},"shadow":false,"topLevel":false},"aPI":{"opcode":"operator_gt","next":null,"parent":"Ez","inputs":{"OPERAND1":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPJ":{"opcode":"data_changevariableby","next":null,"parent":"Ez","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},"5=":{"opcode":"procedures_definition","next":"4=","parent":null,"inputs":{"custom_block":[1,"pG"]},"fields":{},"shadow":false,"topLevel":true,"x":2029,"y":795},"pG":{"opcode":"procedures_prototype","next":null,"parent":"5=","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,"aPK"],"x?$mmA.wDn:,20tFR{r?":[1,"aPL"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","argumentnames":"[\"horizontal\",\"vertical\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"aPK":{"opcode":"argument_reporter_string_number","next":null,"parent":"pG","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":true,"topLevel":false},"aPL":{"opcode":"argument_reporter_string_number","next":null,"parent":"pG","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":true,"topLevel":false},"4=":{"opcode":"data_setvariableto","next":"4;","parent":"5=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"4?":{"opcode":"data_deletealloflist","next":"EC","parent":"4;","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"EC":{"opcode":"data_setvariableto","next":"ED","parent":"4?","inputs":{"VALUE":[3,"aPM",[10,""]]},"fields":{"VARIABLE":["chip8.screenheight",",2huTPQKyTdw0uS0Mmql"]},"shadow":false,"topLevel":false},"aPM":{"opcode":"argument_reporter_string_number","next":null,"parent":"EC","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":false,"topLevel":false},"ED":{"opcode":"data_setvariableto","next":"pH","parent":"EC","inputs":{"VALUE":[3,"aPN",[10,""]]},"fields":{"VARIABLE":["chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"]},"shadow":false,"topLevel":false},"aPN":{"opcode":"argument_reporter_string_number","next":null,"parent":"ED","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":false,"topLevel":false},"pH":{"opcode":"control_repeat_until","next":null,"parent":"ED","inputs":{"CONDITION":[2,"EE"],"SUBSTACK":[2,"EF"]},"fields":{},"shadow":false,"topLevel":false},"EE":{"opcode":"operator_equals","next":null,"parent":"pH","inputs":{"OPERAND1":[3,"5?",[10,""]],"OPERAND2":[3,"aPO",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"5?":{"opcode":"operator_subtract","next":null,"parent":"EE","inputs":{"NUM1":[3,"pI",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"pI":{"opcode":"operator_multiply","next":null,"parent":"5?","inputs":{"NUM1":[3,"aPP",[4,"0"]],"NUM2":[3,"aPQ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPP":{"opcode":"argument_reporter_string_number","next":null,"parent":"pI","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":false,"topLevel":false},"aPQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"pI","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":false,"topLevel":false},"aPO":{"opcode":"data_lengthoflist","next":null,"parent":"EE","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"EF":{"opcode":"data_addtolist","next":"aPR","parent":"pH","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aPR":{"opcode":"data_addtolist","next":null,"parent":"EF","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"5@":{"opcode":"procedures_definition","next":"k_","parent":null,"inputs":{"custom_block":[1,"5["]},"fields":{},"shadow":false,"topLevel":true,"x":3168,"y":41374},"5[":{"opcode":"procedures_prototype","next":null,"parent":"5@","inputs":{"xIM*U}brWQXSeCoRBOgN":[1,"aPS"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Fx0A %s","argumentids":"[\"xIM*U}brWQXSeCoRBOgN\"]","argumentnames":"[\"x\"]","argumentdefaults":"[\"\"]","warp":"true"}},"aPS":{"opcode":"argument_reporter_string_number","next":null,"parent":"5[","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"k_":{"opcode":"control_if_else","next":null,"parent":"5@","inputs":{"CONDITION":[2,"aPT"],"SUBSTACK":[2,"EG"],"SUBSTACK2":[2,"EH"]},"fields":{},"shadow":false,"topLevel":false},"aPT":{"opcode":"operator_lt","next":null,"parent":"k_","inputs":{"OPERAND1":[1,[10,"17"]],"OPERAND2":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"EG":{"opcode":"control_if","next":null,"parent":"k_","inputs":{"CONDITION":[2,"5]"],"SUBSTACK":[2,"5^"]},"fields":{},"shadow":false,"topLevel":false},"5]":{"opcode":"operator_equals","next":null,"parent":"EG","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"5_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"5_":{"opcode":"data_itemoflist","next":null,"parent":"5]","inputs":{"INDEX":[3,"5`",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"5`":{"opcode":"operator_add","next":null,"parent":"5_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"5{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5{":{"opcode":"data_itemoflist","next":null,"parent":"5`","inputs":{"INDEX":[3,"aPU",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aPU":{"opcode":"argument_reporter_string_number","next":null,"parent":"5{","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"5^":{"opcode":"data_setvariableto","next":"aPV","parent":"EG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"aPV":{"opcode":"data_changevariableby","next":null,"parent":"5^","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"EH":{"opcode":"control_if","next":null,"parent":"k_","inputs":{"CONDITION":[2,"aPW"],"SUBSTACK":[2,"5|"]},"fields":{},"shadow":false,"topLevel":false},"aPW":{"opcode":"data_listcontainsitem","next":null,"parent":"EH","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"5|":{"opcode":"data_setvariableto","next":"eZ","parent":"EH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"eZ":{"opcode":"control_repeat","next":"aPX","parent":"5|","inputs":{"TIMES":[3,"aPY",[6,"0"]],"SUBSTACK":[2,"bI"]},"fields":{},"shadow":false,"topLevel":false},"aPY":{"opcode":"data_lengthoflist","next":null,"parent":"eZ","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"bI":{"opcode":"control_if","next":"aPZ","parent":"eZ","inputs":{"CONDITION":[2,"5}"],"SUBSTACK":[2,"pJ"]},"fields":{},"shadow":false,"topLevel":false},"5}":{"opcode":"operator_equals","next":null,"parent":"bI","inputs":{"OPERAND1":[3,"aP0",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aP0":{"opcode":"data_itemoflist","next":null,"parent":"5}","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"pJ":{"opcode":"data_replaceitemoflist","next":null,"parent":"bI","inputs":{"INDEX":[3,"aP1",[7,"0"]],"ITEM":[3,"aP2",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aP1":{"opcode":"argument_reporter_string_number","next":null,"parent":"pJ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"aP2":{"opcode":"operator_subtract","next":null,"parent":"pJ","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPZ":{"opcode":"data_changevariableby","next":null,"parent":"bI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aPX":{"opcode":"data_changevariableby","next":null,"parent":"eZ","inputs":{"VALUE":[1,[4,"17"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"5A":{"opcode":"procedures_definition","next":"5z","parent":null,"inputs":{"custom_block":[1,"aP3"]},"fields":{},"shadow":false,"topLevel":true,"x":11835,"y":64},"aP3":{"opcode":"procedures_prototype","next":null,"parent":"5A","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"5B":{"opcode":"sound_cleareffects","next":"5C","parent":"5z","inputs":{},"fields":{},"shadow":false,"topLevel":false},"5F":{"opcode":"data_setvariableto","next":"5~","parent":"5E","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},"5~":{"opcode":"data_showvariable","next":"4{","parent":"5F","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"4{":{"opcode":"data_setvariableto","next":"4_","parent":"5~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},"4|":{"opcode":"data_deletealloflist","next":"6a","parent":"4`","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6a":{"opcode":"data_deletealloflist","next":"S","parent":"4|","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"S":{"opcode":"data_addtolist","next":"6b","parent":"6a","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aI"},"6b":{"opcode":"data_addtolist","next":"6c","parent":"S","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6c":{"opcode":"data_addtolist","next":"6d","parent":"6b","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6d":{"opcode":"data_addtolist","next":"T","parent":"6c","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"T":{"opcode":"data_addtolist","next":"6e","parent":"6d","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aJ"},"6e":{"opcode":"data_addtolist","next":"6f","parent":"T","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6f":{"opcode":"data_addtolist","next":"6g","parent":"6e","inputs":{"ITEM":[1,[10,"0x60"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6g":{"opcode":"data_addtolist","next":"6h","parent":"6f","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6h":{"opcode":"data_addtolist","next":"U","parent":"6g","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"U":{"opcode":"data_addtolist","next":"5b","parent":"6h","inputs":{"ITEM":[1,[10,"0x70"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aK"},"Eq":{"opcode":"data_addtolist","next":"V","parent":"5d","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"V":{"opcode":"data_addtolist","next":"Er","parent":"Eq","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aL"},"Er":{"opcode":"data_addtolist","next":"5e","parent":"V","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"D|":{"opcode":"data_addtolist","next":"2","parent":"5f","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"D}":{"opcode":"data_addtolist","next":"6i","parent":"2","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6i":{"opcode":"data_addtolist","next":"6j","parent":"D}","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6j":{"opcode":"data_addtolist","next":"D~","parent":"6i","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"D~":{"opcode":"data_addtolist","next":"3","parent":"6j","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Ea":{"opcode":"data_addtolist","next":"6k","parent":"3","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6k":{"opcode":"data_addtolist","next":"6l","parent":"Ea","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6l":{"opcode":"data_addtolist","next":"EI","parent":"6k","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"EI":{"opcode":"data_addtolist","next":"f","parent":"6l","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"f":{"opcode":"data_addtolist","next":"EJ","parent":"EI","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":":"},"EJ":{"opcode":"data_addtolist","next":"6m","parent":"f","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6m":{"opcode":"data_addtolist","next":"6n","parent":"EJ","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6n":{"opcode":"data_addtolist","next":"EK","parent":"6m","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"EK":{"opcode":"data_addtolist","next":"g","parent":"6n","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"g":{"opcode":"data_addtolist","next":"EL","parent":"EK","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":";"},"EL":{"opcode":"data_addtolist","next":"6o","parent":"g","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6o":{"opcode":"data_addtolist","next":"6p","parent":"EL","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6p":{"opcode":"data_addtolist","next":"6q","parent":"6o","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6q":{"opcode":"data_addtolist","next":"O","parent":"6p","inputs":{"ITEM":[1,[10,"0x40"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"O":{"opcode":"data_addtolist","next":"6r","parent":"6q","inputs":{"ITEM":[1,[10,"0x40"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a9"},"6r":{"opcode":"data_addtolist","next":"6s","parent":"O","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6s":{"opcode":"data_addtolist","next":"6t","parent":"6r","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6t":{"opcode":"data_addtolist","next":"6u","parent":"6s","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6u":{"opcode":"data_addtolist","next":"P","parent":"6t","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"P":{"opcode":"data_addtolist","next":"6v","parent":"6u","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a!"},"6v":{"opcode":"data_addtolist","next":"6w","parent":"P","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6w":{"opcode":"data_addtolist","next":"6x","parent":"6v","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6x":{"opcode":"data_addtolist","next":"6y","parent":"6w","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6y":{"opcode":"data_addtolist","next":"be","parent":"6x","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"be":{"opcode":"data_addtolist","next":"6z","parent":"6y","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a#"},"6z":{"opcode":"data_addtolist","next":"6A","parent":"be","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6A":{"opcode":"data_addtolist","next":"6B","parent":"6z","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6B":{"opcode":"data_addtolist","next":"6C","parent":"6A","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6C":{"opcode":"data_addtolist","next":"a(","parent":"6B","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a(":{"opcode":"data_addtolist","next":"6D","parent":"6C","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a%"},"6D":{"opcode":"data_addtolist","next":"6E","parent":"a(","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6E":{"opcode":"data_addtolist","next":"5R","parent":"6D","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"5R":{"opcode":"data_addtolist","next":"5P","parent":"6E","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"3~":{"opcode":"data_addtolist","next":"6F","parent":"3}","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6F":{"opcode":"data_addtolist","next":"4j","parent":"3~","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4j":{"opcode":"data_addtolist","next":"4i","parent":"6F","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"4t":{"opcode":"data_addtolist","next":"6G","parent":"4s","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6G":{"opcode":"data_addtolist","next":"6H","parent":"4t","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6H":{"opcode":"data_deletealloflist","next":"6I","parent":"6G","inputs":{},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6I":{"opcode":"data_addtolist","next":"6J","parent":"6H","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6J":{"opcode":"data_addtolist","next":"6K","parent":"6I","inputs":{"ITEM":[1,[10,"0xFFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6K":{"opcode":"data_addtolist","next":"6L","parent":"6J","inputs":{"ITEM":[1,[10,"0xAAAAAA"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6L":{"opcode":"data_addtolist","next":"6M","parent":"6K","inputs":{"ITEM":[1,[10,"0x555555"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6M":{"opcode":"data_addtolist","next":"6N","parent":"6L","inputs":{"ITEM":[1,[10,"0xFF0000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6N":{"opcode":"data_addtolist","next":"6O","parent":"6M","inputs":{"ITEM":[1,[10,"0x00FF00"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6O":{"opcode":"data_addtolist","next":"6P","parent":"6N","inputs":{"ITEM":[1,[10,"0x0000FF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6P":{"opcode":"data_addtolist","next":"6Q","parent":"6O","inputs":{"ITEM":[1,[10,"0xFFFF00"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6Q":{"opcode":"data_addtolist","next":"6R","parent":"6P","inputs":{"ITEM":[1,[10,"0x880000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6R":{"opcode":"data_addtolist","next":"6S","parent":"6Q","inputs":{"ITEM":[1,[10,"0x008800"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6S":{"opcode":"data_addtolist","next":"6T","parent":"6R","inputs":{"ITEM":[1,[10,"0x000088"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6T":{"opcode":"data_addtolist","next":"6U","parent":"6S","inputs":{"ITEM":[1,[10,"0x888800"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6U":{"opcode":"data_addtolist","next":"6V","parent":"6T","inputs":{"ITEM":[1,[10,"0xFF00FF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6V":{"opcode":"data_addtolist","next":"6W","parent":"6U","inputs":{"ITEM":[1,[10,"0x00FFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6W":{"opcode":"data_addtolist","next":"6X","parent":"6V","inputs":{"ITEM":[1,[10,"0x880088"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6X":{"opcode":"data_addtolist","next":"EM","parent":"6W","inputs":{"ITEM":[1,[10,"0x008888"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"EM":{"opcode":"control_repeat","next":"6Y","parent":"6X","inputs":{"TIMES":[1,[6,"240"]],"SUBSTACK":[2,"aP4"]},"fields":{},"shadow":false,"topLevel":false},"aP4":{"opcode":"data_addtolist","next":null,"parent":"EM","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6Y":{"opcode":"data_replaceitemoflist","next":"6Z","parent":"EM","inputs":{"INDEX":[1,[7,"256"]],"ITEM":[1,[10," 0x00FFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"6Z":{"opcode":"data_setvariableto","next":"bJ","parent":"6Y","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"bJ":{"opcode":"control_repeat","next":"bK","parent":"6Z","inputs":{"TIMES":[3,"aP5",[6,"0"]],"SUBSTACK":[2,"pK"]},"fields":{},"shadow":false,"topLevel":false},"aP5":{"opcode":"data_lengthoflist","next":null,"parent":"bJ","inputs":{},"fields":{"LIST":["schip8.font","%F0~QLFTP1H{Enp:A]($"]},"shadow":false,"topLevel":false},"pK":{"opcode":"data_addtolist","next":"aP6","parent":"bJ","inputs":{"ITEM":[3,"60",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aP7":{"opcode":"data_itemoflist","next":null,"parent":"60","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["schip8.font","%F0~QLFTP1H{Enp:A]($"]},"shadow":false,"topLevel":false},"aP6":{"opcode":"data_changevariableby","next":null,"parent":"pK","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"bK":{"opcode":"control_repeat","next":"k`","parent":"bJ","inputs":{"TIMES":[3,"61",[6,"0"]],"SUBSTACK":[2,"aP8"]},"fields":{},"shadow":false,"topLevel":false},"aP9":{"opcode":"data_lengthoflist","next":null,"parent":"61","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aP8":{"opcode":"data_addtolist","next":null,"parent":"bK","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"k`":{"opcode":"control_if","next":"62","parent":"bK","inputs":{"CONDITION":[2,"EN"],"SUBSTACK":[2,"EO"]},"fields":{},"shadow":false,"topLevel":false},"EN":{"opcode":"operator_gt","next":null,"parent":"k`","inputs":{"OPERAND1":[3,"aP!",[10,""]],"OPERAND2":[3,"63",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aP!":{"opcode":"data_lengthoflist","next":null,"parent":"EN","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aP#":{"opcode":"data_lengthoflist","next":null,"parent":"63","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"EO":{"opcode":"control_repeat","next":null,"parent":"k`","inputs":{"TIMES":[3,"EP",[6,"0"]],"SUBSTACK":[2,"aP%"]},"fields":{},"shadow":false,"topLevel":false},"EP":{"opcode":"operator_subtract","next":null,"parent":"EO","inputs":{"NUM1":[3,"64",[4,"0"]],"NUM2":[3,"aP(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP)":{"opcode":"data_lengthoflist","next":null,"parent":"64","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aP(":{"opcode":"data_lengthoflist","next":null,"parent":"EP","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aP%":{"opcode":"data_addtolist","next":null,"parent":"EO","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"k{":{"opcode":"control_repeat","next":"EQ","parent":"65","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"66"]},"fields":{},"shadow":false,"topLevel":false},"6!":{"opcode":"data_itemoflist","next":null,"parent":"69","inputs":{"INDEX":[3,"aP*",[7,"0"]]},"fields":{"LIST":["Boot-128","ii:l6Cz,EQ(zK,4|YH9R"]},"shadow":false,"topLevel":false},"aP*":{"opcode":"control_get_counter","next":null,"parent":"6!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"EQ":{"opcode":"data_setvariableto","next":"ER","parent":"k{","inputs":{"VALUE":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"ER":{"opcode":"control_clear_counter","next":"e0","parent":"EQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"e0":{"opcode":"control_repeat","next":"6#","parent":"ER","inputs":{"TIMES":[3,"aP+",[6,"0"]],"SUBSTACK":[2,"ES"]},"fields":{},"shadow":false,"topLevel":false},"aP+":{"opcode":"data_lengthoflist","next":null,"parent":"e0","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ES":{"opcode":"control_incr_counter","next":"ET","parent":"e0","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ET":{"opcode":"data_changevariableby","next":"6%","parent":"ES","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"6%":{"opcode":"data_replaceitemoflist","next":null,"parent":"ET","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]],"ITEM":[3,"6(",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"6(":{"opcode":"operator_add","next":null,"parent":"6%","inputs":{"NUM1":[3,"EU",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"EU":{"opcode":"data_itemoflist","next":null,"parent":"6(","inputs":{"INDEX":[3,"aP,",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aP,":{"opcode":"control_get_counter","next":null,"parent":"EU","inputs":{},"fields":{},"shadow":false,"topLevel":false},"6#":{"opcode":"data_deletealloflist","next":"pL","parent":"e0","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"pL":{"opcode":"control_repeat","next":"6)","parent":"6#","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"aP-"]},"fields":{},"shadow":false,"topLevel":false},"aP-":{"opcode":"data_addtolist","next":null,"parent":"pL","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"6)":{"opcode":"data_deletealloflist","next":"pM","parent":"pL","inputs":{},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"pM":{"opcode":"control_repeat","next":"6*","parent":"6)","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"aP."]},"fields":{},"shadow":false,"topLevel":false},"aP.":{"opcode":"data_addtolist","next":null,"parent":"pM","inputs":{"ITEM":[1,[10,"00"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"6*":{"opcode":"data_setvariableto","next":"6+","parent":"pM","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"]},"shadow":false,"topLevel":false},"6+":{"opcode":"data_setvariableto","next":"6,","parent":"6*","inputs":{"VALUE":[1,[10,"32"]]},"fields":{"VARIABLE":["chip8.screenheight",",2huTPQKyTdw0uS0Mmql"]},"shadow":false,"topLevel":false},"6,":{"opcode":"data_setvariableto","next":"6-","parent":"6+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"6-":{"opcode":"data_deletealloflist","next":"6.","parent":"6,","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"6.":{"opcode":"data_deletealloflist","next":"6/","parent":"6-","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"6/":{"opcode":"data_setvariableto","next":"k|","parent":"6.","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},"k|":{"opcode":"control_repeat","next":"6:","parent":"6/","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"6;"]},"fields":{},"shadow":false,"topLevel":false},"6;":{"opcode":"data_addtolist","next":"aP/","parent":"k|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aP/":{"opcode":"data_addtolist","next":null,"parent":"6;","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"6:":{"opcode":"data_setvariableto","next":"6=","parent":"k|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"6=":{"opcode":"data_setvariableto","next":"6?","parent":"6:","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["chip8.pitch","TpKJz2LxQD8g%5l=GF^w"]},"shadow":false,"topLevel":false},"6?":{"opcode":"data_setvariableto","next":"6@","parent":"6=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"6@":{"opcode":"data_setvariableto","next":"6[","parent":"6?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.blendmode","JcH|Bk6g8yO74n|tWOIG"]},"shadow":false,"topLevel":false},"6[":{"opcode":"data_setvariableto","next":"6]","parent":"6@","inputs":{"VALUE":[1,[10,"255"]]},"fields":{"VARIABLE":["chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"]},"shadow":false,"topLevel":false},"6]":{"opcode":"data_deletealloflist","next":"6^","parent":"6[","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"6^":{"opcode":"data_setvariableto","next":"pN","parent":"6]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"pN":{"opcode":"control_repeat","next":"6_","parent":"6^","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"6`"]},"fields":{},"shadow":false,"topLevel":false},"6`":{"opcode":"data_addtolist","next":"aP:","parent":"pN","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"aP:":{"opcode":"data_addtolist","next":null,"parent":"6`","inputs":{"ITEM":[1,[10,"255"]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"6_":{"opcode":"data_setvariableto","next":"6{","parent":"pN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"6{":{"opcode":"data_setvariableto","next":"6|","parent":"6_","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"6|":{"opcode":"data_setvariableto","next":"6}","parent":"6{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"6}":{"opcode":"pen_clear","next":"6~","parent":"6|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"6~":{"opcode":"pen_setPenSizeTo","next":"7a","parent":"6}","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"7a":{"opcode":"data_showvariable","next":"7b","parent":"6~","inputs":{},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"7b":{"opcode":"data_showvariable","next":"7c","parent":"7a","inputs":{},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"7c":{"opcode":"data_showvariable","next":"7d","parent":"7b","inputs":{},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"7d":{"opcode":"data_showvariable","next":"7e","parent":"7c","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"7e":{"opcode":"data_showvariable","next":"7f","parent":"7d","inputs":{},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"7f":{"opcode":"data_showvariable","next":"7g","parent":"7e","inputs":{},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"7g":{"opcode":"data_showvariable","next":"aP;","parent":"7f","inputs":{},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"aP;":{"opcode":"sensing_resettimer","next":null,"parent":"7g","inputs":{},"fields":{},"shadow":false,"topLevel":false},"7h":{"opcode":"procedures_definition","next":"7i","parent":null,"inputs":{"custom_block":[1,"aP="]},"fields":{},"shadow":false,"topLevel":true,"x":8618,"y":1976},"aP=":{"opcode":"procedures_prototype","next":null,"parent":"7h","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"7i":{"opcode":"motion_sety","next":"7j","parent":"7h","inputs":{"Y":[1,[4,"173"]]},"fields":{},"shadow":false,"topLevel":false},"7j":{"opcode":"data_setvariableto","next":"bL","parent":"7i","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"bL":{"opcode":"control_if_else","next":"aP?","parent":"7j","inputs":{"CONDITION":[2,"pO"],"SUBSTACK":[2,"7k"],"SUBSTACK2":[2,"EV"]},"fields":{},"shadow":false,"topLevel":false},"pO":{"opcode":"operator_or","next":null,"parent":"bL","inputs":{"OPERAND1":[2,"aP@"],"OPERAND2":[2,"aP["]},"fields":{},"shadow":false,"topLevel":false},"aP@":{"opcode":"operator_equals","next":null,"parent":"pO","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Accurate/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"aP[":{"opcode":"operator_equals","next":null,"parent":"pO","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"7k":{"opcode":"control_repeat","next":null,"parent":"bL","inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"O?"]},"fields":{},"shadow":false,"topLevel":false},"O?":{"opcode":"control_if_else","next":null,"parent":"7k","inputs":{"CONDITION":[2,"7l"],"SUBSTACK":[2,"7m"],"SUBSTACK2":[2,"Sc"]},"fields":{},"shadow":false,"topLevel":false},"7l":{"opcode":"operator_lt","next":null,"parent":"O?","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,"7n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"7n":{"opcode":"operator_add","next":null,"parent":"7l","inputs":{"NUM1":[3,"7o",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"7o":{"opcode":"operator_mathop","next":null,"parent":"7n","inputs":{"NUM":[3,"aP]",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aP]":{"opcode":"operator_divide","next":null,"parent":"7o","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"7m":{"opcode":"data_deletealloflist","next":"7p","parent":"O?","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7p":{"opcode":"control_clear_counter","next":"k}","parent":"7m","inputs":{},"fields":{},"shadow":false,"topLevel":false},"k}":{"opcode":"data_addtolist","next":"pP","parent":"7p","inputs":{"ITEM":[3,"k~",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"k~":{"opcode":"operator_add","next":null,"parent":"k}","inputs":{"NUM1":[3,"aP^",[4,"0"]],"NUM2":[3,"7q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP^":{"opcode":"data_itemoflist","next":null,"parent":"k~","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"7q":{"opcode":"operator_multiply","next":null,"parent":"k~","inputs":{"NUM1":[3,"aP_",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aP_":{"opcode":"data_itemoflist","next":null,"parent":"7q","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"pP":{"opcode":"control_repeat","next":"pu","parent":"k}","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"7r"]},"fields":{},"shadow":false,"topLevel":false},"7r":{"opcode":"data_changevariableby","next":"7s","parent":"pP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"7s":{"opcode":"control_incr_counter","next":"pQ","parent":"7r","inputs":{},"fields":{},"shadow":false,"topLevel":false},"pQ":{"opcode":"data_setvariableto","next":"pR","parent":"7s","inputs":{"VALUE":[3,"pS",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"pS":{"opcode":"operator_add","next":null,"parent":"pQ","inputs":{"NUM1":[3,"aP`",[4,"0"]],"NUM2":[3,"7t",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP`":{"opcode":"data_itemoflist","next":null,"parent":"pS","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"7t":{"opcode":"operator_multiply","next":null,"parent":"pS","inputs":{"NUM1":[3,"aP{",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aP{":{"opcode":"data_itemoflist","next":null,"parent":"7t","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"pR":{"opcode":"control_if","next":null,"parent":"pQ","inputs":{"CONDITION":[2,"4v"],"SUBSTACK":[2,"pt"]},"fields":{},"shadow":false,"topLevel":false},"4v":{"opcode":"operator_not","next":null,"parent":"pR","inputs":{"OPERAND":[2,"4u"]},"fields":{},"shadow":false,"topLevel":false},"aO)":{"opcode":"data_itemoflist","next":null,"parent":"4u","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"pt":{"opcode":"data_addtolist","next":"4w","parent":"pR","inputs":{"ITEM":[3,"4x",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aO+":{"opcode":"control_get_counter","next":null,"parent":"4x","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aO*":{"opcode":"control_clear_counter","next":null,"parent":"4w","inputs":{},"fields":{},"shadow":false,"topLevel":false},"pu":{"opcode":"data_addtolist","next":"Eg","parent":"pP","inputs":{"ITEM":[3,"4y",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aO,":{"opcode":"control_get_counter","next":null,"parent":"4y","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Eg":{"opcode":"control_repeat","next":null,"parent":"pu","inputs":{"TIMES":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[6,"0"]],"SUBSTACK":[2,"4z"]},"fields":{},"shadow":false,"topLevel":false},"k=":{"opcode":"pen_setPenColorToColor","next":"4B","parent":"4A","inputs":{"COLOR":[3,"4C",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aO-":{"opcode":"data_itemoflist","next":null,"parent":"4D","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"bD":{"opcode":"control_repeat","next":"4E","parent":"4B","inputs":{"TIMES":[3,"4f",[6,"0"]],"SUBSTACK":[2,"7u"]},"fields":{},"shadow":false,"topLevel":false},"aO%":{"opcode":"data_lengthoflist","next":null,"parent":"4f","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7u":{"opcode":"data_changevariableby","next":"la","parent":"bD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"la":{"opcode":"motion_changexby","next":"7v","parent":"7u","inputs":{"DX":[3,"aP|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP|":{"opcode":"data_itemoflist","next":null,"parent":"la","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7v":{"opcode":"data_changevariableby","next":"7w","parent":"la","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"7w":{"opcode":"pen_setPenColorToColor","next":null,"parent":"7v","inputs":{"COLOR":[3,"7x",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"7x":{"opcode":"data_itemoflist","next":null,"parent":"7w","inputs":{"INDEX":[3,"7y",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"7y":{"opcode":"operator_add","next":null,"parent":"7x","inputs":{"NUM1":[3,"aP}",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aP}":{"opcode":"data_itemoflist","next":null,"parent":"7y","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aO.":{"opcode":"motion_changeyby","next":null,"parent":"4E","inputs":{"DY":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"Sc":{"opcode":"motion_changeyby","next":"aP~","parent":"O?","inputs":{"DY":[3,"aQa",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQa":{"opcode":"operator_subtract","next":null,"parent":"Sc","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP~":{"opcode":"data_changevariableby","next":null,"parent":"Sc","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"EV":{"opcode":"pen_setPenSizeTo","next":"7z","parent":"bL","inputs":{"SIZE":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"7z":{"opcode":"control_repeat","next":null,"parent":"EV","inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"EW"]},"fields":{},"shadow":false,"topLevel":false},"EW":{"opcode":"control_if_else","next":"7A","parent":"7z","inputs":{"CONDITION":[2,"7B"],"SUBSTACK":[2,"7C"],"SUBSTACK2":[2,"aQb"]},"fields":{},"shadow":false,"topLevel":false},"7B":{"opcode":"operator_lt","next":null,"parent":"EW","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,"7D",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"7D":{"opcode":"operator_add","next":null,"parent":"7B","inputs":{"NUM1":[3,"7E",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"7E":{"opcode":"operator_mathop","next":null,"parent":"7D","inputs":{"NUM":[3,"aQc",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aQc":{"opcode":"operator_divide","next":null,"parent":"7E","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"7C":{"opcode":"data_deletealloflist","next":"7F","parent":"EW","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7F":{"opcode":"control_clear_counter","next":"Sd","parent":"7C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Sd":{"opcode":"data_addtolist","next":"Se","parent":"7F","inputs":{"ITEM":[3,"Sf",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"Sf":{"opcode":"operator_add","next":null,"parent":"Sd","inputs":{"NUM1":[3,"aQd",[4,"0"]],"NUM2":[3,"7G",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQd":{"opcode":"data_itemoflist","next":null,"parent":"Sf","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"7G":{"opcode":"operator_multiply","next":null,"parent":"Sf","inputs":{"NUM1":[3,"aQe",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQe":{"opcode":"data_itemoflist","next":null,"parent":"7G","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"Se":{"opcode":"control_repeat","next":"Sg","parent":"Sd","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"7H"]},"fields":{},"shadow":false,"topLevel":false},"7H":{"opcode":"data_changevariableby","next":"7I","parent":"Se","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"7I":{"opcode":"control_incr_counter","next":"Sh","parent":"7H","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Sh":{"opcode":"data_setvariableto","next":"Si","parent":"7I","inputs":{"VALUE":[3,"Sj",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"Sj":{"opcode":"operator_add","next":null,"parent":"Sh","inputs":{"NUM1":[3,"aQf",[4,"0"]],"NUM2":[3,"7J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQf":{"opcode":"data_itemoflist","next":null,"parent":"Sj","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"7J":{"opcode":"operator_multiply","next":null,"parent":"Sj","inputs":{"NUM1":[3,"aQg",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQg":{"opcode":"data_itemoflist","next":null,"parent":"7J","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"Si":{"opcode":"control_if","next":null,"parent":"Sh","inputs":{"CONDITION":[2,"7K"],"SUBSTACK":[2,"Sk"]},"fields":{},"shadow":false,"topLevel":false},"7K":{"opcode":"operator_not","next":null,"parent":"Si","inputs":{"OPERAND":[2,"7L"]},"fields":{},"shadow":false,"topLevel":false},"7L":{"opcode":"operator_equals","next":null,"parent":"7K","inputs":{"OPERAND1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]],"OPERAND2":[3,"aQh",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aQh":{"opcode":"data_itemoflist","next":null,"parent":"7L","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"Sk":{"opcode":"data_addtolist","next":"7M","parent":"Si","inputs":{"ITEM":[3,"7N",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7N":{"opcode":"operator_multiply","next":null,"parent":"Sk","inputs":{"NUM1":[3,"aQi",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQi":{"opcode":"control_get_counter","next":null,"parent":"7N","inputs":{},"fields":{},"shadow":false,"topLevel":false},"7M":{"opcode":"data_addtolist","next":"aQj","parent":"Sk","inputs":{"ITEM":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aQj":{"opcode":"control_clear_counter","next":null,"parent":"7M","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Sg":{"opcode":"data_addtolist","next":"7O","parent":"Se","inputs":{"ITEM":[3,"7P",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7P":{"opcode":"operator_multiply","next":null,"parent":"Sg","inputs":{"NUM1":[3,"aQk",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQk":{"opcode":"control_get_counter","next":null,"parent":"7P","inputs":{},"fields":{},"shadow":false,"topLevel":false},"7O":{"opcode":"motion_setx","next":"7Q","parent":"Sg","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"7Q":{"opcode":"data_setvariableto","next":"Sl","parent":"7O","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"Sl":{"opcode":"pen_setPenColorToColor","next":"7R","parent":"7Q","inputs":{"COLOR":[3,"7S",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"7S":{"opcode":"data_itemoflist","next":null,"parent":"Sl","inputs":{"INDEX":[3,"7T",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"7T":{"opcode":"operator_add","next":null,"parent":"7S","inputs":{"NUM1":[3,"aQl",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQl":{"opcode":"data_itemoflist","next":null,"parent":"7T","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7R":{"opcode":"pen_penDown","next":"O@","parent":"Sl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"O@":{"opcode":"control_repeat","next":"Sm","parent":"7R","inputs":{"TIMES":[3,"7U",[6,"0"]],"SUBSTACK":[2,"7V"]},"fields":{},"shadow":false,"topLevel":false},"7U":{"opcode":"operator_divide","next":null,"parent":"O@","inputs":{"NUM1":[3,"aQm",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQm":{"opcode":"data_lengthoflist","next":null,"parent":"7U","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7V":{"opcode":"data_changevariableby","next":"Sn","parent":"O@","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"Sn":{"opcode":"motion_changexby","next":"7W","parent":"7V","inputs":{"DX":[3,"aQn",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQn":{"opcode":"data_itemoflist","next":null,"parent":"Sn","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"7W":{"opcode":"data_changevariableby","next":"7X","parent":"Sn","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"7X":{"opcode":"pen_setPenColorToColor","next":null,"parent":"7W","inputs":{"COLOR":[3,"7Y",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"7Y":{"opcode":"data_itemoflist","next":null,"parent":"7X","inputs":{"INDEX":[3,"7Z",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"7Z":{"opcode":"operator_add","next":null,"parent":"7Y","inputs":{"NUM1":[3,"aQo",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQo":{"opcode":"data_itemoflist","next":null,"parent":"7Z","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"Sm":{"opcode":"pen_setPenColorToColor","next":"aQp","parent":"O@","inputs":{"COLOR":[3,"70",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aQq":{"opcode":"operator_subtract","next":null,"parent":"72","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQp":{"opcode":"pen_penUp","next":null,"parent":"Sm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aQb":{"opcode":"data_changevariableby","next":null,"parent":"EW","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"7A":{"opcode":"motion_changeyby","next":null,"parent":"EW","inputs":{"DY":[3,"aQr",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQr":{"opcode":"operator_subtract","next":null,"parent":"7A","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aP?":{"opcode":"data_setvariableto","next":null,"parent":"bL","inputs":{"VALUE":[1,[10,"300"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"aQs":{"opcode":"control_repeat","next":null,"parent":null,"inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"73"]},"fields":{},"shadow":false,"topLevel":true,"x":10556,"y":4522},"pT":{"opcode":"control_repeat","next":"EX","parent":"74","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"bM"]},"fields":{},"shadow":false,"topLevel":false},"bM":{"opcode":"control_if_else","next":"cI","parent":"pT","inputs":{"CONDITION":[2,"pU"],"SUBSTACK":[2,"bN"],"SUBSTACK2":[2,"cJ"]},"fields":{},"shadow":false,"topLevel":false},"pU":{"opcode":"operator_equals","next":null,"parent":"bM","inputs":{"OPERAND1":[3,"aQt",[10,""]],"OPERAND2":[3,"aQu",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aQt":{"opcode":"data_itemoflist","next":null,"parent":"pU","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aQu":{"opcode":"data_itemoflist","next":null,"parent":"pU","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"bN":{"opcode":"control_if_else","next":null,"parent":"bM","inputs":{"CONDITION":[2,"75"],"SUBSTACK":[2,"aQv"],"SUBSTACK2":[2,"aQw"]},"fields":{},"shadow":false,"topLevel":false},"aQx":{"opcode":"data_itemoflist","next":null,"parent":"75","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aQv":{"opcode":"pen_setPenColorToColor","next":null,"parent":"bN","inputs":{"COLOR":[1,[9,"#ffff00"]]},"fields":{},"shadow":false,"topLevel":false},"aQw":{"opcode":"pen_setPenColorToColor","next":null,"parent":"bN","inputs":{"COLOR":[1,[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"cJ":{"opcode":"control_if_else","next":null,"parent":"bM","inputs":{"CONDITION":[2,"EY"],"SUBSTACK":[2,"aQy"],"SUBSTACK2":[2,"aQz"]},"fields":{},"shadow":false,"topLevel":false},"EY":{"opcode":"operator_equals","next":null,"parent":"cJ","inputs":{"OPERAND1":[3,"aQA",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQA":{"opcode":"data_itemoflist","next":null,"parent":"EY","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aQy":{"opcode":"pen_setPenColorToColor","next":null,"parent":"cJ","inputs":{"COLOR":[1,[9,"#00ff00"]]},"fields":{},"shadow":false,"topLevel":false},"aQz":{"opcode":"pen_setPenColorToColor","next":null,"parent":"cJ","inputs":{"COLOR":[1,[9,"#ff0000"]]},"fields":{},"shadow":false,"topLevel":false},"cI":{"opcode":"control_if","next":"aQB","parent":"bM","inputs":{"CONDITION":[2,"EZ"],"SUBSTACK":[2,"So"]},"fields":{},"shadow":false,"topLevel":false},"EZ":{"opcode":"operator_not","next":null,"parent":"cI","inputs":{"OPERAND":[2,"E0"]},"fields":{},"shadow":false,"topLevel":false},"E0":{"opcode":"operator_equals","next":null,"parent":"EZ","inputs":{"OPERAND1":[3,"aQC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQC":{"opcode":"operator_mod","next":null,"parent":"E0","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"So":{"opcode":"motion_changexby","next":null,"parent":"cI","inputs":{"DX":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQB":{"opcode":"data_changevariableby","next":null,"parent":"cI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"EX":{"opcode":"pen_penUp","next":"E1","parent":"pT","inputs":{},"fields":{},"shadow":false,"topLevel":false},"E1":{"opcode":"motion_changeyby","next":null,"parent":"EX","inputs":{"DY":[3,"aQD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aQD":{"opcode":"operator_subtract","next":null,"parent":"E1","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"E2":{"opcode":"procedures_definition","next":"E3","parent":null,"inputs":{"custom_block":[1,"aQE"]},"fields":{},"shadow":false,"topLevel":true,"x":9358,"y":74},"aQE":{"opcode":"procedures_prototype","next":null,"parent":"E2","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.get_keyboard","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"E3":{"opcode":"data_deletealloflist","next":"pV","parent":"E2","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"pV":{"opcode":"data_addtolist","next":"pW","parent":"E3","inputs":{"ITEM":[3,"E4",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"E4":{"opcode":"operator_add","next":null,"parent":"pV","inputs":{"NUM1":[3,"pX",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"pX":{"opcode":"operator_or","next":null,"parent":"E4","inputs":{"OPERAND1":[2,"pY"],"OPERAND2":[2,"76"]},"fields":{},"shadow":false,"topLevel":false},"pY":{"opcode":"sensing_keypressed","next":null,"parent":"pX","inputs":{"KEY_OPTION":[3,"aQF","aQG"]},"fields":{},"shadow":false,"topLevel":false},"aQF":{"opcode":"data_itemoflist","next":null,"parent":"pY","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQG":{"opcode":"sensing_keyoptions","next":null,"parent":"pY","inputs":{},"fields":{"KEY_OPTION":["x",null]},"shadow":true,"topLevel":false},"aQH":{"opcode":"data_itemoflist","next":null,"parent":"76","inputs":{"INDEX":[1,[7,"14"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"pW":{"opcode":"data_addtolist","next":"pZ","parent":"pV","inputs":{"ITEM":[3,"77",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"p0":{"opcode":"operator_or","next":null,"parent":"77","inputs":{"OPERAND1":[2,"E5"],"OPERAND2":[2,"78"]},"fields":{},"shadow":false,"topLevel":false},"E5":{"opcode":"sensing_keypressed","next":null,"parent":"p0","inputs":{"KEY_OPTION":[3,"aQI","aQJ"]},"fields":{},"shadow":false,"topLevel":false},"aQI":{"opcode":"data_itemoflist","next":null,"parent":"E5","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQJ":{"opcode":"sensing_keyoptions","next":null,"parent":"E5","inputs":{},"fields":{"KEY_OPTION":["1",null]},"shadow":true,"topLevel":false},"aQK":{"opcode":"data_itemoflist","next":null,"parent":"78","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"pZ":{"opcode":"data_addtolist","next":"p1","parent":"pW","inputs":{"ITEM":[3,"79",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"p2":{"opcode":"operator_or","next":null,"parent":"79","inputs":{"OPERAND1":[2,"Sp"],"OPERAND2":[2,"7!"]},"fields":{},"shadow":false,"topLevel":false},"Sp":{"opcode":"sensing_keypressed","next":null,"parent":"p2","inputs":{"KEY_OPTION":[3,"aQL","aQM"]},"fields":{},"shadow":false,"topLevel":false},"aQL":{"opcode":"data_itemoflist","next":null,"parent":"Sp","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQM":{"opcode":"sensing_keyoptions","next":null,"parent":"Sp","inputs":{},"fields":{"KEY_OPTION":["2",null]},"shadow":true,"topLevel":false},"7!":{"opcode":"operator_equals","next":null,"parent":"p2","inputs":{"OPERAND1":[3,"aQN",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQN":{"opcode":"data_itemoflist","next":null,"parent":"7!","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p1":{"opcode":"data_addtolist","next":"p3","parent":"pZ","inputs":{"ITEM":[3,"7#",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7#":{"opcode":"operator_add","next":null,"parent":"p1","inputs":{"NUM1":[3,"p4",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p4":{"opcode":"operator_or","next":null,"parent":"7#","inputs":{"OPERAND1":[2,"Sq"],"OPERAND2":[2,"7%"]},"fields":{},"shadow":false,"topLevel":false},"Sq":{"opcode":"sensing_keypressed","next":null,"parent":"p4","inputs":{"KEY_OPTION":[3,"aQO","aQP"]},"fields":{},"shadow":false,"topLevel":false},"aQO":{"opcode":"data_itemoflist","next":null,"parent":"Sq","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQP":{"opcode":"sensing_keyoptions","next":null,"parent":"Sq","inputs":{},"fields":{"KEY_OPTION":["3",null]},"shadow":true,"topLevel":false},"7%":{"opcode":"operator_equals","next":null,"parent":"p4","inputs":{"OPERAND1":[3,"aQQ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQQ":{"opcode":"data_itemoflist","next":null,"parent":"7%","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p3":{"opcode":"data_addtolist","next":"p5","parent":"p1","inputs":{"ITEM":[3,"7(",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7(":{"opcode":"operator_add","next":null,"parent":"p3","inputs":{"NUM1":[3,"p6",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p6":{"opcode":"operator_or","next":null,"parent":"7(","inputs":{"OPERAND1":[2,"Sr"],"OPERAND2":[2,"7)"]},"fields":{},"shadow":false,"topLevel":false},"Sr":{"opcode":"sensing_keypressed","next":null,"parent":"p6","inputs":{"KEY_OPTION":[3,"aQR","aQS"]},"fields":{},"shadow":false,"topLevel":false},"aQR":{"opcode":"data_itemoflist","next":null,"parent":"Sr","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQS":{"opcode":"sensing_keyoptions","next":null,"parent":"Sr","inputs":{},"fields":{"KEY_OPTION":["q",null]},"shadow":true,"topLevel":false},"7)":{"opcode":"operator_equals","next":null,"parent":"p6","inputs":{"OPERAND1":[3,"aQT",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQT":{"opcode":"data_itemoflist","next":null,"parent":"7)","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p5":{"opcode":"data_addtolist","next":"p7","parent":"p3","inputs":{"ITEM":[3,"E6",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"E6":{"opcode":"operator_add","next":null,"parent":"p5","inputs":{"NUM1":[3,"p8",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p8":{"opcode":"operator_or","next":null,"parent":"E6","inputs":{"OPERAND1":[2,"p9"],"OPERAND2":[2,"7*"]},"fields":{},"shadow":false,"topLevel":false},"p9":{"opcode":"sensing_keypressed","next":null,"parent":"p8","inputs":{"KEY_OPTION":[3,"aQU","aQV"]},"fields":{},"shadow":false,"topLevel":false},"aQU":{"opcode":"data_itemoflist","next":null,"parent":"p9","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQV":{"opcode":"sensing_keyoptions","next":null,"parent":"p9","inputs":{},"fields":{"KEY_OPTION":["w",null]},"shadow":true,"topLevel":false},"7*":{"opcode":"operator_equals","next":null,"parent":"p8","inputs":{"OPERAND1":[3,"aQW",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQW":{"opcode":"data_itemoflist","next":null,"parent":"7*","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p7":{"opcode":"data_addtolist","next":"p!","parent":"p5","inputs":{"ITEM":[3,"E7",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"E7":{"opcode":"operator_add","next":null,"parent":"p7","inputs":{"NUM1":[3,"p#",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p#":{"opcode":"operator_or","next":null,"parent":"E7","inputs":{"OPERAND1":[2,"p%"],"OPERAND2":[2,"7+"]},"fields":{},"shadow":false,"topLevel":false},"p%":{"opcode":"sensing_keypressed","next":null,"parent":"p#","inputs":{"KEY_OPTION":[3,"aQX","aQY"]},"fields":{},"shadow":false,"topLevel":false},"aQX":{"opcode":"data_itemoflist","next":null,"parent":"p%","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQY":{"opcode":"sensing_keyoptions","next":null,"parent":"p%","inputs":{},"fields":{"KEY_OPTION":["e",null]},"shadow":true,"topLevel":false},"7+":{"opcode":"operator_equals","next":null,"parent":"p#","inputs":{"OPERAND1":[3,"aQZ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQZ":{"opcode":"data_itemoflist","next":null,"parent":"7+","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p!":{"opcode":"data_addtolist","next":"p(","parent":"p7","inputs":{"ITEM":[3,"E8",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"E8":{"opcode":"operator_add","next":null,"parent":"p!","inputs":{"NUM1":[3,"p)",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p)":{"opcode":"operator_or","next":null,"parent":"E8","inputs":{"OPERAND1":[2,"p*"],"OPERAND2":[2,"7,"]},"fields":{},"shadow":false,"topLevel":false},"p*":{"opcode":"sensing_keypressed","next":null,"parent":"p)","inputs":{"KEY_OPTION":[3,"aQ0","aQ1"]},"fields":{},"shadow":false,"topLevel":false},"aQ0":{"opcode":"data_itemoflist","next":null,"parent":"p*","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ1":{"opcode":"sensing_keyoptions","next":null,"parent":"p*","inputs":{},"fields":{"KEY_OPTION":["a",null]},"shadow":true,"topLevel":false},"7,":{"opcode":"operator_equals","next":null,"parent":"p)","inputs":{"OPERAND1":[3,"aQ2",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ2":{"opcode":"data_itemoflist","next":null,"parent":"7,","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p(":{"opcode":"data_addtolist","next":"p+","parent":"p!","inputs":{"ITEM":[3,"7-",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7-":{"opcode":"operator_add","next":null,"parent":"p(","inputs":{"NUM1":[3,"Ss",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ss":{"opcode":"operator_or","next":null,"parent":"7-","inputs":{"OPERAND1":[2,"E9"],"OPERAND2":[2,"7."]},"fields":{},"shadow":false,"topLevel":false},"E9":{"opcode":"sensing_keypressed","next":null,"parent":"Ss","inputs":{"KEY_OPTION":[3,"aQ3","aQ4"]},"fields":{},"shadow":false,"topLevel":false},"aQ3":{"opcode":"data_itemoflist","next":null,"parent":"E9","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ4":{"opcode":"sensing_keyoptions","next":null,"parent":"E9","inputs":{},"fields":{"KEY_OPTION":["s",null]},"shadow":true,"topLevel":false},"7.":{"opcode":"operator_equals","next":null,"parent":"Ss","inputs":{"OPERAND1":[3,"aQ5",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ5":{"opcode":"data_itemoflist","next":null,"parent":"7.","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p+":{"opcode":"data_addtolist","next":"p,","parent":"p(","inputs":{"ITEM":[3,"7/",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7/":{"opcode":"operator_add","next":null,"parent":"p+","inputs":{"NUM1":[3,"p-",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p-":{"opcode":"operator_or","next":null,"parent":"7/","inputs":{"OPERAND1":[2,"E!"],"OPERAND2":[2,"7:"]},"fields":{},"shadow":false,"topLevel":false},"E!":{"opcode":"sensing_keypressed","next":null,"parent":"p-","inputs":{"KEY_OPTION":[3,"aQ6","aQ7"]},"fields":{},"shadow":false,"topLevel":false},"aQ6":{"opcode":"data_itemoflist","next":null,"parent":"E!","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ7":{"opcode":"sensing_keyoptions","next":null,"parent":"E!","inputs":{},"fields":{"KEY_OPTION":["d",null]},"shadow":true,"topLevel":false},"7:":{"opcode":"operator_equals","next":null,"parent":"p-","inputs":{"OPERAND1":[3,"aQ8",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ8":{"opcode":"data_itemoflist","next":null,"parent":"7:","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p,":{"opcode":"data_addtolist","next":"p.","parent":"p+","inputs":{"ITEM":[3,"7;",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7;":{"opcode":"operator_add","next":null,"parent":"p,","inputs":{"NUM1":[3,"p/",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p/":{"opcode":"operator_or","next":null,"parent":"7;","inputs":{"OPERAND1":[2,"E#"],"OPERAND2":[2,"7="]},"fields":{},"shadow":false,"topLevel":false},"E#":{"opcode":"sensing_keypressed","next":null,"parent":"p/","inputs":{"KEY_OPTION":[3,"aQ9","aQ!"]},"fields":{},"shadow":false,"topLevel":false},"aQ9":{"opcode":"data_itemoflist","next":null,"parent":"E#","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ!":{"opcode":"sensing_keyoptions","next":null,"parent":"E#","inputs":{},"fields":{"KEY_OPTION":["z",null]},"shadow":true,"topLevel":false},"7=":{"opcode":"operator_equals","next":null,"parent":"p/","inputs":{"OPERAND1":[3,"aQ#",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ#":{"opcode":"data_itemoflist","next":null,"parent":"7=","inputs":{"INDEX":[1,[7,"13"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p.":{"opcode":"data_addtolist","next":"p:","parent":"p,","inputs":{"ITEM":[3,"7?",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7?":{"opcode":"operator_add","next":null,"parent":"p.","inputs":{"NUM1":[3,"p;",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p;":{"opcode":"operator_or","next":null,"parent":"7?","inputs":{"OPERAND1":[2,"E%"],"OPERAND2":[2,"7@"]},"fields":{},"shadow":false,"topLevel":false},"E%":{"opcode":"sensing_keypressed","next":null,"parent":"p;","inputs":{"KEY_OPTION":[3,"aQ%","aQ("]},"fields":{},"shadow":false,"topLevel":false},"aQ%":{"opcode":"data_itemoflist","next":null,"parent":"E%","inputs":{"INDEX":[1,[7,"12"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ(":{"opcode":"sensing_keyoptions","next":null,"parent":"E%","inputs":{},"fields":{"KEY_OPTION":["c",null]},"shadow":true,"topLevel":false},"7@":{"opcode":"operator_equals","next":null,"parent":"p;","inputs":{"OPERAND1":[3,"aQ)",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ)":{"opcode":"data_itemoflist","next":null,"parent":"7@","inputs":{"INDEX":[1,[7,"15"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p:":{"opcode":"data_addtolist","next":"p=","parent":"p.","inputs":{"ITEM":[3,"7[",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7[":{"opcode":"operator_add","next":null,"parent":"p:","inputs":{"NUM1":[3,"p?",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p?":{"opcode":"operator_or","next":null,"parent":"7[","inputs":{"OPERAND1":[2,"E("],"OPERAND2":[2,"7]"]},"fields":{},"shadow":false,"topLevel":false},"E(":{"opcode":"sensing_keypressed","next":null,"parent":"p?","inputs":{"KEY_OPTION":[3,"aQ*","aQ+"]},"fields":{},"shadow":false,"topLevel":false},"aQ*":{"opcode":"data_itemoflist","next":null,"parent":"E(","inputs":{"INDEX":[1,[7,"13"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ+":{"opcode":"sensing_keyoptions","next":null,"parent":"E(","inputs":{},"fields":{"KEY_OPTION":["4",null]},"shadow":true,"topLevel":false},"7]":{"opcode":"operator_equals","next":null,"parent":"p?","inputs":{"OPERAND1":[3,"aQ,",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ,":{"opcode":"data_itemoflist","next":null,"parent":"7]","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"p=":{"opcode":"data_addtolist","next":"lb","parent":"p:","inputs":{"ITEM":[3,"7^",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7^":{"opcode":"operator_add","next":null,"parent":"p=","inputs":{"NUM1":[3,"p@",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p@":{"opcode":"operator_or","next":null,"parent":"7^","inputs":{"OPERAND1":[2,"E)"],"OPERAND2":[2,"7_"]},"fields":{},"shadow":false,"topLevel":false},"E)":{"opcode":"sensing_keypressed","next":null,"parent":"p@","inputs":{"KEY_OPTION":[3,"aQ-","aQ."]},"fields":{},"shadow":false,"topLevel":false},"aQ-":{"opcode":"data_itemoflist","next":null,"parent":"E)","inputs":{"INDEX":[1,[7,"14"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ.":{"opcode":"sensing_keyoptions","next":null,"parent":"E)","inputs":{},"fields":{"KEY_OPTION":["r",null]},"shadow":true,"topLevel":false},"7_":{"opcode":"operator_equals","next":null,"parent":"p@","inputs":{"OPERAND1":[3,"aQ/",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ/":{"opcode":"data_itemoflist","next":null,"parent":"7_","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"lb":{"opcode":"data_addtolist","next":"7`","parent":"p=","inputs":{"ITEM":[3,"7{",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7{":{"opcode":"operator_add","next":null,"parent":"lb","inputs":{"NUM1":[3,"lc",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"lc":{"opcode":"operator_or","next":null,"parent":"7{","inputs":{"OPERAND1":[2,"E*"],"OPERAND2":[2,"7|"]},"fields":{},"shadow":false,"topLevel":false},"E*":{"opcode":"sensing_keypressed","next":null,"parent":"lc","inputs":{"KEY_OPTION":[3,"aQ:","aQ;"]},"fields":{},"shadow":false,"topLevel":false},"aQ:":{"opcode":"data_itemoflist","next":null,"parent":"E*","inputs":{"INDEX":[1,[7,"15"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ;":{"opcode":"sensing_keyoptions","next":null,"parent":"E*","inputs":{},"fields":{"KEY_OPTION":["f",null]},"shadow":true,"topLevel":false},"7|":{"opcode":"operator_equals","next":null,"parent":"lc","inputs":{"OPERAND1":[3,"aQ=",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ=":{"opcode":"data_itemoflist","next":null,"parent":"7|","inputs":{"INDEX":[1,[7,"12"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"7`":{"opcode":"data_addtolist","next":null,"parent":"lb","inputs":{"ITEM":[3,"7}",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"7}":{"opcode":"operator_add","next":null,"parent":"7`","inputs":{"NUM1":[3,"k[",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"k[":{"opcode":"operator_or","next":null,"parent":"7}","inputs":{"OPERAND1":[2,"E+"],"OPERAND2":[2,"50"]},"fields":{},"shadow":false,"topLevel":false},"E+":{"opcode":"sensing_keypressed","next":null,"parent":"k[","inputs":{"KEY_OPTION":[3,"aQ?","aQ@"]},"fields":{},"shadow":false,"topLevel":false},"aQ?":{"opcode":"data_itemoflist","next":null,"parent":"E+","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"aQ@":{"opcode":"sensing_keyoptions","next":null,"parent":"E+","inputs":{},"fields":{"KEY_OPTION":["v",null]},"shadow":true,"topLevel":false},"aPu":{"opcode":"data_itemoflist","next":null,"parent":"50","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"E,":{"opcode":"procedures_definition","next":"E-","parent":null,"inputs":{"custom_block":[1,"E."]},"fields":{},"shadow":false,"topLevel":true,"x":4340,"y":1695},"E.":{"opcode":"procedures_prototype","next":null,"parent":"E,","inputs":{"hW9qrsR8.:i`r8E},#u7":[1,"aQ["]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Convert %s to hex","argumentids":"[\"hW9qrsR8.:i`r8E},#u7\"]","argumentnames":"[\"Decimal Number\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"aQ[":{"opcode":"argument_reporter_string_number","next":null,"parent":"E.","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":true,"topLevel":false},"E-":{"opcode":"data_setvariableto","next":null,"parent":"E,","inputs":{"VALUE":[3,"p[",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"p[":{"opcode":"operator_join","next":null,"parent":"E-","inputs":{"STRING1":[3,"p]",[10,""]],"STRING2":[3,"pE",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"p]":{"opcode":"operator_join","next":null,"parent":"p[","inputs":{"STRING1":[3,"E/",[10,""]],"STRING2":[3,"E:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"E/":{"opcode":"operator_letter_of","next":null,"parent":"p]","inputs":{"LETTER":[3,"E;",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"E;":{"opcode":"operator_add","next":null,"parent":"E/","inputs":{"NUM1":[3,"E=",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E=":{"opcode":"operator_mod","next":null,"parent":"E;","inputs":{"NUM1":[3,"aQ]",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aQ]":{"opcode":"argument_reporter_string_number","next":null,"parent":"E=","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"E:":{"opcode":"operator_letter_of","next":null,"parent":"p]","inputs":{"LETTER":[3,"E?",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"E?":{"opcode":"operator_add","next":null,"parent":"E:","inputs":{"NUM1":[3,"E@",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E@":{"opcode":"operator_mod","next":null,"parent":"E?","inputs":{"NUM1":[3,"E[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"E[":{"opcode":"operator_mathop","next":null,"parent":"E@","inputs":{"NUM":[3,"E]",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"E]":{"opcode":"operator_divide","next":null,"parent":"E[","inputs":{"NUM1":[3,"aQ^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aQ^":{"opcode":"argument_reporter_string_number","next":null,"parent":"E]","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"pE":{"opcode":"operator_join","next":null,"parent":"p[","inputs":{"STRING1":[3,"E^",[10,""]],"STRING2":[3,"51",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"E^":{"opcode":"operator_letter_of","next":null,"parent":"pE","inputs":{"LETTER":[3,"Ew",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"Ew":{"opcode":"operator_add","next":null,"parent":"E^","inputs":{"NUM1":[3,"52",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPv":{"opcode":"argument_reporter_string_number","next":null,"parent":"54","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"Ev":{"opcode":"operator_add","next":null,"parent":"51","inputs":{"NUM1":[3,"55",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPw":{"opcode":"argument_reporter_string_number","next":null,"parent":"57","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"aQ_":{"opcode":"event_whenbroadcastreceived","next":"E_","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Chip-8","onPsFYdb^;g,DoWfegZ6"]},"shadow":false,"topLevel":true,"x":-599,"y":248},"E_":{"opcode":"control_stop","next":"E`","parent":"aQ_","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"E`":{"opcode":"procedures_call","next":"E{","parent":"E_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.reset","argumentids":"[]","warp":"true"}},"E{":{"opcode":"event_broadcast","next":"c","parent":"E`","inputs":{"BROADCAST_INPUT":[1,[11,"WAVE-8_drawkeys","Pi~qDSlxleRjJ@ah)D#o"]]},"fields":{},"shadow":false,"topLevel":false},"ld":{"opcode":"control_if","next":null,"parent":null,"inputs":{"CONDITION":[2,"aQ`"],"SUBSTACK":[2,"E|"]},"fields":{},"shadow":false,"topLevel":true,"x":-21,"y":130},"aQ`":{"opcode":"operator_equals","next":null,"parent":"ld","inputs":{"OPERAND1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"OPERAND2":[1,[10,"SpaceFight2091 "]]},"fields":{},"shadow":false,"topLevel":false},"E|":{"opcode":"data_setvariableto","next":"E}","parent":"ld","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"E}":{"opcode":"data_showvariable","next":"aQ{","parent":"E|","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"aQ{":{"opcode":"data_setvariableto","next":null,"parent":"E}","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"c":{"opcode":"control_if","next":"k]","parent":"E{","inputs":{"CONDITION":[2,"p^"],"SUBSTACK":[2,"E~"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aF"},"p^":{"opcode":"operator_and","next":null,"parent":"c","inputs":{"OPERAND1":[2,"Fa"],"OPERAND2":[2,"Fb"]},"fields":{},"shadow":false,"topLevel":false},"Fa":{"opcode":"operator_equals","next":null,"parent":"p^","inputs":{"OPERAND1":[3,"aQ|",[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"aQ|":{"opcode":"data_itemoflist","next":null,"parent":"Fa","inputs":{"INDEX":[1,[7,"513"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Fb":{"opcode":"operator_equals","next":null,"parent":"p^","inputs":{"OPERAND1":[3,"aQ}",[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aQ}":{"opcode":"data_itemoflist","next":null,"parent":"Fb","inputs":{"INDEX":[1,[7,"514"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"E~":{"opcode":"data_setvariableto","next":"Fc","parent":"c","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"Fc":{"opcode":"data_setvariableto","next":"Fd","parent":"E~","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"Fd":{"opcode":"data_setvariableto","next":"aQ~","parent":"Fc","inputs":{"VALUE":[1,[10,"704"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aQ~":{"opcode":"procedures_call","next":null,"parent":"Fd","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"k]":{"opcode":"control_if","next":"58","parent":"c","inputs":{"CONDITION":[2,"aRa"],"SUBSTACK":[2,"St"]},"fields":{},"shadow":false,"topLevel":false},"aRa":{"opcode":"operator_equals","next":null,"parent":"k]","inputs":{"OPERAND1":[3,[12,"chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"St":{"opcode":"event_broadcastandwait","next":null,"parent":"k]","inputs":{"BROADCAST_INPUT":[1,[11,"wave create","1$IbL{2UD4|fdA:ahKxG"]]},"fields":{},"shadow":false,"topLevel":false},"Ex":{"opcode":"control_forever","next":null,"parent":"58","inputs":{"SUBSTACK":[2,"Fe"]},"fields":{},"shadow":false,"topLevel":false},"Fe":{"opcode":"procedures_call","next":"bE","parent":"Ex","inputs":{"SAQ$kmM{QR,tYZNrfC!d":[3,[12,"CPF","g/7`YLSnP29ZzyQeb?9I"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.frame %s","argumentids":"[\"SAQ$kmM{QR,tYZNrfC!d\"]","warp":"true"}},"bE":{"opcode":"control_if","next":"4g","parent":"Fe","inputs":{"CONDITION":[2,"Ef"],"SUBSTACK":[2,"aRb"]},"fields":{},"shadow":false,"topLevel":false},"Ef":{"opcode":"operator_and","next":null,"parent":"bE","inputs":{"OPERAND1":[2,"4h"],"OPERAND2":[2,"pD"]},"fields":{},"shadow":false,"topLevel":false},"aO(":{"opcode":"operator_equals","next":null,"parent":"4h","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"pD":{"opcode":"operator_or","next":null,"parent":"Ef","inputs":{"OPERAND1":[2,"5S"],"OPERAND2":[2,"7~"]},"fields":{},"shadow":false,"topLevel":false},"aPq":{"opcode":"operator_letter_of","next":null,"parent":"5S","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"7~":{"opcode":"operator_not","next":null,"parent":"pD","inputs":{"OPERAND":[2,"aRc"]},"fields":{},"shadow":false,"topLevel":false},"aRc":{"opcode":"operator_equals","next":null,"parent":"7~","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"aRb":{"opcode":"procedures_call","next":null,"parent":"bE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"k;":{"opcode":"control_if","next":"le","parent":"4g","inputs":{"CONDITION":[2,"aRd"],"SUBSTACK":[2,"8a"]},"fields":{},"shadow":false,"topLevel":false},"aRd":{"opcode":"operator_gt","next":null,"parent":"k;","inputs":{"OPERAND1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8a":{"opcode":"procedures_call","next":null,"parent":"k;","inputs":{"xIM*U}brWQXSeCoRBOgN":[3,"aRe",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Fx0A %s","argumentids":"[\"xIM*U}brWQXSeCoRBOgN\"]","warp":"true"}},"aRe":{"opcode":"operator_mod","next":null,"parent":"8a","inputs":{"NUM1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[4,"0"]],"NUM2":[1,[4,"17"]]},"fields":{},"shadow":false,"topLevel":false},"le":{"opcode":"control_if","next":"lf","parent":"k;","inputs":{"CONDITION":[2,"Ff"],"SUBSTACK":[2,"Fg"]},"fields":{},"shadow":false,"topLevel":false},"Ff":{"opcode":"sensing_keypressed","next":null,"parent":"le","inputs":{"KEY_OPTION":[1,"aRf"]},"fields":{},"shadow":false,"topLevel":false},"aRf":{"opcode":"sensing_keyoptions","next":null,"parent":"Ff","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"Fg":{"opcode":"data_showlist","next":"Fh","parent":"le","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"Fh":{"opcode":"data_showlist","next":"lg","parent":"Fg","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"lg":{"opcode":"control_if","next":"p_","parent":"Fh","inputs":{"CONDITION":[2,"8b"],"SUBSTACK":[2,"Su"]},"fields":{},"shadow":false,"topLevel":false},"8b":{"opcode":"operator_not","next":null,"parent":"lg","inputs":{"OPERAND":[2,"aRg"]},"fields":{},"shadow":false,"topLevel":false},"aRg":{"opcode":"operator_equals","next":null,"parent":"8b","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"Su":{"opcode":"procedures_call","next":null,"parent":"lg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"p_":{"opcode":"sensing_askandwait","next":"p`","parent":"lg","inputs":{"QUESTION":[3,"Fi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Fi":{"opcode":"operator_join","next":null,"parent":"p_","inputs":{"STRING1":[1,[10,"Type the number of Cycles Per Frame to run at. (PC: "]],"STRING2":[3,"8c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8c":{"opcode":"operator_join","next":null,"parent":"Fi","inputs":{"STRING1":[3,"8d",[10,""]],"STRING2":[1,[10,")"]]},"fields":{},"shadow":false,"topLevel":false},"8d":{"opcode":"operator_join","next":null,"parent":"8c","inputs":{"STRING1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]],"STRING2":[3,"8e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8e":{"opcode":"operator_join","next":null,"parent":"8d","inputs":{"STRING1":[1,[10," I: "]],"STRING2":[3,"8f",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8f":{"opcode":"operator_join","next":null,"parent":"8e","inputs":{"STRING1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]],"STRING2":[3,"8g",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8g":{"opcode":"operator_join","next":null,"parent":"8f","inputs":{"STRING1":[1,[10," DT: "]],"STRING2":[3,"8h",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8h":{"opcode":"operator_join","next":null,"parent":"8g","inputs":{"STRING1":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]],"STRING2":[3,"Fj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Fj":{"opcode":"operator_join","next":null,"parent":"8h","inputs":{"STRING1":[3,"aRh",[10,""]],"STRING2":[3,"aRi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aRh":{"opcode":"operator_join","next":null,"parent":"Fj","inputs":{"STRING1":[1,[10," ST: "]],"STRING2":[3,[12,"chip8.sound_timer","AYN*TU~SGNlQh:~mri07"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aRi":{"opcode":"operator_join","next":null,"parent":"Fj","inputs":{"STRING1":[1,[10," HPS: "]],"STRING2":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"p`":{"opcode":"data_setvariableto","next":"Fk","parent":"p_","inputs":{"VALUE":[3,"Ey",[10,""]]},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"Ey":{"opcode":"operator_mathop","next":null,"parent":"p`","inputs":{"NUM":[3,"59",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"aPx":{"opcode":"sensing_answer","next":null,"parent":"59","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Fk":{"opcode":"data_hidelist","next":"aRj","parent":"p`","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"aRj":{"opcode":"data_hidelist","next":null,"parent":"Fk","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"lf":{"opcode":"control_if","next":"Fl","parent":"le","inputs":{"CONDITION":[2,"Fm"],"SUBSTACK":[2,"Fn"]},"fields":{},"shadow":false,"topLevel":false},"Fm":{"opcode":"sensing_keypressed","next":null,"parent":"lf","inputs":{"KEY_OPTION":[1,"aRk"]},"fields":{},"shadow":false,"topLevel":false},"aRk":{"opcode":"sensing_keyoptions","next":null,"parent":"Fm","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"Fn":{"opcode":"control_stop","next":"Fo","parent":"lf","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"Fo":{"opcode":"event_broadcast","next":"aRl","parent":"Fn","inputs":{"BROADCAST_INPUT":[1,[11,"Chip-8","onPsFYdb^;g,DoWfegZ6"]]},"fields":{},"shadow":false,"topLevel":false},"aRl":{"opcode":"control_stop","next":null,"parent":"Fo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Fl":{"opcode":"sound_setvolumeto","next":null,"parent":"lf","inputs":{"VOLUME":[3,"aRm",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aRm":{"opcode":"sound_volume","next":null,"parent":"Fl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Fp":{"opcode":"procedures_definition","next":"Fq","parent":null,"inputs":{"custom_block":[1,"p{"]},"fields":{},"shadow":false,"topLevel":true,"x":1310,"y":1333},"p{":{"opcode":"procedures_prototype","next":null,"parent":"Fp","inputs":{"Gru`{{yajzXR|i2r[=dY":[1,"aRn"],"gAh@^I[11@/Q9eU(-Qdz":[1,"aRo"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.opcode %s %s","argumentids":"[\"Gru`{{yajzXR|i2r[=dY\",\"gAh@^I[11@/Q9eU(-Qdz\"]","argumentnames":"[\"op1\",\"op2\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"aRn":{"opcode":"argument_reporter_string_number","next":null,"parent":"p{","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":true,"topLevel":false},"aRo":{"opcode":"argument_reporter_string_number","next":null,"parent":"p{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":true,"topLevel":false},"Fq":{"opcode":"data_changevariableby","next":"a","parent":"Fp","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a":{"opcode":"control_if","next":"e1","parent":"Fq","inputs":{"CONDITION":[2,"p|"],"SUBSTACK":[2,"e2"]},"fields":{},"shadow":false,"topLevel":false,"comment":"/"},"p|":{"opcode":"operator_or","next":null,"parent":"a","inputs":{"OPERAND1":[2,"p}"],"OPERAND2":[2,"p~"]},"fields":{},"shadow":false,"topLevel":false},"p}":{"opcode":"operator_and","next":null,"parent":"p|","inputs":{"OPERAND1":[2,"Fr"],"OPERAND2":[2,"Fs"]},"fields":{},"shadow":false,"topLevel":false},"Fr":{"opcode":"operator_equals","next":null,"parent":"p}","inputs":{"OPERAND1":[3,"aRp",[10,""]],"OPERAND2":[1,[10,"0x00"]]},"fields":{},"shadow":false,"topLevel":false},"aRp":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fr","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Fs":{"opcode":"operator_equals","next":null,"parent":"p}","inputs":{"OPERAND1":[3,"aRq",[10,""]],"OPERAND2":[1,[10,"0xe0"]]},"fields":{},"shadow":false,"topLevel":false},"aRq":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fs","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"p~":{"opcode":"operator_and","next":null,"parent":"p|","inputs":{"OPERAND1":[2,"Ft"],"OPERAND2":[2,"Fu"]},"fields":{},"shadow":false,"topLevel":false},"Ft":{"opcode":"operator_equals","next":null,"parent":"p~","inputs":{"OPERAND1":[3,"aRr",[10,""]],"OPERAND2":[1,[10,"0x02"]]},"fields":{},"shadow":false,"topLevel":false},"aRr":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ft","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Fu":{"opcode":"operator_equals","next":null,"parent":"p~","inputs":{"OPERAND1":[3,"aRs",[10,""]],"OPERAND2":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"aRs":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fu","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e2":{"opcode":"control_if","next":"aRt","parent":"a","inputs":{"CONDITION":[2,"aRu"],"SUBSTACK":[2,"Fv"]},"fields":{},"shadow":false,"topLevel":false},"aRu":{"opcode":"operator_lt","next":null,"parent":"e2","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Fv":{"opcode":"data_setvariableto","next":"lh","parent":"e2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"lh":{"opcode":"control_if","next":"e3","parent":"Fv","inputs":{"CONDITION":[2,"Fw"],"SUBSTACK":[2,"aRv"]},"fields":{},"shadow":false,"topLevel":false},"Fw":{"opcode":"operator_and","next":null,"parent":"lh","inputs":{"OPERAND1":[2,"8i"],"OPERAND2":[2,"aRw"]},"fields":{},"shadow":false,"topLevel":false},"8i":{"opcode":"operator_equals","next":null,"parent":"Fw","inputs":{"OPERAND1":[3,"aRx",[10,""]],"OPERAND2":[1,[10,"0xe0"]]},"fields":{},"shadow":false,"topLevel":false},"aRx":{"opcode":"argument_reporter_string_number","next":null,"parent":"8i","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aRw":{"opcode":"operator_equals","next":null,"parent":"Fw","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"aRv":{"opcode":"procedures_call","next":null,"parent":"lh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"e3":{"opcode":"control_if","next":"qa","parent":"lh","inputs":{"CONDITION":[2,"Fx"],"SUBSTACK":[2,"Fy"]},"fields":{},"shadow":false,"topLevel":false},"Fx":{"opcode":"operator_not","next":null,"parent":"e3","inputs":{"OPERAND":[2,"aRy"]},"fields":{},"shadow":false,"topLevel":false},"aRy":{"opcode":"operator_equals","next":null,"parent":"Fx","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fy":{"opcode":"data_deletealloflist","next":"qb","parent":"e3","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"qb":{"opcode":"control_repeat","next":null,"parent":"Fy","inputs":{"TIMES":[3,"aRz",[6,"0"]],"SUBSTACK":[2,"aRA"]},"fields":{},"shadow":false,"topLevel":false},"aRz":{"opcode":"operator_multiply","next":null,"parent":"qb","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aRA":{"opcode":"data_addtolist","next":null,"parent":"qb","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"qa":{"opcode":"control_if","next":null,"parent":"e3","inputs":{"CONDITION":[2,"aRB"],"SUBSTACK":[2,"Fz"]},"fields":{},"shadow":false,"topLevel":false},"aRB":{"opcode":"operator_lt","next":null,"parent":"qa","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Fz":{"opcode":"data_deletealloflist","next":"qc","parent":"qa","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"qc":{"opcode":"control_repeat","next":null,"parent":"Fz","inputs":{"TIMES":[3,"aRC",[6,"0"]],"SUBSTACK":[2,"aRD"]},"fields":{},"shadow":false,"topLevel":false},"aRC":{"opcode":"operator_multiply","next":null,"parent":"qc","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aRD":{"opcode":"data_addtolist","next":null,"parent":"qc","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aRt":{"opcode":"control_stop","next":null,"parent":"e2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e1":{"opcode":"control_if","next":"cH","parent":"a","inputs":{"CONDITION":[2,"FA"],"SUBSTACK":[2,"d"]},"fields":{},"shadow":false,"topLevel":false},"FA":{"opcode":"operator_equals","next":null,"parent":"e1","inputs":{"OPERAND1":[3,"aRE",[10,""]],"OPERAND2":[1,[10,"0x00"]]},"fields":{},"shadow":false,"topLevel":false},"aRE":{"opcode":"argument_reporter_string_number","next":null,"parent":"FA","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"d":{"opcode":"control_if","next":"X","parent":"e1","inputs":{"CONDITION":[2,"qd"],"SUBSTACK":[2,"e4"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aG"},"qd":{"opcode":"operator_and","next":null,"parent":"d","inputs":{"OPERAND1":[2,"FB"],"OPERAND2":[2,"FC"]},"fields":{},"shadow":false,"topLevel":false},"FB":{"opcode":"operator_lt","next":null,"parent":"qd","inputs":{"OPERAND1":[1,[10,"191"]],"OPERAND2":[3,"aRF",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aRF":{"opcode":"argument_reporter_string_number","next":null,"parent":"FB","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"FC":{"opcode":"operator_lt","next":null,"parent":"qd","inputs":{"OPERAND1":[3,"aRG",[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},"aRG":{"opcode":"argument_reporter_string_number","next":null,"parent":"FC","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e4":{"opcode":"control_if","next":"aRH","parent":"d","inputs":{"CONDITION":[2,"aRI"],"SUBSTACK":[2,"FD"]},"fields":{},"shadow":false,"topLevel":false},"aRI":{"opcode":"operator_lt","next":null,"parent":"e4","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FD":{"opcode":"data_setvariableto","next":"qe","parent":"e4","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"qe":{"opcode":"data_setvariableto","next":"e5","parent":"FD","inputs":{"VALUE":[3,"FE",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"FE":{"opcode":"operator_mod","next":null,"parent":"qe","inputs":{"NUM1":[3,"aRJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aRJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"FE","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e5":{"opcode":"control_if","next":"qf","parent":"qe","inputs":{"CONDITION":[2,"qg"],"SUBSTACK":[2,"e6"]},"fields":{},"shadow":false,"topLevel":false},"qg":{"opcode":"operator_and","next":null,"parent":"e5","inputs":{"OPERAND1":[2,"qh"],"OPERAND2":[2,"aRK"]},"fields":{},"shadow":false,"topLevel":false},"qh":{"opcode":"operator_and","next":null,"parent":"qg","inputs":{"OPERAND1":[2,"aRL"],"OPERAND2":[2,"FF"]},"fields":{},"shadow":false,"topLevel":false},"aRL":{"opcode":"operator_equals","next":null,"parent":"qh","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"FF":{"opcode":"operator_lt","next":null,"parent":"qh","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"FG",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FG":{"opcode":"operator_mod","next":null,"parent":"FF","inputs":{"NUM1":[3,"FH",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FH":{"opcode":"operator_mod","next":null,"parent":"FG","inputs":{"NUM1":[3,"aRM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aRM":{"opcode":"argument_reporter_string_number","next":null,"parent":"FH","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aRK":{"opcode":"operator_equals","next":null,"parent":"qg","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"e6":{"opcode":"control_if_else","next":null,"parent":"e5","inputs":{"CONDITION":[2,"aRN"],"SUBSTACK":[2,"FI"],"SUBSTACK2":[2,"aRO"]},"fields":{},"shadow":false,"topLevel":false},"aRN":{"opcode":"operator_equals","next":null,"parent":"e6","inputs":{"OPERAND1":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"FI":{"opcode":"data_changevariableby","next":"aRP","parent":"e6","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"aRP":{"opcode":"data_setvariableto","next":null,"parent":"FI","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"aRO":{"opcode":"data_setvariableto","next":null,"parent":"e6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"qf":{"opcode":"control_repeat","next":null,"parent":"e5","inputs":{"TIMES":[3,"aRQ",[6,"0"]],"SUBSTACK":[2,"e7"]},"fields":{},"shadow":false,"topLevel":false},"aRQ":{"opcode":"operator_multiply","next":null,"parent":"qf","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"e7":{"opcode":"control_if","next":"qi","parent":"qf","inputs":{"CONDITION":[2,"FJ"],"SUBSTACK":[2,"FK"]},"fields":{},"shadow":false,"topLevel":false},"FJ":{"opcode":"operator_not","next":null,"parent":"e7","inputs":{"OPERAND":[2,"aRR"]},"fields":{},"shadow":false,"topLevel":false},"aRR":{"opcode":"operator_equals","next":null,"parent":"FJ","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FK":{"opcode":"data_insertatlist","next":"aRS","parent":"e7","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aRS":{"opcode":"data_deleteoflist","next":null,"parent":"FK","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"qi":{"opcode":"control_if","next":null,"parent":"e7","inputs":{"CONDITION":[2,"aRT"],"SUBSTACK":[2,"FL"]},"fields":{},"shadow":false,"topLevel":false},"aRT":{"opcode":"operator_lt","next":null,"parent":"qi","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FL":{"opcode":"data_insertatlist","next":"aRU","parent":"qi","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aRU":{"opcode":"data_deleteoflist","next":null,"parent":"FL","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aRH":{"opcode":"control_stop","next":null,"parent":"e4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X":{"opcode":"control_if","next":"Y","parent":"d","inputs":{"CONDITION":[2,"k?"],"SUBSTACK":[2,"e8"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aH"},"k?":{"opcode":"operator_and","next":null,"parent":"X","inputs":{"OPERAND1":[2,"8j"],"OPERAND2":[2,"4F"]},"fields":{},"shadow":false,"topLevel":false},"8j":{"opcode":"operator_lt","next":null,"parent":"k?","inputs":{"OPERAND1":[1,[10,"174"]],"OPERAND2":[3,"aRV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aRV":{"opcode":"argument_reporter_string_number","next":null,"parent":"8j","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aO/":{"opcode":"argument_reporter_string_number","next":null,"parent":"4F","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e8":{"opcode":"control_if","next":"aRW","parent":"X","inputs":{"CONDITION":[2,"aRX"],"SUBSTACK":[2,"FM"]},"fields":{},"shadow":false,"topLevel":false},"aRX":{"opcode":"operator_lt","next":null,"parent":"e8","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FM":{"opcode":"data_setvariableto","next":"Eh","parent":"e8","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"Eh":{"opcode":"data_setvariableto","next":"li","parent":"FM","inputs":{"VALUE":[3,"4G",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"aO:":{"opcode":"argument_reporter_string_number","next":null,"parent":"4G","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"li":{"opcode":"control_if","next":"qj","parent":"Eh","inputs":{"CONDITION":[2,"FN"],"SUBSTACK":[2,"k@"]},"fields":{},"shadow":false,"topLevel":false},"FN":{"opcode":"operator_and","next":null,"parent":"li","inputs":{"OPERAND1":[2,"Ei"],"OPERAND2":[2,"aRY"]},"fields":{},"shadow":false,"topLevel":false},"Ei":{"opcode":"operator_and","next":null,"parent":"FN","inputs":{"OPERAND1":[2,"aRZ"],"OPERAND2":[2,"4H"]},"fields":{},"shadow":false,"topLevel":false},"aRZ":{"opcode":"operator_equals","next":null,"parent":"Ei","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aO;":{"opcode":"argument_reporter_string_number","next":null,"parent":"4J","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aRY":{"opcode":"operator_equals","next":null,"parent":"FN","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"k@":{"opcode":"control_if_else","next":null,"parent":"li","inputs":{"CONDITION":[2,"aR0"],"SUBSTACK":[2,"4K"],"SUBSTACK2":[2,"aR1"]},"fields":{},"shadow":false,"topLevel":false},"aR0":{"opcode":"operator_equals","next":null,"parent":"k@","inputs":{"OPERAND1":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO=":{"opcode":"data_setvariableto","next":null,"parent":"4K","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"aR1":{"opcode":"data_setvariableto","next":null,"parent":"k@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"qj":{"opcode":"control_repeat","next":null,"parent":"li","inputs":{"TIMES":[3,"Sv",[6,"0"]],"SUBSTACK":[2,"e9"]},"fields":{},"shadow":false,"topLevel":false},"Sv":{"opcode":"operator_multiply","next":null,"parent":"qj","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"e9":{"opcode":"control_if","next":"qk","parent":"qj","inputs":{"CONDITION":[2,"FO"],"SUBSTACK":[2,"FP"]},"fields":{},"shadow":false,"topLevel":false},"FO":{"opcode":"operator_not","next":null,"parent":"e9","inputs":{"OPERAND":[2,"aR2"]},"fields":{},"shadow":false,"topLevel":false},"aR2":{"opcode":"operator_equals","next":null,"parent":"FO","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FP":{"opcode":"data_insertatlist","next":"aR3","parent":"e9","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aR3":{"opcode":"data_deleteoflist","next":null,"parent":"FP","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"qk":{"opcode":"control_if","next":null,"parent":"e9","inputs":{"CONDITION":[2,"aR4"],"SUBSTACK":[2,"FQ"]},"fields":{},"shadow":false,"topLevel":false},"aR4":{"opcode":"operator_lt","next":null,"parent":"qk","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FQ":{"opcode":"data_insertatlist","next":"aR5","parent":"qk","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aR5":{"opcode":"data_deleteoflist","next":null,"parent":"FQ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aRW":{"opcode":"control_stop","next":null,"parent":"e8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y":{"opcode":"control_if","next":"b","parent":"X","inputs":{"CONDITION":[2,"FR"],"SUBSTACK":[2,"FS"]},"fields":{},"shadow":false,"topLevel":false,"comment":"eG"},"FR":{"opcode":"operator_equals","next":null,"parent":"Y","inputs":{"OPERAND1":[3,"aR6",[10,""]],"OPERAND2":[1,[10,"0xE1"]]},"fields":{},"shadow":false,"topLevel":false},"aR6":{"opcode":"argument_reporter_string_number","next":null,"parent":"FR","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"FS":{"opcode":"data_setvariableto","next":"e!","parent":"Y","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"e!":{"opcode":"control_if","next":"aR7","parent":"FS","inputs":{"CONDITION":[2,"aR8"],"SUBSTACK":[2,"FT"]},"fields":{},"shadow":false,"topLevel":false},"aR8":{"opcode":"operator_lt","next":null,"parent":"e!","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"FT":{"opcode":"data_setvariableto","next":"e#","parent":"e!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"e#":{"opcode":"control_if","next":"FU","parent":"FT","inputs":{"CONDITION":[2,"FV"],"SUBSTACK":[2,"ql"]},"fields":{},"shadow":false,"topLevel":false},"FV":{"opcode":"operator_not","next":null,"parent":"e#","inputs":{"OPERAND":[2,"aR9"]},"fields":{},"shadow":false,"topLevel":false},"aR9":{"opcode":"operator_equals","next":null,"parent":"FV","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ql":{"opcode":"control_repeat","next":null,"parent":"e#","inputs":{"TIMES":[3,"aR!",[6,"0"]],"SUBSTACK":[2,"FW"]},"fields":{},"shadow":false,"topLevel":false},"aR!":{"opcode":"operator_multiply","next":null,"parent":"ql","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"FW":{"opcode":"data_changevariableby","next":"FX","parent":"ql","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"FX":{"opcode":"data_replaceitemoflist","next":null,"parent":"FW","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"FY",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"FY":{"opcode":"operator_mod","next":null,"parent":"FX","inputs":{"NUM1":[3,"FZ",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FZ":{"opcode":"operator_add","next":null,"parent":"FY","inputs":{"NUM1":[3,"aR#",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aR#":{"opcode":"data_itemoflist","next":null,"parent":"FZ","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"FU":{"opcode":"data_setvariableto","next":"qm","parent":"e#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"qm":{"opcode":"control_if","next":null,"parent":"FU","inputs":{"CONDITION":[2,"aR%"],"SUBSTACK":[2,"qn"]},"fields":{},"shadow":false,"topLevel":false},"aR%":{"opcode":"operator_lt","next":null,"parent":"qm","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"qn":{"opcode":"control_repeat","next":null,"parent":"qm","inputs":{"TIMES":[3,"aR(",[6,"0"]],"SUBSTACK":[2,"F0"]},"fields":{},"shadow":false,"topLevel":false},"aR(":{"opcode":"operator_multiply","next":null,"parent":"qn","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"F0":{"opcode":"data_changevariableby","next":"F1","parent":"qn","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"F1":{"opcode":"data_replaceitemoflist","next":null,"parent":"F0","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"F2",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"F2":{"opcode":"operator_mod","next":null,"parent":"F1","inputs":{"NUM1":[3,"F3",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"F3":{"opcode":"operator_add","next":null,"parent":"F2","inputs":{"NUM1":[3,"aR)",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aR)":{"opcode":"data_itemoflist","next":null,"parent":"F3","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aR7":{"opcode":"control_stop","next":null,"parent":"e!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b":{"opcode":"control_if","next":"Z","parent":"Y","inputs":{"CONDITION":[2,"F4"],"SUBSTACK":[2,"qo"]},"fields":{},"shadow":false,"topLevel":false,"comment":"W"},"F4":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,"aR*",[10,""]],"OPERAND2":[1,[10,"0xEE"]]},"fields":{},"shadow":false,"topLevel":false},"aR*":{"opcode":"argument_reporter_string_number","next":null,"parent":"F4","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qo":{"opcode":"data_setvariableto","next":"F5","parent":"b","inputs":{"VALUE":[3,"aR+",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aR+":{"opcode":"data_itemoflist","next":null,"parent":"qo","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"F5":{"opcode":"data_deleteoflist","next":"aR,","parent":"qo","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"aR,":{"opcode":"control_stop","next":null,"parent":"F5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Z":{"opcode":"control_if","next":"e","parent":"b","inputs":{"CONDITION":[2,"F6"],"SUBSTACK":[2,"e%"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a+"},"F6":{"opcode":"operator_equals","next":null,"parent":"Z","inputs":{"OPERAND1":[3,"aR-",[10,""]],"OPERAND2":[1,[10,"0xFB"]]},"fields":{},"shadow":false,"topLevel":false},"aR-":{"opcode":"argument_reporter_string_number","next":null,"parent":"F6","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e%":{"opcode":"control_if","next":"aR.","parent":"Z","inputs":{"CONDITION":[2,"aR/"],"SUBSTACK":[2,"F7"]},"fields":{},"shadow":false,"topLevel":false},"aR/":{"opcode":"operator_lt","next":null,"parent":"e%","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"F7":{"opcode":"data_setvariableto","next":"bO","parent":"e%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"bO":{"opcode":"control_if_else","next":"e(","parent":"F7","inputs":{"CONDITION":[2,"aR:"],"SUBSTACK":[2,"F8"],"SUBSTACK2":[2,"aR;"]},"fields":{},"shadow":false,"topLevel":false},"aR:":{"opcode":"operator_equals","next":null,"parent":"bO","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"F8":{"opcode":"data_setvariableto","next":null,"parent":"bO","inputs":{"VALUE":[3,"aR=",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aR=":{"opcode":"operator_divide","next":null,"parent":"F8","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aR;":{"opcode":"data_setvariableto","next":null,"parent":"bO","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"e(":{"opcode":"control_if","next":"qp","parent":"bO","inputs":{"CONDITION":[2,"F9"],"SUBSTACK":[2,"F!"]},"fields":{},"shadow":false,"topLevel":false},"F9":{"opcode":"operator_not","next":null,"parent":"e(","inputs":{"OPERAND":[2,"aR?"]},"fields":{},"shadow":false,"topLevel":false},"aR?":{"opcode":"operator_equals","next":null,"parent":"F9","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"F!":{"opcode":"data_setvariableto","next":"e)","parent":"e(","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"e)":{"opcode":"control_repeat_until","next":"aR@","parent":"F!","inputs":{"CONDITION":[2,"F#"],"SUBSTACK":[2,"F%"]},"fields":{},"shadow":false,"topLevel":false},"F#":{"opcode":"operator_gt","next":null,"parent":"e)","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"aR[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aR[":{"opcode":"operator_multiply","next":null,"parent":"F#","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"F%":{"opcode":"data_setvariableto","next":"F(","parent":"e)","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"F(":{"opcode":"data_setvariableto","next":"e*","parent":"F%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"e*":{"opcode":"control_repeat","next":"Ek","parent":"F(","inputs":{"TIMES":[3,"aR]",[6,"0"]],"SUBSTACK":[2,"qq"]},"fields":{},"shadow":false,"topLevel":false},"aR]":{"opcode":"operator_subtract","next":null,"parent":"e*","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qq":{"opcode":"data_setvariableto","next":"aR^","parent":"e*","inputs":{"VALUE":[3,"Ej",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"Ej":{"opcode":"operator_join","next":null,"parent":"qq","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"4L",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aO?":{"opcode":"operator_add","next":null,"parent":"4L","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aR^":{"opcode":"data_changevariableby","next":null,"parent":"qq","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"Ek":{"opcode":"data_setvariableto","next":"4M","parent":"e*","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"cD":{"opcode":"control_repeat","next":"4N","parent":"4M","inputs":{"TIMES":[3,"aR_",[6,"0"]],"SUBSTACK":[2,"cE"]},"fields":{},"shadow":false,"topLevel":false},"aR_":{"opcode":"operator_length","next":null,"parent":"cD","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cE":{"opcode":"data_replaceitemoflist","next":"4O","parent":"cD","inputs":{"INDEX":[3,"aR`",[7,"0"]],"ITEM":[3,"aR{",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aR`":{"opcode":"operator_add","next":null,"parent":"cE","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aR{":{"opcode":"operator_letter_of","next":null,"parent":"cE","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aO@":{"opcode":"data_changevariableby","next":null,"parent":"4O","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"pv":{"opcode":"control_repeat","next":"aR|","parent":"4N","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"qr"]},"fields":{},"shadow":false,"topLevel":false},"qr":{"opcode":"data_replaceitemoflist","next":"aR}","parent":"pv","inputs":{"INDEX":[3,"aR~",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aR~":{"opcode":"operator_add","next":null,"parent":"qr","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aR}":{"opcode":"data_changevariableby","next":null,"parent":"qr","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aR|":{"opcode":"data_changevariableby","next":null,"parent":"pv","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aR@":{"opcode":"data_setvariableto","next":null,"parent":"e)","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"qp":{"opcode":"control_if","next":null,"parent":"e(","inputs":{"CONDITION":[2,"aSa"],"SUBSTACK":[2,"8k"]},"fields":{},"shadow":false,"topLevel":false},"aSa":{"opcode":"operator_lt","next":null,"parent":"qp","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8k":{"opcode":"data_setvariableto","next":"cK","parent":"qp","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"cK":{"opcode":"control_repeat_until","next":"aSb","parent":"8k","inputs":{"CONDITION":[2,"8l"],"SUBSTACK":[2,"8m"]},"fields":{},"shadow":false,"topLevel":false},"8l":{"opcode":"operator_gt","next":null,"parent":"cK","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"aSc",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aSc":{"opcode":"operator_multiply","next":null,"parent":"8l","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8m":{"opcode":"data_setvariableto","next":"8n","parent":"cK","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8n":{"opcode":"data_setvariableto","next":"cL","parent":"8m","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"cL":{"opcode":"control_repeat","next":"8o","parent":"8n","inputs":{"TIMES":[3,"aSd",[6,"0"]],"SUBSTACK":[2,"qs"]},"fields":{},"shadow":false,"topLevel":false},"aSd":{"opcode":"operator_subtract","next":null,"parent":"cL","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qs":{"opcode":"data_setvariableto","next":"aSe","parent":"cL","inputs":{"VALUE":[3,"8p",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8p":{"opcode":"operator_join","next":null,"parent":"qs","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"8q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8q":{"opcode":"data_itemoflist","next":null,"parent":"8p","inputs":{"INDEX":[3,"aSf",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aSf":{"opcode":"operator_add","next":null,"parent":"8q","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSe":{"opcode":"data_changevariableby","next":null,"parent":"qs","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"8o":{"opcode":"data_setvariableto","next":"8r","parent":"cL","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"8r":{"opcode":"data_setvariableto","next":"e+","parent":"8o","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"e+":{"opcode":"control_repeat","next":"8s","parent":"8r","inputs":{"TIMES":[3,"aSg",[6,"0"]],"SUBSTACK":[2,"bP"]},"fields":{},"shadow":false,"topLevel":false},"aSg":{"opcode":"operator_length","next":null,"parent":"e+","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bP":{"opcode":"data_replaceitemoflist","next":"8t","parent":"e+","inputs":{"INDEX":[3,"aSh",[7,"0"]],"ITEM":[3,"aSi",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aSh":{"opcode":"operator_add","next":null,"parent":"bP","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSi":{"opcode":"operator_letter_of","next":null,"parent":"bP","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8t":{"opcode":"data_changevariableby","next":"aSj","parent":"bP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aSj":{"opcode":"data_changevariableby","next":null,"parent":"8t","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"8s":{"opcode":"data_setvariableto","next":"qt","parent":"e+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"qt":{"opcode":"control_repeat","next":"aSk","parent":"8s","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"qu"]},"fields":{},"shadow":false,"topLevel":false},"qu":{"opcode":"data_replaceitemoflist","next":"aSl","parent":"qt","inputs":{"INDEX":[3,"aSm",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aSm":{"opcode":"operator_add","next":null,"parent":"qu","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSl":{"opcode":"data_changevariableby","next":null,"parent":"qu","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aSk":{"opcode":"data_changevariableby","next":null,"parent":"qt","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aSb":{"opcode":"data_setvariableto","next":null,"parent":"cK","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"aR.":{"opcode":"control_stop","next":null,"parent":"e%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e":{"opcode":"control_if","next":"h","parent":"Z","inputs":{"CONDITION":[2,"8u"],"SUBSTACK":[2,"bQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bf"},"8u":{"opcode":"operator_equals","next":null,"parent":"e","inputs":{"OPERAND1":[3,"aSn",[10,""]],"OPERAND2":[1,[10,"0xFC"]]},"fields":{},"shadow":false,"topLevel":false},"aSn":{"opcode":"argument_reporter_string_number","next":null,"parent":"8u","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"bQ":{"opcode":"control_if","next":"aSo","parent":"e","inputs":{"CONDITION":[2,"aSp"],"SUBSTACK":[2,"8v"]},"fields":{},"shadow":false,"topLevel":false},"aSp":{"opcode":"operator_lt","next":null,"parent":"bQ","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8v":{"opcode":"data_setvariableto","next":"bR","parent":"bQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"bR":{"opcode":"control_if_else","next":"bS","parent":"8v","inputs":{"CONDITION":[2,"aSq"],"SUBSTACK":[2,"8w"],"SUBSTACK2":[2,"aSr"]},"fields":{},"shadow":false,"topLevel":false},"aSq":{"opcode":"operator_equals","next":null,"parent":"bR","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"8w":{"opcode":"data_setvariableto","next":null,"parent":"bR","inputs":{"VALUE":[3,"aSs",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aSs":{"opcode":"operator_divide","next":null,"parent":"8w","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aSr":{"opcode":"data_setvariableto","next":null,"parent":"bR","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"bS":{"opcode":"control_if","next":"pA","parent":"bR","inputs":{"CONDITION":[2,"8x"],"SUBSTACK":[2,"8y"]},"fields":{},"shadow":false,"topLevel":false},"8x":{"opcode":"operator_not","next":null,"parent":"bS","inputs":{"OPERAND":[2,"aSt"]},"fields":{},"shadow":false,"topLevel":false},"aSt":{"opcode":"operator_equals","next":null,"parent":"8x","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"8y":{"opcode":"data_setvariableto","next":"lj","parent":"bS","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"lj":{"opcode":"control_repeat_until","next":null,"parent":"8y","inputs":{"CONDITION":[2,"8z"],"SUBSTACK":[2,"8A"]},"fields":{},"shadow":false,"topLevel":false},"8z":{"opcode":"operator_gt","next":null,"parent":"lj","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"aSu",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aSu":{"opcode":"operator_multiply","next":null,"parent":"8z","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8A":{"opcode":"data_setvariableto","next":"8B","parent":"lj","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8B":{"opcode":"data_setvariableto","next":"bT","parent":"8A","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"bT":{"opcode":"control_repeat","next":"bU","parent":"8B","inputs":{"TIMES":[3,"aSv",[6,"0"]],"SUBSTACK":[2,"qv"]},"fields":{},"shadow":false,"topLevel":false},"aSv":{"opcode":"operator_subtract","next":null,"parent":"bT","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qv":{"opcode":"data_setvariableto","next":"aSw","parent":"bT","inputs":{"VALUE":[3,"8C",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8C":{"opcode":"operator_join","next":null,"parent":"qv","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"8D",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8D":{"opcode":"data_itemoflist","next":null,"parent":"8C","inputs":{"INDEX":[3,"aSx",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aSx":{"opcode":"operator_add","next":null,"parent":"8D","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSw":{"opcode":"data_changevariableby","next":null,"parent":"qv","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"bU":{"opcode":"control_repeat","next":"8E","parent":"bT","inputs":{"TIMES":[3,"aSy",[6,"0"]],"SUBSTACK":[2,"8F"]},"fields":{},"shadow":false,"topLevel":false},"aSy":{"opcode":"operator_divide","next":null,"parent":"bU","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"8F":{"opcode":"data_setvariableto","next":null,"parent":"bU","inputs":{"VALUE":[3,"aSz",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"aSz":{"opcode":"operator_join","next":null,"parent":"8F","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"8E":{"opcode":"data_setvariableto","next":"8G","parent":"bU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"8G":{"opcode":"data_setvariableto","next":"qw","parent":"8E","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"qw":{"opcode":"control_repeat","next":"8H","parent":"8G","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"bH"]},"fields":{},"shadow":false,"topLevel":false},"bH":{"opcode":"data_replaceitemoflist","next":"5g","parent":"qw","inputs":{"INDEX":[3,"aSA",[7,"0"]],"ITEM":[3,"aSB",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"aSA":{"opcode":"operator_add","next":null,"parent":"bH","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSB":{"opcode":"operator_letter_of","next":null,"parent":"bH","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aPf":{"opcode":"data_changevariableby","next":null,"parent":"5g","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"8H":{"opcode":"data_setvariableto","next":"aSC","parent":"qw","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aSC":{"opcode":"data_changevariableby","next":null,"parent":"8H","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"pA":{"opcode":"control_if","next":null,"parent":"bS","inputs":{"CONDITION":[2,"aSD"],"SUBSTACK":[2,"5h"]},"fields":{},"shadow":false,"topLevel":false},"aSD":{"opcode":"operator_lt","next":null,"parent":"pA","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pB":{"opcode":"control_repeat_until","next":null,"parent":"5h","inputs":{"CONDITION":[2,"5i"],"SUBSTACK":[2,"8I"]},"fields":{},"shadow":false,"topLevel":false},"aPg":{"opcode":"operator_multiply","next":null,"parent":"5i","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8I":{"opcode":"data_setvariableto","next":"8J","parent":"pB","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8J":{"opcode":"data_setvariableto","next":"cM","parent":"8I","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"cM":{"opcode":"control_repeat","next":"cF","parent":"8J","inputs":{"TIMES":[3,"aSE",[6,"0"]],"SUBSTACK":[2,"qx"]},"fields":{},"shadow":false,"topLevel":false},"aSE":{"opcode":"operator_subtract","next":null,"parent":"cM","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qx":{"opcode":"data_setvariableto","next":"aSF","parent":"cM","inputs":{"VALUE":[3,"8K",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8K":{"opcode":"operator_join","next":null,"parent":"qx","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"8L",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8L":{"opcode":"data_itemoflist","next":null,"parent":"8K","inputs":{"INDEX":[3,"aSG",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aSG":{"opcode":"operator_add","next":null,"parent":"8L","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSF":{"opcode":"data_changevariableby","next":null,"parent":"qx","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"cF":{"opcode":"control_repeat","next":"8M","parent":"cM","inputs":{"TIMES":[3,"aSH",[6,"0"]],"SUBSTACK":[2,"5j"]},"fields":{},"shadow":false,"topLevel":false},"aSH":{"opcode":"operator_divide","next":null,"parent":"cF","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aPh":{"opcode":"operator_join","next":null,"parent":"5j","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"8M":{"opcode":"data_setvariableto","next":"8N","parent":"cF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"8N":{"opcode":"data_setvariableto","next":"qy","parent":"8M","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"qy":{"opcode":"control_repeat","next":"8O","parent":"8N","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"bV"]},"fields":{},"shadow":false,"topLevel":false},"bV":{"opcode":"data_replaceitemoflist","next":"8P","parent":"qy","inputs":{"INDEX":[3,"aSI",[7,"0"]],"ITEM":[3,"aSJ",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"aSI":{"opcode":"operator_add","next":null,"parent":"bV","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aSJ":{"opcode":"operator_letter_of","next":null,"parent":"bV","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"8P":{"opcode":"data_changevariableby","next":"aSK","parent":"bV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aSK":{"opcode":"data_changevariableby","next":null,"parent":"8P","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"8O":{"opcode":"data_setvariableto","next":"aSL","parent":"qy","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aSL":{"opcode":"data_changevariableby","next":null,"parent":"8O","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aSo":{"opcode":"control_stop","next":null,"parent":"bQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"h":{"opcode":"control_if","next":"a)","parent":"e","inputs":{"CONDITION":[2,"F)"],"SUBSTACK":[2,"F*"]},"fields":{},"shadow":false,"topLevel":false,"comment":"po"},"F)":{"opcode":"operator_equals","next":null,"parent":"h","inputs":{"OPERAND1":[3,"aSM",[10,""]],"OPERAND2":[1,[10,"0xF1"]]},"fields":{},"shadow":false,"topLevel":false},"aSM":{"opcode":"argument_reporter_string_number","next":null,"parent":"F)","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"F*":{"opcode":"data_setvariableto","next":"aSN","parent":"h","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"aSN":{"opcode":"control_stop","next":null,"parent":"F*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a)":{"opcode":"control_if","next":"a*","parent":"h","inputs":{"CONDITION":[2,"F+"],"SUBSTACK":[2,"F,"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Bi"},"F+":{"opcode":"operator_equals","next":null,"parent":"a)","inputs":{"OPERAND1":[3,"aSO",[10,""]],"OPERAND2":[1,[10,"0xF2"]]},"fields":{},"shadow":false,"topLevel":false},"aSO":{"opcode":"argument_reporter_string_number","next":null,"parent":"F+","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"F,":{"opcode":"data_setvariableto","next":"aSP","parent":"a)","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"aSP":{"opcode":"control_stop","next":null,"parent":"F,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a*":{"opcode":"control_if","next":"j","parent":"a)","inputs":{"CONDITION":[2,"F-"],"SUBSTACK":[2,"F."]},"fields":{},"shadow":false,"topLevel":false,"comment":"Bj"},"F-":{"opcode":"operator_equals","next":null,"parent":"a*","inputs":{"OPERAND1":[3,"aSQ",[10,""]],"OPERAND2":[1,[10,"0xF3"]]},"fields":{},"shadow":false,"topLevel":false},"aSQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"F-","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"F.":{"opcode":"data_setvariableto","next":"aSR","parent":"a*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"aSR":{"opcode":"control_stop","next":null,"parent":"F.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j":{"opcode":"control_if","next":"i","parent":"a*","inputs":{"CONDITION":[2,"8Q"],"SUBSTACK":[2,"8R"]},"fields":{},"shadow":false,"topLevel":false,"comment":"j;"},"8Q":{"opcode":"operator_equals","next":null,"parent":"j","inputs":{"OPERAND1":[3,"aSS",[10,""]],"OPERAND2":[1,[10,"0xFF"]]},"fields":{},"shadow":false,"topLevel":false},"aSS":{"opcode":"argument_reporter_string_number","next":null,"parent":"8Q","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"8R":{"opcode":"data_setvariableto","next":"8S","parent":"j","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"8S":{"opcode":"procedures_call","next":"aST","parent":"8R","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"128"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"aST":{"opcode":"control_stop","next":null,"parent":"8S","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i":{"opcode":"control_if","next":"^","parent":"j","inputs":{"CONDITION":[2,"8T"],"SUBSTACK":[2,"8U"]},"fields":{},"shadow":false,"topLevel":false,"comment":"j:"},"8T":{"opcode":"operator_equals","next":null,"parent":"i","inputs":{"OPERAND1":[3,"aSU",[10,""]],"OPERAND2":[1,[10,"0xFE"]]},"fields":{},"shadow":false,"topLevel":false},"aSU":{"opcode":"argument_reporter_string_number","next":null,"parent":"8T","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"8U":{"opcode":"data_setvariableto","next":"8V","parent":"i","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"8V":{"opcode":"procedures_call","next":"aSV","parent":"8U","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"aSV":{"opcode":"control_stop","next":null,"parent":"8V","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"^":{"opcode":"control_if","next":"Q","parent":"i","inputs":{"CONDITION":[2,"8W"],"SUBSTACK":[2,"4b"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Sw"},"8W":{"opcode":"operator_equals","next":null,"parent":"^","inputs":{"OPERAND1":[3,"aSW",[10,""]],"OPERAND2":[1,[10,"0x11"]]},"fields":{},"shadow":false,"topLevel":false},"aSW":{"opcode":"argument_reporter_string_number","next":null,"parent":"8W","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"4e":{"opcode":"procedures_call","next":"aSX","parent":"4d","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"256"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"aSX":{"opcode":"control_stop","next":null,"parent":"4e","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Q":{"opcode":"control_if","next":"lk","parent":"^","inputs":{"CONDITION":[2,"8X"],"SUBSTACK":[2,"8Y"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Bk"},"8X":{"opcode":"operator_equals","next":null,"parent":"Q","inputs":{"OPERAND1":[3,"aSY",[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"aSY":{"opcode":"argument_reporter_string_number","next":null,"parent":"8X","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"8Y":{"opcode":"pen_clear","next":"5l","parent":"Q","inputs":{},"fields":{},"shadow":false,"topLevel":false},"5l":{"opcode":"data_setvariableto","next":"5k","parent":"8Y","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"5m":{"opcode":"data_setvariableto","next":"8Z","parent":"5k","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"8Z":{"opcode":"procedures_call","next":"aSZ","parent":"5m","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"aSZ":{"opcode":"control_stop","next":null,"parent":"8Z","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lk":{"opcode":"control_if","next":"aS0","parent":"Q","inputs":{"CONDITION":[2,"80"],"SUBSTACK":[2,"qz"]},"fields":{},"shadow":false,"topLevel":false},"aS1":{"opcode":"argument_reporter_string_number","next":null,"parent":"80","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qz":{"opcode":"control_stop","next":"81","parent":"lk","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"},"comment":"aS2"},"aS3":{"opcode":"event_broadcast","next":null,"parent":"85","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aS0":{"opcode":"control_stop","next":null,"parent":"lk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cH":{"opcode":"control_if","next":"n","parent":"e1","inputs":{"CONDITION":[2,"5N"],"SUBSTACK":[2,"ll"]},"fields":{},"shadow":false,"topLevel":false},"aPp":{"opcode":"argument_reporter_string_number","next":null,"parent":"5N","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ll":{"opcode":"control_if","next":"aS4","parent":"cH","inputs":{"CONDITION":[2,"aS5"],"SUBSTACK":[2,"lm"]},"fields":{},"shadow":false,"topLevel":false},"aS5":{"opcode":"operator_equals","next":null,"parent":"ll","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"lm":{"opcode":"control_if_else","next":null,"parent":"ll","inputs":{"CONDITION":[2,"86"],"SUBSTACK":[2,"e,"],"SUBSTACK2":[2,"aO"]},"fields":{},"shadow":false,"topLevel":false},"aS6":{"opcode":"argument_reporter_string_number","next":null,"parent":"86","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e,":{"opcode":"control_if","next":"_","parent":"lm","inputs":{"CONDITION":[2,"87"],"SUBSTACK":[2,"88"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Sx"},"aS7":{"opcode":"argument_reporter_string_number","next":null,"parent":"87","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"qA":{"opcode":"data_setvariableto","next":"aS8","parent":"88","inputs":{"VALUE":[3,"qB",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"qB":{"opcode":"operator_add","next":null,"parent":"qA","inputs":{"NUM1":[3,"89",[4,"0"]],"NUM2":[3,"F/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aS9":{"opcode":"argument_reporter_string_number","next":null,"parent":"89","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"F/":{"opcode":"operator_add","next":null,"parent":"qB","inputs":{"NUM1":[3,"8!",[4,"0"]],"NUM2":[3,"aS!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8!":{"opcode":"operator_multiply","next":null,"parent":"F/","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"8#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8#":{"opcode":"data_itemoflist","next":null,"parent":"8!","inputs":{"INDEX":[3,"aS#",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aS#":{"opcode":"operator_subtract","next":null,"parent":"8#","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aS!":{"opcode":"data_itemoflist","next":null,"parent":"F/","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aS8":{"opcode":"control_stop","next":null,"parent":"qA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"_":{"opcode":"control_if","next":"e-","parent":"e,","inputs":{"CONDITION":[2,"8%"],"SUBSTACK":[2,"8("]},"fields":{},"shadow":false,"topLevel":false,"comment":"Sy"},"8%":{"opcode":"operator_equals","next":null,"parent":"_","inputs":{"OPERAND1":[3,"aS%",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aS%":{"opcode":"argument_reporter_string_number","next":null,"parent":"8%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"8(":{"opcode":"data_setvariableto","next":"8)","parent":"_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"8)":{"opcode":"data_setvariableto","next":"8*","parent":"8(","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"8*":{"opcode":"data_setvariableto","next":"ln","parent":"8)","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"ln":{"opcode":"control_repeat","next":"8+","parent":"8*","inputs":{"TIMES":[3,"aS(",[6,"0"]],"SUBSTACK":[2,"F:"]},"fields":{},"shadow":false,"topLevel":false},"aS(":{"opcode":"argument_reporter_string_number","next":null,"parent":"ln","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"F:":{"opcode":"data_setvariableto","next":"5Z","parent":"ln","inputs":{"VALUE":[3,"F;",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"F;":{"opcode":"operator_add","next":null,"parent":"F:","inputs":{"NUM1":[3,"F=",[4,"0"]],"NUM2":[3,"Eu",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"F=":{"opcode":"operator_add","next":null,"parent":"F;","inputs":{"NUM1":[3,"8,",[4,"0"]],"NUM2":[3,"8-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8,":{"opcode":"operator_multiply","next":null,"parent":"F=","inputs":{"NUM1":[3,"8.",[4,"0"]],"NUM2":[1,[4,"16777216"]]},"fields":{},"shadow":false,"topLevel":false},"8.":{"opcode":"data_itemoflist","next":null,"parent":"8,","inputs":{"INDEX":[3,"aS)",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aS)":{"opcode":"operator_add","next":null,"parent":"8.","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8-":{"opcode":"operator_multiply","next":null,"parent":"F=","inputs":{"NUM1":[3,"8/",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"8/":{"opcode":"data_itemoflist","next":null,"parent":"8-","inputs":{"INDEX":[3,"8:",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"8:":{"opcode":"operator_add","next":null,"parent":"8/","inputs":{"NUM1":[3,"aS*",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aS*":{"opcode":"operator_add","next":null,"parent":"8:","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Eu":{"opcode":"operator_add","next":null,"parent":"F;","inputs":{"NUM1":[3,"5T",[4,"0"]],"NUM2":[3,"5W",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPs":{"opcode":"operator_add","next":null,"parent":"5V","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPr":{"opcode":"operator_add","next":null,"parent":"5X","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5Z":{"opcode":"data_changevariableby","next":"5Y","parent":"F:","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aPt":{"opcode":"data_changevariableby","next":null,"parent":"5Y","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"8+":{"opcode":"data_replaceitemoflist","next":"aS+","parent":"ln","inputs":{"INDEX":[1,[7,"256"]],"ITEM":[1,[10,"0x00FFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aS+":{"opcode":"control_stop","next":null,"parent":"8+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e-":{"opcode":"control_if","next":"e.","parent":"_","inputs":{"CONDITION":[2,"8;"],"SUBSTACK":[2,"e/"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Sz"},"8;":{"opcode":"operator_equals","next":null,"parent":"e-","inputs":{"OPERAND1":[3,"aS,",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aS,":{"opcode":"argument_reporter_string_number","next":null,"parent":"8;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e/":{"opcode":"control_if_else","next":"aS-","parent":"e-","inputs":{"CONDITION":[2,"8="],"SUBSTACK":[2,"aS."],"SUBSTACK2":[2,"8?"]},"fields":{},"shadow":false,"topLevel":false},"8=":{"opcode":"operator_equals","next":null,"parent":"e/","inputs":{"OPERAND1":[3,"aS/",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aS/":{"opcode":"argument_reporter_string_number","next":null,"parent":"8=","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aS.":{"opcode":"data_setvariableto","next":null,"parent":"e/","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"]},"shadow":false,"topLevel":false},"8?":{"opcode":"data_setvariableto","next":null,"parent":"e/","inputs":{"VALUE":[3,"aS:",[10,""]]},"fields":{"VARIABLE":["chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"]},"shadow":false,"topLevel":false},"aS:":{"opcode":"argument_reporter_string_number","next":null,"parent":"8?","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aS-":{"opcode":"control_stop","next":null,"parent":"e/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e.":{"opcode":"control_if_else","next":null,"parent":"e-","inputs":{"CONDITION":[2,"8@"],"SUBSTACK":[2,"aS="],"SUBSTACK2":[2,"8["]},"fields":{},"shadow":false,"topLevel":false,"comment":"aS;"},"8@":{"opcode":"operator_equals","next":null,"parent":"e.","inputs":{"OPERAND1":[3,"aS?",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aS?":{"opcode":"argument_reporter_string_number","next":null,"parent":"8@","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aS=":{"opcode":"data_setvariableto","next":null,"parent":"e.","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"]},"shadow":false,"topLevel":false},"8[":{"opcode":"data_setvariableto","next":null,"parent":"e.","inputs":{"VALUE":[3,"aS@",[10,""]]},"fields":{"VARIABLE":["chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"]},"shadow":false,"topLevel":false},"aS@":{"opcode":"argument_reporter_string_number","next":null,"parent":"8[","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aO":{"opcode":"control_if","next":"aP","parent":"lm","inputs":{"CONDITION":[2,"8]"],"SUBSTACK":[2,"aS]"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aS["},"8]":{"opcode":"operator_equals","next":null,"parent":"aO","inputs":{"OPERAND1":[3,"aS^",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aS^":{"opcode":"argument_reporter_string_number","next":null,"parent":"8]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aS]":{"opcode":"control_stop","next":null,"parent":"aO","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aP":{"opcode":"control_if","next":"bF","parent":"aO","inputs":{"CONDITION":[2,"8^"],"SUBSTACK":[2,"F?"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aS_"},"8^":{"opcode":"operator_equals","next":null,"parent":"aP","inputs":{"OPERAND1":[3,"aS`",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aS`":{"opcode":"argument_reporter_string_number","next":null,"parent":"8^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"F?":{"opcode":"data_setvariableto","next":"8_","parent":"aP","inputs":{"VALUE":[3,"aS{",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aS{":{"opcode":"operator_add","next":null,"parent":"F?","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"8_":{"opcode":"data_setvariableto","next":"F@","parent":"F?","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"F@":{"opcode":"data_setvariableto","next":"8`","parent":"8_","inputs":{"VALUE":[3,"F[",[10,""]]},"fields":{"VARIABLE":["chip8m.samplerate","Jz!(reWdKcB6wz9(@ZOs"]},"shadow":false,"topLevel":false},"F[":{"opcode":"operator_add","next":null,"parent":"F@","inputs":{"NUM1":[3,"8{",[4,"0"]],"NUM2":[3,"8|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"8{":{"opcode":"operator_multiply","next":null,"parent":"F[","inputs":{"NUM1":[3,"aS|",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aS|":{"opcode":"data_itemoflist","next":null,"parent":"8{","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"8|":{"opcode":"data_itemoflist","next":null,"parent":"F[","inputs":{"INDEX":[3,"aS}",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aS}":{"opcode":"operator_add","next":null,"parent":"8|","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"8`":{"opcode":"data_changevariableby","next":"F]","parent":"F@","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"F]":{"opcode":"data_setvariableto","next":"8}","parent":"8`","inputs":{"VALUE":[3,"aS~",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aS~":{"opcode":"operator_add","next":null,"parent":"F]","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"8}":{"opcode":"data_deletealloflist","next":"lo","parent":"F]","inputs":{},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"lo":{"opcode":"control_repeat","next":"En","parent":"8}","inputs":{"TIMES":[3,"El",[6,"0"]],"SUBSTACK":[2,"F^"]},"fields":{},"shadow":false,"topLevel":false},"El":{"opcode":"operator_add","next":null,"parent":"lo","inputs":{"NUM1":[3,"4P",[4,"0"]],"NUM2":[3,"Em",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO[":{"opcode":"data_itemoflist","next":null,"parent":"4P","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Em":{"opcode":"operator_add","next":null,"parent":"El","inputs":{"NUM1":[3,"4Q",[4,"0"]],"NUM2":[3,"4S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO^":{"opcode":"operator_add","next":null,"parent":"4R","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aO]":{"opcode":"operator_add","next":null,"parent":"4S","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"F^":{"opcode":"data_addtolist","next":"aTa","parent":"lo","inputs":{"ITEM":[3,"aTb",[10,""]]},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"aTb":{"opcode":"data_itemoflist","next":null,"parent":"F^","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTa":{"opcode":"data_changevariableby","next":null,"parent":"F^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"En":{"opcode":"data_setvariableto","next":"4T","parent":"lo","inputs":{"VALUE":[3,"4U",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"Eo":{"opcode":"operator_divide","next":null,"parent":"4U","inputs":{"NUM1":[3,"4V",[4,"0"]],"NUM2":[3,"aTc",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO`":{"opcode":"operator_divide","next":null,"parent":"4V","inputs":{"NUM1":[3,[12,"chip8m.samplerate","Jz!(reWdKcB6wz9(@ZOs"],[4,"0"]],"NUM2":[1,[4,"4000"]]},"fields":{},"shadow":false,"topLevel":false},"aTc":{"opcode":"operator_mathop","next":null,"parent":"Eo","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"aO_":{"opcode":"control_stop","next":null,"parent":"4T","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bF":{"opcode":"control_if","next":"bG","parent":"aP","inputs":{"CONDITION":[2,"4W"],"SUBSTACK":[2,"4X"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aTd"},"aO{":{"opcode":"argument_reporter_string_number","next":null,"parent":"4W","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aO|":{"opcode":"control_stop","next":null,"parent":"4X","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bG":{"opcode":"control_if","next":"lp","parent":"bF","inputs":{"CONDITION":[2,"4Y"],"SUBSTACK":[2,"F_"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aTe"},"aO}":{"opcode":"argument_reporter_string_number","next":null,"parent":"4Y","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"F_":{"opcode":"data_setvariableto","next":"aTf","parent":"bG","inputs":{"VALUE":[3,"8~",[10,""]]},"fields":{"VARIABLE":["chip8.blendmode","JcH|Bk6g8yO74n|tWOIG"]},"shadow":false,"topLevel":false},"8~":{"opcode":"operator_mod","next":null,"parent":"F_","inputs":{"NUM1":[3,"aTg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTg":{"opcode":"argument_reporter_string_number","next":null,"parent":"8~","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aTf":{"opcode":"control_stop","next":null,"parent":"F_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lp":{"opcode":"control_if","next":null,"parent":"bG","inputs":{"CONDITION":[2,"9a"],"SUBSTACK":[2,"9b"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aTh"},"9a":{"opcode":"operator_equals","next":null,"parent":"lp","inputs":{"OPERAND1":[3,"aTi",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aTi":{"opcode":"argument_reporter_string_number","next":null,"parent":"9a","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9b":{"opcode":"data_setvariableto","next":null,"parent":"lp","inputs":{"VALUE":[3,"aTj",[10,""]]},"fields":{"VARIABLE":["chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"]},"shadow":false,"topLevel":false},"aTj":{"opcode":"argument_reporter_string_number","next":null,"parent":"9b","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aS4":{"opcode":"control_stop","next":null,"parent":"ll","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n":{"opcode":"control_if","next":"o","parent":"cH","inputs":{"CONDITION":[2,"9c"],"SUBSTACK":[2,"qC"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lq"},"9c":{"opcode":"operator_lt","next":null,"parent":"n","inputs":{"OPERAND1":[3,"aTk",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aTk":{"opcode":"argument_reporter_string_number","next":null,"parent":"9c","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"qC":{"opcode":"data_setvariableto","next":"aTl","parent":"n","inputs":{"VALUE":[3,"qD",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"qD":{"opcode":"operator_add","next":null,"parent":"qC","inputs":{"NUM1":[3,"9d",[4,"0"]],"NUM2":[3,"aTm",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9d":{"opcode":"operator_multiply","next":null,"parent":"qD","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"9e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9e":{"opcode":"operator_mod","next":null,"parent":"9d","inputs":{"NUM1":[3,"aTn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTn":{"opcode":"argument_reporter_string_number","next":null,"parent":"9e","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTm":{"opcode":"argument_reporter_string_number","next":null,"parent":"qD","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aTl":{"opcode":"control_stop","next":null,"parent":"qC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o":{"opcode":"control_if","next":"p","parent":"n","inputs":{"CONDITION":[2,"9f"],"SUBSTACK":[2,"9g"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lr"},"9f":{"opcode":"operator_lt","next":null,"parent":"o","inputs":{"OPERAND1":[3,"aTo",[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},"aTo":{"opcode":"argument_reporter_string_number","next":null,"parent":"9f","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9g":{"opcode":"data_addtolist","next":"qE","parent":"o","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"qE":{"opcode":"data_setvariableto","next":"aTp","parent":"9g","inputs":{"VALUE":[3,"qF",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"qF":{"opcode":"operator_add","next":null,"parent":"qE","inputs":{"NUM1":[3,"9h",[4,"0"]],"NUM2":[3,"aTq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9h":{"opcode":"operator_multiply","next":null,"parent":"qF","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"9i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9i":{"opcode":"operator_mod","next":null,"parent":"9h","inputs":{"NUM1":[3,"aTr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTr":{"opcode":"argument_reporter_string_number","next":null,"parent":"9i","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTq":{"opcode":"argument_reporter_string_number","next":null,"parent":"qF","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aTp":{"opcode":"control_stop","next":null,"parent":"qE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"p":{"opcode":"control_if","next":"q","parent":"o","inputs":{"CONDITION":[2,"9j"],"SUBSTACK":[2,"e:"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ls"},"9j":{"opcode":"operator_lt","next":null,"parent":"p","inputs":{"OPERAND1":[3,"aTs",[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aTs":{"opcode":"argument_reporter_string_number","next":null,"parent":"9j","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e:":{"opcode":"control_if","next":"aTt","parent":"p","inputs":{"CONDITION":[2,"qG"],"SUBSTACK":[2,"e;"]},"fields":{},"shadow":false,"topLevel":false},"qG":{"opcode":"operator_equals","next":null,"parent":"e:","inputs":{"OPERAND1":[3,"aTu",[10,""]],"OPERAND2":[3,"9k",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aTu":{"opcode":"argument_reporter_string_number","next":null,"parent":"qG","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"9k":{"opcode":"data_itemoflist","next":null,"parent":"qG","inputs":{"INDEX":[3,"9l",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9l":{"opcode":"operator_add","next":null,"parent":"9k","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9m":{"opcode":"operator_mod","next":null,"parent":"9l","inputs":{"NUM1":[3,"aTv",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTv":{"opcode":"argument_reporter_string_number","next":null,"parent":"9m","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e;":{"opcode":"control_if","next":"aTw","parent":"e:","inputs":{"CONDITION":[2,"F`"],"SUBSTACK":[2,"aTx"]},"fields":{},"shadow":false,"topLevel":false},"F`":{"opcode":"operator_or","next":null,"parent":"e;","inputs":{"OPERAND1":[2,"9n"],"OPERAND2":[2,"qH"]},"fields":{},"shadow":false,"topLevel":false},"9n":{"opcode":"operator_equals","next":null,"parent":"F`","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"9o",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9o":{"opcode":"data_itemoflist","next":null,"parent":"9n","inputs":{"INDEX":[3,"aTy",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTy":{"opcode":"operator_add","next":null,"parent":"9o","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qH":{"opcode":"operator_and","next":null,"parent":"F`","inputs":{"OPERAND1":[2,"9p"],"OPERAND2":[2,"9q"]},"fields":{},"shadow":false,"topLevel":false},"9p":{"opcode":"operator_lt","next":null,"parent":"qH","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"9r",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9r":{"opcode":"data_itemoflist","next":null,"parent":"9p","inputs":{"INDEX":[3,"aTz",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTz":{"opcode":"operator_add","next":null,"parent":"9r","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"9q":{"opcode":"operator_equals","next":null,"parent":"qH","inputs":{"OPERAND1":[3,"9s",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9s":{"opcode":"data_itemoflist","next":null,"parent":"9q","inputs":{"INDEX":[3,"aTA",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTA":{"opcode":"operator_add","next":null,"parent":"9s","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aTx":{"opcode":"data_changevariableby","next":null,"parent":"e;","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTw":{"opcode":"data_changevariableby","next":null,"parent":"e;","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTt":{"opcode":"control_stop","next":null,"parent":"e:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"q":{"opcode":"control_if","next":"r","parent":"p","inputs":{"CONDITION":[2,"9t"],"SUBSTACK":[2,"cN"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lt"},"9t":{"opcode":"operator_lt","next":null,"parent":"q","inputs":{"OPERAND1":[3,"aTB",[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"aTB":{"opcode":"argument_reporter_string_number","next":null,"parent":"9t","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"cN":{"opcode":"control_if","next":"aTC","parent":"q","inputs":{"CONDITION":[2,"9u"],"SUBSTACK":[2,"e="]},"fields":{},"shadow":false,"topLevel":false},"9u":{"opcode":"operator_not","next":null,"parent":"cN","inputs":{"OPERAND":[2,"qI"]},"fields":{},"shadow":false,"topLevel":false},"qI":{"opcode":"operator_equals","next":null,"parent":"9u","inputs":{"OPERAND1":[3,"aTD",[10,""]],"OPERAND2":[3,"9v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aTD":{"opcode":"argument_reporter_string_number","next":null,"parent":"qI","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"9v":{"opcode":"data_itemoflist","next":null,"parent":"qI","inputs":{"INDEX":[3,"9w",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9w":{"opcode":"operator_add","next":null,"parent":"9v","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9x":{"opcode":"operator_mod","next":null,"parent":"9w","inputs":{"NUM1":[3,"aTE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTE":{"opcode":"argument_reporter_string_number","next":null,"parent":"9x","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e=":{"opcode":"control_if","next":"aTF","parent":"cN","inputs":{"CONDITION":[2,"F{"],"SUBSTACK":[2,"aTG"]},"fields":{},"shadow":false,"topLevel":false},"F{":{"opcode":"operator_or","next":null,"parent":"e=","inputs":{"OPERAND1":[2,"9y"],"OPERAND2":[2,"F|"]},"fields":{},"shadow":false,"topLevel":false},"9y":{"opcode":"operator_equals","next":null,"parent":"F{","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"9z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9z":{"opcode":"data_itemoflist","next":null,"parent":"9y","inputs":{"INDEX":[3,"aTH",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTH":{"opcode":"operator_add","next":null,"parent":"9z","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F|":{"opcode":"operator_and","next":null,"parent":"F{","inputs":{"OPERAND1":[2,"9A"],"OPERAND2":[2,"9B"]},"fields":{},"shadow":false,"topLevel":false},"9A":{"opcode":"operator_lt","next":null,"parent":"F|","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"9C",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9C":{"opcode":"data_itemoflist","next":null,"parent":"9A","inputs":{"INDEX":[3,"aTI",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTI":{"opcode":"operator_add","next":null,"parent":"9C","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"9B":{"opcode":"operator_equals","next":null,"parent":"F|","inputs":{"OPERAND1":[3,"9D",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9D":{"opcode":"data_itemoflist","next":null,"parent":"9B","inputs":{"INDEX":[3,"aTJ",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTJ":{"opcode":"operator_add","next":null,"parent":"9D","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aTG":{"opcode":"data_changevariableby","next":null,"parent":"e=","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTF":{"opcode":"data_changevariableby","next":null,"parent":"e=","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTC":{"opcode":"control_stop","next":null,"parent":"cN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"r":{"opcode":"control_if","next":"D","parent":"q","inputs":{"CONDITION":[2,"9E"],"SUBSTACK":[2,"bW"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lu"},"9E":{"opcode":"operator_lt","next":null,"parent":"r","inputs":{"OPERAND1":[3,"aTK",[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aTK":{"opcode":"argument_reporter_string_number","next":null,"parent":"9E","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bW":{"opcode":"control_if","next":"e?","parent":"r","inputs":{"CONDITION":[2,"9F"],"SUBSTACK":[2,"e@"]},"fields":{},"shadow":false,"topLevel":false},"9F":{"opcode":"operator_equals","next":null,"parent":"bW","inputs":{"OPERAND1":[3,"9G",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9G":{"opcode":"operator_mod","next":null,"parent":"9F","inputs":{"NUM1":[3,"aTL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTL":{"opcode":"argument_reporter_string_number","next":null,"parent":"9G","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e@":{"opcode":"control_if","next":"aTM","parent":"bW","inputs":{"CONDITION":[2,"py"],"SUBSTACK":[2,"e["]},"fields":{},"shadow":false,"topLevel":false},"py":{"opcode":"operator_equals","next":null,"parent":"e@","inputs":{"OPERAND1":[3,"4[",[10,""]],"OPERAND2":[3,"9H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aPd":{"opcode":"argument_reporter_string_number","next":null,"parent":"4]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9H":{"opcode":"data_itemoflist","next":null,"parent":"py","inputs":{"INDEX":[3,"9I",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9I":{"opcode":"operator_add","next":null,"parent":"9H","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9J":{"opcode":"operator_mathop","next":null,"parent":"9I","inputs":{"NUM":[3,"9K",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"9K":{"opcode":"operator_divide","next":null,"parent":"9J","inputs":{"NUM1":[3,"aTN",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTN":{"opcode":"argument_reporter_string_number","next":null,"parent":"9K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e[":{"opcode":"control_if","next":"aTO","parent":"e@","inputs":{"CONDITION":[2,"qJ"],"SUBSTACK":[2,"aTP"]},"fields":{},"shadow":false,"topLevel":false},"qJ":{"opcode":"operator_and","next":null,"parent":"e[","inputs":{"OPERAND1":[2,"O["],"OPERAND2":[2,"O]"]},"fields":{},"shadow":false,"topLevel":false},"O[":{"opcode":"operator_lt","next":null,"parent":"qJ","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"O^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"O^":{"opcode":"data_itemoflist","next":null,"parent":"O[","inputs":{"INDEX":[3,"aTQ",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTQ":{"opcode":"operator_add","next":null,"parent":"O^","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O]":{"opcode":"operator_equals","next":null,"parent":"qJ","inputs":{"OPERAND1":[3,"O_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"O_":{"opcode":"data_itemoflist","next":null,"parent":"O]","inputs":{"INDEX":[3,"aTR",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTR":{"opcode":"operator_add","next":null,"parent":"O_","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aTP":{"opcode":"data_changevariableby","next":null,"parent":"e[","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTO":{"opcode":"data_changevariableby","next":null,"parent":"e[","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aTM":{"opcode":"control_stop","next":null,"parent":"e@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e?":{"opcode":"control_if","next":"E","parent":"bW","inputs":{"CONDITION":[2,"O`"],"SUBSTACK":[2,"e]"]},"fields":{},"shadow":false,"topLevel":false},"O`":{"opcode":"operator_equals","next":null,"parent":"e?","inputs":{"OPERAND1":[3,"O{",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O{":{"opcode":"operator_mod","next":null,"parent":"O`","inputs":{"NUM1":[3,"aTS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTS":{"opcode":"argument_reporter_string_number","next":null,"parent":"O{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e]":{"opcode":"control_if","next":"aTT","parent":"e?","inputs":{"CONDITION":[2,"qK"],"SUBSTACK":[2,"e^"]},"fields":{},"shadow":false,"topLevel":false},"qK":{"opcode":"operator_gt","next":null,"parent":"e]","inputs":{"OPERAND1":[3,"O|",[10,""]],"OPERAND2":[3,"O}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"O|":{"opcode":"data_itemoflist","next":null,"parent":"qK","inputs":{"INDEX":[3,"O~",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"O~":{"opcode":"operator_add","next":null,"parent":"O|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9L",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9L":{"opcode":"operator_mod","next":null,"parent":"O~","inputs":{"NUM1":[3,"aTU",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTU":{"opcode":"argument_reporter_string_number","next":null,"parent":"9L","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"O}":{"opcode":"data_itemoflist","next":null,"parent":"qK","inputs":{"INDEX":[3,"Pa",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Pa":{"opcode":"operator_add","next":null,"parent":"O}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Pb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pb":{"opcode":"operator_mathop","next":null,"parent":"Pa","inputs":{"NUM":[3,"Pc",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pc":{"opcode":"operator_divide","next":null,"parent":"Pb","inputs":{"NUM1":[3,"aTV",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aTV":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pc","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e^":{"opcode":"control_if","next":"lv","parent":"e]","inputs":{"CONDITION":[2,"F}"],"SUBSTACK":[2,"aTW"]},"fields":{},"shadow":false,"topLevel":false},"F}":{"opcode":"operator_or","next":null,"parent":"e^","inputs":{"OPERAND1":[2,"9M"],"OPERAND2":[2,"F~"]},"fields":{},"shadow":false,"topLevel":false},"9M":{"opcode":"operator_equals","next":null,"parent":"F}","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"9N",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9N":{"opcode":"data_itemoflist","next":null,"parent":"9M","inputs":{"INDEX":[3,"aTX",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTX":{"opcode":"operator_add","next":null,"parent":"9N","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F~":{"opcode":"operator_and","next":null,"parent":"F}","inputs":{"OPERAND1":[2,"9O"],"OPERAND2":[2,"9P"]},"fields":{},"shadow":false,"topLevel":false},"9O":{"opcode":"operator_lt","next":null,"parent":"F~","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"9Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"9Q":{"opcode":"data_itemoflist","next":null,"parent":"9O","inputs":{"INDEX":[3,"aTY",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTY":{"opcode":"operator_add","next":null,"parent":"9Q","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"9P":{"opcode":"operator_equals","next":null,"parent":"F~","inputs":{"OPERAND1":[3,"9R",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9R":{"opcode":"data_itemoflist","next":null,"parent":"9P","inputs":{"INDEX":[3,"aTZ",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aTZ":{"opcode":"operator_add","next":null,"parent":"9R","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aTW":{"opcode":"data_changevariableby","next":null,"parent":"e^","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"lv":{"opcode":"data_changevariableby","next":null,"parent":"e^","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"Ga"},"aTT":{"opcode":"control_stop","next":null,"parent":"e]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"E":{"opcode":"control_if_else","next":"Pd","parent":"e?","inputs":{"CONDITION":[2,"qL"],"SUBSTACK":[2,"aT0"],"SUBSTACK2":[2,"aT1"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Gb"},"qL":{"opcode":"operator_gt","next":null,"parent":"E","inputs":{"OPERAND1":[3,"Pe",[10,""]],"OPERAND2":[3,"Pf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Pe":{"opcode":"operator_mod","next":null,"parent":"qL","inputs":{"NUM1":[3,"aT2",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT2":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pe","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Pf":{"opcode":"operator_mathop","next":null,"parent":"qL","inputs":{"NUM":[3,"Pg",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pg":{"opcode":"operator_divide","next":null,"parent":"Pf","inputs":{"NUM1":[3,"aT3",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT3":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pg","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aT0":{"opcode":"data_setvariableto","next":null,"parent":"E","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aT1":{"opcode":"data_setvariableto","next":null,"parent":"E","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"Pd":{"opcode":"data_setvariableto","next":"qM","parent":"E","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"qM":{"opcode":"data_setvariableto","next":"cO","parent":"Pd","inputs":{"VALUE":[3,"aT4",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aT4":{"opcode":"operator_add","next":null,"parent":"qM","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"cO":{"opcode":"control_if","next":"cP","parent":"qM","inputs":{"CONDITION":[2,"Ph"],"SUBSTACK":[2,"e_"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Gc"},"Ph":{"opcode":"operator_equals","next":null,"parent":"cO","inputs":{"OPERAND1":[3,"Pi",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Pi":{"opcode":"operator_mod","next":null,"parent":"Ph","inputs":{"NUM1":[3,"aT5",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT5":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pi","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e_":{"opcode":"control_repeat","next":"aT6","parent":"cO","inputs":{"TIMES":[3,"Pj",[6,"0"]],"SUBSTACK":[2,"qN"]},"fields":{},"shadow":false,"topLevel":false},"Pj":{"opcode":"operator_add","next":null,"parent":"e_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Pk",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pk":{"opcode":"operator_mathop","next":null,"parent":"Pj","inputs":{"NUM":[3,"qO",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"qO":{"opcode":"operator_subtract","next":null,"parent":"Pk","inputs":{"NUM1":[3,"Pl",[4,"0"]],"NUM2":[3,"Pm",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pl":{"opcode":"operator_mod","next":null,"parent":"qO","inputs":{"NUM1":[3,"aT7",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT7":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pl","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Pm":{"opcode":"operator_mathop","next":null,"parent":"qO","inputs":{"NUM":[3,"Pn",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pn":{"opcode":"operator_divide","next":null,"parent":"Pm","inputs":{"NUM1":[3,"aT8",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT8":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pn","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qN":{"opcode":"data_replaceitemoflist","next":"Po","parent":"e_","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]],"ITEM":[3,"Pp",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Pp":{"opcode":"data_itemoflist","next":null,"parent":"qN","inputs":{"INDEX":[3,"Pq",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Pq":{"opcode":"operator_add","next":null,"parent":"Pp","inputs":{"NUM1":[3,"Pr",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pr":{"opcode":"operator_mod","next":null,"parent":"Pq","inputs":{"NUM1":[3,"aT9",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT9":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pr","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Po":{"opcode":"data_changevariableby","next":"aT!","parent":"qN","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aT!":{"opcode":"data_changevariableby","next":null,"parent":"Po","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aT6":{"opcode":"control_stop","next":null,"parent":"e_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cP":{"opcode":"control_if","next":"aT#","parent":"cO","inputs":{"CONDITION":[2,"Ps"],"SUBSTACK":[2,"qP"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Gd"},"Ps":{"opcode":"operator_equals","next":null,"parent":"cP","inputs":{"OPERAND1":[3,"Pt",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Pt":{"opcode":"operator_mod","next":null,"parent":"Ps","inputs":{"NUM1":[3,"aT%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT%":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pt","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qP":{"opcode":"control_repeat","next":null,"parent":"cP","inputs":{"TIMES":[3,"Pu",[6,"0"]],"SUBSTACK":[2,"e`"]},"fields":{},"shadow":false,"topLevel":false},"Pu":{"opcode":"operator_add","next":null,"parent":"qP","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Pv",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pv":{"opcode":"operator_mathop","next":null,"parent":"Pu","inputs":{"NUM":[3,"qQ",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"qQ":{"opcode":"operator_subtract","next":null,"parent":"Pv","inputs":{"NUM1":[3,"Pw",[4,"0"]],"NUM2":[3,"Px",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Pw":{"opcode":"operator_mod","next":null,"parent":"qQ","inputs":{"NUM1":[3,"aT(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT(":{"opcode":"argument_reporter_string_number","next":null,"parent":"Pw","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Px":{"opcode":"operator_mathop","next":null,"parent":"qQ","inputs":{"NUM":[3,"Py",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Py":{"opcode":"operator_divide","next":null,"parent":"Px","inputs":{"NUM1":[3,"aT)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT)":{"opcode":"argument_reporter_string_number","next":null,"parent":"Py","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e`":{"opcode":"data_replaceitemoflist","next":"Pz","parent":"qP","inputs":{"INDEX":[3,"PA",[7,"0"]],"ITEM":[3,"aT*",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"PA":{"opcode":"operator_add","next":null,"parent":"e`","inputs":{"NUM1":[3,"PB",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PB":{"opcode":"operator_mod","next":null,"parent":"PA","inputs":{"NUM1":[3,"aT+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT+":{"opcode":"argument_reporter_string_number","next":null,"parent":"PB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT*":{"opcode":"data_itemoflist","next":null,"parent":"e`","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Pz":{"opcode":"data_changevariableby","next":"aT,","parent":"e`","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aT,":{"opcode":"data_changevariableby","next":null,"parent":"Pz","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aT#":{"opcode":"control_stop","next":null,"parent":"cP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D":{"opcode":"control_if","next":"F","parent":"r","inputs":{"CONDITION":[2,"PC"],"SUBSTACK":[2,"e{"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lw"},"PC":{"opcode":"operator_lt","next":null,"parent":"D","inputs":{"OPERAND1":[3,"aT-",[10,""]],"OPERAND2":[1,[10,"112"]]},"fields":{},"shadow":false,"topLevel":false},"aT-":{"opcode":"argument_reporter_string_number","next":null,"parent":"PC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e{":{"opcode":"data_replaceitemoflist","next":"aT.","parent":"D","inputs":{"INDEX":[3,"PD",[7,"0"]],"ITEM":[3,"aT/",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"PD":{"opcode":"operator_add","next":null,"parent":"e{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"PE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PE":{"opcode":"operator_mod","next":null,"parent":"PD","inputs":{"NUM1":[3,"aT:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT:":{"opcode":"argument_reporter_string_number","next":null,"parent":"PE","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT/":{"opcode":"argument_reporter_string_number","next":null,"parent":"e{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aT.":{"opcode":"control_stop","next":null,"parent":"e{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"F":{"opcode":"control_if","next":"cG","parent":"D","inputs":{"CONDITION":[2,"PF"],"SUBSTACK":[2,"e|"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lx"},"PF":{"opcode":"operator_lt","next":null,"parent":"F","inputs":{"OPERAND1":[3,"aT;",[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aT;":{"opcode":"argument_reporter_string_number","next":null,"parent":"PF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e|":{"opcode":"data_replaceitemoflist","next":"aT=","parent":"F","inputs":{"INDEX":[3,"PG",[7,"0"]],"ITEM":[3,"PH",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"PG":{"opcode":"operator_add","next":null,"parent":"e|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"PI",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PI":{"opcode":"operator_mod","next":null,"parent":"PG","inputs":{"NUM1":[3,"aT?",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT?":{"opcode":"argument_reporter_string_number","next":null,"parent":"PI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"PH":{"opcode":"operator_mod","next":null,"parent":"e|","inputs":{"NUM1":[3,"qR",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"qR":{"opcode":"operator_add","next":null,"parent":"PH","inputs":{"NUM1":[3,"aT@",[4,"0"]],"NUM2":[3,"PJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aT@":{"opcode":"argument_reporter_string_number","next":null,"parent":"qR","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"PJ":{"opcode":"data_itemoflist","next":null,"parent":"qR","inputs":{"INDEX":[3,"PK",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"PK":{"opcode":"operator_add","next":null,"parent":"PJ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"PL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PL":{"opcode":"operator_mod","next":null,"parent":"PK","inputs":{"NUM1":[3,"aT[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT[":{"opcode":"argument_reporter_string_number","next":null,"parent":"PL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT=":{"opcode":"control_stop","next":null,"parent":"e|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cG":{"opcode":"control_if","next":"G","parent":"F","inputs":{"CONDITION":[2,"5G"],"SUBSTACK":[2,"O="]},"fields":{},"shadow":false,"topLevel":false},"aPl":{"opcode":"argument_reporter_string_number","next":null,"parent":"5G","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"O=":{"opcode":"control_if","next":"s","parent":"cG","inputs":{"CONDITION":[2,"5H"],"SUBSTACK":[2,"m"]},"fields":{},"shadow":false,"topLevel":false},"aPm":{"opcode":"argument_reporter_string_number","next":null,"parent":"5I","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"m":{"opcode":"control_if","next":"t","parent":"O=","inputs":{"CONDITION":[2,"5J"],"SUBSTACK":[2,"cQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ly"},"aPn":{"opcode":"argument_reporter_string_number","next":null,"parent":"5K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cQ":{"opcode":"data_replaceitemoflist","next":"aT]","parent":"m","inputs":{"INDEX":[3,"9S",[7,"0"]],"ITEM":[3,"9T",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9S":{"opcode":"operator_add","next":null,"parent":"cQ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9U",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9U":{"opcode":"operator_mod","next":null,"parent":"9S","inputs":{"NUM1":[3,"aT^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT^":{"opcode":"argument_reporter_string_number","next":null,"parent":"9U","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9T":{"opcode":"data_itemoflist","next":null,"parent":"cQ","inputs":{"INDEX":[3,"9V",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9V":{"opcode":"operator_add","next":null,"parent":"9T","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9W",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9W":{"opcode":"operator_mathop","next":null,"parent":"9V","inputs":{"NUM":[3,"9X",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"9X":{"opcode":"operator_divide","next":null,"parent":"9W","inputs":{"NUM1":[3,"aT_",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT_":{"opcode":"argument_reporter_string_number","next":null,"parent":"9X","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aT]":{"opcode":"control_stop","next":null,"parent":"cQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"t":{"opcode":"control_if","next":"H","parent":"m","inputs":{"CONDITION":[2,"9Y"],"SUBSTACK":[2,"qS"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lz"},"9Y":{"opcode":"operator_equals","next":null,"parent":"t","inputs":{"OPERAND1":[3,"9Z",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"9Z":{"opcode":"operator_mod","next":null,"parent":"9Y","inputs":{"NUM1":[3,"aT`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT`":{"opcode":"argument_reporter_string_number","next":null,"parent":"9Z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qS":{"opcode":"data_replaceitemoflist","next":null,"parent":"t","inputs":{"INDEX":[3,"90",[7,"0"]],"ITEM":[3,"91",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aT{":{"opcode":"argument_reporter_string_number","next":null,"parent":"92","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ge":{"opcode":"operator_add","next":null,"parent":"93","inputs":{"NUM1":[3,"94",[4,"0"]],"NUM2":[3,"95",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aT|":{"opcode":"argument_reporter_string_number","next":null,"parent":"98","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9!":{"opcode":"operator_mathop","next":null,"parent":"99","inputs":{"NUM":[3,"9#",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"9#":{"opcode":"operator_divide","next":null,"parent":"9!","inputs":{"NUM1":[3,"aT}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT}":{"opcode":"argument_reporter_string_number","next":null,"parent":"9#","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"H":{"opcode":"control_if","next":"Gf","parent":"t","inputs":{"CONDITION":[2,"9%"],"SUBSTACK":[2,"qT"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lA"},"9%":{"opcode":"operator_equals","next":null,"parent":"H","inputs":{"OPERAND1":[3,"9(",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"9(":{"opcode":"operator_mod","next":null,"parent":"9%","inputs":{"NUM1":[3,"aT~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aT~":{"opcode":"argument_reporter_string_number","next":null,"parent":"9(","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qT":{"opcode":"data_replaceitemoflist","next":null,"parent":"H","inputs":{"INDEX":[3,"9)",[7,"0"]],"ITEM":[3,"9*",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9)":{"opcode":"operator_add","next":null,"parent":"qT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9+":{"opcode":"operator_mod","next":null,"parent":"9)","inputs":{"NUM1":[3,"aUa",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUa":{"opcode":"argument_reporter_string_number","next":null,"parent":"9+","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9*":{"opcode":"data_itemoflist","next":null,"parent":"qT","inputs":{"INDEX":[3,"9,",[7,"0"]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"9,":{"opcode":"operator_add","next":null,"parent":"9*","inputs":{"NUM1":[3,"Es",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Es":{"opcode":"operator_add","next":null,"parent":"9,","inputs":{"NUM1":[3,"5o",[4,"0"]],"NUM2":[3,"9-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5p":{"opcode":"operator_add","next":null,"parent":"5n","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"5q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPi":{"opcode":"argument_reporter_string_number","next":null,"parent":"5q","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9-":{"opcode":"data_itemoflist","next":null,"parent":"Es","inputs":{"INDEX":[3,"9.",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9.":{"opcode":"operator_add","next":null,"parent":"9-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9/":{"opcode":"operator_mathop","next":null,"parent":"9.","inputs":{"NUM":[3,"9:",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"9:":{"opcode":"operator_divide","next":null,"parent":"9/","inputs":{"NUM1":[3,"aUb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUb":{"opcode":"argument_reporter_string_number","next":null,"parent":"9:","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"Gf":{"opcode":"control_if","next":"PM","parent":"H","inputs":{"CONDITION":[2,"9;"],"SUBSTACK":[2,"pw"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aUc"},"9;":{"opcode":"operator_equals","next":null,"parent":"Gf","inputs":{"OPERAND1":[3,"9=",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"9=":{"opcode":"operator_mod","next":null,"parent":"9;","inputs":{"NUM1":[3,"aUd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUd":{"opcode":"argument_reporter_string_number","next":null,"parent":"9=","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"pw":{"opcode":"data_replaceitemoflist","next":null,"parent":"Gf","inputs":{"INDEX":[3,"4Z",[7,"0"]],"ITEM":[3,"41",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aO~":{"opcode":"argument_reporter_string_number","next":null,"parent":"40","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ep":{"opcode":"operator_add","next":null,"parent":"42","inputs":{"NUM1":[3,"43",[4,"0"]],"NUM2":[3,"45",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPa":{"opcode":"argument_reporter_string_number","next":null,"parent":"48","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9?":{"opcode":"operator_divide","next":null,"parent":"49","inputs":{"NUM1":[3,"aUe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUe":{"opcode":"argument_reporter_string_number","next":null,"parent":"9?","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"PM":{"opcode":"control_if","next":"aUf","parent":"Gf","inputs":{"CONDITION":[2,"aUg"],"SUBSTACK":[2,"aUh"]},"fields":{},"shadow":false,"topLevel":false},"aUg":{"opcode":"operator_equals","next":null,"parent":"PM","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"aUh":{"opcode":"data_replaceitemoflist","next":null,"parent":"PM","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aUf":{"opcode":"control_stop","next":null,"parent":"PM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"s":{"opcode":"control_if","next":"I","parent":"O=","inputs":{"CONDITION":[2,"9@"],"SUBSTACK":[2,"qU"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lB"},"9@":{"opcode":"operator_equals","next":null,"parent":"s","inputs":{"OPERAND1":[3,"9[",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"9[":{"opcode":"operator_mod","next":null,"parent":"9@","inputs":{"NUM1":[3,"aUi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUi":{"opcode":"argument_reporter_string_number","next":null,"parent":"9[","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qU":{"opcode":"data_setvariableto","next":"cR","parent":"s","inputs":{"VALUE":[3,"qV",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"qV":{"opcode":"operator_add","next":null,"parent":"qU","inputs":{"NUM1":[3,"9]",[4,"0"]],"NUM2":[3,"9^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9]":{"opcode":"data_itemoflist","next":null,"parent":"qV","inputs":{"INDEX":[3,"9_",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9_":{"opcode":"operator_add","next":null,"parent":"9]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9`":{"opcode":"operator_mod","next":null,"parent":"9_","inputs":{"NUM1":[3,"aUj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUj":{"opcode":"argument_reporter_string_number","next":null,"parent":"9`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"9^":{"opcode":"data_itemoflist","next":null,"parent":"qV","inputs":{"INDEX":[3,"9{",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9{":{"opcode":"operator_add","next":null,"parent":"9^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"5M",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5M":{"opcode":"operator_mathop","next":null,"parent":"9{","inputs":{"NUM":[3,"5L",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aPo":{"opcode":"argument_reporter_string_number","next":null,"parent":"5L","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cR":{"opcode":"data_replaceitemoflist","next":"Gg","parent":"qU","inputs":{"INDEX":[3,"9|",[7,"0"]],"ITEM":[3,"aUk",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9|":{"opcode":"operator_add","next":null,"parent":"cR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"9}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"9}":{"opcode":"operator_mod","next":null,"parent":"9|","inputs":{"NUM1":[3,"aUl",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUl":{"opcode":"argument_reporter_string_number","next":null,"parent":"9}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUk":{"opcode":"operator_mod","next":null,"parent":"cR","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Gg":{"opcode":"data_replaceitemoflist","next":"aUm","parent":"cR","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"9~",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"9~":{"opcode":"operator_add","next":null,"parent":"Gg","inputs":{"NUM1":[3,"aUn",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aUn":{"opcode":"operator_gt","next":null,"parent":"9~","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"aUm":{"opcode":"control_stop","next":null,"parent":"Gg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"I":{"opcode":"control_if","next":"u","parent":"s","inputs":{"CONDITION":[2,"!a"],"SUBSTACK":[2,"qW"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lC"},"!a":{"opcode":"operator_equals","next":null,"parent":"I","inputs":{"OPERAND1":[3,"!b",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"!b":{"opcode":"operator_mod","next":null,"parent":"!a","inputs":{"NUM1":[3,"aUo",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUo":{"opcode":"argument_reporter_string_number","next":null,"parent":"!b","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qW":{"opcode":"data_setvariableto","next":"cS","parent":"I","inputs":{"VALUE":[3,"Et",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"Et":{"opcode":"operator_subtract","next":null,"parent":"qW","inputs":{"NUM1":[3,"!c",[4,"0"]],"NUM2":[3,"5w",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!c":{"opcode":"data_itemoflist","next":null,"parent":"Et","inputs":{"INDEX":[3,"!d",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!d":{"opcode":"operator_add","next":null,"parent":"!c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!e":{"opcode":"operator_mod","next":null,"parent":"!d","inputs":{"NUM1":[3,"aUp",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUp":{"opcode":"argument_reporter_string_number","next":null,"parent":"!e","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"5y":{"opcode":"operator_mathop","next":null,"parent":"5x","inputs":{"NUM":[3,"!f",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!f":{"opcode":"operator_divide","next":null,"parent":"5y","inputs":{"NUM1":[3,"aUq",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUq":{"opcode":"argument_reporter_string_number","next":null,"parent":"!f","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cS":{"opcode":"data_replaceitemoflist","next":"qX","parent":"qW","inputs":{"INDEX":[3,"!g",[7,"0"]],"ITEM":[3,"aUr",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!g":{"opcode":"operator_add","next":null,"parent":"cS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!h":{"opcode":"operator_mod","next":null,"parent":"!g","inputs":{"NUM1":[3,"aUs",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUs":{"opcode":"argument_reporter_string_number","next":null,"parent":"!h","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUr":{"opcode":"operator_mod","next":null,"parent":"cS","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"qX":{"opcode":"data_replaceitemoflist","next":"aUt","parent":"cS","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"!i",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!i":{"opcode":"operator_add","next":null,"parent":"qX","inputs":{"NUM1":[3,"!j",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!j":{"opcode":"operator_not","next":null,"parent":"!i","inputs":{"OPERAND":[2,"aUu"]},"fields":{},"shadow":false,"topLevel":false},"aUu":{"opcode":"operator_lt","next":null,"parent":"!j","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aUt":{"opcode":"control_stop","next":null,"parent":"qX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"u":{"opcode":"control_if","next":"J","parent":"I","inputs":{"CONDITION":[2,"!k"],"SUBSTACK":[2,"bX"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lD"},"!k":{"opcode":"operator_equals","next":null,"parent":"u","inputs":{"OPERAND1":[3,"!l",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"!l":{"opcode":"operator_mod","next":null,"parent":"!k","inputs":{"NUM1":[3,"aUv",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUv":{"opcode":"argument_reporter_string_number","next":null,"parent":"!l","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"bX":{"opcode":"control_if_else","next":"qY","parent":"u","inputs":{"CONDITION":[2,"aUw"],"SUBSTACK":[2,"Gh"],"SUBSTACK2":[2,"SA"]},"fields":{},"shadow":false,"topLevel":false},"aUw":{"opcode":"operator_equals","next":null,"parent":"bX","inputs":{"OPERAND1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gh":{"opcode":"data_setvariableto","next":"qZ","parent":"bX","inputs":{"VALUE":[3,"!m",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"!m":{"opcode":"data_itemoflist","next":null,"parent":"Gh","inputs":{"INDEX":[3,"!n",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!n":{"opcode":"operator_add","next":null,"parent":"!m","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!o":{"opcode":"operator_mathop","next":null,"parent":"!n","inputs":{"NUM":[3,"!p",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!p":{"opcode":"operator_divide","next":null,"parent":"!o","inputs":{"NUM1":[3,"aUx",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUx":{"opcode":"argument_reporter_string_number","next":null,"parent":"!p","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"Gh","inputs":{"INDEX":[3,"!q",[7,"0"]],"ITEM":[3,"!r",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!q":{"opcode":"operator_add","next":null,"parent":"qZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!s":{"opcode":"operator_mod","next":null,"parent":"!q","inputs":{"NUM1":[3,"aUy",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUy":{"opcode":"argument_reporter_string_number","next":null,"parent":"!s","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"!r":{"opcode":"operator_mathop","next":null,"parent":"qZ","inputs":{"NUM":[3,"!t",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!t":{"opcode":"operator_divide","next":null,"parent":"!r","inputs":{"NUM1":[3,"!u",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!u":{"opcode":"data_itemoflist","next":null,"parent":"!t","inputs":{"INDEX":[3,"!v",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!v":{"opcode":"operator_add","next":null,"parent":"!u","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!w",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!w":{"opcode":"operator_mathop","next":null,"parent":"!v","inputs":{"NUM":[3,"!x",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!x":{"opcode":"operator_divide","next":null,"parent":"!w","inputs":{"NUM1":[3,"aUz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUz":{"opcode":"argument_reporter_string_number","next":null,"parent":"!x","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"SA":{"opcode":"data_setvariableto","next":"q0","parent":"bX","inputs":{"VALUE":[3,"!y",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"!y":{"opcode":"data_itemoflist","next":null,"parent":"SA","inputs":{"INDEX":[3,"!z",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!z":{"opcode":"operator_add","next":null,"parent":"!y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!A":{"opcode":"operator_mod","next":null,"parent":"!z","inputs":{"NUM1":[3,"aUA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUA":{"opcode":"argument_reporter_string_number","next":null,"parent":"!A","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q0":{"opcode":"data_replaceitemoflist","next":null,"parent":"SA","inputs":{"INDEX":[3,"!B",[7,"0"]],"ITEM":[3,"!C",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!B":{"opcode":"operator_add","next":null,"parent":"q0","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!D",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!D":{"opcode":"operator_mod","next":null,"parent":"!B","inputs":{"NUM1":[3,"aUB",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUB":{"opcode":"argument_reporter_string_number","next":null,"parent":"!D","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"!C":{"opcode":"operator_mathop","next":null,"parent":"q0","inputs":{"NUM":[3,"!E",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!E":{"opcode":"operator_divide","next":null,"parent":"!C","inputs":{"NUM1":[3,"!F",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!F":{"opcode":"data_itemoflist","next":null,"parent":"!E","inputs":{"INDEX":[3,"!G",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!G":{"opcode":"operator_add","next":null,"parent":"!F","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!H",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!H":{"opcode":"operator_mod","next":null,"parent":"!G","inputs":{"NUM1":[3,"aUC",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUC":{"opcode":"argument_reporter_string_number","next":null,"parent":"!H","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"qY":{"opcode":"data_replaceitemoflist","next":"aUD","parent":"bX","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"aUE",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aUE":{"opcode":"operator_mod","next":null,"parent":"qY","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aUD":{"opcode":"control_stop","next":null,"parent":"qY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"J":{"opcode":"control_if","next":"bY","parent":"u","inputs":{"CONDITION":[2,"!I"],"SUBSTACK":[2,"q1"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lE"},"!I":{"opcode":"operator_equals","next":null,"parent":"J","inputs":{"OPERAND1":[3,"!J",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"!J":{"opcode":"operator_mod","next":null,"parent":"!I","inputs":{"NUM1":[3,"aUF",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUF":{"opcode":"argument_reporter_string_number","next":null,"parent":"!J","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q1":{"opcode":"data_setvariableto","next":"e}","parent":"J","inputs":{"VALUE":[3,"pz",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"pz":{"opcode":"operator_subtract","next":null,"parent":"q1","inputs":{"NUM1":[3,"!K",[4,"0"]],"NUM2":[3,"4}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!K":{"opcode":"data_itemoflist","next":null,"parent":"pz","inputs":{"INDEX":[3,"!L",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!L":{"opcode":"operator_add","next":null,"parent":"!K","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!M",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!M":{"opcode":"operator_mathop","next":null,"parent":"!L","inputs":{"NUM":[3,"!N",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!N":{"opcode":"operator_divide","next":null,"parent":"!M","inputs":{"NUM1":[3,"aUG",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUG":{"opcode":"argument_reporter_string_number","next":null,"parent":"!N","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aPe":{"opcode":"argument_reporter_string_number","next":null,"parent":"5a","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e}":{"opcode":"data_replaceitemoflist","next":"q2","parent":"q1","inputs":{"INDEX":[3,"!O",[7,"0"]],"ITEM":[3,"aUH",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!O":{"opcode":"operator_add","next":null,"parent":"e}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!P",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!P":{"opcode":"operator_mod","next":null,"parent":"!O","inputs":{"NUM1":[3,"aUI",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUI":{"opcode":"argument_reporter_string_number","next":null,"parent":"!P","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUH":{"opcode":"operator_mod","next":null,"parent":"e}","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q2":{"opcode":"data_replaceitemoflist","next":"aUJ","parent":"e}","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"!Q",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!Q":{"opcode":"operator_add","next":null,"parent":"q2","inputs":{"NUM1":[3,"!R",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!R":{"opcode":"operator_not","next":null,"parent":"!Q","inputs":{"OPERAND":[2,"aUK"]},"fields":{},"shadow":false,"topLevel":false},"aUK":{"opcode":"operator_lt","next":null,"parent":"!R","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aUJ":{"opcode":"control_stop","next":null,"parent":"q2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bY":{"opcode":"control_if","next":"bZ","parent":"J","inputs":{"CONDITION":[2,"!S"],"SUBSTACK":[2,"cT"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aUL"},"!S":{"opcode":"operator_equals","next":null,"parent":"bY","inputs":{"OPERAND1":[3,"!T",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"!T":{"opcode":"operator_mod","next":null,"parent":"!S","inputs":{"NUM1":[3,"aUM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUM":{"opcode":"argument_reporter_string_number","next":null,"parent":"!T","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cT":{"opcode":"data_replaceitemoflist","next":"aUN","parent":"bY","inputs":{"INDEX":[3,"!U",[7,"0"]],"ITEM":[3,"!V",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!U":{"opcode":"operator_add","next":null,"parent":"cT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!W",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!W":{"opcode":"operator_mod","next":null,"parent":"!U","inputs":{"NUM1":[3,"aUO",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUO":{"opcode":"argument_reporter_string_number","next":null,"parent":"!W","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"!V":{"opcode":"operator_mod","next":null,"parent":"cT","inputs":{"NUM1":[3,"q3",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q3":{"opcode":"operator_add","next":null,"parent":"!V","inputs":{"NUM1":[3,"!X",[4,"0"]],"NUM2":[3,"!Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!X":{"opcode":"operator_mathop","next":null,"parent":"q3","inputs":{"NUM":[3,"!Z",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!Z":{"opcode":"operator_divide","next":null,"parent":"!X","inputs":{"NUM1":[3,"!0",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!0":{"opcode":"data_itemoflist","next":null,"parent":"!Z","inputs":{"INDEX":[3,"!1",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!1":{"opcode":"operator_add","next":null,"parent":"!0","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!2",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!2":{"opcode":"operator_mathop","next":null,"parent":"!1","inputs":{"NUM":[3,"!3",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!3":{"opcode":"operator_divide","next":null,"parent":"!2","inputs":{"NUM1":[3,"aUP",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUP":{"opcode":"argument_reporter_string_number","next":null,"parent":"!3","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"!Y":{"opcode":"operator_multiply","next":null,"parent":"q3","inputs":{"NUM1":[3,"!4",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"!4":{"opcode":"operator_mod","next":null,"parent":"!Y","inputs":{"NUM1":[3,"!5",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!5":{"opcode":"data_itemoflist","next":null,"parent":"!4","inputs":{"INDEX":[3,"!6",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!6":{"opcode":"operator_add","next":null,"parent":"!5","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!7",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!7":{"opcode":"operator_mathop","next":null,"parent":"!6","inputs":{"NUM":[3,"!8",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!8":{"opcode":"operator_divide","next":null,"parent":"!7","inputs":{"NUM1":[3,"aUQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"!8","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aUN":{"opcode":"control_stop","next":null,"parent":"cT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bZ":{"opcode":"control_if","next":"b0","parent":"bY","inputs":{"CONDITION":[2,"!9"],"SUBSTACK":[2,"cU"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aUR"},"!9":{"opcode":"operator_equals","next":null,"parent":"bZ","inputs":{"OPERAND1":[3,"!!",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"!!":{"opcode":"operator_mod","next":null,"parent":"!9","inputs":{"NUM1":[3,"aUS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUS":{"opcode":"argument_reporter_string_number","next":null,"parent":"!!","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cU":{"opcode":"data_replaceitemoflist","next":"aUT","parent":"bZ","inputs":{"INDEX":[3,"4#",[7,"0"]],"ITEM":[3,"!#",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"4#":{"opcode":"operator_add","next":null,"parent":"cU","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"4!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPb":{"opcode":"argument_reporter_string_number","next":null,"parent":"4!","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"!#":{"opcode":"operator_mod","next":null,"parent":"cU","inputs":{"NUM1":[3,"px",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"px":{"opcode":"operator_add","next":null,"parent":"!#","inputs":{"NUM1":[3,"4%",[4,"0"]],"NUM2":[3,"4)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPc":{"opcode":"argument_reporter_string_number","next":null,"parent":"4-","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"4:":{"opcode":"operator_mathop","next":null,"parent":"4/","inputs":{"NUM":[3,"!%",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!%":{"opcode":"operator_divide","next":null,"parent":"4:","inputs":{"NUM1":[3,"aUU",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUU":{"opcode":"argument_reporter_string_number","next":null,"parent":"!%","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aUT":{"opcode":"control_stop","next":null,"parent":"cU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b0":{"opcode":"control_if","next":"b1","parent":"bZ","inputs":{"CONDITION":[2,"!("],"SUBSTACK":[2,"!)"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aUV"},"!(":{"opcode":"operator_equals","next":null,"parent":"b0","inputs":{"OPERAND1":[3,"!*",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"!*":{"opcode":"operator_mod","next":null,"parent":"!(","inputs":{"NUM1":[3,"aUW",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUW":{"opcode":"argument_reporter_string_number","next":null,"parent":"!*","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"!)":{"opcode":"data_setvariableto","next":"!+","parent":"b0","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"!+":{"opcode":"data_setvariableto","next":"q4","parent":"!)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"q4":{"opcode":"control_repeat","next":"SB","parent":"!+","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"q5"]},"fields":{},"shadow":false,"topLevel":false},"q5":{"opcode":"data_setvariableto","next":"q6","parent":"q4","inputs":{"VALUE":[3,"!,",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"!,":{"opcode":"operator_round","next":null,"parent":"q5","inputs":{"NUM":[3,"!-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!-":{"opcode":"operator_mathop","next":null,"parent":"!,","inputs":{"NUM":[3,"!.",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"!.":{"opcode":"operator_multiply","next":null,"parent":"!-","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,"aUX",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aUX":{"opcode":"operator_mathop","next":null,"parent":"!.","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"q6":{"opcode":"data_changevariableby","next":"aUY","parent":"q5","inputs":{"VALUE":[3,"!/",[4,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"!/":{"opcode":"operator_multiply","next":null,"parent":"q6","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,"!:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!:":{"opcode":"operator_gt","next":null,"parent":"!/","inputs":{"OPERAND1":[3,"q7",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q7":{"opcode":"operator_add","next":null,"parent":"!:","inputs":{"NUM1":[3,"!;",[4,"0"]],"NUM2":[3,"!=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!;":{"opcode":"operator_mod","next":null,"parent":"q7","inputs":{"NUM1":[3,"!?",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!?":{"opcode":"operator_mathop","next":null,"parent":"!;","inputs":{"NUM":[3,"!@",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!@":{"opcode":"operator_divide","next":null,"parent":"!?","inputs":{"NUM1":[3,"![",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"![":{"opcode":"data_itemoflist","next":null,"parent":"!@","inputs":{"INDEX":[3,"!]",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!]":{"opcode":"operator_add","next":null,"parent":"![","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!^":{"opcode":"operator_mathop","next":null,"parent":"!]","inputs":{"NUM":[3,"!_",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!_":{"opcode":"operator_divide","next":null,"parent":"!^","inputs":{"NUM1":[3,"aUZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aUZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"!_","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"!=":{"opcode":"operator_mod","next":null,"parent":"q7","inputs":{"NUM1":[3,"!`",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!`":{"opcode":"operator_mathop","next":null,"parent":"!=","inputs":{"NUM":[3,"!{",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!{":{"opcode":"operator_divide","next":null,"parent":"!`","inputs":{"NUM1":[3,"!|",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!|":{"opcode":"data_itemoflist","next":null,"parent":"!{","inputs":{"INDEX":[3,"!}",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"!}":{"opcode":"operator_add","next":null,"parent":"!|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"!~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!~":{"opcode":"operator_mod","next":null,"parent":"!}","inputs":{"NUM1":[3,"aU0",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU0":{"opcode":"argument_reporter_string_number","next":null,"parent":"!~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUY":{"opcode":"data_changevariableby","next":null,"parent":"q6","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"SB":{"opcode":"data_replaceitemoflist","next":"aU1","parent":"q4","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"#a",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#a":{"opcode":"operator_add","next":null,"parent":"SB","inputs":{"NUM1":[3,"aU2",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aU2":{"opcode":"operator_gt","next":null,"parent":"#a","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aU1":{"opcode":"control_stop","next":null,"parent":"SB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b1":{"opcode":"control_if","next":"b2","parent":"b0","inputs":{"CONDITION":[2,"#b"],"SUBSTACK":[2,"lF"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aU3"},"#b":{"opcode":"operator_equals","next":null,"parent":"b1","inputs":{"OPERAND1":[3,"#c",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"#c":{"opcode":"operator_mod","next":null,"parent":"#b","inputs":{"NUM1":[3,"aU4",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU4":{"opcode":"argument_reporter_string_number","next":null,"parent":"#c","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"lF":{"opcode":"data_replaceitemoflist","next":"aU5","parent":"b1","inputs":{"INDEX":[3,"#d",[7,"0"]],"ITEM":[3,"#e",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#d":{"opcode":"operator_add","next":null,"parent":"lF","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#f":{"opcode":"operator_mod","next":null,"parent":"#d","inputs":{"NUM1":[3,"aU6",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU6":{"opcode":"argument_reporter_string_number","next":null,"parent":"#f","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#e":{"opcode":"operator_mod","next":null,"parent":"lF","inputs":{"NUM1":[3,"#g",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"#g":{"opcode":"operator_multiply","next":null,"parent":"#e","inputs":{"NUM1":[3,"#h",[4,"0"]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"#h":{"opcode":"operator_add","next":null,"parent":"#g","inputs":{"NUM1":[3,"#i",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"#i":{"opcode":"data_itemoflist","next":null,"parent":"#h","inputs":{"INDEX":[3,"#j",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#j":{"opcode":"operator_add","next":null,"parent":"#i","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#k",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#k":{"opcode":"operator_mathop","next":null,"parent":"#j","inputs":{"NUM":[3,"#l",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#l":{"opcode":"operator_divide","next":null,"parent":"#k","inputs":{"NUM1":[3,"aU7",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU7":{"opcode":"argument_reporter_string_number","next":null,"parent":"#l","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aU5":{"opcode":"control_stop","next":null,"parent":"lF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b2":{"opcode":"control_if","next":"`","parent":"b1","inputs":{"CONDITION":[2,"#m"],"SUBSTACK":[2,"q8"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aU8"},"#m":{"opcode":"operator_equals","next":null,"parent":"b2","inputs":{"OPERAND1":[3,"#n",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"#n":{"opcode":"operator_mod","next":null,"parent":"#m","inputs":{"NUM1":[3,"aU9",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU9":{"opcode":"argument_reporter_string_number","next":null,"parent":"#n","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q8":{"opcode":"data_setvariableto","next":"cV","parent":"b2","inputs":{"VALUE":[3,"#o",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"#o":{"opcode":"operator_mathop","next":null,"parent":"q8","inputs":{"NUM":[3,"q9",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q9":{"opcode":"operator_multiply","next":null,"parent":"#o","inputs":{"NUM1":[3,"#p",[4,"0"]],"NUM2":[3,"#q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#p":{"opcode":"data_itemoflist","next":null,"parent":"q9","inputs":{"INDEX":[3,"#r",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#r":{"opcode":"operator_add","next":null,"parent":"#p","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#s":{"opcode":"operator_mod","next":null,"parent":"#r","inputs":{"NUM1":[3,"aU!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU!":{"opcode":"argument_reporter_string_number","next":null,"parent":"#s","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#q":{"opcode":"data_itemoflist","next":null,"parent":"q9","inputs":{"INDEX":[3,"#t",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#t":{"opcode":"operator_add","next":null,"parent":"#q","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#u":{"opcode":"operator_mathop","next":null,"parent":"#t","inputs":{"NUM":[3,"#v",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#v":{"opcode":"operator_divide","next":null,"parent":"#u","inputs":{"NUM1":[3,"aU#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU#":{"opcode":"argument_reporter_string_number","next":null,"parent":"#v","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cV":{"opcode":"data_replaceitemoflist","next":"q!","parent":"q8","inputs":{"INDEX":[3,"#w",[7,"0"]],"ITEM":[3,"aU%",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#w":{"opcode":"operator_add","next":null,"parent":"cV","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#x":{"opcode":"operator_mod","next":null,"parent":"#w","inputs":{"NUM1":[3,"aU(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU(":{"opcode":"argument_reporter_string_number","next":null,"parent":"#x","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aU%":{"opcode":"operator_mod","next":null,"parent":"cV","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q!":{"opcode":"data_replaceitemoflist","next":"aU)","parent":"cV","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"#y",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#y":{"opcode":"operator_mathop","next":null,"parent":"q!","inputs":{"NUM":[3,"aU*",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aU*":{"opcode":"operator_divide","next":null,"parent":"#y","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aU)":{"opcode":"control_stop","next":null,"parent":"q!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"`":{"opcode":"control_if","next":"v","parent":"b2","inputs":{"CONDITION":[2,"#z"],"SUBSTACK":[2,"q#"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aU+"},"#z":{"opcode":"operator_equals","next":null,"parent":"`","inputs":{"OPERAND1":[3,"#A",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"#A":{"opcode":"operator_mod","next":null,"parent":"#z","inputs":{"NUM1":[3,"aU,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU,":{"opcode":"argument_reporter_string_number","next":null,"parent":"#A","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q#":{"opcode":"data_setvariableto","next":"b3","parent":"`","inputs":{"VALUE":[3,"lG",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"lG":{"opcode":"operator_mod","next":null,"parent":"q#","inputs":{"NUM1":[3,"#B",[4,"0"]],"NUM2":[3,"#C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#B":{"opcode":"data_itemoflist","next":null,"parent":"lG","inputs":{"INDEX":[3,"#D",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#D":{"opcode":"operator_add","next":null,"parent":"#B","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#E":{"opcode":"operator_mod","next":null,"parent":"#D","inputs":{"NUM1":[3,"aU-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU-":{"opcode":"argument_reporter_string_number","next":null,"parent":"#E","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#C":{"opcode":"data_itemoflist","next":null,"parent":"lG","inputs":{"INDEX":[3,"#F",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#F":{"opcode":"operator_add","next":null,"parent":"#C","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#G",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#G":{"opcode":"operator_mathop","next":null,"parent":"#F","inputs":{"NUM":[3,"#H",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#H":{"opcode":"operator_divide","next":null,"parent":"#G","inputs":{"NUM1":[3,"aU.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU.":{"opcode":"argument_reporter_string_number","next":null,"parent":"#H","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"b3":{"opcode":"data_replaceitemoflist","next":"q%","parent":"q#","inputs":{"INDEX":[3,"#I",[7,"0"]],"ITEM":[3,"#J",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#I":{"opcode":"operator_add","next":null,"parent":"b3","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#K",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#K":{"opcode":"operator_mod","next":null,"parent":"#I","inputs":{"NUM1":[3,"aU/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU/":{"opcode":"argument_reporter_string_number","next":null,"parent":"#K","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#J":{"opcode":"operator_mod","next":null,"parent":"b3","inputs":{"NUM1":[3,"#L",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"#L":{"opcode":"operator_mathop","next":null,"parent":"#J","inputs":{"NUM":[3,"q(",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q(":{"opcode":"operator_divide","next":null,"parent":"#L","inputs":{"NUM1":[3,"#M",[4,"0"]],"NUM2":[3,"#N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#M":{"opcode":"data_itemoflist","next":null,"parent":"q(","inputs":{"INDEX":[3,"#O",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#O":{"opcode":"operator_add","next":null,"parent":"#M","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#P",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#P":{"opcode":"operator_mod","next":null,"parent":"#O","inputs":{"NUM1":[3,"aU:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU:":{"opcode":"argument_reporter_string_number","next":null,"parent":"#P","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#N":{"opcode":"data_itemoflist","next":null,"parent":"q(","inputs":{"INDEX":[3,"#Q",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#Q":{"opcode":"operator_add","next":null,"parent":"#N","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#R":{"opcode":"operator_mathop","next":null,"parent":"#Q","inputs":{"NUM":[3,"#S",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#S":{"opcode":"operator_divide","next":null,"parent":"#R","inputs":{"NUM1":[3,"aU;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU;":{"opcode":"argument_reporter_string_number","next":null,"parent":"#S","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q%":{"opcode":"data_replaceitemoflist","next":"cW","parent":"b3","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"aU=",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aU=":{"opcode":"operator_mathop","next":null,"parent":"q%","inputs":{"NUM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"cW":{"opcode":"control_if","next":"aU?","parent":"q%","inputs":{"CONDITION":[2,"#T"],"SUBSTACK":[2,"#U"]},"fields":{},"shadow":false,"topLevel":false},"#T":{"opcode":"operator_equals","next":null,"parent":"cW","inputs":{"OPERAND1":[3,"#V",[10,""]],"OPERAND2":[1,[10,"NaN"]]},"fields":{},"shadow":false,"topLevel":false},"#V":{"opcode":"data_itemoflist","next":null,"parent":"#T","inputs":{"INDEX":[3,"#W",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#W":{"opcode":"operator_add","next":null,"parent":"#V","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#X",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#X":{"opcode":"operator_mod","next":null,"parent":"#W","inputs":{"NUM1":[3,"aU@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU@":{"opcode":"argument_reporter_string_number","next":null,"parent":"#X","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#U":{"opcode":"data_replaceitemoflist","next":"#Y","parent":"cW","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#Y":{"opcode":"data_replaceitemoflist","next":null,"parent":"#U","inputs":{"INDEX":[3,"#Z",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#Z":{"opcode":"operator_add","next":null,"parent":"#Y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#0":{"opcode":"operator_mod","next":null,"parent":"#Z","inputs":{"NUM1":[3,"aU[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU[":{"opcode":"argument_reporter_string_number","next":null,"parent":"#0","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aU?":{"opcode":"control_stop","next":null,"parent":"cW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"v":{"opcode":"control_if","next":"Gi","parent":"`","inputs":{"CONDITION":[2,"#1"],"SUBSTACK":[2,"aQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lH"},"#1":{"opcode":"operator_equals","next":null,"parent":"v","inputs":{"OPERAND1":[3,"#2",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"#2":{"opcode":"operator_mod","next":null,"parent":"#1","inputs":{"NUM1":[3,"aU]",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU]":{"opcode":"argument_reporter_string_number","next":null,"parent":"#2","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aQ":{"opcode":"control_if_else","next":"q)","parent":"v","inputs":{"CONDITION":[2,"aU^"],"SUBSTACK":[2,"Gj"],"SUBSTACK2":[2,"SC"]},"fields":{},"shadow":false,"topLevel":false},"aU^":{"opcode":"operator_equals","next":null,"parent":"aQ","inputs":{"OPERAND1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gj":{"opcode":"data_setvariableto","next":"q*","parent":"aQ","inputs":{"VALUE":[3,"#3",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"#3":{"opcode":"data_itemoflist","next":null,"parent":"Gj","inputs":{"INDEX":[3,"#4",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#4":{"opcode":"operator_add","next":null,"parent":"#3","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#5",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#5":{"opcode":"operator_mathop","next":null,"parent":"#4","inputs":{"NUM":[3,"#6",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#6":{"opcode":"operator_divide","next":null,"parent":"#5","inputs":{"NUM1":[3,"aU_",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU_":{"opcode":"argument_reporter_string_number","next":null,"parent":"#6","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q*":{"opcode":"data_replaceitemoflist","next":null,"parent":"Gj","inputs":{"INDEX":[3,"#7",[7,"0"]],"ITEM":[3,"#8",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#7":{"opcode":"operator_add","next":null,"parent":"q*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#9",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#9":{"opcode":"operator_mod","next":null,"parent":"#7","inputs":{"NUM1":[3,"aU`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU`":{"opcode":"argument_reporter_string_number","next":null,"parent":"#9","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#8":{"opcode":"operator_mod","next":null,"parent":"q*","inputs":{"NUM1":[3,"#!",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"#!":{"opcode":"operator_multiply","next":null,"parent":"#8","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"##",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"##":{"opcode":"data_itemoflist","next":null,"parent":"#!","inputs":{"INDEX":[3,"#%",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#%":{"opcode":"operator_add","next":null,"parent":"##","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#(":{"opcode":"operator_mathop","next":null,"parent":"#%","inputs":{"NUM":[3,"#)",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#)":{"opcode":"operator_divide","next":null,"parent":"#(","inputs":{"NUM1":[3,"aU{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU{":{"opcode":"argument_reporter_string_number","next":null,"parent":"#)","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"SC":{"opcode":"data_setvariableto","next":"q+","parent":"aQ","inputs":{"VALUE":[3,"#*",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"#*":{"opcode":"data_itemoflist","next":null,"parent":"SC","inputs":{"INDEX":[3,"#+",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#+":{"opcode":"operator_add","next":null,"parent":"#*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#,",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#,":{"opcode":"operator_mod","next":null,"parent":"#+","inputs":{"NUM1":[3,"aU|",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU|":{"opcode":"argument_reporter_string_number","next":null,"parent":"#,","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q+":{"opcode":"data_replaceitemoflist","next":null,"parent":"SC","inputs":{"INDEX":[3,"#-",[7,"0"]],"ITEM":[3,"#.",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#-":{"opcode":"operator_add","next":null,"parent":"q+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#/":{"opcode":"operator_mod","next":null,"parent":"#-","inputs":{"NUM1":[3,"aU}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU}":{"opcode":"argument_reporter_string_number","next":null,"parent":"#/","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#.":{"opcode":"operator_mod","next":null,"parent":"q+","inputs":{"NUM1":[3,"#:",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"#:":{"opcode":"operator_multiply","next":null,"parent":"#.","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"#;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#;":{"opcode":"data_itemoflist","next":null,"parent":"#:","inputs":{"INDEX":[3,"#=",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#=":{"opcode":"operator_add","next":null,"parent":"#;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#?":{"opcode":"operator_mod","next":null,"parent":"#=","inputs":{"NUM1":[3,"aU~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aU~":{"opcode":"argument_reporter_string_number","next":null,"parent":"#?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q)":{"opcode":"data_replaceitemoflist","next":"aVa","parent":"aQ","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"#@",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#@":{"opcode":"operator_add","next":null,"parent":"q)","inputs":{"NUM1":[3,"aVb",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aVb":{"opcode":"operator_gt","next":null,"parent":"#@","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aVa":{"opcode":"control_stop","next":null,"parent":"q)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gi":{"opcode":"data_replaceitemoflist","next":"q,","parent":"v","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false,"comment":"aVc"},"q,":{"opcode":"data_setvariableto","next":"cX","parent":"Gi","inputs":{"VALUE":[3,"q-",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"q-":{"opcode":"operator_mod","next":null,"parent":"q,","inputs":{"NUM1":[3,"#[",[4,"0"]],"NUM2":[3,"#]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#[":{"opcode":"data_itemoflist","next":null,"parent":"q-","inputs":{"INDEX":[3,"#^",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#^":{"opcode":"operator_add","next":null,"parent":"#[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#_":{"opcode":"operator_mathop","next":null,"parent":"#^","inputs":{"NUM":[3,"#`",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"#`":{"opcode":"operator_divide","next":null,"parent":"#_","inputs":{"NUM1":[3,"aVd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVd":{"opcode":"argument_reporter_string_number","next":null,"parent":"#`","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"#]":{"opcode":"data_itemoflist","next":null,"parent":"q-","inputs":{"INDEX":[3,"#{",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#{":{"opcode":"operator_add","next":null,"parent":"#]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"#|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#|":{"opcode":"operator_mod","next":null,"parent":"#{","inputs":{"NUM1":[3,"aVe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVe":{"opcode":"argument_reporter_string_number","next":null,"parent":"#|","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"cX":{"opcode":"data_replaceitemoflist","next":"#}","parent":"q,","inputs":{"INDEX":[3,"#~",[7,"0"]],"ITEM":[3,"%a",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"#~":{"opcode":"operator_add","next":null,"parent":"cX","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%b":{"opcode":"operator_mod","next":null,"parent":"#~","inputs":{"NUM1":[3,"aVf",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVf":{"opcode":"argument_reporter_string_number","next":null,"parent":"%b","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"%a":{"opcode":"operator_mathop","next":null,"parent":"cX","inputs":{"NUM":[3,"q.",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q.":{"opcode":"operator_divide","next":null,"parent":"%a","inputs":{"NUM1":[3,"%c",[4,"0"]],"NUM2":[3,"%d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%c":{"opcode":"data_itemoflist","next":null,"parent":"q.","inputs":{"INDEX":[3,"%e",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%e":{"opcode":"operator_add","next":null,"parent":"%c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%f":{"opcode":"operator_mathop","next":null,"parent":"%e","inputs":{"NUM":[3,"%g",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"%g":{"opcode":"operator_divide","next":null,"parent":"%f","inputs":{"NUM1":[3,"aVg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVg":{"opcode":"argument_reporter_string_number","next":null,"parent":"%g","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"%d":{"opcode":"data_itemoflist","next":null,"parent":"q.","inputs":{"INDEX":[3,"%h",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%h":{"opcode":"operator_add","next":null,"parent":"%d","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%i":{"opcode":"operator_mod","next":null,"parent":"%h","inputs":{"NUM1":[3,"aVh",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVh":{"opcode":"argument_reporter_string_number","next":null,"parent":"%i","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"#}":{"opcode":"data_replaceitemoflist","next":"e~","parent":"cX","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"e~":{"opcode":"control_if","next":"aVi","parent":"#}","inputs":{"CONDITION":[2,"%j"],"SUBSTACK":[2,"%k"]},"fields":{},"shadow":false,"topLevel":false},"%j":{"opcode":"operator_equals","next":null,"parent":"e~","inputs":{"OPERAND1":[3,"%l",[10,""]],"OPERAND2":[1,[10,"NaN"]]},"fields":{},"shadow":false,"topLevel":false},"%l":{"opcode":"data_itemoflist","next":null,"parent":"%j","inputs":{"INDEX":[3,"%m",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%m":{"opcode":"operator_add","next":null,"parent":"%l","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%n":{"opcode":"operator_mod","next":null,"parent":"%m","inputs":{"NUM1":[3,"aVj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVj":{"opcode":"argument_reporter_string_number","next":null,"parent":"%n","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"%k":{"opcode":"data_replaceitemoflist","next":"%o","parent":"e~","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%o":{"opcode":"data_replaceitemoflist","next":null,"parent":"%k","inputs":{"INDEX":[3,"%p",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%p":{"opcode":"operator_add","next":null,"parent":"%o","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%q":{"opcode":"operator_mod","next":null,"parent":"%p","inputs":{"NUM1":[3,"aVk",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVk":{"opcode":"argument_reporter_string_number","next":null,"parent":"%q","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aVi":{"opcode":"control_stop","next":null,"parent":"e~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G":{"opcode":"control_if","next":"w","parent":"cG","inputs":{"CONDITION":[2,"%r"],"SUBSTACK":[2,"cY"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lI"},"%r":{"opcode":"operator_lt","next":null,"parent":"G","inputs":{"OPERAND1":[3,"aVl",[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"aVl":{"opcode":"argument_reporter_string_number","next":null,"parent":"%r","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"cY":{"opcode":"control_if","next":"aVm","parent":"G","inputs":{"CONDITION":[2,"%s"],"SUBSTACK":[2,"fa"]},"fields":{},"shadow":false,"topLevel":false},"%s":{"opcode":"operator_not","next":null,"parent":"cY","inputs":{"OPERAND":[2,"q/"]},"fields":{},"shadow":false,"topLevel":false},"q/":{"opcode":"operator_equals","next":null,"parent":"%s","inputs":{"OPERAND1":[3,"%t",[10,""]],"OPERAND2":[3,"%u",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"%t":{"opcode":"data_itemoflist","next":null,"parent":"q/","inputs":{"INDEX":[3,"%v",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%v":{"opcode":"operator_add","next":null,"parent":"%t","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%w",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%w":{"opcode":"operator_mod","next":null,"parent":"%v","inputs":{"NUM1":[3,"aVn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVn":{"opcode":"argument_reporter_string_number","next":null,"parent":"%w","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"%u":{"opcode":"data_itemoflist","next":null,"parent":"q/","inputs":{"INDEX":[3,"%x",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%x":{"opcode":"operator_add","next":null,"parent":"%u","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%y":{"opcode":"operator_mathop","next":null,"parent":"%x","inputs":{"NUM":[3,"%z",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"%z":{"opcode":"operator_divide","next":null,"parent":"%y","inputs":{"NUM1":[3,"aVo",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVo":{"opcode":"argument_reporter_string_number","next":null,"parent":"%z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fa":{"opcode":"control_if","next":"aVp","parent":"cY","inputs":{"CONDITION":[2,"Gk"],"SUBSTACK":[2,"aVq"]},"fields":{},"shadow":false,"topLevel":false},"Gk":{"opcode":"operator_or","next":null,"parent":"fa","inputs":{"OPERAND1":[2,"%A"],"OPERAND2":[2,"Gl"]},"fields":{},"shadow":false,"topLevel":false},"%A":{"opcode":"operator_equals","next":null,"parent":"Gk","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"%B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"%B":{"opcode":"data_itemoflist","next":null,"parent":"%A","inputs":{"INDEX":[3,"aVr",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aVr":{"opcode":"operator_add","next":null,"parent":"%B","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gl":{"opcode":"operator_and","next":null,"parent":"Gk","inputs":{"OPERAND1":[2,"%C"],"OPERAND2":[2,"%D"]},"fields":{},"shadow":false,"topLevel":false},"%C":{"opcode":"operator_lt","next":null,"parent":"Gl","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"%E",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"%E":{"opcode":"data_itemoflist","next":null,"parent":"%C","inputs":{"INDEX":[3,"aVs",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aVs":{"opcode":"operator_add","next":null,"parent":"%E","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%D":{"opcode":"operator_equals","next":null,"parent":"Gl","inputs":{"OPERAND1":[3,"%F",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%F":{"opcode":"data_itemoflist","next":null,"parent":"%D","inputs":{"INDEX":[3,"aVt",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aVt":{"opcode":"operator_add","next":null,"parent":"%F","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aVq":{"opcode":"data_changevariableby","next":null,"parent":"fa","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aVp":{"opcode":"data_changevariableby","next":null,"parent":"fa","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aVm":{"opcode":"control_stop","next":null,"parent":"cY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"w":{"opcode":"control_if","next":"x","parent":"G","inputs":{"CONDITION":[2,"%G"],"SUBSTACK":[2,"q:"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lJ"},"%G":{"opcode":"operator_lt","next":null,"parent":"w","inputs":{"OPERAND1":[3,"aVu",[10,""]],"OPERAND2":[1,[10,"176"]]},"fields":{},"shadow":false,"topLevel":false},"aVu":{"opcode":"argument_reporter_string_number","next":null,"parent":"%G","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q:":{"opcode":"data_setvariableto","next":"aVv","parent":"w","inputs":{"VALUE":[3,"q;",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"q;":{"opcode":"operator_add","next":null,"parent":"q:","inputs":{"NUM1":[3,"%H",[4,"0"]],"NUM2":[3,"aVw",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%H":{"opcode":"operator_multiply","next":null,"parent":"q;","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"%I",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%I":{"opcode":"operator_mod","next":null,"parent":"%H","inputs":{"NUM1":[3,"aVx",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVx":{"opcode":"argument_reporter_string_number","next":null,"parent":"%I","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aVw":{"opcode":"argument_reporter_string_number","next":null,"parent":"q;","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aVv":{"opcode":"control_stop","next":null,"parent":"q:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x":{"opcode":"control_if","next":"y","parent":"w","inputs":{"CONDITION":[2,"%J"],"SUBSTACK":[2,"b4"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lK"},"%J":{"opcode":"operator_lt","next":null,"parent":"x","inputs":{"OPERAND1":[3,"aVy",[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"aVy":{"opcode":"argument_reporter_string_number","next":null,"parent":"%J","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"b4":{"opcode":"control_if_else","next":"aVz","parent":"x","inputs":{"CONDITION":[2,"aVA"],"SUBSTACK":[2,"%K"],"SUBSTACK2":[2,"%L"]},"fields":{},"shadow":false,"topLevel":false},"aVA":{"opcode":"operator_equals","next":null,"parent":"b4","inputs":{"OPERAND1":[3,[12,"VIP jumps","YiRV7D4$v56yf}?X(y.j"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%K":{"opcode":"data_setvariableto","next":null,"parent":"b4","inputs":{"VALUE":[3,"lL",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"lL":{"opcode":"operator_add","next":null,"parent":"%K","inputs":{"NUM1":[3,"%M",[4,"0"]],"NUM2":[3,"lM",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%M":{"opcode":"data_itemoflist","next":null,"parent":"lL","inputs":{"INDEX":[3,"%N",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%N":{"opcode":"operator_add","next":null,"parent":"%M","inputs":{"NUM1":[3,"%O",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%O":{"opcode":"operator_mod","next":null,"parent":"%N","inputs":{"NUM1":[3,"aVB",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVB":{"opcode":"argument_reporter_string_number","next":null,"parent":"%O","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"lM":{"opcode":"operator_add","next":null,"parent":"lL","inputs":{"NUM1":[3,"%P",[4,"0"]],"NUM2":[3,"aVC",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%P":{"opcode":"operator_multiply","next":null,"parent":"lM","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"%Q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%Q":{"opcode":"operator_mod","next":null,"parent":"%P","inputs":{"NUM1":[3,"aVD",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVD":{"opcode":"argument_reporter_string_number","next":null,"parent":"%Q","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aVC":{"opcode":"argument_reporter_string_number","next":null,"parent":"lM","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"%L":{"opcode":"data_setvariableto","next":null,"parent":"b4","inputs":{"VALUE":[3,"q=",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"q=":{"opcode":"operator_add","next":null,"parent":"%L","inputs":{"NUM1":[3,"aVE",[4,"0"]],"NUM2":[3,"q?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVE":{"opcode":"data_itemoflist","next":null,"parent":"q=","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"q?":{"opcode":"operator_add","next":null,"parent":"q=","inputs":{"NUM1":[3,"%R",[4,"0"]],"NUM2":[3,"aVF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%R":{"opcode":"operator_multiply","next":null,"parent":"q?","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"%S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%S":{"opcode":"operator_mod","next":null,"parent":"%R","inputs":{"NUM1":[3,"aVG",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVG":{"opcode":"argument_reporter_string_number","next":null,"parent":"%S","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aVF":{"opcode":"argument_reporter_string_number","next":null,"parent":"q?","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aVz":{"opcode":"control_stop","next":null,"parent":"b4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"y":{"opcode":"control_if","next":"K","parent":"x","inputs":{"CONDITION":[2,"%T"],"SUBSTACK":[2,"%U"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lN"},"%T":{"opcode":"operator_lt","next":null,"parent":"y","inputs":{"OPERAND1":[3,"aVH",[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},"aVH":{"opcode":"argument_reporter_string_number","next":null,"parent":"%T","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"%U":{"opcode":"data_setvariableto","next":"q@","parent":"y","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"q@":{"opcode":"data_setvariableto","next":"%V","parent":"%U","inputs":{"VALUE":[3,"aVI",[10,""]]},"fields":{"VARIABLE":["chip8.rand","{a[B7#cNJicY#22S6G[g"]},"shadow":false,"topLevel":false},"aVI":{"opcode":"operator_random","next":null,"parent":"q@","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"255"]]},"fields":{},"shadow":false,"topLevel":false},"%V":{"opcode":"data_setvariableto","next":"Gm","parent":"q@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"Gm":{"opcode":"control_repeat","next":"q[","parent":"%V","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"q]"]},"fields":{},"shadow":false,"topLevel":false},"q]":{"opcode":"data_setvariableto","next":"q^","parent":"Gm","inputs":{"VALUE":[3,"%W",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"%W":{"opcode":"operator_round","next":null,"parent":"q]","inputs":{"NUM":[3,"%X",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%X":{"opcode":"operator_mathop","next":null,"parent":"%W","inputs":{"NUM":[3,"%Y",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"%Y":{"opcode":"operator_multiply","next":null,"parent":"%X","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,"aVJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVJ":{"opcode":"operator_mathop","next":null,"parent":"%Y","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"q^":{"opcode":"data_changevariableby","next":"aVK","parent":"q]","inputs":{"VALUE":[3,"%Z",[4,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"%Z":{"opcode":"operator_multiply","next":null,"parent":"q^","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,"%0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%0":{"opcode":"operator_gt","next":null,"parent":"%Z","inputs":{"OPERAND1":[3,"lO",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"lO":{"opcode":"operator_add","next":null,"parent":"%0","inputs":{"NUM1":[3,"%1",[4,"0"]],"NUM2":[3,"%2",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%1":{"opcode":"operator_mod","next":null,"parent":"lO","inputs":{"NUM1":[3,"%3",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"%3":{"opcode":"operator_mathop","next":null,"parent":"%1","inputs":{"NUM":[3,"%4",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"%4":{"opcode":"operator_divide","next":null,"parent":"%3","inputs":{"NUM1":[3,"aVL",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVL":{"opcode":"argument_reporter_string_number","next":null,"parent":"%4","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"%2":{"opcode":"operator_mod","next":null,"parent":"lO","inputs":{"NUM1":[3,"%5",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"%5":{"opcode":"operator_mathop","next":null,"parent":"%2","inputs":{"NUM":[3,"aVM",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aVM":{"opcode":"operator_divide","next":null,"parent":"%5","inputs":{"NUM1":[3,[12,"chip8.rand","{a[B7#cNJicY#22S6G[g"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVK":{"opcode":"data_changevariableby","next":null,"parent":"q^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"q[":{"opcode":"data_replaceitemoflist","next":"aVN","parent":"Gm","inputs":{"INDEX":[3,"%6",[7,"0"]],"ITEM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%6":{"opcode":"operator_add","next":null,"parent":"q[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%7",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%7":{"opcode":"operator_mod","next":null,"parent":"%6","inputs":{"NUM1":[3,"aVO",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVO":{"opcode":"argument_reporter_string_number","next":null,"parent":"%7","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aVN":{"opcode":"control_stop","next":null,"parent":"q[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"K":{"opcode":"control_if","next":"cZ","parent":"y","inputs":{"CONDITION":[2,"%8"],"SUBSTACK":[2,"%9"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lP"},"%8":{"opcode":"operator_lt","next":null,"parent":"K","inputs":{"OPERAND1":[3,"aVP",[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"aVP":{"opcode":"argument_reporter_string_number","next":null,"parent":"%8","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"%9":{"opcode":"control_clear_counter","next":"%!","parent":"K","inputs":{},"fields":{},"shadow":false,"topLevel":false},"%!":{"opcode":"data_setvariableto","next":"q_","parent":"%9","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"q_":{"opcode":"data_setvariableto","next":"b5","parent":"%!","inputs":{"VALUE":[3,"%#",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"%#":{"opcode":"data_itemoflist","next":null,"parent":"q_","inputs":{"INDEX":[3,"%%",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%%":{"opcode":"operator_add","next":null,"parent":"%#","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"%(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%(":{"opcode":"operator_mathop","next":null,"parent":"%%","inputs":{"NUM":[3,"%)",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"%)":{"opcode":"operator_divide","next":null,"parent":"%(","inputs":{"NUM1":[3,"aVQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"%)","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"b5":{"opcode":"control_if","next":"q`","parent":"q_","inputs":{"CONDITION":[2,"aVR"],"SUBSTACK":[2,"fb"]},"fields":{},"shadow":false,"topLevel":false},"aVR":{"opcode":"operator_gt","next":null,"parent":"b5","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fb":{"opcode":"control_if_else","next":null,"parent":"b5","inputs":{"CONDITION":[2,"Gn"],"SUBSTACK":[2,"%*"],"SUBSTACK2":[2,"SD"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aVS"},"Gn":{"opcode":"operator_and","next":null,"parent":"fb","inputs":{"OPERAND1":[2,"aVT"],"OPERAND2":[2,"aVU"]},"fields":{},"shadow":false,"topLevel":false},"aVT":{"opcode":"operator_equals","next":null,"parent":"Gn","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"aVU":{"opcode":"operator_gt","next":null,"parent":"Gn","inputs":{"OPERAND1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"%*":{"opcode":"data_setvariableto","next":"%+","parent":"fb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"%+":{"opcode":"control_repeat","next":null,"parent":"%*","inputs":{"TIMES":[3,[12,"chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"],[6,"0"]],"SUBSTACK":[2,"Go"]},"fields":{},"shadow":false,"topLevel":false},"Go":{"opcode":"data_setvariableto","next":"Gp","parent":"%+","inputs":{"VALUE":[3,"%,",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"%,":{"opcode":"data_itemoflist","next":null,"parent":"Go","inputs":{"INDEX":[3,"%-",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"%-":{"opcode":"operator_add","next":null,"parent":"%,","inputs":{"NUM1":[3,"%.",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%.":{"opcode":"operator_mod","next":null,"parent":"%-","inputs":{"NUM1":[3,"aVV",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVV":{"opcode":"argument_reporter_string_number","next":null,"parent":"%.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Gp":{"opcode":"control_repeat","next":"aVW","parent":"Go","inputs":{"TIMES":[3,[12,"chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"],[6,"0"]],"SUBSTACK":[2,"lQ"]},"fields":{},"shadow":false,"topLevel":false},"lQ":{"opcode":"control_if","next":"%/","parent":"Gp","inputs":{"CONDITION":[2,"%:"],"SUBSTACK":[2,"lR"]},"fields":{},"shadow":false,"topLevel":false},"%:":{"opcode":"operator_not","next":null,"parent":"lQ","inputs":{"OPERAND":[2,"%;"]},"fields":{},"shadow":false,"topLevel":false},"%;":{"opcode":"operator_equals","next":null,"parent":"%:","inputs":{"OPERAND1":[3,"%=",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%=":{"opcode":"data_itemoflist","next":null,"parent":"%;","inputs":{"INDEX":[3,"aVX",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aVX":{"opcode":"operator_add","next":null,"parent":"%=","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"lR":{"opcode":"control_if","next":"Gq","parent":"lQ","inputs":{"CONDITION":[2,"%?"],"SUBSTACK":[2,"aVY"]},"fields":{},"shadow":false,"topLevel":false},"%?":{"opcode":"operator_equals","next":null,"parent":"lR","inputs":{"OPERAND1":[3,"%@",[10,""]],"OPERAND2":[3,[12,"chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"%@":{"opcode":"data_itemoflist","next":null,"parent":"%?","inputs":{"INDEX":[3,"%[",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"%[":{"opcode":"operator_add","next":null,"parent":"%@","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Gr",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Gr":{"opcode":"operator_add","next":null,"parent":"%[","inputs":{"NUM1":[3,"aVZ",[4,"0"]],"NUM2":[3,"aV0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVZ":{"opcode":"operator_mod","next":null,"parent":"Gr","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aV0":{"opcode":"operator_multiply","next":null,"parent":"Gr","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aVY":{"opcode":"control_incr_counter","next":null,"parent":"lR","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Gq":{"opcode":"data_replaceitemoflist","next":null,"parent":"lR","inputs":{"INDEX":[3,"%]",[7,"0"]],"ITEM":[3,"%^",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"%]":{"opcode":"operator_add","next":null,"parent":"Gq","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Gs",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Gs":{"opcode":"operator_add","next":null,"parent":"%]","inputs":{"NUM1":[3,"aV1",[4,"0"]],"NUM2":[3,"aV2",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV1":{"opcode":"operator_mod","next":null,"parent":"Gs","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aV2":{"opcode":"operator_multiply","next":null,"parent":"Gs","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%^":{"opcode":"data_itemoflist","next":null,"parent":"Gq","inputs":{"INDEX":[3,"aV3",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aV3":{"opcode":"operator_add","next":null,"parent":"%^","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%/":{"opcode":"data_changevariableby","next":"aV4","parent":"lQ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aV4":{"opcode":"data_changevariableby","next":null,"parent":"%/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aVW":{"opcode":"data_changevariableby","next":null,"parent":"Gp","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"SD":{"opcode":"data_setvariableto","next":"SE","parent":"fb","inputs":{"VALUE":[3,"%_",[10,""]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"%_":{"opcode":"operator_add","next":null,"parent":"SD","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"SF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"SF":{"opcode":"operator_and","next":null,"parent":"%_","inputs":{"OPERAND1":[2,"%`"],"OPERAND2":[2,"SG"]},"fields":{},"shadow":false,"topLevel":false},"%`":{"opcode":"operator_equals","next":null,"parent":"SF","inputs":{"OPERAND1":[3,"%{",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%{":{"opcode":"operator_mod","next":null,"parent":"%`","inputs":{"NUM1":[3,"aV5",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aV5":{"opcode":"argument_reporter_string_number","next":null,"parent":"%{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"SG":{"opcode":"operator_or","next":null,"parent":"SF","inputs":{"OPERAND1":[2,"aV6"],"OPERAND2":[2,"aV7"]},"fields":{},"shadow":false,"topLevel":false},"aV6":{"opcode":"operator_equals","next":null,"parent":"SG","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"aV7":{"opcode":"operator_equals","next":null,"parent":"SG","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"SE":{"opcode":"data_setvariableto","next":"PN","parent":"SD","inputs":{"VALUE":[3,"aV8",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"aV8":{"opcode":"operator_mod","next":null,"parent":"SE","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PN":{"opcode":"control_if","next":"Gt","parent":"SE","inputs":{"CONDITION":[2,"aV9"],"SUBSTACK":[2,"aV!"]},"fields":{},"shadow":false,"topLevel":false},"aV9":{"opcode":"operator_equals","next":null,"parent":"PN","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"aV!":{"opcode":"data_setvariableto","next":null,"parent":"PN","inputs":{"VALUE":[3,[12,"CPF","g/7`YLSnP29ZzyQeb?9I"],[10,""]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"Gt":{"opcode":"control_if_else","next":"Gu","parent":"PN","inputs":{"CONDITION":[2,"SH"],"SUBSTACK":[2,"aV#"],"SUBSTACK2":[2,"%|"]},"fields":{},"shadow":false,"topLevel":false},"SH":{"opcode":"operator_and","next":null,"parent":"Gt","inputs":{"OPERAND1":[2,"%}"],"OPERAND2":[2,"%~"]},"fields":{},"shadow":false,"topLevel":false},"%}":{"opcode":"operator_equals","next":null,"parent":"SH","inputs":{"OPERAND1":[3,"(a",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(a":{"opcode":"operator_mod","next":null,"parent":"%}","inputs":{"NUM1":[3,"aV%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aV%":{"opcode":"argument_reporter_string_number","next":null,"parent":"(a","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"%~":{"opcode":"operator_not","next":null,"parent":"SH","inputs":{"OPERAND":[2,"aV("]},"fields":{},"shadow":false,"topLevel":false},"aV(":{"opcode":"operator_equals","next":null,"parent":"%~","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"aV#":{"opcode":"data_setvariableto","next":null,"parent":"Gt","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"%|":{"opcode":"data_setvariableto","next":null,"parent":"Gt","inputs":{"VALUE":[3,"(b",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"(b":{"opcode":"operator_mod","next":null,"parent":"%|","inputs":{"NUM1":[3,"aV)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aV)":{"opcode":"argument_reporter_string_number","next":null,"parent":"(b","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"Gu":{"opcode":"control_if_else","next":"b6","parent":"Gt","inputs":{"CONDITION":[2,"(c"],"SUBSTACK":[2,"SI"],"SUBSTACK2":[2,"aV*"]},"fields":{},"shadow":false,"topLevel":false},"(c":{"opcode":"operator_not","next":null,"parent":"Gu","inputs":{"OPERAND":[2,"(d"]},"fields":{},"shadow":false,"topLevel":false},"(d":{"opcode":"operator_lt","next":null,"parent":"(c","inputs":{"OPERAND1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[10,""]],"OPERAND2":[3,"aV+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aV+":{"opcode":"operator_add","next":null,"parent":"(d","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"SI":{"opcode":"control_if","next":null,"parent":"Gu","inputs":{"CONDITION":[2,"aV,"],"SUBSTACK":[2,"aV-"]},"fields":{},"shadow":false,"topLevel":false},"aV,":{"opcode":"operator_gt","next":null,"parent":"SI","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aV-":{"opcode":"data_setvariableto","next":null,"parent":"SI","inputs":{"VALUE":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"aV*":{"opcode":"data_setvariableto","next":null,"parent":"Gu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"b6":{"opcode":"control_if","next":"eX","parent":"Gu","inputs":{"CONDITION":[2,"(e"],"SUBSTACK":[2,"(f"]},"fields":{},"shadow":false,"topLevel":false},"(e":{"opcode":"operator_not","next":null,"parent":"b6","inputs":{"OPERAND":[2,"aV."]},"fields":{},"shadow":false,"topLevel":false},"aV.":{"opcode":"operator_equals","next":null,"parent":"(e","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"(f":{"opcode":"control_repeat","next":null,"parent":"b6","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"lS"]},"fields":{},"shadow":false,"topLevel":false},"lS":{"opcode":"data_setvariableto","next":"q{","parent":"(f","inputs":{"VALUE":[3,"(g",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"(g":{"opcode":"operator_mod","next":null,"parent":"lS","inputs":{"NUM1":[3,"(h",[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(h":{"opcode":"data_itemoflist","next":null,"parent":"(g","inputs":{"INDEX":[3,"(i",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(i":{"opcode":"operator_add","next":null,"parent":"(h","inputs":{"NUM1":[3,"(j",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(j":{"opcode":"operator_mod","next":null,"parent":"(i","inputs":{"NUM1":[3,"aV/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aV/":{"opcode":"argument_reporter_string_number","next":null,"parent":"(j","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q{":{"opcode":"control_repeat","next":"aV:","parent":"lS","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"lT"]},"fields":{},"shadow":false,"topLevel":false},"lT":{"opcode":"data_setvariableto","next":"q|","parent":"q{","inputs":{"VALUE":[3,"(k",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"(k":{"opcode":"data_itemoflist","next":null,"parent":"lT","inputs":{"INDEX":[3,"aV;",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aV;":{"opcode":"operator_add","next":null,"parent":"(k","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q|":{"opcode":"control_repeat","next":"aV=","parent":"lT","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"fc"]},"fields":{},"shadow":false,"topLevel":false},"fc":{"opcode":"control_if","next":"q}","parent":"q|","inputs":{"CONDITION":[2,"SJ"],"SUBSTACK":[2,"fd"]},"fields":{},"shadow":false,"topLevel":false},"SJ":{"opcode":"operator_and","next":null,"parent":"fc","inputs":{"OPERAND1":[2,"aV?"],"OPERAND2":[2,"(l"]},"fields":{},"shadow":false,"topLevel":false},"aV?":{"opcode":"operator_gt","next":null,"parent":"SJ","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"(l":{"opcode":"operator_not","next":null,"parent":"SJ","inputs":{"OPERAND":[2,"SK"]},"fields":{},"shadow":false,"topLevel":false},"SK":{"opcode":"operator_and","next":null,"parent":"(l","inputs":{"OPERAND1":[2,"SL"],"OPERAND2":[2,"(m"]},"fields":{},"shadow":false,"topLevel":false},"SL":{"opcode":"operator_or","next":null,"parent":"SK","inputs":{"OPERAND1":[2,"aV@"],"OPERAND2":[2,"aV["]},"fields":{},"shadow":false,"topLevel":false},"aV@":{"opcode":"operator_gt","next":null,"parent":"SL","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aV[":{"opcode":"operator_gt","next":null,"parent":"SL","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(m":{"opcode":"operator_not","next":null,"parent":"SK","inputs":{"OPERAND":[2,"aV]"]},"fields":{},"shadow":false,"topLevel":false},"aV]":{"opcode":"operator_equals","next":null,"parent":"(m","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"fd":{"opcode":"control_if_else","next":null,"parent":"fc","inputs":{"CONDITION":[2,"(n"],"SUBSTACK":[2,"q~"],"SUBSTACK2":[2,"fe"]},"fields":{},"shadow":false,"topLevel":false},"(n":{"opcode":"operator_equals","next":null,"parent":"fd","inputs":{"OPERAND1":[3,"(o",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(o":{"opcode":"data_itemoflist","next":null,"parent":"(n","inputs":{"INDEX":[3,"(p",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"(p":{"opcode":"operator_add","next":null,"parent":"(o","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ra",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ra":{"opcode":"operator_add","next":null,"parent":"(p","inputs":{"NUM1":[3,"aV^",[4,"0"]],"NUM2":[3,"(q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV^":{"opcode":"operator_mod","next":null,"parent":"ra","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(q":{"opcode":"operator_multiply","next":null,"parent":"ra","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aV_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV_":{"opcode":"operator_mod","next":null,"parent":"(q","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"q~":{"opcode":"control_if","next":null,"parent":"fd","inputs":{"CONDITION":[2,"(r"],"SUBSTACK":[2,"(s"]},"fields":{},"shadow":false,"topLevel":false},"(r":{"opcode":"operator_not","next":null,"parent":"q~","inputs":{"OPERAND":[2,"aV`"]},"fields":{},"shadow":false,"topLevel":false},"aV`":{"opcode":"operator_equals","next":null,"parent":"(r","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"(s":{"opcode":"data_replaceitemoflist","next":null,"parent":"q~","inputs":{"INDEX":[3,"(t",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"(t":{"opcode":"operator_add","next":null,"parent":"(s","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rb":{"opcode":"operator_add","next":null,"parent":"(t","inputs":{"NUM1":[3,"aV{",[4,"0"]],"NUM2":[3,"(u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV{":{"opcode":"operator_mod","next":null,"parent":"rb","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(u":{"opcode":"operator_multiply","next":null,"parent":"rb","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aV|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV|":{"opcode":"operator_mod","next":null,"parent":"(u","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fe":{"opcode":"control_if","next":"aV}","parent":"fd","inputs":{"CONDITION":[2,"(v"],"SUBSTACK":[2,"(w"]},"fields":{},"shadow":false,"topLevel":false},"(v":{"opcode":"operator_not","next":null,"parent":"fe","inputs":{"OPERAND":[2,"aV~"]},"fields":{},"shadow":false,"topLevel":false},"aV~":{"opcode":"operator_equals","next":null,"parent":"(v","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(w":{"opcode":"data_replaceitemoflist","next":null,"parent":"fe","inputs":{"INDEX":[3,"(x",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"(x":{"opcode":"operator_add","next":null,"parent":"(w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rc",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rc":{"opcode":"operator_add","next":null,"parent":"(x","inputs":{"NUM1":[3,"aWa",[4,"0"]],"NUM2":[3,"(y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWa":{"opcode":"operator_mod","next":null,"parent":"rc","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(y":{"opcode":"operator_multiply","next":null,"parent":"rc","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aWb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWb":{"opcode":"operator_mod","next":null,"parent":"(y","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV}":{"opcode":"control_incr_counter","next":null,"parent":"fe","inputs":{},"fields":{},"shadow":false,"topLevel":false},"q}":{"opcode":"data_setvariableto","next":"aWc","parent":"fc","inputs":{"VALUE":[3,"(z",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"(z":{"opcode":"operator_mod","next":null,"parent":"q}","inputs":{"NUM1":[3,"aWd",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aWd":{"opcode":"operator_multiply","next":null,"parent":"(z","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aWc":{"opcode":"data_changevariableby","next":null,"parent":"q}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aV=":{"opcode":"data_changevariableby","next":null,"parent":"q|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aV:":{"opcode":"data_changevariableby","next":null,"parent":"q{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"eX":{"opcode":"control_if","next":"6","parent":"b6","inputs":{"CONDITION":[2,"aWe"],"SUBSTACK":[2,"SM"]},"fields":{},"shadow":false,"topLevel":false},"aWe":{"opcode":"operator_equals","next":null,"parent":"eX","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"SM":{"opcode":"data_changevariableby","next":"(A","parent":"eX","inputs":{"VALUE":[3,"aWf",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"aWf":{"opcode":"operator_multiply","next":null,"parent":"SM","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(A":{"opcode":"data_setvariableto","next":"(B","parent":"SM","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"(B":{"opcode":"data_setvariableto","next":null,"parent":"(A","inputs":{"VALUE":[3,"(C",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"(C":{"opcode":"data_itemoflist","next":null,"parent":"(B","inputs":{"INDEX":[3,"(D",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(D":{"opcode":"operator_add","next":null,"parent":"(C","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"(E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(E":{"opcode":"operator_mathop","next":null,"parent":"(D","inputs":{"NUM":[3,"(F",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"(F":{"opcode":"operator_divide","next":null,"parent":"(E","inputs":{"NUM1":[3,"aWg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWg":{"opcode":"argument_reporter_string_number","next":null,"parent":"(F","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aO#":{"opcode":"operator_lt","next":null,"parent":"6","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ec":{"opcode":"control_repeat","next":null,"parent":"6","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"rd"]},"fields":{},"shadow":false,"topLevel":false},"rd":{"opcode":"data_setvariableto","next":"re","parent":"Ec","inputs":{"VALUE":[3,"(G",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"(G":{"opcode":"data_itemoflist","next":null,"parent":"rd","inputs":{"INDEX":[3,"(H",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(H":{"opcode":"operator_add","next":null,"parent":"(G","inputs":{"NUM1":[3,"(I",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(I":{"opcode":"operator_mod","next":null,"parent":"(H","inputs":{"NUM1":[3,"aWh",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWh":{"opcode":"argument_reporter_string_number","next":null,"parent":"(I","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"re":{"opcode":"control_repeat","next":"aWi","parent":"rd","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"rf"]},"fields":{},"shadow":false,"topLevel":false},"rf":{"opcode":"data_setvariableto","next":"rg","parent":"re","inputs":{"VALUE":[3,"(J",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"(J":{"opcode":"data_itemoflist","next":null,"parent":"rf","inputs":{"INDEX":[3,"aWj",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWj":{"opcode":"operator_add","next":null,"parent":"(J","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rg":{"opcode":"control_repeat","next":"aWk","parent":"rf","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"ff"]},"fields":{},"shadow":false,"topLevel":false},"ff":{"opcode":"control_if","next":"rh","parent":"rg","inputs":{"CONDITION":[2,"SN"],"SUBSTACK":[2,"fg"]},"fields":{},"shadow":false,"topLevel":false},"SN":{"opcode":"operator_and","next":null,"parent":"ff","inputs":{"OPERAND1":[2,"aWl"],"OPERAND2":[2,"(K"]},"fields":{},"shadow":false,"topLevel":false},"aWl":{"opcode":"operator_gt","next":null,"parent":"SN","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"(K":{"opcode":"operator_not","next":null,"parent":"SN","inputs":{"OPERAND":[2,"SO"]},"fields":{},"shadow":false,"topLevel":false},"SO":{"opcode":"operator_and","next":null,"parent":"(K","inputs":{"OPERAND1":[2,"SP"],"OPERAND2":[2,"(L"]},"fields":{},"shadow":false,"topLevel":false},"SP":{"opcode":"operator_or","next":null,"parent":"SO","inputs":{"OPERAND1":[2,"aWm"],"OPERAND2":[2,"aWn"]},"fields":{},"shadow":false,"topLevel":false},"aWm":{"opcode":"operator_gt","next":null,"parent":"SP","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aWn":{"opcode":"operator_gt","next":null,"parent":"SP","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(L":{"opcode":"operator_not","next":null,"parent":"SO","inputs":{"OPERAND":[2,"aWo"]},"fields":{},"shadow":false,"topLevel":false},"aWo":{"opcode":"operator_equals","next":null,"parent":"(L","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"fg":{"opcode":"control_if_else","next":null,"parent":"ff","inputs":{"CONDITION":[2,"(M"],"SUBSTACK":[2,"ri"],"SUBSTACK2":[2,"fh"]},"fields":{},"shadow":false,"topLevel":false},"(M":{"opcode":"operator_equals","next":null,"parent":"fg","inputs":{"OPERAND1":[3,"(N",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(N":{"opcode":"data_itemoflist","next":null,"parent":"(M","inputs":{"INDEX":[3,"(O",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"(O":{"opcode":"operator_add","next":null,"parent":"(N","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rj",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rj":{"opcode":"operator_add","next":null,"parent":"(O","inputs":{"NUM1":[3,"aWp",[4,"0"]],"NUM2":[3,"(P",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWp":{"opcode":"operator_mod","next":null,"parent":"rj","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(P":{"opcode":"operator_multiply","next":null,"parent":"rj","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aWq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWq":{"opcode":"operator_mod","next":null,"parent":"(P","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ri":{"opcode":"control_if","next":null,"parent":"fg","inputs":{"CONDITION":[2,"(Q"],"SUBSTACK":[2,"(R"]},"fields":{},"shadow":false,"topLevel":false},"(Q":{"opcode":"operator_not","next":null,"parent":"ri","inputs":{"OPERAND":[2,"aWr"]},"fields":{},"shadow":false,"topLevel":false},"aWr":{"opcode":"operator_equals","next":null,"parent":"(Q","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"(R":{"opcode":"data_replaceitemoflist","next":null,"parent":"ri","inputs":{"INDEX":[3,"(S",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"(S":{"opcode":"operator_add","next":null,"parent":"(R","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rk",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rk":{"opcode":"operator_add","next":null,"parent":"(S","inputs":{"NUM1":[3,"aWs",[4,"0"]],"NUM2":[3,"(T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWs":{"opcode":"operator_mod","next":null,"parent":"rk","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(T":{"opcode":"operator_multiply","next":null,"parent":"rk","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aWt",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWt":{"opcode":"operator_mod","next":null,"parent":"(T","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fh":{"opcode":"control_if","next":"aWu","parent":"fg","inputs":{"CONDITION":[2,"(U"],"SUBSTACK":[2,"(V"]},"fields":{},"shadow":false,"topLevel":false},"(U":{"opcode":"operator_not","next":null,"parent":"fh","inputs":{"OPERAND":[2,"aWv"]},"fields":{},"shadow":false,"topLevel":false},"aWv":{"opcode":"operator_equals","next":null,"parent":"(U","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(V":{"opcode":"data_replaceitemoflist","next":null,"parent":"fh","inputs":{"INDEX":[3,"(W",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"(W":{"opcode":"operator_add","next":null,"parent":"(V","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rl",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rl":{"opcode":"operator_add","next":null,"parent":"(W","inputs":{"NUM1":[3,"aWw",[4,"0"]],"NUM2":[3,"(X",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWw":{"opcode":"operator_mod","next":null,"parent":"rl","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(X":{"opcode":"operator_multiply","next":null,"parent":"rl","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"aWx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWx":{"opcode":"operator_mod","next":null,"parent":"(X","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWu":{"opcode":"control_incr_counter","next":null,"parent":"fh","inputs":{},"fields":{},"shadow":false,"topLevel":false},"rh":{"opcode":"data_setvariableto","next":"aWy","parent":"ff","inputs":{"VALUE":[3,"(Y",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"(Y":{"opcode":"operator_mod","next":null,"parent":"rh","inputs":{"NUM1":[3,"aWz",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aWz":{"opcode":"operator_multiply","next":null,"parent":"(Y","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aWy":{"opcode":"data_changevariableby","next":null,"parent":"rh","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aWk":{"opcode":"data_changevariableby","next":null,"parent":"rg","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aWi":{"opcode":"data_changevariableby","next":null,"parent":"re","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"pr":{"opcode":"control_if","next":null,"parent":"6","inputs":{"CONDITION":[2,"aWA"],"SUBSTACK":[2,"(Z"]},"fields":{},"shadow":false,"topLevel":false},"aWA":{"opcode":"operator_equals","next":null,"parent":"pr","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"(Z":{"opcode":"data_changevariableby","next":null,"parent":"pr","inputs":{"VALUE":[3,"(0",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"(0":{"opcode":"operator_subtract","next":null,"parent":"(Z","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"aWB",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWB":{"opcode":"operator_multiply","next":null,"parent":"(0","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"q`":{"opcode":"data_replaceitemoflist","next":"aWC","parent":"b5","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"(1",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(1":{"opcode":"operator_add","next":null,"parent":"q`","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"(2",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(2":{"opcode":"operator_lt","next":null,"parent":"(1","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"aWD",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aWD":{"opcode":"control_get_counter","next":null,"parent":"(2","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aWC":{"opcode":"control_stop","next":null,"parent":"q`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cZ":{"opcode":"control_if","next":"fi","parent":"K","inputs":{"CONDITION":[2,"(3"],"SUBSTACK":[2,"b7"]},"fields":{},"shadow":false,"topLevel":false},"(3":{"opcode":"operator_lt","next":null,"parent":"cZ","inputs":{"OPERAND1":[3,"aWE",[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"aWE":{"opcode":"argument_reporter_string_number","next":null,"parent":"(3","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"b7":{"opcode":"control_if_else","next":"aWF","parent":"cZ","inputs":{"CONDITION":[2,"(4"],"SUBSTACK":[2,"rm"],"SUBSTACK2":[2,"rn"]},"fields":{},"shadow":false,"topLevel":false},"(4":{"opcode":"operator_equals","next":null,"parent":"b7","inputs":{"OPERAND1":[3,"aWG",[10,""]],"OPERAND2":[1,[10,"0x9e"]]},"fields":{},"shadow":false,"topLevel":false},"aWG":{"opcode":"argument_reporter_string_number","next":null,"parent":"(4","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rm":{"opcode":"control_if","next":null,"parent":"b7","inputs":{"CONDITION":[2,"(5"],"SUBSTACK":[2,"fj"]},"fields":{},"shadow":false,"topLevel":false},"(5":{"opcode":"operator_equals","next":null,"parent":"rm","inputs":{"OPERAND1":[3,"(6",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(6":{"opcode":"data_itemoflist","next":null,"parent":"(5","inputs":{"INDEX":[3,"(7",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"(7":{"opcode":"operator_add","next":null,"parent":"(6","inputs":{"NUM1":[3,"(8",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(8":{"opcode":"data_itemoflist","next":null,"parent":"(7","inputs":{"INDEX":[3,"(9",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(9":{"opcode":"operator_add","next":null,"parent":"(8","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"(!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(!":{"opcode":"operator_mod","next":null,"parent":"(9","inputs":{"NUM1":[3,"aWH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWH":{"opcode":"argument_reporter_string_number","next":null,"parent":"(!","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fj":{"opcode":"control_if","next":"a,","parent":"rm","inputs":{"CONDITION":[2,"Gv"],"SUBSTACK":[2,"aWI"]},"fields":{},"shadow":false,"topLevel":false},"Gv":{"opcode":"operator_or","next":null,"parent":"fj","inputs":{"OPERAND1":[2,"(#"],"OPERAND2":[2,"Gw"]},"fields":{},"shadow":false,"topLevel":false},"(#":{"opcode":"operator_equals","next":null,"parent":"Gv","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"(%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(%":{"opcode":"data_itemoflist","next":null,"parent":"(#","inputs":{"INDEX":[3,"aWJ",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWJ":{"opcode":"operator_add","next":null,"parent":"(%","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gw":{"opcode":"operator_and","next":null,"parent":"Gv","inputs":{"OPERAND1":[2,"(("],"OPERAND2":[2,"()"]},"fields":{},"shadow":false,"topLevel":false},"((":{"opcode":"operator_lt","next":null,"parent":"Gw","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"(*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(*":{"opcode":"data_itemoflist","next":null,"parent":"((","inputs":{"INDEX":[3,"aWK",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWK":{"opcode":"operator_add","next":null,"parent":"(*","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"()":{"opcode":"operator_equals","next":null,"parent":"Gw","inputs":{"OPERAND1":[3,"(+",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(+":{"opcode":"data_itemoflist","next":null,"parent":"()","inputs":{"INDEX":[3,"aWL",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWL":{"opcode":"operator_add","next":null,"parent":"(+","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aWI":{"opcode":"data_changevariableby","next":null,"parent":"fj","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a,":{"opcode":"data_changevariableby","next":null,"parent":"fj","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"lU"},"rn":{"opcode":"control_if","next":null,"parent":"b7","inputs":{"CONDITION":[2,"(,"],"SUBSTACK":[2,"fk"]},"fields":{},"shadow":false,"topLevel":false},"(,":{"opcode":"operator_equals","next":null,"parent":"rn","inputs":{"OPERAND1":[3,"(-",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"(-":{"opcode":"operator_subtract","next":null,"parent":"(,","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"(.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(.":{"opcode":"operator_multiply","next":null,"parent":"(-","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"(/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(/":{"opcode":"data_itemoflist","next":null,"parent":"(.","inputs":{"INDEX":[3,"(:",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"(:":{"opcode":"operator_add","next":null,"parent":"(/","inputs":{"NUM1":[3,"(;",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(;":{"opcode":"data_itemoflist","next":null,"parent":"(:","inputs":{"INDEX":[3,"(=",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"(=":{"opcode":"operator_add","next":null,"parent":"(;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"(?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(?":{"opcode":"operator_mod","next":null,"parent":"(=","inputs":{"NUM1":[3,"aWM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWM":{"opcode":"argument_reporter_string_number","next":null,"parent":"(?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fk":{"opcode":"control_if","next":"a-","parent":"rn","inputs":{"CONDITION":[2,"Gx"],"SUBSTACK":[2,"aWN"]},"fields":{},"shadow":false,"topLevel":false},"Gx":{"opcode":"operator_or","next":null,"parent":"fk","inputs":{"OPERAND1":[2,"(@"],"OPERAND2":[2,"Gy"]},"fields":{},"shadow":false,"topLevel":false},"(@":{"opcode":"operator_equals","next":null,"parent":"Gx","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"([",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"([":{"opcode":"data_itemoflist","next":null,"parent":"(@","inputs":{"INDEX":[3,"aWO",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWO":{"opcode":"operator_add","next":null,"parent":"([","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gy":{"opcode":"operator_and","next":null,"parent":"Gx","inputs":{"OPERAND1":[2,"(]"],"OPERAND2":[2,"(^"]},"fields":{},"shadow":false,"topLevel":false},"(]":{"opcode":"operator_lt","next":null,"parent":"Gy","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"(_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(_":{"opcode":"data_itemoflist","next":null,"parent":"(]","inputs":{"INDEX":[3,"aWP",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWP":{"opcode":"operator_add","next":null,"parent":"(_","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(^":{"opcode":"operator_equals","next":null,"parent":"Gy","inputs":{"OPERAND1":[3,"(`",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(`":{"opcode":"data_itemoflist","next":null,"parent":"(^","inputs":{"INDEX":[3,"aWQ",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWQ":{"opcode":"operator_add","next":null,"parent":"(`","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aWN":{"opcode":"data_changevariableby","next":null,"parent":"fk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a-":{"opcode":"data_changevariableby","next":null,"parent":"fk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"lV"},"aWF":{"opcode":"control_stop","next":null,"parent":"b7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fi":{"opcode":"control_if","next":"k:","parent":"cZ","inputs":{"CONDITION":[2,"({"],"SUBSTACK":[2,"(|"]},"fields":{},"shadow":false,"topLevel":false},"({":{"opcode":"operator_equals","next":null,"parent":"fi","inputs":{"OPERAND1":[3,"aWR",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWR":{"opcode":"argument_reporter_string_number","next":null,"parent":"({","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"(|":{"opcode":"data_changevariableby","next":"aR","parent":"fi","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aR":{"opcode":"control_if","next":"b8","parent":"(|","inputs":{"CONDITION":[2,"(}"],"SUBSTACK":[2,"ro"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aWS"},"(}":{"opcode":"operator_equals","next":null,"parent":"aR","inputs":{"OPERAND1":[3,"(~",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(~":{"opcode":"operator_mod","next":null,"parent":"(}","inputs":{"NUM1":[3,"aWT",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWT":{"opcode":"argument_reporter_string_number","next":null,"parent":"(~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ro":{"opcode":"data_setvariableto","next":"aWU","parent":"aR","inputs":{"VALUE":[3,"lW",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"lW":{"opcode":"operator_add","next":null,"parent":"ro","inputs":{"NUM1":[3,")a",[4,"0"]],"NUM2":[3,"aWV",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")a":{"opcode":"operator_multiply","next":null,"parent":"lW","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,")b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")b":{"opcode":"data_itemoflist","next":null,"parent":")a","inputs":{"INDEX":[3,"aWW",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWW":{"opcode":"operator_subtract","next":null,"parent":")b","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aWV":{"opcode":"data_itemoflist","next":null,"parent":"lW","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWU":{"opcode":"control_stop","next":null,"parent":"ro","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b8":{"opcode":"control_if","next":"b9","parent":"aR","inputs":{"CONDITION":[2,")c"],"SUBSTACK":[2,"rp"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aWX"},")c":{"opcode":"operator_equals","next":null,"parent":"b8","inputs":{"OPERAND1":[3,")d",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},")d":{"opcode":"operator_mod","next":null,"parent":")c","inputs":{"NUM1":[3,"aWY",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWY":{"opcode":"argument_reporter_string_number","next":null,"parent":")d","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"rp":{"opcode":"data_setvariableto","next":"aWZ","parent":"b8","inputs":{"VALUE":[3,"pC",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"pC":{"opcode":"operator_add","next":null,"parent":"rp","inputs":{"NUM1":[3,"5v",[4,"0"]],"NUM2":[3,"aW0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPk":{"opcode":"operator_subtract","next":null,"parent":"5u","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aW0":{"opcode":"data_itemoflist","next":null,"parent":"pC","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aWZ":{"opcode":"control_stop","next":null,"parent":"rp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b9":{"opcode":"control_if","next":"b!","parent":"b8","inputs":{"CONDITION":[2,")e"],"SUBSTACK":[2,")f"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aW1"},")e":{"opcode":"operator_equals","next":null,"parent":"b9","inputs":{"OPERAND1":[3,")g",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},")g":{"opcode":"operator_mod","next":null,"parent":")e","inputs":{"NUM1":[3,"aW2",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW2":{"opcode":"argument_reporter_string_number","next":null,"parent":")g","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},")f":{"opcode":"data_addtolist","next":"rq","parent":"b9","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"rq":{"opcode":"data_setvariableto","next":"aW3","parent":")f","inputs":{"VALUE":[3,"rr",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"rr":{"opcode":"operator_add","next":null,"parent":"rq","inputs":{"NUM1":[3,")h",[4,"0"]],"NUM2":[3,"aW4",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")h":{"opcode":"operator_multiply","next":null,"parent":"rr","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,")i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")i":{"opcode":"data_itemoflist","next":null,"parent":")h","inputs":{"INDEX":[3,"aW5",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW5":{"opcode":"operator_subtract","next":null,"parent":")i","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aW4":{"opcode":"data_itemoflist","next":null,"parent":"rr","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW3":{"opcode":"control_stop","next":null,"parent":"rq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b!":{"opcode":"control_if","next":"aW6","parent":"b9","inputs":{"CONDITION":[2,")j"],"SUBSTACK":[2,")k"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aW7"},")j":{"opcode":"operator_equals","next":null,"parent":"b!","inputs":{"OPERAND1":[3,")l",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},")l":{"opcode":"operator_mod","next":null,"parent":")j","inputs":{"NUM1":[3,"aW8",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW8":{"opcode":"argument_reporter_string_number","next":null,"parent":")l","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},")k":{"opcode":"data_setvariableto","next":null,"parent":"b!","inputs":{"VALUE":[3,"rs",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"rs":{"opcode":"operator_add","next":null,"parent":")k","inputs":{"NUM1":[3,"aW9",[4,"0"]],"NUM2":[3,"rt",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aW9":{"opcode":"data_itemoflist","next":null,"parent":"rs","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"rt":{"opcode":"operator_add","next":null,"parent":"rs","inputs":{"NUM1":[3,")m",[4,"0"]],"NUM2":[3,"aW!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")m":{"opcode":"operator_multiply","next":null,"parent":"rt","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,")n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")n":{"opcode":"data_itemoflist","next":null,"parent":")m","inputs":{"INDEX":[3,"aW#",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW#":{"opcode":"operator_subtract","next":null,"parent":")n","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aW!":{"opcode":"data_itemoflist","next":null,"parent":"rt","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW6":{"opcode":"control_stop","next":null,"parent":"b!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k:":{"opcode":"control_if","next":"L","parent":"fi","inputs":{"CONDITION":[2,")o"],"SUBSTACK":[2,"4"]},"fields":{},"shadow":false,"topLevel":false},")o":{"opcode":"operator_lt","next":null,"parent":"k:","inputs":{"OPERAND1":[3,"aW%",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW%":{"opcode":"argument_reporter_string_number","next":null,"parent":")o","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"3]":{"opcode":"operator_equals","next":null,"parent":"4","inputs":{"OPERAND1":[3,"aW(",[10,""]],"OPERAND2":[1,[10,"0x01"]]},"fields":{},"shadow":false,"topLevel":false},"aW(":{"opcode":"argument_reporter_string_number","next":null,"parent":"3]","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"pq":{"opcode":"data_setvariableto","next":"aW)","parent":"4","inputs":{"VALUE":[3,")p",[10,""]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},")p":{"opcode":"operator_mod","next":null,"parent":"pq","inputs":{"NUM1":[3,"aW*",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW*":{"opcode":"argument_reporter_string_number","next":null,"parent":")p","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aW)":{"opcode":"control_stop","next":null,"parent":"pq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"3^":{"opcode":"operator_equals","next":null,"parent":"5","inputs":{"OPERAND1":[3,"aW+",[10,""]],"OPERAND2":[1,[10,"0x02"]]},"fields":{},"shadow":false,"topLevel":false},"aW+":{"opcode":"argument_reporter_string_number","next":null,"parent":"3^","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"3_":{"opcode":"data_setvariableto","next":"ru","parent":"5","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"ru":{"opcode":"data_setvariableto","next":")q","parent":"3_","inputs":{"VALUE":[3,"aW,",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aW,":{"opcode":"operator_add","next":null,"parent":"ru","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")q":{"opcode":"data_deletealloflist","next":"rv","parent":"ru","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"rv":{"opcode":"control_repeat","next":"aW-","parent":")q","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"rw"]},"fields":{},"shadow":false,"topLevel":false},"rw":{"opcode":"data_addtolist","next":"aW.","parent":"rv","inputs":{"ITEM":[3,"aW/",[10,""]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"aW/":{"opcode":"data_itemoflist","next":null,"parent":"rw","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW.":{"opcode":"data_changevariableby","next":null,"parent":"rw","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"aW-":{"opcode":"control_stop","next":null,"parent":"rv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"]":{"opcode":"control_if","next":"z","parent":"5","inputs":{"CONDITION":[2,")r"],"SUBSTACK":[2,")s"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aW:"},")r":{"opcode":"operator_equals","next":null,"parent":"]","inputs":{"OPERAND1":[3,"aW;",[10,""]],"OPERAND2":[1,[10,"0x03"]]},"fields":{},"shadow":false,"topLevel":false},"aW;":{"opcode":"argument_reporter_string_number","next":null,"parent":")r","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},")s":{"opcode":"data_setvariableto","next":")t","parent":"]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},")t":{"opcode":"data_setvariableto","next":")u","parent":")s","inputs":{"VALUE":[1,[10,"0x"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},")u":{"opcode":"data_setvariableto","next":"lX","parent":")t","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"lX":{"opcode":"control_repeat","next":"rx","parent":")u","inputs":{"TIMES":[1,[6,"3"]],"SUBSTACK":[2,"lY"]},"fields":{},"shadow":false,"topLevel":false},"lY":{"opcode":"procedures_call","next":"ry","parent":"lX","inputs":{"hW9qrsR8.:i`r8E},#u7":[3,")v",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Convert %s to hex","argumentids":"[\"hW9qrsR8.:i`r8E},#u7\"]","warp":"true"}},")v":{"opcode":"data_itemoflist","next":null,"parent":"lY","inputs":{"INDEX":[3,"aW=",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aW=":{"opcode":"operator_add","next":null,"parent":")v","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ry":{"opcode":"data_setvariableto","next":"aW?","parent":"lY","inputs":{"VALUE":[3,")w",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},")w":{"opcode":"operator_join","next":null,"parent":"ry","inputs":{"STRING1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"STRING2":[3,"rz",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"rz":{"opcode":"operator_join","next":null,"parent":")w","inputs":{"STRING1":[3,"aW@",[10,""]],"STRING2":[3,"aW[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aW@":{"opcode":"operator_letter_of","next":null,"parent":"rz","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aW[":{"opcode":"operator_letter_of","next":null,"parent":"rz","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aW?":{"opcode":"data_changevariableby","next":null,"parent":"ry","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"rx":{"opcode":"data_replaceitemoflist","next":"aW]","parent":"lX","inputs":{"INDEX":[3,")x",[7,"0"]],"ITEM":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},")x":{"opcode":"operator_add","next":null,"parent":"rx","inputs":{"NUM1":[3,")y",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")y":{"opcode":"operator_mod","next":null,"parent":")x","inputs":{"NUM1":[3,"aW^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW^":{"opcode":"argument_reporter_string_number","next":null,"parent":")y","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aW]":{"opcode":"control_stop","next":null,"parent":"rx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z":{"opcode":"control_if","next":"fl","parent":"]","inputs":{"CONDITION":[2,")z"],"SUBSTACK":[2,"rA"]},"fields":{},"shadow":false,"topLevel":false,"comment":"lZ"},")z":{"opcode":"operator_equals","next":null,"parent":"z","inputs":{"OPERAND1":[3,"aW_",[10,""]],"OPERAND2":[1,[10,"0x07"]]},"fields":{},"shadow":false,"topLevel":false},"aW_":{"opcode":"argument_reporter_string_number","next":null,"parent":")z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rA":{"opcode":"data_replaceitemoflist","next":"aW`","parent":"z","inputs":{"INDEX":[3,")A",[7,"0"]],"ITEM":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")A":{"opcode":"operator_add","next":null,"parent":"rA","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")B",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")B":{"opcode":"operator_mod","next":null,"parent":")A","inputs":{"NUM1":[3,"aW{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW{":{"opcode":"argument_reporter_string_number","next":null,"parent":")B","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aW`":{"opcode":"control_stop","next":null,"parent":"rA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fl":{"opcode":"control_if","next":"l0","parent":"z","inputs":{"CONDITION":[2,"aW}"],"SUBSTACK":[2,"aW~"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aW|"},"aW}":{"opcode":"operator_equals","next":null,"parent":"fl","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"aW~":{"opcode":"procedures_call","next":null,"parent":"fl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"l0":{"opcode":"control_if","next":")C","parent":"fl","inputs":{"CONDITION":[2,"aXa"],"SUBSTACK":[2,")D"]},"fields":{},"shadow":false,"topLevel":false},"aXa":{"opcode":"operator_lt","next":null,"parent":"l0","inputs":{"OPERAND1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},")D":{"opcode":"data_setvariableto","next":null,"parent":"l0","inputs":{"VALUE":[3,")E",[10,""]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},")E":{"opcode":"operator_add","next":null,"parent":")D","inputs":{"NUM1":[3,")F",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")F":{"opcode":"operator_mod","next":null,"parent":")E","inputs":{"NUM1":[3,"aXb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXb":{"opcode":"argument_reporter_string_number","next":null,"parent":")F","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},")C":{"opcode":"data_changevariableby","next":"aXc","parent":"l0","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"aXc":{"opcode":"control_stop","next":null,"parent":")C","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"L":{"opcode":"control_if","next":"M","parent":"k:","inputs":{"CONDITION":[2,")G"],"SUBSTACK":[2,"rB"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l1"},")G":{"opcode":"operator_equals","next":null,"parent":"L","inputs":{"OPERAND1":[3,"aXd",[10,""]],"OPERAND2":[1,[10,"0x15"]]},"fields":{},"shadow":false,"topLevel":false},"aXd":{"opcode":"argument_reporter_string_number","next":null,"parent":")G","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rB":{"opcode":"data_setvariableto","next":"aXe","parent":"L","inputs":{"VALUE":[3,")H",[10,""]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},")H":{"opcode":"data_itemoflist","next":null,"parent":"rB","inputs":{"INDEX":[3,")I",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")I":{"opcode":"operator_add","next":null,"parent":")H","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")J":{"opcode":"operator_mod","next":null,"parent":")I","inputs":{"NUM1":[3,"aXf",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXf":{"opcode":"argument_reporter_string_number","next":null,"parent":")J","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXe":{"opcode":"control_stop","next":null,"parent":"rB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"M":{"opcode":"control_if","next":"A","parent":"L","inputs":{"CONDITION":[2,")K"],"SUBSTACK":[2,"rC"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l2"},")K":{"opcode":"operator_equals","next":null,"parent":"M","inputs":{"OPERAND1":[3,"aXg",[10,""]],"OPERAND2":[1,[10,"0x18"]]},"fields":{},"shadow":false,"topLevel":false},"aXg":{"opcode":"argument_reporter_string_number","next":null,"parent":")K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rC":{"opcode":"data_setvariableto","next":"aXh","parent":"M","inputs":{"VALUE":[3,")L",[10,""]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},")L":{"opcode":"data_itemoflist","next":null,"parent":"rC","inputs":{"INDEX":[3,")M",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")M":{"opcode":"operator_add","next":null,"parent":")L","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")N":{"opcode":"operator_mod","next":null,"parent":")M","inputs":{"NUM1":[3,"aXi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXi":{"opcode":"argument_reporter_string_number","next":null,"parent":")N","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXh":{"opcode":"control_stop","next":null,"parent":"rC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"A":{"opcode":"control_if","next":"{","parent":"M","inputs":{"CONDITION":[2,")O"],"SUBSTACK":[2,"SQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l3"},")O":{"opcode":"operator_equals","next":null,"parent":"A","inputs":{"OPERAND1":[3,"aXj",[10,""]],"OPERAND2":[1,[10,"0x1e"]]},"fields":{},"shadow":false,"topLevel":false},"aXj":{"opcode":"argument_reporter_string_number","next":null,"parent":")O","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"SQ":{"opcode":"data_setvariableto","next":"PO","parent":"A","inputs":{"VALUE":[3,")P",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},")P":{"opcode":"operator_mod","next":null,"parent":"SQ","inputs":{"NUM1":[3,")Q",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},")Q":{"opcode":"operator_add","next":null,"parent":")P","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,")R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")R":{"opcode":"data_itemoflist","next":null,"parent":")Q","inputs":{"INDEX":[3,")S",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")S":{"opcode":"operator_add","next":null,"parent":")R","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")T":{"opcode":"operator_mod","next":null,"parent":")S","inputs":{"NUM1":[3,"aXk",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXk":{"opcode":"argument_reporter_string_number","next":null,"parent":")T","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"PO":{"opcode":"control_if","next":"aXl","parent":"SQ","inputs":{"CONDITION":[2,"aXm"],"SUBSTACK":[2,"aXn"]},"fields":{},"shadow":false,"topLevel":false},"aXm":{"opcode":"operator_equals","next":null,"parent":"PO","inputs":{"OPERAND1":[3,[12,"SF2091! fix","r(t;~7h#1V?m.J:,GVQv"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aXn":{"opcode":"data_replaceitemoflist","next":null,"parent":"PO","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aXl":{"opcode":"control_stop","next":null,"parent":"PO","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"{":{"opcode":"control_if","next":"|","parent":"A","inputs":{"CONDITION":[2,")U"],"SUBSTACK":[2,"rD"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aXo"},")U":{"opcode":"operator_equals","next":null,"parent":"{","inputs":{"OPERAND1":[3,"aXp",[10,""]],"OPERAND2":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false},"aXp":{"opcode":"argument_reporter_string_number","next":null,"parent":")U","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rD":{"opcode":"data_setvariableto","next":"aXq","parent":"{","inputs":{"VALUE":[3,")V",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},")V":{"opcode":"data_itemoflist","next":null,"parent":"rD","inputs":{"INDEX":[3,")W",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},")W":{"opcode":"operator_add","next":null,"parent":")V","inputs":{"NUM1":[3,")X",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")X":{"opcode":"operator_mod","next":null,"parent":")W","inputs":{"NUM1":[3,")Y",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},")Y":{"opcode":"operator_add","next":null,"parent":")X","inputs":{"NUM1":[3,")Z",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")Z":{"opcode":"data_itemoflist","next":null,"parent":")Y","inputs":{"INDEX":[3,")0",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")0":{"opcode":"operator_add","next":null,"parent":")Z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")1",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")1":{"opcode":"operator_mod","next":null,"parent":")0","inputs":{"NUM1":[3,"aXr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXr":{"opcode":"argument_reporter_string_number","next":null,"parent":")1","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXq":{"opcode":"control_stop","next":null,"parent":"rD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"|":{"opcode":"control_if","next":"N","parent":"{","inputs":{"CONDITION":[2,")2"],"SUBSTACK":[2,")3"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aXs"},")2":{"opcode":"operator_equals","next":null,"parent":"|","inputs":{"OPERAND1":[3,"aXt",[10,""]],"OPERAND2":[1,[10,"0x21"]]},"fields":{},"shadow":false,"topLevel":false},"aXt":{"opcode":"argument_reporter_string_number","next":null,"parent":")2","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},")3":{"opcode":"data_addtolist","next":"l4","parent":"|","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"l4":{"opcode":"data_setvariableto","next":"aXu","parent":")3","inputs":{"VALUE":[3,")4",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},")4":{"opcode":"data_itemoflist","next":null,"parent":"l4","inputs":{"INDEX":[3,")5",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},")5":{"opcode":"operator_add","next":null,"parent":")4","inputs":{"NUM1":[3,")6",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")6":{"opcode":"operator_mod","next":null,"parent":")5","inputs":{"NUM1":[3,")7",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},")7":{"opcode":"operator_add","next":null,"parent":")6","inputs":{"NUM1":[3,")8",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")8":{"opcode":"data_itemoflist","next":null,"parent":")7","inputs":{"INDEX":[3,")9",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")9":{"opcode":"operator_add","next":null,"parent":")8","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")!":{"opcode":"operator_mod","next":null,"parent":")9","inputs":{"NUM1":[3,"aXv",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXv":{"opcode":"argument_reporter_string_number","next":null,"parent":")!","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXu":{"opcode":"control_stop","next":null,"parent":"l4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"N":{"opcode":"control_if","next":"b#","parent":"|","inputs":{"CONDITION":[2,")#"],"SUBSTACK":[2,"rE"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l5"},")#":{"opcode":"operator_equals","next":null,"parent":"N","inputs":{"OPERAND1":[3,"aXw",[10,""]],"OPERAND2":[1,[10,"0x29"]]},"fields":{},"shadow":false,"topLevel":false},"aXw":{"opcode":"argument_reporter_string_number","next":null,"parent":")#","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rE":{"opcode":"data_setvariableto","next":"aXx","parent":"N","inputs":{"VALUE":[3,")%",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},")%":{"opcode":"operator_multiply","next":null,"parent":"rE","inputs":{"NUM1":[1,[4,"5"]],"NUM2":[3,")(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")(":{"opcode":"data_itemoflist","next":null,"parent":")%","inputs":{"INDEX":[3,"))",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"))":{"opcode":"operator_add","next":null,"parent":")(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")*":{"opcode":"operator_mod","next":null,"parent":"))","inputs":{"NUM1":[3,"aXy",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXy":{"opcode":"argument_reporter_string_number","next":null,"parent":")*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXx":{"opcode":"control_stop","next":null,"parent":"rE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b#":{"opcode":"control_if","next":"B","parent":"N","inputs":{"CONDITION":[2,")+"],"SUBSTACK":[2,"C"]},"fields":{},"shadow":false,"topLevel":false},")+":{"opcode":"operator_lt","next":null,"parent":"b#","inputs":{"OPERAND1":[3,"aXz",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"aXz":{"opcode":"argument_reporter_string_number","next":null,"parent":")+","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"C":{"opcode":"control_if","next":"l","parent":"b#","inputs":{"CONDITION":[2,"),"],"SUBSTACK":[2,"rF"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l6"},"),":{"opcode":"operator_equals","next":null,"parent":"C","inputs":{"OPERAND1":[3,")-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},")-":{"opcode":"operator_mod","next":null,"parent":"),","inputs":{"NUM1":[3,"aXA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXA":{"opcode":"argument_reporter_string_number","next":null,"parent":")-","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rF":{"opcode":"data_setvariableto","next":"aXB","parent":"C","inputs":{"VALUE":[3,").",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},").":{"opcode":"operator_add","next":null,"parent":"rF","inputs":{"NUM1":[3,")/",[4,"0"]],"NUM2":[1,[4,"80"]]},"fields":{},"shadow":false,"topLevel":false},")/":{"opcode":"operator_multiply","next":null,"parent":").","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,"):",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"):":{"opcode":"data_itemoflist","next":null,"parent":")/","inputs":{"INDEX":[3,");",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},");":{"opcode":"operator_add","next":null,"parent":"):","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")=":{"opcode":"operator_mod","next":null,"parent":");","inputs":{"NUM1":[3,"aXC",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXC":{"opcode":"argument_reporter_string_number","next":null,"parent":")=","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXB":{"opcode":"control_stop","next":null,"parent":"rF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"l":{"opcode":"control_if","next":"7","parent":"C","inputs":{"CONDITION":[2,")?"],"SUBSTACK":[2,"c0"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l7"},")?":{"opcode":"operator_equals","next":null,"parent":"l","inputs":{"OPERAND1":[3,")@",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},")@":{"opcode":"operator_mod","next":null,"parent":")?","inputs":{"NUM1":[3,"aXD",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXD":{"opcode":"argument_reporter_string_number","next":null,"parent":")@","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"c0":{"opcode":"data_replaceitemoflist","next":"b%","parent":"l","inputs":{"INDEX":[3,"aXE",[7,"0"]],"ITEM":[3,")[",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aXE":{"opcode":"operator_add","next":null,"parent":"c0","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")[":{"opcode":"operator_mathop","next":null,"parent":"c0","inputs":{"NUM":[3,")]",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},")]":{"opcode":"operator_divide","next":null,"parent":")[","inputs":{"NUM1":[3,")^",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},")^":{"opcode":"data_itemoflist","next":null,"parent":")]","inputs":{"INDEX":[3,")_",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},")_":{"opcode":"operator_add","next":null,"parent":")^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,")`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")`":{"opcode":"operator_mod","next":null,"parent":")_","inputs":{"NUM1":[3,"aXF",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXF":{"opcode":"argument_reporter_string_number","next":null,"parent":")`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"b%":{"opcode":"data_replaceitemoflist","next":"c1","parent":"c0","inputs":{"INDEX":[3,"aXG",[7,"0"]],"ITEM":[3,"){",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aXG":{"opcode":"operator_add","next":null,"parent":"b%","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"){":{"opcode":"operator_mod","next":null,"parent":"b%","inputs":{"NUM1":[3,")|",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},")|":{"opcode":"operator_mathop","next":null,"parent":"){","inputs":{"NUM":[3,")}",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},")}":{"opcode":"operator_divide","next":null,"parent":")|","inputs":{"NUM1":[3,")~",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},")~":{"opcode":"data_itemoflist","next":null,"parent":")}","inputs":{"INDEX":[3,"*a",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*a":{"opcode":"operator_add","next":null,"parent":")~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*b":{"opcode":"operator_mod","next":null,"parent":"*a","inputs":{"NUM1":[3,"aXH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXH":{"opcode":"argument_reporter_string_number","next":null,"parent":"*b","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"c1":{"opcode":"data_replaceitemoflist","next":"aXI","parent":"b%","inputs":{"INDEX":[3,"aXJ",[7,"0"]],"ITEM":[3,"*c",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aXJ":{"opcode":"operator_add","next":null,"parent":"c1","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"*c":{"opcode":"operator_mod","next":null,"parent":"c1","inputs":{"NUM1":[3,"*d",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"*d":{"opcode":"data_itemoflist","next":null,"parent":"*c","inputs":{"INDEX":[3,"*e",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*e":{"opcode":"operator_add","next":null,"parent":"*d","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*f":{"opcode":"operator_mod","next":null,"parent":"*e","inputs":{"NUM1":[3,"aXK",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXK":{"opcode":"argument_reporter_string_number","next":null,"parent":"*f","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aXI":{"opcode":"control_stop","next":null,"parent":"c1","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ee":{"opcode":"operator_equals","next":null,"parent":"7","inputs":{"OPERAND1":[3,"*g",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"*g":{"opcode":"operator_mod","next":null,"parent":"Ee","inputs":{"NUM1":[3,"aXL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXL":{"opcode":"argument_reporter_string_number","next":null,"parent":"*g","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"ps":{"opcode":"data_setvariableto","next":"c2","parent":"7","inputs":{"VALUE":[3,"*h",[10,""]]},"fields":{"VARIABLE":["chip8.pitch","TpKJz2LxQD8g%5l=GF^w"]},"shadow":false,"topLevel":false},"*h":{"opcode":"data_itemoflist","next":null,"parent":"ps","inputs":{"INDEX":[3,"*i",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*i":{"opcode":"operator_add","next":null,"parent":"*h","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*j":{"opcode":"operator_mod","next":null,"parent":"*i","inputs":{"NUM1":[3,"aXM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXM":{"opcode":"argument_reporter_string_number","next":null,"parent":"*j","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"c2":{"opcode":"control_if","next":"aXN","parent":"ps","inputs":{"CONDITION":[2,"*k"],"SUBSTACK":[2,"aXO"]},"fields":{},"shadow":false,"topLevel":false},"*k":{"opcode":"operator_lt","next":null,"parent":"c2","inputs":{"OPERAND1":[3,"aXP",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aXP":{"opcode":"data_itemoflist","next":null,"parent":"*k","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"aXO":{"opcode":"data_setvariableto","next":null,"parent":"c2","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"aXN":{"opcode":"control_stop","next":null,"parent":"c2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bC":{"opcode":"control_if","next":"b(","parent":"7","inputs":{"CONDITION":[2,"*l"],"SUBSTACK":[2,"aXR"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aXQ"},"*l":{"opcode":"operator_equals","next":null,"parent":"bC","inputs":{"OPERAND1":[3,"*m",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"*m":{"opcode":"operator_mod","next":null,"parent":"*l","inputs":{"NUM1":[3,"aXS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXS":{"opcode":"argument_reporter_string_number","next":null,"parent":"*m","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aXR":{"opcode":"control_stop","next":null,"parent":"bC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b(":{"opcode":"control_if","next":"c3","parent":"bC","inputs":{"CONDITION":[2,"*n"],"SUBSTACK":[2,"aXU"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aXT"},"*n":{"opcode":"operator_equals","next":null,"parent":"b(","inputs":{"OPERAND1":[3,"*o",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"*o":{"opcode":"operator_mod","next":null,"parent":"*n","inputs":{"NUM1":[3,"aXV",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXV":{"opcode":"argument_reporter_string_number","next":null,"parent":"*o","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aXU":{"opcode":"control_stop","next":null,"parent":"b(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c3":{"opcode":"control_if","next":"aXW","parent":"b(","inputs":{"CONDITION":[2,"*p"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aXX"},"*p":{"opcode":"operator_equals","next":null,"parent":"c3","inputs":{"OPERAND1":[3,"*q",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"*q":{"opcode":"operator_mod","next":null,"parent":"*p","inputs":{"NUM1":[3,"aXY",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXY":{"opcode":"argument_reporter_string_number","next":null,"parent":"*q","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"aXW":{"opcode":"control_stop","next":null,"parent":"c3","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B":{"opcode":"control_if","next":"c4","parent":"b#","inputs":{"CONDITION":[2,"*r"],"SUBSTACK":[2,"*s"]},"fields":{},"shadow":false,"topLevel":false,"comment":"l8"},"*r":{"opcode":"operator_equals","next":null,"parent":"B","inputs":{"OPERAND1":[3,"aXZ",[10,""]],"OPERAND2":[1,[10,"0x55"]]},"fields":{},"shadow":false,"topLevel":false},"aXZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"*r","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"*s":{"opcode":"data_setvariableto","next":"c5","parent":"B","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"c5":{"opcode":"control_repeat","next":"fm","parent":"*s","inputs":{"TIMES":[3,"*t",[6,"0"]],"SUBSTACK":[2,"*u"]},"fields":{},"shadow":false,"topLevel":false},"*t":{"opcode":"operator_add","next":null,"parent":"c5","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*v",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*v":{"opcode":"operator_mod","next":null,"parent":"*t","inputs":{"NUM1":[3,"aX0",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX0":{"opcode":"argument_reporter_string_number","next":null,"parent":"*v","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"*u":{"opcode":"data_changevariableby","next":"rG","parent":"c5","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"rG":{"opcode":"data_replaceitemoflist","next":null,"parent":"*u","inputs":{"INDEX":[3,"aX1",[7,"0"]],"ITEM":[3,"aX2",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aX1":{"opcode":"operator_add","next":null,"parent":"rG","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX2":{"opcode":"data_itemoflist","next":null,"parent":"rG","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"fm":{"opcode":"control_if","next":"aX3","parent":"c5","inputs":{"CONDITION":[2,"aX4"],"SUBSTACK":[2,"aX5"]},"fields":{},"shadow":false,"topLevel":false},"aX4":{"opcode":"operator_equals","next":null,"parent":"fm","inputs":{"OPERAND1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aX5":{"opcode":"data_changevariableby","next":null,"parent":"fm","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"aX3":{"opcode":"control_stop","next":null,"parent":"fm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c4":{"opcode":"control_if","next":"c6","parent":"B","inputs":{"CONDITION":[2,"*w"],"SUBSTACK":[2,"b)"]},"fields":{},"shadow":false,"topLevel":false},"*w":{"opcode":"operator_equals","next":null,"parent":"c4","inputs":{"OPERAND1":[3,"aX6",[10,""]],"OPERAND2":[1,[10,"0x65"]]},"fields":{},"shadow":false,"topLevel":false},"aX6":{"opcode":"argument_reporter_string_number","next":null,"parent":"*w","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"b)":{"opcode":"data_setvariableto","next":"b*","parent":"c4","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"l9"},"b*":{"opcode":"control_repeat","next":"fn","parent":"b)","inputs":{"TIMES":[3,"*x",[6,"0"]],"SUBSTACK":[2,"*y"]},"fields":{},"shadow":false,"topLevel":false},"*x":{"opcode":"operator_add","next":null,"parent":"b*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*z",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*z":{"opcode":"operator_mod","next":null,"parent":"*x","inputs":{"NUM1":[3,"aX7",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX7":{"opcode":"argument_reporter_string_number","next":null,"parent":"*z","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"*y":{"opcode":"data_changevariableby","next":"*A","parent":"b*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"*A":{"opcode":"data_replaceitemoflist","next":null,"parent":"*y","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"*B",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*B":{"opcode":"data_itemoflist","next":null,"parent":"*A","inputs":{"INDEX":[3,"aX8",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"aX8":{"opcode":"operator_add","next":null,"parent":"*B","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fn":{"opcode":"control_if","next":"aX9","parent":"b*","inputs":{"CONDITION":[2,"aX!"],"SUBSTACK":[2,"aX#"]},"fields":{},"shadow":false,"topLevel":false},"aX!":{"opcode":"operator_equals","next":null,"parent":"fn","inputs":{"OPERAND1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aX#":{"opcode":"data_changevariableby","next":null,"parent":"fn","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"aX9":{"opcode":"control_stop","next":null,"parent":"fn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c6":{"opcode":"control_if","next":"c7","parent":"c4","inputs":{"CONDITION":[2,"*C"],"SUBSTACK":[2,"b+"]},"fields":{},"shadow":false,"topLevel":false},"*C":{"opcode":"operator_equals","next":null,"parent":"c6","inputs":{"OPERAND1":[3,"aX%",[10,""]],"OPERAND2":[1,[10,"0x75"]]},"fields":{},"shadow":false,"topLevel":false},"aX%":{"opcode":"argument_reporter_string_number","next":null,"parent":"*C","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"b+":{"opcode":"data_setvariableto","next":"b,","parent":"c6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"l!"},"b,":{"opcode":"control_if_else","next":"aX(","parent":"b+","inputs":{"CONDITION":[2,"rH"],"SUBSTACK":[2,"rI"],"SUBSTACK2":[2,"rJ"]},"fields":{},"shadow":false,"topLevel":false},"rH":{"opcode":"operator_and","next":null,"parent":"b,","inputs":{"OPERAND1":[2,"*D"],"OPERAND2":[2,"*E"]},"fields":{},"shadow":false,"topLevel":false},"*D":{"opcode":"operator_lt","next":null,"parent":"rH","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,"*F",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*F":{"opcode":"operator_mod","next":null,"parent":"*D","inputs":{"NUM1":[3,"aX)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX)":{"opcode":"argument_reporter_string_number","next":null,"parent":"*F","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"*E":{"opcode":"operator_not","next":null,"parent":"rH","inputs":{"OPERAND":[2,"aX*"]},"fields":{},"shadow":false,"topLevel":false},"aX*":{"opcode":"operator_equals","next":null,"parent":"*E","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"rI":{"opcode":"control_repeat_until","next":null,"parent":"b,","inputs":{"CONDITION":[2,"aX+"],"SUBSTACK":[2,"b-"]},"fields":{},"shadow":false,"topLevel":false},"aX+":{"opcode":"operator_gt","next":null,"parent":"rI","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"b-":{"opcode":"data_replaceitemoflist","next":"aX,","parent":"rI","inputs":{"INDEX":[3,"aX-",[7,"0"]],"ITEM":[3,"*G",[10,""]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"aX-":{"opcode":"operator_add","next":null,"parent":"b-","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*G":{"opcode":"data_itemoflist","next":null,"parent":"b-","inputs":{"INDEX":[3,"aX.",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aX.":{"opcode":"operator_add","next":null,"parent":"*G","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX,":{"opcode":"data_changevariableby","next":null,"parent":"b-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"rJ":{"opcode":"control_repeat_until","next":null,"parent":"b,","inputs":{"CONDITION":[2,"*H"],"SUBSTACK":[2,"b."]},"fields":{},"shadow":false,"topLevel":false},"*H":{"opcode":"operator_gt","next":null,"parent":"rJ","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"*I",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*I":{"opcode":"operator_mod","next":null,"parent":"*H","inputs":{"NUM1":[3,"aX/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX/":{"opcode":"argument_reporter_string_number","next":null,"parent":"*I","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"b.":{"opcode":"data_replaceitemoflist","next":"aX:","parent":"rJ","inputs":{"INDEX":[3,"aX;",[7,"0"]],"ITEM":[3,"*J",[10,""]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"aX;":{"opcode":"operator_add","next":null,"parent":"b.","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*J":{"opcode":"data_itemoflist","next":null,"parent":"b.","inputs":{"INDEX":[3,"aX=",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aX=":{"opcode":"operator_add","next":null,"parent":"*J","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX:":{"opcode":"data_changevariableby","next":null,"parent":"b.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aX(":{"opcode":"control_stop","next":null,"parent":"b,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c7":{"opcode":"control_if","next":"a.","parent":"c6","inputs":{"CONDITION":[2,"*K"],"SUBSTACK":[2,"b/"]},"fields":{},"shadow":false,"topLevel":false},"*K":{"opcode":"operator_equals","next":null,"parent":"c7","inputs":{"OPERAND1":[3,"aX?",[10,""]],"OPERAND2":[1,[10,"0x85"]]},"fields":{},"shadow":false,"topLevel":false},"aX?":{"opcode":"argument_reporter_string_number","next":null,"parent":"*K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"b/":{"opcode":"data_setvariableto","next":"aS","parent":"c7","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"l#"},"aS":{"opcode":"control_if_else","next":"aX@","parent":"b/","inputs":{"CONDITION":[2,"l%"],"SUBSTACK":[2,"rK"],"SUBSTACK2":[2,"rL"]},"fields":{},"shadow":false,"topLevel":false},"l%":{"opcode":"operator_and","next":null,"parent":"aS","inputs":{"OPERAND1":[2,"*L"],"OPERAND2":[2,"*M"]},"fields":{},"shadow":false,"topLevel":false},"*L":{"opcode":"operator_lt","next":null,"parent":"l%","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,"*N",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*N":{"opcode":"operator_mod","next":null,"parent":"*L","inputs":{"NUM1":[3,"aX[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX[":{"opcode":"argument_reporter_string_number","next":null,"parent":"*N","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"*M":{"opcode":"operator_not","next":null,"parent":"l%","inputs":{"OPERAND":[2,"aX]"]},"fields":{},"shadow":false,"topLevel":false},"aX]":{"opcode":"operator_equals","next":null,"parent":"*M","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"rK":{"opcode":"control_repeat_until","next":null,"parent":"aS","inputs":{"CONDITION":[2,"aX^"],"SUBSTACK":[2,"c8"]},"fields":{},"shadow":false,"topLevel":false},"aX^":{"opcode":"operator_gt","next":null,"parent":"rK","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"c8":{"opcode":"data_replaceitemoflist","next":"aX_","parent":"rK","inputs":{"INDEX":[3,"aX`",[7,"0"]],"ITEM":[3,"*O",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aX`":{"opcode":"operator_add","next":null,"parent":"c8","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*O":{"opcode":"data_itemoflist","next":null,"parent":"c8","inputs":{"INDEX":[3,"aX{",[7,"0"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"aX{":{"opcode":"operator_add","next":null,"parent":"*O","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX_":{"opcode":"data_changevariableby","next":null,"parent":"c8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"rL":{"opcode":"control_repeat_until","next":null,"parent":"aS","inputs":{"CONDITION":[2,"*P"],"SUBSTACK":[2,"c9"]},"fields":{},"shadow":false,"topLevel":false},"*P":{"opcode":"operator_gt","next":null,"parent":"rL","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"*Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*Q":{"opcode":"operator_mod","next":null,"parent":"*P","inputs":{"NUM1":[3,"aX|",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX|":{"opcode":"argument_reporter_string_number","next":null,"parent":"*Q","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"c9":{"opcode":"data_replaceitemoflist","next":"aX}","parent":"rL","inputs":{"INDEX":[3,"aX~",[7,"0"]],"ITEM":[3,"*R",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"aX~":{"opcode":"operator_add","next":null,"parent":"c9","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*R":{"opcode":"data_itemoflist","next":null,"parent":"c9","inputs":{"INDEX":[3,"aYa",[7,"0"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"aYa":{"opcode":"operator_add","next":null,"parent":"*R","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX}":{"opcode":"data_changevariableby","next":null,"parent":"c9","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"aX@":{"opcode":"control_stop","next":null,"parent":"aS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a.":{"opcode":"control_if","next":null,"parent":"c7","inputs":{"CONDITION":[2,"*S"],"SUBSTACK":[2,"*T"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aYb"},"*S":{"opcode":"operator_equals","next":null,"parent":"a.","inputs":{"OPERAND1":[3,"aYc",[10,""]],"OPERAND2":[1,[10,"0xA2"]]},"fields":{},"shadow":false,"topLevel":false},"aYc":{"opcode":"argument_reporter_string_number","next":null,"parent":"*S","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"*T":{"opcode":"data_setvariableto","next":null,"parent":"a.","inputs":{"VALUE":[3,"*U",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"*U":{"opcode":"data_itemoflist","next":null,"parent":"*T","inputs":{"INDEX":[3,"*V",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"*V":{"opcode":"operator_add","next":null,"parent":"*U","inputs":{"NUM1":[3,"*W",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*W":{"opcode":"operator_mod","next":null,"parent":"*V","inputs":{"NUM1":[3,"*X",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"*X":{"opcode":"operator_add","next":null,"parent":"*W","inputs":{"NUM1":[3,"*Y",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*Y":{"opcode":"data_itemoflist","next":null,"parent":"*X","inputs":{"INDEX":[3,"*Z",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*Z":{"opcode":"operator_add","next":null,"parent":"*Y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"*0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*0":{"opcode":"operator_mod","next":null,"parent":"*Z","inputs":{"NUM1":[3,"aYd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aYd":{"opcode":"argument_reporter_string_number","next":null,"parent":"*0","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aYe":{"opcode":"event_whenflagclicked","next":"*1","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":8554,"y":1368},"*1":{"opcode":"looks_say","next":"*2","parent":"aYe","inputs":{"MESSAGE":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*2":{"opcode":"data_setvariableto","next":"*3","parent":"*1","inputs":{"VALUE":[1,[10,"512"]]},"fields":{"VARIABLE":["chip8.starting address","oW{#?FHT;/hE!l+8(A64"]},"shadow":false,"topLevel":false},"*3":{"opcode":"data_setvariableto","next":"*4","parent":"*2","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"*4":{"opcode":"data_hidevariable","next":"*5","parent":"*3","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"*5":{"opcode":"data_deletealloflist","next":"*6","parent":"*4","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"*6":{"opcode":"data_deletealloflist","next":"*7","parent":"*5","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"*7":{"opcode":"data_deletealloflist","next":"*8","parent":"*6","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"*8":{"opcode":"data_deletealloflist","next":"*9","parent":"*7","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"*9":{"opcode":"data_deletealloflist","next":"*!","parent":"*8","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"*!":{"opcode":"data_setvariableto","next":"aYf","parent":"*9","inputs":{"VALUE":[1,[10,"Fast/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"aYf":{"opcode":"control_delete_this_clone","next":null,"parent":"*!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aYg":{"opcode":"event_whenbroadcastreceived","next":"*#","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":8401,"y":281},"*#":{"opcode":"data_hidevariable","next":"*%","parent":"aYg","inputs":{},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"*%":{"opcode":"data_hidevariable","next":"*(","parent":"*#","inputs":{},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"*(":{"opcode":"data_hidevariable","next":"*)","parent":"*%","inputs":{},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"*)":{"opcode":"data_hidevariable","next":"**","parent":"*(","inputs":{},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"**":{"opcode":"data_hidevariable","next":"*+","parent":"*)","inputs":{},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"*+":{"opcode":"data_hidevariable","next":"*,","parent":"**","inputs":{},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"*,":{"opcode":"data_setvariableto","next":"*-","parent":"*+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"]},"shadow":false,"topLevel":false},"*-":{"opcode":"data_hidelist","next":"*.","parent":"*,","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"*.":{"opcode":"data_hidevariable","next":"*/","parent":"*-","inputs":{},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"*/":{"opcode":"data_setvariableto","next":"*:","parent":"*.","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"*:":{"opcode":"data_hidevariable","next":"*;","parent":"*/","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"*;":{"opcode":"data_hidevariable","next":"*=","parent":"*:","inputs":{},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"*=":{"opcode":"data_hidelist","next":"*?","parent":"*;","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"*?":{"opcode":"control_stop","next":"aYh","parent":"*=","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aYh":{"opcode":"control_delete_this_clone","next":null,"parent":"*?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aYi":{"opcode":"event_whenkeypressed","next":"*@","parent":null,"inputs":{},"fields":{"KEY_OPTION":["5",null]},"shadow":false,"topLevel":true,"x":11130,"y":64},"*@":{"opcode":"data_setvariableto","next":null,"parent":"aYi","inputs":{"VALUE":[3,"*[",[10,""]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"*[":{"opcode":"operator_mod","next":null,"parent":"*@","inputs":{"NUM1":[3,"aYj",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYj":{"opcode":"operator_add","next":null,"parent":"*[","inputs":{"NUM1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYk":{"opcode":"event_whenkeypressed","next":"*]","parent":null,"inputs":{},"fields":{"KEY_OPTION":["6",null]},"shadow":false,"topLevel":true,"x":9728,"y":1408},"*]":{"opcode":"data_setvariableto","next":null,"parent":"aYk","inputs":{"VALUE":[3,"*^",[10,""]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"*^":{"opcode":"operator_mod","next":null,"parent":"*]","inputs":{"NUM1":[3,"aYl",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYl":{"opcode":"operator_add","next":null,"parent":"*^","inputs":{"NUM1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYm":{"opcode":"event_whenkeypressed","next":"*_","parent":null,"inputs":{},"fields":{"KEY_OPTION":["8",null]},"shadow":false,"topLevel":true,"x":11130,"y":1056},"*_":{"opcode":"data_setvariableto","next":null,"parent":"aYm","inputs":{"VALUE":[3,"*`",[10,""]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"*`":{"opcode":"operator_mod","next":null,"parent":"*_","inputs":{"NUM1":[3,"aYn",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYn":{"opcode":"operator_add","next":null,"parent":"*`","inputs":{"NUM1":[3,[12,"VIP jumps","YiRV7D4$v56yf}?X(y.j"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYo":{"opcode":"event_whenkeypressed","next":"*{","parent":null,"inputs":{},"fields":{"KEY_OPTION":["9",null]},"shadow":false,"topLevel":true,"x":11130,"y":864},"*{":{"opcode":"data_setvariableto","next":null,"parent":"aYo","inputs":{"VALUE":[3,"*|",[10,""]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"*|":{"opcode":"operator_mod","next":null,"parent":"*{","inputs":{"NUM1":[3,"aYp",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYp":{"opcode":"operator_add","next":null,"parent":"*|","inputs":{"NUM1":[3,[12,"SF2091! fix","r(t;~7h#1V?m.J:,GVQv"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYq":{"opcode":"event_whenkeypressed","next":"rM","parent":null,"inputs":{},"fields":{"KEY_OPTION":["7",null]},"shadow":false,"topLevel":true,"x":10343,"y":1910},"rM":{"opcode":"control_if","next":null,"parent":"aYq","inputs":{"CONDITION":[2,"aYr"],"SUBSTACK":[2,"fo"]},"fields":{},"shadow":false,"topLevel":false},"aYr":{"opcode":"operator_equals","next":null,"parent":"rM","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fo":{"opcode":"control_if_else","next":null,"parent":"rM","inputs":{"CONDITION":[2,"aYs"],"SUBSTACK":[2,"aYt"],"SUBSTACK2":[2,"b:"]},"fields":{},"shadow":false,"topLevel":false},"aYs":{"opcode":"operator_equals","next":null,"parent":"fo","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"aYt":{"opcode":"data_setvariableto","next":null,"parent":"fo","inputs":{"VALUE":[1,[10,"Accurate/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"b:":{"opcode":"control_if_else","next":null,"parent":"fo","inputs":{"CONDITION":[2,"aYu"],"SUBSTACK":[2,"*}"],"SUBSTACK2":[2,"l("]},"fields":{},"shadow":false,"topLevel":false},"aYu":{"opcode":"operator_equals","next":null,"parent":"b:","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Accurate/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"*}":{"opcode":"pen_clear","next":"*~","parent":"b:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*~":{"opcode":"data_setvariableto","next":"aYv","parent":"*}","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"aYv":{"opcode":"data_setvariableto","next":null,"parent":"*~","inputs":{"VALUE":[1,[10,"Fast/Classic"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"l(":{"opcode":"control_if_else","next":null,"parent":"b:","inputs":{"CONDITION":[2,"aYw"],"SUBSTACK":[2,"aYx"],"SUBSTACK2":[2,"+a"]},"fields":{},"shadow":false,"topLevel":false},"aYw":{"opcode":"operator_equals","next":null,"parent":"l(","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Classic"]]},"fields":{},"shadow":false,"topLevel":false},"aYx":{"opcode":"data_setvariableto","next":null,"parent":"l(","inputs":{"VALUE":[1,[10,"Accurate/Classic"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"+a":{"opcode":"pen_setPenSizeTo","next":"+b","parent":"l(","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+b":{"opcode":"pen_clear","next":"+c","parent":"+a","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+c":{"opcode":"data_setvariableto","next":"aYy","parent":"+b","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"aYy":{"opcode":"data_setvariableto","next":null,"parent":"+c","inputs":{"VALUE":[1,[10,"Fast/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"aYz":{"opcode":"event_whenkeypressed","next":"Gz","parent":null,"inputs":{},"fields":{"KEY_OPTION":["0",null]},"shadow":false,"topLevel":true,"x":10978,"y":204},"Gz":{"opcode":"control_if","next":null,"parent":"aYz","inputs":{"CONDITION":[2,"+d"],"SUBSTACK":[2,"fp"]},"fields":{},"shadow":false,"topLevel":false},"+d":{"opcode":"operator_not","next":null,"parent":"Gz","inputs":{"OPERAND":[2,"aYA"]},"fields":{},"shadow":false,"topLevel":false},"aYA":{"opcode":"operator_equals","next":null,"parent":"+d","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"fp":{"opcode":"control_if_else","next":null,"parent":"Gz","inputs":{"CONDITION":[2,"aYB"],"SUBSTACK":[2,"aYC"],"SUBSTACK2":[2,"fq"]},"fields":{},"shadow":false,"topLevel":false},"aYB":{"opcode":"operator_equals","next":null,"parent":"fp","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"aYC":{"opcode":"data_setvariableto","next":null,"parent":"fp","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"fq":{"opcode":"control_if_else","next":null,"parent":"fp","inputs":{"CONDITION":[2,"aYD"],"SUBSTACK":[2,"+e"],"SUBSTACK2":[2,"PP"]},"fields":{},"shadow":false,"topLevel":false},"aYD":{"opcode":"operator_equals","next":null,"parent":"fq","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP"]]},"fields":{},"shadow":false,"topLevel":false},"+e":{"opcode":"data_setvariableto","next":"+f","parent":"fq","inputs":{"VALUE":[1,[10,"SCHIP+HPS"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"+f":{"opcode":"data_setvariableto","next":"+g","parent":"+e","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"+g":{"opcode":"data_setvariableto","next":"aYE","parent":"+f","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"aYE":{"opcode":"data_setvariableto","next":null,"parent":"+g","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"PP":{"opcode":"control_if_else","next":null,"parent":"fq","inputs":{"CONDITION":[2,"aYF"],"SUBSTACK":[2,"+h"],"SUBSTACK2":[2,"aYG"]},"fields":{},"shadow":false,"topLevel":false},"aYF":{"opcode":"operator_equals","next":null,"parent":"PP","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"+h":{"opcode":"data_setvariableto","next":"+i","parent":"PP","inputs":{"VALUE":[1,[10,"VIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"+i":{"opcode":"data_setvariableto","next":"+j","parent":"+h","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"+j":{"opcode":"data_setvariableto","next":"+k","parent":"+i","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"+k":{"opcode":"data_setvariableto","next":"aYH","parent":"+j","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"aYH":{"opcode":"data_setvariableto","next":null,"parent":"+k","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"aYG":{"opcode":"data_setvariableto","next":null,"parent":"PP","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"aYI":{"opcode":"event_whenbroadcastreceived","next":"GA","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":7759,"y":936},"GA":{"opcode":"data_deletealloflist","next":"GB","parent":"aYI","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"GB":{"opcode":"data_deletealloflist","next":"+l","parent":"GA","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"+l":{"opcode":"data_deletealloflist","next":"+m","parent":"GB","inputs":{},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"+m":{"opcode":"data_deletealloflist","next":"GC","parent":"+l","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"GC":{"opcode":"data_deletealloflist","next":"GD","parent":"+m","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"GD":{"opcode":"data_deletealloflist","next":"GE","parent":"GC","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"GE":{"opcode":"data_setvariableto","next":"GF","parent":"GD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"GF":{"opcode":"data_setvariableto","next":"GG","parent":"GE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"GG":{"opcode":"data_setvariableto","next":"GH","parent":"GF","inputs":{"VALUE":[1,[10,"60"]]},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"GH":{"opcode":"data_setvariableto","next":"GI","parent":"GG","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"GI":{"opcode":"data_setvariableto","next":"aYJ","parent":"GH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"aYJ":{"opcode":"data_setvariableto","next":null,"parent":"GI","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"aYK":{"opcode":"event_whenkeypressed","next":"+n","parent":null,"inputs":{},"fields":{"KEY_OPTION":["m",null]},"shadow":false,"topLevel":true,"x":10922,"y":1233},"+n":{"opcode":"data_setvariableto","next":null,"parent":"aYK","inputs":{"VALUE":[3,"+o",[10,""]]},"fields":{"VARIABLE":["chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"]},"shadow":false,"topLevel":false},"+o":{"opcode":"operator_mod","next":null,"parent":"+n","inputs":{"NUM1":[3,"aYL",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYL":{"opcode":"operator_add","next":null,"parent":"+o","inputs":{"NUM1":[3,[12,"chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false}},"comments":{"/":{"blockId":"a","x":2447.333333333333,"y":1485.6666666666667,"width":200,"height":200,"minimized":false,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},":":{"blockId":"f","x":12130.000000000002,"y":2152,"width":200,"height":200,"minimized":true,"text":"5"},";":{"blockId":"g","x":12130.000000000002,"y":2392,"width":200,"height":200,"minimized":true,"text":"6"},"W":{"blockId":"b","x":1699,"y":5823,"width":200,"height":200,"minimized":false,"text":"00EE- rts- return from subroutine call"},"aS2":{"blockId":"qz","x":1619,"y":13508,"width":200,"height":200,"minimized":false,"text":"00FD (SCHIP)- Exit"},"aI":{"blockId":"S","x":12130.000000000002,"y":760,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"aJ":{"blockId":"T","x":12130.000000000002,"y":952,"width":200,"height":200,"minimized":true,"text":"0"},"aK":{"blockId":"U","x":12134.000000000002,"y":1192,"width":200,"height":200,"minimized":true,"text":"1"},"aL":{"blockId":"V","x":12130.000000000002,"y":1432,"width":200,"height":200,"minimized":true,"text":"2"},"a%":{"blockId":"a(","x":12134.000000000002,"y":3352,"width":200,"height":200,"minimized":true,"text":"A"},"a#":{"blockId":"be","x":12130.000000000002,"y":3112,"width":200,"height":200,"minimized":true,"text":"9"},"a!":{"blockId":"P","x":12130.000000000002,"y":2872,"width":200,"height":200,"minimized":true,"text":"8"},"a9":{"blockId":"O","x":12134.000000000002,"y":2632,"width":200,"height":200,"minimized":true,"text":"7"},"aN":{"blockId":"3","x":12134.000000000002,"y":1912,"width":200,"height":200,"minimized":true,"text":"4"},"aM":{"blockId":"2","x":12130.000000000002,"y":1672,"width":200,"height":200,"minimized":true,"text":"3"},"bm+":{"blockId":"bm,","x":289.3333333333335,"y":7764.8888888888905,"width":200,"height":200,"minimized":true,"text":"MOST LIKELY BUGGED: DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N"},"bm-":{"blockId":"bm.","x":831.8666666666667,"y":9919.066666666668,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"bm/":{"blockId":"bm:","x":830.7333333333333,"y":9688.533333333333,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"bm;":{"blockId":"bm=","x":825.9333333333334,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"bm?":{"blockId":"bm@","x":891.6,"y":10339.333333333334,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"bm[":{"blockId":"bm]","x":860.8749675750735,"y":10574.777777777777,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"bm^":{"blockId":"bm_","x":1152.430523130629,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bm`":{"blockId":"bm{","x":938.3194120195178,"y":11173.888888888889,"width":200,"height":200,"minimized":true,"text":"fr55 - str v0-vr"},"bm|":{"blockId":"bm}","x":772.4607906341553,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"bm~":{"blockId":"bna","x":841.7889156341553,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"bnb":{"blockId":"bnc","x":806.74163424174,"y":10110.533333333333,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"bnd":{"blockId":"bne","x":645.0971955193418,"y":7247.777777777777,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bnf":{"blockId":"bng","x":812.208306630453,"y":7040.666666666667,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"bnh":{"blockId":"bni","x":805.0971955193418,"y":6834.444444444444,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bnj":{"blockId":"bnk","x":1624.652751074897,"y":6583.777777777777,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"lI":{"blockId":"G","x":1683,"y":27986,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"lJ":{"blockId":"w","x":1602,"y":28420,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"lK":{"blockId":"x","x":1744,"y":28646,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"lN":{"blockId":"y","x":1718,"y":29133,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"lP":{"blockId":"K","x":1905.864,"y":29713.704,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"lU":{"blockId":"a,","x":2459.5682047999994,"y":35464.35257087999,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"lV":{"blockId":"a-","x":3215.1641369599993,"y":35750.93673728,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"lZ":{"blockId":"z","x":1791.4329600000003,"y":38344.53887999999,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"GJ":{"blockId":"rN","x":1407.92,"y":43110.04,"width":200,"height":200,"minimized":false,"text":""},"l1":{"blockId":"L","x":1969,"y":39031,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"l2":{"blockId":"M","x":2056.51232,"y":39179.451839999994,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"l3":{"blockId":"A","x":2431.6620799999996,"y":39354.73407999999,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"l5":{"blockId":"N","x":2637.980159999999,"y":40229.52127999999,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"l7":{"blockId":"l","x":1937,"y":40870,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"lr":{"blockId":"o","x":1757,"y":17434,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 200000 levels maximum "},"ls":{"blockId":"p","x":1682,"y":17686,"width":200,"height":200,"minimized":false,"text":"3XNN- SE VX, NN"},"bnl":{"blockId":"bnm","x":521,"y":851,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"bnn":{"blockId":"bno","x":516,"y":1090,"width":200,"height":200,"minimized":true,"text":"1NNN- jmp nnn- jump to address nnn"},"bnp":{"blockId":"bnq","x":440,"y":1205,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum (STACK MAY BE TOO BIG)"},"bnr":{"blockId":"bns","x":598,"y":1529,"width":200,"height":200,"minimized":true,"text":"3XRR- skeq vx,rr"},"bnt":{"blockId":"bnu","x":1625,"y":6583,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bnv":{"blockId":"bnw","x":805,"y":6834,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bnx":{"blockId":"bny","x":812,"y":7040,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"bnz":{"blockId":"bnA","x":645,"y":7247,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bnB":{"blockId":"bnC","x":685,"y":7884,"width":200,"height":200,"minimized":true,"text":"MOST LIKELY BUGGED: DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N"},"bnD":{"blockId":"bnE","x":772,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"bnF":{"blockId":"bnG","x":842,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"bnH":{"blockId":"bnI","x":826,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"bnJ":{"blockId":"bnK","x":831,"y":9688,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"bnL":{"blockId":"bnM","x":832,"y":9919,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"bnN":{"blockId":"bnO","x":807,"y":10110,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"bnP":{"blockId":"bnQ","x":892,"y":10339,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"bnR":{"blockId":"bnS","x":860,"y":10574,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"bnT":{"blockId":"bnU","x":1152,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"lt":{"blockId":"q","x":1658,"y":18128,"width":200,"height":200,"minimized":false,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"lH":{"blockId":"v","x":1734,"y":26638,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"lE":{"blockId":"J","x":1751,"y":23906,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"lD":{"blockId":"u","x":1733,"y":23256,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"lB":{"blockId":"s","x":1696,"y":22485.04,"width":200,"height":200,"minimized":false,"text":"8XY4- ADD VX, VY"},"lC":{"blockId":"I","x":1743.68,"y":22839.36,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"lA":{"blockId":"H","x":1751,"y":21872,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"lz":{"blockId":"t","x":1804,"y":21618,"width":200,"height":200,"minimized":false,"text":"8XY1- OR VX, VY"},"ly":{"blockId":"m","x":1774.08,"y":21351.64,"width":200,"height":200,"minimized":false,"text":"8XY0- LD VX, VY"},"lx":{"blockId":"F","x":1654,"y":21054,"width":200,"height":200,"minimized":false,"text":"7XNN- ADD VX,NN"},"lw":{"blockId":"D","x":1632,"y":20848,"width":200,"height":200,"minimized":false,"text":"6XNN- LD VX, NN"},"lu":{"blockId":"r","x":1646,"y":18684,"width":200,"height":200,"minimized":false,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"bnV":{"blockId":"bnW","x":363,"y":763,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine cal"},"bnX":{"blockId":"bnY","x":287,"y":1011,"width":200,"height":200,"minimized":true,"text":"1NNN- jmp nnn- jump to address nnn"},"bnZ":{"blockId":"bn0","x":277,"y":1221,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum (STACK MAY BE GETTING TOO BIG HERE)"},"bn1":{"blockId":"bn2","x":679,"y":1477,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"bn3":{"blockId":"bn4","x":767,"y":1693,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"bn5":{"blockId":"bn6","x":1192,"y":1914,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"bn7":{"blockId":"bn8","x":979,"y":2155,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"bn9":{"blockId":"bn!","x":977,"y":2372,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"bn#":{"blockId":"bn%","x":904,"y":2652,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"bn(":{"blockId":"bn)","x":902,"y":2872,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"bn*":{"blockId":"bn+","x":885,"y":3516,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"bn,":{"blockId":"bn-","x":876,"y":4136,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"bn.":{"blockId":"bn/","x":1071,"y":4768,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"bn:":{"blockId":"bn;","x":1067,"y":5120,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"bn=":{"blockId":"bn?","x":1067,"y":5472,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"bn@":{"blockId":"bn[","x":1067,"y":5784,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"bn]":{"blockId":"bn^","x":990,"y":6136,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"bn_":{"blockId":"bn`","x":1332,"y":6478,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bn{":{"blockId":"bn|","x":805,"y":6834,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bn}":{"blockId":"bn~","x":812,"y":7040,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"boa":{"blockId":"bob","x":645,"y":7247,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"boc":{"blockId":"bod","x":724,"y":7796,"width":200,"height":200,"minimized":false,"text":"DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N\nMOST LIKELY BUGGED"},"boe":{"blockId":"bof","x":772,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"bog":{"blockId":"boh","x":842,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"boi":{"blockId":"boj","x":826,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"bok":{"blockId":"bol","x":831,"y":9688,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"bom":{"blockId":"bon","x":832,"y":9919,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"boo":{"blockId":"bop","x":807,"y":10110,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"boq":{"blockId":"bor","x":892,"y":10339,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"bos":{"blockId":"bot","x":911,"y":10490,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"bou":{"blockId":"bov","x":1152,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bow":{"blockId":"box","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"boy":{"blockId":"boz","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"boA":{"blockId":"boB","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"l8":{"blockId":"B","x":1847.7882810368008,"y":42043.0047778816,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"l9":{"blockId":"b)","x":2063,"y":42640,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"boC":{"blockId":"boD","x":238,"y":1609,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum"},"boE":{"blockId":"boF","x":316,"y":1805,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"boG":{"blockId":"boH","x":712,"y":2085,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"boI":{"blockId":"boJ","x":912,"y":2281,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"boK":{"blockId":"boL","x":903,"y":2608,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"boM":{"blockId":"boN","x":924,"y":2808,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"boO":{"blockId":"boP","x":895,"y":3117,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"boQ":{"blockId":"boR","x":881,"y":3332,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"boS":{"blockId":"boT","x":564,"y":3979,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"boU":{"blockId":"boV","x":842,"y":4623,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"boW":{"blockId":"boX","x":1074,"y":5253,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"boY":{"blockId":"boZ","x":1083,"y":5591,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"bo0":{"blockId":"bo1","x":1070,"y":5946,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"bo2":{"blockId":"bo3","x":1060,"y":6256,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"bo4":{"blockId":"bo5","x":1035,"y":6634,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"bo6":{"blockId":"bo7","x":1256,"y":6969,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bo8":{"blockId":"bo9","x":787,"y":7185,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bo!":{"blockId":"bo#","x":808,"y":7391,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"bo%":{"blockId":"bo(","x":619,"y":7649,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bo)":{"blockId":"bo*","x":608,"y":8239,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"bo+":{"blockId":"bo,","x":623,"y":9754,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"bo-":{"blockId":"bo.","x":822,"y":9850,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"bo/":{"blockId":"bo:","x":813,"y":10065,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"bo;":{"blockId":"bo=","x":810,"y":10238,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"bo?":{"blockId":"bo@","x":828,"y":10483,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"bo[":{"blockId":"bo]","x":807,"y":10696,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"bo^":{"blockId":"bo_","x":828,"y":10907,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"bo`":{"blockId":"bo{","x":768,"y":11147,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"bo|":{"blockId":"bo}","x":978,"y":11348,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bo~":{"blockId":"bpa","x":744,"y":11803,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"bpb":{"blockId":"bpc","x":742,"y":12313,"width":200,"height":200,"minimized":false,"text":"FX65- Save VX"},"lq":{"blockId":"n","x":1685,"y":17232,"width":200,"height":200,"minimized":false,"text":"1NNN - Set PC to NNN"},"l6":{"blockId":"C","x":2318.0846719999995,"y":40572.95532799999,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"bpd":{"blockId":"bpe","x":978,"y":11652,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bpf":{"blockId":"bpg","x":744,"y":12107,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"bph":{"blockId":"bpi","x":742,"y":12617,"width":200,"height":200,"minimized":false,"text":"FX65- Save VX"},"bpj":{"blockId":"bpk","x":3038,"y":577,"width":200,"height":200,"minimized":true,"text":"1"},"bpl":{"blockId":"bpm","x":3043,"y":823,"width":200,"height":200,"minimized":true,"text":"2"},"bpn":{"blockId":"bpo","x":3030,"y":1055,"width":200,"height":200,"minimized":true,"text":"3"},"bpp":{"blockId":"bpq","x":3036,"y":1300,"width":200,"height":200,"minimized":true,"text":"4"},"bpr":{"blockId":"bps","x":3087,"y":1544,"width":200,"height":200,"minimized":true,"text":"5"},"bpt":{"blockId":"bpu","x":3070,"y":1784,"width":200,"height":200,"minimized":true,"text":"6"},"bpv":{"blockId":"bpw","x":3073,"y":2022,"width":200,"height":200,"minimized":true,"text":"7"},"bpx":{"blockId":"bpy","x":3051,"y":2260,"width":200,"height":200,"minimized":true,"text":"8"},"bpz":{"blockId":"bpA","x":3057,"y":2502,"width":200,"height":200,"minimized":true,"text":"9"},"bpB":{"blockId":"bpC","x":3047,"y":2740,"width":200,"height":200,"minimized":true,"text":"A"},"bpD":{"blockId":"bpE","x":3066,"y":2978,"width":200,"height":200,"minimized":true,"text":"B"},"bpF":{"blockId":"bpG","x":3049,"y":3230,"width":200,"height":200,"minimized":true,"text":"C"},"bpH":{"blockId":"bpI","x":3075,"y":3470,"width":200,"height":200,"minimized":true,"text":"D"},"bpJ":{"blockId":"bpK","x":3101,"y":3693,"width":200,"height":200,"minimized":true,"text":"E"},"bpL":{"blockId":"bpM","x":3095,"y":3929,"width":200,"height":200,"minimized":true,"text":"F"},"bpN":{"blockId":"bpO","x":3066.146130971095,"y":4542.927708463533,"width":200,"height":200,"minimized":true,"text":"0"},"bpP":{"blockId":"bpQ","x":269,"y":453,"width":200,"height":200,"minimized":true,"text":"001N- EXIT N- Exits the emulator."},"bpR":{"blockId":"bpS","x":283,"y":839,"width":200,"height":200,"minimized":true,"text":"00E0- cls- clear the screen"},"bpT":{"blockId":"bpU","x":331,"y":1154,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"bpV":{"blockId":"bpW","x":396,"y":1492,"width":200,"height":200,"minimized":true,"text":"1NNN"},"bpX":{"blockId":"bpY","x":238,"y":1609,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum"},"bpZ":{"blockId":"bp0","x":316,"y":1805,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"bp1":{"blockId":"bp2","x":712,"y":2085,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"bp3":{"blockId":"bp4","x":912,"y":2281,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"bp5":{"blockId":"bp6","x":903,"y":2608,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"bp7":{"blockId":"bp8","x":924,"y":2808,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"bp9":{"blockId":"bp!","x":895,"y":3117,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"bp#":{"blockId":"bp%","x":881,"y":3332,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"bp(":{"blockId":"bp)","x":564,"y":3979,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"bp*":{"blockId":"bp+","x":842,"y":4623,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"bp,":{"blockId":"bp-","x":1074,"y":5253,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"bp.":{"blockId":"bp/","x":1083,"y":5591,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"bp:":{"blockId":"bp;","x":1070,"y":5946,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"bp=":{"blockId":"bp?","x":1060,"y":6256,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"bp@":{"blockId":"bp[","x":1035,"y":6634,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"bp]":{"blockId":"bp^","x":1266,"y":7280,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bp_":{"blockId":"bp`","x":880,"y":7485,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bp{":{"blockId":"bp|","x":758,"y":7719,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"bp}":{"blockId":"bp~","x":614,"y":7937,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bqa":{"blockId":"bqb","x":608,"y":8582,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"bqc":{"blockId":"bqd","x":654,"y":10090,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"bqe":{"blockId":"bqf","x":884,"y":10186,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"bqg":{"blockId":"bqh","x":838,"y":10405,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"bqi":{"blockId":"bqj","x":823,"y":10586,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"bqk":{"blockId":"bql","x":826,"y":10801,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"bqm":{"blockId":"bqn","x":802,"y":11035,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"bqo":{"blockId":"bqp","x":816,"y":11240,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"bqq":{"blockId":"bqr","x":778,"y":11468,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"bqs":{"blockId":"bqt","x":768,"y":11683,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"bqu":{"blockId":"bqv","x":760,"y":11902,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bqw":{"blockId":"bqx","x":824,"y":12303,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"bqy":{"blockId":"bqz","x":808,"y":12994,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"l!":{"blockId":"b+","x":2050.399810560001,"y":43124.063016960004,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP (XO-CHIP 1.1 ver.)\nsaveflags vx"},"l#":{"blockId":"b/","x":2178.6403712,"y":43872.122275839996,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP (XO-CHIP 1.1 ver.)\nloadflags vx"},"bqA":{"blockId":"bqB","x":759,"y":10219,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"bqC":{"blockId":"bqD","x":1020,"y":10345,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"bqE":{"blockId":"bqF","x":348,"y":14452,"width":200,"height":200,"minimized":false,"text":"FX85- SCHIP"},"bqG":{"blockId":"bqH","x":353,"y":1012,"width":200,"height":200,"minimized":true,"text":"00E0- cls- clear the screen"},"bqI":{"blockId":"bqJ","x":167,"y":1018,"width":200,"height":200,"minimized":false,"text":"00EE- rts- return from subroutine call"},"bqK":{"blockId":"bqL","x":264,"y":1258,"width":200,"height":200,"minimized":true,"text":"1NNN"},"bqM":{"blockId":"bqN","x":311,"y":1459,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 16 levels maximum"},"bqO":{"blockId":"bqP","x":271,"y":1704,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"bqQ":{"blockId":"bqR","x":593,"y":1907,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"bqS":{"blockId":"bqT","x":1029,"y":2158,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"bqU":{"blockId":"bqV","x":550,"y":2394,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"bqW":{"blockId":"bqX","x":986,"y":2571,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"bqY":{"blockId":"bqZ","x":631,"y":2861,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"bq0":{"blockId":"bq1","x":505,"y":3099,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"bq2":{"blockId":"bq3","x":269,"y":3733,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"bq4":{"blockId":"bq5","x":418,"y":4376,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"bq6":{"blockId":"bq7","x":954,"y":5016,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"bq8":{"blockId":"bq9","x":853,"y":5362,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"bq!":{"blockId":"bq#","x":808,"y":5715,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"bq%":{"blockId":"bq(","x":830,"y":6033,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"bq)":{"blockId":"bq*","x":946,"y":6386,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"bq+":{"blockId":"bq,","x":1035,"y":7036,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bq-":{"blockId":"bq.","x":806,"y":7271,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bq/":{"blockId":"bq:","x":792,"y":7464,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"bq;":{"blockId":"bq=","x":598,"y":7692,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bq?":{"blockId":"bq@","x":535,"y":8338,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"bq[":{"blockId":"bq]","x":646,"y":9783,"width":200,"height":200,"minimized":false,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"bq^":{"blockId":"bq_","x":758,"y":9964,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"bq`":{"blockId":"bq{","x":618,"y":10172,"width":200,"height":200,"minimized":false,"text":"fx07- gdelay vr\nFX07"},"aF":{"blockId":"c","x":369.0000000000001,"y":442,"width":200,"height":200,"minimized":false,"text":"0x1260 - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"bq|":{"blockId":"bq}","x":267,"y":1594,"width":200,"height":200,"minimized":false,"text":"00FD(SCHIP)- EXIT N- Exits the emulator."},"bq~":{"blockId":"bra","x":154,"y":1985,"width":200,"height":200,"minimized":true,"text":"1NNN"},"brb":{"blockId":"brc","x":297,"y":2190,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 16 levels maximum"},"brd":{"blockId":"bre","x":540,"y":2377,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"brf":{"blockId":"brg","x":501,"y":2664,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"brh":{"blockId":"bri","x":758,"y":2875,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"brj":{"blockId":"brk","x":406,"y":3100,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"brl":{"blockId":"brm","x":868,"y":3320,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"brn":{"blockId":"bro","x":736,"y":3600,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"brp":{"blockId":"brq","x":506,"y":3826,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"brr":{"blockId":"brs","x":313,"y":4467,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"brt":{"blockId":"bru","x":406,"y":5095,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"brv":{"blockId":"brw","x":933,"y":5704,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"brx":{"blockId":"bry","x":1022,"y":6073,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"brz":{"blockId":"brA","x":589,"y":6434,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"brB":{"blockId":"brC","x":826,"y":6721,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"brD":{"blockId":"brE","x":914,"y":7117,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"brF":{"blockId":"brG","x":1049,"y":7741,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"brH":{"blockId":"brI","x":797,"y":8002,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"brJ":{"blockId":"brK","x":791,"y":8201,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"brL":{"blockId":"brM","x":577,"y":8431,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"brN":{"blockId":"brO","x":529,"y":9086,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"brP":{"blockId":"brQ","x":754,"y":10180,"width":200,"height":200,"minimized":false,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"brR":{"blockId":"brS","x":866,"y":10361,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"brT":{"blockId":"brU","x":726,"y":10569,"width":200,"height":200,"minimized":false,"text":"fx07- gdelay vr\nFX07"},"brV":{"blockId":"brW","x":679,"y":10766,"width":200,"height":200,"minimized":false,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"brX":{"blockId":"brY","x":837,"y":11578,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"brZ":{"blockId":"br0","x":817,"y":11781,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"br1":{"blockId":"br2","x":975,"y":11979,"width":200,"height":200,"minimized":false,"text":"fx1e- adi vr"},"br3":{"blockId":"br4","x":996,"y":12222,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"br5":{"blockId":"br6","x":856,"y":12372,"width":200,"height":200,"minimized":false,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"br7":{"blockId":"br8","x":818,"y":12583,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"br9":{"blockId":"br!","x":857,"y":13063,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"br#":{"blockId":"br%","x":887,"y":13874,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"br(":{"blockId":"br)","x":362,"y":14879,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"br*":{"blockId":"br+","x":226,"y":15637,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"j:":{"blockId":"i","x":1701,"y":12438,"width":200,"height":200,"minimized":false,"text":"00FE(SCHIP) LOW"},"j;":{"blockId":"j","x":2043,"y":12231,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"a+":{"blockId":"Z","x":1904,"y":6062,"width":200,"height":200,"minimized":false,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"bf":{"blockId":"e","x":1770,"y":8951,"width":200,"height":200,"minimized":false,"text":"00FC (SCHIP) Scroll left 4 pixels"},"br,":{"blockId":"br-","x":365.1878992716473,"y":1264.5555555555557,"width":200,"height":200,"minimized":false,"text":"00CN (SCHIP) Scroll display down N pixels, N/2 in lowres mode"},"aG":{"blockId":"d","x":1984,"y":2521,"width":200,"height":200,"minimized":false,"text":"00CN (SCHIP) - SCD N"},"aH":{"blockId":"X","x":1983,"y":3705,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"br.":{"blockId":"br/","x":399,"y":6578,"width":200,"height":200,"minimized":true,"text":"5XY3 (XO-CHIP) load VX- VY"},"br:":{"blockId":"br;","x":422,"y":6987,"width":200,"height":200,"minimized":true,"text":"5XY2 (XO-CHIP) save VX- VY"},"br=":{"blockId":"br?","x":422,"y":7219,"width":200,"height":200,"minimized":true,"text":"5XY3 (XO-CHIP) load VX- VY"},"br@":{"blockId":"br[","x":100,"y":7449,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"br]":{"blockId":"br^","x":331,"y":7654,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"br_":{"blockId":"br`","x":832,"y":7932,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"br{":{"blockId":"br|","x":420,"y":8200,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"br}":{"blockId":"br~","x":397,"y":8797,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"bsa":{"blockId":"bsb","x":711,"y":9435,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"bsc":{"blockId":"bsd","x":953,"y":10056,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"bse":{"blockId":"bsf","x":1090,"y":10411,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"bsg":{"blockId":"bsh","x":1050,"y":10800,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"bsi":{"blockId":"bsj","x":1190,"y":11428,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"bsk":{"blockId":"bsl","x":792,"y":11769,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"bsm":{"blockId":"bsn","x":716,"y":12363,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"bso":{"blockId":"bsp","x":480,"y":12671,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"bsq":{"blockId":"bsr","x":766,"y":12843,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP, Default)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"bss":{"blockId":"bst","x":725,"y":13279,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"bsu":{"blockId":"bsv","x":430,"y":13911,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"bsw":{"blockId":"bsx","x":868,"y":16671,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"bsy":{"blockId":"bsz","x":868,"y":16818,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"bsA":{"blockId":"bsB","x":404,"y":16993,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"bsC":{"blockId":"bsD","x":357,"y":17186,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"bsE":{"blockId":"bsF","x":530,"y":17870,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"bsG":{"blockId":"bsH","x":491,"y":18047,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"bsI":{"blockId":"bsJ","x":459,"y":18256,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"bsK":{"blockId":"bsL","x":1381,"y":18529,"width":200,"height":200,"minimized":true,"text":"Normally incorrect behavior, but Spacefight 2091! and SC Test rely on it"},"bsM":{"blockId":"bsN","x":675,"y":18804,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"bsO":{"blockId":"bsP","x":626,"y":18970,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"bsQ":{"blockId":"bsR","x":993,"y":19268,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bsS":{"blockId":"bsT","x":908,"y":19852,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"bsU":{"blockId":"bsV","x":677,"y":20532,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"bsW":{"blockId":"bsX","x":678,"y":21255,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"bsY":{"blockId":"bsZ","x":618,"y":21986,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"Ga":{"blockId":"lv","x":1694,"y":19500,"width":200,"height":200,"minimized":false,"text":"5XY1 - HyperWaveCHIP-64 - Skip if VX > VY"},"Gc":{"blockId":"cO","x":1782,"y":19977,"width":200,"height":200,"minimized":false,"text":"5XY2 (XO-CHIP)- save vx-vy starting at I"},"Gd":{"blockId":"cP","x":1720,"y":20394,"width":200,"height":200,"minimized":false,"text":"5XY3(XO-CHIP)- load vx-vy starting at I"},"bs0":{"blockId":"bs1","x":408.9272358505814,"y":2213.425925925926,"width":200,"height":200,"minimized":true,"text":"00FA (chip8run) Makes FX55/FX65 increment I"},"bs2":{"blockId":"bs3","x":-89,"y":19859,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"bs4":{"blockId":"bs5","x":-89,"y":20600,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"Gb":{"blockId":"E","x":1939,"y":19645,"width":200,"height":200,"minimized":false,"text":"If VX > VY, load or save registers in reverse order; do a byte reversal"},"bs6":{"blockId":"bs7","x":-21.33333333333337,"y":27782.600000000002,"width":200,"height":200,"minimized":true,"text":"FXF8"},"aYM":{"blockId":"aYN","x":-205.107400036031,"y":32482.872598307826,"width":200,"height":200,"minimized":true,"text":"FXF8 (chip8x)- Output port to VX"},"bs8":{"blockId":"bs9","x":3409.833333333333,"y":6435.425925925926,"width":200,"height":200,"minimized":false,"text":"[ Ant V1.0 ] "},"Ed":{"blockId":"7","x":2462.06461952,"y":41091.38913792,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"}":{"blockId":"~","x":5974,"y":209,"width":216,"height":229,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"aa":{"blockId":"fr","x":5733,"y":3417,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"ab":{"blockId":"fs","x":2209,"y":350,"width":179,"height":154,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"ac":{"blockId":"8","x":2213,"y":1706,"width":197,"height":130,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"Eb":{"blockId":"6","x":1776,"y":33373,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"bs!":{"blockId":"bs#","x":1434.9259259259252,"y":21153.62962962963,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"bs%":{"blockId":"bs(","x":3015.666666666667,"y":56,"width":200,"height":200,"minimized":true,"text":"Converts the stack to hex."},"aYb":{"blockId":"a.","x":2168.691072,"y":44610.6485632,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"bs)":{"blockId":"bs*","x":976.6666666666667,"y":37356.444444444445,"width":200,"height":200,"minimized":true,"text":"FXA0"},"bs+":{"blockId":"bs,","x":976.6666666666667,"y":37500.444444444445,"width":200,"height":200,"minimized":true,"text":"FXA1"},"aXQ":{"blockId":"bC","x":2505.3900799999997,"y":41512.38943999999,"width":200,"height":200,"minimized":true,"text":"Fx3B - HYPERCHIP64"},"aXT":{"blockId":"b(","x":1873.2529049600005,"y":41750.19017983999,"width":200,"height":200,"minimized":true,"text":"Fx3C - HYPERCHIP64"},"aXX":{"blockId":"c3","x":2432.4558336,"y":41794.4430848,"width":200,"height":200,"minimized":true,"text":"Fx3D - HYPERCHIP64"},"bs-":{"blockId":"bs.","x":933.9907407407406,"y":19187.85802469136,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"aUL":{"blockId":"bY","x":1828,"y":24261,"width":200,"height":200,"minimized":true,"text":"8XY8 - HYPERCHIP-64\nStore VY rotated one bit to the right in VX"},"aUR":{"blockId":"bZ","x":1886.568,"y":24499.28,"width":200,"height":200,"minimized":true,"text":"8XY9 - HYPERCHIP-64\nStore Vy rotated one bit to the left in Vx"},"aUV":{"blockId":"b0","x":1881.0841599999999,"y":24750.91584,"width":200,"height":200,"minimized":true,"text":"8XYA - HYPERCHIP-64 - Test VX AND VY"},"aU3":{"blockId":"b1","x":1753,"y":25427,"width":200,"height":200,"minimized":true,"text":"8XYB - NOT"},"bs/":{"blockId":"bs:","x":871.666666666667,"y":38092,"width":200,"height":200,"minimized":true,"text":"FXAx - HYPERCHIP64"},"bs;":{"blockId":"bs=","x":978.6666666666669,"y":38152,"width":200,"height":200,"minimized":true,"text":"FXA0"},"bs?":{"blockId":"bs@","x":978.6666666666669,"y":38296,"width":200,"height":200,"minimized":true,"text":"FXA1"},"bs[":{"blockId":"bs]","x":978.6666666666669,"y":38440,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"bs^":{"blockId":"bs_","x":698.3333333333333,"y":36455.333333333336,"width":200,"height":200,"minimized":true,"text":"FXAx - HYPERCHIP64"},"bs`":{"blockId":"bs{","x":805.3333333333333,"y":36515.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA0"},"bs|":{"blockId":"bs}","x":805.3333333333333,"y":36659.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA1"},"bs~":{"blockId":"bta","x":805.3333333333333,"y":36803.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"aXo":{"blockId":"{","x":2158.2786560000004,"y":39674.74335999999,"width":200,"height":200,"minimized":true,"text":"FX20 - HYPERCHIP-64"},"aXs":{"blockId":"|","x":2902.564799999999,"y":39965.161023999986,"width":200,"height":200,"minimized":true,"text":"FX21 - HYPERCHIP-64"},"aU8":{"blockId":"b2","x":1784,"y":25636.8816,"width":200,"height":200,"minimized":true,"text":"8XYC - HyperWaveCHIP-64 - Set VX to VX * VY"},"btb":{"blockId":"btc","x":741.2222222222225,"y":19969.666666666664,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"aU+":{"blockId":"`","x":1885,"y":26012,"width":200,"height":200,"minimized":true,"text":"8XYD - HyperWaveCHIP-64 - Set VX to VX / VY"},"btd":{"blockId":"bte","x":1681.1279999999997,"y":25905.584,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"aW:":{"blockId":"]","x":2570.0836848639997,"y":37758.905824256006,"width":200,"height":200,"minimized":true,"text":"FN03 (HyperWaveCHIP-64 - Set RGB color for plane # N to join Item I in memory(R) I+1,(G) I+2(B)"},"btf":{"blockId":"btg","x":1168.9074074074076,"y":4180.222222222223,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"bth":{"blockId":"bti","x":1169.9074074074076,"y":7084.222222222223,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"btj":{"blockId":"btk","x":1277.925925925926,"y":9768.75925925926,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"btl":{"blockId":"btm","x":1304.925925925926,"y":10259.75925925926,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"btn":{"blockId":"bto","x":1836.925925925926,"y":11698.75925925926,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"po":{"blockId":"h","x":1779,"y":11668,"width":200,"height":200,"minimized":false,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"Bj":{"blockId":"a*","x":1759,"y":12065,"width":200,"height":200,"minimized":false,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"btp":{"blockId":"btq","x":1449,"y":4339,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"btr":{"blockId":"bts","x":1450,"y":7243,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"btt":{"blockId":"btu","x":1477,"y":9953,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"btv":{"blockId":"btw","x":1504,"y":10444,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"btx":{"blockId":"bty","x":2036,"y":11883,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"btz":{"blockId":"btA","x":1804,"y":4384,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64NOT the selected plane"},"Bi":{"blockId":"a)","x":1758,"y":11860,"width":200,"height":200,"minimized":false,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"btB":{"blockId":"btC","x":1719,"y":5299,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"btD":{"blockId":"btE","x":1450,"y":7243,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"btF":{"blockId":"btG","x":1477,"y":9953,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"btH":{"blockId":"btI","x":1504,"y":10444,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"btJ":{"blockId":"btK","x":2036,"y":11883,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"btL":{"blockId":"btM","x":-113.66666666666674,"y":36060.66666666667,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"btN":{"blockId":"btO","x":-183.66666666666674,"y":36488.66666666667,"width":200,"height":200,"minimized":true,"text":"FN03 (HyperWaveCHIP-64 - Set RGB color for plane # N to join Item I in memory(R) I+1,(G) I+2(B)"},"btP":{"blockId":"btQ","x":-216.66666666666674,"y":37092.66666666667,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"btR":{"blockId":"btS","x":-195.66666666666674,"y":37295.66666666667,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- Wait for a keypress and store the result in register VX"},"btT":{"blockId":"btU","x":-172.66666666666674,"y":37924.66666666667,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"btV":{"blockId":"btW","x":-144.66666666666674,"y":38135.66666666667,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"btX":{"blockId":"btY","x":-167.66666666666674,"y":38340.66666666667,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"btZ":{"blockId":"bt0","x":-19.666666666666742,"y":38871.66666666667,"width":200,"height":200,"minimized":true,"text":"FX20 - HYPERCHIP-64"},"bt1":{"blockId":"bt2","x":251.33333333333326,"y":39135.66666666667,"width":200,"height":200,"minimized":true,"text":"FX21 - HYPERCHIP-64"},"bt3":{"blockId":"bt4","x":-167.66666666666674,"y":39402.66666666667,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"bt5":{"blockId":"bt6","x":-221.99999999999977,"y":39629.00000000001,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"bt7":{"blockId":"bt8","x":-201.99999999999977,"y":39875.00000000001,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"bt9":{"blockId":"bt!","x":-163.99999999999977,"y":40275.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"bt#":{"blockId":"bt%","x":-183.99999999999977,"y":40631.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3B - HYPERCHIP64"},"bt(":{"blockId":"bt)","x":-227.99999999999977,"y":40751.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3C - HYPERCHIP64"},"bt*":{"blockId":"bt+","x":-183.99999999999977,"y":40901.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3D - HYPERCHIP64"},"bt,":{"blockId":"bt-","x":-301.9999999999998,"y":41124.00000000001,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP (XO-CHIP 1.1 ver.)\nsaveflags vx"},"bt.":{"blockId":"bt/","x":-261.9999999999998,"y":41862.00000000001,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP (XO-CHIP 1.1 ver.)\nloadflags vx"},"bt:":{"blockId":"bt;","x":-254.99999999999977,"y":42487.00000000001,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"aWX":{"blockId":"b8","x":1900.9655206912,"y":36310.473099980794,"width":200,"height":200,"minimized":true,"text":"F100 - HyperWaveCHIP-64 - long jump"},"aW1":{"blockId":"b9","x":1845.08416,"y":36546.515199999994,"width":200,"height":200,"minimized":true,"text":"F200 - HyperWaveCHIP-64 long subroutine"},"aW7":{"blockId":"b!","x":2068.3948799999994,"y":36758.710399999996,"width":200,"height":200,"minimized":true,"text":"F300 - HyperWaveCHIP-64 - long jump0"},"eG":{"blockId":"Y","x":1934,"y":4849,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"bt=":{"blockId":"bt?","x":1450,"y":4132,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"bt@":{"blockId":"bt[","x":1454,"y":5323,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"bt]":{"blockId":"bt^","x":1433,"y":5515,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"bt_":{"blockId":"bt`","x":1434,"y":5720,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"bt{":{"blockId":"bt|","x":1580,"y":5885,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"bt}":{"blockId":"bt~","x":1445,"y":8774,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"bua":{"blockId":"bub","x":1354,"y":11508,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"buc":{"blockId":"bud","x":1376,"y":11957,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"bue":{"blockId":"buf","x":1719,"y":12534,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"bug":{"blockId":"buh","x":2400,"y":1567,"width":200,"height":200,"minimized":false,"text":"00F0 - HyperWaveCHIP-64NOT the selected plane"},"bui":{"blockId":"buj","x":1454,"y":5323,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"buk":{"blockId":"bul","x":1433,"y":5515,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"bum":{"blockId":"bun","x":1434,"y":5720,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"buo":{"blockId":"bup","x":1580,"y":5885,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"buq":{"blockId":"bur","x":1445,"y":8774,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"bus":{"blockId":"but","x":1354,"y":11508,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"buu":{"blockId":"buv","x":1376,"y":11957,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"buw":{"blockId":"bux","x":1719,"y":12534,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"aTd":{"blockId":"bF","x":1645,"y":16567,"width":200,"height":200,"minimized":false,"text":"0700 - (Mega-Chip): stop sound"},"buy":{"blockId":"buz","x":1344.7407407407406,"y":11627.11111111111,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"Bk":{"blockId":"Q","x":1723,"y":13071,"width":200,"height":200,"minimized":false,"text":"0010 (Mega-Chip) - Disable Megachip mode"},"buA":{"blockId":"buB","x":1073.1666666666665,"y":12639.22222222222,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"Sw":{"blockId":"^","x":1706,"y":12690,"width":200,"height":200,"minimized":false,"text":"0011 (Mega-Chip) - Enable Megachip mode"},"Sx":{"blockId":"e,","x":1698.3333333333333,"y":14138.555555555555,"width":200,"height":200,"minimized":false,"text":"01NN (Mega-Chip) - Set I to (nn<<16) + nnnn\nLike XO-CHIP's Long I but with 24-Bit addresses instead of 16-bit"},"Sy":{"blockId":"_","x":1689,"y":14407,"width":200,"height":200,"minimized":false,"text":"02NN (Mega-Chip)\nLoad NN 32-bit palettes located at I (this implementation skips the alpha byte)"},"Sz":{"blockId":"e-","x":1645,"y":15055,"width":200,"height":200,"minimized":false,"text":"03NN (Mega-Chip) - Set sprite width to NN"},"buC":{"blockId":"buD","x":1180.7600000000002,"y":37434.8,"width":200,"height":200,"minimized":true,"text":"F100 - HyperWaveCHIP-64 - long jump"},"buE":{"blockId":"buF","x":1205.7600000000002,"y":37660.8,"width":200,"height":200,"minimized":true,"text":"F200 - HyperWaveCHIP-64 long subroutine"},"buG":{"blockId":"buH","x":1225.7600000000002,"y":37205.8,"width":200,"height":200,"minimized":true,"text":"F300 - HyperWaveCHIP-64 - long jump0"},"aVS":{"blockId":"fb","x":2038,"y":30018,"width":348.148193359375,"height":144.4444580078125,"minimized":true,"text":"Note that HWC-64's draw modes and XO-CHIP's plane selection are set to default when MegaChip mode is enabled, and you should not change these while it is enabled!"},"aS[":{"blockId":"aO","x":1645,"y":15655,"width":200,"height":200,"minimized":true,"text":"05NN (MegaChip)\nBasically a NOP"},"aTh":{"blockId":"lp","x":1645,"y":16943,"width":200,"height":200,"minimized":false,"text":"09NN(?)\nUndocumented Mega-Chip instruction, supposedly sets collision color index?"},"aS_":{"blockId":"aP","x":1647,"y":15792,"width":200,"height":200,"minimized":true,"text":"060N (MegaChip)\nPlay digitized sound at I"},"aS;":{"blockId":"e.","x":1740,"y":15401,"width":200,"height":200,"minimized":false,"text":"04NN (Mega-Chip) - Set sprite height to NN"},"aTe":{"blockId":"bG","x":1647,"y":16792,"width":200,"height":200,"minimized":false,"text":"080N - (MegaChip) Set sprite blend mode to n"},"aVc":{"blockId":"Gi","x":1791.1184,"y":27269.112,"width":200,"height":200,"minimized":true,"text":"8XYF - HyperWaveCHIP-64 - set VY to VY / VX"},"aW|":{"blockId":"fl","x":2143.1654399999998,"y":38542.04575999999,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- Wait for a keypress and store the result in register VX"},"aWS":{"blockId":"aR","x":2487,"y":36090,"width":200,"height":200,"minimized":false,"text":"F000 (XO-CHIP)- i := long NNNN. Load i with a 16 bit address "},"buI":{"blockId":"buJ","x":2633.0400000000004,"y":22753.64,"width":200,"height":200,"minimized":false,"text":"8XY3- XOR VX, VY"},"aUc":{"blockId":"Gf","x":1728.3079147338867,"y":22069,"width":200,"height":200,"minimized":false,"text":"8XY3- XOR VX, VY"},"aO!":{"blockId":"5","x":1629,"y":37329,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"aO9":{"blockId":"4","x":1782,"y":37183,"width":200,"height":200,"minimized":true,"text":"FN01 - (XO-CHIP) - plane n"},"buK":{"blockId":null,"x":897,"y":307,"width":233,"height":316,"minimized":false,"text":"Programmed by @Geotale & @oxiti8\n\nSound, Hi-res CHIP-8 mode, SCHIP mode, XO-CHIP mode, “fixing everything”, GUI, and documentation comments by @oxiti8\n\nWave Logo XO-CHIP rom by @AArt1256\n\nAudio by @52525rr and @Kouzeru\n\nBug fixes and hexadecimal ROMs by @Kouzone and the guys over on r/EmuDev\nReally couldn’t thank them enough for the help.\n"},"buL":{"blockId":null,"x":1367,"y":465,"width":200,"height":200,"minimized":false,"text":"X = op1 mod 16\nY = floor of (op2 / 16)\nN = op2 mod 16"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":0,"layerOrder":8,"visible":true,"x":192,"y":-19,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Import ROM","variables":{"Nacx{A2WY%QGLX/QgF]N":["import.char",68],"^agx?=rasT|:*cBkFdeB":["import.binary","000000"],"3lt5rd5NtHtm.gOc6_3L":["import.status",5],"2gur[deD.u_*HDC_JLPm":["import.read_return",163],"zsxII[X,wz?xvCvofbsI":["import.rom_length",10537],"LihSp{MQuQGg`jIcI]x(":["import.dummy","1"],"4alDl:(*zINs=KzJfNuw":["import.ascii"," !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~▒∠ā∇√∫Σ▶π\t∂≤≥≠α→←↓↑γδεηθλρστωΔΠΩ■∞ ¡¢£¤¥¦§¨©ª«¬"],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"uAm4?3ed1Q#FT#;rW,cx":["chip8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["chip8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["speed (CPF)",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"IoL_ukas[]D_ug%.x83m":["import.percent",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"S:$!kD9d2^^Zt4F0Bbpw":["chip8.HPS",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpqFO)Ai_xwJZInrX[!~":["load",""],"Mh+n98ZN{1B*npNt5f45":["temp",49185],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Hf?;Y:LWGAxk[p?1562`":["chip8.audio",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"0Gx#lEQQyAoSQ1SH~+fu":["Load ROMs: _rom",[]],"#2t_c630N5NI?I=l]FZ]":["load",[16384,8192,24576,0,0]],"3`C#KsI[WM=%ZSxuHQ!~":["mappers",["0","1","2","3","4","7","69","75","90","206"]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"+p":{"opcode":"operator_multiply","next":null,"parent":"rO","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"+q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+q":{"opcode":"operator_letter_of","next":null,"parent":"+p","inputs":{"LETTER":[3,"aYO",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+r":{"opcode":"operator_multiply","next":null,"parent":"rP","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"+s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+s":{"opcode":"operator_letter_of","next":null,"parent":"+r","inputs":{"LETTER":[3,"aYP",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+t":{"opcode":"operator_multiply","next":null,"parent":"rP","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"+u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+u":{"opcode":"operator_letter_of","next":null,"parent":"+t","inputs":{"LETTER":[3,"aYQ",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+v":{"opcode":"operator_length","next":null,"parent":"+w","inputs":{"STRING":[3,"aYR",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+w":{"opcode":"operator_divide","next":null,"parent":"+x","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"+v",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+y":{"opcode":"procedures_prototype","next":null,"parent":"+z","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,"aYS"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"+z":{"opcode":"procedures_definition","next":"+A","parent":null,"inputs":{"custom_block":[1,"+y"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":7856},"+B":{"opcode":"microbit_displayClear","next":"+C","parent":"l)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+D":{"opcode":"looks_hide","next":"aYT","parent":"+C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+E":{"opcode":"procedures_prototype","next":null,"parent":"cA","inputs":{"5+*G8b%WKI.VHxST}.?.":[1,"aYU"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert_b64 %s","argumentids":"[\"5+*G8b%WKI.VHxST}.?.\"]","argumentnames":"[\"code\"]","argumentdefaults":"[\"\"]","warp":"true"}},"+F":{"opcode":"data_setvariableto","next":"+G","parent":"rQ","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+G":{"opcode":"data_setvariableto","next":"+H","parent":"+F","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"+H":{"opcode":"data_setvariableto","next":"+I","parent":"+G","inputs":{"VALUE":[1,[10,"(1/2) Converting to binary... (0%)"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"+I":{"opcode":"data_showvariable","next":"ft","parent":"+H","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"+J":{"opcode":"data_deletealloflist","next":"+K","parent":"ft","inputs":{},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"+L":{"opcode":"operator_length","next":null,"parent":"ft","inputs":{"STRING":[3,"aYV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+M":{"opcode":"data_deletealloflist","next":"+N","parent":"rR","inputs":{},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"+O":{"opcode":"operator_multiply","next":null,"parent":"+P","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"+Q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+Q":{"opcode":"operator_divide","next":null,"parent":"+O","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"+R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+R":{"opcode":"operator_length","next":null,"parent":"+Q","inputs":{"STRING":[3,"aYW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+S":{"opcode":"operator_letter_of","next":null,"parent":"fu","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"aYX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+T":{"opcode":"data_setvariableto","next":null,"parent":"ad","inputs":{"VALUE":[3,"aYY",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+U":{"opcode":"data_setvariableto","next":null,"parent":"ad","inputs":{"VALUE":[3,"aYZ",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+V":{"opcode":"operator_subtract","next":null,"parent":"+W","inputs":{"NUM1":[3,"aY0",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+X":{"opcode":"operator_equals","next":null,"parent":"ae","inputs":{"OPERAND1":[3,"+Y",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+Z":{"opcode":"data_setvariableto","next":null,"parent":"ae","inputs":{"VALUE":[3,"aY1",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+0":{"opcode":"data_setvariableto","next":null,"parent":"ae","inputs":{"VALUE":[3,"aY2",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+1":{"opcode":"data_showvariable","next":"fv","parent":"rS","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"+2":{"opcode":"operator_not","next":null,"parent":"fv","inputs":{"OPERAND":[2,"+3"]},"fields":{},"shadow":false,"topLevel":false},"+3":{"opcode":"operator_equals","next":null,"parent":"+2","inputs":{"OPERAND1":[3,"aY3",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+4":{"opcode":"data_deletealloflist","next":"fw","parent":"fv","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"+5":{"opcode":"data_setvariableto","next":"rT","parent":"+6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"+6":{"opcode":"data_setvariableto","next":"+5","parent":"+7","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"+8":{"opcode":"operator_join","next":null,"parent":"rU","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"rV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+9":{"opcode":"operator_divide","next":null,"parent":"SR","inputs":{"NUM1":[3,"+!",[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"+!":{"opcode":"operator_length","next":null,"parent":"+9","inputs":{"STRING":[3,"aY4",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+#":{"opcode":"operator_divide","next":null,"parent":"GK","inputs":{"NUM1":[3,"+%",[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"+(":{"opcode":"operator_mod","next":null,"parent":"+)","inputs":{"NUM1":[3,"+*",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"++":{"opcode":"data_setvariableto","next":null,"parent":"af","inputs":{"VALUE":[3,"aY5",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+,":{"opcode":"data_setvariableto","next":null,"parent":"af","inputs":{"VALUE":[3,"aY6",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+*":{"opcode":"operator_mathop","next":null,"parent":"+(","inputs":{"NUM":[3,"+W",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"+-":{"opcode":"operator_add","next":null,"parent":"rW","inputs":{"NUM1":[3,"aY7",[4,"0"]],"NUM2":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+.":{"opcode":"data_setvariableto","next":null,"parent":"+/","inputs":{"VALUE":[3,"+:",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"+/":{"opcode":"data_addtolist","next":"+.","parent":"rX","inputs":{"ITEM":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[10,""]]},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"+:":{"opcode":"operator_join","next":null,"parent":"+.","inputs":{"STRING1":[1,[10,"Importing ARM9 ROM... "]],"STRING2":[3,"+;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+;":{"opcode":"operator_join","next":null,"parent":"+:","inputs":{"STRING1":[3,"+=",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"+=":{"opcode":"operator_divide","next":null,"parent":"+;","inputs":{"NUM1":[3,"+?",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"+@":{"opcode":"operator_mathop","next":null,"parent":"+Y","inputs":{"NUM":[3,"+[",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"+[":{"opcode":"operator_divide","next":null,"parent":"+@","inputs":{"NUM1":[3,"+]",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"+]":{"opcode":"operator_subtract","next":null,"parent":"+[","inputs":{"NUM1":[3,"aY8",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+^":{"opcode":"operator_equals","next":null,"parent":"ag","inputs":{"OPERAND1":[3,"+_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+`":{"opcode":"data_setvariableto","next":null,"parent":"ag","inputs":{"VALUE":[3,"aY9",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+{":{"opcode":"data_setvariableto","next":null,"parent":"ag","inputs":{"VALUE":[3,"aY!",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+_":{"opcode":"operator_mod","next":null,"parent":"+^","inputs":{"NUM1":[3,"+|",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"+|":{"opcode":"operator_subtract","next":null,"parent":"+_","inputs":{"NUM1":[3,"aY#",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+}":{"opcode":"data_setvariableto","next":"fx","parent":"+K","inputs":{"VALUE":[1,[10,"(2/2) Importing rom... (0%)"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"+~":{"opcode":"operator_divide","next":null,"parent":"fx","inputs":{"NUM1":[3,"aY%",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},",a":{"opcode":"operator_join","next":null,"parent":",b","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"rY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",c":{"opcode":"operator_join","next":null,"parent":"rZ","inputs":{"STRING1":[1,[10,"Importing ROM as list... "]],"STRING2":[3,",d",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",d":{"opcode":"operator_join","next":null,"parent":",c","inputs":{"STRING1":[3,",e",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},",e":{"opcode":"operator_divide","next":null,"parent":",d","inputs":{"NUM1":[3,",f",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},",f":{"opcode":"operator_round","next":null,"parent":",e","inputs":{"NUM":[3,",g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",h":{"opcode":"operator_divide","next":null,"parent":"SS","inputs":{"NUM1":[3,",i",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},",i":{"opcode":"operator_length","next":null,"parent":",h","inputs":{"STRING":[3,"aY(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",j":{"opcode":"operator_divide","next":null,"parent":"r0","inputs":{"NUM1":[3,",k",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},",k":{"opcode":"operator_length","next":null,"parent":",j","inputs":{"STRING":[3,"aY)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",l":{"opcode":"operator_letter_of","next":null,"parent":"r1","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"aY*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",m":{"opcode":"data_setvariableto","next":null,"parent":"ah","inputs":{"VALUE":[3,"aY+",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},",n":{"opcode":"data_setvariableto","next":null,"parent":"ah","inputs":{"VALUE":[3,"aY,",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},",o":{"opcode":"operator_mathop","next":null,"parent":",p","inputs":{"NUM":[3,",q",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},",q":{"opcode":"operator_divide","next":null,"parent":",o","inputs":{"NUM1":[3,",r",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},",r":{"opcode":"operator_subtract","next":null,"parent":",q","inputs":{"NUM1":[3,"aY-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},",s":{"opcode":"procedures_call","next":",u","parent":",t","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},",t":{"opcode":"data_deletealloflist","next":",s","parent":"r2","inputs":{},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},",u":{"opcode":"data_setvariableto","next":",v","parent":",s","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},",v":{"opcode":"procedures_call","next":",w","parent":",u","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x3C"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},",w":{"opcode":"data_setvariableto","next":"ST","parent":",v","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},",x":{"opcode":"operator_mathop","next":null,"parent":",y","inputs":{"NUM":[3,",z",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},",z":{"opcode":"operator_multiply","next":null,"parent":",x","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,",A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",A":{"opcode":"operator_divide","next":null,"parent":",z","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"aY.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",B":{"opcode":"operator_multiply","next":null,"parent":"rO","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,"aY/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",C":{"opcode":"operator_mathop","next":null,"parent":"+A","inputs":{"NUM":[3,",D",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"+A":{"opcode":"data_setvariableto","next":null,"parent":"+z","inputs":{"VALUE":[3,",C",[10,""]]},"fields":{"VARIABLE":["import.read_return","2gur[deD.u_*HDC_JLPm"]},"shadow":false,"topLevel":false},",D":{"opcode":"operator_mod","next":null,"parent":",C","inputs":{"NUM1":[3,"r3",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},",E":{"opcode":"data_itemoflist","next":null,"parent":"r3","inputs":{"INDEX":[3,",F",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},",F":{"opcode":"operator_add","next":null,"parent":",E","inputs":{"NUM1":[3,",G",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},",H":{"opcode":"operator_round","next":null,"parent":"r3","inputs":{"NUM":[3,",I",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",I":{"opcode":"operator_mathop","next":null,"parent":",H","inputs":{"NUM":[3,",J",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},",K":{"opcode":"procedures_call","next":",M","parent":",L","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},",M":{"opcode":"data_addtolist","next":"aY:","parent":",K","inputs":{"ITEM":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},",N":{"opcode":"data_setvariableto","next":"ai","parent":"l*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},",O":{"opcode":"operator_equals","next":null,"parent":"l*","inputs":{"OPERAND1":[3,"aY;",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},",P":{"opcode":"operator_equals","next":null,"parent":"ai","inputs":{"OPERAND1":[3,",Q",[10,""]],"OPERAND2":[1,[10,"x"]]},"fields":{},"shadow":false,"topLevel":false},",Q":{"opcode":"operator_letter_of","next":null,"parent":",P","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,"aY=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",R":{"opcode":"operator_equals","next":null,"parent":"l+","inputs":{"OPERAND1":[3,",S",[10,""]],"OPERAND2":[1,[10,","]]},"fields":{},"shadow":false,"topLevel":false},",S":{"opcode":"operator_letter_of","next":null,"parent":",R","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,"aY?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",T":{"opcode":"operator_divide","next":null,"parent":"SU","inputs":{"NUM1":[3,",U",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},",U":{"opcode":"operator_length","next":null,"parent":",T","inputs":{"STRING":[3,"aY@",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",V":{"opcode":"operator_letter_of","next":null,"parent":",W","inputs":{"LETTER":[3,"aY[",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},",X":{"opcode":"operator_letter_of","next":null,"parent":",Y","inputs":{"LETTER":[3,"aY]",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},",Z":{"opcode":"operator_multiply","next":null,"parent":"r4","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,",0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",1":{"opcode":"operator_letter_of","next":null,"parent":"r4","inputs":{"LETTER":[3,"aY^",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},",0":{"opcode":"operator_letter_of","next":null,"parent":",Z","inputs":{"LETTER":[3,"aY_",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+%":{"opcode":"operator_length","next":null,"parent":"+#","inputs":{"STRING":[3,"aY`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",2":{"opcode":"operator_join","next":null,"parent":"GL","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"GM",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",3":{"opcode":"operator_join","next":null,"parent":"r5","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"r1",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",4":{"opcode":"procedures_call","next":"r6","parent":"GN","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},",5":{"opcode":"looks_gotofrontback","next":"r7","parent":",6","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},",7":{"opcode":"data_setvariableto","next":"SV","parent":"r7","inputs":{"VALUE":[1,[10," !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~▒∠ā∇√∫Σ▶π\t∂≤≥≠α→←↓↑γδεηθλρστωΔΠΩ■∞ ¡¢£¤¥¦§¨©ª«¬"]]},"fields":{"VARIABLE":["import.ascii","4alDl:(*zINs=KzJfNuw"]},"shadow":false,"topLevel":false},",8":{"opcode":"data_setvariableto","next":"GP","parent":"GO","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},",9":{"opcode":"operator_not","next":null,"parent":"GO","inputs":{"OPERAND":[2,"aY{"]},"fields":{},"shadow":false,"topLevel":false},",!":{"opcode":"operator_gt","next":null,"parent":"GP","inputs":{"OPERAND1":[3,"aY|",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},",#":{"opcode":"sensing_askandwait","next":"r9","parent":"r8","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},",%":{"opcode":"operator_not","next":null,"parent":"r9","inputs":{"OPERAND":[2,",("]},"fields":{},"shadow":false,"topLevel":false},",(":{"opcode":"operator_equals","next":null,"parent":",%","inputs":{"OPERAND1":[3,"aY}",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},",)":{"opcode":"sound_play","next":null,"parent":"r!","inputs":{"SOUND_MENU":[1,"aY~"]},"fields":{},"shadow":false,"topLevel":false},",*":{"opcode":"sensing_askandwait","next":"r%","parent":"r#","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},",+":{"opcode":"data_setvariableto","next":"r(","parent":"fw","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},",,":{"opcode":"data_setvariableto","next":"r)","parent":"fw","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},",-":{"opcode":"operator_letter_of","next":null,"parent":",.","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,"aZa",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",/":{"opcode":"operator_divide","next":null,"parent":"r(","inputs":{"NUM1":[3,",:",[4,"0"]],"NUM2":[1,[4,"24"]]},"fields":{},"shadow":false,"topLevel":false},",:":{"opcode":"operator_length","next":null,"parent":",/","inputs":{"STRING":[3,"aZb",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",b":{"opcode":"operator_add","next":null,"parent":"r*","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,",a",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",;":{"opcode":"operator_equals","next":null,"parent":"GQ","inputs":{"OPERAND1":[3,"aZc",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},",=":{"opcode":"data_setvariableto","next":",?","parent":"r+","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},",?":{"opcode":"data_setvariableto","next":"GN","parent":",=","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},",@":{"opcode":"operator_lt","next":null,"parent":"SW","inputs":{"OPERAND1":[1,[10,"0x7FF"]],"OPERAND2":[3,"aZd",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",[":{"opcode":"data_addtolist","next":"aZe","parent":"SW","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},",]":{"opcode":"sensing_askandwait","next":"GS","parent":"GR","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},",^":{"opcode":"operator_not","next":null,"parent":"GS","inputs":{"OPERAND":[2,",_"]},"fields":{},"shadow":false,"topLevel":false},",_":{"opcode":"operator_equals","next":null,"parent":",^","inputs":{"OPERAND1":[3,"aZf",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},",`":{"opcode":"operator_equals","next":null,"parent":"SX","inputs":{"OPERAND1":[3,"aZg",[10,""]],"OPERAND2":[1,[10,"200000"]]},"fields":{},"shadow":false,"topLevel":false},",{":{"opcode":"control_wait_until","next":null,"parent":"SY","inputs":{"CONDITION":[2,"SZ"]},"fields":{},"shadow":false,"topLevel":false},",|":{"opcode":"operator_not","next":null,"parent":"SY","inputs":{"OPERAND":[2,"S0"]},"fields":{},"shadow":false,"topLevel":false},",}":{"opcode":"sensing_keypressed","next":null,"parent":"S0","inputs":{"KEY_OPTION":[1,"aZh"]},"fields":{},"shadow":false,"topLevel":false},",~":{"opcode":"sensing_keypressed","next":null,"parent":"SZ","inputs":{"KEY_OPTION":[1,"aZi"]},"fields":{},"shadow":false,"topLevel":false},"-a":{"opcode":"sensing_askandwait","next":"GU","parent":"GT","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-b":{"opcode":"operator_length","next":null,"parent":"-c","inputs":{"STRING":[3,"aZj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-d":{"opcode":"operator_add","next":null,"parent":"S1","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"-e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-e":{"opcode":"operator_join","next":null,"parent":"-d","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"r,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-f":{"opcode":"operator_letter_of","next":null,"parent":"r-","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"aZk",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-g":{"opcode":"operator_join","next":null,"parent":"r.","inputs":{"STRING1":[1,[10,"Importing ROM as list... "]],"STRING2":[3,"-h",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-h":{"opcode":"operator_join","next":null,"parent":"-g","inputs":{"STRING1":[3,"-i",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"-i":{"opcode":"operator_divide","next":null,"parent":"-h","inputs":{"NUM1":[3,"-j",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"-j":{"opcode":"operator_round","next":null,"parent":"-i","inputs":{"NUM":[3,"+x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+x":{"opcode":"operator_multiply","next":null,"parent":"-j","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"+w",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",G":{"opcode":"operator_mathop","next":null,"parent":",F","inputs":{"NUM":[3,"-k",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"-k":{"opcode":"operator_divide","next":null,"parent":",G","inputs":{"NUM1":[3,"aZl",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},",J":{"opcode":"operator_multiply","next":null,"parent":",I","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"-l",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+C":{"opcode":"data_setvariableto","next":"+D","parent":"+B","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"+N":{"opcode":"procedures_call","next":"-m","parent":"+M","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"-m":{"opcode":"data_setvariableto","next":"-n","parent":"+N","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"-n":{"opcode":"procedures_call","next":"-o","parent":"-m","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x2C"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"-o":{"opcode":"data_setvariableto","next":"r/","parent":"-n","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"-p":{"opcode":"data_setvariableto","next":"rX","parent":"fy","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"-q":{"opcode":"procedures_call","next":"rW","parent":"rX","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"+7":{"opcode":"data_setvariableto","next":"+6","parent":"r:","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"-r":{"opcode":"operator_mod","next":null,"parent":"-s","inputs":{"NUM1":[3,"-t",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"-t":{"opcode":"operator_mathop","next":null,"parent":"-r","inputs":{"NUM":[3,"-u",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"-u":{"opcode":"operator_divide","next":null,"parent":"-t","inputs":{"NUM1":[3,"-v",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"-v":{"opcode":"operator_subtract","next":null,"parent":"-u","inputs":{"NUM1":[3,"aZm",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-w":{"opcode":"data_setvariableto","next":null,"parent":"aj","inputs":{"VALUE":[3,"aZn",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"-x":{"opcode":"data_setvariableto","next":null,"parent":"aj","inputs":{"VALUE":[3,"aZo",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"+)":{"opcode":"operator_equals","next":null,"parent":"af","inputs":{"OPERAND1":[3,"+(",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+?":{"opcode":"operator_round","next":null,"parent":"+=","inputs":{"NUM":[3,"-y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-y":{"opcode":"operator_multiply","next":null,"parent":"+?","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"aZp",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-z":{"opcode":"operator_divide","next":null,"parent":"-A","inputs":{"NUM1":[3,"-B",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"-B":{"opcode":"operator_round","next":null,"parent":"-z","inputs":{"NUM":[3,"-C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-C":{"opcode":"operator_multiply","next":null,"parent":"-B","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"aZq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-D":{"opcode":"operator_mod","next":null,"parent":"-E","inputs":{"NUM1":[3,"-F",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"-F":{"opcode":"operator_mathop","next":null,"parent":"-D","inputs":{"NUM":[3,"-G",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"-G":{"opcode":"operator_divide","next":null,"parent":"-F","inputs":{"NUM1":[3,"-H",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-H":{"opcode":"operator_subtract","next":null,"parent":"-G","inputs":{"NUM1":[3,"aZr",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-I":{"opcode":"operator_equals","next":null,"parent":"ah","inputs":{"OPERAND1":[3,",p",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},",p":{"opcode":"operator_mod","next":null,"parent":"-I","inputs":{"NUM1":[3,",o",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"-J":{"opcode":"data_setvariableto","next":"S2","parent":"fz","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"-K":{"opcode":"data_addtolist","next":"-L","parent":"S2","inputs":{"ITEM":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[10,""]]},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},"-M":{"opcode":"procedures_call","next":"S3","parent":"S2","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"-N":{"opcode":"operator_add","next":null,"parent":"S3","inputs":{"NUM1":[3,"aZs",[4,"0"]],"NUM2":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-L":{"opcode":"data_setvariableto","next":null,"parent":"-K","inputs":{"VALUE":[3,"-O",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"-O":{"opcode":"operator_join","next":null,"parent":"-L","inputs":{"STRING1":[1,[10,"Importing ARM7 ROM... "]],"STRING2":[3,"-A",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aYS":{"opcode":"argument_reporter_string_number","next":null,"parent":"+y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"r3":{"opcode":"operator_divide","next":null,"parent":",D","inputs":{"NUM1":[3,",E",[4,"0"]],"NUM2":[3,",H",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZl":{"opcode":"argument_reporter_string_number","next":null,"parent":"-k","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"-l":{"opcode":"operator_subtract","next":null,"parent":",J","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"-P",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-P":{"opcode":"operator_mod","next":null,"parent":"-l","inputs":{"NUM1":[3,"aZt",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aZt":{"opcode":"argument_reporter_string_number","next":null,"parent":"-P","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"-Q":{"opcode":"procedures_definition","next":"fA","parent":null,"inputs":{"custom_block":[1,"S4"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":8112},"S4":{"opcode":"procedures_prototype","next":null,"parent":"-Q","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[1,"aZu"],"krrHn~;_D^@=CaLw(f,g":[1,"aZv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","argumentnames":"[\"rom\",\"flag\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"aZu":{"opcode":"argument_reporter_string_number","next":null,"parent":"S4","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":true,"topLevel":false},"aZv":{"opcode":"argument_reporter_string_number","next":null,"parent":"S4","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":true,"topLevel":false},"fA":{"opcode":"control_if_else","next":"S5","parent":"-Q","inputs":{"CONDITION":[2,"-R"],"SUBSTACK":[2,"r;"],"SUBSTACK2":[2,"l*"]},"fields":{},"shadow":false,"topLevel":false},"-R":{"opcode":"operator_equals","next":null,"parent":"fA","inputs":{"OPERAND1":[3,"aZw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aZw":{"opcode":"argument_reporter_string_number","next":null,"parent":"-R","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"r;":{"opcode":"looks_switchcostumeto","next":"GV","parent":"fA","inputs":{"COSTUME":[1,"aZx"]},"fields":{},"shadow":false,"topLevel":false},"aZx":{"opcode":"looks_costume","next":null,"parent":"r;","inputs":{},"fields":{"COSTUME":["I",null]},"shadow":true,"topLevel":false},"GV":{"opcode":"data_setvariableto","next":"r=","parent":"r;","inputs":{"VALUE":[3,"aZy",[10,""]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"aZy":{"opcode":"sensing_answer","next":null,"parent":"GV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r=":{"opcode":"looks_switchcostumeto","next":"-S","parent":"GV","inputs":{"COSTUME":[1,"aZz"]},"fields":{},"shadow":false,"topLevel":false},"aZz":{"opcode":"looks_costume","next":null,"parent":"r=","inputs":{},"fields":{"COSTUME":["L",null]},"shadow":true,"topLevel":false},"-S":{"opcode":"data_setvariableto","next":"-T","parent":"r=","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.designation","*cu$N5#KACc@_m}ZOQx7"]},"shadow":false,"topLevel":false},"-T":{"opcode":"data_setvariableto","next":"-U","parent":"-S","inputs":{"VALUE":[1,[10,"1234"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"-U":{"opcode":"data_deletealloflist","next":",L","parent":"-T","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},",L":{"opcode":"control_repeat","next":null,"parent":"-U","inputs":{"TIMES":[1,[6,"68"]],"SUBSTACK":[2,",K"]},"fields":{},"shadow":false,"topLevel":false},"aY:":{"opcode":"data_changevariableby","next":null,"parent":",M","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"l*":{"opcode":"control_if","next":",N","parent":"fA","inputs":{"CONDITION":[2,",O"],"SUBSTACK":[2,"r?"]},"fields":{},"shadow":false,"topLevel":false},"aY;":{"opcode":"argument_reporter_string_number","next":null,"parent":",O","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"r?":{"opcode":"looks_switchcostumeto","next":"aZA","parent":"l*","inputs":{"COSTUME":[1,"aZB"]},"fields":{},"shadow":false,"topLevel":false},"aZB":{"opcode":"looks_costume","next":null,"parent":"r?","inputs":{},"fields":{"COSTUME":["J",null]},"shadow":true,"topLevel":false},"aZA":{"opcode":"data_deletealloflist","next":null,"parent":"r?","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ai":{"opcode":"control_if_else","next":"GQ","parent":",N","inputs":{"CONDITION":[2,",P"],"SUBSTACK":[2,"l+"],"SUBSTACK2":[2,"SS"]},"fields":{},"shadow":false,"topLevel":false},"aY=":{"opcode":"argument_reporter_string_number","next":null,"parent":",Q","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"l+":{"opcode":"control_if_else","next":null,"parent":"ai","inputs":{"CONDITION":[2,",R"],"SUBSTACK":[2,"SU"],"SUBSTACK2":[2,"SR"]},"fields":{},"shadow":false,"topLevel":false},"aY?":{"opcode":"argument_reporter_string_number","next":null,"parent":",S","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"SU":{"opcode":"data_changevariableby","next":"r@","parent":"l+","inputs":{"VALUE":[3,",T",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"aY@":{"opcode":"argument_reporter_string_number","next":null,"parent":",U","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"r@":{"opcode":"control_repeat","next":null,"parent":"SU","inputs":{"TIMES":[3,"-V",[6,"0"]],"SUBSTACK":[2,"rU"]},"fields":{},"shadow":false,"topLevel":false},"-V":{"opcode":"operator_divide","next":null,"parent":"r@","inputs":{"NUM1":[3,"-W",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"-W":{"opcode":"operator_length","next":null,"parent":"-V","inputs":{"STRING":[3,"aZC",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZC":{"opcode":"argument_reporter_string_number","next":null,"parent":"-W","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"rU":{"opcode":"data_addtolist","next":"aZD","parent":"r@","inputs":{"ITEM":[3,"+8",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"rV":{"opcode":"operator_join","next":null,"parent":"+8","inputs":{"STRING1":[3,"r[",[10,""]],"STRING2":[3,"r]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r[":{"opcode":"operator_letter_of","next":null,"parent":"rV","inputs":{"LETTER":[3,"aZE",[6,"0"]],"STRING":[3,"aZF",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZE":{"opcode":"operator_add","next":null,"parent":"r[","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aZF":{"opcode":"argument_reporter_string_number","next":null,"parent":"r[","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"r]":{"opcode":"operator_letter_of","next":null,"parent":"rV","inputs":{"LETTER":[3,"aZG",[6,"0"]],"STRING":[3,"aZH",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZG":{"opcode":"operator_add","next":null,"parent":"r]","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aZH":{"opcode":"argument_reporter_string_number","next":null,"parent":"r]","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"aZD":{"opcode":"data_changevariableby","next":null,"parent":"rU","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"SR":{"opcode":"data_changevariableby","next":"GK","parent":"l+","inputs":{"VALUE":[3,"+9",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"aY4":{"opcode":"argument_reporter_string_number","next":null,"parent":"+!","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"GK":{"opcode":"control_repeat","next":null,"parent":"SR","inputs":{"TIMES":[3,"+#",[6,"0"]],"SUBSTACK":[2,"GL"]},"fields":{},"shadow":false,"topLevel":false},"aY`":{"opcode":"argument_reporter_string_number","next":null,"parent":"+%","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"GL":{"opcode":"data_addtolist","next":"aZI","parent":"GK","inputs":{"ITEM":[3,",2",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"GM":{"opcode":"operator_join","next":null,"parent":",2","inputs":{"STRING1":[3,"GW",[10,""]],"STRING2":[3,"GX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"GW":{"opcode":"operator_letter_of","next":null,"parent":"GM","inputs":{"LETTER":[3,"aZJ",[6,"0"]],"STRING":[3,"aZK",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZJ":{"opcode":"operator_add","next":null,"parent":"GW","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aZK":{"opcode":"argument_reporter_string_number","next":null,"parent":"GW","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"GX":{"opcode":"operator_letter_of","next":null,"parent":"GM","inputs":{"LETTER":[3,"aZL",[6,"0"]],"STRING":[3,"aZM",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZL":{"opcode":"operator_add","next":null,"parent":"GX","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aZM":{"opcode":"argument_reporter_string_number","next":null,"parent":"GX","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"aZI":{"opcode":"data_changevariableby","next":null,"parent":"GL","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"SS":{"opcode":"data_changevariableby","next":"r0","parent":"ai","inputs":{"VALUE":[3,",h",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"aY(":{"opcode":"argument_reporter_string_number","next":null,"parent":",i","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"r0":{"opcode":"control_repeat","next":null,"parent":"SS","inputs":{"TIMES":[3,",j",[6,"0"]],"SUBSTACK":[2,"r5"]},"fields":{},"shadow":false,"topLevel":false},"aY)":{"opcode":"argument_reporter_string_number","next":null,"parent":",k","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"r5":{"opcode":"data_addtolist","next":"aZN","parent":"r0","inputs":{"ITEM":[3,",3",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"r1":{"opcode":"operator_join","next":null,"parent":",3","inputs":{"STRING1":[3,",l",[10,""]],"STRING2":[3,"r^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aY*":{"opcode":"argument_reporter_string_number","next":null,"parent":",l","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"r^":{"opcode":"operator_letter_of","next":null,"parent":"r1","inputs":{"LETTER":[3,"aZO",[6,"0"]],"STRING":[3,"aZP",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZO":{"opcode":"operator_add","next":null,"parent":"r^","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aZP":{"opcode":"argument_reporter_string_number","next":null,"parent":"r^","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"aZN":{"opcode":"data_changevariableby","next":null,"parent":"r5","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"GQ":{"opcode":"control_if","next":null,"parent":"ai","inputs":{"CONDITION":[2,",;"],"SUBSTACK":[2,"r+"]},"fields":{},"shadow":false,"topLevel":false},"aZc":{"opcode":"argument_reporter_string_number","next":null,"parent":",;","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"r+":{"opcode":"looks_switchcostumeto","next":",=","parent":"GQ","inputs":{"COSTUME":[1,"aZQ"]},"fields":{},"shadow":false,"topLevel":false},"aZQ":{"opcode":"looks_costume","next":null,"parent":"r+","inputs":{},"fields":{"COSTUME":["K",null]},"shadow":true,"topLevel":false},"GN":{"opcode":"control_repeat","next":null,"parent":",?","inputs":{"TIMES":[1,[6,"60"]],"SUBSTACK":[2,",4"]},"fields":{},"shadow":false,"topLevel":false},"S5":{"opcode":"control_if","next":null,"parent":"fA","inputs":{"CONDITION":[2,"-X"],"SUBSTACK":[2,"PQ"]},"fields":{},"shadow":false,"topLevel":false},"-X":{"opcode":"operator_equals","next":null,"parent":"S5","inputs":{"OPERAND1":[3,"aZR",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aZR":{"opcode":"argument_reporter_string_number","next":null,"parent":"-X","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"PQ":{"opcode":"control_if","next":"PR","parent":"S5","inputs":{"CONDITION":[2,"aZS"],"SUBSTACK":[2,"SW"]},"fields":{},"shadow":false,"topLevel":false},"aZS":{"opcode":"operator_equals","next":null,"parent":"PQ","inputs":{"OPERAND1":[3,[12,"import.status","3lt5rd5NtHtm.gOc6_3L"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"SW":{"opcode":"control_repeat_until","next":null,"parent":"PQ","inputs":{"CONDITION":[2,",@"],"SUBSTACK":[2,",["]},"fields":{},"shadow":false,"topLevel":false},"aZd":{"opcode":"data_lengthoflist","next":null,"parent":",@","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aZe":{"opcode":"data_changevariableby","next":null,"parent":",[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"PR":{"opcode":"control_if","next":"PS","parent":"PQ","inputs":{"CONDITION":[2,"aZT"],"SUBSTACK":[2,"S6"]},"fields":{},"shadow":false,"topLevel":false},"aZT":{"opcode":"operator_equals","next":null,"parent":"PR","inputs":{"OPERAND1":[3,[12,"import.status","3lt5rd5NtHtm.gOc6_3L"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"S6":{"opcode":"control_repeat_until","next":null,"parent":"PR","inputs":{"CONDITION":[2,"-Y"],"SUBSTACK":[2,"-Z"]},"fields":{},"shadow":false,"topLevel":false},"-Y":{"opcode":"operator_lt","next":null,"parent":"S6","inputs":{"OPERAND1":[1,[10,"0xFFF"]],"OPERAND2":[3,"aZU",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZU":{"opcode":"data_lengthoflist","next":null,"parent":"-Y","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"-Z":{"opcode":"data_addtolist","next":"aZV","parent":"S6","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aZV":{"opcode":"data_changevariableby","next":null,"parent":"-Z","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"PS":{"opcode":"control_if","next":"S7","parent":"PR","inputs":{"CONDITION":[2,"aZW"],"SUBSTACK":[2,"S8"]},"fields":{},"shadow":false,"topLevel":false},"aZW":{"opcode":"operator_equals","next":null,"parent":"PS","inputs":{"OPERAND1":[3,[12,"import.status","3lt5rd5NtHtm.gOc6_3L"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"S8":{"opcode":"control_repeat_until","next":null,"parent":"PS","inputs":{"CONDITION":[2,"-0"],"SUBSTACK":[2,"-1"]},"fields":{},"shadow":false,"topLevel":false},"-0":{"opcode":"operator_lt","next":null,"parent":"S8","inputs":{"OPERAND1":[1,[10,"0x17FF"]],"OPERAND2":[3,"aZX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZX":{"opcode":"data_lengthoflist","next":null,"parent":"-0","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"-1":{"opcode":"data_addtolist","next":"aZY","parent":"S8","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aZY":{"opcode":"data_changevariableby","next":null,"parent":"-1","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"S7":{"opcode":"control_if","next":null,"parent":"PS","inputs":{"CONDITION":[2,"aZZ"],"SUBSTACK":[2,"S9"]},"fields":{},"shadow":false,"topLevel":false},"aZZ":{"opcode":"operator_equals","next":null,"parent":"S7","inputs":{"OPERAND1":[3,[12,"import.status","3lt5rd5NtHtm.gOc6_3L"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"S9":{"opcode":"control_repeat_until","next":null,"parent":"S7","inputs":{"CONDITION":[2,"-2"],"SUBSTACK":[2,"-3"]},"fields":{},"shadow":false,"topLevel":false},"-2":{"opcode":"operator_lt","next":null,"parent":"S9","inputs":{"OPERAND1":[1,[10,"0x1FFF"]],"OPERAND2":[3,"aZ0",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZ0":{"opcode":"data_lengthoflist","next":null,"parent":"-2","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"-3":{"opcode":"data_addtolist","next":"aZ1","parent":"S9","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aZ1":{"opcode":"data_changevariableby","next":null,"parent":"-3","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"aZ2":{"opcode":"event_whenbroadcastreceived","next":"l)","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_rom","oauq{1.?KIC%2JlgJq^:"]},"shadow":false,"topLevel":true,"x":48,"y":64},"l)":{"opcode":"control_if","next":"+B","parent":"aZ2","inputs":{"CONDITION":[2,"aZ3"],"SUBSTACK":[2,"-4"]},"fields":{},"shadow":false,"topLevel":false},"aZ3":{"opcode":"operator_equals","next":null,"parent":"l)","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-4":{"opcode":"data_setvariableto","next":"-5","parent":"l)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"-5":{"opcode":"motion_gotoxy","next":",6","parent":"-4","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},",6":{"opcode":"looks_show","next":",5","parent":"-5","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r7":{"opcode":"looks_switchcostumeto","next":",7","parent":",5","inputs":{"COSTUME":[1,"aZ4"]},"fields":{},"shadow":false,"topLevel":false},"aZ4":{"opcode":"looks_costume","next":null,"parent":"r7","inputs":{},"fields":{"COSTUME":["A",null]},"shadow":true,"topLevel":false},"SV":{"opcode":"microbit_displaySymbol","next":"r_","parent":",7","inputs":{"MATRIX":[1,"aZ5"]},"fields":{},"shadow":false,"topLevel":false},"aZ5":{"opcode":"matrix","next":null,"parent":"SV","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"r_":{"opcode":"sound_play","next":"GO","parent":"SV","inputs":{"SOUND_MENU":[1,"aZ6"]},"fields":{},"shadow":false,"topLevel":false},"aZ6":{"opcode":"sound_sounds_menu","next":null,"parent":"r_","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"GO":{"opcode":"control_wait_until","next":",8","parent":"r_","inputs":{"CONDITION":[2,",9"]},"fields":{},"shadow":false,"topLevel":false},"aY{":{"opcode":"operator_equals","next":null,"parent":",9","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"GP":{"opcode":"control_if","next":null,"parent":",8","inputs":{"CONDITION":[2,",!"],"SUBSTACK":[2,"l,"]},"fields":{},"shadow":false,"topLevel":false},"aY|":{"opcode":"operator_divide","next":null,"parent":",!","inputs":{"NUM1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"l,":{"opcode":"control_if","next":"l-","parent":"GP","inputs":{"CONDITION":[2,"aZ7"],"SUBSTACK":[2,"r8"]},"fields":{},"shadow":false,"topLevel":false},"aZ7":{"opcode":"operator_equals","next":null,"parent":"l,","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},"r8":{"opcode":"looks_switchcostumeto","next":",#","parent":"l,","inputs":{"COSTUME":[1,"aZ8"]},"fields":{},"shadow":false,"topLevel":false},"aZ8":{"opcode":"looks_costume","next":null,"parent":"r8","inputs":{},"fields":{"COSTUME":["C",null]},"shadow":true,"topLevel":false},"r9":{"opcode":"control_if","next":null,"parent":",#","inputs":{"CONDITION":[2,",%"],"SUBSTACK":[2,"r!"]},"fields":{},"shadow":false,"topLevel":false},"aY}":{"opcode":"sensing_answer","next":null,"parent":",(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r!":{"opcode":"procedures_call","next":",)","parent":"r9","inputs":{"5+*G8b%WKI.VHxST}.?.":[3,"aZ9",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert_b64 %s","argumentids":"[\"5+*G8b%WKI.VHxST}.?.\"]","warp":"true"}},"aZ9":{"opcode":"sensing_answer","next":null,"parent":"r!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aY~":{"opcode":"sound_sounds_menu","next":null,"parent":",)","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"l-":{"opcode":"control_if","next":"l.","parent":"l,","inputs":{"CONDITION":[2,"aZ!"],"SUBSTACK":[2,"r#"]},"fields":{},"shadow":false,"topLevel":false},"aZ!":{"opcode":"operator_equals","next":null,"parent":"l-","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},"r#":{"opcode":"looks_switchcostumeto","next":",*","parent":"l-","inputs":{"COSTUME":[1,"aZ#"]},"fields":{},"shadow":false,"topLevel":false},"aZ#":{"opcode":"looks_costume","next":null,"parent":"r#","inputs":{},"fields":{"COSTUME":["B",null]},"shadow":true,"topLevel":false},"r%":{"opcode":"control_if","next":null,"parent":",*","inputs":{"CONDITION":[2,"-6"],"SUBSTACK":[2,"-7"]},"fields":{},"shadow":false,"topLevel":false},"-6":{"opcode":"operator_not","next":null,"parent":"r%","inputs":{"OPERAND":[2,"-8"]},"fields":{},"shadow":false,"topLevel":false},"-8":{"opcode":"operator_equals","next":null,"parent":"-6","inputs":{"OPERAND1":[3,"aZ%",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZ%":{"opcode":"sensing_answer","next":null,"parent":"-8","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-7":{"opcode":"procedures_call","next":"-9","parent":"r%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load rom","argumentids":"[]","warp":"true"}},"-9":{"opcode":"sound_play","next":null,"parent":"-7","inputs":{"SOUND_MENU":[1,"aZ("]},"fields":{},"shadow":false,"topLevel":false},"aZ(":{"opcode":"sound_sounds_menu","next":null,"parent":"-9","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"l.":{"opcode":"control_if","next":"l/","parent":"l-","inputs":{"CONDITION":[2,"aZ)"],"SUBSTACK":[2,"r`"]},"fields":{},"shadow":false,"topLevel":false},"aZ)":{"opcode":"operator_equals","next":null,"parent":"l.","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1200"]]},"fields":{},"shadow":false,"topLevel":false},"r`":{"opcode":"looks_switchcostumeto","next":"-!","parent":"l.","inputs":{"COSTUME":[1,"aZ*"]},"fields":{},"shadow":false,"topLevel":false},"aZ*":{"opcode":"looks_costume","next":null,"parent":"r`","inputs":{},"fields":{"COSTUME":["D",null]},"shadow":true,"topLevel":false},"-!":{"opcode":"sensing_askandwait","next":"r{","parent":"r`","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r{":{"opcode":"control_if","next":null,"parent":"-!","inputs":{"CONDITION":[2,"-#"],"SUBSTACK":[2,"r|"]},"fields":{},"shadow":false,"topLevel":false},"-#":{"opcode":"operator_not","next":null,"parent":"r{","inputs":{"OPERAND":[2,"-%"]},"fields":{},"shadow":false,"topLevel":false},"-%":{"opcode":"operator_equals","next":null,"parent":"-#","inputs":{"OPERAND1":[3,"aZ+",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZ+":{"opcode":"sensing_answer","next":null,"parent":"-%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r|":{"opcode":"procedures_call","next":"-(","parent":"r{","inputs":{"{xi;}X0SqsUaQLC94XCd":[3,"aZ,",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load NES %s","argumentids":"[\"{xi;}X0SqsUaQLC94XCd\"]","warp":"true"}},"aZ,":{"opcode":"sensing_answer","next":null,"parent":"r|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-(":{"opcode":"sound_play","next":null,"parent":"r|","inputs":{"SOUND_MENU":[1,"aZ-"]},"fields":{},"shadow":false,"topLevel":false},"aZ-":{"opcode":"sound_sounds_menu","next":null,"parent":"-(","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"l/":{"opcode":"control_if","next":"l:","parent":"l.","inputs":{"CONDITION":[2,"aZ."],"SUBSTACK":[2,"GY"]},"fields":{},"shadow":false,"topLevel":false},"aZ.":{"opcode":"operator_equals","next":null,"parent":"l/","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},"GY":{"opcode":"looks_switchcostumeto","next":"-)","parent":"l/","inputs":{"COSTUME":[1,"aZ/"]},"fields":{},"shadow":false,"topLevel":false},"aZ/":{"opcode":"looks_costume","next":null,"parent":"GY","inputs":{},"fields":{"COSTUME":["S",null]},"shadow":true,"topLevel":false},"-)":{"opcode":"sensing_askandwait","next":"r}","parent":"GY","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r}":{"opcode":"control_if","next":null,"parent":"-)","inputs":{"CONDITION":[2,"-*"],"SUBSTACK":[2,"r~"]},"fields":{},"shadow":false,"topLevel":false},"-*":{"opcode":"operator_not","next":null,"parent":"r}","inputs":{"OPERAND":[2,"-+"]},"fields":{},"shadow":false,"topLevel":false},"-+":{"opcode":"operator_equals","next":null,"parent":"-*","inputs":{"OPERAND1":[3,"aZ:",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZ:":{"opcode":"sensing_answer","next":null,"parent":"-+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"l:":{"opcode":"control_if","next":"GZ","parent":"l/","inputs":{"CONDITION":[2,"G0"],"SUBSTACK":[2,"GR"]},"fields":{},"shadow":false,"topLevel":false},"G0":{"opcode":"operator_or","next":null,"parent":"l:","inputs":{"OPERAND1":[2,"aZ;"],"OPERAND2":[2,"aZ="]},"fields":{},"shadow":false,"topLevel":false},"aZ;":{"opcode":"operator_equals","next":null,"parent":"G0","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"aZ=":{"opcode":"operator_equals","next":null,"parent":"G0","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1400"]]},"fields":{},"shadow":false,"topLevel":false},"GR":{"opcode":"looks_switchcostumeto","next":",]","parent":"l:","inputs":{"COSTUME":[1,"aZ?"]},"fields":{},"shadow":false,"topLevel":false},"aZ?":{"opcode":"looks_costume","next":null,"parent":"GR","inputs":{},"fields":{"COSTUME":["T",null]},"shadow":true,"topLevel":false},"GS":{"opcode":"control_if","next":null,"parent":",]","inputs":{"CONDITION":[2,",^"],"SUBSTACK":[2,"G1"]},"fields":{},"shadow":false,"topLevel":false},"aZf":{"opcode":"sensing_answer","next":null,"parent":",_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"G1":{"opcode":"procedures_call","next":"S!","parent":"GS","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"aZ@",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"aZ@":{"opcode":"sensing_answer","next":null,"parent":"G1","inputs":{},"fields":{},"shadow":false,"topLevel":false},"S!":{"opcode":"sound_play","next":"SX","parent":"G1","inputs":{"SOUND_MENU":[1,"aZ["]},"fields":{},"shadow":false,"topLevel":false},"aZ[":{"opcode":"sound_sounds_menu","next":null,"parent":"S!","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"SX":{"opcode":"control_if","next":null,"parent":"S!","inputs":{"CONDITION":[2,",`"],"SUBSTACK":[2,"S#"]},"fields":{},"shadow":false,"topLevel":false},"aZg":{"opcode":"data_lengthoflist","next":null,"parent":",`","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"S#":{"opcode":"looks_switchcostumeto","next":"SY","parent":"SX","inputs":{"COSTUME":[1,"aZ]"]},"fields":{},"shadow":false,"topLevel":false},"aZ]":{"opcode":"looks_costume","next":null,"parent":"S#","inputs":{},"fields":{"COSTUME":["h",null]},"shadow":true,"topLevel":false},"SY":{"opcode":"control_wait_until","next":",{","parent":"S#","inputs":{"CONDITION":[2,",|"]},"fields":{},"shadow":false,"topLevel":false},"S0":{"opcode":"operator_or","next":null,"parent":",|","inputs":{"OPERAND1":[2,",}"],"OPERAND2":[2,"aZ^"]},"fields":{},"shadow":false,"topLevel":false},"aZh":{"opcode":"sensing_keyoptions","next":null,"parent":",}","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aZ^":{"opcode":"sensing_mousedown","next":null,"parent":"S0","inputs":{},"fields":{},"shadow":false,"topLevel":false},"SZ":{"opcode":"operator_or","next":null,"parent":",{","inputs":{"OPERAND1":[2,",~"],"OPERAND2":[2,"aZ_"]},"fields":{},"shadow":false,"topLevel":false},"aZi":{"opcode":"sensing_keyoptions","next":null,"parent":",~","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aZ_":{"opcode":"sensing_mousedown","next":null,"parent":"SZ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"GZ":{"opcode":"control_if","next":null,"parent":"l:","inputs":{"CONDITION":[2,"aZ`"],"SUBSTACK":[2,"GT"]},"fields":{},"shadow":false,"topLevel":false},"aZ`":{"opcode":"operator_equals","next":null,"parent":"GZ","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1800"]]},"fields":{},"shadow":false,"topLevel":false},"GT":{"opcode":"looks_switchcostumeto","next":"-a","parent":"GZ","inputs":{"COSTUME":[1,"aZ{"]},"fields":{},"shadow":false,"topLevel":false},"aZ{":{"opcode":"looks_costume","next":null,"parent":"GT","inputs":{},"fields":{"COSTUME":["g",null]},"shadow":true,"topLevel":false},"GU":{"opcode":"control_if_else","next":"-,","parent":"-a","inputs":{"CONDITION":[2,"--"],"SUBSTACK":[2,"-."],"SUBSTACK2":[2,"S%"]},"fields":{},"shadow":false,"topLevel":false},"--":{"opcode":"operator_equals","next":null,"parent":"GU","inputs":{"OPERAND1":[3,"aZ|",[10,""]],"OPERAND2":[1,[10,"split"]]},"fields":{},"shadow":false,"topLevel":false},"aZ|":{"opcode":"sensing_answer","next":null,"parent":"--","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-.":{"opcode":"data_deletealloflist","next":"-/","parent":"GU","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"-/":{"opcode":"data_setvariableto","next":"-:","parent":"-.","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"-:":{"opcode":"data_setvariableto","next":"S(","parent":"-/","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"S(":{"opcode":"looks_switchcostumeto","next":"-;","parent":"-:","inputs":{"COSTUME":[1,"aZ}"]},"fields":{},"shadow":false,"topLevel":false},"aZ}":{"opcode":"looks_costume","next":null,"parent":"S(","inputs":{},"fields":{"COSTUME":["V",null]},"shadow":true,"topLevel":false},"-;":{"opcode":"control_repeat","next":null,"parent":"S(","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"-="]},"fields":{},"shadow":false,"topLevel":false},"-=":{"opcode":"sensing_askandwait","next":"G2","parent":"-;","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"G2":{"opcode":"procedures_call","next":"G3","parent":"-=","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"aZ~",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"aZ~":{"opcode":"sensing_answer","next":null,"parent":"G2","inputs":{},"fields":{},"shadow":false,"topLevel":false},"G3":{"opcode":"sound_play","next":"-?","parent":"G2","inputs":{"SOUND_MENU":[1,"a0a"]},"fields":{},"shadow":false,"topLevel":false},"a0a":{"opcode":"sound_sounds_menu","next":null,"parent":"G3","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"-?":{"opcode":"looks_nextcostume","next":"a0b","parent":"G3","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a0b":{"opcode":"data_changevariableby","next":null,"parent":"-?","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"S%":{"opcode":"control_if","next":null,"parent":"GU","inputs":{"CONDITION":[2,"-@"],"SUBSTACK":[2,"-["]},"fields":{},"shadow":false,"topLevel":false},"-@":{"opcode":"operator_gt","next":null,"parent":"S%","inputs":{"OPERAND1":[3,"-]",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-]":{"opcode":"operator_length","next":null,"parent":"-@","inputs":{"STRING":[3,"a0c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0c":{"opcode":"sensing_answer","next":null,"parent":"-]","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-[":{"opcode":"procedures_call","next":null,"parent":"S%","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a0d",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a0d":{"opcode":"sensing_answer","next":null,"parent":"-[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-,":{"opcode":"sound_play","next":null,"parent":"GU","inputs":{"SOUND_MENU":[1,"a0e"]},"fields":{},"shadow":false,"topLevel":false},"a0e":{"opcode":"sound_sounds_menu","next":null,"parent":"-,","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"aYT":{"opcode":"data_setvariableto","next":null,"parent":"+D","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"cA":{"opcode":"procedures_definition","next":"rQ","parent":null,"inputs":{"custom_block":[1,"+E"]},"fields":{},"shadow":false,"topLevel":true,"x":738,"y":3025,"comment":"R~"},"aYU":{"opcode":"argument_reporter_string_number","next":null,"parent":"+E","inputs":{},"fields":{"VALUE":["code",null]},"shadow":true,"topLevel":false},"rQ":{"opcode":"looks_switchcostumeto","next":"+F","parent":"cA","inputs":{"COSTUME":[1,"a0f"]},"fields":{},"shadow":false,"topLevel":false},"a0f":{"opcode":"looks_costume","next":null,"parent":"rQ","inputs":{},"fields":{"COSTUME":["H",null]},"shadow":true,"topLevel":false},"ft":{"opcode":"control_repeat","next":"+J","parent":"+I","inputs":{"TIMES":[3,"+L",[6,"0"]],"SUBSTACK":[2,"sa"]},"fields":{},"shadow":false,"topLevel":false},"aYV":{"opcode":"argument_reporter_string_number","next":null,"parent":"+L","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"sa":{"opcode":"data_setvariableto","next":"fu","parent":"ft","inputs":{"VALUE":[3,"-^",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"-^":{"opcode":"operator_join","next":null,"parent":"sa","inputs":{"STRING1":[1,[10,"(1/2) Converting to binary... ("]],"STRING2":[3,"-_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-_":{"opcode":"operator_join","next":null,"parent":"-^","inputs":{"STRING1":[3,"+P",[10,""]],"STRING2":[1,[10,"%)"]]},"fields":{},"shadow":false,"topLevel":false},"+P":{"opcode":"operator_mathop","next":null,"parent":"-_","inputs":{"NUM":[3,"+O",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aYW":{"opcode":"argument_reporter_string_number","next":null,"parent":"+R","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"fu":{"opcode":"looks_switchcostumeto","next":"ad","parent":"sa","inputs":{"COSTUME":[3,"+S","a0g"]},"fields":{},"shadow":false,"topLevel":false},"aYX":{"opcode":"argument_reporter_string_number","next":null,"parent":"+S","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"a0g":{"opcode":"looks_costume","next":null,"parent":"fu","inputs":{},"fields":{"COSTUME":["R",null]},"shadow":true,"topLevel":false},"ad":{"opcode":"control_if_else","next":"aj","parent":"fu","inputs":{"CONDITION":[2,"-s"],"SUBSTACK":[2,"+T"],"SUBSTACK2":[2,"+U"]},"fields":{},"shadow":false,"topLevel":false},"-s":{"opcode":"operator_equals","next":null,"parent":"ad","inputs":{"OPERAND1":[3,"-r",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZm":{"opcode":"looks_costumenumbername","next":null,"parent":"-v","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aYY":{"opcode":"operator_join","next":null,"parent":"+T","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYZ":{"opcode":"operator_join","next":null,"parent":"+U","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aj":{"opcode":"control_if_else","next":"ah","parent":"ad","inputs":{"CONDITION":[2,"-E"],"SUBSTACK":[2,"-w"],"SUBSTACK2":[2,"-x"]},"fields":{},"shadow":false,"topLevel":false},"-E":{"opcode":"operator_equals","next":null,"parent":"aj","inputs":{"OPERAND1":[3,"-D",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZr":{"opcode":"looks_costumenumbername","next":null,"parent":"-H","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aZn":{"opcode":"operator_join","next":null,"parent":"-w","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZo":{"opcode":"operator_join","next":null,"parent":"-x","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ah":{"opcode":"control_if_else","next":"af","parent":"aj","inputs":{"CONDITION":[2,"-I"],"SUBSTACK":[2,",m"],"SUBSTACK2":[2,",n"]},"fields":{},"shadow":false,"topLevel":false},"aY-":{"opcode":"looks_costumenumbername","next":null,"parent":",r","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aY+":{"opcode":"operator_join","next":null,"parent":",m","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY,":{"opcode":"operator_join","next":null,"parent":",n","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"af":{"opcode":"control_if_else","next":"ae","parent":"ah","inputs":{"CONDITION":[2,"+)"],"SUBSTACK":[2,"++"],"SUBSTACK2":[2,"+,"]},"fields":{},"shadow":false,"topLevel":false},"+W":{"opcode":"operator_divide","next":null,"parent":"+*","inputs":{"NUM1":[3,"+V",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aY0":{"opcode":"looks_costumenumbername","next":null,"parent":"+V","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aY5":{"opcode":"operator_join","next":null,"parent":"++","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY6":{"opcode":"operator_join","next":null,"parent":"+,","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"control_if_else","next":"ag","parent":"af","inputs":{"CONDITION":[2,"+X"],"SUBSTACK":[2,"+Z"],"SUBSTACK2":[2,"+0"]},"fields":{},"shadow":false,"topLevel":false},"+Y":{"opcode":"operator_mod","next":null,"parent":"+X","inputs":{"NUM1":[3,"+@",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aY8":{"opcode":"looks_costumenumbername","next":null,"parent":"+]","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aY1":{"opcode":"operator_join","next":null,"parent":"+Z","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY2":{"opcode":"operator_join","next":null,"parent":"+0","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ag":{"opcode":"control_if_else","next":"a0h","parent":"ae","inputs":{"CONDITION":[2,"+^"],"SUBSTACK":[2,"+`"],"SUBSTACK2":[2,"+{"]},"fields":{},"shadow":false,"topLevel":false},"aY#":{"opcode":"looks_costumenumbername","next":null,"parent":"+|","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"aY9":{"opcode":"operator_join","next":null,"parent":"+`","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY!":{"opcode":"operator_join","next":null,"parent":"+{","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a0h":{"opcode":"data_changevariableby","next":null,"parent":"ag","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"+K":{"opcode":"data_setvariableto","next":"+}","parent":"+J","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"fx":{"opcode":"control_repeat","next":"a0i","parent":"+}","inputs":{"TIMES":[3,"+~",[6,"0"]],"SUBSTACK":[2,"sb"]},"fields":{},"shadow":false,"topLevel":false},"aY%":{"opcode":"operator_length","next":null,"parent":"+~","inputs":{"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sb":{"opcode":"data_setvariableto","next":"sc","parent":"fx","inputs":{"VALUE":[3,"-`",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"-`":{"opcode":"operator_join","next":null,"parent":"sb","inputs":{"STRING1":[1,[10,"(2/2) Importing rom... ("]],"STRING2":[3,",y",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",y":{"opcode":"operator_join","next":null,"parent":"-`","inputs":{"STRING1":[3,",x",[10,""]],"STRING2":[1,[10,"%)"]]},"fields":{},"shadow":false,"topLevel":false},"aY.":{"opcode":"operator_length","next":null,"parent":",A","inputs":{"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sc":{"opcode":"data_addtolist","next":"a0j","parent":"sb","inputs":{"ITEM":[3,"sd",[10,""]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"sd":{"opcode":"operator_add","next":null,"parent":"sc","inputs":{"NUM1":[3,"se",[4,"0"]],"NUM2":[3,"sf",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"se":{"opcode":"operator_add","next":null,"parent":"sd","inputs":{"NUM1":[3,"rO",[4,"0"]],"NUM2":[3,"rP",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rO":{"opcode":"operator_add","next":null,"parent":"se","inputs":{"NUM1":[3,",B",[4,"0"]],"NUM2":[3,"+p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY/":{"opcode":"operator_letter_of","next":null,"parent":",B","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aYO":{"opcode":"operator_add","next":null,"parent":"+q","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rP":{"opcode":"operator_add","next":null,"parent":"se","inputs":{"NUM1":[3,"+r",[4,"0"]],"NUM2":[3,"+t",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYP":{"opcode":"operator_add","next":null,"parent":"+s","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aYQ":{"opcode":"operator_add","next":null,"parent":"+u","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"sf":{"opcode":"operator_add","next":null,"parent":"sd","inputs":{"NUM1":[3,"sg",[4,"0"]],"NUM2":[3,"r4",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"sg":{"opcode":"operator_add","next":null,"parent":"sf","inputs":{"NUM1":[3,",W",[4,"0"]],"NUM2":[3,",Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",W":{"opcode":"operator_multiply","next":null,"parent":"sg","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,",V",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY[":{"opcode":"operator_add","next":null,"parent":",V","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},",Y":{"opcode":"operator_multiply","next":null,"parent":"sg","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,",X",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY]":{"opcode":"operator_add","next":null,"parent":",X","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"r4":{"opcode":"operator_add","next":null,"parent":"sf","inputs":{"NUM1":[3,",Z",[4,"0"]],"NUM2":[3,",1",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY_":{"opcode":"operator_add","next":null,"parent":",0","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aY^":{"opcode":"operator_add","next":null,"parent":",1","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a0j":{"opcode":"data_changevariableby","next":null,"parent":"sc","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"a0i":{"opcode":"data_hidevariable","next":null,"parent":"fx","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"cB":{"opcode":"procedures_definition","next":"rS","parent":null,"inputs":{"custom_block":[1,"a0k"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":4344,"comment":"Sa"},"a0k":{"opcode":"procedures_prototype","next":null,"parent":"cB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load rom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"rS":{"opcode":"looks_switchcostumeto","next":"+1","parent":"cB","inputs":{"COSTUME":[1,"a0l"]},"fields":{},"shadow":false,"topLevel":false},"a0l":{"opcode":"looks_costume","next":null,"parent":"rS","inputs":{},"fields":{"COSTUME":["M",null]},"shadow":true,"topLevel":false},"fv":{"opcode":"control_if","next":"rR","parent":"+1","inputs":{"CONDITION":[2,"+2"],"SUBSTACK":[2,"+4"]},"fields":{},"shadow":false,"topLevel":false},"aY3":{"opcode":"sensing_answer","next":null,"parent":"+3","inputs":{},"fields":{},"shadow":false,"topLevel":false},"fw":{"opcode":"control_if_else","next":null,"parent":"+4","inputs":{"CONDITION":[2,",."],"SUBSTACK":[2,",+"],"SUBSTACK2":[2,",,"]},"fields":{},"shadow":false,"topLevel":false},",.":{"opcode":"operator_equals","next":null,"parent":"fw","inputs":{"OPERAND1":[3,",-",[10,""]],"OPERAND2":[1,[10,"x"]]},"fields":{},"shadow":false,"topLevel":false},"aZa":{"opcode":"sensing_answer","next":null,"parent":",-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r(":{"opcode":"control_repeat","next":null,"parent":",+","inputs":{"TIMES":[3,",/",[6,"0"]],"SUBSTACK":[2,"r*"]},"fields":{},"shadow":false,"topLevel":false},"aZb":{"opcode":"sensing_answer","next":null,"parent":",:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r*":{"opcode":"data_addtolist","next":"rZ","parent":"r(","inputs":{"ITEM":[3,",b",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"rY":{"opcode":"operator_join","next":null,"parent":",a","inputs":{"STRING1":[3,"sh",[10,""]],"STRING2":[3,"si",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sh":{"opcode":"operator_join","next":null,"parent":"rY","inputs":{"STRING1":[3,"sj",[10,""]],"STRING2":[3,"sk",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sj":{"opcode":"operator_join","next":null,"parent":"sh","inputs":{"STRING1":[3,"sl",[10,""]],"STRING2":[3,"sm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sl":{"opcode":"operator_letter_of","next":null,"parent":"sj","inputs":{"LETTER":[3,"a0m",[6,"0"]],"STRING":[3,"a0n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0m":{"opcode":"operator_add","next":null,"parent":"sl","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a0n":{"opcode":"sensing_answer","next":null,"parent":"sl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sm":{"opcode":"operator_letter_of","next":null,"parent":"sj","inputs":{"LETTER":[3,"a0o",[6,"0"]],"STRING":[3,"a0p",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0o":{"opcode":"operator_add","next":null,"parent":"sm","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a0p":{"opcode":"sensing_answer","next":null,"parent":"sm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sk":{"opcode":"operator_join","next":null,"parent":"sh","inputs":{"STRING1":[3,"sn",[10,""]],"STRING2":[3,"so",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sn":{"opcode":"operator_letter_of","next":null,"parent":"sk","inputs":{"LETTER":[3,"a0q",[6,"0"]],"STRING":[3,"a0r",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0q":{"opcode":"operator_add","next":null,"parent":"sn","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a0r":{"opcode":"sensing_answer","next":null,"parent":"sn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"so":{"opcode":"operator_letter_of","next":null,"parent":"sk","inputs":{"LETTER":[3,"a0s",[6,"0"]],"STRING":[3,"a0t",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0s":{"opcode":"operator_add","next":null,"parent":"so","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a0t":{"opcode":"sensing_answer","next":null,"parent":"so","inputs":{},"fields":{},"shadow":false,"topLevel":false},"rZ":{"opcode":"data_setvariableto","next":"a0u","parent":"r*","inputs":{"VALUE":[3,",c",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},",g":{"opcode":"operator_multiply","next":null,"parent":",f","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"-{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-{":{"opcode":"operator_divide","next":null,"parent":",g","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"-|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-|":{"opcode":"operator_length","next":null,"parent":"-{","inputs":{"STRING":[3,"a0v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0v":{"opcode":"sensing_answer","next":null,"parent":"-|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a0u":{"opcode":"data_changevariableby","next":null,"parent":"rZ","inputs":{"VALUE":[1,[4,"24"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"r)":{"opcode":"control_repeat","next":null,"parent":",,","inputs":{"TIMES":[3,"-c",[6,"0"]],"SUBSTACK":[2,"S1"]},"fields":{},"shadow":false,"topLevel":false},"-c":{"opcode":"operator_divide","next":null,"parent":"r)","inputs":{"NUM1":[3,"-b",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aZj":{"opcode":"sensing_answer","next":null,"parent":"-b","inputs":{},"fields":{},"shadow":false,"topLevel":false},"S1":{"opcode":"data_addtolist","next":"r.","parent":"r)","inputs":{"ITEM":[3,"-d",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"r,":{"opcode":"operator_join","next":null,"parent":"-e","inputs":{"STRING1":[3,"sp",[10,""]],"STRING2":[3,"sq",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sp":{"opcode":"operator_join","next":null,"parent":"r,","inputs":{"STRING1":[3,"r-",[10,""]],"STRING2":[3,"sr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r-":{"opcode":"operator_join","next":null,"parent":"sp","inputs":{"STRING1":[3,"-f",[10,""]],"STRING2":[3,"ss",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aZk":{"opcode":"sensing_answer","next":null,"parent":"-f","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ss":{"opcode":"operator_letter_of","next":null,"parent":"r-","inputs":{"LETTER":[3,"a0w",[6,"0"]],"STRING":[3,"a0x",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0w":{"opcode":"operator_add","next":null,"parent":"ss","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a0x":{"opcode":"sensing_answer","next":null,"parent":"ss","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sq":{"opcode":"operator_join","next":null,"parent":"r,","inputs":{"STRING1":[3,"st",[10,""]],"STRING2":[3,"su",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"st":{"opcode":"operator_join","next":null,"parent":"sq","inputs":{"STRING1":[3,"sv",[10,""]],"STRING2":[3,"sw",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sw":{"opcode":"operator_letter_of","next":null,"parent":"st","inputs":{"LETTER":[3,"a0y",[6,"0"]],"STRING":[3,"a0z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0y":{"opcode":"operator_add","next":null,"parent":"sw","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a0z":{"opcode":"sensing_answer","next":null,"parent":"sw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"su":{"opcode":"operator_join","next":null,"parent":"sq","inputs":{"STRING1":[3,"sx",[10,""]],"STRING2":[3,"sy",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sx":{"opcode":"operator_letter_of","next":null,"parent":"su","inputs":{"LETTER":[3,"a0A",[6,"0"]],"STRING":[3,"a0B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0A":{"opcode":"operator_add","next":null,"parent":"sx","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a0B":{"opcode":"sensing_answer","next":null,"parent":"sx","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r.":{"opcode":"data_setvariableto","next":"a0C","parent":"S1","inputs":{"VALUE":[3,"-g",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"aYR":{"opcode":"sensing_answer","next":null,"parent":"+v","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a0C":{"opcode":"data_changevariableby","next":null,"parent":"r.","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"rR":{"opcode":"looks_switchcostumeto","next":"+M","parent":"fv","inputs":{"COSTUME":[1,"a0D"]},"fields":{},"shadow":false,"topLevel":false},"a0D":{"opcode":"looks_costume","next":null,"parent":"rR","inputs":{},"fields":{"COSTUME":["N",null]},"shadow":true,"topLevel":false},"r/":{"opcode":"looks_switchcostumeto","next":"fy","parent":"-o","inputs":{"COSTUME":[1,"a0E"]},"fields":{},"shadow":false,"topLevel":false},"a0E":{"opcode":"looks_costume","next":null,"parent":"r/","inputs":{},"fields":{"COSTUME":["O",null]},"shadow":true,"topLevel":false},"fy":{"opcode":"control_repeat","next":"r2","parent":"r/","inputs":{"TIMES":[3,"a0F",[6,"0"]],"SUBSTACK":[2,"-p"]},"fields":{},"shadow":false,"topLevel":false},"a0F":{"opcode":"operator_divide","next":null,"parent":"fy","inputs":{"NUM1":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"rX":{"opcode":"control_repeat","next":"+/","parent":"-p","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"-q"]},"fields":{},"shadow":false,"topLevel":false},"rW":{"opcode":"data_setvariableto","next":"a0G","parent":"-q","inputs":{"VALUE":[3,"+-",[10,""]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"aY7":{"opcode":"operator_multiply","next":null,"parent":"+-","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a0G":{"opcode":"data_changevariableby","next":null,"parent":"rW","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"aZp":{"opcode":"operator_divide","next":null,"parent":"-y","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"r2":{"opcode":"looks_switchcostumeto","next":",t","parent":"fy","inputs":{"COSTUME":[1,"a0H"]},"fields":{},"shadow":false,"topLevel":false},"a0H":{"opcode":"looks_costume","next":null,"parent":"r2","inputs":{},"fields":{"COSTUME":["P",null]},"shadow":true,"topLevel":false},"ST":{"opcode":"looks_switchcostumeto","next":"fz","parent":",w","inputs":{"COSTUME":[1,"a0I"]},"fields":{},"shadow":false,"topLevel":false},"a0I":{"opcode":"looks_costume","next":null,"parent":"ST","inputs":{},"fields":{"COSTUME":["Q",null]},"shadow":true,"topLevel":false},"fz":{"opcode":"control_repeat","next":"r:","parent":"ST","inputs":{"TIMES":[3,"a0J",[6,"0"]],"SUBSTACK":[2,"-J"]},"fields":{},"shadow":false,"topLevel":false},"a0J":{"opcode":"operator_divide","next":null,"parent":"fz","inputs":{"NUM1":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"S2":{"opcode":"control_repeat","next":"-K","parent":"-J","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"-M"]},"fields":{},"shadow":false,"topLevel":false},"S3":{"opcode":"data_setvariableto","next":"a0K","parent":"-M","inputs":{"VALUE":[3,"-N",[10,""]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"aZs":{"opcode":"operator_multiply","next":null,"parent":"-N","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a0K":{"opcode":"data_changevariableby","next":null,"parent":"S3","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"-A":{"opcode":"operator_join","next":null,"parent":"-O","inputs":{"STRING1":[3,"-z",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"aZq":{"opcode":"operator_divide","next":null,"parent":"-C","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"r:":{"opcode":"looks_switchcostumeto","next":"+7","parent":"fz","inputs":{"COSTUME":[1,"a0L"]},"fields":{},"shadow":false,"topLevel":false},"a0L":{"opcode":"looks_costume","next":null,"parent":"r:","inputs":{},"fields":{"COSTUME":["R",null]},"shadow":true,"topLevel":false},"rT":{"opcode":"control_repeat","next":"a0M","parent":"+5","inputs":{"TIMES":[1,[6,"12"]],"SUBSTACK":[2,"-}"]},"fields":{},"shadow":false,"topLevel":false},"-}":{"opcode":"procedures_call","next":"sz","parent":"rT","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"a0M":{"opcode":"data_hidevariable","next":null,"parent":"rT","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"a0N":{"opcode":"event_whenbroadcastreceived","next":"a0O","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]},"shadow":false,"topLevel":true,"x":5821,"y":960},"a0O":{"opcode":"procedures_call","next":null,"parent":"a0N","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,[12,"_ROM","od4rT?;Bw52y-r9gIuW2"],[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a0P":{"opcode":"event_whenbroadcastreceived","next":"-~","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":4441,"y":3917},"-~":{"opcode":"looks_hide","next":".a","parent":"a0P","inputs":{},"fields":{},"shadow":false,"topLevel":false},".a":{"opcode":"data_hidevariable","next":".b","parent":"-~","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},".b":{"opcode":"data_hidevariable","next":".c","parent":".a","inputs":{},"fields":{"VARIABLE":["rom.designation","*cu$N5#KACc@_m}ZOQx7"]},"shadow":false,"topLevel":false},".c":{"opcode":"data_hidevariable","next":".d","parent":".b","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},".d":{"opcode":"data_hidelist","next":".e","parent":".c","inputs":{},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},".e":{"opcode":"data_hidelist","next":".f","parent":".d","inputs":{},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},".f":{"opcode":"data_hidelist","next":".g","parent":".e","inputs":{},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a0Q":{"opcode":"data_setvariableto","next":null,"parent":".g","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"cC":{"opcode":"procedures_definition","next":"sA","parent":null,"inputs":{"custom_block":[1,".h"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":64,"comment":"Sb"},".h":{"opcode":"procedures_prototype","next":null,"parent":"cC","inputs":{"{xi;}X0SqsUaQLC94XCd":[1,"a0R"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load NES %s","argumentids":"[\"{xi;}X0SqsUaQLC94XCd\"]","argumentnames":"[\"data\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a0R":{"opcode":"argument_reporter_string_number","next":null,"parent":".h","inputs":{},"fields":{"VALUE":["data",null]},"shadow":true,"topLevel":false},"sA":{"opcode":"looks_switchcostumeto","next":".i","parent":"cC","inputs":{"COSTUME":[1,"a0S"]},"fields":{},"shadow":false,"topLevel":false},"a0S":{"opcode":"looks_costume","next":null,"parent":"sA","inputs":{},"fields":{"COSTUME":["H",null]},"shadow":true,"topLevel":false},".i":{"opcode":"data_deletealloflist","next":"sB","parent":"sA","inputs":{},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"sB":{"opcode":"data_addtolist","next":"sC","parent":".i","inputs":{"ITEM":[3,".j",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".j":{"opcode":"operator_multiply","next":null,"parent":"sB","inputs":{"NUM1":[3,".k",[4,"0"]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},".k":{"opcode":"operator_join","next":null,"parent":".j","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"sD",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sD":{"opcode":"operator_join","next":null,"parent":".k","inputs":{"STRING1":[3,".l",[10,""]],"STRING2":[3,".m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".l":{"opcode":"operator_letter_of","next":null,"parent":"sD","inputs":{"LETTER":[1,[6,"9"]],"STRING":[3,"a0T",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0T":{"opcode":"argument_reporter_string_number","next":null,"parent":".l","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},".m":{"opcode":"operator_letter_of","next":null,"parent":"sD","inputs":{"LETTER":[1,[6,"10"]],"STRING":[3,"a0U",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0U":{"opcode":"argument_reporter_string_number","next":null,"parent":".m","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sC":{"opcode":"data_addtolist","next":"sE","parent":"sB","inputs":{"ITEM":[3,".n",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".n":{"opcode":"operator_multiply","next":null,"parent":"sC","inputs":{"NUM1":[3,".o",[4,"0"]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},".o":{"opcode":"operator_join","next":null,"parent":".n","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"sF",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sF":{"opcode":"operator_join","next":null,"parent":".o","inputs":{"STRING1":[3,".p",[10,""]],"STRING2":[3,".q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".p":{"opcode":"operator_letter_of","next":null,"parent":"sF","inputs":{"LETTER":[1,[6,"11"]],"STRING":[3,"a0V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0V":{"opcode":"argument_reporter_string_number","next":null,"parent":".p","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},".q":{"opcode":"operator_letter_of","next":null,"parent":"sF","inputs":{"LETTER":[1,[6,"12"]],"STRING":[3,"a0W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0W":{"opcode":"argument_reporter_string_number","next":null,"parent":".q","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sE":{"opcode":"data_addtolist","next":"fB","parent":"sC","inputs":{"ITEM":[3,"sG",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"sG":{"opcode":"operator_add","next":null,"parent":"sE","inputs":{"NUM1":[3,"a0X",[4,"0"]],"NUM2":[3,"a0Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a0X":{"opcode":"data_itemoflist","next":null,"parent":"sG","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"a0Y":{"opcode":"data_itemoflist","next":null,"parent":"sG","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"fB":{"opcode":"control_if_else","next":"sH","parent":"sE","inputs":{"CONDITION":[2,".r"],"SUBSTACK":[2,"a0Z"],"SUBSTACK2":[2,"G4"]},"fields":{},"shadow":false,"topLevel":false},".r":{"opcode":"operator_gt","next":null,"parent":"fB","inputs":{"OPERAND1":[3,".s",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},".s":{"opcode":"operator_join","next":null,"parent":".r","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,".t",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".t":{"opcode":"operator_letter_of","next":null,"parent":".s","inputs":{"LETTER":[1,[6,"14"]],"STRING":[3,"a00",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a00":{"opcode":"argument_reporter_string_number","next":null,"parent":".t","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"a0Z":{"opcode":"data_addtolist","next":null,"parent":"fB","inputs":{"ITEM":[1,[10,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"G4":{"opcode":"data_addtolist","next":null,"parent":"fB","inputs":{"ITEM":[3,".u",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".u":{"opcode":"operator_mod","next":null,"parent":"G4","inputs":{"NUM1":[3,".v",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},".v":{"opcode":"operator_join","next":null,"parent":".u","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,".w",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".w":{"opcode":"operator_letter_of","next":null,"parent":".v","inputs":{"LETTER":[1,[6,"14"]],"STRING":[3,"a01",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a01":{"opcode":"argument_reporter_string_number","next":null,"parent":".w","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sH":{"opcode":"data_addtolist","next":"l;","parent":"fB","inputs":{"ITEM":[3,".x",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".x":{"opcode":"operator_add","next":null,"parent":"sH","inputs":{"NUM1":[3,".y",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},".y":{"opcode":"operator_join","next":null,"parent":".x","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"sI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sI":{"opcode":"operator_join","next":null,"parent":".y","inputs":{"STRING1":[3,".z",[10,""]],"STRING2":[3,".A",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".z":{"opcode":"operator_letter_of","next":null,"parent":"sI","inputs":{"LETTER":[1,[6,"15"]],"STRING":[3,"a02",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a02":{"opcode":"argument_reporter_string_number","next":null,"parent":".z","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},".A":{"opcode":"operator_letter_of","next":null,"parent":"sI","inputs":{"LETTER":[1,[6,"13"]],"STRING":[3,"a03",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a03":{"opcode":"argument_reporter_string_number","next":null,"parent":".A","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"l;":{"opcode":"control_if","next":"fC","parent":"sH","inputs":{"CONDITION":[2,".B"],"SUBSTACK":[2,"G5"]},"fields":{},"shadow":false,"topLevel":false},".B":{"opcode":"operator_contains","next":null,"parent":"l;","inputs":{"STRING1":[3,"a04",[10,""]],"STRING2":[1,[10,"554E4946"]]},"fields":{},"shadow":false,"topLevel":false},"a04":{"opcode":"argument_reporter_string_number","next":null,"parent":".B","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"G5":{"opcode":"looks_switchcostumeto","next":".C","parent":"l;","inputs":{"COSTUME":[1,"a05"]},"fields":{},"shadow":false,"topLevel":false},"a05":{"opcode":"looks_costume","next":null,"parent":"G5","inputs":{},"fields":{"COSTUME":["U",null]},"shadow":true,"topLevel":false},".C":{"opcode":"sensing_askandwait","next":"a06","parent":"G5","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"a06":{"opcode":"control_stop","next":null,"parent":".C","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fC":{"opcode":"control_if","next":"fD","parent":"l;","inputs":{"CONDITION":[2,".D"],"SUBSTACK":[2,"sJ"]},"fields":{},"shadow":false,"topLevel":false},".D":{"opcode":"operator_not","next":null,"parent":"fC","inputs":{"OPERAND":[2,".E"]},"fields":{},"shadow":false,"topLevel":false},".E":{"opcode":"operator_contains","next":null,"parent":".D","inputs":{"STRING1":[3,"a07",[10,""]],"STRING2":[1,[10,"4E45531A"]]},"fields":{},"shadow":false,"topLevel":false},"a07":{"opcode":"argument_reporter_string_number","next":null,"parent":".E","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sJ":{"opcode":"looks_switchcostumeto","next":".F","parent":"fC","inputs":{"COSTUME":[1,"a08"]},"fields":{},"shadow":false,"topLevel":false},"a08":{"opcode":"looks_costume","next":null,"parent":"sJ","inputs":{},"fields":{"COSTUME":["E",null]},"shadow":true,"topLevel":false},".F":{"opcode":"sensing_askandwait","next":"a09","parent":"sJ","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"a09":{"opcode":"control_stop","next":null,"parent":".F","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fD":{"opcode":"control_if","next":"fE","parent":"fC","inputs":{"CONDITION":[2,".G"],"SUBSTACK":[2,"sK"]},"fields":{},"shadow":false,"topLevel":false},".G":{"opcode":"operator_not","next":null,"parent":"fD","inputs":{"OPERAND":[2,"S)"]},"fields":{},"shadow":false,"topLevel":false},"S)":{"opcode":"operator_equals","next":null,"parent":".G","inputs":{"OPERAND1":[3,".H",[10,""]],"OPERAND2":[3,"a0!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".H":{"opcode":"operator_divide","next":null,"parent":"S)","inputs":{"NUM1":[3,".I",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},".I":{"opcode":"operator_subtract","next":null,"parent":".H","inputs":{"NUM1":[3,".J",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},".J":{"opcode":"operator_length","next":null,"parent":".I","inputs":{"STRING":[3,"a0#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0#":{"opcode":"argument_reporter_string_number","next":null,"parent":".J","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"a0!":{"opcode":"data_itemoflist","next":null,"parent":"S)","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"fE":{"opcode":"control_if","next":"sL","parent":"fD","inputs":{"CONDITION":[2,".K"],"SUBSTACK":[2,"sM"]},"fields":{},"shadow":false,"topLevel":false},".K":{"opcode":"operator_equals","next":null,"parent":"fE","inputs":{"OPERAND1":[3,".L",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},".L":{"opcode":"data_itemnumoflist","next":null,"parent":".K","inputs":{"ITEM":[3,"a0%",[10,""]]},"fields":{"LIST":["mappers","3`C#KsI[WM=%ZSxuHQ!~"]},"shadow":false,"topLevel":false},"a0%":{"opcode":"data_itemoflist","next":null,"parent":".L","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"sM":{"opcode":"looks_switchcostumeto","next":"sN","parent":"fE","inputs":{"COSTUME":[1,"a0("]},"fields":{},"shadow":false,"topLevel":false},"a0(":{"opcode":"looks_costume","next":null,"parent":"sM","inputs":{},"fields":{"COSTUME":["G",null]},"shadow":true,"topLevel":false},"sN":{"opcode":"data_setvariableto","next":".M","parent":"sM","inputs":{"VALUE":[3,".N",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},".N":{"opcode":"operator_join","next":null,"parent":"sN","inputs":{"STRING1":[1,[10,"Unsupported mapper "]],"STRING2":[3,"a0)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0)":{"opcode":"data_itemoflist","next":null,"parent":".N","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".M":{"opcode":"data_showvariable","next":".O","parent":"sN","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},".O":{"opcode":"sensing_askandwait","next":".P","parent":".M","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},".P":{"opcode":"data_hidevariable","next":"a0*","parent":".O","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"a0*":{"opcode":"control_stop","next":null,"parent":".P","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"sL":{"opcode":"data_setvariableto","next":"fF","parent":"fE","inputs":{"VALUE":[3,"a0+",[10,""]]},"fields":{"VARIABLE":["prg_size","_5s67veUe?q~:arP76/I"]},"shadow":false,"topLevel":false},"a0+":{"opcode":"data_itemoflist","next":null,"parent":"sL","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"fF":{"opcode":"control_if_else","next":"sO","parent":"sL","inputs":{"CONDITION":[2,".Q"],"SUBSTACK":[2,"G6"],"SUBSTACK2":[2,"G7"]},"fields":{},"shadow":false,"topLevel":false},".Q":{"opcode":"operator_equals","next":null,"parent":"fF","inputs":{"OPERAND1":[3,"a0,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a0,":{"opcode":"data_itemoflist","next":null,"parent":".Q","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"G6":{"opcode":"data_setvariableto","next":"PT","parent":"fF","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["chr_size","W35mZn3CY:LS+.IAtmge"]},"shadow":false,"topLevel":false},"PT":{"opcode":"data_setvariableto","next":null,"parent":"G6","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chr_ram","70;C?(`taL+qCsw6v*gi"]},"shadow":false,"topLevel":false},"G7":{"opcode":"data_setvariableto","next":"a0-","parent":"fF","inputs":{"VALUE":[3,"a0.",[10,""]]},"fields":{"VARIABLE":["chr_size","W35mZn3CY:LS+.IAtmge"]},"shadow":false,"topLevel":false},"a0.":{"opcode":"data_itemoflist","next":null,"parent":"G7","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"a0-":{"opcode":"data_setvariableto","next":null,"parent":"G7","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chr_ram","70;C?(`taL+qCsw6v*gi"]},"shadow":false,"topLevel":false},"sO":{"opcode":"data_setvariableto","next":".R","parent":"fF","inputs":{"VALUE":[3,"a0/",[10,""]]},"fields":{"VARIABLE":["mapper","2YEF=*pQ`ymj}xOTf{?k"]},"shadow":false,"topLevel":false},"a0/":{"opcode":"data_itemoflist","next":null,"parent":"sO","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".R":{"opcode":"data_setvariableto","next":".S","parent":"sO","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},".S":{"opcode":"data_setvariableto","next":".T","parent":".R","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["wram_size","zbJieX,I^/*TuxDYgB2."]},"shadow":false,"topLevel":false},".T":{"opcode":"data_deletealloflist","next":"fG","parent":".S","inputs":{},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"fG":{"opcode":"control_if_else","next":".U","parent":".T","inputs":{"CONDITION":[2,".V"],"SUBSTACK":[2,".W"],"SUBSTACK2":[2,"a/"]},"fields":{},"shadow":false,"topLevel":false},".V":{"opcode":"operator_equals","next":null,"parent":"fG","inputs":{"OPERAND1":[3,"a0:",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a0:":{"opcode":"data_itemoflist","next":null,"parent":".V","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".W":{"opcode":"data_addtolist","next":".X","parent":"fG","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".X":{"opcode":"data_addtolist","next":".Y","parent":".W","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".Y":{"opcode":"data_addtolist","next":"a0;","parent":".X","inputs":{"ITEM":[1,[10,"2"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a0;":{"opcode":"data_addtolist","next":null,"parent":".Y","inputs":{"ITEM":[1,[10,"3"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a/":{"opcode":"control_if_else","next":null,"parent":"fG","inputs":{"CONDITION":[2,".Z"],"SUBSTACK":[2,".0"],"SUBSTACK2":[2,".1"]},"fields":{},"shadow":false,"topLevel":false},".Z":{"opcode":"operator_equals","next":null,"parent":"a/","inputs":{"OPERAND1":[3,"a0=",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a0=":{"opcode":"data_itemoflist","next":null,"parent":".Z","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},".0":{"opcode":"data_addtolist","next":".2","parent":"a/","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".2":{"opcode":"data_addtolist","next":".3","parent":".0","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".3":{"opcode":"data_addtolist","next":"a0?","parent":".2","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a0?":{"opcode":"data_addtolist","next":null,"parent":".3","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".1":{"opcode":"data_addtolist","next":".4","parent":"a/","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".4":{"opcode":"data_addtolist","next":".5","parent":".1","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".5":{"opcode":"data_addtolist","next":"a0@","parent":".4","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a0@":{"opcode":"data_addtolist","next":null,"parent":".5","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},".U":{"opcode":"data_deletealloflist","next":".6","parent":"fG","inputs":{},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},".6":{"opcode":"data_deletealloflist","next":".7","parent":".U","inputs":{},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},".7":{"opcode":"data_setvariableto","next":"sP","parent":".6","inputs":{"VALUE":[1,[10,"33"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"sP":{"opcode":"control_repeat","next":"sQ","parent":".7","inputs":{"TIMES":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[6,"0"]],"SUBSTACK":[2,"sR"]},"fields":{},"shadow":false,"topLevel":false},"sR":{"opcode":"data_addtolist","next":"a0[","parent":"sP","inputs":{"ITEM":[3,".8",[10,""]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},".8":{"opcode":"operator_add","next":null,"parent":"sR","inputs":{"NUM1":[3,".9",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},".9":{"opcode":"operator_join","next":null,"parent":".8","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"sS",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sS":{"opcode":"operator_join","next":null,"parent":".9","inputs":{"STRING1":[3,".!",[10,""]],"STRING2":[3,"sT",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".!":{"opcode":"operator_letter_of","next":null,"parent":"sS","inputs":{"LETTER":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[6,"0"]],"STRING":[3,"a0]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0]":{"opcode":"argument_reporter_string_number","next":null,"parent":".!","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sT":{"opcode":"operator_letter_of","next":null,"parent":"sS","inputs":{"LETTER":[3,"a0^",[6,"0"]],"STRING":[3,"a0_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0^":{"opcode":"operator_add","next":null,"parent":"sT","inputs":{"NUM1":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a0_":{"opcode":"argument_reporter_string_number","next":null,"parent":"sT","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"a0[":{"opcode":"data_changevariableby","next":null,"parent":"sR","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"sQ":{"opcode":"control_repeat","next":"a0`","parent":"sP","inputs":{"TIMES":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[6,"0"]],"SUBSTACK":[2,"sU"]},"fields":{},"shadow":false,"topLevel":false},"sU":{"opcode":"data_addtolist","next":"a0{","parent":"sQ","inputs":{"ITEM":[3,".#",[10,""]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},".#":{"opcode":"operator_add","next":null,"parent":"sU","inputs":{"NUM1":[3,".%",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},".%":{"opcode":"operator_join","next":null,"parent":".#","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"S*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"S*":{"opcode":"operator_join","next":null,"parent":".%","inputs":{"STRING1":[3,".(",[10,""]],"STRING2":[3,"sV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".(":{"opcode":"operator_letter_of","next":null,"parent":"S*","inputs":{"LETTER":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[6,"0"]],"STRING":[3,"a0|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0|":{"opcode":"argument_reporter_string_number","next":null,"parent":".(","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"sV":{"opcode":"operator_letter_of","next":null,"parent":"S*","inputs":{"LETTER":[3,"a0}",[6,"0"]],"STRING":[3,"a0~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a0}":{"opcode":"operator_add","next":null,"parent":"sV","inputs":{"NUM1":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a0~":{"opcode":"argument_reporter_string_number","next":null,"parent":"sV","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"a0{":{"opcode":"data_changevariableby","next":null,"parent":"sU","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"a0`":{"opcode":"data_setvariableto","next":null,"parent":"sQ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"a1a":{"opcode":"event_whenbroadcastreceived","next":".)","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_controls","g91@,@Kt00yu7FuRXO~I"]},"shadow":false,"topLevel":true,"x":2203,"y":-132},".)":{"opcode":"looks_gotofrontback","next":"l=","parent":"a1a","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"l=":{"opcode":"control_if","next":".*","parent":".)","inputs":{"CONDITION":[2,"a1b"],"SUBSTACK":[2,".+"]},"fields":{},"shadow":false,"topLevel":false},"a1b":{"opcode":"operator_equals","next":null,"parent":"l=","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},".+":{"opcode":"data_setvariableto","next":".,","parent":"l=","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},".,":{"opcode":"motion_gotoxy","next":".-","parent":".+","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},".-":{"opcode":"looks_show","next":"..","parent":".,","inputs":{},"fields":{},"shadow":false,"topLevel":false},"..":{"opcode":"looks_gotofrontback","next":"G8","parent":".-","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"G8":{"opcode":"looks_switchcostumeto","next":"G9","parent":"..","inputs":{"COSTUME":[1,"a1c"]},"fields":{},"shadow":false,"topLevel":false},"a1c":{"opcode":"looks_costume","next":null,"parent":"G8","inputs":{},"fields":{"COSTUME":["a",null]},"shadow":true,"topLevel":false},"G9":{"opcode":"microbit_displaySymbol","next":"G!","parent":"G8","inputs":{"MATRIX":[1,"a1d"]},"fields":{},"shadow":false,"topLevel":false},"a1d":{"opcode":"matrix","next":null,"parent":"G9","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"G!":{"opcode":"sound_play","next":"G#","parent":"G9","inputs":{"SOUND_MENU":[1,"a1e"]},"fields":{},"shadow":false,"topLevel":false},"a1e":{"opcode":"sound_sounds_menu","next":null,"parent":"G!","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"G#":{"opcode":"control_wait_until","next":"./","parent":"G!","inputs":{"CONDITION":[2,".:"]},"fields":{},"shadow":false,"topLevel":false},".:":{"opcode":"operator_not","next":null,"parent":"G#","inputs":{"OPERAND":[2,"a1f"]},"fields":{},"shadow":false,"topLevel":false},"a1f":{"opcode":"operator_equals","next":null,"parent":".:","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"./":{"opcode":"data_setvariableto","next":"G%","parent":"G#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"G%":{"opcode":"control_if","next":null,"parent":"./","inputs":{"CONDITION":[2,".;"],"SUBSTACK":[2,"l?"]},"fields":{},"shadow":false,"topLevel":false},".;":{"opcode":"operator_gt","next":null,"parent":"G%","inputs":{"OPERAND1":[3,"a1g",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a1g":{"opcode":"operator_divide","next":null,"parent":".;","inputs":{"NUM1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"l?":{"opcode":"control_if","next":"l@","parent":"G%","inputs":{"CONDITION":[2,"a1h"],"SUBSTACK":[2,"G("]},"fields":{},"shadow":false,"topLevel":false},"a1h":{"opcode":"operator_equals","next":null,"parent":"l?","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"G(":{"opcode":"looks_switchcostumeto","next":".=","parent":"l?","inputs":{"COSTUME":[1,"a1i"]},"fields":{},"shadow":false,"topLevel":false},"a1i":{"opcode":"looks_costume","next":null,"parent":"G(","inputs":{},"fields":{"COSTUME":["b",null]},"shadow":true,"topLevel":false},".=":{"opcode":"data_showlist","next":"G)","parent":"G(","inputs":{},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"G)":{"opcode":"sound_play","next":".?","parent":".=","inputs":{"SOUND_MENU":[1,"a1j"]},"fields":{},"shadow":false,"topLevel":false},"a1j":{"opcode":"sound_sounds_menu","next":null,"parent":"G)","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},".?":{"opcode":"control_forever","next":null,"parent":"G)","inputs":{"SUBSTACK":[2,"S+"]},"fields":{},"shadow":false,"topLevel":false},"S+":{"opcode":"control_wait_until","next":"S,","parent":".?","inputs":{"CONDITION":[2,".@"]},"fields":{},"shadow":false,"topLevel":false},".@":{"opcode":"operator_not","next":null,"parent":"S+","inputs":{"OPERAND":[2,"S-"]},"fields":{},"shadow":false,"topLevel":false},"S-":{"opcode":"operator_or","next":null,"parent":".@","inputs":{"OPERAND1":[2,"a1k"],"OPERAND2":[2,".["]},"fields":{},"shadow":false,"topLevel":false},"a1k":{"opcode":"sensing_mousedown","next":null,"parent":"S-","inputs":{},"fields":{},"shadow":false,"topLevel":false},".[":{"opcode":"sensing_keypressed","next":null,"parent":"S-","inputs":{"KEY_OPTION":[1,"a1l"]},"fields":{},"shadow":false,"topLevel":false},"a1l":{"opcode":"sensing_keyoptions","next":null,"parent":".[","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"S,":{"opcode":"control_wait_until","next":".]","parent":"S+","inputs":{"CONDITION":[2,"S."]},"fields":{},"shadow":false,"topLevel":false},"S.":{"opcode":"operator_or","next":null,"parent":"S,","inputs":{"OPERAND1":[2,"S/"],"OPERAND2":[2,".^"]},"fields":{},"shadow":false,"topLevel":false},"S/":{"opcode":"operator_and","next":null,"parent":"S.","inputs":{"OPERAND1":[2,"a1m"],"OPERAND2":[2,"._"]},"fields":{},"shadow":false,"topLevel":false},"a1m":{"opcode":"sensing_mousedown","next":null,"parent":"S/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"._":{"opcode":"sensing_touchingobject","next":null,"parent":"S/","inputs":{"TOUCHINGOBJECTMENU":[1,"a1n"]},"fields":{},"shadow":false,"topLevel":false},"a1n":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"._","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},".^":{"opcode":"sensing_keypressed","next":null,"parent":"S.","inputs":{"KEY_OPTION":[1,"a1o"]},"fields":{},"shadow":false,"topLevel":false},"a1o":{"opcode":"sensing_keyoptions","next":null,"parent":".^","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},".]":{"opcode":"sensing_askandwait","next":"PU","parent":"S,","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"PU":{"opcode":"control_if_else","next":null,"parent":".]","inputs":{"CONDITION":[2,".`"],"SUBSTACK":[2,".{"],"SUBSTACK2":[2,"S:"]},"fields":{},"shadow":false,"topLevel":false},".`":{"opcode":"operator_equals","next":null,"parent":"PU","inputs":{"OPERAND1":[3,"a1p",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1p":{"opcode":"sensing_answer","next":null,"parent":".`","inputs":{},"fields":{},"shadow":false,"topLevel":false},".{":{"opcode":"control_stop","next":".|","parent":"PU","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},".|":{"opcode":"event_broadcast","next":"a1q","parent":".{","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a1q":{"opcode":"control_stop","next":null,"parent":".|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"S:":{"opcode":"data_setvariableto","next":"S;","parent":"PU","inputs":{"VALUE":[3,".}",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},".}":{"opcode":"operator_add","next":null,"parent":"S:","inputs":{"NUM1":[3,"a1r",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a1r":{"opcode":"sensing_answer","next":null,"parent":".}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"S;":{"opcode":"sensing_askandwait","next":"S=","parent":"S:","inputs":{"QUESTION":[3,".~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".~":{"opcode":"operator_join","next":null,"parent":"S;","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"a1s",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1s":{"opcode":"operator_join","next":null,"parent":".~","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the WAVE-8 controls list."]]},"fields":{},"shadow":false,"topLevel":false},"S=":{"opcode":"control_if","next":null,"parent":"S;","inputs":{"CONDITION":[2,"/a"],"SUBSTACK":[2,"/b"]},"fields":{},"shadow":false,"topLevel":false},"/a":{"opcode":"operator_not","next":null,"parent":"S=","inputs":{"OPERAND":[2,"/c"]},"fields":{},"shadow":false,"topLevel":false},"/c":{"opcode":"operator_equals","next":null,"parent":"/a","inputs":{"OPERAND1":[3,"a1t",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1t":{"opcode":"sensing_answer","next":null,"parent":"/c","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/b":{"opcode":"data_replaceitemoflist","next":null,"parent":"S=","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a1u",[10,""]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a1u":{"opcode":"sensing_answer","next":null,"parent":"/b","inputs":{},"fields":{},"shadow":false,"topLevel":false},"l@":{"opcode":"control_if","next":"G*","parent":"l?","inputs":{"CONDITION":[2,"a1v"],"SUBSTACK":[2,"G+"]},"fields":{},"shadow":false,"topLevel":false},"a1v":{"opcode":"operator_equals","next":null,"parent":"l@","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},"G+":{"opcode":"looks_switchcostumeto","next":"/d","parent":"l@","inputs":{"COSTUME":[1,"a1w"]},"fields":{},"shadow":false,"topLevel":false},"a1w":{"opcode":"looks_costume","next":null,"parent":"G+","inputs":{},"fields":{"COSTUME":["c",null]},"shadow":true,"topLevel":false},"/d":{"opcode":"data_showlist","next":"G,","parent":"G+","inputs":{},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"G,":{"opcode":"sound_play","next":"/e","parent":"/d","inputs":{"SOUND_MENU":[1,"a1x"]},"fields":{},"shadow":false,"topLevel":false},"a1x":{"opcode":"sound_sounds_menu","next":null,"parent":"G,","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"/e":{"opcode":"control_forever","next":null,"parent":"G,","inputs":{"SUBSTACK":[2,"S?"]},"fields":{},"shadow":false,"topLevel":false},"S?":{"opcode":"control_wait_until","next":"S@","parent":"/e","inputs":{"CONDITION":[2,"/f"]},"fields":{},"shadow":false,"topLevel":false},"/f":{"opcode":"operator_not","next":null,"parent":"S?","inputs":{"OPERAND":[2,"S["]},"fields":{},"shadow":false,"topLevel":false},"S[":{"opcode":"operator_or","next":null,"parent":"/f","inputs":{"OPERAND1":[2,"a1y"],"OPERAND2":[2,"/g"]},"fields":{},"shadow":false,"topLevel":false},"a1y":{"opcode":"sensing_mousedown","next":null,"parent":"S[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/g":{"opcode":"sensing_keypressed","next":null,"parent":"S[","inputs":{"KEY_OPTION":[1,"a1z"]},"fields":{},"shadow":false,"topLevel":false},"a1z":{"opcode":"sensing_keyoptions","next":null,"parent":"/g","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"S@":{"opcode":"control_wait_until","next":"/h","parent":"S?","inputs":{"CONDITION":[2,"S]"]},"fields":{},"shadow":false,"topLevel":false},"S]":{"opcode":"operator_or","next":null,"parent":"S@","inputs":{"OPERAND1":[2,"S^"],"OPERAND2":[2,"/i"]},"fields":{},"shadow":false,"topLevel":false},"S^":{"opcode":"operator_and","next":null,"parent":"S]","inputs":{"OPERAND1":[2,"a1A"],"OPERAND2":[2,"/j"]},"fields":{},"shadow":false,"topLevel":false},"a1A":{"opcode":"sensing_mousedown","next":null,"parent":"S^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/j":{"opcode":"sensing_touchingobject","next":null,"parent":"S^","inputs":{"TOUCHINGOBJECTMENU":[1,"a1B"]},"fields":{},"shadow":false,"topLevel":false},"a1B":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"/j","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"/i":{"opcode":"sensing_keypressed","next":null,"parent":"S]","inputs":{"KEY_OPTION":[1,"a1C"]},"fields":{},"shadow":false,"topLevel":false},"a1C":{"opcode":"sensing_keyoptions","next":null,"parent":"/i","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"/h":{"opcode":"sensing_askandwait","next":"PV","parent":"S@","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"PV":{"opcode":"control_if_else","next":null,"parent":"/h","inputs":{"CONDITION":[2,"/k"],"SUBSTACK":[2,"/l"],"SUBSTACK2":[2,"S_"]},"fields":{},"shadow":false,"topLevel":false},"/k":{"opcode":"operator_equals","next":null,"parent":"PV","inputs":{"OPERAND1":[3,"a1D",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1D":{"opcode":"sensing_answer","next":null,"parent":"/k","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/l":{"opcode":"control_stop","next":"/m","parent":"PV","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"/m":{"opcode":"event_broadcast","next":"a1E","parent":"/l","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a1E":{"opcode":"control_stop","next":null,"parent":"/m","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"S_":{"opcode":"data_setvariableto","next":"S`","parent":"PV","inputs":{"VALUE":[3,"/n",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"/n":{"opcode":"operator_add","next":null,"parent":"S_","inputs":{"NUM1":[3,"a1F",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a1F":{"opcode":"sensing_answer","next":null,"parent":"/n","inputs":{},"fields":{},"shadow":false,"topLevel":false},"S`":{"opcode":"sensing_askandwait","next":"S{","parent":"S_","inputs":{"QUESTION":[3,"/o",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/o":{"opcode":"operator_join","next":null,"parent":"S`","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"a1G",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1G":{"opcode":"operator_join","next":null,"parent":"/o","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the DualGB controls list."]]},"fields":{},"shadow":false,"topLevel":false},"S{":{"opcode":"control_if","next":null,"parent":"S`","inputs":{"CONDITION":[2,"/p"],"SUBSTACK":[2,"/q"]},"fields":{},"shadow":false,"topLevel":false},"/p":{"opcode":"operator_not","next":null,"parent":"S{","inputs":{"OPERAND":[2,"/r"]},"fields":{},"shadow":false,"topLevel":false},"/r":{"opcode":"operator_equals","next":null,"parent":"/p","inputs":{"OPERAND1":[3,"a1H",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1H":{"opcode":"sensing_answer","next":null,"parent":"/r","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/q":{"opcode":"data_replaceitemoflist","next":null,"parent":"S{","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a1I",[10,""]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"a1I":{"opcode":"sensing_answer","next":null,"parent":"/q","inputs":{},"fields":{},"shadow":false,"topLevel":false},"G*":{"opcode":"control_if","next":"G-","parent":"l@","inputs":{"CONDITION":[2,"a1J"]},"fields":{},"shadow":false,"topLevel":false},"a1J":{"opcode":"operator_equals","next":null,"parent":"G*","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},"G-":{"opcode":"control_if","next":"l[","parent":"G*","inputs":{"CONDITION":[2,"a1K"]},"fields":{},"shadow":false,"topLevel":false},"a1K":{"opcode":"operator_equals","next":null,"parent":"G-","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},"l[":{"opcode":"control_if","next":"G.","parent":"G-","inputs":{"CONDITION":[2,"a1L"],"SUBSTACK":[2,"G/"]},"fields":{},"shadow":false,"topLevel":false},"a1L":{"opcode":"operator_equals","next":null,"parent":"l[","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1200"]]},"fields":{},"shadow":false,"topLevel":false},"G/":{"opcode":"looks_switchcostumeto","next":"/s","parent":"l[","inputs":{"COSTUME":[1,"a1M"]},"fields":{},"shadow":false,"topLevel":false},"a1M":{"opcode":"looks_costume","next":null,"parent":"G/","inputs":{},"fields":{"COSTUME":["d",null]},"shadow":true,"topLevel":false},"/s":{"opcode":"data_showlist","next":"G:","parent":"G/","inputs":{},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"G:":{"opcode":"sound_play","next":"/t","parent":"/s","inputs":{"SOUND_MENU":[1,"a1N"]},"fields":{},"shadow":false,"topLevel":false},"a1N":{"opcode":"sound_sounds_menu","next":null,"parent":"G:","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"/t":{"opcode":"control_forever","next":null,"parent":"G:","inputs":{"SUBSTACK":[2,"S|"]},"fields":{},"shadow":false,"topLevel":false},"S|":{"opcode":"control_wait_until","next":"S}","parent":"/t","inputs":{"CONDITION":[2,"/u"]},"fields":{},"shadow":false,"topLevel":false},"/u":{"opcode":"operator_not","next":null,"parent":"S|","inputs":{"OPERAND":[2,"S~"]},"fields":{},"shadow":false,"topLevel":false},"S~":{"opcode":"operator_or","next":null,"parent":"/u","inputs":{"OPERAND1":[2,"a1O"],"OPERAND2":[2,"/v"]},"fields":{},"shadow":false,"topLevel":false},"a1O":{"opcode":"sensing_mousedown","next":null,"parent":"S~","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/v":{"opcode":"sensing_keypressed","next":null,"parent":"S~","inputs":{"KEY_OPTION":[1,"a1P"]},"fields":{},"shadow":false,"topLevel":false},"a1P":{"opcode":"sensing_keyoptions","next":null,"parent":"/v","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"S}":{"opcode":"control_wait_until","next":"/w","parent":"S|","inputs":{"CONDITION":[2,"Ta"]},"fields":{},"shadow":false,"topLevel":false},"Ta":{"opcode":"operator_or","next":null,"parent":"S}","inputs":{"OPERAND1":[2,"Tb"],"OPERAND2":[2,"/x"]},"fields":{},"shadow":false,"topLevel":false},"Tb":{"opcode":"operator_and","next":null,"parent":"Ta","inputs":{"OPERAND1":[2,"a1Q"],"OPERAND2":[2,"/y"]},"fields":{},"shadow":false,"topLevel":false},"a1Q":{"opcode":"sensing_mousedown","next":null,"parent":"Tb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/y":{"opcode":"sensing_touchingobject","next":null,"parent":"Tb","inputs":{"TOUCHINGOBJECTMENU":[1,"a1R"]},"fields":{},"shadow":false,"topLevel":false},"a1R":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"/y","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"/x":{"opcode":"sensing_keypressed","next":null,"parent":"Ta","inputs":{"KEY_OPTION":[1,"a1S"]},"fields":{},"shadow":false,"topLevel":false},"a1S":{"opcode":"sensing_keyoptions","next":null,"parent":"/x","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"/w":{"opcode":"sensing_askandwait","next":"PW","parent":"S}","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"PW":{"opcode":"control_if_else","next":null,"parent":"/w","inputs":{"CONDITION":[2,"/z"],"SUBSTACK":[2,"/A"],"SUBSTACK2":[2,"Tc"]},"fields":{},"shadow":false,"topLevel":false},"/z":{"opcode":"operator_equals","next":null,"parent":"PW","inputs":{"OPERAND1":[3,"a1T",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1T":{"opcode":"sensing_answer","next":null,"parent":"/z","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/A":{"opcode":"control_stop","next":"/B","parent":"PW","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"/B":{"opcode":"event_broadcast","next":"a1U","parent":"/A","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a1U":{"opcode":"control_stop","next":null,"parent":"/B","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Tc":{"opcode":"data_setvariableto","next":"Td","parent":"PW","inputs":{"VALUE":[3,"/C",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"/C":{"opcode":"operator_add","next":null,"parent":"Tc","inputs":{"NUM1":[3,"a1V",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a1V":{"opcode":"sensing_answer","next":null,"parent":"/C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Td":{"opcode":"sensing_askandwait","next":"Te","parent":"Tc","inputs":{"QUESTION":[3,"/D",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/D":{"opcode":"operator_join","next":null,"parent":"Td","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"a1W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1W":{"opcode":"operator_join","next":null,"parent":"/D","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the Cool NES controls list."]]},"fields":{},"shadow":false,"topLevel":false},"Te":{"opcode":"control_if","next":null,"parent":"Td","inputs":{"CONDITION":[2,"/E"],"SUBSTACK":[2,"/F"]},"fields":{},"shadow":false,"topLevel":false},"/E":{"opcode":"operator_not","next":null,"parent":"Te","inputs":{"OPERAND":[2,"/G"]},"fields":{},"shadow":false,"topLevel":false},"/G":{"opcode":"operator_equals","next":null,"parent":"/E","inputs":{"OPERAND1":[3,"a1X",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1X":{"opcode":"sensing_answer","next":null,"parent":"/G","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/F":{"opcode":"data_replaceitemoflist","next":null,"parent":"Te","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a1Y",[10,""]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a1Y":{"opcode":"sensing_answer","next":null,"parent":"/F","inputs":{},"fields":{},"shadow":false,"topLevel":false},"G.":{"opcode":"control_if","next":null,"parent":"l[","inputs":{"CONDITION":[2,"a1Z"],"SUBSTACK":[2,"G;"]},"fields":{},"shadow":false,"topLevel":false},"a1Z":{"opcode":"operator_equals","next":null,"parent":"G.","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1800"]]},"fields":{},"shadow":false,"topLevel":false},"G;":{"opcode":"looks_switchcostumeto","next":"/H","parent":"G.","inputs":{"COSTUME":[1,"a10"]},"fields":{},"shadow":false,"topLevel":false},"a10":{"opcode":"looks_costume","next":null,"parent":"G;","inputs":{},"fields":{"COSTUME":["e",null]},"shadow":true,"topLevel":false},"/H":{"opcode":"data_showlist","next":"Tf","parent":"G;","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"Tf":{"opcode":"sound_play","next":"/I","parent":"/H","inputs":{"SOUND_MENU":[1,"a11"]},"fields":{},"shadow":false,"topLevel":false},"a11":{"opcode":"sound_sounds_menu","next":null,"parent":"Tf","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"/I":{"opcode":"control_forever","next":null,"parent":"Tf","inputs":{"SUBSTACK":[2,"Tg"]},"fields":{},"shadow":false,"topLevel":false},"Tg":{"opcode":"control_wait_until","next":"Th","parent":"/I","inputs":{"CONDITION":[2,"/J"]},"fields":{},"shadow":false,"topLevel":false},"/J":{"opcode":"operator_not","next":null,"parent":"Tg","inputs":{"OPERAND":[2,"Ti"]},"fields":{},"shadow":false,"topLevel":false},"Ti":{"opcode":"operator_or","next":null,"parent":"/J","inputs":{"OPERAND1":[2,"a12"],"OPERAND2":[2,"/K"]},"fields":{},"shadow":false,"topLevel":false},"a12":{"opcode":"sensing_mousedown","next":null,"parent":"Ti","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/K":{"opcode":"sensing_keypressed","next":null,"parent":"Ti","inputs":{"KEY_OPTION":[1,"a13"]},"fields":{},"shadow":false,"topLevel":false},"a13":{"opcode":"sensing_keyoptions","next":null,"parent":"/K","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"Th":{"opcode":"control_wait_until","next":"/L","parent":"Tg","inputs":{"CONDITION":[2,"Tj"]},"fields":{},"shadow":false,"topLevel":false},"Tj":{"opcode":"operator_or","next":null,"parent":"Th","inputs":{"OPERAND1":[2,"Tk"],"OPERAND2":[2,"/M"]},"fields":{},"shadow":false,"topLevel":false},"Tk":{"opcode":"operator_and","next":null,"parent":"Tj","inputs":{"OPERAND1":[2,"a14"],"OPERAND2":[2,"/N"]},"fields":{},"shadow":false,"topLevel":false},"a14":{"opcode":"sensing_mousedown","next":null,"parent":"Tk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/N":{"opcode":"sensing_touchingobject","next":null,"parent":"Tk","inputs":{"TOUCHINGOBJECTMENU":[1,"a15"]},"fields":{},"shadow":false,"topLevel":false},"a15":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"/N","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"/M":{"opcode":"sensing_keypressed","next":null,"parent":"Tj","inputs":{"KEY_OPTION":[1,"a16"]},"fields":{},"shadow":false,"topLevel":false},"a16":{"opcode":"sensing_keyoptions","next":null,"parent":"/M","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"/L":{"opcode":"sensing_askandwait","next":"PX","parent":"Th","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"PX":{"opcode":"control_if_else","next":null,"parent":"/L","inputs":{"CONDITION":[2,"/O"],"SUBSTACK":[2,"/P"],"SUBSTACK2":[2,"Tl"]},"fields":{},"shadow":false,"topLevel":false},"/O":{"opcode":"operator_equals","next":null,"parent":"PX","inputs":{"OPERAND1":[3,"a17",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a17":{"opcode":"sensing_answer","next":null,"parent":"/O","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/P":{"opcode":"control_stop","next":"/Q","parent":"PX","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"/Q":{"opcode":"event_broadcast","next":"a18","parent":"/P","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a18":{"opcode":"control_stop","next":null,"parent":"/Q","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Tl":{"opcode":"data_setvariableto","next":"Tm","parent":"PX","inputs":{"VALUE":[3,"/R",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"/R":{"opcode":"operator_add","next":null,"parent":"Tl","inputs":{"NUM1":[3,"a19",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a19":{"opcode":"sensing_answer","next":null,"parent":"/R","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Tm":{"opcode":"sensing_askandwait","next":"Tn","parent":"Tl","inputs":{"QUESTION":[3,"/S",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/S":{"opcode":"operator_join","next":null,"parent":"Tm","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"a1!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1!":{"opcode":"operator_join","next":null,"parent":"/S","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the SI8080 controls list."]]},"fields":{},"shadow":false,"topLevel":false},"Tn":{"opcode":"control_if","next":null,"parent":"Tm","inputs":{"CONDITION":[2,"/T"],"SUBSTACK":[2,"/U"]},"fields":{},"shadow":false,"topLevel":false},"/T":{"opcode":"operator_not","next":null,"parent":"Tn","inputs":{"OPERAND":[2,"/V"]},"fields":{},"shadow":false,"topLevel":false},"/V":{"opcode":"operator_equals","next":null,"parent":"/T","inputs":{"OPERAND1":[3,"a1#",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1#":{"opcode":"sensing_answer","next":null,"parent":"/V","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/U":{"opcode":"data_replaceitemoflist","next":null,"parent":"Tn","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a1%",[10,""]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"a1%":{"opcode":"sensing_answer","next":null,"parent":"/U","inputs":{},"fields":{},"shadow":false,"topLevel":false},".*":{"opcode":"microbit_displayClear","next":"/W","parent":"l=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/W":{"opcode":"looks_hide","next":"/X","parent":".*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/X":{"opcode":"data_setvariableto","next":"a1(","parent":"/W","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"a1(":{"opcode":"data_setvariableto","next":null,"parent":"/X","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},".g":{"opcode":"data_hidelist","next":"a0Q","parent":".f","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"r6":{"opcode":"data_setvariableto","next":"a1)","parent":",4","inputs":{"VALUE":[3,"/Y",[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"/Y":{"opcode":"operator_join","next":null,"parent":"r6","inputs":{"STRING1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"STRING2":[3,"/Z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/Z":{"opcode":"operator_letter_of","next":null,"parent":"/Y","inputs":{"LETTER":[3,"a1*",[6,"0"]],"STRING":[3,[12,"import.ascii","4alDl:(*zINs=KzJfNuw"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1*":{"opcode":"operator_subtract","next":null,"parent":"/Z","inputs":{"NUM1":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"a1)":{"opcode":"data_changevariableby","next":null,"parent":"r6","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"r~":{"opcode":"procedures_call","next":"To","parent":"r}","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a1+",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a1+":{"opcode":"sensing_answer","next":null,"parent":"r~","inputs":{},"fields":{},"shadow":false,"topLevel":false},"To":{"opcode":"sound_play","next":"Tp","parent":"r~","inputs":{"SOUND_MENU":[1,"a1,"]},"fields":{},"shadow":false,"topLevel":false},"a1,":{"opcode":"sound_sounds_menu","next":null,"parent":"To","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"Tp":{"opcode":"control_if","next":null,"parent":"To","inputs":{"CONDITION":[2,"/0"],"SUBSTACK":[2,"Tq"]},"fields":{},"shadow":false,"topLevel":false},"/0":{"opcode":"operator_equals","next":null,"parent":"Tp","inputs":{"OPERAND1":[3,"a1-",[10,""]],"OPERAND2":[1,[10,"200000"]]},"fields":{},"shadow":false,"topLevel":false},"a1-":{"opcode":"data_lengthoflist","next":null,"parent":"/0","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"Tq":{"opcode":"looks_switchcostumeto","next":"Tr","parent":"Tp","inputs":{"COSTUME":[1,"a1."]},"fields":{},"shadow":false,"topLevel":false},"a1.":{"opcode":"looks_costume","next":null,"parent":"Tq","inputs":{},"fields":{"COSTUME":["h",null]},"shadow":true,"topLevel":false},"Tr":{"opcode":"control_wait_until","next":"/1","parent":"Tq","inputs":{"CONDITION":[2,"/2"]},"fields":{},"shadow":false,"topLevel":false},"/2":{"opcode":"operator_not","next":null,"parent":"Tr","inputs":{"OPERAND":[2,"Ts"]},"fields":{},"shadow":false,"topLevel":false},"Ts":{"opcode":"operator_or","next":null,"parent":"/2","inputs":{"OPERAND1":[2,"/3"],"OPERAND2":[2,"a1/"]},"fields":{},"shadow":false,"topLevel":false},"/3":{"opcode":"sensing_keypressed","next":null,"parent":"Ts","inputs":{"KEY_OPTION":[1,"a1:"]},"fields":{},"shadow":false,"topLevel":false},"a1:":{"opcode":"sensing_keyoptions","next":null,"parent":"/3","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a1/":{"opcode":"sensing_mousedown","next":null,"parent":"Ts","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/1":{"opcode":"control_wait_until","next":null,"parent":"Tr","inputs":{"CONDITION":[2,"Tt"]},"fields":{},"shadow":false,"topLevel":false},"Tt":{"opcode":"operator_or","next":null,"parent":"/1","inputs":{"OPERAND1":[2,"/4"],"OPERAND2":[2,"a1;"]},"fields":{},"shadow":false,"topLevel":false},"/4":{"opcode":"sensing_keypressed","next":null,"parent":"Tt","inputs":{"KEY_OPTION":[1,"a1="]},"fields":{},"shadow":false,"topLevel":false},"a1=":{"opcode":"sensing_keyoptions","next":null,"parent":"/4","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a1;":{"opcode":"sensing_mousedown","next":null,"parent":"Tt","inputs":{},"fields":{},"shadow":false,"topLevel":false},"si":{"opcode":"operator_join","next":null,"parent":"rY","inputs":{"STRING1":[3,"sW",[10,""]],"STRING2":[3,"sX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sW":{"opcode":"operator_join","next":null,"parent":"si","inputs":{"STRING1":[3,"sY",[10,""]],"STRING2":[3,"sZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sY":{"opcode":"operator_letter_of","next":null,"parent":"sW","inputs":{"LETTER":[3,"a1?",[6,"0"]],"STRING":[3,"a1@",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1?":{"opcode":"operator_add","next":null,"parent":"sY","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a1@":{"opcode":"sensing_answer","next":null,"parent":"sY","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sZ":{"opcode":"operator_letter_of","next":null,"parent":"sW","inputs":{"LETTER":[3,"a1[",[6,"0"]],"STRING":[3,"a1]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1[":{"opcode":"operator_add","next":null,"parent":"sZ","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a1]":{"opcode":"sensing_answer","next":null,"parent":"sZ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sX":{"opcode":"operator_join","next":null,"parent":"si","inputs":{"STRING1":[3,"s0",[10,""]],"STRING2":[3,"s1",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s0":{"opcode":"operator_letter_of","next":null,"parent":"sX","inputs":{"LETTER":[3,"a1^",[6,"0"]],"STRING":[3,"a1_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1^":{"opcode":"operator_add","next":null,"parent":"s0","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"20"]]},"fields":{},"shadow":false,"topLevel":false},"a1_":{"opcode":"sensing_answer","next":null,"parent":"s0","inputs":{},"fields":{},"shadow":false,"topLevel":false},"s1":{"opcode":"operator_letter_of","next":null,"parent":"sX","inputs":{"LETTER":[3,"a1`",[6,"0"]],"STRING":[3,"a1{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1`":{"opcode":"operator_add","next":null,"parent":"s1","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"21"]]},"fields":{},"shadow":false,"topLevel":false},"a1{":{"opcode":"sensing_answer","next":null,"parent":"s1","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sr":{"opcode":"operator_join","next":null,"parent":"sp","inputs":{"STRING1":[3,"s2",[10,""]],"STRING2":[3,"s3",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s2":{"opcode":"operator_letter_of","next":null,"parent":"sr","inputs":{"LETTER":[3,"a1|",[6,"0"]],"STRING":[3,"a1}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1|":{"opcode":"operator_add","next":null,"parent":"s2","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a1}":{"opcode":"sensing_answer","next":null,"parent":"s2","inputs":{},"fields":{},"shadow":false,"topLevel":false},"s3":{"opcode":"operator_letter_of","next":null,"parent":"sr","inputs":{"LETTER":[3,"a1~",[6,"0"]],"STRING":[3,"a2a",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a1~":{"opcode":"operator_add","next":null,"parent":"s3","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a2a":{"opcode":"sensing_answer","next":null,"parent":"s3","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sv":{"opcode":"operator_letter_of","next":null,"parent":"st","inputs":{"LETTER":[3,"a2b",[6,"0"]],"STRING":[3,"a2c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a2b":{"opcode":"operator_add","next":null,"parent":"sv","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a2c":{"opcode":"sensing_answer","next":null,"parent":"sv","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sy":{"opcode":"operator_letter_of","next":null,"parent":"su","inputs":{"LETTER":[3,"a2d",[6,"0"]],"STRING":[3,"a2e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a2d":{"opcode":"operator_add","next":null,"parent":"sy","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a2e":{"opcode":"sensing_answer","next":null,"parent":"sy","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sz":{"opcode":"data_setvariableto","next":"a2f","parent":"-}","inputs":{"VALUE":[3,"/5",[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"/5":{"opcode":"operator_join","next":null,"parent":"sz","inputs":{"STRING1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"STRING2":[3,"/6",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/6":{"opcode":"operator_letter_of","next":null,"parent":"/5","inputs":{"LETTER":[3,"a2g",[6,"0"]],"STRING":[3,[12,"import.ascii","4alDl:(*zINs=KzJfNuw"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a2g":{"opcode":"operator_subtract","next":null,"parent":"/6","inputs":{"NUM1":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"a2f":{"opcode":"data_changevariableby","next":null,"parent":"sz","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"sK":{"opcode":"looks_switchcostumeto","next":"/7","parent":"fD","inputs":{"COSTUME":[1,"a2h"]},"fields":{},"shadow":false,"topLevel":false},"a2h":{"opcode":"looks_costume","next":null,"parent":"sK","inputs":{},"fields":{"COSTUME":["F",null]},"shadow":true,"topLevel":false},"/7":{"opcode":"sensing_askandwait","next":"a2i","parent":"sK","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"a2i":{"opcode":"control_stop","next":null,"parent":"/7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}}},"comments":{"Sa":{"blockId":"cB","x":4254.1042857170105,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"R~":{"blockId":"cA","x":913.8666666666668,"y":3041.2666666666664,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"Sb":{"blockId":"cC","x":4254.1042857170105,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"},"/8":{"blockId":"fi","x":-102,"y":19043,"width":200,"height":200,"minimized":true,"text":"F000 (XO-CHIP)- i := long NNNN. Load i with a 16 bit address"},"/":{"blockId":"a","x":629,"y":990,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},":":{"blockId":"f","x":3087,"y":1672,"width":200,"height":200,"minimized":true,"text":"5"},";":{"blockId":"g","x":3070,"y":1912,"width":200,"height":200,"minimized":true,"text":"6"},"W":{"blockId":"b","x":178,"y":2480,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"buM":{"blockId":"buN","x":1407.8280181884766,"y":3803,"width":200,"height":200,"minimized":false,"text":"V0.3.1, loads a prebuilt rom"},"aF":{"blockId":"c","x":409,"y":610,"width":200,"height":200,"minimized":true,"text":"0x2AC - HIRES_ON"},"aG":{"blockId":"d","x":377,"y":1831,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aH":{"blockId":"X","x":501,"y":2156,"width":200,"height":200,"minimized":true,"text":"00DN (XO-CHIP) Scroll up N lines"},"a+":{"blockId":"Z","x":-56,"y":2716,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"bf":{"blockId":"e","x":230,"y":3925,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"O(":{"blockId":"eH","x":-37,"y":5147,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"j:":{"blockId":"i","x":-51,"y":5575,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"j;":{"blockId":"j","x":-35,"y":5861,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"lq":{"blockId":"n","x":-63,"y":6165,"width":200,"height":200,"minimized":true,"text":"1NNN"},"lr":{"blockId":"o","x":-112,"y":6373,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum "},"ls":{"blockId":"p","x":-109,"y":6628,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"lt":{"blockId":"q","x":-120,"y":7020,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"lu":{"blockId":"r","x":-77,"y":7402,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"Ga":{"blockId":"lv","x":1093,"y":7952,"width":200,"height":200,"minimized":true,"text":"5XY1 (CHIP8E) Skip if VX > VY"},"Gb":{"blockId":"E","x":139,"y":8117,"width":200,"height":200,"minimized":true,"text":"If VX > VY, load or save registers in reverse order; do a byte reversal"},"Gc":{"blockId":"cO","x":21,"y":8442,"width":200,"height":200,"minimized":true,"text":"5XY2 (XO-CHIP)- save vx-vy starting at I"},"Gd":{"blockId":"cP","x":17,"y":8856,"width":200,"height":200,"minimized":true,"text":"5XY3(XO-CHIP)- load vx-vy starting at I"},"lw":{"blockId":"D","x":-78,"y":9303,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"lx":{"blockId":"F","x":-90,"y":9505,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"ly":{"blockId":"m","x":18,"y":9789,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"lz":{"blockId":"t","x":22,"y":10012,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"lA":{"blockId":"H","x":32,"y":10648,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"G=":{"blockId":"a:","x":15,"y":11272,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"lB":{"blockId":"s","x":17,"y":11910,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"lC":{"blockId":"I","x":40,"y":12267,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"lD":{"blockId":"u","x":12,"y":12635,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"lE":{"blockId":"J","x":4,"y":13252,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"lH":{"blockId":"v","x":10,"y":13609,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"lI":{"blockId":"G","x":-104,"y":14249,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"lJ":{"blockId":"w","x":-106,"y":14488,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"lK":{"blockId":"x","x":-65,"y":14688,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP, Default)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"lN":{"blockId":"y","x":-84,"y":15108,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"lP":{"blockId":"K","x":-92,"y":15748,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"lU":{"blockId":"a,","x":672,"y":18570,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"lV":{"blockId":"a-","x":719,"y":18695,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"Tu":{"blockId":"4","x":-90,"y":19292,"width":200,"height":200,"minimized":true,"text":"FN01 (XO-CHIP)- Plane n"},"Tv":{"blockId":"5","x":-82,"y":19539,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"lZ":{"blockId":"z","x":-105,"y":19727,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"GJ":{"blockId":"rN","x":-90,"y":19936,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"l1":{"blockId":"L","x":-80,"y":20597,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"l2":{"blockId":"M","x":-103,"y":20814,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"l3":{"blockId":"A","x":-99,"y":21016,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"l5":{"blockId":"N","x":-83,"y":21548,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"l6":{"blockId":"C","x":-71,"y":21764,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"l7":{"blockId":"l","x":-89,"y":21993,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"l8":{"blockId":"B","x":-97,"y":22399,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"l9":{"blockId":"b)","x":-93,"y":23144,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"l!":{"blockId":"b+","x":-61,"y":23912,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"l#":{"blockId":"b/","x":-32,"y":24629,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"aI":{"blockId":"S","x":3035,"y":264,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"aJ":{"blockId":"T","x":3035,"y":466,"width":200,"height":200,"minimized":true,"text":"0"},"aK":{"blockId":"U","x":3038,"y":705,"width":200,"height":200,"minimized":true,"text":"1"},"aL":{"blockId":"V","x":3043,"y":951,"width":200,"height":200,"minimized":true,"text":"2"},"aM":{"blockId":"2","x":3030,"y":1183,"width":200,"height":200,"minimized":true,"text":"3"},"aN":{"blockId":"3","x":3036,"y":1428,"width":200,"height":200,"minimized":true,"text":"4"},"a9":{"blockId":"O","x":3073,"y":2150,"width":200,"height":200,"minimized":true,"text":"7"},"a!":{"blockId":"P","x":3051,"y":2388,"width":200,"height":200,"minimized":true,"text":"8"},"a#":{"blockId":"be","x":3057,"y":2630,"width":200,"height":200,"minimized":true,"text":"9"},"a%":{"blockId":"a(","x":3047,"y":2868,"width":200,"height":200,"minimized":true,"text":"A"},"aYM":{"blockId":"aYN","x":35,"y":28136,"width":200,"height":200,"minimized":true,"text":"FXF8 (chip8x)- Output port to VX"},"Eb":{"blockId":"6","x":286,"y":23658,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"buO":{"blockId":"PY","x":491,"y":25099,"width":200,"height":200,"minimized":true,"text":"SCHIP compatibility mode"},"Ed":{"blockId":"7","x":222,"y":32178,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"eG":{"blockId":"Y","x":1891,"y":4853,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"po":{"blockId":"h","x":1736,"y":11672,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"}},"currentCostume":10,"costumes":[{"name":"A","bitmapResolution":1,"dataFormat":"svg","assetId":"5a67bd306c0bf6f3bd29fcd259681668","md5ext":"5a67bd306c0bf6f3bd29fcd259681668.svg","rotationCenterX":197.96057752698673,"rotationCenterY":134.53515818147002},{"name":"B","bitmapResolution":1,"dataFormat":"svg","assetId":"3dbedfde92fa9774b368009d5e856c28","md5ext":"3dbedfde92fa9774b368009d5e856c28.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"C","bitmapResolution":1,"dataFormat":"svg","assetId":"2d82abe0ca6a40ce6b72ceb369dc13b6","md5ext":"2d82abe0ca6a40ce6b72ceb369dc13b6.svg","rotationCenterX":197.9605672390493,"rotationCenterY":134.53517500000007},{"name":"D","bitmapResolution":1,"dataFormat":"svg","assetId":"f94727b60f64e3da499b940dfb381057","md5ext":"f94727b60f64e3da499b940dfb381057.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"E","bitmapResolution":1,"dataFormat":"svg","assetId":"c09533bcbc151112fb0f03b88f87bed1","md5ext":"c09533bcbc151112fb0f03b88f87bed1.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"F","bitmapResolution":1,"dataFormat":"svg","assetId":"71cf8a00a2bec14a6d00fb4355fec955","md5ext":"71cf8a00a2bec14a6d00fb4355fec955.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"G","bitmapResolution":1,"dataFormat":"svg","assetId":"a160d3b17bf006d0916d869b2aa72883","md5ext":"a160d3b17bf006d0916d869b2aa72883.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"H","bitmapResolution":1,"dataFormat":"svg","assetId":"d95bf8bc0199c91f2972e8e602aee9f5","md5ext":"d95bf8bc0199c91f2972e8e602aee9f5.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"I","bitmapResolution":1,"dataFormat":"svg","assetId":"398a717360787c80a62ba027b05c0fd1","md5ext":"398a717360787c80a62ba027b05c0fd1.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"J","bitmapResolution":1,"dataFormat":"svg","assetId":"149c08fc65e014934491ec4b4ba6b173","md5ext":"149c08fc65e014934491ec4b4ba6b173.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"K","bitmapResolution":1,"dataFormat":"svg","assetId":"481ce3622e5272400300e44d59169486","md5ext":"481ce3622e5272400300e44d59169486.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"L","bitmapResolution":1,"dataFormat":"svg","assetId":"fcd08606731faea7dd386fb5bf852bdf","md5ext":"fcd08606731faea7dd386fb5bf852bdf.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"M","bitmapResolution":1,"dataFormat":"svg","assetId":"a7c23f26c3dae9b25e1f6c2f008a5111","md5ext":"a7c23f26c3dae9b25e1f6c2f008a5111.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"N","bitmapResolution":1,"dataFormat":"svg","assetId":"f8209d3b6054336f0e295022aa1a1c0a","md5ext":"f8209d3b6054336f0e295022aa1a1c0a.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"O","bitmapResolution":1,"dataFormat":"svg","assetId":"72b0586109ccf379be92fc7cb07f4619","md5ext":"72b0586109ccf379be92fc7cb07f4619.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"P","bitmapResolution":1,"dataFormat":"svg","assetId":"8702d47af0d053c4ef2c0729b7e526f5","md5ext":"8702d47af0d053c4ef2c0729b7e526f5.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"Q","bitmapResolution":1,"dataFormat":"svg","assetId":"7e10c726db796effabd3a57049b3024b","md5ext":"7e10c726db796effabd3a57049b3024b.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"R","bitmapResolution":1,"dataFormat":"svg","assetId":"32d516f649322d50fee0903a40ac0718","md5ext":"32d516f649322d50fee0903a40ac0718.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"S","bitmapResolution":1,"dataFormat":"svg","assetId":"3bb186a14f9405c9ff8a4e54880c42f2","md5ext":"3bb186a14f9405c9ff8a4e54880c42f2.svg","rotationCenterX":197.960565,"rotationCenterY":134.535175},{"name":"T","bitmapResolution":1,"dataFormat":"svg","assetId":"cd83082ac67005b2a36de06a611c4e6b","md5ext":"cd83082ac67005b2a36de06a611c4e6b.svg","rotationCenterX":197.960555,"rotationCenterY":134.535165},{"name":"U","bitmapResolution":1,"dataFormat":"svg","assetId":"3eb24fa6369af4118773f440c120dc0a","md5ext":"3eb24fa6369af4118773f440c120dc0a.svg","rotationCenterX":197.96056723904925,"rotationCenterY":134.535175},{"name":"V","bitmapResolution":1,"dataFormat":"svg","assetId":"12062d2aa2246e1c788009752fd4d607","md5ext":"12062d2aa2246e1c788009752fd4d607.svg","rotationCenterX":197.96053500000025,"rotationCenterY":134.53515500000003},{"name":"X","bitmapResolution":1,"dataFormat":"svg","assetId":"0ca6757ff88bb5e0ee2c06ca91101dcc","md5ext":"0ca6757ff88bb5e0ee2c06ca91101dcc.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"Y","bitmapResolution":1,"dataFormat":"svg","assetId":"2a2208412a5c269a99b0cfdb120ef050","md5ext":"2a2208412a5c269a99b0cfdb120ef050.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"Z","bitmapResolution":1,"dataFormat":"svg","assetId":"f801f1a890244742cdc606a364c748ac","md5ext":"f801f1a890244742cdc606a364c748ac.svg","rotationCenterX":197.9605672390493,"rotationCenterY":134.53517499999998},{"name":"a","bitmapResolution":1,"dataFormat":"svg","assetId":"8796046f6feb8acb14a4dc3e49221d5a","md5ext":"8796046f6feb8acb14a4dc3e49221d5a.svg","rotationCenterX":197.96056723904934,"rotationCenterY":134.98400681677757},{"name":"b","bitmapResolution":1,"dataFormat":"svg","assetId":"03bcf3aa18f1bbb42d7ddd6fb04efb98","md5ext":"03bcf3aa18f1bbb42d7ddd6fb04efb98.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85722499999997},{"name":"c","bitmapResolution":1,"dataFormat":"svg","assetId":"703a2029112c4d19851294565c1d19f3","md5ext":"703a2029112c4d19851294565c1d19f3.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85724499999998},{"name":"d","bitmapResolution":1,"dataFormat":"svg","assetId":"caaa002b09cb3cff0f67cdbfc605882d","md5ext":"caaa002b09cb3cff0f67cdbfc605882d.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85724499999998},{"name":"e","bitmapResolution":1,"dataFormat":"svg","assetId":"4e8c781820738334dbde85fc3001216b","md5ext":"4e8c781820738334dbde85fc3001216b.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85722499999997},{"name":"f","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"g","bitmapResolution":1,"dataFormat":"svg","assetId":"c4af03b92d6e6294b68eb0423a84a86f","md5ext":"c4af03b92d6e6294b68eb0423a84a86f.svg","rotationCenterX":197.9605672390494,"rotationCenterY":134.53517499999998},{"name":"h","bitmapResolution":1,"dataFormat":"svg","assetId":"b92a6acc437c2abaa64dc597c41fcaba","md5ext":"b92a6acc437c2abaa64dc597c41fcaba.svg","rotationCenterX":264.52209805845604,"rotationCenterY":134.4980209292247},{"name":"i","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"j","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"k","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"l","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"m","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"n","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"o","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"p","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"q","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"r","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"s","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"t","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"u","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"v","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"w","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"x","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"y","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"z","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"0","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"1","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"2","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"3","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"4","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"5","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"6","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"7","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"8","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"9","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"+","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"/","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"423930correct4","assetId":"63e15b4b132aaeaa1c569d631bbea1bf","dataFormat":"wav","format":"","rate":48000,"sampleCount":14393,"md5ext":"63e15b4b132aaeaa1c569d631bbea1bf.wav"},{"name":"423930__mudkip2016__correct2","assetId":"7102f57a8d7aee78d60c8f04b0b16caf","dataFormat":"wav","format":"","rate":48000,"sampleCount":7405,"md5ext":"7102f57a8d7aee78d60c8f04b0b16caf.wav"}],"volume":100,"layerOrder":28,"visible":false,"x":0,"y":45,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite6","variables":{},"lists":{},"broadcasts":{},"blocks":{"/9":{"opcode":"looks_show","next":"s4","parent":"/!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/!":{"opcode":"looks_seteffectto","next":"/9","parent":"a2j","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"/#":{"opcode":"control_wait","next":"a2k","parent":"s4","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/%":{"opcode":"motion_gotoxy","next":"a2m","parent":"a2l","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2l":{"opcode":"event_whenflagclicked","next":"/%","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":0},"a2m":{"opcode":"looks_hide","next":null,"parent":"/%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2j":{"opcode":"event_whenbroadcastreceived","next":"/!","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":0,"y":200},"s4":{"opcode":"control_repeat","next":"a2n","parent":"/9","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"/#"]},"fields":{},"shadow":false,"topLevel":false},"a2k":{"opcode":"looks_changeeffectby","next":null,"parent":"/#","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a2n":{"opcode":"event_broadcast","next":null,"parent":"s4","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"a2o":{"opcode":"event_whenbroadcastreceived","next":"s5","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":0,"y":576},"s5":{"opcode":"control_repeat","next":"a2p","parent":"a2o","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"a2q"]},"fields":{},"shadow":false,"topLevel":false},"a2q":{"opcode":"looks_changeeffectby","next":null,"parent":"s5","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a2p":{"opcode":"looks_hide","next":null,"parent":"s5","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{"Sa":{"blockId":"cB","x":4254,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"R~":{"blockId":"cA","x":913,"y":3041,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"Sb":{"blockId":"cC","x":4254,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"5ba399d68537b377b7743b61d00b876e","md5ext":"5ba399d68537b377b7743b61d00b876e.svg","rotationCenterX":319.57207207207205,"rotationCenterY":193.5}],"sounds":[],"volume":100,"layerOrder":27,"visible":false,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Background Effects","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]]},"broadcasts":{},"blocks":{"/(":{"opcode":"operator_divide","next":null,"parent":"s6","inputs":{"NUM1":[3,"a2r",[4,0]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"/)":{"opcode":"pen_clear","next":"/*","parent":"a2s","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/*":{"opcode":"control_stop","next":"s7","parent":"/)","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"/+":{"opcode":"operator_multiply","next":null,"parent":"s8","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,"/,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"/,":{"opcode":"operator_mathop","next":null,"parent":"/+","inputs":{"NUM":[3,"s9",[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"/-":{"opcode":"operator_multiply","next":null,"parent":"s!","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"a2t",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"/.":{"opcode":"operator_multiply","next":null,"parent":"s#","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"//",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"//":{"opcode":"operator_mathop","next":null,"parent":"/.","inputs":{"NUM":[3,"/:",[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"/:":{"opcode":"operator_multiply","next":null,"parent":"//","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"s6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"/;":{"opcode":"looks_switchcostumeto","next":null,"parent":"G?","inputs":{"COSTUME":[1,"a2u"]},"fields":{},"shadow":false,"topLevel":false},"/=":{"opcode":"pen_clear","next":"/?","parent":"a2v","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/?":{"opcode":"looks_hide","next":"a2w","parent":"/=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/@":{"opcode":"pen_setPenColorToColor","next":"s%","parent":"/[","inputs":{"COLOR":[1,[9,"#6cb7ff"]]},"fields":{},"shadow":false,"topLevel":false},"/[":{"opcode":"pen_clear","next":"/@","parent":"/]","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/]":{"opcode":"procedures_definition","next":"/[","parent":null,"inputs":{"custom_block":[1,"s("]},"fields":{},"shadow":false,"topLevel":true,"x":-50,"y":420},"/^":{"opcode":"operator_multiply","next":null,"parent":"s9","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"a2x",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"/_":{"opcode":"procedures_call","next":"/`","parent":"a2y","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get stage size","argumentids":"[]","warp":"true"}},"/`":{"opcode":"looks_hide","next":"/{","parent":"/_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/{":{"opcode":"sensing_resettimer","next":"/|","parent":"/`","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/|":{"opcode":"control_forever","next":null,"parent":"/{","inputs":{"SUBSTACK":[2,"/}"]},"fields":{},"shadow":false,"topLevel":false},"/}":{"opcode":"procedures_call","next":null,"parent":"/|","inputs":{"~BK0K$cz}t.h.rO=u#0K":[3,"a2z",[10,""]],"Yz$f.MXbIbC69J7[Y(G{":[3,[12,"GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render %s %s","argumentids":"[\"~BK0K$cz}t.h.rO=u#0K\",\"Yz$f.MXbIbC69J7[Y(G{\"]","warp":"true"}},"/~":{"opcode":"looks_hide","next":"a2B","parent":"a2A","inputs":{},"fields":{},"shadow":false,"topLevel":false},":a":{"opcode":"operator_round","next":null,"parent":":b","inputs":{"NUM":[3,":c",[4,0]]},"fields":{},"shadow":false,"topLevel":false},":c":{"opcode":"operator_join","next":null,"parent":":a","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"s)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},":d":{"opcode":"looks_show","next":"G@","parent":":e","inputs":{},"fields":{},"shadow":false,"topLevel":false},":e":{"opcode":"procedures_definition","next":":d","parent":null,"inputs":{"custom_block":[1,"a2C"]},"fields":{},"shadow":false,"topLevel":true,"x":1002,"y":-409},":f":{"opcode":"motion_gotoxy","next":"l]","parent":"G@","inputs":{"X":[1,[4,"-1"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":g":{"opcode":"sensing_touchingobject","next":null,"parent":"l]","inputs":{"TOUCHINGOBJECTMENU":[1,"a2D"]},"fields":{},"shadow":false,"topLevel":false},":h":{"opcode":"operator_multiply","next":null,"parent":":i","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"s*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},":i":{"opcode":"operator_mathop","next":null,"parent":":j","inputs":{"NUM":[3,":h",[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},":j":{"opcode":"operator_multiply","next":null,"parent":"s8","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,":i",[4,0]]},"fields":{},"shadow":false,"topLevel":false},":k":{"opcode":"looks_switchbackdropto","next":null,"parent":"s+","inputs":{"BACKDROP":[1,"a2E"]},"fields":{},"shadow":false,"topLevel":false},":b":{"opcode":"operator_divide","next":null,"parent":"fH","inputs":{"NUM1":[3,":a",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},":l":{"opcode":"control_repeat","next":null,"parent":"G[","inputs":{"TIMES":[3,[12,"stage width","i!Gu6~8n7Kk|ypDR{}Pb"],[6,0]],"SUBSTACK":[2,":m"]},"fields":{},"shadow":false,"topLevel":false},":m":{"opcode":"pen_penDown","next":"s,","parent":":l","inputs":{},"fields":{},"shadow":false,"topLevel":false},":n":{"opcode":"operator_subtract","next":null,"parent":"G?","inputs":{"NUM1":[3,":o",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},":o":{"opcode":"operator_multiply","next":null,"parent":":n","inputs":{"NUM1":[3,"a2F",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},":p":{"opcode":"operator_divide","next":null,"parent":"s*","inputs":{"NUM1":[3,"a2G",[4,0]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},":q":{"opcode":"looks_seteffectto","next":":s","parent":":r","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},":r":{"opcode":"looks_show","next":":q","parent":"s7","inputs":{},"fields":{},"shadow":false,"topLevel":false},":s":{"opcode":"looks_gotofrontback","next":"s+","parent":":q","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},":t":{"opcode":"motion_sety","next":":u","parent":"s,","inputs":{"Y":[1,[4,"-180"]]},"fields":{},"shadow":false,"topLevel":false},":u":{"opcode":"pen_penUp","next":"s-","parent":":t","inputs":{},"fields":{},"shadow":false,"topLevel":false},":v":{"opcode":"operator_multiply","next":null,"parent":"s#","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,":w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},":w":{"opcode":"operator_mathop","next":null,"parent":":v","inputs":{"NUM":[3,"s!",[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"s(":{"opcode":"procedures_prototype","next":null,"parent":"/]","inputs":{"~BK0K$cz}t.h.rO=u#0K":[1,"a2H"],"Yz$f.MXbIbC69J7[Y(G{":[1,"a2I"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render %s %s","argumentids":"[\"~BK0K$cz}t.h.rO=u#0K\",\"Yz$f.MXbIbC69J7[Y(G{\"]","argumentnames":"[\"timer\",\"height\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a2H":{"opcode":"argument_reporter_string_number","next":null,"parent":"s(","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":true,"topLevel":false},"a2I":{"opcode":"argument_reporter_string_number","next":null,"parent":"s(","inputs":{},"fields":{"VALUE":["height",null]},"shadow":true,"topLevel":false},"s%":{"opcode":"pen_setPenColorParamTo","next":"fH","parent":"/@","inputs":{"COLOR_PARAM":[1,"a2J"],"VALUE":[1,[4,"30"]]},"fields":{},"shadow":false,"topLevel":false},"a2J":{"opcode":"pen_menu_colorParam","next":null,"parent":"s%","inputs":{},"fields":{"colorParam":["transparency",null]},"shadow":true,"topLevel":false},"fH":{"opcode":"pen_changePenColorParamBy","next":"G[","parent":"s%","inputs":{"COLOR_PARAM":[1,"a2K"],"VALUE":[3,":b",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2K":{"opcode":"pen_menu_colorParam","next":null,"parent":"fH","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"s)":{"opcode":"operator_join","next":null,"parent":":c","inputs":{"STRING1":[3,"a2L",[10,""]],"STRING2":[3,"a2M",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a2L":{"opcode":"data_itemoflist","next":null,"parent":"s)","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2M":{"opcode":"data_itemoflist","next":null,"parent":"s)","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"G[":{"opcode":"motion_setx","next":":l","parent":"fH","inputs":{"X":[3,"a2N",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s,":{"opcode":"motion_sety","next":":t","parent":":m","inputs":{"Y":[3,"s.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s.":{"opcode":"operator_subtract","next":null,"parent":"s,","inputs":{"NUM1":[3,"s8",[4,0]],"NUM2":[3,"a2O",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2O":{"opcode":"argument_reporter_string_number","next":null,"parent":"s.","inputs":{},"fields":{"VALUE":["height",null]},"shadow":false,"topLevel":false},"s-":{"opcode":"motion_sety","next":"a2P","parent":":u","inputs":{"Y":[3,"s/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s/":{"opcode":"operator_subtract","next":null,"parent":"s-","inputs":{"NUM1":[3,"s#",[4,0]],"NUM2":[3,"a2Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s#":{"opcode":"operator_subtract","next":null,"parent":"s/","inputs":{"NUM1":[3,":v",[4,0]],"NUM2":[3,"/.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s!":{"opcode":"operator_add","next":null,"parent":":w","inputs":{"NUM1":[3,"a2R",[4,0]],"NUM2":[3,"/-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2R":{"opcode":"motion_xposition","next":null,"parent":"s!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2t":{"opcode":"argument_reporter_string_number","next":null,"parent":"/-","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"s6":{"opcode":"operator_add","next":null,"parent":"/:","inputs":{"NUM1":[3,"/(",[4,0]],"NUM2":[3,"a2S",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2r":{"opcode":"motion_xposition","next":null,"parent":"/(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2S":{"opcode":"argument_reporter_string_number","next":null,"parent":"s6","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"a2Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"s/","inputs":{},"fields":{"VALUE":["height",null]},"shadow":false,"topLevel":false},"a2P":{"opcode":"motion_changexby","next":null,"parent":"s-","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a2s":{"opcode":"event_whenbroadcastreceived","next":"/)","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["fade_out","~aYLGw3tAmLz}I]nV`xz"]},"shadow":false,"topLevel":true,"x":698,"y":10},"a2A":{"opcode":"event_whenbroadcastreceived","next":"/~","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["stop_scripts","!J7PA/A8Vo=COeNoxT48"]},"shadow":false,"topLevel":true,"x":396,"y":12},"a2B":{"opcode":"control_stop","next":null,"parent":"/~","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a2v":{"opcode":"event_whenbroadcastreceived","next":"/=","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":340,"y":267},"a2w":{"opcode":"control_stop","next":null,"parent":"/?","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a2y":{"opcode":"event_whenbroadcastreceived","next":"/_","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":96,"y":45},"a2z":{"opcode":"sensing_timer","next":null,"parent":"/}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2C":{"opcode":"procedures_prototype","next":null,"parent":":e","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get stage size","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"G@":{"opcode":"looks_switchcostumeto","next":":f","parent":":d","inputs":{"COSTUME":[1,"a2T"]},"fields":{},"shadow":false,"topLevel":false},"a2T":{"opcode":"looks_costume","next":null,"parent":"G@","inputs":{},"fields":{"COSTUME":["2x2 svg",null]},"shadow":true,"topLevel":false},"l]":{"opcode":"control_repeat_until","next":"G?","parent":":f","inputs":{"CONDITION":[2,":g"],"SUBSTACK":[2,"a2U"]},"fields":{},"shadow":false,"topLevel":false},"a2D":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":":g","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_edge_",null]},"shadow":true,"topLevel":false},"a2U":{"opcode":"motion_changexby","next":null,"parent":"l]","inputs":{"DX":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"G?":{"opcode":"data_setvariableto","next":"/;","parent":"l]","inputs":{"VALUE":[3,":n",[10,""]]},"fields":{"VARIABLE":["stage width","i!Gu6~8n7Kk|ypDR{}Pb"]},"shadow":false,"topLevel":false},"a2F":{"opcode":"motion_xposition","next":null,"parent":":o","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2u":{"opcode":"looks_costume","next":null,"parent":"/;","inputs":{},"fields":{"COSTUME":["costume1",null]},"shadow":true,"topLevel":false},"a2N":{"opcode":"operator_divide","next":null,"parent":"G[","inputs":{"NUM1":[3,[12,"stage width","i!Gu6~8n7Kk|ypDR{}Pb"],[4,0]],"NUM2":[1,[4,"-2"]]},"fields":{},"shadow":false,"topLevel":false},"s8":{"opcode":"operator_subtract","next":null,"parent":"s.","inputs":{"NUM1":[3,"/+",[4,0]],"NUM2":[3,":j",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s9":{"opcode":"operator_add","next":null,"parent":"/,","inputs":{"NUM1":[3,"a2V",[4,0]],"NUM2":[3,"/^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2V":{"opcode":"motion_xposition","next":null,"parent":"s9","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2x":{"opcode":"argument_reporter_string_number","next":null,"parent":"/^","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"s*":{"opcode":"operator_add","next":null,"parent":":h","inputs":{"NUM1":[3,":p",[4,0]],"NUM2":[3,"a2W",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a2G":{"opcode":"motion_xposition","next":null,"parent":":p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a2W":{"opcode":"argument_reporter_string_number","next":null,"parent":"s*","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"s7":{"opcode":"motion_goto","next":":r","parent":"/*","inputs":{"TO":[1,"a2X"]},"fields":{},"shadow":false,"topLevel":false},"a2X":{"opcode":"motion_goto_menu","next":null,"parent":"s7","inputs":{},"fields":{"TO":["Blank",null]},"shadow":true,"topLevel":false},"s+":{"opcode":"control_repeat","next":":k","parent":":s","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"a2Y"]},"fields":{},"shadow":false,"topLevel":false},"a2Y":{"opcode":"looks_changeeffectby","next":null,"parent":"s+","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a2E":{"opcode":"looks_backdrops","next":null,"parent":":k","inputs":{},"fields":{"BACKDROP":["Black",null]},"shadow":true,"topLevel":false}},"comments":{},"currentCostume":1,"costumes":[{"name":"2x2 svg","bitmapResolution":1,"dataFormat":"svg","assetId":"4b7a854341abd530a6780bfb6a68627c","md5ext":"4b7a854341abd530a6780bfb6a68627c.svg","rotationCenterX":1,"rotationCenterY":1},{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"de237036015aadc4cec7c3902cc7ea1f","md5ext":"de237036015aadc4cec7c3902cc7ea1f.svg","rotationCenterX":246.5,"rotationCenterY":190.5}],"sounds":[],"volume":100,"layerOrder":3,"visible":false,"x":240,"y":-169.178336909,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite1","variables":{"lo_vMT]e;W^6J}L{.;?|":["Velocity",0],"_FiygW_%~W7KsK!n$5T{":["S",0],"M1MRH6V)bg-6jD{ugH=J":["Input",0],"|vEUSf.D@`%N,D.^3/|b":["Ahello",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"a2Z":{"opcode":"event_whenbroadcastreceived","next":"l^","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]},"shadow":false,"topLevel":true,"x":42,"y":57},"l^":{"opcode":"control_if_else","next":null,"parent":"a2Z","inputs":{"CONDITION":[2,"G]"],"SUBSTACK":[2,":x"],"SUBSTACK2":[2,":y"]},"fields":{},"shadow":false,"topLevel":false},"G]":{"opcode":"operator_or","next":null,"parent":"l^","inputs":{"OPERAND1":[2,"a20"],"OPERAND2":[2,"a21"]},"fields":{},"shadow":false,"topLevel":false},"a20":{"opcode":"operator_equals","next":null,"parent":"G]","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a21":{"opcode":"operator_equals","next":null,"parent":"G]","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},":x":{"opcode":"data_setvariableto","next":"G^","parent":"l^","inputs":{"VALUE":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"G^":{"opcode":"sound_play","next":null,"parent":":x","inputs":{"SOUND_MENU":[3,":z","a22"]},"fields":{},"shadow":false,"topLevel":false},":z":{"opcode":"operator_add","next":null,"parent":"G^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":A":{"opcode":"operator_multiply","next":null,"parent":":z","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a23",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a23":{"opcode":"data_itemoflist","next":null,"parent":":A","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a22":{"opcode":"sound_sounds_menu","next":null,"parent":"G^","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":y":{"opcode":"data_setvariableto","next":"l_","parent":"l^","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"l_":{"opcode":"control_if","next":"l`","parent":":y","inputs":{"CONDITION":[2,"a24"],"SUBSTACK":[2,"l{"]},"fields":{},"shadow":false,"topLevel":false},"a24":{"opcode":"operator_equals","next":null,"parent":"l_","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"l{":{"opcode":"sound_play","next":"a25","parent":"l_","inputs":{"SOUND_MENU":[3,":B","a26"]},"fields":{},"shadow":false,"topLevel":false},":B":{"opcode":"operator_add","next":null,"parent":"l{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":C":{"opcode":"operator_multiply","next":null,"parent":":B","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a27",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a27":{"opcode":"data_itemoflist","next":null,"parent":":C","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a26":{"opcode":"sound_sounds_menu","next":null,"parent":"l{","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"a25":{"opcode":"event_broadcast","next":null,"parent":"l{","inputs":{"BROADCAST_INPUT":[1,[11,"get_theme","xB|em[!gg`ddhH3H,iB6"]]},"fields":{},"shadow":false,"topLevel":false},"l`":{"opcode":"control_if","next":"l|","parent":"l_","inputs":{"CONDITION":[2,"a28"],"SUBSTACK":[2,"l}"]},"fields":{},"shadow":false,"topLevel":false},"a28":{"opcode":"operator_equals","next":null,"parent":"l`","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"l}":{"opcode":"sound_play","next":"a29","parent":"l`","inputs":{"SOUND_MENU":[3,":D","a2!"]},"fields":{},"shadow":false,"topLevel":false},":D":{"opcode":"operator_add","next":null,"parent":"l}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":E":{"opcode":"operator_multiply","next":null,"parent":":D","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2#":{"opcode":"data_itemoflist","next":null,"parent":":E","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2!":{"opcode":"sound_sounds_menu","next":null,"parent":"l}","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"a29":{"opcode":"event_broadcast","next":null,"parent":"l}","inputs":{"BROADCAST_INPUT":[1,[11,"get_controls","g91@,@Kt00yu7FuRXO~I"]]},"fields":{},"shadow":false,"topLevel":false},"l|":{"opcode":"control_if","next":"l~","parent":"l`","inputs":{"CONDITION":[2,"a2%"],"SUBSTACK":[2,"ma"]},"fields":{},"shadow":false,"topLevel":false},"a2%":{"opcode":"operator_equals","next":null,"parent":"l|","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"ma":{"opcode":"sound_play","next":"a2(","parent":"l|","inputs":{"SOUND_MENU":[3,":F","a2)"]},"fields":{},"shadow":false,"topLevel":false},":F":{"opcode":"operator_add","next":null,"parent":"ma","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":G",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":G":{"opcode":"operator_multiply","next":null,"parent":":F","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2*":{"opcode":"data_itemoflist","next":null,"parent":":G","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2)":{"opcode":"sound_sounds_menu","next":null,"parent":"ma","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"a2(":{"opcode":"event_broadcast","next":null,"parent":"ma","inputs":{"BROADCAST_INPUT":[1,[11,"get_rom","oauq{1.?KIC%2JlgJq^:"]]},"fields":{},"shadow":false,"topLevel":false},"l~":{"opcode":"control_if","next":"mb","parent":"l|","inputs":{"CONDITION":[2,"a2+"],"SUBSTACK":[2,":H"]},"fields":{},"shadow":false,"topLevel":false},"a2+":{"opcode":"operator_equals","next":null,"parent":"l~","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},":H":{"opcode":"event_broadcast","next":"mc","parent":"l~","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mc":{"opcode":"sound_play","next":":I","parent":":H","inputs":{"SOUND_MENU":[3,":J","a2,"]},"fields":{},"shadow":false,"topLevel":false},":J":{"opcode":"operator_add","next":null,"parent":"mc","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":K",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":K":{"opcode":"operator_multiply","next":null,"parent":":J","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2-":{"opcode":"data_itemoflist","next":null,"parent":":K","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2,":{"opcode":"sound_sounds_menu","next":null,"parent":"mc","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":I":{"opcode":"event_broadcastandwait","next":"G_","parent":"mc","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G_":{"opcode":"looks_switchbackdropto","next":"a2.","parent":":I","inputs":{"BACKDROP":[1,"a2/"]},"fields":{},"shadow":false,"topLevel":false},"a2/":{"opcode":"looks_backdrops","next":null,"parent":"G_","inputs":{},"fields":{"BACKDROP":["Chip-8",null]},"shadow":true,"topLevel":false},"a2.":{"opcode":"event_broadcast","next":null,"parent":"G_","inputs":{"BROADCAST_INPUT":[1,[11,"Chip-8","onPsFYdb^;g,DoWfegZ6"]]},"fields":{},"shadow":false,"topLevel":false},"mb":{"opcode":"control_if","next":"md","parent":"l~","inputs":{"CONDITION":[2,"a2:"],"SUBSTACK":[2,":L"]},"fields":{},"shadow":false,"topLevel":false},"a2:":{"opcode":"operator_equals","next":null,"parent":"mb","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},":L":{"opcode":"event_broadcast","next":"me","parent":"mb","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"me":{"opcode":"sound_play","next":":M","parent":":L","inputs":{"SOUND_MENU":[3,":N","a2;"]},"fields":{},"shadow":false,"topLevel":false},":N":{"opcode":"operator_add","next":null,"parent":"me","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":O",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":O":{"opcode":"operator_multiply","next":null,"parent":":N","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2=":{"opcode":"data_itemoflist","next":null,"parent":":O","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2;":{"opcode":"sound_sounds_menu","next":null,"parent":"me","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":M":{"opcode":"event_broadcastandwait","next":"G`","parent":"me","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G`":{"opcode":"looks_switchbackdropto","next":"a2?","parent":":M","inputs":{"BACKDROP":[1,"a2@"]},"fields":{},"shadow":false,"topLevel":false},"a2@":{"opcode":"looks_backdrops","next":null,"parent":"G`","inputs":{},"fields":{"BACKDROP":["Game Boy",null]},"shadow":true,"topLevel":false},"a2?":{"opcode":"event_broadcast","next":null,"parent":"G`","inputs":{"BROADCAST_INPUT":[1,[11,"emulate!!","q@nrUic%_jFs,BP#Pz@]"]]},"fields":{},"shadow":false,"topLevel":false},"md":{"opcode":"control_if","next":"mf","parent":"mb","inputs":{"CONDITION":[2,"a2["],"SUBSTACK":[2,":P"]},"fields":{},"shadow":false,"topLevel":false},"a2[":{"opcode":"operator_equals","next":null,"parent":"md","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},":P":{"opcode":"event_broadcast","next":"mg","parent":"md","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mg":{"opcode":"sound_play","next":":Q","parent":":P","inputs":{"SOUND_MENU":[3,":R","a2]"]},"fields":{},"shadow":false,"topLevel":false},":R":{"opcode":"operator_add","next":null,"parent":"mg","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":S":{"opcode":"operator_multiply","next":null,"parent":":R","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2^":{"opcode":"data_itemoflist","next":null,"parent":":S","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2]":{"opcode":"sound_sounds_menu","next":null,"parent":"mg","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":Q":{"opcode":"event_broadcastandwait","next":"G{","parent":"mg","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G{":{"opcode":"looks_switchbackdropto","next":"a2_","parent":":Q","inputs":{"BACKDROP":[1,"a2`"]},"fields":{},"shadow":false,"topLevel":false},"a2`":{"opcode":"looks_backdrops","next":null,"parent":"G{","inputs":{},"fields":{"BACKDROP":["Black",null]},"shadow":true,"topLevel":false},"a2_":{"opcode":"event_broadcast","next":null,"parent":"G{","inputs":{"BROADCAST_INPUT":[1,[11,"Game Boy Advance","=S|@YQlTW;?zdH4GQx;V"]]},"fields":{},"shadow":false,"topLevel":false},"mf":{"opcode":"control_if","next":"mh","parent":"md","inputs":{"CONDITION":[2,"a2{"],"SUBSTACK":[2,":T"]},"fields":{},"shadow":false,"topLevel":false},"a2{":{"opcode":"operator_equals","next":null,"parent":"mf","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},":T":{"opcode":"event_broadcast","next":"mi","parent":"mf","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mi":{"opcode":"sound_play","next":":U","parent":":T","inputs":{"SOUND_MENU":[3,":V","a2|"]},"fields":{},"shadow":false,"topLevel":false},":V":{"opcode":"operator_add","next":null,"parent":"mi","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":W",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":W":{"opcode":"operator_multiply","next":null,"parent":":V","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a2}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a2}":{"opcode":"data_itemoflist","next":null,"parent":":W","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a2|":{"opcode":"sound_sounds_menu","next":null,"parent":"mi","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":U":{"opcode":"event_broadcastandwait","next":"G|","parent":"mi","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G|":{"opcode":"looks_switchbackdropto","next":"a2~","parent":":U","inputs":{"BACKDROP":[1,"a3a"]},"fields":{},"shadow":false,"topLevel":false},"a3a":{"opcode":"looks_backdrops","next":null,"parent":"G|","inputs":{},"fields":{"BACKDROP":["screen",null]},"shadow":true,"topLevel":false},"a2~":{"opcode":"event_broadcast","next":null,"parent":"G|","inputs":{"BROADCAST_INPUT":[1,[11,"start game","gofV]+|49LxJ]7Ibhwn8"]]},"fields":{},"shadow":false,"topLevel":false},"mh":{"opcode":"control_if","next":"mj","parent":"mf","inputs":{"CONDITION":[2,"a3b"],"SUBSTACK":[2,":X"]},"fields":{},"shadow":false,"topLevel":false},"a3b":{"opcode":"operator_equals","next":null,"parent":"mh","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1200"]]},"fields":{},"shadow":false,"topLevel":false},":X":{"opcode":"event_broadcast","next":"mk","parent":"mh","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mk":{"opcode":"sound_play","next":":Y","parent":":X","inputs":{"SOUND_MENU":[3,":Z","a3c"]},"fields":{},"shadow":false,"topLevel":false},":Z":{"opcode":"operator_add","next":null,"parent":"mk","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":0":{"opcode":"operator_multiply","next":null,"parent":":Z","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a3d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3d":{"opcode":"data_itemoflist","next":null,"parent":":0","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3c":{"opcode":"sound_sounds_menu","next":null,"parent":"mk","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":Y":{"opcode":"event_broadcastandwait","next":"G}","parent":"mk","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G}":{"opcode":"looks_switchbackdropto","next":":1","parent":":Y","inputs":{"BACKDROP":[1,"a3e"]},"fields":{},"shadow":false,"topLevel":false},"a3e":{"opcode":"looks_backdrops","next":null,"parent":"G}","inputs":{},"fields":{"BACKDROP":["NES",null]},"shadow":true,"topLevel":false},":1":{"opcode":"data_setvariableto","next":":2","parent":"G}","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},":2":{"opcode":"event_broadcastandwait","next":"a3f","parent":":1","inputs":{"BROADCAST_INPUT":[1,[11,"init","/]Pw*,JgP~%ctRqLaCr]"]]},"fields":{},"shadow":false,"topLevel":false},"a3f":{"opcode":"event_broadcast","next":null,"parent":":2","inputs":{"BROADCAST_INPUT":[1,[11,"unpause","so.q}ABBns#?n!myeYQ("]]},"fields":{},"shadow":false,"topLevel":false},"mj":{"opcode":"control_if","next":"ml","parent":"mh","inputs":{"CONDITION":[2,"a3g"],"SUBSTACK":[2,":3"]},"fields":{},"shadow":false,"topLevel":false},"a3g":{"opcode":"operator_equals","next":null,"parent":"mj","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1400"]]},"fields":{},"shadow":false,"topLevel":false},":3":{"opcode":"event_broadcast","next":"mm","parent":"mj","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mm":{"opcode":"sound_play","next":":4","parent":":3","inputs":{"SOUND_MENU":[3,":5","a3h"]},"fields":{},"shadow":false,"topLevel":false},":5":{"opcode":"operator_add","next":null,"parent":"mm","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":6",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":6":{"opcode":"operator_multiply","next":null,"parent":":5","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a3i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3i":{"opcode":"data_itemoflist","next":null,"parent":":6","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3h":{"opcode":"sound_sounds_menu","next":null,"parent":"mm","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":4":{"opcode":"event_broadcastandwait","next":"G~","parent":"mm","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"G~":{"opcode":"looks_switchbackdropto","next":"a3j","parent":":4","inputs":{"BACKDROP":[1,"a3k"]},"fields":{},"shadow":false,"topLevel":false},"a3k":{"opcode":"looks_backdrops","next":null,"parent":"G~","inputs":{},"fields":{"BACKDROP":["BytePusher",null]},"shadow":true,"topLevel":false},"a3j":{"opcode":"event_broadcast","next":null,"parent":"G~","inputs":{"BROADCAST_INPUT":[1,[11,"BytePusher",".+sr=pJUQmu{0)%LLjC}"]]},"fields":{},"shadow":false,"topLevel":false},"ml":{"opcode":"control_if","next":"Ha","parent":"mj","inputs":{"CONDITION":[2,"a3l"],"SUBSTACK":[2,":7"]},"fields":{},"shadow":false,"topLevel":false},"a3l":{"opcode":"operator_equals","next":null,"parent":"ml","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1600"]]},"fields":{},"shadow":false,"topLevel":false},":7":{"opcode":"event_broadcast","next":"mn","parent":"ml","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mn":{"opcode":"sound_play","next":":8","parent":":7","inputs":{"SOUND_MENU":[3,":9","a3m"]},"fields":{},"shadow":false,"topLevel":false},":9":{"opcode":"operator_add","next":null,"parent":"mn","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":!":{"opcode":"operator_multiply","next":null,"parent":":9","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a3n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3n":{"opcode":"data_itemoflist","next":null,"parent":":!","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3m":{"opcode":"sound_sounds_menu","next":null,"parent":"mn","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":8":{"opcode":"event_broadcastandwait","next":"Hb","parent":"mn","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"Hb":{"opcode":"looks_switchbackdropto","next":"a3o","parent":":8","inputs":{"BACKDROP":[1,"a3p"]},"fields":{},"shadow":false,"topLevel":false},"a3p":{"opcode":"looks_backdrops","next":null,"parent":"Hb","inputs":{},"fields":{"BACKDROP":["HelloWorld",null]},"shadow":true,"topLevel":false},"a3o":{"opcode":"event_broadcast","next":null,"parent":"Hb","inputs":{"BROADCAST_INPUT":[1,[11,"HelloInter","UJX@vI^YiH#tJAcG0`PO"]]},"fields":{},"shadow":false,"topLevel":false},"Ha":{"opcode":"control_if","next":null,"parent":"ml","inputs":{"CONDITION":[2,"a3q"],"SUBSTACK":[2,":#"]},"fields":{},"shadow":false,"topLevel":false},"a3q":{"opcode":"operator_equals","next":null,"parent":"Ha","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1800"]]},"fields":{},"shadow":false,"topLevel":false},":#":{"opcode":"event_broadcast","next":"mo","parent":"Ha","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"mo":{"opcode":"sound_play","next":":%","parent":":#","inputs":{"SOUND_MENU":[3,":(","a3r"]},"fields":{},"shadow":false,"topLevel":false},":(":{"opcode":"operator_add","next":null,"parent":"mo","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,":)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":)":{"opcode":"operator_multiply","next":null,"parent":":(","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a3s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3s":{"opcode":"data_itemoflist","next":null,"parent":":)","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3r":{"opcode":"sound_sounds_menu","next":null,"parent":"mo","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},":%":{"opcode":"event_broadcastandwait","next":"Hc","parent":"mo","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"Hc":{"opcode":"looks_switchbackdropto","next":"a3t","parent":":%","inputs":{"BACKDROP":[1,"a3u"]},"fields":{},"shadow":false,"topLevel":false},"a3u":{"opcode":"looks_backdrops","next":null,"parent":"Hc","inputs":{},"fields":{"BACKDROP":["SI8080",null]},"shadow":true,"topLevel":false},"a3t":{"opcode":"event_broadcast","next":null,"parent":"Hc","inputs":{"BROADCAST_INPUT":[1,[11,"8080","5F;%8N/Qr^Di?+)(*eE."]]},"fields":{},"shadow":false,"topLevel":false},"a3v":{"opcode":"event_whenbroadcastreceived","next":"mp","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":48,"y":4504},"mp":{"opcode":"control_if","next":"a3w","parent":"a3v","inputs":{"CONDITION":[2,":*"],"SUBSTACK":[2,"a3x"]},"fields":{},"shadow":false,"topLevel":false},":*":{"opcode":"operator_not","next":null,"parent":"mp","inputs":{"OPERAND":[2,"a3y"]},"fields":{},"shadow":false,"topLevel":false},"a3y":{"opcode":"operator_equals","next":null,"parent":":*","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a3x":{"opcode":"control_stop","next":null,"parent":"mp","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a3w":{"opcode":"looks_hide","next":null,"parent":"mp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a3z":{"opcode":"event_whenbroadcastreceived","next":"mq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":48,"y":5360},"mq":{"opcode":"control_if","next":"a3A","parent":"a3z","inputs":{"CONDITION":[2,":+"],"SUBSTACK":[2,"a3B"]},"fields":{},"shadow":false,"topLevel":false},":+":{"opcode":"operator_not","next":null,"parent":"mq","inputs":{"OPERAND":[2,"a3C"]},"fields":{},"shadow":false,"topLevel":false},"a3C":{"opcode":"operator_equals","next":null,"parent":":+","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a3B":{"opcode":"control_stop","next":null,"parent":"mq","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a3A":{"opcode":"looks_hide","next":null,"parent":"mq","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a3D":{"opcode":"event_whenbroadcastreceived","next":"a3E","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":48,"y":5680},"a3E":{"opcode":"looks_hide","next":null,"parent":"a3D","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a3F":{"opcode":"event_whenbroadcastreceived","next":":,","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":495,"y":5308},":,":{"opcode":"looks_cleargraphiceffects","next":":-","parent":"a3F","inputs":{},"fields":{},"shadow":false,"topLevel":false},":-":{"opcode":"looks_seteffectto","next":":.","parent":":,","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},":.":{"opcode":"motion_gotoxy","next":"mr","parent":":-","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"30"]]},"fields":{},"shadow":false,"topLevel":false},"mr":{"opcode":"looks_switchcostumeto","next":":/","parent":":.","inputs":{"COSTUME":[3,"::","a3G"]},"fields":{},"shadow":false,"topLevel":false},"::":{"opcode":"operator_subtract","next":null,"parent":"mr","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a3H",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3H":{"opcode":"argument_reporter_boolean","next":null,"parent":"::","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"a3G":{"opcode":"looks_costume","next":null,"parent":"mr","inputs":{},"fields":{"COSTUME":["costume2",null]},"shadow":true,"topLevel":false},":/":{"opcode":"looks_setsizeto","next":":;","parent":"mr","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},":;":{"opcode":"motion_pointindirection","next":":=","parent":":/","inputs":{"DIRECTION":[1,[8,"90"]]},"fields":{},"shadow":false,"topLevel":false},":=":{"opcode":"looks_show","next":"Hd","parent":":;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Hd":{"opcode":"control_repeat","next":":?","parent":":=","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,":@"]},"fields":{},"shadow":false,"topLevel":false},":@":{"opcode":"motion_changeyby","next":"a3I","parent":"Hd","inputs":{"DY":[1,[4,"-3"]]},"fields":{},"shadow":false,"topLevel":false},"a3I":{"opcode":"looks_changeeffectby","next":null,"parent":":@","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},":?":{"opcode":"data_hidevariable","next":"He","parent":"Hd","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"He":{"opcode":"data_setvariableto","next":":[","parent":":?","inputs":{"VALUE":[3,":]",[10,""]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},":]":{"opcode":"operator_add","next":null,"parent":"He","inputs":{"NUM1":[1,[4,"130"]],"NUM2":[3,":^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":^":{"opcode":"operator_multiply","next":null,"parent":":]","inputs":{"NUM1":[3,"a3J",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a3J":{"opcode":"argument_reporter_boolean","next":null,"parent":":^","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},":[":{"opcode":"control_wait","next":":_","parent":"He","inputs":{"DURATION":[1,[5,"0.9"]]},"fields":{},"shadow":false,"topLevel":false},":_":{"opcode":"event_broadcast","next":"Hf","parent":":[","inputs":{"BROADCAST_INPUT":[1,[11,"logomove","DcmIuyN[t=e,sXx3*Ij3"]]},"fields":{},"shadow":false,"topLevel":false},"Hf":{"opcode":"looks_seteffectto","next":"Hg","parent":":_","inputs":{"VALUE":[3,":`",[4,"0"]]},"fields":{"EFFECT":["COLOR",null]},"shadow":false,"topLevel":false},":`":{"opcode":"operator_join","next":null,"parent":"Hf","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"Hh",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Hh":{"opcode":"operator_join","next":null,"parent":":`","inputs":{"STRING1":[3,"a3K",[10,""]],"STRING2":[3,"a3L",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a3K":{"opcode":"data_itemoflist","next":null,"parent":"Hh","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3L":{"opcode":"data_itemoflist","next":null,"parent":"Hh","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Hg":{"opcode":"control_repeat","next":null,"parent":"Hf","inputs":{"TIMES":[3,":{",[6,"0"]],"SUBSTACK":[2,":|"]},"fields":{},"shadow":false,"topLevel":false},":{":{"opcode":"operator_add","next":null,"parent":"Hg","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"a3M",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3M":{"opcode":"argument_reporter_boolean","next":null,"parent":":{","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},":|":{"opcode":"looks_nextcostume","next":"Hi","parent":"Hg","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Hi":{"opcode":"control_wait","next":"a3N","parent":":|","inputs":{"DURATION":[3,":}",[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},":}":{"opcode":"operator_divide","next":null,"parent":"Hi","inputs":{"NUM1":[3,":~",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},":~":{"opcode":"operator_add","next":null,"parent":":}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a3O",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3O":{"opcode":"argument_reporter_boolean","next":null,"parent":":~","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"a3N":{"opcode":"data_changevariableby","next":null,"parent":"Hi","inputs":{"VALUE":[1,[4,"-10"]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"a3P":{"opcode":"event_whenbroadcastreceived","next":";a","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":48,"y":6632},";a":{"opcode":"event_broadcast","next":"fI","parent":"a3P","inputs":{"BROADCAST_INPUT":[1,[11,"pause","a/*ydNVQOyIS;1P2=ed*"]]},"fields":{},"shadow":false,"topLevel":false},"fI":{"opcode":"control_if_else","next":";b","parent":";a","inputs":{"CONDITION":[2,";c"],"SUBSTACK":[2,"a3Q"],"SUBSTACK2":[2,"a3R"]},"fields":{},"shadow":false,"topLevel":false},";c":{"opcode":"operator_equals","next":null,"parent":"fI","inputs":{"OPERAND1":[3,"a3S",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3S":{"opcode":"data_itemoflist","next":null,"parent":";c","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3Q":{"opcode":"looks_hide","next":null,"parent":"fI","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a3R":{"opcode":"looks_show","next":null,"parent":"fI","inputs":{},"fields":{},"shadow":false,"topLevel":false},";b":{"opcode":"data_setvariableto","next":";d","parent":"fI","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"]},"shadow":false,"topLevel":false},";d":{"opcode":"control_wait","next":"Hj","parent":";b","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"Hj":{"opcode":"control_if","next":null,"parent":";d","inputs":{"CONDITION":[2,";e"],"SUBSTACK":[2,";f"]},"fields":{},"shadow":false,"topLevel":false},";e":{"opcode":"operator_equals","next":null,"parent":"Hj","inputs":{"OPERAND1":[3,"a3T",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3T":{"opcode":"data_itemoflist","next":null,"parent":";e","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},";f":{"opcode":"control_forever","next":null,"parent":"Hj","inputs":{"SUBSTACK":[2,"Hk"]},"fields":{},"shadow":false,"topLevel":false},"Hk":{"opcode":"data_setvariableto","next":";g","parent":";f","inputs":{"VALUE":[3,";h",[10,""]]},"fields":{"VARIABLE":["my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"]},"shadow":false,"topLevel":false},";h":{"opcode":"operator_mod","next":null,"parent":"Hk","inputs":{"NUM1":[3,"a3U",[4,"0"]],"NUM2":[1,[4,"725"]]},"fields":{},"shadow":false,"topLevel":false},"a3U":{"opcode":"operator_add","next":null,"parent":";h","inputs":{"NUM1":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},";g":{"opcode":"motion_changeyby","next":null,"parent":"Hk","inputs":{"DY":[3,"a3V",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3V":{"opcode":"operator_mathop","next":null,"parent":";g","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"a3W":{"opcode":"event_whenbroadcastreceived","next":"Hl","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["logomove","DcmIuyN[t=e,sXx3*Ij3"]},"shadow":false,"topLevel":true,"x":1047,"y":5969},"Hl":{"opcode":"control_repeat","next":";i","parent":"a3W","inputs":{"TIMES":[1,[6,"15"]],"SUBSTACK":[2,"a3X"]},"fields":{},"shadow":false,"topLevel":false},"a3X":{"opcode":"looks_changesizeby","next":null,"parent":"Hl","inputs":{"CHANGE":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},";i":{"opcode":"motion_glidesecstoxy","next":null,"parent":"Hl","inputs":{"SECS":[1,[4,"0.5"]],"X":[1,[4,"0"]],"Y":[3,";j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";j":{"opcode":"operator_add","next":null,"parent":";i","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,";k",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";k":{"opcode":"operator_multiply","next":null,"parent":";j","inputs":{"NUM1":[3,"a3Y",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a3Y":{"opcode":"data_itemoflist","next":null,"parent":";k","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a3Z":{"opcode":"event_whenflagclicked","next":"a30","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":947,"y":5474},"a30":{"opcode":"looks_hide","next":null,"parent":"a3Z","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":1,"costumes":[{"name":"costume9","bitmapResolution":1,"dataFormat":"svg","assetId":"458b7088c34f689ca3a69c38bf429bee","md5ext":"458b7088c34f689ca3a69c38bf429bee.svg","rotationCenterX":358.21245999999996,"rotationCenterY":76.64410499999987},{"name":"costume2","bitmapResolution":1,"dataFormat":"svg","assetId":"b4c7ce1d7fac61f4b0e62c2a98ce2c44","md5ext":"b4c7ce1d7fac61f4b0e62c2a98ce2c44.svg","rotationCenterX":306.991645,"rotationCenterY":44.999988520092415},{"name":"costume10","bitmapResolution":1,"dataFormat":"svg","assetId":"62d41f33653ee8ca458b20abad4032a0","md5ext":"62d41f33653ee8ca458b20abad4032a0.svg","rotationCenterX":239,"rotationCenterY":46.5},{"name":"costume3","bitmapResolution":1,"dataFormat":"svg","assetId":"d1ef886d01c9c25fd18d177baccd6847","md5ext":"d1ef886d01c9c25fd18d177baccd6847.svg","rotationCenterX":232.5,"rotationCenterY":43.5},{"name":"costume4","bitmapResolution":1,"dataFormat":"svg","assetId":"01e4afaad3a34937de9dda3349477da7","md5ext":"01e4afaad3a34937de9dda3349477da7.svg","rotationCenterX":219.5,"rotationCenterY":45},{"name":"costume5","bitmapResolution":1,"dataFormat":"svg","assetId":"0fa6b58470f0ac1cf8321dde0e9fa38e","md5ext":"0fa6b58470f0ac1cf8321dde0e9fa38e.svg","rotationCenterX":212.25,"rotationCenterY":53.00000000000003},{"name":"costume6","bitmapResolution":1,"dataFormat":"svg","assetId":"535d586aadbaa989862a9e10151fd9a9","md5ext":"535d586aadbaa989862a9e10151fd9a9.svg","rotationCenterX":211.87469170389932,"rotationCenterY":88.00000000000001},{"name":"costume7","bitmapResolution":1,"dataFormat":"svg","assetId":"8ff00eb7738536f369a63bfada00f6c2","md5ext":"8ff00eb7738536f369a63bfada00f6c2.svg","rotationCenterX":212.29207044667825,"rotationCenterY":58.99999999999997},{"name":"costume8","bitmapResolution":1,"dataFormat":"svg","assetId":"d6d5b83de01249f66539025f231fa08d","md5ext":"d6d5b83de01249f66539025f231fa08d.svg","rotationCenterX":213.78115372460857,"rotationCenterY":45},{"name":"costume11","bitmapResolution":1,"dataFormat":"svg","assetId":"0e88a01112b43aeb448be7ab45c0d979","md5ext":"0e88a01112b43aeb448be7ab45c0d979.svg","rotationCenterX":213.36074829101562,"rotationCenterY":42.375}],"sounds":[{"name":"423930__mudkip2016__correct","assetId":"2b8df150fec576ea0df648ffc581e51e","dataFormat":"wav","rate":48000,"sampleCount":30712,"md5ext":"2b8df150fec576ea0df648ffc581e51e.wav"},{"name":"select","assetId":"65eb4aaa919adcce058cc10a7ed6af29","dataFormat":"wav","rate":48000,"sampleCount":35108,"md5ext":"65eb4aaa919adcce058cc10a7ed6af29.wav"},{"name":"Theme WDS","assetId":"b81b7213b4eeb0a16dc1597935d57f93","dataFormat":"wav","rate":48000,"sampleCount":52739,"md5ext":"b81b7213b4eeb0a16dc1597935d57f93.wav"},{"name":"Select WDS","assetId":"efa54f1f5c9f95b7aa4ae66cf5b69d44","dataFormat":"wav","rate":48000,"sampleCount":53920,"md5ext":"efa54f1f5c9f95b7aa4ae66cf5b69d44.wav"}],"volume":100,"layerOrder":20,"visible":true,"x":0,"y":0,"size":99.63503270482312,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"ARM7(GBA)","variables":{"!+=!-h89#`7kW*J*OZL,":["scanX","0"],"~~o^1W~fbUek!X-D4822":["scanY",228],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",3],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",4],"KV8P%[L0$@Pl6*2;0j}2":["read.return",2147483907],"U1zxXM]/rMag|m|xckW9":["flags.met","0"],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",32],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",31],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",2],"|L9Pi}/65.4`qdjy|%j0":["program.done","1"],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{";l":{"opcode":"procedures_definition","next":";m","parent":null,"inputs":{"custom_block":[1,"fJ"]},"fields":{},"shadow":false,"topLevel":true,"x":2762,"y":752},"fJ":{"opcode":"procedures_prototype","next":null,"parent":";l","inputs":{"VY^w5rqboO#ZmR6iqSOr":[1,"a31"],"8l{Pwwsa*TxDPwM:x{|I":[1,"a32"],"Xo.]4*MzMR0sE^4xAmz;":[1,"a33"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"write %s %s %s","argumentids":"[\"VY^w5rqboO#ZmR6iqSOr\",\"8l{Pwwsa*TxDPwM:x{|I\",\"Xo.]4*MzMR0sE^4xAmz;\"]","argumentnames":"[\"addr\",\"value\",\"length\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a31":{"opcode":"argument_reporter_string_number","next":null,"parent":"fJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a32":{"opcode":"argument_reporter_string_number","next":null,"parent":"fJ","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"a33":{"opcode":"argument_reporter_string_number","next":null,"parent":"fJ","inputs":{},"fields":{"VALUE":["length",null]},"shadow":true,"topLevel":false},";m":{"opcode":"data_setvariableto","next":";n","parent":";l","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},";n":{"opcode":"data_setvariableto","next":"s:","parent":";m","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["storage.byte","uvc)zI]ik{H#R0UEcjSa"]},"shadow":false,"topLevel":false},"s:":{"opcode":"control_repeat","next":null,"parent":";n","inputs":{"TIMES":[3,"a34",[6,"0"]],"SUBSTACK":[2,"fK"]},"fields":{},"shadow":false,"topLevel":false},"a34":{"opcode":"argument_reporter_string_number","next":null,"parent":"s:","inputs":{},"fields":{"VALUE":["length",null]},"shadow":false,"topLevel":false},"fK":{"opcode":"procedures_call","next":"fL","parent":"s:","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a35",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[3,";o",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a35":{"opcode":"argument_reporter_string_number","next":null,"parent":"fK","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},";o":{"opcode":"operator_multiply","next":null,"parent":"fK","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,";p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";p":{"opcode":"operator_subtract","next":null,"parent":";o","inputs":{"NUM1":[3,";q",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";q":{"opcode":"operator_subtract","next":null,"parent":";p","inputs":{"NUM1":[3,"a36",[4,"0"]],"NUM2":[3,[12,"storage.byte","uvc)zI]ik{H#R0UEcjSa"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a36":{"opcode":"argument_reporter_string_number","next":null,"parent":";q","inputs":{},"fields":{"VALUE":["length",null]},"shadow":false,"topLevel":false},"fL":{"opcode":"procedures_call","next":"a37","parent":"fK","inputs":{"J)!DovUq`/Os=+1%FQGk":[3,";r",[10,""]],"t73qCfdAE}yy*xM2-H5X":[3,"a38",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"single_write %s %s","argumentids":"[\"J)!DovUq`/Os=+1%FQGk\",\"t73qCfdAE}yy*xM2-H5X\"]","warp":"true"}},";r":{"opcode":"operator_add","next":null,"parent":"fL","inputs":{"NUM1":[3,"a39",[4,"0"]],"NUM2":[3,[12,"storage.byte","uvc)zI]ik{H#R0UEcjSa"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a39":{"opcode":"argument_reporter_string_number","next":null,"parent":";r","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a38":{"opcode":"operator_mod","next":null,"parent":"fL","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a37":{"opcode":"data_changevariableby","next":null,"parent":"fL","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["storage.byte","uvc)zI]ik{H#R0UEcjSa"]},"shadow":false,"topLevel":false},";s":{"opcode":"procedures_definition","next":";t","parent":null,"inputs":{"custom_block":[1,"a3!"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":2360},"a3!":{"opcode":"procedures_prototype","next":null,"parent":";s","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},";t":{"opcode":"data_setvariableto","next":";u","parent":";s","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["scanX","!+=!-h89#`7kW*J*OZL,"]},"shadow":false,"topLevel":false},";u":{"opcode":"data_setvariableto","next":";v","parent":";t","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["scanY","~~o^1W~fbUek!X-D4822"]},"shadow":false,"topLevel":false},";v":{"opcode":"data_setvariableto","next":"s;","parent":";u","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cycles","!+5p_#N7^W]PZ+A=m=oI"]},"shadow":false,"topLevel":false},"s;":{"opcode":"control_repeat_until","next":null,"parent":";v","inputs":{"CONDITION":[2,"a3#"],"SUBSTACK":[2,";w"]},"fields":{},"shadow":false,"topLevel":false},"a3#":{"opcode":"operator_equals","next":null,"parent":"s;","inputs":{"OPERAND1":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[10,""]],"OPERAND2":[1,[10,"228"]]},"fields":{},"shadow":false,"topLevel":false},";w":{"opcode":"procedures_call","next":"s=","parent":"s;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"step","argumentids":"[]","warp":"true"}},"s=":{"opcode":"data_setvariableto","next":"s?","parent":";w","inputs":{"VALUE":[3,";x",[10,""]]},"fields":{"VARIABLE":["tile_mode","Dn#8]rz*orPK,X0=;*$."]},"shadow":false,"topLevel":false},";x":{"opcode":"operator_mod","next":null,"parent":"s=","inputs":{"NUM1":[3,"a3%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a3%":{"opcode":"data_itemoflist","next":null,"parent":";x","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},"s?":{"opcode":"data_setvariableto","next":";y","parent":"s=","inputs":{"VALUE":[3,";z",[10,""]]},"fields":{"VARIABLE":["bg_mode","e7z.M3UfDT+/9?B)I?%$"]},"shadow":false,"topLevel":false},";z":{"opcode":"operator_round","next":null,"parent":"s?","inputs":{"NUM":[3,";A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";A":{"opcode":"operator_divide","next":null,"parent":";z","inputs":{"NUM1":[3,";B",[4,"0"]],"NUM2":[1,[4,"0.301029996"]]},"fields":{},"shadow":false,"topLevel":false},";B":{"opcode":"operator_mathop","next":null,"parent":";A","inputs":{"NUM":[3,"a3(",[4,"0"]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a3(":{"opcode":"data_itemoflist","next":null,"parent":";B","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},";y":{"opcode":"data_changevariableby","next":"s@","parent":"s?","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["cycles","!+5p_#N7^W]PZ+A=m=oI"]},"shadow":false,"topLevel":false},"s@":{"opcode":"control_if","next":null,"parent":";y","inputs":{"CONDITION":[2,"a3)"],"SUBSTACK":[2,";C"]},"fields":{},"shadow":false,"topLevel":false},"a3)":{"opcode":"operator_gt","next":null,"parent":"s@","inputs":{"OPERAND1":[3,[12,"cycles","!+5p_#N7^W]PZ+A=m=oI"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},";C":{"opcode":"data_changevariableby","next":"ak","parent":"s@","inputs":{"VALUE":[1,[4,"-4"]]},"fields":{"VARIABLE":["cycles","!+5p_#N7^W]PZ+A=m=oI"]},"shadow":false,"topLevel":false},"ak":{"opcode":"control_if_else","next":";D","parent":";C","inputs":{"CONDITION":[2,"a3*"],"SUBSTACK":[2,"s["],"SUBSTACK2":[2,"s]"]},"fields":{},"shadow":false,"topLevel":false},"a3*":{"opcode":"operator_lt","next":null,"parent":"ak","inputs":{"OPERAND1":[3,[12,"tile_mode","Dn#8]rz*orPK,X0=;*$."],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"s[":{"opcode":"control_if_else","next":null,"parent":"ak","inputs":{"CONDITION":[2,"a3+"],"SUBSTACK2":[2,"s^"]},"fields":{},"shadow":false,"topLevel":false},"a3+":{"opcode":"operator_lt","next":null,"parent":"s[","inputs":{"OPERAND1":[3,[12,"tile_mode","Dn#8]rz*orPK,X0=;*$."],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"s^":{"opcode":"control_if_else","next":null,"parent":"s[","inputs":{"CONDITION":[2,"a3,"],"SUBSTACK2":[2,"s_"]},"fields":{},"shadow":false,"topLevel":false},"a3,":{"opcode":"operator_lt","next":null,"parent":"s^","inputs":{"OPERAND1":[3,[12,"tile_mode","Dn#8]rz*orPK,X0=;*$."],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"s_":{"opcode":"control_if","next":null,"parent":"s^","inputs":{"CONDITION":[2,"s`"],"SUBSTACK":[2,"s{"]},"fields":{},"shadow":false,"topLevel":false},"s`":{"opcode":"operator_and","next":null,"parent":"s_","inputs":{"OPERAND1":[2,"a3-"],"OPERAND2":[2,"a3."]},"fields":{},"shadow":false,"topLevel":false},"a3-":{"opcode":"operator_lt","next":null,"parent":"s`","inputs":{"OPERAND1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"a3.":{"opcode":"operator_lt","next":null,"parent":"s`","inputs":{"OPERAND1":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"s{":{"opcode":"data_replaceitemoflist","next":null,"parent":"s_","inputs":{"INDEX":[3,";E",[7,"0"]],"ITEM":[3,"s|",[10,""]]},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},";E":{"opcode":"operator_add","next":null,"parent":"s{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";F",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";F":{"opcode":"operator_add","next":null,"parent":";E","inputs":{"NUM1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[4,"0"]],"NUM2":[3,"a3/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3/":{"opcode":"operator_multiply","next":null,"parent":";F","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s|":{"opcode":"operator_add","next":null,"parent":"s{","inputs":{"NUM1":[3,";G",[4,"0"]],"NUM2":[3,";H",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";G":{"opcode":"operator_multiply","next":null,"parent":"s|","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,";I",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";I":{"opcode":"data_itemoflist","next":null,"parent":";G","inputs":{"INDEX":[3,";J",[7,"0"]]},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},";J":{"opcode":"operator_add","next":null,"parent":";I","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";K",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";K":{"opcode":"operator_multiply","next":null,"parent":";J","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,";L",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";L":{"opcode":"operator_add","next":null,"parent":";K","inputs":{"NUM1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[4,"0"]],"NUM2":[3,"a3:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3:":{"opcode":"operator_multiply","next":null,"parent":";L","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";H":{"opcode":"data_itemoflist","next":null,"parent":"s|","inputs":{"INDEX":[3,";M",[7,"0"]]},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},";M":{"opcode":"operator_multiply","next":null,"parent":";H","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,";N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";N":{"opcode":"operator_add","next":null,"parent":";M","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";O",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";O":{"opcode":"operator_add","next":null,"parent":";N","inputs":{"NUM1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[4,"0"]],"NUM2":[3,"a3;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a3;":{"opcode":"operator_multiply","next":null,"parent":";O","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s]":{"opcode":"control_if_else","next":null,"parent":"ak","inputs":{"CONDITION":[2,"a3="],"SUBSTACK2":[2,"s}"]},"fields":{},"shadow":false,"topLevel":false},"a3=":{"opcode":"operator_lt","next":null,"parent":"s]","inputs":{"OPERAND1":[3,[12,"tile_mode","Dn#8]rz*orPK,X0=;*$."],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"s}":{"opcode":"control_if_else","next":null,"parent":"s]","inputs":{"CONDITION":[2,"a3?"],"SUBSTACK":[2,";P"]},"fields":{},"shadow":false,"topLevel":false},"a3?":{"opcode":"operator_lt","next":null,"parent":"s}","inputs":{"OPERAND1":[3,[12,"tile_mode","Dn#8]rz*orPK,X0=;*$."],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},";P":{"opcode":"control_if","next":null,"parent":"s}","inputs":{"CONDITION":[2,"s~"]},"fields":{},"shadow":false,"topLevel":false},"s~":{"opcode":"operator_and","next":null,"parent":";P","inputs":{"OPERAND1":[2,"a3@"],"OPERAND2":[2,"a3["]},"fields":{},"shadow":false,"topLevel":false},"a3@":{"opcode":"operator_lt","next":null,"parent":"s~","inputs":{"OPERAND1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"a3[":{"opcode":"operator_lt","next":null,"parent":"s~","inputs":{"OPERAND1":[3,[12,"scanY","~~o^1W~fbUek!X-D4822"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},";D":{"opcode":"data_changevariableby","next":"ta","parent":"ak","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["scanX","!+=!-h89#`7kW*J*OZL,"]},"shadow":false,"topLevel":false},"ta":{"opcode":"control_if","next":null,"parent":";D","inputs":{"CONDITION":[2,"a3]"],"SUBSTACK":[2,";Q"]},"fields":{},"shadow":false,"topLevel":false},"a3]":{"opcode":"operator_equals","next":null,"parent":"ta","inputs":{"OPERAND1":[3,[12,"scanX","!+=!-h89#`7kW*J*OZL,"],[10,""]],"OPERAND2":[1,[10,"309"]]},"fields":{},"shadow":false,"topLevel":false},";Q":{"opcode":"data_setvariableto","next":"a3^","parent":"ta","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["scanX","!+=!-h89#`7kW*J*OZL,"]},"shadow":false,"topLevel":false},"a3^":{"opcode":"data_changevariableby","next":null,"parent":";Q","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["scanY","~~o^1W~fbUek!X-D4822"]},"shadow":false,"topLevel":false},";R":{"opcode":"procedures_definition","next":";S","parent":null,"inputs":{"custom_block":[1,"a3_"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":17952},"a3_":{"opcode":"procedures_prototype","next":null,"parent":";R","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render_screen","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},";S":{"opcode":"data_setvariableto","next":";T","parent":";R","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["pixel","ADJlW=I)6p}6xuy9|I*R"]},"shadow":false,"topLevel":false},";T":{"opcode":"motion_sety","next":";U","parent":";S","inputs":{"Y":[1,[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},";U":{"opcode":"control_repeat","next":null,"parent":";T","inputs":{"TIMES":[1,[6,"160"]],"SUBSTACK":[2,";V"]},"fields":{},"shadow":false,"topLevel":false},";V":{"opcode":"motion_setx","next":";W","parent":";U","inputs":{"X":[1,[4,"-240"]]},"fields":{},"shadow":false,"topLevel":false},";W":{"opcode":"pen_penDown","next":"tb","parent":";V","inputs":{},"fields":{},"shadow":false,"topLevel":false},"tb":{"opcode":"control_repeat","next":";X","parent":";W","inputs":{"TIMES":[1,[6,"240"]],"SUBSTACK":[2,"tc"]},"fields":{},"shadow":false,"topLevel":false},"tc":{"opcode":"pen_setPenColorToColor","next":";Y","parent":"tb","inputs":{"COLOR":[3,"td",[9,"#f326b3"]]},"fields":{},"shadow":false,"topLevel":false},"td":{"opcode":"operator_add","next":null,"parent":"tc","inputs":{"NUM1":[3,";Z",[4,"0"]],"NUM2":[3,"te",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";Z":{"opcode":"operator_multiply","next":null,"parent":"td","inputs":{"NUM1":[1,[4,"524288"]],"NUM2":[3,";0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";0":{"opcode":"operator_mod","next":null,"parent":";Z","inputs":{"NUM1":[3,"a3`",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a3`":{"opcode":"data_itemoflist","next":null,"parent":";0","inputs":{"INDEX":[3,[12,"pixel","ADJlW=I)6p}6xuy9|I*R"],[7,"0"]]},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},"te":{"opcode":"operator_add","next":null,"parent":"td","inputs":{"NUM1":[3,";1",[4,"0"]],"NUM2":[3,";2",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";1":{"opcode":"operator_multiply","next":null,"parent":"te","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,";3",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";3":{"opcode":"operator_mod","next":null,"parent":";1","inputs":{"NUM1":[3,";4",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},";4":{"opcode":"operator_mathop","next":null,"parent":";3","inputs":{"NUM":[3,";5",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},";5":{"opcode":"operator_divide","next":null,"parent":";4","inputs":{"NUM1":[3,"a3{",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a3{":{"opcode":"data_itemoflist","next":null,"parent":";5","inputs":{"INDEX":[3,[12,"pixel","ADJlW=I)6p}6xuy9|I*R"],[7,"0"]]},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},";2":{"opcode":"operator_multiply","next":null,"parent":"te","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,";6",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";6":{"opcode":"operator_mod","next":null,"parent":";2","inputs":{"NUM1":[3,";7",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},";7":{"opcode":"operator_mathop","next":null,"parent":";6","inputs":{"NUM":[3,";8",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},";8":{"opcode":"operator_divide","next":null,"parent":";7","inputs":{"NUM1":[3,"a3|",[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a3|":{"opcode":"data_itemoflist","next":null,"parent":";8","inputs":{"INDEX":[3,[12,"pixel","ADJlW=I)6p}6xuy9|I*R"],[7,"0"]]},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},";Y":{"opcode":"data_changevariableby","next":"a3}","parent":"tc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["pixel","ADJlW=I)6p}6xuy9|I*R"]},"shadow":false,"topLevel":false},"a3}":{"opcode":"motion_changexby","next":null,"parent":";Y","inputs":{"DX":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},";X":{"opcode":"pen_penUp","next":"a3~","parent":"tb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a3~":{"opcode":"motion_changeyby","next":null,"parent":";X","inputs":{"DY":[1,[4,"-2"]]},"fields":{},"shadow":false,"topLevel":false},";9":{"opcode":"procedures_definition","next":";!","parent":null,"inputs":{"custom_block":[1,"a4a"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":608},"a4a":{"opcode":"procedures_prototype","next":null,"parent":";9","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"reset_mem","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},";!":{"opcode":"data_deletealloflist","next":";#","parent":";9","inputs":{},"fields":{"LIST":["CARTRAM","Wdv|s)sKi5w2g!ptBTWv"]},"shadow":false,"topLevel":false},";#":{"opcode":"data_deletealloflist","next":";%","parent":";!","inputs":{},"fields":{"LIST":["EWRAM","m2z%[*=9RCJJ%,jzp{^w"]},"shadow":false,"topLevel":false},";%":{"opcode":"data_deletealloflist","next":";(","parent":";#","inputs":{},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},";(":{"opcode":"data_deletealloflist","next":";)","parent":";%","inputs":{},"fields":{"LIST":["IWRAM","H{~g(O6*Cm~XzS0VV1;."]},"shadow":false,"topLevel":false},";)":{"opcode":"data_deletealloflist","next":";*","parent":";(","inputs":{},"fields":{"LIST":["OAM","c;0;9@3O4n4FloYvD_w?"]},"shadow":false,"topLevel":false},";*":{"opcode":"data_deletealloflist","next":";+","parent":";)","inputs":{},"fields":{"LIST":["PALRAM","-27BR8:6fV0T3v$8oN%("]},"shadow":false,"topLevel":false},";+":{"opcode":"data_deletealloflist","next":";,","parent":";*","inputs":{},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},";,":{"opcode":"data_deletealloflist","next":"fM","parent":";+","inputs":{},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},"fM":{"opcode":"control_repeat","next":"fN","parent":";,","inputs":{"TIMES":[3,"a4b",[6,"0"]],"SUBSTACK":[2,";-"]},"fields":{},"shadow":false,"topLevel":false},"a4b":{"opcode":"operator_join","next":null,"parent":"fM","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"400"]]},"fields":{},"shadow":false,"topLevel":false},";-":{"opcode":"data_addtolist","next":";.","parent":"fM","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},";.":{"opcode":"data_addtolist","next":"a4c","parent":";-","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["PALRAM","-27BR8:6fV0T3v$8oN%("]},"shadow":false,"topLevel":false},"a4c":{"opcode":"data_addtolist","next":null,"parent":";.","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["OAM","c;0;9@3O4n4FloYvD_w?"]},"shadow":false,"topLevel":false},"fN":{"opcode":"control_repeat","next":"fO","parent":"fM","inputs":{"TIMES":[3,"a4d",[6,"0"]],"SUBSTACK":[2,"a4e"]},"fields":{},"shadow":false,"topLevel":false},"a4d":{"opcode":"operator_join","next":null,"parent":"fN","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"4000"]]},"fields":{},"shadow":false,"topLevel":false},"a4e":{"opcode":"data_addtolist","next":null,"parent":"fN","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["EWRAM","m2z%[*=9RCJJ%,jzp{^w"]},"shadow":false,"topLevel":false},"fO":{"opcode":"control_repeat","next":"fP","parent":"fN","inputs":{"TIMES":[3,"a4f",[6,"0"]],"SUBSTACK":[2,"a4g"]},"fields":{},"shadow":false,"topLevel":false},"a4f":{"opcode":"operator_join","next":null,"parent":"fO","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"8000"]]},"fields":{},"shadow":false,"topLevel":false},"a4g":{"opcode":"data_addtolist","next":null,"parent":"fO","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["IWRAM","H{~g(O6*Cm~XzS0VV1;."]},"shadow":false,"topLevel":false},"fP":{"opcode":"control_repeat","next":"tf","parent":"fO","inputs":{"TIMES":[3,"a4h",[6,"0"]],"SUBSTACK":[2,"a4i"]},"fields":{},"shadow":false,"topLevel":false},"a4h":{"opcode":"operator_join","next":null,"parent":"fP","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"18000"]]},"fields":{},"shadow":false,"topLevel":false},"a4i":{"opcode":"data_addtolist","next":null,"parent":"fP","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},"tf":{"opcode":"control_repeat","next":null,"parent":"fP","inputs":{"TIMES":[3,"a4j",[6,"0"]],"SUBSTACK":[2,"a4k"]},"fields":{},"shadow":false,"topLevel":false},"a4j":{"opcode":"operator_multiply","next":null,"parent":"tf","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[1,[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},"a4k":{"opcode":"data_addtolist","next":null,"parent":"tf","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},";/":{"opcode":"procedures_definition","next":"tg","parent":null,"inputs":{"custom_block":[1,"a4l"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":12936},"a4l":{"opcode":"procedures_prototype","next":null,"parent":";/","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"step","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"tg":{"opcode":"data_replaceitemoflist","next":"fQ","parent":";/","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,";:",[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},";:":{"opcode":"operator_add","next":null,"parent":"tg","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"a4m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4m":{"opcode":"data_itemoflist","next":null,"parent":";:","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"fQ":{"opcode":"control_if","next":";;","parent":"tg","inputs":{"CONDITION":[2,"a4n"],"SUBSTACK":[2,"a4o"]},"fields":{},"shadow":false,"topLevel":false},"a4n":{"opcode":"operator_equals","next":null,"parent":"fQ","inputs":{"OPERAND1":[3,[12,"program.done","|L9Pi}/65.4`qdjy|%j0"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a4o":{"opcode":"control_stop","next":null,"parent":"fQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},";;":{"opcode":"data_setvariableto","next":"th","parent":"fQ","inputs":{"VALUE":[1,[10,"false"]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"th":{"opcode":"procedures_call","next":"al","parent":";;","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,";=",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},";=":{"opcode":"data_itemoflist","next":null,"parent":"th","inputs":{"INDEX":[3,";?",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},";?":{"opcode":"operator_subtract","next":null,"parent":";=","inputs":{"NUM1":[3,"a4p",[4,"0"]],"NUM2":[1,[4,"0x07fffffc"]]},"fields":{},"shadow":false,"topLevel":false},"a4p":{"opcode":"data_itemoflist","next":null,"parent":";?","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"al":{"opcode":"control_if_else","next":"ti","parent":"th","inputs":{"CONDITION":[2,"a4q"],"SUBSTACK":[2,"fR"],"SUBSTACK2":[2,"fS"]},"fields":{},"shadow":false,"topLevel":false},"a4q":{"opcode":"operator_gt","next":null,"parent":"al","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"fR":{"opcode":"control_if_else","next":null,"parent":"al","inputs":{"CONDITION":[2,"a4r"],"SUBSTACK":[2,"fT"],"SUBSTACK2":[2,"fU"]},"fields":{},"shadow":false,"topLevel":false},"a4r":{"opcode":"operator_gt","next":null,"parent":"fR","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"fT":{"opcode":"control_if_else","next":null,"parent":"fR","inputs":{"CONDITION":[2,"a4s"],"SUBSTACK":[2,"tj"],"SUBSTACK2":[2,"fV"]},"fields":{},"shadow":false,"topLevel":false},"a4s":{"opcode":"operator_gt","next":null,"parent":"fT","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"tj":{"opcode":"control_if_else","next":null,"parent":"fT","inputs":{"CONDITION":[2,"a4t"],"SUBSTACK2":[2,"a4u"]},"fields":{},"shadow":false,"topLevel":false},"a4t":{"opcode":"operator_gt","next":null,"parent":"tj","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a4u":{"opcode":"data_setvariableto","next":null,"parent":"tj","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"fV":{"opcode":"control_if_else","next":null,"parent":"fT","inputs":{"CONDITION":[2,"a4v"],"SUBSTACK":[2,";@"],"SUBSTACK2":[2,";["]},"fields":{},"shadow":false,"topLevel":false},"a4v":{"opcode":"operator_gt","next":null,"parent":"fV","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},";@":{"opcode":"data_setvariableto","next":null,"parent":"fV","inputs":{"VALUE":[3,";]",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},";]":{"opcode":"operator_add","next":null,"parent":";@","inputs":{"NUM1":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[4,"0"]],"NUM2":[3,";^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";^":{"opcode":"operator_not","next":null,"parent":";]","inputs":{"OPERAND":[2,"a4w"]},"fields":{},"shadow":false,"topLevel":false},"a4w":{"opcode":"operator_equals","next":null,"parent":";^","inputs":{"OPERAND1":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[10,""]],"OPERAND2":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},";[":{"opcode":"data_setvariableto","next":null,"parent":"fV","inputs":{"VALUE":[3,";_",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},";_":{"opcode":"operator_subtract","next":null,"parent":";[","inputs":{"NUM1":[3,"a4x",[4,"0"]],"NUM2":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4x":{"opcode":"operator_equals","next":null,"parent":";_","inputs":{"OPERAND1":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[10,""]],"OPERAND2":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"fU":{"opcode":"control_if_else","next":null,"parent":"fR","inputs":{"CONDITION":[2,"a4y"],"SUBSTACK":[2,"fW"],"SUBSTACK2":[2,"fX"]},"fields":{},"shadow":false,"topLevel":false},"a4y":{"opcode":"operator_gt","next":null,"parent":"fU","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"fW":{"opcode":"control_if_else","next":null,"parent":"fU","inputs":{"CONDITION":[2,"a4z"],"SUBSTACK":[2,";`"],"SUBSTACK2":[2,";{"]},"fields":{},"shadow":false,"topLevel":false},"a4z":{"opcode":"operator_gt","next":null,"parent":"fW","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},";`":{"opcode":"data_setvariableto","next":null,"parent":"fW","inputs":{"VALUE":[3,";|",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},";|":{"opcode":"operator_subtract","next":null,"parent":";`","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"a4A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4A":{"opcode":"operator_equals","next":null,"parent":";|","inputs":{"OPERAND1":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[10,""]],"OPERAND2":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},";{":{"opcode":"data_setvariableto","next":null,"parent":"fW","inputs":{"VALUE":[3,";}",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},";}":{"opcode":"operator_add","next":null,"parent":";{","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"a4B",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4B":{"opcode":"operator_equals","next":null,"parent":";}","inputs":{"OPERAND1":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[10,""]],"OPERAND2":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"fX":{"opcode":"control_if_else","next":null,"parent":"fU","inputs":{"CONDITION":[2,"a4C"],"SUBSTACK":[2,";~"],"SUBSTACK2":[2,"=a"]},"fields":{},"shadow":false,"topLevel":false},"a4C":{"opcode":"operator_gt","next":null,"parent":"fX","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},";~":{"opcode":"data_setvariableto","next":null,"parent":"fX","inputs":{"VALUE":[3,"a4D",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4D":{"opcode":"operator_subtract","next":null,"parent":";~","inputs":{"NUM1":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[4,"0"]],"NUM2":[3,[12,"flags.c","jHyV3Vm:Q@rIq$YA]IYG"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=a":{"opcode":"data_setvariableto","next":null,"parent":"fX","inputs":{"VALUE":[3,"a4E",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4E":{"opcode":"operator_subtract","next":null,"parent":"=a","inputs":{"NUM1":[3,[12,"flags.c","jHyV3Vm:Q@rIq$YA]IYG"],[4,"0"]],"NUM2":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fS":{"opcode":"control_if_else","next":null,"parent":"al","inputs":{"CONDITION":[2,"a4F"],"SUBSTACK":[2,"fY"],"SUBSTACK2":[2,"fZ"]},"fields":{},"shadow":false,"topLevel":false},"a4F":{"opcode":"operator_gt","next":null,"parent":"fS","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"fY":{"opcode":"control_if_else","next":null,"parent":"fS","inputs":{"CONDITION":[2,"a4G"],"SUBSTACK":[2,"f0"],"SUBSTACK2":[2,"f1"]},"fields":{},"shadow":false,"topLevel":false},"a4G":{"opcode":"operator_gt","next":null,"parent":"fY","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"f0":{"opcode":"control_if_else","next":null,"parent":"fY","inputs":{"CONDITION":[2,"a4H"],"SUBSTACK":[2,"=b"],"SUBSTACK2":[2,"a4I"]},"fields":{},"shadow":false,"topLevel":false},"a4H":{"opcode":"operator_gt","next":null,"parent":"f0","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"=b":{"opcode":"data_setvariableto","next":null,"parent":"f0","inputs":{"VALUE":[3,"a4J",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4J":{"opcode":"operator_subtract","next":null,"parent":"=b","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4I":{"opcode":"data_setvariableto","next":null,"parent":"f0","inputs":{"VALUE":[3,[12,"flags.v","7F=kKfGq93{+Pi_o%2}h"],[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"f1":{"opcode":"control_if_else","next":null,"parent":"fY","inputs":{"CONDITION":[2,"a4K"],"SUBSTACK":[2,"=c"],"SUBSTACK2":[2,"a4L"]},"fields":{},"shadow":false,"topLevel":false},"a4K":{"opcode":"operator_gt","next":null,"parent":"f1","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"=c":{"opcode":"data_setvariableto","next":null,"parent":"f1","inputs":{"VALUE":[3,"a4M",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4M":{"opcode":"operator_subtract","next":null,"parent":"=c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4L":{"opcode":"data_setvariableto","next":null,"parent":"f1","inputs":{"VALUE":[3,[12,"flags.n","3RS/JX,H|~mNq!j_oSzZ"],[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"fZ":{"opcode":"control_if_else","next":null,"parent":"fS","inputs":{"CONDITION":[2,"a4N"],"SUBSTACK":[2,"f2"],"SUBSTACK2":[2,"f3"]},"fields":{},"shadow":false,"topLevel":false},"a4N":{"opcode":"operator_gt","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"f2":{"opcode":"control_if_else","next":null,"parent":"fZ","inputs":{"CONDITION":[2,"a4O"],"SUBSTACK":[2,"=d"],"SUBSTACK2":[2,"a4P"]},"fields":{},"shadow":false,"topLevel":false},"a4O":{"opcode":"operator_gt","next":null,"parent":"f2","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"=d":{"opcode":"data_setvariableto","next":null,"parent":"f2","inputs":{"VALUE":[3,"a4Q",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4Q":{"opcode":"operator_subtract","next":null,"parent":"=d","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"flags.c","jHyV3Vm:Q@rIq$YA]IYG"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4P":{"opcode":"data_setvariableto","next":null,"parent":"f2","inputs":{"VALUE":[3,[12,"flags.c","jHyV3Vm:Q@rIq$YA]IYG"],[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"f3":{"opcode":"control_if_else","next":null,"parent":"fZ","inputs":{"CONDITION":[2,"a4R"],"SUBSTACK":[2,"=e"],"SUBSTACK2":[2,"a4S"]},"fields":{},"shadow":false,"topLevel":false},"a4R":{"opcode":"operator_gt","next":null,"parent":"f3","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=e":{"opcode":"data_setvariableto","next":null,"parent":"f3","inputs":{"VALUE":[3,"a4T",[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"a4T":{"opcode":"operator_subtract","next":null,"parent":"=e","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4S":{"opcode":"data_setvariableto","next":null,"parent":"f3","inputs":{"VALUE":[3,[12,"flags.z","wmU,n(01t/a%O{Fxi,s+"],[10,""]]},"fields":{"VARIABLE":["flags.met","U1zxXM]/rMag|m|xckW9"]},"shadow":false,"topLevel":false},"ti":{"opcode":"data_setvariableto","next":"f4","parent":"al","inputs":{"VALUE":[3,"tk",[10,""]]},"fields":{"VARIABLE":["op.opcode","T)7u5x4}GaF~%4i+:SF."]},"shadow":false,"topLevel":false},"tk":{"opcode":"operator_add","next":null,"parent":"ti","inputs":{"NUM1":[3,"tl",[4,"0"]],"NUM2":[3,"tm",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"tl":{"opcode":"operator_add","next":null,"parent":"tk","inputs":{"NUM1":[3,"=f",[4,"0"]],"NUM2":[3,"=g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=f":{"opcode":"operator_multiply","next":null,"parent":"tl","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,"=h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=h":{"opcode":"data_itemoflist","next":null,"parent":"=f","inputs":{"INDEX":[3,"=i",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"=i":{"opcode":"operator_subtract","next":null,"parent":"=h","inputs":{"NUM1":[3,"a4U",[4,"0"]],"NUM2":[1,[4,"0x07fffffc"]]},"fields":{},"shadow":false,"topLevel":false},"a4U":{"opcode":"data_itemoflist","next":null,"parent":"=i","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=g":{"opcode":"operator_multiply","next":null,"parent":"tl","inputs":{"NUM1":[1,[4,"65536"]],"NUM2":[3,"=j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=j":{"opcode":"data_itemoflist","next":null,"parent":"=g","inputs":{"INDEX":[3,"=k",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"=k":{"opcode":"operator_subtract","next":null,"parent":"=j","inputs":{"NUM1":[3,"a4V",[4,"0"]],"NUM2":[1,[4,"0x07fffffd"]]},"fields":{},"shadow":false,"topLevel":false},"a4V":{"opcode":"data_itemoflist","next":null,"parent":"=k","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"tm":{"opcode":"operator_add","next":null,"parent":"tk","inputs":{"NUM1":[3,"=l",[4,"0"]],"NUM2":[3,"=m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=l":{"opcode":"operator_multiply","next":null,"parent":"tm","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"=n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=n":{"opcode":"data_itemoflist","next":null,"parent":"=l","inputs":{"INDEX":[3,"=o",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"=o":{"opcode":"operator_subtract","next":null,"parent":"=n","inputs":{"NUM1":[3,"a4W",[4,"0"]],"NUM2":[1,[4,"0x07fffffe"]]},"fields":{},"shadow":false,"topLevel":false},"a4W":{"opcode":"data_itemoflist","next":null,"parent":"=o","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=m":{"opcode":"data_itemoflist","next":null,"parent":"tm","inputs":{"INDEX":[3,"=p",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"=p":{"opcode":"operator_subtract","next":null,"parent":"=m","inputs":{"NUM1":[3,"a4X",[4,"0"]],"NUM2":[1,[4,"0x07ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a4X":{"opcode":"data_itemoflist","next":null,"parent":"=p","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"f4":{"opcode":"control_if","next":"tn","parent":"ti","inputs":{"CONDITION":[2,"a4Y"],"SUBSTACK":[2,"=q"]},"fields":{},"shadow":false,"topLevel":false},"a4Y":{"opcode":"operator_equals","next":null,"parent":"f4","inputs":{"OPERAND1":[3,[12,"op.opcode","T)7u5x4}GaF~%4i+:SF."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=q":{"opcode":"data_setvariableto","next":"a4Z","parent":"f4","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["program.done","|L9Pi}/65.4`qdjy|%j0"]},"shadow":false,"topLevel":false},"a4Z":{"opcode":"control_stop","next":null,"parent":"=q","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"tn":{"opcode":"control_if","next":null,"parent":"f4","inputs":{"CONDITION":[2,"a40"],"SUBSTACK":[2,"a41"]},"fields":{},"shadow":false,"topLevel":false},"a40":{"opcode":"operator_gt","next":null,"parent":"tn","inputs":{"OPERAND1":[3,[12,"flags.met","U1zxXM]/rMag|m|xckW9"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a41":{"opcode":"procedures_call","next":null,"parent":"tn","inputs":{"W,Y33_aHBiJfERC:640;":[3,[12,"op.opcode","T)7u5x4}GaF~%4i+:SF."],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"W,Y33_aHBiJfERC:640;\"]","warp":"true"}},"=r":{"opcode":"procedures_definition","next":"=s","parent":null,"inputs":{"custom_block":[1,"to"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":1872},"to":{"opcode":"procedures_prototype","next":null,"parent":"=r","inputs":{"s~!NY-gbr)(-nNfgUcv/":[1,"a42"],"1bDVbl6M]mMswXu5J0G@":[1,"a43"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read %s %s","argumentids":"[\"s~!NY-gbr)(-nNfgUcv/\",\"1bDVbl6M]mMswXu5J0G@\"]","argumentnames":"[\"addr\",\"length\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a42":{"opcode":"argument_reporter_string_number","next":null,"parent":"to","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a43":{"opcode":"argument_reporter_string_number","next":null,"parent":"to","inputs":{},"fields":{"VALUE":["length",null]},"shadow":true,"topLevel":false},"=s":{"opcode":"data_setvariableto","next":"=t","parent":"=r","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["read.return","KV8P%[L0$@Pl6*2;0j}2"]},"shadow":false,"topLevel":false},"=t":{"opcode":"data_setvariableto","next":"tp","parent":"=s","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["storage.byte","uvc)zI]ik{H#R0UEcjSa"]},"shadow":false,"topLevel":false},"tp":{"opcode":"control_repeat","next":null,"parent":"=t","inputs":{"TIMES":[3,"a44",[6,"0"]],"SUBSTACK":[2,"tq"]},"fields":{},"shadow":false,"topLevel":false},"a44":{"opcode":"argument_reporter_string_number","next":null,"parent":"tp","inputs":{},"fields":{"VALUE":["length",null]},"shadow":false,"topLevel":false},"tq":{"opcode":"procedures_call","next":"tr","parent":"tp","inputs":{"xlvD?*(26B6qvmS.52O0":[3,"=u",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"single_read %s","argumentids":"[\"xlvD?*(26B6qvmS.52O0\"]","warp":"true"}},"=u":{"opcode":"operator_add","next":null,"parent":"tq","inputs":{"NUM1":[3,"a45",[4,"0"]],"NUM2":[3,[12,"storage.byte","uvc)zI]ik{H#R0UEcjSa"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a45":{"opcode":"argument_reporter_string_number","next":null,"parent":"=u","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"tr":{"opcode":"data_setvariableto","next":"a46","parent":"tq","inputs":{"VALUE":[3,"=v",[10,""]]},"fields":{"VARIABLE":["read.return","KV8P%[L0$@Pl6*2;0j}2"]},"shadow":false,"topLevel":false},"=v":{"opcode":"operator_add","next":null,"parent":"tr","inputs":{"NUM1":[3,"a47",[4,"0"]],"NUM2":[3,[12,"read.single.return","z2kH2+fy7b68(-[dirGi"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a47":{"opcode":"operator_multiply","next":null,"parent":"=v","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"read.return","KV8P%[L0$@Pl6*2;0j}2"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a46":{"opcode":"data_changevariableby","next":null,"parent":"tr","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["storage.byte","uvc)zI]ik{H#R0UEcjSa"]},"shadow":false,"topLevel":false},"=w":{"opcode":"procedures_definition","next":"=x","parent":null,"inputs":{"custom_block":[1,"ts"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":12280},"ts":{"opcode":"procedures_prototype","next":null,"parent":"=w","inputs":{"C1o[BIml)IyM$`~bxIV6":[1,"a48"],"ymhrV^0%$i^8=fPD+GvT":[1,"a49"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror %s %s","argumentids":"[\"C1o[BIml)IyM$`~bxIV6\",\"ymhrV^0%$i^8=fPD+GvT\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a48":{"opcode":"argument_reporter_string_number","next":null,"parent":"ts","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a49":{"opcode":"argument_reporter_string_number","next":null,"parent":"ts","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"=x":{"opcode":"data_setvariableto","next":"=y","parent":"=w","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["calc.temp","|Mfr;J{0UIxr(gCAS4Ce"]},"shadow":false,"topLevel":false},"=y":{"opcode":"data_setvariableto","next":"tt","parent":"=x","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["calc.char","2?|f:Ak+7w#=fQL;gbJ7"]},"shadow":false,"topLevel":false},"tt":{"opcode":"control_repeat","next":"a4!","parent":"=y","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"f5"]},"fields":{},"shadow":false,"topLevel":false},"f5":{"opcode":"procedures_call","next":"=z","parent":"tt","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4#",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[3,"=A",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4#":{"opcode":"argument_reporter_string_number","next":null,"parent":"f5","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"=A":{"opcode":"operator_mod","next":null,"parent":"f5","inputs":{"NUM1":[3,"tu",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"tu":{"opcode":"operator_subtract","next":null,"parent":"=A","inputs":{"NUM1":[3,"a4%",[4,"0"]],"NUM2":[3,"=B",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4%":{"opcode":"operator_add","next":null,"parent":"tu","inputs":{"NUM1":[3,[12,"calc.char","2?|f:Ak+7w#=fQL;gbJ7"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"=B":{"opcode":"operator_subtract","next":null,"parent":"tu","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"=C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=C":{"opcode":"operator_multiply","next":null,"parent":"=B","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a4(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4(":{"opcode":"argument_reporter_string_number","next":null,"parent":"=C","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"=z":{"opcode":"data_setvariableto","next":"=D","parent":"f5","inputs":{"VALUE":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]]},"fields":{"VARIABLE":["calc.temp2","%Y7(7pD1MLs|E*:NH%f3"]},"shadow":false,"topLevel":false},"=D":{"opcode":"procedures_call","next":"tv","parent":"=z","inputs":{"q*sUu3?JDo:Ipg{e%Yta":[1,[10,"1"]],"ucYvXHha!Z;z_zXKP6W}":[3,[12,"calc.char","2?|f:Ak+7w#=fQL;gbJ7"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\"q*sUu3?JDo:Ipg{e%Yta\",\"ucYvXHha!Z;z_zXKP6W}\"]","warp":"true"}},"tv":{"opcode":"data_changevariableby","next":"a4)","parent":"=D","inputs":{"VALUE":[3,"=E",[4,"0"]]},"fields":{"VARIABLE":["calc.temp","|Mfr;J{0UIxr(gCAS4Ce"]},"shadow":false,"topLevel":false},"=E":{"opcode":"operator_multiply","next":null,"parent":"tv","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[3,"a4*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4*":{"opcode":"operator_mod","next":null,"parent":"=E","inputs":{"NUM1":[3,[12,"calc.temp2","%Y7(7pD1MLs|E*:NH%f3"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a4)":{"opcode":"data_changevariableby","next":null,"parent":"tv","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["calc.char","2?|f:Ak+7w#=fQL;gbJ7"]},"shadow":false,"topLevel":false},"a4!":{"opcode":"data_setvariableto","next":null,"parent":"tt","inputs":{"VALUE":[3,[12,"calc.temp","|Mfr;J{0UIxr(gCAS4Ce"],[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"=F":{"opcode":"procedures_definition","next":"tw","parent":null,"inputs":{"custom_block":[1,"=G"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":6120},"=G":{"opcode":"procedures_prototype","next":null,"parent":"=F","inputs":{"W,Y33_aHBiJfERC:640;":[1,"a4+"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"W,Y33_aHBiJfERC:640;\"]","argumentnames":"[\"op\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a4+":{"opcode":"argument_reporter_string_number","next":null,"parent":"=G","inputs":{},"fields":{"VALUE":["op",null]},"shadow":true,"topLevel":false},"tw":{"opcode":"procedures_call","next":"f6","parent":"=F","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4,",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4,":{"opcode":"argument_reporter_string_number","next":null,"parent":"tw","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"f6":{"opcode":"control_if_else","next":null,"parent":"tw","inputs":{"CONDITION":[2,"=H"],"SUBSTACK":[2,"tx"],"SUBSTACK2":[2,"ty"]},"fields":{},"shadow":false,"topLevel":false},"=H":{"opcode":"operator_equals","next":null,"parent":"f6","inputs":{"OPERAND1":[3,"a4-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4-":{"opcode":"operator_mod","next":null,"parent":"=H","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tx":{"opcode":"procedures_call","next":"tz","parent":"f6","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4.",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"21"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4.":{"opcode":"argument_reporter_string_number","next":null,"parent":"tx","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tz":{"opcode":"data_setvariableto","next":"f7","parent":"tx","inputs":{"VALUE":[3,"a4/",[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"a4/":{"opcode":"operator_mod","next":null,"parent":"tz","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"f7":{"opcode":"control_if_else","next":null,"parent":"tz","inputs":{"CONDITION":[2,"a4:"],"SUBSTACK":[2,"ms"],"SUBSTACK2":[2,"f8"]},"fields":{},"shadow":false,"topLevel":false},"a4:":{"opcode":"operator_gt","next":null,"parent":"f7","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ms":{"opcode":"control_if_else","next":null,"parent":"f7","inputs":{"CONDITION":[2,"a4;"],"SUBSTACK":[2,"f9"],"SUBSTACK2":[2,"f!"]},"fields":{},"shadow":false,"topLevel":false},"a4;":{"opcode":"operator_gt","next":null,"parent":"ms","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"f9":{"opcode":"control_if_else","next":null,"parent":"ms","inputs":{"CONDITION":[2,"a4="],"SUBSTACK":[2,"=I"],"SUBSTACK2":[2,"tA"]},"fields":{},"shadow":false,"topLevel":false},"a4=":{"opcode":"operator_gt","next":null,"parent":"f9","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"=I":{"opcode":"control_if_else","next":null,"parent":"f9","inputs":{"CONDITION":[2,"a4?"]},"fields":{},"shadow":false,"topLevel":false},"a4?":{"opcode":"operator_gt","next":null,"parent":"=I","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"tA":{"opcode":"control_if_else","next":null,"parent":"f9","inputs":{"CONDITION":[2,"a4@"],"SUBSTACK":[2,"tB"]},"fields":{},"shadow":false,"topLevel":false},"a4@":{"opcode":"operator_gt","next":null,"parent":"tA","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"tB":{"opcode":"procedures_call","next":"am","parent":"tA","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4[",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4[":{"opcode":"argument_reporter_string_number","next":null,"parent":"tB","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"am":{"opcode":"control_if_else","next":"=J","parent":"tB","inputs":{"CONDITION":[2,"=K"],"SUBSTACK":[2,"=L"],"SUBSTACK2":[2,"tC"]},"fields":{},"shadow":false,"topLevel":false},"=K":{"opcode":"operator_equals","next":null,"parent":"am","inputs":{"OPERAND1":[3,"a4]",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4]":{"opcode":"operator_mod","next":null,"parent":"=K","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"=L":{"opcode":"data_setvariableto","next":null,"parent":"am","inputs":{"VALUE":[3,"=M",[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"=M":{"opcode":"operator_mod","next":null,"parent":"=L","inputs":{"NUM1":[3,"a4^",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a4^":{"opcode":"argument_reporter_string_number","next":null,"parent":"=M","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tC":{"opcode":"procedures_call","next":"tD","parent":"am","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4_",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4_":{"opcode":"argument_reporter_string_number","next":null,"parent":"tC","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tD":{"opcode":"procedures_call","next":null,"parent":"tC","inputs":{"C1o[BIml)IyM$`~bxIV6":[3,"=N",[10,""]],"ymhrV^0%$i^8=fPD+GvT":[3,"=O",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror %s %s","argumentids":"[\"C1o[BIml)IyM$`~bxIV6\",\"ymhrV^0%$i^8=fPD+GvT\"]","warp":"true"}},"=N":{"opcode":"operator_mod","next":null,"parent":"tD","inputs":{"NUM1":[3,"a4`",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a4`":{"opcode":"argument_reporter_string_number","next":null,"parent":"=N","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=O":{"opcode":"operator_subtract","next":null,"parent":"tD","inputs":{"NUM1":[3,"a4{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a4{":{"opcode":"operator_mod","next":null,"parent":"=O","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=J":{"opcode":"data_setvariableto","next":"tE","parent":"am","inputs":{"VALUE":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]]},"fields":{"VARIABLE":["op.pos","+tY~LDVpE^7qC}WK4i5t"]},"shadow":false,"topLevel":false},"tE":{"opcode":"procedures_call","next":"=P","parent":"=J","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a4|",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a4|":{"opcode":"argument_reporter_string_number","next":null,"parent":"tE","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=P":{"opcode":"data_replaceitemoflist","next":null,"parent":"tE","inputs":{"INDEX":[3,"=Q",[7,"0"]],"ITEM":[3,[12,"op.pos","+tY~LDVpE^7qC}WK4i5t"],[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=Q":{"opcode":"operator_add","next":null,"parent":"=P","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a4}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a4}":{"opcode":"operator_mod","next":null,"parent":"=Q","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"f!":{"opcode":"control_if_else","next":null,"parent":"ms","inputs":{"CONDITION":[2,"a4~"],"SUBSTACK":[2,"=R"],"SUBSTACK2":[2,"=S"]},"fields":{},"shadow":false,"topLevel":false},"a4~":{"opcode":"operator_gt","next":null,"parent":"f!","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"=R":{"opcode":"control_if_else","next":null,"parent":"f!","inputs":{"CONDITION":[2,"a5a"]},"fields":{},"shadow":false,"topLevel":false},"a5a":{"opcode":"operator_gt","next":null,"parent":"=R","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"=S":{"opcode":"control_if_else","next":null,"parent":"f!","inputs":{"CONDITION":[2,"a5b"]},"fields":{},"shadow":false,"topLevel":false},"a5b":{"opcode":"operator_gt","next":null,"parent":"=S","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"f8":{"opcode":"control_if_else","next":null,"parent":"f7","inputs":{"CONDITION":[2,"a5c"],"SUBSTACK":[2,"f#"],"SUBSTACK2":[2,"f%"]},"fields":{},"shadow":false,"topLevel":false},"a5c":{"opcode":"operator_gt","next":null,"parent":"f8","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"f#":{"opcode":"control_if_else","next":null,"parent":"f8","inputs":{"CONDITION":[2,"a5d"],"SUBSTACK":[2,"=T"],"SUBSTACK2":[2,"tF"]},"fields":{},"shadow":false,"topLevel":false},"a5d":{"opcode":"operator_gt","next":null,"parent":"f#","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"=T":{"opcode":"control_if_else","next":null,"parent":"f#","inputs":{"CONDITION":[2,"a5e"]},"fields":{},"shadow":false,"topLevel":false},"a5e":{"opcode":"operator_gt","next":null,"parent":"=T","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"tF":{"opcode":"control_if_else","next":null,"parent":"f#","inputs":{"CONDITION":[2,"a5f"],"SUBSTACK2":[2,"tG"]},"fields":{},"shadow":false,"topLevel":false},"a5f":{"opcode":"operator_gt","next":null,"parent":"tF","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tG":{"opcode":"procedures_call","next":"tH","parent":"tF","inputs":{"VpgpwE3bGV.6Kg0p1U2@":[3,"a5g",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get_pos %s","argumentids":"[\"VpgpwE3bGV.6Kg0p1U2@\"]","warp":"true"}},"a5g":{"opcode":"argument_reporter_string_number","next":null,"parent":"tG","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tH":{"opcode":"procedures_call","next":"tI","parent":"tG","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5h",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5h":{"opcode":"argument_reporter_string_number","next":null,"parent":"tH","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tI":{"opcode":"data_setvariableto","next":"tJ","parent":"tH","inputs":{"VALUE":[3,"=U",[10,""]]},"fields":{"VARIABLE":["op.temp","qKYHmXRs.xh5udiKBD_y"]},"shadow":false,"topLevel":false},"=U":{"opcode":"operator_add","next":null,"parent":"tI","inputs":{"NUM1":[3,"=V",[4,"0"]],"NUM2":[3,[12,"op.pos","+tY~LDVpE^7qC}WK4i5t"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=V":{"opcode":"data_itemoflist","next":null,"parent":"=U","inputs":{"INDEX":[3,"=W",[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=W":{"opcode":"operator_add","next":null,"parent":"=V","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5i":{"opcode":"operator_mod","next":null,"parent":"=W","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"tJ":{"opcode":"data_setvariableto","next":"=X","parent":"tI","inputs":{"VALUE":[3,"a5j",[10,""]]},"fields":{"VARIABLE":["flags.c","jHyV3Vm:Q@rIq$YA]IYG"]},"shadow":false,"topLevel":false},"a5j":{"opcode":"operator_gt","next":null,"parent":"tJ","inputs":{"OPERAND1":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]],"OPERAND2":[1,[10,"0xffffffff"]]},"fields":{},"shadow":false,"topLevel":false},"=X":{"opcode":"data_setvariableto","next":"f(","parent":"tJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["flags.n","3RS/JX,H|~mNq!j_oSzZ"]},"shadow":false,"topLevel":false},"f(":{"opcode":"control_if","next":"tK","parent":"=X","inputs":{"CONDITION":[2,"a5k"],"SUBSTACK":[2,"=Y"]},"fields":{},"shadow":false,"topLevel":false},"a5k":{"opcode":"operator_equals","next":null,"parent":"f(","inputs":{"OPERAND1":[3,[12,"flags.c","jHyV3Vm:Q@rIq$YA]IYG"],[10,""]],"OPERAND2":[1,[10,"true"]]},"fields":{},"shadow":false,"topLevel":false},"=Y":{"opcode":"data_changevariableby","next":null,"parent":"f(","inputs":{"VALUE":[3,"a5l",[4,"0"]]},"fields":{"VARIABLE":["op.temp","qKYHmXRs.xh5udiKBD_y"]},"shadow":false,"topLevel":false},"a5l":{"opcode":"operator_subtract","next":null,"parent":"=Y","inputs":{"NUM1":[1,[4,""]],"NUM2":[1,[4,"0xffffffff"]]},"fields":{},"shadow":false,"topLevel":false},"tK":{"opcode":"data_setvariableto","next":"tL","parent":"f(","inputs":{"VALUE":[3,"a5m",[10,""]]},"fields":{"VARIABLE":["flags.z","wmU,n(01t/a%O{Fxi,s+"]},"shadow":false,"topLevel":false},"a5m":{"opcode":"operator_equals","next":null,"parent":"tK","inputs":{"OPERAND1":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"tL":{"opcode":"procedures_call","next":"=Z","parent":"tK","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5n",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5n":{"opcode":"argument_reporter_string_number","next":null,"parent":"tL","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=Z":{"opcode":"data_replaceitemoflist","next":null,"parent":"tL","inputs":{"INDEX":[3,"=0",[7,"0"]],"ITEM":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=0":{"opcode":"operator_add","next":null,"parent":"=Z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5o":{"opcode":"operator_mod","next":null,"parent":"=0","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"f%":{"opcode":"control_if_else","next":null,"parent":"f8","inputs":{"CONDITION":[2,"a5p"],"SUBSTACK":[2,"tM"],"SUBSTACK2":[2,"=1"]},"fields":{},"shadow":false,"topLevel":false},"a5p":{"opcode":"operator_gt","next":null,"parent":"f%","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"tM":{"opcode":"control_if_else","next":null,"parent":"f%","inputs":{"CONDITION":[2,"a5q"],"SUBSTACK2":[2,"tN"]},"fields":{},"shadow":false,"topLevel":false},"a5q":{"opcode":"operator_gt","next":null,"parent":"tM","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"tN":{"opcode":"procedures_call","next":"tO","parent":"tM","inputs":{"VpgpwE3bGV.6Kg0p1U2@":[3,"a5r",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get_pos %s","argumentids":"[\"VpgpwE3bGV.6Kg0p1U2@\"]","warp":"true"}},"a5r":{"opcode":"argument_reporter_string_number","next":null,"parent":"tN","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tO":{"opcode":"procedures_call","next":"tP","parent":"tN","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5s",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5s":{"opcode":"argument_reporter_string_number","next":null,"parent":"tO","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tP":{"opcode":"data_setvariableto","next":"tQ","parent":"tO","inputs":{"VALUE":[3,"=2",[10,""]]},"fields":{"VARIABLE":["op.temp","qKYHmXRs.xh5udiKBD_y"]},"shadow":false,"topLevel":false},"=2":{"opcode":"operator_subtract","next":null,"parent":"tP","inputs":{"NUM1":[3,"=3",[4,"0"]],"NUM2":[3,[12,"op.pos","+tY~LDVpE^7qC}WK4i5t"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=3":{"opcode":"data_itemoflist","next":null,"parent":"=2","inputs":{"INDEX":[3,"=4",[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=4":{"opcode":"operator_add","next":null,"parent":"=3","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5t",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5t":{"opcode":"operator_mod","next":null,"parent":"=4","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"tQ":{"opcode":"data_setvariableto","next":"=5","parent":"tP","inputs":{"VALUE":[3,"a5u",[10,""]]},"fields":{"VARIABLE":["flags.z","wmU,n(01t/a%O{Fxi,s+"]},"shadow":false,"topLevel":false},"a5u":{"opcode":"operator_equals","next":null,"parent":"tQ","inputs":{"OPERAND1":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=5":{"opcode":"data_setvariableto","next":"tR","parent":"tQ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["flags.n","3RS/JX,H|~mNq!j_oSzZ"]},"shadow":false,"topLevel":false},"tR":{"opcode":"data_setvariableto","next":"f)","parent":"=5","inputs":{"VALUE":[3,"a5v",[10,""]]},"fields":{"VARIABLE":["flags.v","7F=kKfGq93{+Pi_o%2}h"]},"shadow":false,"topLevel":false},"a5v":{"opcode":"operator_lt","next":null,"parent":"tR","inputs":{"OPERAND1":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f)":{"opcode":"control_if","next":"tS","parent":"tR","inputs":{"CONDITION":[2,"a5w"],"SUBSTACK":[2,"a5x"]},"fields":{},"shadow":false,"topLevel":false},"a5w":{"opcode":"operator_lt","next":null,"parent":"f)","inputs":{"OPERAND1":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5x":{"opcode":"data_changevariableby","next":null,"parent":"f)","inputs":{"VALUE":[1,[4,"0x100000000"]]},"fields":{"VARIABLE":["op.temp","qKYHmXRs.xh5udiKBD_y"]},"shadow":false,"topLevel":false},"tS":{"opcode":"procedures_call","next":"=6","parent":"f)","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5y",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5y":{"opcode":"argument_reporter_string_number","next":null,"parent":"tS","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=6":{"opcode":"data_replaceitemoflist","next":null,"parent":"tS","inputs":{"INDEX":[3,"=7",[7,"0"]],"ITEM":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=7":{"opcode":"operator_add","next":null,"parent":"=6","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5z",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5z":{"opcode":"operator_mod","next":null,"parent":"=7","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=1":{"opcode":"control_if_else","next":null,"parent":"f%","inputs":{"CONDITION":[2,"a5A"]},"fields":{},"shadow":false,"topLevel":false},"a5A":{"opcode":"operator_gt","next":null,"parent":"=1","inputs":{"OPERAND1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ty":{"opcode":"control_if_else","next":null,"parent":"f6","inputs":{"CONDITION":[2,"=8"],"SUBSTACK":[2,"tT"]},"fields":{},"shadow":false,"topLevel":false},"=8":{"opcode":"operator_equals","next":null,"parent":"ty","inputs":{"OPERAND1":[3,"a5B",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a5B":{"opcode":"operator_mod","next":null,"parent":"=8","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tT":{"opcode":"procedures_call","next":"an","parent":"ty","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5C",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5C":{"opcode":"argument_reporter_string_number","next":null,"parent":"tT","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"an":{"opcode":"control_if_else","next":"tU","parent":"tT","inputs":{"CONDITION":[2,"=9"],"SUBSTACK":[2,"=!"],"SUBSTACK2":[2,"=#"]},"fields":{},"shadow":false,"topLevel":false},"=9":{"opcode":"operator_equals","next":null,"parent":"an","inputs":{"OPERAND1":[3,"a5D",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5D":{"opcode":"operator_mod","next":null,"parent":"=9","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"=!":{"opcode":"data_setvariableto","next":null,"parent":"an","inputs":{"VALUE":[3,"=%",[10,""]]},"fields":{"VARIABLE":["op.pos","+tY~LDVpE^7qC}WK4i5t"]},"shadow":false,"topLevel":false},"=%":{"opcode":"operator_mod","next":null,"parent":"=!","inputs":{"NUM1":[3,"a5E",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a5E":{"opcode":"argument_reporter_string_number","next":null,"parent":"=%","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=#":{"opcode":"procedures_call","next":"f*","parent":"an","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"f*":{"opcode":"procedures_call","next":"a5F","parent":"=#","inputs":{"C1o[BIml)IyM$`~bxIV6":[3,"=(",[10,""]],"ymhrV^0%$i^8=fPD+GvT":[3,"=)",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror %s %s","argumentids":"[\"C1o[BIml)IyM$`~bxIV6\",\"ymhrV^0%$i^8=fPD+GvT\"]","warp":"true"}},"=(":{"opcode":"operator_mod","next":null,"parent":"f*","inputs":{"NUM1":[3,"a5G",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a5G":{"opcode":"argument_reporter_string_number","next":null,"parent":"=(","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"=)":{"opcode":"operator_subtract","next":null,"parent":"f*","inputs":{"NUM1":[3,"a5H",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a5H":{"opcode":"operator_mod","next":null,"parent":"=)","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a5F":{"opcode":"data_setvariableto","next":null,"parent":"f*","inputs":{"VALUE":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]]},"fields":{"VARIABLE":["op.pos","+tY~LDVpE^7qC}WK4i5t"]},"shadow":false,"topLevel":false},"tU":{"opcode":"procedures_call","next":"tV","parent":"an","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5I",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5I":{"opcode":"argument_reporter_string_number","next":null,"parent":"tU","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tV":{"opcode":"data_setvariableto","next":"tW","parent":"tU","inputs":{"VALUE":[3,"=*",[10,""]]},"fields":{"VARIABLE":["op.temp","qKYHmXRs.xh5udiKBD_y"]},"shadow":false,"topLevel":false},"=*":{"opcode":"operator_add","next":null,"parent":"tV","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5J":{"opcode":"operator_mod","next":null,"parent":"=*","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"tW":{"opcode":"procedures_call","next":"f+","parent":"tV","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5K",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5K":{"opcode":"argument_reporter_string_number","next":null,"parent":"tW","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"f+":{"opcode":"control_if_else","next":null,"parent":"tW","inputs":{"CONDITION":[2,"=+"],"SUBSTACK":[2,"tX"],"SUBSTACK2":[2,"tY"]},"fields":{},"shadow":false,"topLevel":false},"=+":{"opcode":"operator_equals","next":null,"parent":"f+","inputs":{"OPERAND1":[3,"a5L",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5L":{"opcode":"operator_mod","next":null,"parent":"=+","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"tX":{"opcode":"procedures_call","next":"tZ","parent":"f+","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5M",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5M":{"opcode":"argument_reporter_string_number","next":null,"parent":"tX","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"tZ":{"opcode":"procedures_call","next":null,"parent":"tX","inputs":{"VY^w5rqboO#ZmR6iqSOr":[3,"=,",[10,""]],"8l{Pwwsa*TxDPwM:x{|I":[3,"a5N",[10,""]],"Xo.]4*MzMR0sE^4xAmz;":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"write %s %s %s","argumentids":"[\"VY^w5rqboO#ZmR6iqSOr\",\"8l{Pwwsa*TxDPwM:x{|I\",\"Xo.]4*MzMR0sE^4xAmz;\"]","warp":"true"}},"=,":{"opcode":"operator_add","next":null,"parent":"tZ","inputs":{"NUM1":[3,"=-",[4,"0"]],"NUM2":[3,[12,"op.pos","+tY~LDVpE^7qC}WK4i5t"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=-":{"opcode":"data_itemoflist","next":null,"parent":"=,","inputs":{"INDEX":[3,"=.",[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=.":{"opcode":"operator_add","next":null,"parent":"=-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5O",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5O":{"opcode":"operator_mod","next":null,"parent":"=.","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a5N":{"opcode":"data_itemoflist","next":null,"parent":"tZ","inputs":{"INDEX":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"tY":{"opcode":"procedures_call","next":"t0","parent":"f+","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a5P",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a5P":{"opcode":"argument_reporter_string_number","next":null,"parent":"tY","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"t0":{"opcode":"procedures_call","next":"a5Q","parent":"tY","inputs":{"s~!NY-gbr)(-nNfgUcv/":[3,"=/",[10,""]],"1bDVbl6M]mMswXu5J0G@":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read %s %s","argumentids":"[\"s~!NY-gbr)(-nNfgUcv/\",\"1bDVbl6M]mMswXu5J0G@\"]","warp":"true"}},"=/":{"opcode":"operator_add","next":null,"parent":"t0","inputs":{"NUM1":[3,"=:",[4,"0"]],"NUM2":[3,[12,"op.pos","+tY~LDVpE^7qC}WK4i5t"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=:":{"opcode":"data_itemoflist","next":null,"parent":"=/","inputs":{"INDEX":[3,"=;",[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"=;":{"opcode":"operator_add","next":null,"parent":"=:","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a5R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5R":{"opcode":"operator_mod","next":null,"parent":"=;","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a5Q":{"opcode":"data_replaceitemoflist","next":null,"parent":"t0","inputs":{"INDEX":[3,[12,"op.temp","qKYHmXRs.xh5udiKBD_y"],[7,"0"]],"ITEM":[3,[12,"read.return","KV8P%[L0$@Pl6*2;0j}2"],[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"==":{"opcode":"procedures_definition","next":"=?","parent":null,"inputs":{"custom_block":[1,"t1"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":12056},"t1":{"opcode":"procedures_prototype","next":null,"parent":"==","inputs":{"q*sUu3?JDo:Ipg{e%Yta":[1,"a5S"],"ucYvXHha!Z;z_zXKP6W}":[1,"a5T"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\"q*sUu3?JDo:Ipg{e%Yta\",\"ucYvXHha!Z;z_zXKP6W}\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a5S":{"opcode":"argument_reporter_string_number","next":null,"parent":"t1","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a5T":{"opcode":"argument_reporter_string_number","next":null,"parent":"t1","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"=?":{"opcode":"data_setvariableto","next":null,"parent":"==","inputs":{"VALUE":[3,"t2",[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"t2":{"opcode":"operator_multiply","next":null,"parent":"=?","inputs":{"NUM1":[3,"a5U",[4,"0"]],"NUM2":[3,"=@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5U":{"opcode":"argument_reporter_string_number","next":null,"parent":"t2","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"=@":{"opcode":"operator_round","next":null,"parent":"t2","inputs":{"NUM":[3,"=[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=[":{"opcode":"operator_mathop","next":null,"parent":"=@","inputs":{"NUM":[3,"=]",[4,"0"]]},"fields":{"OPERATOR":["10 ^",null]},"shadow":false,"topLevel":false},"=]":{"opcode":"operator_multiply","next":null,"parent":"=[","inputs":{"NUM1":[3,"a5V",[4,"0"]],"NUM2":[1,[4,"0.3010299956639812"]]},"fields":{},"shadow":false,"topLevel":false},"a5V":{"opcode":"argument_reporter_string_number","next":null,"parent":"=]","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"=^":{"opcode":"procedures_definition","next":"t3","parent":null,"inputs":{"custom_block":[1,"t4"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":4856},"t4":{"opcode":"procedures_prototype","next":null,"parent":"=^","inputs":{"ri9-ps$b6WP}.:QT-eKd":[1,"a5W"],".9oPWAs[S:0cdq(HjG41":[1,"a5X"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s ^ %s","argumentids":"[\"ri9-ps$b6WP}.:QT-eKd\",\".9oPWAs[S:0cdq(HjG41\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a5W":{"opcode":"argument_reporter_string_number","next":null,"parent":"t4","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a5X":{"opcode":"argument_reporter_string_number","next":null,"parent":"t4","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"t3":{"opcode":"control_repeat","next":null,"parent":"=^","inputs":{"TIMES":[3,"=_",[6,"0"]],"SUBSTACK":[2,"=`"]},"fields":{},"shadow":false,"topLevel":false},"=_":{"opcode":"operator_mathop","next":null,"parent":"t3","inputs":{"NUM":[3,"a5Y",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a5Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"=_","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"=`":{"opcode":"data_setvariableto","next":null,"parent":"t3","inputs":{"VALUE":[3,"t5",[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"t5":{"opcode":"operator_multiply","next":null,"parent":"=`","inputs":{"NUM1":[3,"a5Z",[4,"0"]],"NUM2":[3,"a50",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"t5","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"a50":{"opcode":"argument_reporter_string_number","next":null,"parent":"t5","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"={":{"opcode":"procedures_definition","next":"t6","parent":null,"inputs":{"custom_block":[1,"=|"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":11464},"=|":{"opcode":"procedures_prototype","next":null,"parent":"={","inputs":{"VpgpwE3bGV.6Kg0p1U2@":[1,"a51"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get_pos %s","argumentids":"[\"VpgpwE3bGV.6Kg0p1U2@\"]","argumentnames":"[\"op\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a51":{"opcode":"argument_reporter_string_number","next":null,"parent":"=|","inputs":{},"fields":{"VALUE":["op",null]},"shadow":true,"topLevel":false},"t6":{"opcode":"procedures_call","next":"ao","parent":"={","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a52",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a52":{"opcode":"argument_reporter_string_number","next":null,"parent":"t6","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"ao":{"opcode":"control_if_else","next":"a53","parent":"t6","inputs":{"CONDITION":[2,"=}"],"SUBSTACK":[2,"t7"],"SUBSTACK2":[2,"t8"]},"fields":{},"shadow":false,"topLevel":false},"=}":{"opcode":"operator_equals","next":null,"parent":"ao","inputs":{"OPERAND1":[3,"a54",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a54":{"opcode":"operator_mod","next":null,"parent":"=}","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"t7":{"opcode":"procedures_call","next":"t9","parent":"ao","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a55",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a55":{"opcode":"argument_reporter_string_number","next":null,"parent":"t7","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"t9":{"opcode":"procedures_call","next":null,"parent":"t7","inputs":{"q*sUu3?JDo:Ipg{e%Yta":[3,"=~",[10,""]],"ucYvXHha!Z;z_zXKP6W}":[3,"a56",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\"q*sUu3?JDo:Ipg{e%Yta\",\"ucYvXHha!Z;z_zXKP6W}\"]","warp":"true"}},"=~":{"opcode":"data_itemoflist","next":null,"parent":"t9","inputs":{"INDEX":[3,"?a",[7,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"?a":{"opcode":"operator_add","next":null,"parent":"=~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?b":{"opcode":"operator_mod","next":null,"parent":"?a","inputs":{"NUM1":[3,"a57",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a57":{"opcode":"argument_reporter_string_number","next":null,"parent":"?b","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"a56":{"opcode":"operator_mod","next":null,"parent":"t9","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"t8":{"opcode":"procedures_call","next":"t!","parent":"ao","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[3,"a58",[10,""]],"S(X8G92Q/VgC-?sG|9UH":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","warp":"true"}},"a58":{"opcode":"argument_reporter_string_number","next":null,"parent":"t8","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"t!":{"opcode":"procedures_call","next":null,"parent":"t8","inputs":{"C1o[BIml)IyM$`~bxIV6":[3,"?c",[10,""]],"ymhrV^0%$i^8=fPD+GvT":[3,"a59",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror %s %s","argumentids":"[\"C1o[BIml)IyM$`~bxIV6\",\"ymhrV^0%$i^8=fPD+GvT\"]","warp":"true"}},"?c":{"opcode":"operator_mod","next":null,"parent":"t!","inputs":{"NUM1":[3,"a5!",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a5!":{"opcode":"argument_reporter_string_number","next":null,"parent":"?c","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"a59":{"opcode":"operator_mod","next":null,"parent":"t!","inputs":{"NUM1":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a53":{"opcode":"data_setvariableto","next":null,"parent":"ao","inputs":{"VALUE":[3,[12,"calc.return","Q[Ey2V46|u}~:Sb,2M=F"],[10,""]]},"fields":{"VARIABLE":["op.pos","+tY~LDVpE^7qC}WK4i5t"]},"shadow":false,"topLevel":false},"?d":{"opcode":"procedures_definition","next":"?e","parent":null,"inputs":{"custom_block":[1,"t#"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":4344},"t#":{"opcode":"procedures_prototype","next":null,"parent":"?d","inputs":{"z~f!=Zn*JAGdtC$S`n)*":[1,"a5#"],"S(X8G92Q/VgC-?sG|9UH":[1,"a5%"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"z~f!=Zn*JAGdtC$S`n)*\",\"S(X8G92Q/VgC-?sG|9UH\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a5#":{"opcode":"argument_reporter_string_number","next":null,"parent":"t#","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a5%":{"opcode":"argument_reporter_string_number","next":null,"parent":"t#","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"?e":{"opcode":"data_setvariableto","next":null,"parent":"?d","inputs":{"VALUE":[3,"?f",[10,""]]},"fields":{"VARIABLE":["calc.return","Q[Ey2V46|u}~:Sb,2M=F"]},"shadow":false,"topLevel":false},"?f":{"opcode":"operator_mathop","next":null,"parent":"?e","inputs":{"NUM":[3,"t%",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"t%":{"opcode":"operator_divide","next":null,"parent":"?f","inputs":{"NUM1":[3,"a5(",[4,"0"]],"NUM2":[3,"?g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a5(":{"opcode":"argument_reporter_string_number","next":null,"parent":"t%","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"?g":{"opcode":"operator_mathop","next":null,"parent":"t%","inputs":{"NUM":[3,"?h",[4,"0"]]},"fields":{"OPERATOR":["10 ^",null]},"shadow":false,"topLevel":false},"?h":{"opcode":"operator_multiply","next":null,"parent":"?g","inputs":{"NUM1":[3,"a5)",[4,"0"]],"NUM2":[1,[4,"0.3010299956639812"]]},"fields":{},"shadow":false,"topLevel":false},"a5)":{"opcode":"argument_reporter_string_number","next":null,"parent":"?h","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"?i":{"opcode":"procedures_definition","next":"f,","parent":null,"inputs":{"custom_block":[1,"t("]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":18760},"t(":{"opcode":"procedures_prototype","next":null,"parent":"?i","inputs":{"J)!DovUq`/Os=+1%FQGk":[1,"a5*"],"t73qCfdAE}yy*xM2-H5X":[1,"a5+"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"single_write %s %s","argumentids":"[\"J)!DovUq`/Os=+1%FQGk\",\"t73qCfdAE}yy*xM2-H5X\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a5*":{"opcode":"argument_reporter_string_number","next":null,"parent":"t(","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a5+":{"opcode":"argument_reporter_string_number","next":null,"parent":"t(","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"f,":{"opcode":"control_if_else","next":null,"parent":"?i","inputs":{"CONDITION":[2,"?j"],"SUBSTACK":[2,"t)"],"SUBSTACK2":[2,"f-"]},"fields":{},"shadow":false,"topLevel":false},"?j":{"opcode":"operator_gt","next":null,"parent":"f,","inputs":{"OPERAND1":[3,"a5,",[10,""]],"OPERAND2":[1,[10,"0x0Dffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5,":{"opcode":"argument_reporter_string_number","next":null,"parent":"?j","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t)":{"opcode":"data_replaceitemoflist","next":null,"parent":"f,","inputs":{"INDEX":[3,"?k",[7,"0"]],"ITEM":[3,"a5-",[10,""]]},"fields":{"LIST":["CARTRAM","Wdv|s)sKi5w2g!ptBTWv"]},"shadow":false,"topLevel":false},"?k":{"opcode":"operator_subtract","next":null,"parent":"t)","inputs":{"NUM1":[3,"a5.",[4,"0"]],"NUM2":[1,[4,"0x0Dffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5.":{"opcode":"argument_reporter_string_number","next":null,"parent":"?k","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5-":{"opcode":"argument_reporter_string_number","next":null,"parent":"t)","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"f-":{"opcode":"control_if_else","next":null,"parent":"f,","inputs":{"CONDITION":[2,"?l"],"SUBSTACK":[2,"t*"],"SUBSTACK2":[2,"f."]},"fields":{},"shadow":false,"topLevel":false},"?l":{"opcode":"operator_gt","next":null,"parent":"f-","inputs":{"OPERAND1":[3,"a5/",[10,""]],"OPERAND2":[1,[10,"0x06ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5/":{"opcode":"argument_reporter_string_number","next":null,"parent":"?l","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t*":{"opcode":"data_replaceitemoflist","next":null,"parent":"f-","inputs":{"INDEX":[3,"?m",[7,"0"]],"ITEM":[3,"a5:",[10,""]]},"fields":{"LIST":["OAM","c;0;9@3O4n4FloYvD_w?"]},"shadow":false,"topLevel":false},"?m":{"opcode":"operator_subtract","next":null,"parent":"t*","inputs":{"NUM1":[3,"a5;",[4,"0"]],"NUM2":[1,[4,"0x06ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5;":{"opcode":"argument_reporter_string_number","next":null,"parent":"?m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5:":{"opcode":"argument_reporter_string_number","next":null,"parent":"t*","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"f.":{"opcode":"control_if_else","next":null,"parent":"f-","inputs":{"CONDITION":[2,"?n"],"SUBSTACK":[2,"t+"],"SUBSTACK2":[2,"f/"]},"fields":{},"shadow":false,"topLevel":false},"?n":{"opcode":"operator_gt","next":null,"parent":"f.","inputs":{"OPERAND1":[3,"a5=",[10,""]],"OPERAND2":[1,[10,"0x05ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5=":{"opcode":"argument_reporter_string_number","next":null,"parent":"?n","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t+":{"opcode":"data_replaceitemoflist","next":null,"parent":"f.","inputs":{"INDEX":[3,"?o",[7,"0"]],"ITEM":[3,"a5?",[10,""]]},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},"?o":{"opcode":"operator_subtract","next":null,"parent":"t+","inputs":{"NUM1":[3,"a5@",[4,"0"]],"NUM2":[1,[4,"0x05ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5@":{"opcode":"argument_reporter_string_number","next":null,"parent":"?o","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5?":{"opcode":"argument_reporter_string_number","next":null,"parent":"t+","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"f/":{"opcode":"control_if_else","next":null,"parent":"f.","inputs":{"CONDITION":[2,"?p"],"SUBSTACK":[2,"t,"],"SUBSTACK2":[2,"f:"]},"fields":{},"shadow":false,"topLevel":false},"?p":{"opcode":"operator_gt","next":null,"parent":"f/","inputs":{"OPERAND1":[3,"a5[",[10,""]],"OPERAND2":[1,[10,"0x04ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5[":{"opcode":"argument_reporter_string_number","next":null,"parent":"?p","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t,":{"opcode":"data_replaceitemoflist","next":null,"parent":"f/","inputs":{"INDEX":[3,"?q",[7,"0"]],"ITEM":[3,"a5]",[10,""]]},"fields":{"LIST":["PALRAM","-27BR8:6fV0T3v$8oN%("]},"shadow":false,"topLevel":false},"?q":{"opcode":"operator_subtract","next":null,"parent":"t,","inputs":{"NUM1":[3,"a5^",[4,"0"]],"NUM2":[1,[4,"0x04ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5^":{"opcode":"argument_reporter_string_number","next":null,"parent":"?q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5]":{"opcode":"argument_reporter_string_number","next":null,"parent":"t,","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"f:":{"opcode":"control_if_else","next":null,"parent":"f/","inputs":{"CONDITION":[2,"?r"],"SUBSTACK":[2,"t-"],"SUBSTACK2":[2,"f;"]},"fields":{},"shadow":false,"topLevel":false},"?r":{"opcode":"operator_gt","next":null,"parent":"f:","inputs":{"OPERAND1":[3,"a5_",[10,""]],"OPERAND2":[1,[10,"0x03ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5_":{"opcode":"argument_reporter_string_number","next":null,"parent":"?r","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t-":{"opcode":"data_replaceitemoflist","next":null,"parent":"f:","inputs":{"INDEX":[3,"?s",[7,"0"]],"ITEM":[3,"a5`",[10,""]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},"?s":{"opcode":"operator_subtract","next":null,"parent":"t-","inputs":{"NUM1":[3,"a5{",[4,"0"]],"NUM2":[1,[4,"0x03ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5{":{"opcode":"argument_reporter_string_number","next":null,"parent":"?s","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5`":{"opcode":"argument_reporter_string_number","next":null,"parent":"t-","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"f;":{"opcode":"control_if_else","next":null,"parent":"f:","inputs":{"CONDITION":[2,"?t"],"SUBSTACK":[2,"t."],"SUBSTACK2":[2,"t/"]},"fields":{},"shadow":false,"topLevel":false},"?t":{"opcode":"operator_gt","next":null,"parent":"f;","inputs":{"OPERAND1":[3,"a5|",[10,""]],"OPERAND2":[1,[10,"0x02ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5|":{"opcode":"argument_reporter_string_number","next":null,"parent":"?t","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t.":{"opcode":"data_replaceitemoflist","next":null,"parent":"f;","inputs":{"INDEX":[3,"?u",[7,"0"]],"ITEM":[3,"a5}",[10,""]]},"fields":{"LIST":["IWRAM","H{~g(O6*Cm~XzS0VV1;."]},"shadow":false,"topLevel":false},"?u":{"opcode":"operator_subtract","next":null,"parent":"t.","inputs":{"NUM1":[3,"a5~",[4,"0"]],"NUM2":[1,[4,"0x02ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a5~":{"opcode":"argument_reporter_string_number","next":null,"parent":"?u","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a5}":{"opcode":"argument_reporter_string_number","next":null,"parent":"t.","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"t/":{"opcode":"data_replaceitemoflist","next":null,"parent":"f;","inputs":{"INDEX":[3,"?v",[7,"0"]],"ITEM":[3,"a6a",[10,""]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},"?v":{"opcode":"operator_subtract","next":null,"parent":"t/","inputs":{"NUM1":[3,"a6b",[4,"0"]],"NUM2":[1,[4,"0x01ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6b":{"opcode":"argument_reporter_string_number","next":null,"parent":"?v","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a6a":{"opcode":"argument_reporter_string_number","next":null,"parent":"t/","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"?w":{"opcode":"procedures_definition","next":"f=","parent":null,"inputs":{"custom_block":[1,"?x"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":16456},"?x":{"opcode":"procedures_prototype","next":null,"parent":"?w","inputs":{"xlvD?*(26B6qvmS.52O0":[1,"a6c"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"single_read %s","argumentids":"[\"xlvD?*(26B6qvmS.52O0\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a6c":{"opcode":"argument_reporter_string_number","next":null,"parent":"?x","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"f=":{"opcode":"control_if_else","next":null,"parent":"?w","inputs":{"CONDITION":[2,"?y"],"SUBSTACK":[2,"?z"],"SUBSTACK2":[2,"f?"]},"fields":{},"shadow":false,"topLevel":false},"?y":{"opcode":"operator_gt","next":null,"parent":"f=","inputs":{"OPERAND1":[3,"a6d",[10,""]],"OPERAND2":[1,[10,"0x0Dffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6d":{"opcode":"argument_reporter_string_number","next":null,"parent":"?y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?z":{"opcode":"data_setvariableto","next":null,"parent":"f=","inputs":{"VALUE":[3,"?A",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?A":{"opcode":"data_itemoflist","next":null,"parent":"?z","inputs":{"INDEX":[3,"?B",[7,"0"]]},"fields":{"LIST":["CARTRAM","Wdv|s)sKi5w2g!ptBTWv"]},"shadow":false,"topLevel":false},"?B":{"opcode":"operator_subtract","next":null,"parent":"?A","inputs":{"NUM1":[3,"a6e",[4,"0"]],"NUM2":[1,[4,"0x0Dffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6e":{"opcode":"argument_reporter_string_number","next":null,"parent":"?B","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f?":{"opcode":"control_if_else","next":null,"parent":"f=","inputs":{"CONDITION":[2,"?C"],"SUBSTACK":[2,"?D"],"SUBSTACK2":[2,"f@"]},"fields":{},"shadow":false,"topLevel":false},"?C":{"opcode":"operator_gt","next":null,"parent":"f?","inputs":{"OPERAND1":[3,"a6f",[10,""]],"OPERAND2":[1,[10,"0x07ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6f":{"opcode":"argument_reporter_string_number","next":null,"parent":"?C","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?D":{"opcode":"data_setvariableto","next":null,"parent":"f?","inputs":{"VALUE":[3,"?E",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?E":{"opcode":"data_itemoflist","next":null,"parent":"?D","inputs":{"INDEX":[3,"?F",[7,"0"]]},"fields":{"LIST":["PAKROM","jJsF,.RD8,2t*cl*n?p6"]},"shadow":false,"topLevel":false},"?F":{"opcode":"operator_subtract","next":null,"parent":"?E","inputs":{"NUM1":[3,"a6g",[4,"0"]],"NUM2":[1,[4,"0x07ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6g":{"opcode":"argument_reporter_string_number","next":null,"parent":"?F","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f@":{"opcode":"control_if_else","next":null,"parent":"f?","inputs":{"CONDITION":[2,"?G"],"SUBSTACK":[2,"?H"],"SUBSTACK2":[2,"f["]},"fields":{},"shadow":false,"topLevel":false},"?G":{"opcode":"operator_gt","next":null,"parent":"f@","inputs":{"OPERAND1":[3,"a6h",[10,""]],"OPERAND2":[1,[10,"0x06ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6h":{"opcode":"argument_reporter_string_number","next":null,"parent":"?G","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?H":{"opcode":"data_setvariableto","next":null,"parent":"f@","inputs":{"VALUE":[3,"?I",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?I":{"opcode":"data_itemoflist","next":null,"parent":"?H","inputs":{"INDEX":[3,"?J",[7,"0"]]},"fields":{"LIST":["OAM","c;0;9@3O4n4FloYvD_w?"]},"shadow":false,"topLevel":false},"?J":{"opcode":"operator_subtract","next":null,"parent":"?I","inputs":{"NUM1":[3,"a6i",[4,"0"]],"NUM2":[1,[4,"0x06ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6i":{"opcode":"argument_reporter_string_number","next":null,"parent":"?J","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f[":{"opcode":"control_if_else","next":null,"parent":"f@","inputs":{"CONDITION":[2,"?K"],"SUBSTACK":[2,"?L"],"SUBSTACK2":[2,"f]"]},"fields":{},"shadow":false,"topLevel":false},"?K":{"opcode":"operator_gt","next":null,"parent":"f[","inputs":{"OPERAND1":[3,"a6j",[10,""]],"OPERAND2":[1,[10,"0x05ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6j":{"opcode":"argument_reporter_string_number","next":null,"parent":"?K","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?L":{"opcode":"data_setvariableto","next":null,"parent":"f[","inputs":{"VALUE":[3,"?M",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?M":{"opcode":"data_itemoflist","next":null,"parent":"?L","inputs":{"INDEX":[3,"?N",[7,"0"]]},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},"?N":{"opcode":"operator_subtract","next":null,"parent":"?M","inputs":{"NUM1":[3,"a6k",[4,"0"]],"NUM2":[1,[4,"0x05ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6k":{"opcode":"argument_reporter_string_number","next":null,"parent":"?N","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f]":{"opcode":"control_if_else","next":null,"parent":"f[","inputs":{"CONDITION":[2,"?O"],"SUBSTACK":[2,"?P"],"SUBSTACK2":[2,"f^"]},"fields":{},"shadow":false,"topLevel":false},"?O":{"opcode":"operator_gt","next":null,"parent":"f]","inputs":{"OPERAND1":[3,"a6l",[10,""]],"OPERAND2":[1,[10,"0x04ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6l":{"opcode":"argument_reporter_string_number","next":null,"parent":"?O","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?P":{"opcode":"data_setvariableto","next":null,"parent":"f]","inputs":{"VALUE":[3,"?Q",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?Q":{"opcode":"data_itemoflist","next":null,"parent":"?P","inputs":{"INDEX":[3,"?R",[7,"0"]]},"fields":{"LIST":["PALRAM","-27BR8:6fV0T3v$8oN%("]},"shadow":false,"topLevel":false},"?R":{"opcode":"operator_subtract","next":null,"parent":"?Q","inputs":{"NUM1":[3,"a6m",[4,"0"]],"NUM2":[1,[4,"0x04ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6m":{"opcode":"argument_reporter_string_number","next":null,"parent":"?R","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f^":{"opcode":"control_if_else","next":null,"parent":"f]","inputs":{"CONDITION":[2,"?S"],"SUBSTACK":[2,"?T"],"SUBSTACK2":[2,"f_"]},"fields":{},"shadow":false,"topLevel":false},"?S":{"opcode":"operator_gt","next":null,"parent":"f^","inputs":{"OPERAND1":[3,"a6n",[10,""]],"OPERAND2":[1,[10,"0x03ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6n":{"opcode":"argument_reporter_string_number","next":null,"parent":"?S","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?T":{"opcode":"data_setvariableto","next":null,"parent":"f^","inputs":{"VALUE":[3,"?U",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?U":{"opcode":"data_itemoflist","next":null,"parent":"?T","inputs":{"INDEX":[3,"?V",[7,"0"]]},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},"?V":{"opcode":"operator_subtract","next":null,"parent":"?U","inputs":{"NUM1":[3,"a6o",[4,"0"]],"NUM2":[1,[4,"0x03ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6o":{"opcode":"argument_reporter_string_number","next":null,"parent":"?V","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f_":{"opcode":"control_if_else","next":null,"parent":"f^","inputs":{"CONDITION":[2,"?W"],"SUBSTACK":[2,"?X"],"SUBSTACK2":[2,"?Y"]},"fields":{},"shadow":false,"topLevel":false},"?W":{"opcode":"operator_gt","next":null,"parent":"f_","inputs":{"OPERAND1":[3,"a6p",[10,""]],"OPERAND2":[1,[10,"0x02ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6p":{"opcode":"argument_reporter_string_number","next":null,"parent":"?W","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?X":{"opcode":"data_setvariableto","next":null,"parent":"f_","inputs":{"VALUE":[3,"?Z",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?Z":{"opcode":"data_itemoflist","next":null,"parent":"?X","inputs":{"INDEX":[3,"?0",[7,"0"]]},"fields":{"LIST":["IWRAM","H{~g(O6*Cm~XzS0VV1;."]},"shadow":false,"topLevel":false},"?0":{"opcode":"operator_subtract","next":null,"parent":"?Z","inputs":{"NUM1":[3,"a6q",[4,"0"]],"NUM2":[1,[4,"0x02ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6q":{"opcode":"argument_reporter_string_number","next":null,"parent":"?0","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?Y":{"opcode":"data_setvariableto","next":null,"parent":"f_","inputs":{"VALUE":[3,"?1",[10,""]]},"fields":{"VARIABLE":["read.single.return","z2kH2+fy7b68(-[dirGi"]},"shadow":false,"topLevel":false},"?1":{"opcode":"data_itemoflist","next":null,"parent":"?Y","inputs":{"INDEX":[3,"?2",[7,"0"]]},"fields":{"LIST":["EWRAM","m2z%[*=9RCJJ%,jzp{^w"]},"shadow":false,"topLevel":false},"?2":{"opcode":"operator_subtract","next":null,"parent":"?1","inputs":{"NUM1":[3,"a6r",[4,"0"]],"NUM2":[1,[4,"0x01ffffff"]]},"fields":{},"shadow":false,"topLevel":false},"a6r":{"opcode":"argument_reporter_string_number","next":null,"parent":"?2","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a6s":{"opcode":"event_whenbroadcastreceived","next":"?3","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Game Boy Advance","=S|@YQlTW;?zdH4GQx;V"]},"shadow":false,"topLevel":true,"x":48,"y":336},"?3":{"opcode":"control_stop","next":"?4","parent":"a6s","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"?4":{"opcode":"procedures_call","next":"a6t","parent":"?3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"reset_mem","argumentids":"[]","warp":"true"}},"a6t":{"opcode":"event_broadcast","next":null,"parent":"?4","inputs":{"BROADCAST_INPUT":[1,[11,"reset","I[k!}33MuoO@u.@pU!xX"]]},"fields":{},"shadow":false,"topLevel":false},"a6u":{"opcode":"event_whenbroadcastreceived","next":"?5","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["reset","I[k!}33MuoO@u.@pU!xX"]},"shadow":false,"topLevel":true,"x":48,"y":5144},"?5":{"opcode":"pen_clear","next":"?6","parent":"a6u","inputs":{},"fields":{},"shadow":false,"topLevel":false},"?6":{"opcode":"pen_setPenSizeTo","next":"?7","parent":"?5","inputs":{"SIZE":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"?7":{"opcode":"data_deletealloflist","next":"t:","parent":"?6","inputs":{},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"t:":{"opcode":"control_repeat","next":"t;","parent":"?7","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a6v"]},"fields":{},"shadow":false,"topLevel":false},"a6v":{"opcode":"data_addtolist","next":null,"parent":"t:","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"t;":{"opcode":"data_replaceitemoflist","next":"?8","parent":"t:","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"?9",[10,""]]},"fields":{"LIST":["_r","ZB/w=2p^tT17{[.^{4lN"]},"shadow":false,"topLevel":false},"?9":{"opcode":"operator_add","next":null,"parent":"t;","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"a6w",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a6w":{"opcode":"operator_join","next":null,"parent":"?9","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"07fffffc"]]},"fields":{},"shadow":false,"topLevel":false},"?8":{"opcode":"data_setvariableto","next":"?!","parent":"t;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["flags.z","wmU,n(01t/a%O{Fxi,s+"]},"shadow":false,"topLevel":false},"?!":{"opcode":"data_setvariableto","next":"?#","parent":"?8","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["flags.c","jHyV3Vm:Q@rIq$YA]IYG"]},"shadow":false,"topLevel":false},"?#":{"opcode":"data_setvariableto","next":"?%","parent":"?!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["flags.n","3RS/JX,H|~mNq!j_oSzZ"]},"shadow":false,"topLevel":false},"?%":{"opcode":"data_setvariableto","next":"?(","parent":"?#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["flags.v","7F=kKfGq93{+Pi_o%2}h"]},"shadow":false,"topLevel":false},"?(":{"opcode":"data_setvariableto","next":"?)","parent":"?%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["bg_mode","e7z.M3UfDT+/9?B)I?%$"]},"shadow":false,"topLevel":false},"?)":{"opcode":"data_setvariableto","next":"?*","parent":"?(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["program.done","|L9Pi}/65.4`qdjy|%j0"]},"shadow":false,"topLevel":false},"?*":{"opcode":"control_forever","next":null,"parent":"?)","inputs":{"SUBSTACK":[2,"?+"]},"fields":{},"shadow":false,"topLevel":false},"?+":{"opcode":"sensing_resettimer","next":"?,","parent":"?*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"?,":{"opcode":"procedures_call","next":"a6x","parent":"?+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"frame","argumentids":"[]","warp":"true"}},"a6x":{"opcode":"procedures_call","next":null,"parent":"?,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render_screen","argumentids":"[]","warp":"true"}},"a6y":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"t="]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":4568},"t=":{"opcode":"procedures_prototype","next":null,"parent":"a6y","inputs":{"C@v/#-D)/sLZl$]4iCGV":[1,"a6z"],"-}3v:x?GBkHDmG%c}YN%":[1,"a6A"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s & %s","argumentids":"[\"C@v/#-D)/sLZl$]4iCGV\",\"-}3v:x?GBkHDmG%c}YN%\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a6z":{"opcode":"argument_reporter_string_number","next":null,"parent":"t=","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a6A":{"opcode":"argument_reporter_string_number","next":null,"parent":"t=","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"a6B":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"t?"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":4712},"t?":{"opcode":"procedures_prototype","next":null,"parent":"a6B","inputs":{",j$-Y)IQB-xhI2uuwZCf":[1,"a6C"],"W+jGntmnzsh{woyse]3/":[1,"a6D"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s | %s","argumentids":"[\",j$-Y)IQB-xhI2uuwZCf\",\"W+jGntmnzsh{woyse]3/\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"a6C":{"opcode":"argument_reporter_string_number","next":null,"parent":"t?","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a6D":{"opcode":"argument_reporter_string_number","next":null,"parent":"t?","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"a6E":{"opcode":"event_whenbroadcastreceived","next":"?-","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["hard_reset","sAp!P:%BE4X1aTl2,yZo"]},"shadow":false,"topLevel":true,"x":48,"y":64},"?-":{"opcode":"control_stop","next":"?.","parent":"a6E","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"?.":{"opcode":"procedures_call","next":"a6F","parent":"?-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"reset_mem","argumentids":"[]","warp":"true"}},"a6F":{"opcode":"event_broadcast","next":null,"parent":"?.","inputs":{"BROADCAST_INPUT":[1,[11,"reset","I[k!}33MuoO@u.@pU!xX"]]},"fields":{},"shadow":false,"topLevel":false},"a6G":{"opcode":"event_whenflagclicked","next":"a6H","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2762,"y":64},"a6H":{"opcode":"looks_hide","next":null,"parent":"a6G","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a6I":{"opcode":"event_whenbroadcastreceived","next":"?/","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":2762,"y":240},"?/":{"opcode":"data_deletealloflist","next":"?:","parent":"a6I","inputs":{},"fields":{"LIST":["CARTRAM","Wdv|s)sKi5w2g!ptBTWv"]},"shadow":false,"topLevel":false},"?:":{"opcode":"data_deletealloflist","next":"?;","parent":"?/","inputs":{},"fields":{"LIST":["EWRAM","m2z%[*=9RCJJ%,jzp{^w"]},"shadow":false,"topLevel":false},"?;":{"opcode":"data_deletealloflist","next":"?=","parent":"?:","inputs":{},"fields":{"LIST":["IORAM","pas}mCv+v#nSd51Kn#1$"]},"shadow":false,"topLevel":false},"?=":{"opcode":"data_deletealloflist","next":"??","parent":"?;","inputs":{},"fields":{"LIST":["IWRAM","H{~g(O6*Cm~XzS0VV1;."]},"shadow":false,"topLevel":false},"??":{"opcode":"data_deletealloflist","next":"?@","parent":"?=","inputs":{},"fields":{"LIST":["OAM","c;0;9@3O4n4FloYvD_w?"]},"shadow":false,"topLevel":false},"?@":{"opcode":"data_deletealloflist","next":"?[","parent":"??","inputs":{},"fields":{"LIST":["PALRAM","-27BR8:6fV0T3v$8oN%("]},"shadow":false,"topLevel":false},"?[":{"opcode":"data_deletealloflist","next":"a6J","parent":"?@","inputs":{},"fields":{"LIST":["VRAM","BIIaeU[k,+7^!J2afXkT"]},"shadow":false,"topLevel":false},"a6J":{"opcode":"data_deletealloflist","next":null,"parent":"?[","inputs":{},"fields":{"LIST":["_pixels","AY0ltbJCCbW!P`l`UfON"]},"shadow":false,"topLevel":false},"a6K":{"opcode":"event_whenbroadcastreceived","next":"a6L","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":833,"y":402},"a6L":{"opcode":"control_stop","next":null,"parent":"a6K","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}}},"comments":{"/":{"blockId":"a","x":304,"y":690,"width":200,"height":200,"minimized":true,"text":"00E0- cls- clear the screen"},":":{"blockId":"f","x":3087,"y":1672,"width":200,"height":200,"minimized":true,"text":"5"},";":{"blockId":"g","x":3070,"y":1912,"width":200,"height":200,"minimized":true,"text":"6"},"W":{"blockId":"b","x":275,"y":1023,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"lq":{"blockId":"n","x":372,"y":1263,"width":200,"height":200,"minimized":true,"text":"1NNN"},"lr":{"blockId":"o","x":419,"y":1464,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum "},"ls":{"blockId":"p","x":379,"y":1709,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"lt":{"blockId":"q","x":701,"y":1912,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"lu":{"blockId":"r","x":1137,"y":2163,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"lw":{"blockId":"D","x":658,"y":2399,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"lx":{"blockId":"F","x":1094,"y":2576,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"ly":{"blockId":"m","x":739,"y":2866,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"lz":{"blockId":"t","x":613,"y":3104,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"lA":{"blockId":"H","x":377,"y":3738,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"G=":{"blockId":"a:","x":526,"y":4381,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"lB":{"blockId":"s","x":1062,"y":5021,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"lC":{"blockId":"I","x":961,"y":5367,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"lD":{"blockId":"u","x":916,"y":5720,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"lE":{"blockId":"J","x":938,"y":6038,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"lH":{"blockId":"v","x":1054,"y":6391,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"lI":{"blockId":"G","x":1143,"y":7041,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"lJ":{"blockId":"w","x":914,"y":7276,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"lK":{"blockId":"x","x":900,"y":7469,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"lN":{"blockId":"y","x":706,"y":7697,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"lP":{"blockId":"K","x":643,"y":8343,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"lU":{"blockId":"a,","x":761,"y":9904,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"lV":{"blockId":"a-","x":1024,"y":9995,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"lZ":{"blockId":"z","x":726,"y":10177,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"GJ":{"blockId":"rN","x":679,"y":10374,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"l1":{"blockId":"L","x":837,"y":11186,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"l2":{"blockId":"M","x":817,"y":11389,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"l3":{"blockId":"A","x":975,"y":11587,"width":200,"height":200,"minimized":false,"text":"fx1e- adi vr"},"l5":{"blockId":"N","x":996,"y":11830,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"l6":{"blockId":"C","x":918,"y":12088,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"l7":{"blockId":"l","x":818,"y":12255,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"l8":{"blockId":"B","x":857,"y":12671,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"l9":{"blockId":"b)","x":887,"y":13482,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"l!":{"blockId":"b+","x":723,"y":14098,"width":200,"height":200,"minimized":false,"text":"FX75- SCHIP"},"l#":{"blockId":"b/","x":348,"y":14276,"width":200,"height":200,"minimized":false,"text":"FX85- SCHIP"},"buP":{"blockId":"eH","x":55,"y":14402,"width":200,"height":200,"minimized":false,"text":"00FD(SCHIP)- EXIT N- Exits the emulator."},"aI":{"blockId":"S","x":3035,"y":264,"width":200,"height":200,"minimized":false,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"aJ":{"blockId":"T","x":3035,"y":466,"width":200,"height":200,"minimized":true,"text":"0"},"aK":{"blockId":"U","x":3038,"y":705,"width":200,"height":200,"minimized":true,"text":"1"},"aL":{"blockId":"V","x":3043,"y":951,"width":200,"height":200,"minimized":true,"text":"2"},"aM":{"blockId":"2","x":3030,"y":1183,"width":200,"height":200,"minimized":true,"text":"3"},"aN":{"blockId":"3","x":3036,"y":1428,"width":200,"height":200,"minimized":true,"text":"4"},"}":{"blockId":"~","x":5974,"y":209,"width":216,"height":229,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"aa":{"blockId":"fr","x":5733,"y":3417,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"ab":{"blockId":"fs","x":2209,"y":350,"width":179,"height":154,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"ac":{"blockId":"8","x":2213,"y":1706,"width":197,"height":130,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":4,"visible":false,"x":240,"y":-160,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"DS Screens","variables":{"}^!zcd7*?=frof;O)@)i":["x",100],"Cs^]Xb{z|}3IPS([*+Id":["y","0"],"uT+UflmU:r]iynT/z;M0":["arm9.read_return",0],"!72:zgELj#}TT9OT7jqU":["arm7.read_return",0],",[3+,ez*wmn?Q;]`x!%%":["core.byte_return",0],"=#O@Exty[GB(D0k,a1(L":["render.dummy","0"]},"lists":{},"broadcasts":{},"blocks":{"8":{"opcode":"control_if_else","next":null,"parent":"f`","inputs":{"CONDITION":[2,"?]"],"SUBSTACK":[2,"f{"],"SUBSTACK2":[2,"f|"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ac"},"?^":{"opcode":"data_setvariableto","next":null,"parent":"~","inputs":{"VALUE":[3,"?_",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"?`":{"opcode":"operator_divide","next":null,"parent":"?{","inputs":{"NUM1":[3,"?|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"?|":{"opcode":"operator_subtract","next":null,"parent":"?`","inputs":{"NUM1":[3,"a6M",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"?}":{"opcode":"operator_divide","next":null,"parent":"?~","inputs":{"NUM1":[3,"@a",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"?~":{"opcode":"operator_mathop","next":null,"parent":"@b","inputs":{"NUM":[3,"?}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@a":{"opcode":"operator_subtract","next":null,"parent":"?}","inputs":{"NUM1":[3,"a6N",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"@b":{"opcode":"operator_add","next":null,"parent":"@c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@d":{"opcode":"operator_gt","next":null,"parent":"f}","inputs":{"OPERAND1":[3,"a6O",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"@e":{"opcode":"operator_gt","next":null,"parent":"f~","inputs":{"OPERAND1":[3,"a6P",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"@f":{"opcode":"data_setvariableto","next":null,"parent":"f~","inputs":{"VALUE":[3,"@g",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@h":{"opcode":"operator_gt","next":null,"parent":"fs","inputs":{"OPERAND1":[3,"a6Q",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"@i":{"opcode":"operator_add","next":null,"parent":"?_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"?_":{"opcode":"data_itemoflist","next":null,"parent":"?^","inputs":{"INDEX":[3,"@i",[7,0]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"?{":{"opcode":"operator_mathop","next":null,"parent":"@i","inputs":{"NUM":[3,"?`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@g":{"opcode":"data_itemoflist","next":null,"parent":"@f","inputs":{"INDEX":[3,"@j",[7,0]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"@j":{"opcode":"operator_add","next":null,"parent":"@g","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@k":{"opcode":"operator_mathop","next":null,"parent":"@j","inputs":{"NUM":[3,"@l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@l":{"opcode":"operator_divide","next":null,"parent":"@k","inputs":{"NUM1":[3,"@m",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@m":{"opcode":"operator_subtract","next":null,"parent":"@l","inputs":{"NUM1":[3,"a6R",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"@n":{"opcode":"operator_gt","next":null,"parent":"ga","inputs":{"OPERAND1":[3,"a6S",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"@o":{"opcode":"operator_gt","next":null,"parent":"gb","inputs":{"OPERAND1":[3,"a6T",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"@p":{"opcode":"data_setvariableto","next":null,"parent":"gb","inputs":{"VALUE":[3,"@q",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@r":{"opcode":"procedures_definition","next":"f}","parent":null,"inputs":{"custom_block":[1,"@s"]},"fields":{},"shadow":false,"topLevel":true,"x":1752,"y":64},"@s":{"opcode":"procedures_prototype","next":null,"parent":"@r","inputs":{"F:1=0LFS=ykmsAVLMbo@":[1,"a6U"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"@t":{"opcode":"operator_divide","next":null,"parent":"t@","inputs":{"NUM1":[3,"a6V",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"a6U":{"opcode":"argument_reporter_string_number","next":null,"parent":"@s","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"f}":{"opcode":"control_if_else","next":null,"parent":"@r","inputs":{"CONDITION":[2,"@d"],"SUBSTACK":[2,"f~"],"SUBSTACK2":[2,"ga"]},"fields":{},"shadow":false,"topLevel":false},"a6O":{"opcode":"argument_reporter_string_number","next":null,"parent":"@d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f~":{"opcode":"control_if_else","next":null,"parent":"f}","inputs":{"CONDITION":[2,"@e"],"SUBSTACK":[2,"fs"],"SUBSTACK2":[2,"@f"]},"fields":{},"shadow":false,"topLevel":false},"a6P":{"opcode":"argument_reporter_string_number","next":null,"parent":"@e","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"fs":{"opcode":"control_if_else","next":null,"parent":"f~","inputs":{"CONDITION":[2,"@h"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ab"},"a6Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"@h","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a6R":{"opcode":"argument_reporter_string_number","next":null,"parent":"@m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ga":{"opcode":"control_if_else","next":null,"parent":"f}","inputs":{"CONDITION":[2,"@n"],"SUBSTACK":[2,"gb"],"SUBSTACK2":[2,"f`"]},"fields":{},"shadow":false,"topLevel":false},"a6S":{"opcode":"argument_reporter_string_number","next":null,"parent":"@n","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gb":{"opcode":"control_if_else","next":null,"parent":"ga","inputs":{"CONDITION":[2,"@o"],"SUBSTACK":[2,"gc"],"SUBSTACK2":[2,"@p"]},"fields":{},"shadow":false,"topLevel":false},"a6T":{"opcode":"argument_reporter_string_number","next":null,"parent":"@o","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gc":{"opcode":"control_if_else","next":null,"parent":"gb","inputs":{"CONDITION":[2,"@u"],"SUBSTACK":[2,"gd"],"SUBSTACK2":[2,"@v"]},"fields":{},"shadow":false,"topLevel":false},"@u":{"opcode":"operator_gt","next":null,"parent":"gc","inputs":{"OPERAND1":[3,"a6W",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6W":{"opcode":"argument_reporter_string_number","next":null,"parent":"@u","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gd":{"opcode":"control_if_else","next":null,"parent":"gc","inputs":{"CONDITION":[2,"@w"],"SUBSTACK":[2,"@x"],"SUBSTACK2":[2,"@y"]},"fields":{},"shadow":false,"topLevel":false},"@w":{"opcode":"operator_gt","next":null,"parent":"gd","inputs":{"OPERAND1":[3,"a6X",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6X":{"opcode":"argument_reporter_string_number","next":null,"parent":"@w","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@x":{"opcode":"data_setvariableto","next":null,"parent":"gd","inputs":{"VALUE":[3,"@z",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@z":{"opcode":"data_itemoflist","next":null,"parent":"@x","inputs":{"INDEX":[3,"@A",[7,0]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"@A":{"opcode":"operator_add","next":null,"parent":"@z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@B",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@B":{"opcode":"operator_mathop","next":null,"parent":"@A","inputs":{"NUM":[3,"@C",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@C":{"opcode":"operator_divide","next":null,"parent":"@B","inputs":{"NUM1":[3,"@D",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@D":{"opcode":"operator_subtract","next":null,"parent":"@C","inputs":{"NUM1":[3,"a6Y",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"a6Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"@D","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@y":{"opcode":"data_setvariableto","next":null,"parent":"gd","inputs":{"VALUE":[3,"@E",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@E":{"opcode":"data_itemoflist","next":null,"parent":"@y","inputs":{"INDEX":[3,"@F",[7,0]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"@F":{"opcode":"operator_add","next":null,"parent":"@E","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@G",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@G":{"opcode":"operator_mathop","next":null,"parent":"@F","inputs":{"NUM":[3,"@H",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@H":{"opcode":"operator_divide","next":null,"parent":"@G","inputs":{"NUM1":[3,"@I",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@I":{"opcode":"operator_subtract","next":null,"parent":"@H","inputs":{"NUM1":[3,"a6Z",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"a6Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"@I","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@v":{"opcode":"data_setvariableto","next":null,"parent":"gc","inputs":{"VALUE":[3,"@J",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@J":{"opcode":"data_itemoflist","next":null,"parent":"@v","inputs":{"INDEX":[3,"@K",[7,0]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"@K":{"opcode":"operator_add","next":null,"parent":"@J","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@L":{"opcode":"operator_mathop","next":null,"parent":"@K","inputs":{"NUM":[3,"@M",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@M":{"opcode":"operator_divide","next":null,"parent":"@L","inputs":{"NUM1":[3,"@N",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@N":{"opcode":"operator_subtract","next":null,"parent":"@M","inputs":{"NUM1":[3,"a60",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"a60":{"opcode":"argument_reporter_string_number","next":null,"parent":"@N","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@q":{"opcode":"data_itemoflist","next":null,"parent":"@p","inputs":{"INDEX":[3,"@O",[7,0]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"@O":{"opcode":"operator_add","next":null,"parent":"@q","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@P",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@P":{"opcode":"operator_mathop","next":null,"parent":"@O","inputs":{"NUM":[3,"@Q",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@Q":{"opcode":"operator_divide","next":null,"parent":"@P","inputs":{"NUM1":[3,"@R",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@R":{"opcode":"operator_subtract","next":null,"parent":"@Q","inputs":{"NUM1":[3,"a61",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"a61":{"opcode":"argument_reporter_string_number","next":null,"parent":"@R","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f`":{"opcode":"control_if_else","next":null,"parent":"ga","inputs":{"CONDITION":[2,"@S"],"SUBSTACK":[2,"@T"],"SUBSTACK2":[2,"8"]},"fields":{},"shadow":false,"topLevel":false},"@S":{"opcode":"operator_gt","next":null,"parent":"f`","inputs":{"OPERAND1":[3,"a62",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a62":{"opcode":"argument_reporter_string_number","next":null,"parent":"@S","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@T":{"opcode":"data_setvariableto","next":null,"parent":"f`","inputs":{"VALUE":[3,"@U",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@U":{"opcode":"data_itemoflist","next":null,"parent":"@T","inputs":{"INDEX":[3,"@V",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"@V":{"opcode":"operator_add","next":null,"parent":"@U","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@W",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@W":{"opcode":"operator_mathop","next":null,"parent":"@V","inputs":{"NUM":[3,"@X",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@X":{"opcode":"operator_divide","next":null,"parent":"@W","inputs":{"NUM1":[3,"@Y",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@Y":{"opcode":"operator_subtract","next":null,"parent":"@X","inputs":{"NUM1":[3,"a63",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a63":{"opcode":"argument_reporter_string_number","next":null,"parent":"@Y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"?]":{"opcode":"operator_gt","next":null,"parent":"8","inputs":{"OPERAND1":[3,"a64",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"a64":{"opcode":"argument_reporter_string_number","next":null,"parent":"?]","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f{":{"opcode":"control_if_else","next":null,"parent":"8","inputs":{"CONDITION":[2,"@Z"],"SUBSTACK":[2,"ge"],"SUBSTACK2":[2,"@0"]},"fields":{},"shadow":false,"topLevel":false},"@Z":{"opcode":"operator_gt","next":null,"parent":"f{","inputs":{"OPERAND1":[3,"a65",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a65":{"opcode":"argument_reporter_string_number","next":null,"parent":"@Z","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ge":{"opcode":"control_if_else","next":null,"parent":"f{","inputs":{"CONDITION":[2,"@1"],"SUBSTACK":[2,"@2"],"SUBSTACK2":[2,"@3"]},"fields":{},"shadow":false,"topLevel":false},"@1":{"opcode":"operator_gt","next":null,"parent":"ge","inputs":{"OPERAND1":[3,"a66",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a66":{"opcode":"argument_reporter_string_number","next":null,"parent":"@1","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@2":{"opcode":"data_setvariableto","next":null,"parent":"ge","inputs":{"VALUE":[3,"@4",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@4":{"opcode":"data_itemoflist","next":null,"parent":"@2","inputs":{"INDEX":[3,"@5",[7,0]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"@5":{"opcode":"operator_add","next":null,"parent":"@4","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@6":{"opcode":"operator_mathop","next":null,"parent":"@5","inputs":{"NUM":[3,"@7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@7":{"opcode":"operator_divide","next":null,"parent":"@6","inputs":{"NUM1":[3,"@8",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@8":{"opcode":"operator_subtract","next":null,"parent":"@7","inputs":{"NUM1":[3,"a67",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"a67":{"opcode":"argument_reporter_string_number","next":null,"parent":"@8","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@3":{"opcode":"data_setvariableto","next":null,"parent":"ge","inputs":{"VALUE":[3,"@9",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@9":{"opcode":"data_itemoflist","next":null,"parent":"@3","inputs":{"INDEX":[3,"@!",[7,0]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"@!":{"opcode":"operator_add","next":null,"parent":"@9","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@#":{"opcode":"operator_mathop","next":null,"parent":"@!","inputs":{"NUM":[3,"@%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@%":{"opcode":"operator_divide","next":null,"parent":"@#","inputs":{"NUM1":[3,"@(",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@(":{"opcode":"operator_subtract","next":null,"parent":"@%","inputs":{"NUM1":[3,"a68",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"a68":{"opcode":"argument_reporter_string_number","next":null,"parent":"@(","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@0":{"opcode":"data_setvariableto","next":null,"parent":"f{","inputs":{"VALUE":[3,"@)",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@)":{"opcode":"data_itemoflist","next":null,"parent":"@0","inputs":{"INDEX":[3,"@*",[7,0]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"@*":{"opcode":"operator_add","next":null,"parent":"@)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@+":{"opcode":"operator_mathop","next":null,"parent":"@*","inputs":{"NUM":[3,"@,",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@,":{"opcode":"operator_divide","next":null,"parent":"@+","inputs":{"NUM1":[3,"@-",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@-":{"opcode":"operator_subtract","next":null,"parent":"@,","inputs":{"NUM1":[3,"a69",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"a69":{"opcode":"argument_reporter_string_number","next":null,"parent":"@-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"f|":{"opcode":"control_if_else","next":null,"parent":"8","inputs":{"CONDITION":[2,"@."],"SUBSTACK":[2,"gf"],"SUBSTACK2":[2,"@/"]},"fields":{},"shadow":false,"topLevel":false},"@.":{"opcode":"operator_gt","next":null,"parent":"f|","inputs":{"OPERAND1":[3,"a6!",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"a6!":{"opcode":"argument_reporter_string_number","next":null,"parent":"@.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gf":{"opcode":"control_if_else","next":null,"parent":"f|","inputs":{"CONDITION":[2,"@:"],"SUBSTACK":[2,"@;"],"SUBSTACK2":[2,"@="]},"fields":{},"shadow":false,"topLevel":false},"@:":{"opcode":"operator_gt","next":null,"parent":"gf","inputs":{"OPERAND1":[3,"a6#",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"a6#":{"opcode":"argument_reporter_string_number","next":null,"parent":"@:","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@;":{"opcode":"data_setvariableto","next":null,"parent":"gf","inputs":{"VALUE":[3,"@?",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@?":{"opcode":"data_itemoflist","next":null,"parent":"@;","inputs":{"INDEX":[3,"@@",[7,0]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"@@":{"opcode":"operator_add","next":null,"parent":"@?","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@[":{"opcode":"operator_mathop","next":null,"parent":"@@","inputs":{"NUM":[3,"@]",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@]":{"opcode":"operator_divide","next":null,"parent":"@[","inputs":{"NUM1":[3,"@^",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@^":{"opcode":"operator_subtract","next":null,"parent":"@]","inputs":{"NUM1":[3,"a6%",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"a6%":{"opcode":"argument_reporter_string_number","next":null,"parent":"@^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@=":{"opcode":"data_setvariableto","next":null,"parent":"gf","inputs":{"VALUE":[3,"@_",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@_":{"opcode":"data_itemoflist","next":null,"parent":"@=","inputs":{"INDEX":[3,"@`",[7,0]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"@`":{"opcode":"operator_add","next":null,"parent":"@_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"@{":{"opcode":"operator_mathop","next":null,"parent":"@`","inputs":{"NUM":[3,"@|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@|":{"opcode":"operator_divide","next":null,"parent":"@{","inputs":{"NUM1":[3,"@}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"@}":{"opcode":"operator_subtract","next":null,"parent":"@|","inputs":{"NUM1":[3,"a6(",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"a6(":{"opcode":"argument_reporter_string_number","next":null,"parent":"@}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"@/":{"opcode":"data_setvariableto","next":null,"parent":"f|","inputs":{"VALUE":[3,"@~",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"@~":{"opcode":"data_itemoflist","next":null,"parent":"@/","inputs":{"INDEX":[3,"[a",[7,0]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"[a":{"opcode":"operator_add","next":null,"parent":"@~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[b",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[b":{"opcode":"operator_mathop","next":null,"parent":"[a","inputs":{"NUM":[3,"[c",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[c":{"opcode":"operator_divide","next":null,"parent":"[b","inputs":{"NUM1":[3,"[d",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[d":{"opcode":"operator_subtract","next":null,"parent":"[c","inputs":{"NUM1":[3,"a6)",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a6)":{"opcode":"argument_reporter_string_number","next":null,"parent":"[d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[e":{"opcode":"procedures_definition","next":"[f","parent":null,"inputs":{"custom_block":[1,"a6*"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":904},"a6*":{"opcode":"procedures_prototype","next":null,"parent":"[e","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"display.render_screen","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"[f":{"opcode":"data_setvariableto","next":"[g","parent":"[e","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["y","Cs^]Xb{z|}3IPS([*+Id"]},"shadow":false,"topLevel":false},"[g":{"opcode":"control_repeat","next":null,"parent":"[f","inputs":{"TIMES":[1,[6,"192"]],"SUBSTACK":[2,"[h"]},"fields":{},"shadow":false,"topLevel":false},"[h":{"opcode":"data_setvariableto","next":"t[","parent":"[g","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["x","}^!zcd7*?=frof;O)@)i"]},"shadow":false,"topLevel":false},"t[":{"opcode":"control_repeat","next":"[i","parent":"[h","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"[j"]},"fields":{},"shadow":false,"topLevel":false},"[j":{"opcode":"procedures_call","next":"t]","parent":"t[","inputs":{"=3ItHb4}Mtq5$/|kShM`":[3,[12,"x","}^!zcd7*?=frof;O)@)i"],[10,""]],"N6Mn7{5Oh3b`:$~(8o.m":[3,[12,"y","Cs^]Xb{z|}3IPS([*+Id"],[10,""]],"y1IAePN=ud`%,_ty$?jL":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"goto pixel at %s %s on screen %s","argumentids":"[\"=3ItHb4}Mtq5$/|kShM`\",\"N6Mn7{5Oh3b`:$~(8o.m\",\"y1IAePN=ud`%,_ty$?jL\"]","warp":"true"}},"t]":{"opcode":"data_setvariableto","next":"t^","parent":"[j","inputs":{"VALUE":[3,"[k",[10,""]]},"fields":{"VARIABLE":["render.dummy","=#O@Exty[GB(D0k,a1(L"]},"shadow":false,"topLevel":false},"[k":{"opcode":"data_itemoflist","next":null,"parent":"t]","inputs":{"INDEX":[3,"[l",[7,0]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"[l":{"opcode":"operator_add","next":null,"parent":"[k","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[m",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[m":{"opcode":"operator_add","next":null,"parent":"[l","inputs":{"NUM1":[3,[12,"x","}^!zcd7*?=frof;O)@)i"],[4,0]],"NUM2":[3,"a6+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a6+":{"opcode":"operator_multiply","next":null,"parent":"[m","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"y","Cs^]Xb{z|}3IPS([*+Id"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[i":{"opcode":"pen_penUp","next":"a6,","parent":"t[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a6,":{"opcode":"data_changevariableby","next":null,"parent":"[i","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["y","Cs^]Xb{z|}3IPS([*+Id"]},"shadow":false,"topLevel":false},"[n":{"opcode":"procedures_definition","next":"gg","parent":null,"inputs":{"custom_block":[1,"[o"]},"fields":{},"shadow":false,"topLevel":true,"x":3124,"y":64},"[o":{"opcode":"procedures_prototype","next":null,"parent":"[n","inputs":{"b@)J0tZH?{E?dB[c9XHi":[1,"a6-"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a6-":{"opcode":"argument_reporter_string_number","next":null,"parent":"[o","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"gg":{"opcode":"control_if_else","next":null,"parent":"[n","inputs":{"CONDITION":[2,"[p"],"SUBSTACK":[2,"gh"],"SUBSTACK2":[2,"gi"]},"fields":{},"shadow":false,"topLevel":false},"[p":{"opcode":"operator_gt","next":null,"parent":"gg","inputs":{"OPERAND1":[3,"a6.",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6.":{"opcode":"argument_reporter_string_number","next":null,"parent":"[p","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gh":{"opcode":"control_if_else","next":null,"parent":"gg","inputs":{"CONDITION":[2,"[q"],"SUBSTACK":[2,"~"],"SUBSTACK2":[2,"gj"]},"fields":{},"shadow":false,"topLevel":false},"[q":{"opcode":"operator_gt","next":null,"parent":"gh","inputs":{"OPERAND1":[3,"a6/",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6/":{"opcode":"argument_reporter_string_number","next":null,"parent":"[q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"~":{"opcode":"control_if_else","next":null,"parent":"gh","inputs":{"CONDITION":[2,"[r"],"SUBSTACK2":[2,"?^"]},"fields":{},"shadow":false,"topLevel":false,"comment":"}"},"[r":{"opcode":"operator_gt","next":null,"parent":"~","inputs":{"OPERAND1":[3,"a6:",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6:":{"opcode":"argument_reporter_string_number","next":null,"parent":"[r","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a6M":{"opcode":"argument_reporter_string_number","next":null,"parent":"?|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gj":{"opcode":"control_if_else","next":null,"parent":"gh","inputs":{"CONDITION":[2,"[s"],"SUBSTACK":[2,"gk"],"SUBSTACK2":[2,"gl"]},"fields":{},"shadow":false,"topLevel":false},"[s":{"opcode":"operator_gt","next":null,"parent":"gj","inputs":{"OPERAND1":[3,"a6;",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6;":{"opcode":"argument_reporter_string_number","next":null,"parent":"[s","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gk":{"opcode":"control_if_else","next":null,"parent":"gj","inputs":{"CONDITION":[2,"[t"],"SUBSTACK":[2,"[u"],"SUBSTACK2":[2,"[v"]},"fields":{},"shadow":false,"topLevel":false},"[t":{"opcode":"operator_gt","next":null,"parent":"gk","inputs":{"OPERAND1":[3,"a6=",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6=":{"opcode":"argument_reporter_string_number","next":null,"parent":"[t","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[u":{"opcode":"data_setvariableto","next":null,"parent":"gk","inputs":{"VALUE":[3,"[w",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[w":{"opcode":"data_itemoflist","next":null,"parent":"[u","inputs":{"INDEX":[3,"[x",[7,0]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"[x":{"opcode":"operator_add","next":null,"parent":"[w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[y":{"opcode":"operator_mathop","next":null,"parent":"[x","inputs":{"NUM":[3,"[z",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[z":{"opcode":"operator_divide","next":null,"parent":"[y","inputs":{"NUM1":[3,"[A",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[A":{"opcode":"operator_subtract","next":null,"parent":"[z","inputs":{"NUM1":[3,"a6?",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"a6?":{"opcode":"argument_reporter_string_number","next":null,"parent":"[A","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[v":{"opcode":"data_setvariableto","next":null,"parent":"gk","inputs":{"VALUE":[3,"[B",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[B":{"opcode":"data_itemoflist","next":null,"parent":"[v","inputs":{"INDEX":[3,"[C",[7,0]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"[C":{"opcode":"operator_add","next":null,"parent":"[B","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[D":{"opcode":"operator_mathop","next":null,"parent":"[C","inputs":{"NUM":[3,"[E",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[E":{"opcode":"operator_divide","next":null,"parent":"[D","inputs":{"NUM1":[3,"[F",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[F":{"opcode":"operator_subtract","next":null,"parent":"[E","inputs":{"NUM1":[3,"a6@",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"a6@":{"opcode":"argument_reporter_string_number","next":null,"parent":"[F","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gl":{"opcode":"control_if_else","next":null,"parent":"gj","inputs":{"CONDITION":[2,"[G"],"SUBSTACK":[2,"[H"],"SUBSTACK2":[2,"[I"]},"fields":{},"shadow":false,"topLevel":false},"[G":{"opcode":"operator_gt","next":null,"parent":"gl","inputs":{"OPERAND1":[3,"a6[",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6[":{"opcode":"argument_reporter_string_number","next":null,"parent":"[G","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[H":{"opcode":"data_setvariableto","next":null,"parent":"gl","inputs":{"VALUE":[3,"[J",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[J":{"opcode":"data_itemoflist","next":null,"parent":"[H","inputs":{"INDEX":[3,"[K",[7,0]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"[K":{"opcode":"operator_add","next":null,"parent":"[J","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[L":{"opcode":"operator_mathop","next":null,"parent":"[K","inputs":{"NUM":[3,"[M",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[M":{"opcode":"operator_divide","next":null,"parent":"[L","inputs":{"NUM1":[3,"[N",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[N":{"opcode":"operator_subtract","next":null,"parent":"[M","inputs":{"NUM1":[3,"a6]",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"a6]":{"opcode":"argument_reporter_string_number","next":null,"parent":"[N","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[I":{"opcode":"data_setvariableto","next":null,"parent":"gl","inputs":{"VALUE":[3,"[O",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[O":{"opcode":"data_itemoflist","next":null,"parent":"[I","inputs":{"INDEX":[3,"[P",[7,0]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"[P":{"opcode":"operator_add","next":null,"parent":"[O","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[Q":{"opcode":"operator_mathop","next":null,"parent":"[P","inputs":{"NUM":[3,"[R",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[R":{"opcode":"operator_divide","next":null,"parent":"[Q","inputs":{"NUM1":[3,"[S",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[S":{"opcode":"operator_subtract","next":null,"parent":"[R","inputs":{"NUM1":[3,"a6^",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"a6^":{"opcode":"argument_reporter_string_number","next":null,"parent":"[S","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gi":{"opcode":"control_if_else","next":null,"parent":"gg","inputs":{"CONDITION":[2,"[T"],"SUBSTACK":[2,"gm"],"SUBSTACK2":[2,"gn"]},"fields":{},"shadow":false,"topLevel":false},"[T":{"opcode":"operator_gt","next":null,"parent":"gi","inputs":{"OPERAND1":[3,"a6_",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6_":{"opcode":"argument_reporter_string_number","next":null,"parent":"[T","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gm":{"opcode":"control_if_else","next":null,"parent":"gi","inputs":{"CONDITION":[2,"[U"],"SUBSTACK":[2,"[V"],"SUBSTACK2":[2,"go"]},"fields":{},"shadow":false,"topLevel":false},"[U":{"opcode":"operator_gt","next":null,"parent":"gm","inputs":{"OPERAND1":[3,"a6`",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6`":{"opcode":"argument_reporter_string_number","next":null,"parent":"[U","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[V":{"opcode":"data_setvariableto","next":null,"parent":"gm","inputs":{"VALUE":[3,"[W",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[W":{"opcode":"data_itemoflist","next":null,"parent":"[V","inputs":{"INDEX":[3,"[X",[7,0]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"[X":{"opcode":"operator_add","next":null,"parent":"[W","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[Y":{"opcode":"operator_mathop","next":null,"parent":"[X","inputs":{"NUM":[3,"[Z",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[Z":{"opcode":"operator_divide","next":null,"parent":"[Y","inputs":{"NUM1":[3,"[0",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[0":{"opcode":"operator_subtract","next":null,"parent":"[Z","inputs":{"NUM1":[3,"a6{",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"a6{":{"opcode":"argument_reporter_string_number","next":null,"parent":"[0","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"go":{"opcode":"control_if_else","next":null,"parent":"gm","inputs":{"CONDITION":[2,"[1"],"SUBSTACK":[2,"[2"],"SUBSTACK2":[2,"[3"]},"fields":{},"shadow":false,"topLevel":false},"[1":{"opcode":"operator_gt","next":null,"parent":"go","inputs":{"OPERAND1":[3,"a6|",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6|":{"opcode":"argument_reporter_string_number","next":null,"parent":"[1","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[2":{"opcode":"data_setvariableto","next":null,"parent":"go","inputs":{"VALUE":[3,"[4",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[4":{"opcode":"data_itemoflist","next":null,"parent":"[2","inputs":{"INDEX":[3,"[5",[7,0]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"[5":{"opcode":"operator_add","next":null,"parent":"[4","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[6":{"opcode":"operator_mathop","next":null,"parent":"[5","inputs":{"NUM":[3,"[7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[7":{"opcode":"operator_divide","next":null,"parent":"[6","inputs":{"NUM1":[3,"[8",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[8":{"opcode":"operator_subtract","next":null,"parent":"[7","inputs":{"NUM1":[3,"a6}",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"a6}":{"opcode":"argument_reporter_string_number","next":null,"parent":"[8","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[3":{"opcode":"data_setvariableto","next":null,"parent":"go","inputs":{"VALUE":[3,"@c",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"@c":{"opcode":"data_itemoflist","next":null,"parent":"[3","inputs":{"INDEX":[3,"@b",[7,0]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"a6N":{"opcode":"argument_reporter_string_number","next":null,"parent":"@a","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gn":{"opcode":"control_if_else","next":null,"parent":"gi","inputs":{"CONDITION":[2,"[9"],"SUBSTACK":[2,"gp"],"SUBSTACK2":[2,"fr"]},"fields":{},"shadow":false,"topLevel":false},"[9":{"opcode":"operator_gt","next":null,"parent":"gn","inputs":{"OPERAND1":[3,"a6~",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a6~":{"opcode":"argument_reporter_string_number","next":null,"parent":"[9","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gp":{"opcode":"control_if_else","next":null,"parent":"gn","inputs":{"CONDITION":[2,"[!"],"SUBSTACK":[2,"[#"],"SUBSTACK2":[2,"gq"]},"fields":{},"shadow":false,"topLevel":false},"[!":{"opcode":"operator_gt","next":null,"parent":"gp","inputs":{"OPERAND1":[3,"a7a",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a7a":{"opcode":"argument_reporter_string_number","next":null,"parent":"[!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[#":{"opcode":"data_setvariableto","next":null,"parent":"gp","inputs":{"VALUE":[3,"[%",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[%":{"opcode":"data_itemoflist","next":null,"parent":"[#","inputs":{"INDEX":[3,"[(",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"[(":{"opcode":"operator_add","next":null,"parent":"[%","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[)":{"opcode":"operator_mathop","next":null,"parent":"[(","inputs":{"NUM":[3,"[*",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[*":{"opcode":"operator_divide","next":null,"parent":"[)","inputs":{"NUM1":[3,"[+",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[+":{"opcode":"operator_subtract","next":null,"parent":"[*","inputs":{"NUM1":[3,"a7b",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a7b":{"opcode":"argument_reporter_string_number","next":null,"parent":"[+","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gq":{"opcode":"control_if_else","next":null,"parent":"gp","inputs":{"CONDITION":[2,"[,"],"SUBSTACK":[2,"gr"],"SUBSTACK2":[2,"gs"]},"fields":{},"shadow":false,"topLevel":false},"[,":{"opcode":"operator_gt","next":null,"parent":"gq","inputs":{"OPERAND1":[3,"a7c",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"a7c":{"opcode":"argument_reporter_string_number","next":null,"parent":"[,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gr":{"opcode":"control_if_else","next":null,"parent":"gq","inputs":{"CONDITION":[2,"[-"],"SUBSTACK":[2,"gt"],"SUBSTACK2":[2,"[."]},"fields":{},"shadow":false,"topLevel":false},"[-":{"opcode":"operator_gt","next":null,"parent":"gr","inputs":{"OPERAND1":[3,"a7d",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a7d":{"opcode":"argument_reporter_string_number","next":null,"parent":"[-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gt":{"opcode":"control_if_else","next":null,"parent":"gr","inputs":{"CONDITION":[2,"[/"],"SUBSTACK":[2,"[:"],"SUBSTACK2":[2,"[;"]},"fields":{},"shadow":false,"topLevel":false},"[/":{"opcode":"operator_gt","next":null,"parent":"gt","inputs":{"OPERAND1":[3,"a7e",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a7e":{"opcode":"argument_reporter_string_number","next":null,"parent":"[/","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[:":{"opcode":"data_setvariableto","next":null,"parent":"gt","inputs":{"VALUE":[3,"[=",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[=":{"opcode":"data_itemoflist","next":null,"parent":"[:","inputs":{"INDEX":[3,"[?",[7,0]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"[?":{"opcode":"operator_add","next":null,"parent":"[=","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[@":{"opcode":"operator_mathop","next":null,"parent":"[?","inputs":{"NUM":[3,"[[",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[[":{"opcode":"operator_divide","next":null,"parent":"[@","inputs":{"NUM1":[3,"[]",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[]":{"opcode":"operator_subtract","next":null,"parent":"[[","inputs":{"NUM1":[3,"a7f",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"a7f":{"opcode":"argument_reporter_string_number","next":null,"parent":"[]","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[;":{"opcode":"data_setvariableto","next":null,"parent":"gt","inputs":{"VALUE":[3,"[^",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[^":{"opcode":"data_itemoflist","next":null,"parent":"[;","inputs":{"INDEX":[3,"[_",[7,0]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"[_":{"opcode":"operator_add","next":null,"parent":"[^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"[`":{"opcode":"operator_mathop","next":null,"parent":"[_","inputs":{"NUM":[3,"[{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[{":{"opcode":"operator_divide","next":null,"parent":"[`","inputs":{"NUM1":[3,"[|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"[|":{"opcode":"operator_subtract","next":null,"parent":"[{","inputs":{"NUM1":[3,"a7g",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"a7g":{"opcode":"argument_reporter_string_number","next":null,"parent":"[|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"[.":{"opcode":"data_setvariableto","next":null,"parent":"gr","inputs":{"VALUE":[3,"[}",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"[}":{"opcode":"data_itemoflist","next":null,"parent":"[.","inputs":{"INDEX":[3,"[~",[7,0]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"[~":{"opcode":"operator_add","next":null,"parent":"[}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]a",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]a":{"opcode":"operator_mathop","next":null,"parent":"[~","inputs":{"NUM":[3,"]b",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]b":{"opcode":"operator_divide","next":null,"parent":"]a","inputs":{"NUM1":[3,"]c",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"]c":{"opcode":"operator_subtract","next":null,"parent":"]b","inputs":{"NUM1":[3,"a7h",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"a7h":{"opcode":"argument_reporter_string_number","next":null,"parent":"]c","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gs":{"opcode":"control_if_else","next":null,"parent":"gq","inputs":{"CONDITION":[2,"]d"],"SUBSTACK":[2,"gu"],"SUBSTACK2":[2,"]e"]},"fields":{},"shadow":false,"topLevel":false},"]d":{"opcode":"operator_gt","next":null,"parent":"gs","inputs":{"OPERAND1":[3,"a7i",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"a7i":{"opcode":"argument_reporter_string_number","next":null,"parent":"]d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gu":{"opcode":"control_if_else","next":null,"parent":"gs","inputs":{"CONDITION":[2,"]f"],"SUBSTACK":[2,"]g"],"SUBSTACK2":[2,"]h"]},"fields":{},"shadow":false,"topLevel":false},"]f":{"opcode":"operator_gt","next":null,"parent":"gu","inputs":{"OPERAND1":[3,"a7j",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"a7j":{"opcode":"argument_reporter_string_number","next":null,"parent":"]f","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"]g":{"opcode":"data_setvariableto","next":null,"parent":"gu","inputs":{"VALUE":[3,"]i",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"]i":{"opcode":"data_itemoflist","next":null,"parent":"]g","inputs":{"INDEX":[3,"]j",[7,0]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"]j":{"opcode":"operator_add","next":null,"parent":"]i","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]k":{"opcode":"operator_mathop","next":null,"parent":"]j","inputs":{"NUM":[3,"]l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]l":{"opcode":"operator_divide","next":null,"parent":"]k","inputs":{"NUM1":[3,"]m",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"]m":{"opcode":"operator_subtract","next":null,"parent":"]l","inputs":{"NUM1":[3,"a7k",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"a7k":{"opcode":"argument_reporter_string_number","next":null,"parent":"]m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"]h":{"opcode":"data_setvariableto","next":null,"parent":"gu","inputs":{"VALUE":[3,"]n",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"]n":{"opcode":"data_itemoflist","next":null,"parent":"]h","inputs":{"INDEX":[3,"]o",[7,0]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"]o":{"opcode":"operator_add","next":null,"parent":"]n","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]p",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]p":{"opcode":"operator_mathop","next":null,"parent":"]o","inputs":{"NUM":[3,"]q",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]q":{"opcode":"operator_divide","next":null,"parent":"]p","inputs":{"NUM1":[3,"]r",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"]r":{"opcode":"operator_subtract","next":null,"parent":"]q","inputs":{"NUM1":[3,"a7l",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"a7l":{"opcode":"argument_reporter_string_number","next":null,"parent":"]r","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"]e":{"opcode":"data_setvariableto","next":null,"parent":"gs","inputs":{"VALUE":[3,"]s",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"]s":{"opcode":"data_itemoflist","next":null,"parent":"]e","inputs":{"INDEX":[3,"]t",[7,0]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"]t":{"opcode":"operator_add","next":null,"parent":"]s","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]u",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]u":{"opcode":"operator_mathop","next":null,"parent":"]t","inputs":{"NUM":[3,"]v",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]v":{"opcode":"operator_divide","next":null,"parent":"]u","inputs":{"NUM1":[3,"]w",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"]w":{"opcode":"operator_subtract","next":null,"parent":"]v","inputs":{"NUM1":[3,"a7m",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a7m":{"opcode":"argument_reporter_string_number","next":null,"parent":"]w","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"fr":{"opcode":"control_if_else","next":null,"parent":"gn","inputs":{"CONDITION":[2,"]x"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aa"},"]x":{"opcode":"operator_gt","next":null,"parent":"fr","inputs":{"OPERAND1":[3,"a7n",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a7n":{"opcode":"argument_reporter_string_number","next":null,"parent":"]x","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"]y":{"opcode":"procedures_definition","next":"gv","parent":null,"inputs":{"custom_block":[1,"gw"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":304},"gw":{"opcode":"procedures_prototype","next":null,"parent":"]y","inputs":{"=3ItHb4}Mtq5$/|kShM`":[1,"a7o"],"N6Mn7{5Oh3b`:$~(8o.m":[1,"a7p"],"y1IAePN=ud`%,_ty$?jL":[1,"a7q"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"goto pixel at %s %s on screen %s","argumentids":"[\"=3ItHb4}Mtq5$/|kShM`\",\"N6Mn7{5Oh3b`:$~(8o.m\",\"y1IAePN=ud`%,_ty$?jL\"]","argumentnames":"[\"x\",\"y\",\"screen\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a7o":{"opcode":"argument_reporter_string_number","next":null,"parent":"gw","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a7p":{"opcode":"argument_reporter_string_number","next":null,"parent":"gw","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"a7q":{"opcode":"argument_reporter_string_number","next":null,"parent":"gw","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":true,"topLevel":false},"gv":{"opcode":"control_if_else","next":null,"parent":"]y","inputs":{"CONDITION":[2,"a7r"],"SUBSTACK":[2,"t_"],"SUBSTACK2":[2,"t`"]},"fields":{},"shadow":false,"topLevel":false},"a7r":{"opcode":"operator_equals","next":null,"parent":"gv","inputs":{"OPERAND1":[3,[12,"options.vertical_screens","uEtD!M_zC8*GB%@71_@h"],[10,""]],"OPERAND2":[1,[10,"true"]]},"fields":{},"shadow":false,"topLevel":false},"t_":{"opcode":"motion_gotoxy","next":null,"parent":"gv","inputs":{"X":[3,"]z",[4,0]],"Y":[3,"]A",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]z":{"opcode":"operator_round","next":null,"parent":"t_","inputs":{"NUM":[3,"t@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"t@":{"opcode":"operator_subtract","next":null,"parent":"]z","inputs":{"NUM1":[3,"@t",[4,0]],"NUM2":[3,"]B",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a6V":{"opcode":"argument_reporter_string_number","next":null,"parent":"@t","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"]B":{"opcode":"operator_multiply","next":null,"parent":"t@","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,"]C",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]C":{"opcode":"operator_subtract","next":null,"parent":"]B","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a7s",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7s":{"opcode":"argument_reporter_string_number","next":null,"parent":"]C","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":false,"topLevel":false},"]A":{"opcode":"operator_round","next":null,"parent":"t_","inputs":{"NUM":[3,"]D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]D":{"opcode":"operator_subtract","next":null,"parent":"]A","inputs":{"NUM1":[1,[4,"102.4"]],"NUM2":[3,"]E",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]E":{"opcode":"operator_divide","next":null,"parent":"]D","inputs":{"NUM1":[3,"a7t",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"a7t":{"opcode":"argument_reporter_string_number","next":null,"parent":"]E","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"t`":{"opcode":"motion_gotoxy","next":null,"parent":"gv","inputs":{"X":[3,"]F",[4,0]],"Y":[3,"]G",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]F":{"opcode":"operator_round","next":null,"parent":"t`","inputs":{"NUM":[3,"]H",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]H":{"opcode":"operator_subtract","next":null,"parent":"]F","inputs":{"NUM1":[3,"]I",[4,0]],"NUM2":[1,[4,"120"]]},"fields":{},"shadow":false,"topLevel":false},"]I":{"opcode":"operator_divide","next":null,"parent":"]H","inputs":{"NUM1":[3,"a7u",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"a7u":{"opcode":"argument_reporter_string_number","next":null,"parent":"]I","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"]G":{"opcode":"operator_round","next":null,"parent":"t`","inputs":{"NUM":[3,"t{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"t{":{"opcode":"operator_subtract","next":null,"parent":"]G","inputs":{"NUM1":[3,"]J",[4,0]],"NUM2":[3,"]K",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]J":{"opcode":"operator_subtract","next":null,"parent":"t{","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,"]L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]L":{"opcode":"operator_divide","next":null,"parent":"]J","inputs":{"NUM1":[3,"a7v",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"a7v":{"opcode":"argument_reporter_string_number","next":null,"parent":"]L","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"]K":{"opcode":"operator_multiply","next":null,"parent":"t{","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,"a7w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7w":{"opcode":"argument_reporter_string_number","next":null,"parent":"]K","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":false,"topLevel":false},"a7x":{"opcode":"event_whenbroadcastreceived","next":"a7y","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["render_screen","*~j7B^$jo;Babt$i@0p-"]},"shadow":false,"topLevel":true,"x":48,"y":728},"a7y":{"opcode":"procedures_call","next":null,"parent":"a7x","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"display.render_screen","argumentids":"[]","warp":"true"}},"]M":{"opcode":"procedures_definition","next":"t|","parent":null,"inputs":{"custom_block":[1,"]N"]},"fields":{},"shadow":false,"topLevel":true,"x":4388,"y":64},"]N":{"opcode":"procedures_prototype","next":null,"parent":"]M","inputs":{"V)?tNL$%Rh+w==[pHm3i":[1,"a7z"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a7z":{"opcode":"argument_reporter_string_number","next":null,"parent":"]N","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"t|":{"opcode":"procedures_call","next":"t}","parent":"]M","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"a7A",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"a7A":{"opcode":"argument_reporter_string_number","next":null,"parent":"t|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"t}":{"opcode":"procedures_call","next":"a7B","parent":"t|","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm7.read_return","!72:zgELj#}TT9OT7jqU"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"]O",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"]O":{"opcode":"operator_mod","next":null,"parent":"t}","inputs":{"NUM1":[3,"a7C",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a7C":{"opcode":"argument_reporter_string_number","next":null,"parent":"]O","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a7B":{"opcode":"data_setvariableto","next":null,"parent":"t}","inputs":{"VALUE":[3,[12,"core.byte_return",",[3+,ez*wmn?Q;]`x!%%"],[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"]P":{"opcode":"procedures_definition","next":"t~","parent":null,"inputs":{"custom_block":[1,"]Q"]},"fields":{},"shadow":false,"topLevel":true,"x":4388,"y":360},"]Q":{"opcode":"procedures_prototype","next":null,"parent":"]P","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,"a7D"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a7D":{"opcode":"argument_reporter_string_number","next":null,"parent":"]Q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"]R":{"opcode":"procedures_definition","next":"]S","parent":null,"inputs":{"custom_block":[1,"ua"]},"fields":{},"shadow":false,"topLevel":true,"x":4911,"y":64},"ua":{"opcode":"procedures_prototype","next":null,"parent":"]R","inputs":{"[Bf|Xjs%{03^@##)w@`d":[1,"a7E"],"A$`3X[JrP}|bWV/@_Osy":[1,"a7F"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","argumentnames":"[\"number\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a7E":{"opcode":"argument_reporter_string_number","next":null,"parent":"ua","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"a7F":{"opcode":"argument_reporter_string_number","next":null,"parent":"ua","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"]S":{"opcode":"data_setvariableto","next":null,"parent":"]R","inputs":{"VALUE":[3,"]T",[10,""]]},"fields":{"VARIABLE":["core.byte_return",",[3+,ez*wmn?Q;]`x!%%"]},"shadow":false,"topLevel":false},"]T":{"opcode":"operator_mathop","next":null,"parent":"]S","inputs":{"NUM":[3,"]U",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]U":{"opcode":"operator_mod","next":null,"parent":"]T","inputs":{"NUM1":[3,"ub",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ub":{"opcode":"operator_divide","next":null,"parent":"]U","inputs":{"NUM1":[3,"a7G",[4,0]],"NUM2":[3,"]V",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7G":{"opcode":"argument_reporter_string_number","next":null,"parent":"ub","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"]V":{"opcode":"operator_round","next":null,"parent":"ub","inputs":{"NUM":[3,"]W",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]W":{"opcode":"operator_mathop","next":null,"parent":"]V","inputs":{"NUM":[3,"]X",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"]X":{"opcode":"operator_multiply","next":null,"parent":"]W","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"]Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]Y":{"opcode":"operator_subtract","next":null,"parent":"]X","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"]Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]Z":{"opcode":"operator_mod","next":null,"parent":"]Y","inputs":{"NUM1":[3,"a7H",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a7H":{"opcode":"argument_reporter_string_number","next":null,"parent":"]Z","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"a7I":{"opcode":"event_whenbroadcastreceived","next":"]0","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["start game","gofV]+|49LxJ]7Ibhwn8"]},"shadow":false,"topLevel":true,"x":48,"y":64},"]0":{"opcode":"pen_clear","next":"a7J","parent":"a7I","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a7J":{"opcode":"pen_setPenSizeTo","next":null,"parent":"]0","inputs":{"SIZE":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"t^":{"opcode":"pen_setPenColorToColor","next":"]1","parent":"t]","inputs":{"COLOR":[3,"uc",[9,"#ff0000"]]},"fields":{},"shadow":false,"topLevel":false},"uc":{"opcode":"operator_add","next":null,"parent":"t^","inputs":{"NUM1":[3,"]2",[4,0]],"NUM2":[3,"ud",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]2":{"opcode":"operator_multiply","next":null,"parent":"uc","inputs":{"NUM1":[1,[4,"524288"]],"NUM2":[3,"a7K",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7K":{"opcode":"operator_mod","next":null,"parent":"]2","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"ud":{"opcode":"operator_add","next":null,"parent":"uc","inputs":{"NUM1":[3,"]3",[4,0]],"NUM2":[3,"]4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]3":{"opcode":"operator_multiply","next":null,"parent":"ud","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,"]5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]5":{"opcode":"operator_mod","next":null,"parent":"]3","inputs":{"NUM1":[3,"]6",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"]6":{"opcode":"operator_mathop","next":null,"parent":"]5","inputs":{"NUM":[3,"a7L",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a7L":{"opcode":"operator_divide","next":null,"parent":"]6","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"]4":{"opcode":"operator_multiply","next":null,"parent":"ud","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"]7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]7":{"opcode":"operator_mod","next":null,"parent":"]4","inputs":{"NUM1":[3,"]8",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"]8":{"opcode":"operator_mathop","next":null,"parent":"]7","inputs":{"NUM":[3,"a7M",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a7M":{"opcode":"operator_divide","next":null,"parent":"]8","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"]1":{"opcode":"pen_penDown","next":"a7N","parent":"t^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a7N":{"opcode":"data_changevariableby","next":null,"parent":"]1","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["x","}^!zcd7*?=frof;O)@)i"]},"shadow":false,"topLevel":false},"t~":{"opcode":"procedures_call","next":"ue","parent":"]P","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"a7O",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"a7O":{"opcode":"argument_reporter_string_number","next":null,"parent":"t~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ue":{"opcode":"procedures_call","next":"a7P","parent":"t~","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm9.read_return","uT+UflmU:r]iynT/z;M0"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"]9",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"]9":{"opcode":"operator_mod","next":null,"parent":"ue","inputs":{"NUM1":[3,"a7Q",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a7Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"]9","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a7P":{"opcode":"data_setvariableto","next":null,"parent":"ue","inputs":{"VALUE":[3,[12,"core.byte_return",",[3+,ez*wmn?Q;]`x!%%"],[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false}},"comments":{"]!":{"blockId":"gx","x":396,"y":213,"width":200,"height":200,"minimized":false,"text":"This is so the emulator isn't horribly slow (like seriously this could help out quite a bit)"},"ab":{"blockId":"gy","x":2209,"y":350,"width":179,"height":154,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"ac":{"blockId":"9","x":2213,"y":1706,"width":197,"height":130,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"]#":{"blockId":"gz","x":1014,"y":138,"width":233,"height":182,"minimized":false,"text":"I need to store a lot of memory, though luckily the DS is actually just around twice as powerful as the GBA (Gameboy Advance). Note that the 3DS is actually a lot more powerful than this."},"]%":{"blockId":"gA","x":1175,"y":1568,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"](":{"blockId":"ap","x":1059,"y":4016,"width":182,"height":153,"minimized":false,"text":"Idk what's up with LCDC allocated VRAM but it can hold 656 KB of memory for some reason"},"])":{"blockId":"uf","x":11024,"y":3014,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"},"]*":{"blockId":"!","x":9529,"y":801,"width":200,"height":200,"minimized":false,"text":"Data processing instructions are stupid because there's actually 16 of them."},"]+":{"blockId":"aq","x":12461,"y":416,"width":200,"height":200,"minimized":false,"text":"I'm sorry I just really can't do this without little endian ;-;"},"}":{"blockId":"ar","x":5974,"y":209,"width":216,"height":229,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"aa":{"blockId":"gB","x":5733,"y":3417,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"buQ":{"blockId":"],","x":11600,"y":2972,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"pop","assetId":"83a9787d4cb6f3b7632b4ddfebf74367","dataFormat":"wav","format":"","rate":48000,"sampleCount":1123,"md5ext":"83a9787d4cb6f3b7632b4ddfebf74367.wav"}],"volume":100,"layerOrder":5,"visible":true,"x":-27,"y":180,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Core (ARM7, ARM9)","variables":{"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",597949],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",597952],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",31],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return","0x00000000"],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test","false"],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format","0"],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",3],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",192],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",49183],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return","0x00000000"],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",20],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",4294967295]},"lists":{"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",["0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000"]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",["false","false","false","false"]]},"broadcasts":{},"blocks":{"9":{"opcode":"control_if_else","next":null,"parent":"gC","inputs":{"CONDITION":[2,"]-"],"SUBSTACK":[2,"gD"],"SUBSTACK2":[2,"gE"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ac"},"],":{"opcode":"data_setvariableto","next":null,"parent":"gF","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"]-":{"opcode":"operator_gt","next":null,"parent":"9","inputs":{"OPERAND1":[3,"a7R",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"].":{"opcode":"operator_divide","next":null,"parent":"]/","inputs":{"NUM1":[3,"a7S",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]/":{"opcode":"operator_mathop","next":null,"parent":"]:","inputs":{"NUM":[3,"].",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"];":{"opcode":"operator_gt","next":null,"parent":"as","inputs":{"OPERAND1":[3,"a7T",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"]=":{"opcode":"operator_multiply","next":null,"parent":"gG","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"]?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]?":{"opcode":"operator_mod","next":null,"parent":"]=","inputs":{"NUM1":[3,"]@",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]@":{"opcode":"operator_mathop","next":null,"parent":"]?","inputs":{"NUM":[3,"a7U",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"][":{"opcode":"operator_lt","next":null,"parent":"gH","inputs":{"OPERAND1":[3,"a7V",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"]]":{"opcode":"data_setvariableto","next":null,"parent":"gH","inputs":{"VALUE":[3,"ug",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"]^":{"opcode":"operator_mathop","next":null,"parent":"]_","inputs":{"NUM":[3,"]`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]`":{"opcode":"operator_divide","next":null,"parent":"]^","inputs":{"NUM1":[3,"]{",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"]|":{"opcode":"operator_mathop","next":null,"parent":"]}","inputs":{"NUM":[3,"]~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]}":{"opcode":"operator_add","next":null,"parent":"uh","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"]~":{"opcode":"operator_divide","next":null,"parent":"]|","inputs":{"NUM1":[3,"^a",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^a":{"opcode":"operator_subtract","next":null,"parent":"]~","inputs":{"NUM1":[3,"a7W",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"^b":{"opcode":"operator_add","next":null,"parent":"ui","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^c",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^c":{"opcode":"operator_mathop","next":null,"parent":"^b","inputs":{"NUM":[3,"^d",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^d":{"opcode":"operator_divide","next":null,"parent":"^c","inputs":{"NUM1":[3,"^e",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^e":{"opcode":"operator_subtract","next":null,"parent":"^d","inputs":{"NUM1":[3,"a7X",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"^f":{"opcode":"procedures_definition","next":"gI","parent":null,"inputs":{"custom_block":[1,"^g"]},"fields":{},"shadow":false,"topLevel":true,"x":5302,"y":153},"^g":{"opcode":"procedures_prototype","next":null,"parent":"^f","inputs":{"b@)J0tZH?{E?dB[c9XHi":[1,"a7Y"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"^h":{"opcode":"data_showvariable","next":"^i","parent":"a7Z","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"^i":{"opcode":"procedures_call","next":"gx","parent":"^h","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.reset_memory","argumentids":"[]","warp":"true"}},"^j":{"opcode":"data_setvariableto","next":"^k","parent":"gx","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"^k":{"opcode":"data_setvariableto","next":"^l","parent":"^j","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"^l":{"opcode":"data_setvariableto","next":"^m","parent":"^k","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"^m":{"opcode":"sensing_resettimer","next":"^n","parent":"^l","inputs":{},"fields":{},"shadow":false,"topLevel":false},"^o":{"opcode":"procedures_call","next":"a70","parent":"^p","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","warp":"true"}},"^p":{"opcode":"control_forever","next":null,"parent":"^q","inputs":{"SUBSTACK":[2,"^o"]},"fields":{},"shadow":false,"topLevel":false},"^r":{"opcode":"procedures_definition","next":"gJ","parent":null,"inputs":{"custom_block":[1,"uj"]},"fields":{},"shadow":false,"topLevel":true,"x":2951,"y":158},"^s":{"opcode":"operator_gt","next":null,"parent":"gJ","inputs":{"OPERAND1":[3,"a71",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"^t":{"opcode":"operator_gt","next":null,"parent":"gK","inputs":{"OPERAND1":[3,"a72",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"^u":{"opcode":"control_if_else","next":null,"parent":"gK","inputs":{"CONDITION":[2,"^v"]},"fields":{},"shadow":false,"topLevel":false},"^v":{"opcode":"operator_gt","next":null,"parent":"^u","inputs":{"OPERAND1":[3,"a73",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"^w":{"opcode":"data_setvariableto","next":null,"parent":"gL","inputs":{"VALUE":[3,"^x",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"^x":{"opcode":"operator_subtract","next":null,"parent":"^w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a74",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^y":{"opcode":"operator_lt","next":null,"parent":"gM","inputs":{"OPERAND1":[3,"a75",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"^z":{"opcode":"data_setvariableto","next":null,"parent":"gM","inputs":{"VALUE":[3,"a76",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"^A":{"opcode":"data_setvariableto","next":null,"parent":"gM","inputs":{"VALUE":[3,"^B",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"^B":{"opcode":"operator_subtract","next":null,"parent":"^A","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a77",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^C":{"opcode":"operator_lt","next":null,"parent":"gN","inputs":{"OPERAND1":[3,"a78",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"^D":{"opcode":"operator_lt","next":null,"parent":"gO","inputs":{"OPERAND1":[3,"a79",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"^E":{"opcode":"operator_lt","next":null,"parent":"gP","inputs":{"OPERAND1":[3,"a7!",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"^F":{"opcode":"data_setvariableto","next":null,"parent":"gP","inputs":{"VALUE":[3,"^G",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"^H":{"opcode":"operator_mod","next":null,"parent":"^I","inputs":{"NUM1":[3,"^J",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^J":{"opcode":"operator_mathop","next":null,"parent":"^H","inputs":{"NUM":[3,"a7#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^K":{"opcode":"operator_lt","next":null,"parent":"gQ","inputs":{"OPERAND1":[3,"a7%",[10,""]],"OPERAND2":[1,[10,"0x0C000000"]]},"fields":{},"shadow":false,"topLevel":false},"^L":{"opcode":"operator_lt","next":null,"parent":"gR","inputs":{"OPERAND1":[3,"a7(",[10,""]],"OPERAND2":[1,[10,"0x0A000000"]]},"fields":{},"shadow":false,"topLevel":false},"^M":{"opcode":"looks_say","next":"^N","parent":"a7)","inputs":{"MESSAGE":[1,[10,"[ARM9] MOV"]]},"fields":{},"shadow":false,"topLevel":false},"^N":{"opcode":"looks_say","next":"^O","parent":"^M","inputs":{"MESSAGE":[1,[10,"[ARM9] Multiply"]]},"fields":{},"shadow":false,"topLevel":false},"^O":{"opcode":"looks_say","next":"^P","parent":"^N","inputs":{"MESSAGE":[1,[10,"[ARM9] Multiply Long"]]},"fields":{},"shadow":false,"topLevel":false},"^P":{"opcode":"looks_say","next":"^Q","parent":"^O","inputs":{"MESSAGE":[1,[10,"[ARM9] Single Data Swap"]]},"fields":{},"shadow":false,"topLevel":false},"^Q":{"opcode":"looks_say","next":"^R","parent":"^P","inputs":{"MESSAGE":[1,[10,"[ARM9] Branch and Exchange"]]},"fields":{},"shadow":false,"topLevel":false},"^R":{"opcode":"looks_say","next":"^S","parent":"^Q","inputs":{"MESSAGE":[1,[10,"[ARM9] Halfword Data Transfer (Register Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"^T":{"opcode":"data_setvariableto","next":null,"parent":"gH","inputs":{"VALUE":[3,"^U",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"^U":{"opcode":"operator_gt","next":null,"parent":"^T","inputs":{"OPERAND1":[3,"uk",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^V":{"opcode":"operator_divide","next":null,"parent":"^W","inputs":{"NUM1":[3,"^X",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^Y":{"opcode":"data_deletealloflist","next":"^0","parent":"^Z","inputs":{},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"^0":{"opcode":"data_deletealloflist","next":"^1","parent":"^Y","inputs":{},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"^1":{"opcode":"data_deletealloflist","next":"ul","parent":"^0","inputs":{},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"^2":{"opcode":"operator_divide","next":null,"parent":"^3","inputs":{"NUM1":[3,"^4",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^3":{"opcode":"operator_mathop","next":null,"parent":"^5","inputs":{"NUM":[3,"^2",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^4":{"opcode":"operator_subtract","next":null,"parent":"^2","inputs":{"NUM1":[3,"a7*",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"^6":{"opcode":"data_changevariableby","next":"um","parent":"^7","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"^8":{"opcode":"operator_subtract","next":null,"parent":"ug","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a7+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^9":{"opcode":"operator_not","next":null,"parent":"uk","inputs":{"OPERAND":[2,"un"]},"fields":{},"shadow":false,"topLevel":false},"^!":{"opcode":"operator_lt","next":null,"parent":"gS","inputs":{"OPERAND1":[3,"a7,",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"^#":{"opcode":"operator_add","next":null,"parent":"^%","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^(":{"opcode":"operator_mathop","next":null,"parent":"^#","inputs":{"NUM":[3,"^)",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^)":{"opcode":"operator_divide","next":null,"parent":"^(","inputs":{"NUM1":[3,"^*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^*":{"opcode":"operator_subtract","next":null,"parent":"^)","inputs":{"NUM1":[3,"a7-",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"^+":{"opcode":"data_itemoflist","next":null,"parent":"^,","inputs":{"INDEX":[3,"^-",[7,0]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"^-":{"opcode":"operator_add","next":null,"parent":"^+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^.":{"opcode":"operator_mathop","next":null,"parent":"^-","inputs":{"NUM":[3,"^/",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^/":{"opcode":"operator_divide","next":null,"parent":"^.","inputs":{"NUM1":[3,"^:",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^:":{"opcode":"operator_subtract","next":null,"parent":"^/","inputs":{"NUM1":[3,"a7.",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"^;":{"opcode":"data_itemoflist","next":null,"parent":"^=","inputs":{"INDEX":[3,"^?",[7,0]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"^@":{"opcode":"operator_subtract","next":null,"parent":"^[","inputs":{"NUM1":[3,"a7/",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"^]":{"opcode":"operator_gt","next":null,"parent":"gT","inputs":{"OPERAND1":[3,"a7:",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"^^":{"opcode":"operator_gt","next":null,"parent":"gU","inputs":{"OPERAND1":[3,"a7;",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"^_":{"opcode":"operator_add","next":null,"parent":"uo","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^`":{"opcode":"operator_mathop","next":null,"parent":"^_","inputs":{"NUM":[3,"^{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^{":{"opcode":"operator_divide","next":null,"parent":"^`","inputs":{"NUM1":[3,"^|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"^|":{"opcode":"operator_subtract","next":null,"parent":"^{","inputs":{"NUM1":[3,"a7=",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"^}":{"opcode":"operator_add","next":null,"parent":"up","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^~":{"opcode":"operator_mathop","next":null,"parent":"^}","inputs":{"NUM":[3,"_a",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_a":{"opcode":"operator_divide","next":null,"parent":"^~","inputs":{"NUM1":[3,"_b",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_c":{"opcode":"looks_say","next":"a7?","parent":"_d","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Register Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"_e":{"opcode":"procedures_definition","next":"uq","parent":null,"inputs":{"custom_block":[1,"ur"]},"fields":{},"shadow":false,"topLevel":true,"x":13005,"y":466},"_f":{"opcode":"procedures_definition","next":"gV","parent":null,"inputs":{"custom_block":[1,"_g"]},"fields":{},"shadow":false,"topLevel":true,"x":13856,"y":637},"_g":{"opcode":"procedures_prototype","next":null,"parent":"_f","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[1,"a7@"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"_h":{"opcode":"operator_lt","next":null,"parent":"gV","inputs":{"OPERAND1":[3,"a7[",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"_i":{"opcode":"data_setvariableto","next":null,"parent":"gV","inputs":{"VALUE":[3,"_j",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"_k":{"opcode":"data_setvariableto","next":null,"parent":"gV","inputs":{"VALUE":[3,"a7]",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"_j":{"opcode":"data_itemoflist","next":null,"parent":"_i","inputs":{"INDEX":[3,"_l",[7,0]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"_l":{"opcode":"operator_add","next":null,"parent":"_j","inputs":{"NUM1":[3,"a7^",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_m":{"opcode":"procedures_prototype","next":null,"parent":"^7","inputs":{"w|jx0IoJLmzBO~yODIww":[1,"a7_"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.instruction %s","argumentids":"[\"w|jx0IoJLmzBO~yODIww\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"]:":{"opcode":"operator_mod","next":null,"parent":"um","inputs":{"NUM1":[3,"]/",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^X":{"opcode":"operator_subtract","next":null,"parent":"^V","inputs":{"NUM1":[3,"a7`",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"_n":{"opcode":"data_itemoflist","next":null,"parent":"_o","inputs":{"INDEX":[3,"_p",[7,0]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"_p":{"opcode":"operator_add","next":null,"parent":"_n","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_q":{"opcode":"operator_mathop","next":null,"parent":"_p","inputs":{"NUM":[3,"_r",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_r":{"opcode":"operator_divide","next":null,"parent":"_q","inputs":{"NUM1":[3,"_s",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_s":{"opcode":"operator_subtract","next":null,"parent":"_r","inputs":{"NUM1":[3,"a7{",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"_t":{"opcode":"data_itemoflist","next":null,"parent":"_u","inputs":{"INDEX":[3,"]_",[7,0]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"]_":{"opcode":"operator_add","next":null,"parent":"_t","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_v":{"opcode":"operator_add","next":null,"parent":"us","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_w":{"opcode":"operator_mathop","next":null,"parent":"_v","inputs":{"NUM":[3,"_x",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_x":{"opcode":"operator_divide","next":null,"parent":"_w","inputs":{"NUM1":[3,"_y",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_z":{"opcode":"operator_lt","next":null,"parent":"gW","inputs":{"OPERAND1":[3,"a7|",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_A":{"opcode":"operator_lt","next":null,"parent":"gX","inputs":{"OPERAND1":[3,"a7}",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_B":{"opcode":"operator_lt","next":null,"parent":"gY","inputs":{"OPERAND1":[3,"a7~",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_C":{"opcode":"data_setvariableto","next":null,"parent":"gY","inputs":{"VALUE":[3,"a8a",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"_D":{"opcode":"data_setvariableto","next":null,"parent":"gY","inputs":{"VALUE":[3,"_E",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"_E":{"opcode":"operator_subtract","next":null,"parent":"_D","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a8b",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_F":{"opcode":"operator_lt","next":null,"parent":"gZ","inputs":{"OPERAND1":[3,"a8c",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"_G":{"opcode":"data_setvariableto","next":null,"parent":"gZ","inputs":{"VALUE":[3,"a8d",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"_H":{"opcode":"data_setvariableto","next":null,"parent":"gZ","inputs":{"VALUE":[3,"_I",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"_I":{"opcode":"operator_subtract","next":null,"parent":"_H","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a8e",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_J":{"opcode":"operator_round","next":null,"parent":"ut","inputs":{"NUM":[3,"_K",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_K":{"opcode":"operator_mathop","next":null,"parent":"_J","inputs":{"NUM":[3,"_L",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"_L":{"opcode":"operator_multiply","next":null,"parent":"_K","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"_M",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_M":{"opcode":"operator_mod","next":null,"parent":"_L","inputs":{"NUM1":[3,"a8f",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_N":{"opcode":"operator_round","next":null,"parent":"uu","inputs":{"NUM":[3,"_O",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_O":{"opcode":"operator_mathop","next":null,"parent":"_N","inputs":{"NUM":[3,"_P",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"_P":{"opcode":"operator_multiply","next":null,"parent":"_O","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"_Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_Q":{"opcode":"operator_subtract","next":null,"parent":"_P","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"_R",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_R":{"opcode":"operator_mod","next":null,"parent":"_Q","inputs":{"NUM1":[3,"_S",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_S":{"opcode":"operator_subtract","next":null,"parent":"_R","inputs":{"NUM1":[3,"a8g",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_T":{"opcode":"operator_add","next":null,"parent":"_U","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_V",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_V":{"opcode":"operator_mathop","next":null,"parent":"_T","inputs":{"NUM":[3,"_W",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_W":{"opcode":"operator_divide","next":null,"parent":"_V","inputs":{"NUM1":[3,"_X",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_X":{"opcode":"operator_subtract","next":null,"parent":"_W","inputs":{"NUM1":[3,"a8h",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"_Y":{"opcode":"data_itemoflist","next":null,"parent":"_Z","inputs":{"INDEX":[3,"_0",[7,0]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"_0":{"opcode":"operator_add","next":null,"parent":"_Y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_1":{"opcode":"operator_mathop","next":null,"parent":"_0","inputs":{"NUM":[3,"_2",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_2":{"opcode":"operator_divide","next":null,"parent":"_1","inputs":{"NUM1":[3,"_3",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_3":{"opcode":"operator_subtract","next":null,"parent":"_2","inputs":{"NUM1":[3,"a8i",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"_4":{"opcode":"data_itemoflist","next":null,"parent":"_5","inputs":{"INDEX":[3,"_6",[7,0]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"_7":{"opcode":"data_deletealloflist","next":"uw","parent":"uv","inputs":{},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"_8":{"opcode":"data_deletealloflist","next":"ux","parent":"uw","inputs":{},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"_9":{"opcode":"data_deletealloflist","next":"uz","parent":"uy","inputs":{},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"_!":{"opcode":"data_deletealloflist","next":"uA","parent":"uz","inputs":{},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"_#":{"opcode":"data_deletealloflist","next":"uB","parent":"uA","inputs":{},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"_%":{"opcode":"data_deletealloflist","next":"^Z","parent":"uB","inputs":{},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"^Z":{"opcode":"data_deletealloflist","next":"^Y","parent":"_%","inputs":{},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"^7":{"opcode":"procedures_definition","next":"^6","parent":null,"inputs":{"custom_block":[1,"_m"]},"fields":{},"shadow":false,"topLevel":true,"x":7944,"y":405},"_(":{"opcode":"procedures_definition","next":"_)","parent":null,"inputs":{"custom_block":[1,"_*"]},"fields":{},"shadow":false,"topLevel":true,"x":9156,"y":383},"_)":{"opcode":"data_changevariableby","next":"uC","parent":"_(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"_*":{"opcode":"procedures_prototype","next":null,"parent":"_(","inputs":{"#l%LO,1LL7`*b:s_Xb^M":[1,"a8j"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.instruction %s","argumentids":"[\"#l%LO,1LL7`*b:s_Xb^M\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"_+":{"opcode":"procedures_prototype","next":null,"parent":"_,","inputs":{"HR}S7=-$neJrd)Sf~gG)":[1,"a8k"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"_-":{"opcode":"data_setvariableto","next":"uD","parent":"aq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.little_endian","Sp7jtJ,4KrK(][NW_Syc"]},"shadow":false,"topLevel":false},"_.":{"opcode":"data_setvariableto","next":null,"parent":"uE","inputs":{"VALUE":[3,"_/",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"_/":{"opcode":"operator_mathop","next":null,"parent":"_.","inputs":{"NUM":[3,"a8l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_:":{"opcode":"operator_lt","next":null,"parent":"g0","inputs":{"OPERAND1":[3,"a8m",[10,""]],"OPERAND2":[1,[10,"0x08000000"]]},"fields":{},"shadow":false,"topLevel":false},"_;":{"opcode":"operator_lt","next":null,"parent":"g1","inputs":{"OPERAND1":[3,"a8n",[10,""]],"OPERAND2":[1,[10,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"_=":{"opcode":"operator_lt","next":null,"parent":"g2","inputs":{"OPERAND1":[3,"a8o",[10,""]],"OPERAND2":[1,[10,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"_?":{"opcode":"operator_equals","next":null,"parent":"at","inputs":{"OPERAND1":[3,"_@",[10,""]],"OPERAND2":[1,[10,"0b000100101111111111110001"]]},"fields":{},"shadow":false,"topLevel":false},"_@":{"opcode":"operator_mathop","next":null,"parent":"_?","inputs":{"NUM":[3,"a8p",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_[":{"opcode":"operator_gt","next":null,"parent":"uF","inputs":{"OPERAND1":[3,"a8q",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"_]":{"opcode":"operator_multiply","next":null,"parent":"uG","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"_^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"__":{"opcode":"operator_mathop","next":null,"parent":"uG","inputs":{"NUM":[3,"_`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_^":{"opcode":"operator_mathop","next":null,"parent":"_]","inputs":{"NUM":[3,"a8r",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_`":{"opcode":"operator_divide","next":null,"parent":"__","inputs":{"NUM1":[3,"a8s",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_{":{"opcode":"operator_add","next":null,"parent":"uH","inputs":{"NUM1":[3,"a8t",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_|":{"opcode":"operator_add","next":null,"parent":"uI","inputs":{"NUM1":[3,"a8u",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_}":{"opcode":"operator_multiply","next":null,"parent":"uJ","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"_~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"_~":{"opcode":"operator_mod","next":null,"parent":"_}","inputs":{"NUM1":[3,"a8v",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7Z":{"opcode":"event_whenbroadcastreceived","next":"^h","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["start game","gofV]+|49LxJ]7Ibhwn8"]},"shadow":false,"topLevel":true,"x":-499,"y":130},"gx":{"opcode":"data_setvariableto","next":"^j","parent":"^i","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false,"comment":"]!"},"a70":{"opcode":"event_broadcast","next":null,"parent":"^o","inputs":{"BROADCAST_INPUT":[1,[11,"render_screen","*~j7B^$jo;Babt$i@0p-"]]},"fields":{},"shadow":false,"topLevel":false},"`a":{"opcode":"procedures_definition","next":"g3","parent":null,"inputs":{"custom_block":[1,"`b"]},"fields":{},"shadow":false,"topLevel":true,"x":1749,"y":165},"`b":{"opcode":"procedures_prototype","next":null,"parent":"`a","inputs":{"F:1=0LFS=ykmsAVLMbo@":[1,"a8w"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a8w":{"opcode":"argument_reporter_string_number","next":null,"parent":"`b","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"g3":{"opcode":"control_if_else","next":null,"parent":"`a","inputs":{"CONDITION":[2,"`c"],"SUBSTACK":[2,"g4"],"SUBSTACK2":[2,"g5"]},"fields":{},"shadow":false,"topLevel":false},"`c":{"opcode":"operator_gt","next":null,"parent":"g3","inputs":{"OPERAND1":[3,"a8x",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8x":{"opcode":"argument_reporter_string_number","next":null,"parent":"`c","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g4":{"opcode":"control_if_else","next":null,"parent":"g3","inputs":{"CONDITION":[2,"`d"],"SUBSTACK":[2,"gy"],"SUBSTACK2":[2,"`e"]},"fields":{},"shadow":false,"topLevel":false},"`d":{"opcode":"operator_gt","next":null,"parent":"g4","inputs":{"OPERAND1":[3,"a8y",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8y":{"opcode":"argument_reporter_string_number","next":null,"parent":"`d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gy":{"opcode":"control_if_else","next":null,"parent":"g4","inputs":{"CONDITION":[2,"`f"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ab"},"`f":{"opcode":"operator_gt","next":null,"parent":"gy","inputs":{"OPERAND1":[3,"a8z",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8z":{"opcode":"argument_reporter_string_number","next":null,"parent":"`f","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`e":{"opcode":"data_setvariableto","next":null,"parent":"g4","inputs":{"VALUE":[3,"`g",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"`g":{"opcode":"data_itemoflist","next":null,"parent":"`e","inputs":{"INDEX":[3,"`h",[7,0]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"`h":{"opcode":"operator_add","next":null,"parent":"`g","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`i",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`i":{"opcode":"operator_mathop","next":null,"parent":"`h","inputs":{"NUM":[3,"`j",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`j":{"opcode":"operator_divide","next":null,"parent":"`i","inputs":{"NUM1":[3,"`k",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`k":{"opcode":"operator_subtract","next":null,"parent":"`j","inputs":{"NUM1":[3,"a8A",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8A":{"opcode":"argument_reporter_string_number","next":null,"parent":"`k","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g5":{"opcode":"control_if_else","next":null,"parent":"g3","inputs":{"CONDITION":[2,"`l"],"SUBSTACK":[2,"g6"],"SUBSTACK2":[2,"gC"]},"fields":{},"shadow":false,"topLevel":false},"`l":{"opcode":"operator_gt","next":null,"parent":"g5","inputs":{"OPERAND1":[3,"a8B",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8B":{"opcode":"argument_reporter_string_number","next":null,"parent":"`l","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g6":{"opcode":"control_if_else","next":null,"parent":"g5","inputs":{"CONDITION":[2,"`m"],"SUBSTACK":[2,"g7"],"SUBSTACK2":[2,"`n"]},"fields":{},"shadow":false,"topLevel":false},"`m":{"opcode":"operator_gt","next":null,"parent":"g6","inputs":{"OPERAND1":[3,"a8C",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8C":{"opcode":"argument_reporter_string_number","next":null,"parent":"`m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g7":{"opcode":"control_if_else","next":null,"parent":"g6","inputs":{"CONDITION":[2,"`o"],"SUBSTACK":[2,"g8"],"SUBSTACK2":[2,"_5"]},"fields":{},"shadow":false,"topLevel":false},"`o":{"opcode":"operator_gt","next":null,"parent":"g7","inputs":{"OPERAND1":[3,"a8D",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8D":{"opcode":"argument_reporter_string_number","next":null,"parent":"`o","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g8":{"opcode":"control_if_else","next":null,"parent":"g7","inputs":{"CONDITION":[2,"`p"],"SUBSTACK":[2,"`q"],"SUBSTACK2":[2,"_Z"]},"fields":{},"shadow":false,"topLevel":false},"`p":{"opcode":"operator_gt","next":null,"parent":"g8","inputs":{"OPERAND1":[3,"a8E",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8E":{"opcode":"argument_reporter_string_number","next":null,"parent":"`p","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`q":{"opcode":"data_setvariableto","next":null,"parent":"g8","inputs":{"VALUE":[3,"_U",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"_U":{"opcode":"data_itemoflist","next":null,"parent":"`q","inputs":{"INDEX":[3,"_T",[7,0]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"a8h":{"opcode":"argument_reporter_string_number","next":null,"parent":"_X","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"_Z":{"opcode":"data_setvariableto","next":null,"parent":"g8","inputs":{"VALUE":[3,"_Y",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"a8i":{"opcode":"argument_reporter_string_number","next":null,"parent":"_3","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"_5":{"opcode":"data_setvariableto","next":null,"parent":"g7","inputs":{"VALUE":[3,"_4",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"_6":{"opcode":"operator_add","next":null,"parent":"_4","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`r",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`r":{"opcode":"operator_mathop","next":null,"parent":"_6","inputs":{"NUM":[3,"`s",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`s":{"opcode":"operator_divide","next":null,"parent":"`r","inputs":{"NUM1":[3,"`t",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`t":{"opcode":"operator_subtract","next":null,"parent":"`s","inputs":{"NUM1":[3,"a8F",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8F":{"opcode":"argument_reporter_string_number","next":null,"parent":"`t","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`n":{"opcode":"data_setvariableto","next":null,"parent":"g6","inputs":{"VALUE":[3,"`u",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"`u":{"opcode":"data_itemoflist","next":null,"parent":"`n","inputs":{"INDEX":[3,"`v",[7,0]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"`v":{"opcode":"operator_add","next":null,"parent":"`u","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`w":{"opcode":"operator_mathop","next":null,"parent":"`v","inputs":{"NUM":[3,"`x",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`x":{"opcode":"operator_divide","next":null,"parent":"`w","inputs":{"NUM1":[3,"`y",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`y":{"opcode":"operator_subtract","next":null,"parent":"`x","inputs":{"NUM1":[3,"a8G",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"a8G":{"opcode":"argument_reporter_string_number","next":null,"parent":"`y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gC":{"opcode":"control_if_else","next":null,"parent":"g5","inputs":{"CONDITION":[2,"`z"],"SUBSTACK":[2,"`A"],"SUBSTACK2":[2,"9"]},"fields":{},"shadow":false,"topLevel":false},"`z":{"opcode":"operator_gt","next":null,"parent":"gC","inputs":{"OPERAND1":[3,"a8H",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8H":{"opcode":"argument_reporter_string_number","next":null,"parent":"`z","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`A":{"opcode":"data_setvariableto","next":null,"parent":"gC","inputs":{"VALUE":[3,"`B",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"`B":{"opcode":"data_itemoflist","next":null,"parent":"`A","inputs":{"INDEX":[3,"`C",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"`C":{"opcode":"operator_add","next":null,"parent":"`B","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`D":{"opcode":"operator_mathop","next":null,"parent":"`C","inputs":{"NUM":[3,"`E",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`E":{"opcode":"operator_divide","next":null,"parent":"`D","inputs":{"NUM1":[3,"`F",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`F":{"opcode":"operator_subtract","next":null,"parent":"`E","inputs":{"NUM1":[3,"a8I",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8I":{"opcode":"argument_reporter_string_number","next":null,"parent":"`F","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a7R":{"opcode":"argument_reporter_string_number","next":null,"parent":"]-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gD":{"opcode":"control_if_else","next":null,"parent":"9","inputs":{"CONDITION":[2,"`G"],"SUBSTACK":[2,"g9"],"SUBSTACK2":[2,"_u"]},"fields":{},"shadow":false,"topLevel":false},"`G":{"opcode":"operator_gt","next":null,"parent":"gD","inputs":{"OPERAND1":[3,"a8J",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a8J":{"opcode":"argument_reporter_string_number","next":null,"parent":"`G","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g9":{"opcode":"control_if_else","next":null,"parent":"gD","inputs":{"CONDITION":[2,"`H"],"SUBSTACK":[2,"`I"],"SUBSTACK2":[2,"_o"]},"fields":{},"shadow":false,"topLevel":false},"`H":{"opcode":"operator_gt","next":null,"parent":"g9","inputs":{"OPERAND1":[3,"a8K",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a8K":{"opcode":"argument_reporter_string_number","next":null,"parent":"`H","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`I":{"opcode":"data_setvariableto","next":null,"parent":"g9","inputs":{"VALUE":[3,"`J",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"`J":{"opcode":"data_itemoflist","next":null,"parent":"`I","inputs":{"INDEX":[3,"`K",[7,0]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"`K":{"opcode":"operator_add","next":null,"parent":"`J","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^W",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"^W":{"opcode":"operator_mathop","next":null,"parent":"`K","inputs":{"NUM":[3,"^V",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a7`":{"opcode":"argument_reporter_string_number","next":null,"parent":"^X","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"_o":{"opcode":"data_setvariableto","next":null,"parent":"g9","inputs":{"VALUE":[3,"_n",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"a7{":{"opcode":"argument_reporter_string_number","next":null,"parent":"_s","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"_u":{"opcode":"data_setvariableto","next":null,"parent":"gD","inputs":{"VALUE":[3,"_t",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"]{":{"opcode":"operator_subtract","next":null,"parent":"]`","inputs":{"NUM1":[3,"a8L",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"a8L":{"opcode":"argument_reporter_string_number","next":null,"parent":"]{","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gE":{"opcode":"control_if_else","next":null,"parent":"9","inputs":{"CONDITION":[2,"`L"],"SUBSTACK":[2,"g!"],"SUBSTACK2":[2,"^="]},"fields":{},"shadow":false,"topLevel":false},"`L":{"opcode":"operator_gt","next":null,"parent":"gE","inputs":{"OPERAND1":[3,"a8M",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"a8M":{"opcode":"argument_reporter_string_number","next":null,"parent":"`L","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g!":{"opcode":"control_if_else","next":null,"parent":"gE","inputs":{"CONDITION":[2,"`M"],"SUBSTACK":[2,"`N"],"SUBSTACK2":[2,"^,"]},"fields":{},"shadow":false,"topLevel":false},"`M":{"opcode":"operator_gt","next":null,"parent":"g!","inputs":{"OPERAND1":[3,"a8N",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"a8N":{"opcode":"argument_reporter_string_number","next":null,"parent":"`M","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`N":{"opcode":"data_setvariableto","next":null,"parent":"g!","inputs":{"VALUE":[3,"^%",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"^%":{"opcode":"data_itemoflist","next":null,"parent":"`N","inputs":{"INDEX":[3,"^#",[7,0]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"a7-":{"opcode":"argument_reporter_string_number","next":null,"parent":"^*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"^,":{"opcode":"data_setvariableto","next":null,"parent":"g!","inputs":{"VALUE":[3,"^+",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"a7.":{"opcode":"argument_reporter_string_number","next":null,"parent":"^:","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"^=":{"opcode":"data_setvariableto","next":null,"parent":"gE","inputs":{"VALUE":[3,"^;",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"^?":{"opcode":"operator_add","next":null,"parent":"^;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`O",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`O":{"opcode":"operator_mathop","next":null,"parent":"^?","inputs":{"NUM":[3,"`P",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`P":{"opcode":"operator_divide","next":null,"parent":"`O","inputs":{"NUM1":[3,"`Q",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`Q":{"opcode":"operator_subtract","next":null,"parent":"`P","inputs":{"NUM1":[3,"a8O",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8O":{"opcode":"argument_reporter_string_number","next":null,"parent":"`Q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"`R":{"opcode":"procedures_definition","next":"`S","parent":null,"inputs":{"custom_block":[1,"uK"]},"fields":{},"shadow":false,"topLevel":true,"x":3990,"y":190},"uK":{"opcode":"procedures_prototype","next":null,"parent":"`R","inputs":{"[Bf|Xjs%{03^@##)w@`d":[1,"a8P"],"A$`3X[JrP}|bWV/@_Osy":[1,"a8Q"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","argumentnames":"[\"number\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a8P":{"opcode":"argument_reporter_string_number","next":null,"parent":"uK","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"a8Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"uK","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"`S":{"opcode":"data_setvariableto","next":null,"parent":"`R","inputs":{"VALUE":[3,"`T",[10,""]]},"fields":{"VARIABLE":["core.byte_return","D@T%uY;^Ck}J:bfqk*PR"]},"shadow":false,"topLevel":false},"`T":{"opcode":"operator_mathop","next":null,"parent":"`S","inputs":{"NUM":[3,"`U",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`U":{"opcode":"operator_mod","next":null,"parent":"`T","inputs":{"NUM1":[3,"uL",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"uL":{"opcode":"operator_divide","next":null,"parent":"`U","inputs":{"NUM1":[3,"a8R",[4,0]],"NUM2":[3,"`V",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a8R":{"opcode":"argument_reporter_string_number","next":null,"parent":"uL","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"`V":{"opcode":"operator_round","next":null,"parent":"uL","inputs":{"NUM":[3,"`W",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`W":{"opcode":"operator_mathop","next":null,"parent":"`V","inputs":{"NUM":[3,"`X",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"`X":{"opcode":"operator_multiply","next":null,"parent":"`W","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"`Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`Y":{"opcode":"operator_subtract","next":null,"parent":"`X","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"`Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`Z":{"opcode":"operator_mod","next":null,"parent":"`Y","inputs":{"NUM1":[3,"a8S",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a8S":{"opcode":"argument_reporter_string_number","next":null,"parent":"`Z","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"gz":{"opcode":"procedures_definition","next":"`0","parent":null,"inputs":{"custom_block":[1,"a8T"]},"fields":{},"shadow":false,"topLevel":true,"x":1282,"y":196,"comment":"]#"},"a8T":{"opcode":"procedures_prototype","next":null,"parent":"gz","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.reset_memory","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"`0":{"opcode":"data_deletealloflist","next":"`1","parent":"gz","inputs":{},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"`1":{"opcode":"data_deletealloflist","next":"`2","parent":"`0","inputs":{},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"`2":{"opcode":"data_deletealloflist","next":"`3","parent":"`1","inputs":{},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"`3":{"opcode":"data_deletealloflist","next":"`4","parent":"`2","inputs":{},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"`4":{"opcode":"data_deletealloflist","next":"uM","parent":"`3","inputs":{},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"uM":{"opcode":"control_repeat","next":"`5","parent":"`4","inputs":{"TIMES":[1,[6,"200000"]],"SUBSTACK":[2,"`6"]},"fields":{},"shadow":false,"topLevel":false},"`6":{"opcode":"data_addtolist","next":"`7","parent":"uM","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"`7":{"opcode":"data_addtolist","next":"`8","parent":"`6","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"`8":{"opcode":"data_addtolist","next":"`9","parent":"`7","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"`9":{"opcode":"data_addtolist","next":"a8U","parent":"`8","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"a8U":{"opcode":"data_addtolist","next":null,"parent":"`9","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"`5":{"opcode":"data_deletealloflist","next":"uN","parent":"uM","inputs":{},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"uN":{"opcode":"control_repeat","next":"`!","parent":"`5","inputs":{"TIMES":[1,[6,"48576"]],"SUBSTACK":[2,"a8V"]},"fields":{},"shadow":false,"topLevel":false},"a8V":{"opcode":"data_addtolist","next":null,"parent":"uN","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"`!":{"opcode":"data_deletealloflist","next":"uO","parent":"uN","inputs":{},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"uO":{"opcode":"control_repeat","next":"`#","parent":"`!","inputs":{"TIMES":[1,[6,"8192"]],"SUBSTACK":[2,"a8W"]},"fields":{},"shadow":false,"topLevel":false},"a8W":{"opcode":"data_addtolist","next":null,"parent":"uO","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"`#":{"opcode":"data_deletealloflist","next":"uv","parent":"uO","inputs":{},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"uv":{"opcode":"control_repeat","next":"_7","parent":"`#","inputs":{"TIMES":[1,[6,"16384"]],"SUBSTACK":[2,"a8X"]},"fields":{},"shadow":false,"topLevel":false},"a8X":{"opcode":"data_addtolist","next":null,"parent":"uv","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"uw":{"opcode":"control_repeat","next":"_8","parent":"_7","inputs":{"TIMES":[1,[6,"101"]],"SUBSTACK":[2,"a8Y"]},"fields":{},"shadow":false,"topLevel":false},"a8Y":{"opcode":"data_addtolist","next":null,"parent":"uw","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"ux":{"opcode":"control_repeat","next":"gA","parent":"_8","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"a8Z"]},"fields":{},"shadow":false,"topLevel":false},"a8Z":{"opcode":"data_addtolist","next":null,"parent":"ux","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"gA":{"opcode":"data_deletealloflist","next":"uy","parent":"ux","inputs":{},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false,"comment":"]%"},"uy":{"opcode":"control_repeat","next":"_9","parent":"gA","inputs":{"TIMES":[1,[6,"0"]],"SUBSTACK":[2,"a80"]},"fields":{},"shadow":false,"topLevel":false},"a80":{"opcode":"data_addtolist","next":null,"parent":"uy","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"uz":{"opcode":"control_repeat","next":"_!","parent":"_9","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"a81"]},"fields":{},"shadow":false,"topLevel":false},"a81":{"opcode":"data_addtolist","next":null,"parent":"uz","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"uA":{"opcode":"control_repeat","next":"_#","parent":"_!","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"a82"]},"fields":{},"shadow":false,"topLevel":false},"a82":{"opcode":"data_addtolist","next":null,"parent":"uA","inputs":{"ITEM":[1,[10,"false"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"uB":{"opcode":"control_repeat","next":"_%","parent":"_#","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a83"]},"fields":{},"shadow":false,"topLevel":false},"a83":{"opcode":"data_addtolist","next":null,"parent":"uB","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"ul":{"opcode":"control_repeat","next":"`%","parent":"^1","inputs":{"TIMES":[1,[6,"200000"]],"SUBSTACK":[2,"`("]},"fields":{},"shadow":false,"topLevel":false},"`(":{"opcode":"data_addtolist","next":"`)","parent":"ul","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"`)":{"opcode":"data_addtolist","next":"`*","parent":"`(","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"`*":{"opcode":"data_addtolist","next":"`+","parent":"`)","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"`+":{"opcode":"data_addtolist","next":"a84","parent":"`*","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"a84":{"opcode":"data_addtolist","next":null,"parent":"`+","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"`%":{"opcode":"data_deletealloflist","next":"uP","parent":"ul","inputs":{},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"uP":{"opcode":"control_repeat","next":"`,","parent":"`%","inputs":{"TIMES":[1,[6,"48576"]],"SUBSTACK":[2,"a85"]},"fields":{},"shadow":false,"topLevel":false},"a85":{"opcode":"data_addtolist","next":null,"parent":"uP","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"`,":{"opcode":"data_deletealloflist","next":"uQ","parent":"uP","inputs":{},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"uQ":{"opcode":"control_repeat","next":"`-","parent":"`,","inputs":{"TIMES":[1,[6,"1051"]],"SUBSTACK":[2,"a86"]},"fields":{},"shadow":false,"topLevel":false},"a86":{"opcode":"data_addtolist","next":null,"parent":"uQ","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"`-":{"opcode":"data_deletealloflist","next":"uR","parent":"uQ","inputs":{},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"uR":{"opcode":"control_repeat","next":"`.","parent":"`-","inputs":{"TIMES":[1,[6,"131072"]],"SUBSTACK":[2,"a87"]},"fields":{},"shadow":false,"topLevel":false},"a87":{"opcode":"data_addtolist","next":null,"parent":"uR","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"`.":{"opcode":"data_deletealloflist","next":"uS","parent":"uR","inputs":{},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"uS":{"opcode":"control_repeat","next":"`/","parent":"`.","inputs":{"TIMES":[1,[6,"32768"]],"SUBSTACK":[2,"a88"]},"fields":{},"shadow":false,"topLevel":false},"a88":{"opcode":"data_addtolist","next":null,"parent":"uS","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"`/":{"opcode":"data_deletealloflist","next":"uT","parent":"uS","inputs":{},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"uT":{"opcode":"control_repeat","next":"`:","parent":"`/","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"a89"]},"fields":{},"shadow":false,"topLevel":false},"a89":{"opcode":"data_addtolist","next":null,"parent":"uT","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"`:":{"opcode":"data_deletealloflist","next":"uU","parent":"uT","inputs":{},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"uj":{"opcode":"procedures_prototype","next":null,"parent":"^r","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[1,"a8!"],"3=8N7_NC]MC+s+N]n=Xg":[1,"a8#"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a8!":{"opcode":"argument_reporter_string_number","next":null,"parent":"uj","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a8#":{"opcode":"argument_reporter_string_number","next":null,"parent":"uj","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"gJ":{"opcode":"control_if_else","next":null,"parent":"^r","inputs":{"CONDITION":[2,"^s"],"SUBSTACK":[2,"gK"],"SUBSTACK2":[2,"g#"]},"fields":{},"shadow":false,"topLevel":false},"a71":{"opcode":"argument_reporter_string_number","next":null,"parent":"^s","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gK":{"opcode":"control_if_else","next":null,"parent":"gJ","inputs":{"CONDITION":[2,"^t"],"SUBSTACK":[2,"^u"],"SUBSTACK2":[2,"uV"]},"fields":{},"shadow":false,"topLevel":false},"a72":{"opcode":"argument_reporter_string_number","next":null,"parent":"^t","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a73":{"opcode":"argument_reporter_string_number","next":null,"parent":"^v","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uV":{"opcode":"data_replaceitemoflist","next":null,"parent":"gK","inputs":{"INDEX":[3,"`;",[7,0]],"ITEM":[3,"a8%",[10,""]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"`;":{"opcode":"operator_add","next":null,"parent":"uV","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`=",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`=":{"opcode":"operator_mathop","next":null,"parent":"`;","inputs":{"NUM":[3,"`?",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`?":{"opcode":"operator_divide","next":null,"parent":"`=","inputs":{"NUM1":[3,"`@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`@":{"opcode":"operator_subtract","next":null,"parent":"`?","inputs":{"NUM1":[3,"a8(",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8(":{"opcode":"argument_reporter_string_number","next":null,"parent":"`@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8%":{"opcode":"argument_reporter_string_number","next":null,"parent":"uV","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"g#":{"opcode":"control_if_else","next":null,"parent":"gJ","inputs":{"CONDITION":[2,"`["],"SUBSTACK":[2,"g%"],"SUBSTACK2":[2,"g("]},"fields":{},"shadow":false,"topLevel":false},"`[":{"opcode":"operator_gt","next":null,"parent":"g#","inputs":{"OPERAND1":[3,"a8)",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8)":{"opcode":"argument_reporter_string_number","next":null,"parent":"`[","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g%":{"opcode":"control_if_else","next":null,"parent":"g#","inputs":{"CONDITION":[2,"`]"],"SUBSTACK":[2,"g)"],"SUBSTACK2":[2,"us"]},"fields":{},"shadow":false,"topLevel":false},"`]":{"opcode":"operator_gt","next":null,"parent":"g%","inputs":{"OPERAND1":[3,"a8*",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8*":{"opcode":"argument_reporter_string_number","next":null,"parent":"`]","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g)":{"opcode":"control_if_else","next":null,"parent":"g%","inputs":{"CONDITION":[2,"`^"],"SUBSTACK":[2,"g*"],"SUBSTACK2":[2,"ui"]},"fields":{},"shadow":false,"topLevel":false},"`^":{"opcode":"operator_gt","next":null,"parent":"g)","inputs":{"OPERAND1":[3,"a8+",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8+":{"opcode":"argument_reporter_string_number","next":null,"parent":"`^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g*":{"opcode":"control_if_else","next":null,"parent":"g)","inputs":{"CONDITION":[2,"`_"],"SUBSTACK":[2,"uW"],"SUBSTACK2":[2,"uh"]},"fields":{},"shadow":false,"topLevel":false},"`_":{"opcode":"operator_gt","next":null,"parent":"g*","inputs":{"OPERAND1":[3,"a8,",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8,":{"opcode":"argument_reporter_string_number","next":null,"parent":"`_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uh":{"opcode":"data_replaceitemoflist","next":null,"parent":"g*","inputs":{"INDEX":[3,"]}",[7,0]],"ITEM":[3,"a8-",[10,""]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"a7W":{"opcode":"argument_reporter_string_number","next":null,"parent":"^a","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8-":{"opcode":"argument_reporter_string_number","next":null,"parent":"uh","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"ui":{"opcode":"data_replaceitemoflist","next":null,"parent":"g)","inputs":{"INDEX":[3,"^b",[7,0]],"ITEM":[3,"a8.",[10,""]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"a7X":{"opcode":"argument_reporter_string_number","next":null,"parent":"^e","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8.":{"opcode":"argument_reporter_string_number","next":null,"parent":"ui","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"us":{"opcode":"data_replaceitemoflist","next":null,"parent":"g%","inputs":{"INDEX":[3,"_v",[7,0]],"ITEM":[3,"a8/",[10,""]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"_y":{"opcode":"operator_subtract","next":null,"parent":"_x","inputs":{"NUM1":[3,"a8:",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"a8:":{"opcode":"argument_reporter_string_number","next":null,"parent":"_y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8/":{"opcode":"argument_reporter_string_number","next":null,"parent":"us","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"g(":{"opcode":"control_if_else","next":null,"parent":"g#","inputs":{"CONDITION":[2,"``"],"SUBSTACK":[2,"uX"],"SUBSTACK2":[2,"g+"]},"fields":{},"shadow":false,"topLevel":false},"``":{"opcode":"operator_gt","next":null,"parent":"g(","inputs":{"OPERAND1":[3,"a8;",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a8;":{"opcode":"argument_reporter_string_number","next":null,"parent":"``","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uX":{"opcode":"data_replaceitemoflist","next":null,"parent":"g(","inputs":{"INDEX":[3,"`{",[7,0]],"ITEM":[3,"a8=",[10,""]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"`{":{"opcode":"operator_add","next":null,"parent":"uX","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`|":{"opcode":"operator_mathop","next":null,"parent":"`{","inputs":{"NUM":[3,"`}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"`}":{"opcode":"operator_divide","next":null,"parent":"`|","inputs":{"NUM1":[3,"`~",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"`~":{"opcode":"operator_subtract","next":null,"parent":"`}","inputs":{"NUM1":[3,"a8?",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a8?":{"opcode":"argument_reporter_string_number","next":null,"parent":"`~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8=":{"opcode":"argument_reporter_string_number","next":null,"parent":"uX","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"g+":{"opcode":"control_if_else","next":null,"parent":"g(","inputs":{"CONDITION":[2,"{a"],"SUBSTACK":[2,"g,"],"SUBSTACK2":[2,"gT"]},"fields":{},"shadow":false,"topLevel":false},"{a":{"opcode":"operator_gt","next":null,"parent":"g+","inputs":{"OPERAND1":[3,"a8@",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"a8@":{"opcode":"argument_reporter_string_number","next":null,"parent":"{a","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g,":{"opcode":"control_if_else","next":null,"parent":"g+","inputs":{"CONDITION":[2,"{b"],"SUBSTACK":[2,"g-"],"SUBSTACK2":[2,"uY"]},"fields":{},"shadow":false,"topLevel":false},"{b":{"opcode":"operator_gt","next":null,"parent":"g,","inputs":{"OPERAND1":[3,"a8[",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a8[":{"opcode":"argument_reporter_string_number","next":null,"parent":"{b","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"g-":{"opcode":"control_if_else","next":null,"parent":"g,","inputs":{"CONDITION":[2,"{c"],"SUBSTACK":[2,"uZ"],"SUBSTACK2":[2,"u0"]},"fields":{},"shadow":false,"topLevel":false},"{c":{"opcode":"operator_gt","next":null,"parent":"g-","inputs":{"OPERAND1":[3,"a8]",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a8]":{"opcode":"argument_reporter_string_number","next":null,"parent":"{c","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"g-","inputs":{"INDEX":[3,"{d",[7,0]],"ITEM":[3,"a8^",[10,""]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"{d":{"opcode":"operator_add","next":null,"parent":"uZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{e",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"{e":{"opcode":"operator_mathop","next":null,"parent":"{d","inputs":{"NUM":[3,"{f",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{f":{"opcode":"operator_divide","next":null,"parent":"{e","inputs":{"NUM1":[3,"{g",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"{g":{"opcode":"operator_subtract","next":null,"parent":"{f","inputs":{"NUM1":[3,"a8_",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"a8_":{"opcode":"argument_reporter_string_number","next":null,"parent":"{g","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8^":{"opcode":"argument_reporter_string_number","next":null,"parent":"uZ","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"u0":{"opcode":"data_replaceitemoflist","next":null,"parent":"g-","inputs":{"INDEX":[3,"{h",[7,0]],"ITEM":[3,"a8`",[10,""]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"{h":{"opcode":"operator_add","next":null,"parent":"u0","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{i",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"{i":{"opcode":"operator_mathop","next":null,"parent":"{h","inputs":{"NUM":[3,"{j",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{j":{"opcode":"operator_divide","next":null,"parent":"{i","inputs":{"NUM1":[3,"{k",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"{k":{"opcode":"operator_subtract","next":null,"parent":"{j","inputs":{"NUM1":[3,"a8{",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"a8{":{"opcode":"argument_reporter_string_number","next":null,"parent":"{k","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8`":{"opcode":"argument_reporter_string_number","next":null,"parent":"u0","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"uY":{"opcode":"data_replaceitemoflist","next":null,"parent":"g,","inputs":{"INDEX":[3,"{l",[7,0]],"ITEM":[3,"a8|",[10,""]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"{l":{"opcode":"operator_add","next":null,"parent":"uY","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{m",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"{m":{"opcode":"operator_mathop","next":null,"parent":"{l","inputs":{"NUM":[3,"^[",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^[":{"opcode":"operator_divide","next":null,"parent":"{m","inputs":{"NUM1":[3,"^@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a7/":{"opcode":"argument_reporter_string_number","next":null,"parent":"^@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8|":{"opcode":"argument_reporter_string_number","next":null,"parent":"uY","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"gT":{"opcode":"control_if_else","next":null,"parent":"g+","inputs":{"CONDITION":[2,"^]"],"SUBSTACK":[2,"gU"],"SUBSTACK2":[2,"u1"]},"fields":{},"shadow":false,"topLevel":false},"a7:":{"opcode":"argument_reporter_string_number","next":null,"parent":"^]","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gU":{"opcode":"control_if_else","next":null,"parent":"gT","inputs":{"CONDITION":[2,"^^"],"SUBSTACK":[2,"uo"],"SUBSTACK2":[2,"up"]},"fields":{},"shadow":false,"topLevel":false},"a7;":{"opcode":"argument_reporter_string_number","next":null,"parent":"^^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uo":{"opcode":"data_replaceitemoflist","next":null,"parent":"gU","inputs":{"INDEX":[3,"^_",[7,0]],"ITEM":[3,"a8}",[10,""]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"a7=":{"opcode":"argument_reporter_string_number","next":null,"parent":"^|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8}":{"opcode":"argument_reporter_string_number","next":null,"parent":"uo","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"up":{"opcode":"data_replaceitemoflist","next":null,"parent":"gU","inputs":{"INDEX":[3,"^}",[7,0]],"ITEM":[3,"a8~",[10,""]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"_b":{"opcode":"operator_subtract","next":null,"parent":"_a","inputs":{"NUM1":[3,"a9a",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"a9a":{"opcode":"argument_reporter_string_number","next":null,"parent":"_b","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a8~":{"opcode":"argument_reporter_string_number","next":null,"parent":"up","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"u1":{"opcode":"data_replaceitemoflist","next":null,"parent":"gT","inputs":{"INDEX":[3,"^5",[7,0]],"ITEM":[3,"a9b",[10,""]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"^5":{"opcode":"operator_add","next":null,"parent":"u1","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7*":{"opcode":"argument_reporter_string_number","next":null,"parent":"^4","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a9b":{"opcode":"argument_reporter_string_number","next":null,"parent":"u1","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"a7_":{"opcode":"argument_reporter_string_number","next":null,"parent":"_m","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"um":{"opcode":"procedures_call","next":"g.","parent":"^6","inputs":{"9;fw%Q)R[CaRaj#x%L6V":[3,"]:",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.check_condition %s","argumentids":"[\"9;fw%Q)R[CaRaj#x%L6V\"]","warp":"true"}},"a7S":{"opcode":"argument_reporter_string_number","next":null,"parent":"].","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"g.":{"opcode":"control_if","next":"u2","parent":"um","inputs":{"CONDITION":[2,"a9c"],"SUBSTACK":[2,"a9d"]},"fields":{},"shadow":false,"topLevel":false},"a9c":{"opcode":"operator_equals","next":null,"parent":"g.","inputs":{"OPERAND1":[3,[12,"core.condition_test","x|g/RBvah4i`.Kz@pfYu"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a9d":{"opcode":"control_stop","next":null,"parent":"g.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"u2":{"opcode":"procedures_call","next":"g/","parent":"g.","inputs":{"HR}S7=-$neJrd)Sf~gG)":[3,"a9e",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","warp":"true"}},"a9e":{"opcode":"argument_reporter_string_number","next":null,"parent":"u2","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"g/":{"opcode":"control_if_else","next":null,"parent":"u2","inputs":{"CONDITION":[2,"a9f"],"SUBSTACK":[2,"g:"],"SUBSTACK2":[2,"g;"]},"fields":{},"shadow":false,"topLevel":false},"a9f":{"opcode":"operator_lt","next":null,"parent":"g/","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"g:":{"opcode":"control_if_else","next":null,"parent":"g/","inputs":{"CONDITION":[2,"a9g"],"SUBSTACK":[2,"g="],"SUBSTACK2":[2,"g?"]},"fields":{},"shadow":false,"topLevel":false},"a9g":{"opcode":"operator_lt","next":null,"parent":"g:","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"g=":{"opcode":"control_if_else","next":null,"parent":"g:","inputs":{"CONDITION":[2,"a9h"],"SUBSTACK":[2,"g@"],"SUBSTACK2":[2,"u3"]},"fields":{},"shadow":false,"topLevel":false},"a9h":{"opcode":"operator_lt","next":null,"parent":"g=","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"g@":{"opcode":"control_if_else","next":null,"parent":"g=","inputs":{"CONDITION":[2,"a9i"],"SUBSTACK":[2,"as"],"SUBSTACK2":[2,"a9j"]},"fields":{},"shadow":false,"topLevel":false},"a9i":{"opcode":"operator_lt","next":null,"parent":"g@","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as":{"opcode":"control_if_else","next":"u4","parent":"g@","inputs":{"CONDITION":[2,"];"],"SUBSTACK":[2,"gG"],"SUBSTACK2":[2,"u5"]},"fields":{},"shadow":false,"topLevel":false},"a7T":{"opcode":"operator_mod","next":null,"parent":"];","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"gG":{"opcode":"procedures_call","next":"a9k","parent":"as","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[3,"a9l",[10,""]],"3)l`,m3z-UYcLsco:|pk":[3,"]=",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","warp":"true"}},"a9l":{"opcode":"operator_mod","next":null,"parent":"gG","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a7U":{"opcode":"operator_divide","next":null,"parent":"]@","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a9k":{"opcode":"data_setvariableto","next":null,"parent":"gG","inputs":{"VALUE":[3,[12,"core.rotate_return","zY(u-?O,+t%[td.I,e.a"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"u5":{"opcode":"procedures_call","next":"u6","parent":"as","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"a9m",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"a9m":{"opcode":"operator_mod","next":null,"parent":"u5","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"u4":{"opcode":"data_setvariableto","next":"au","parent":"as","inputs":{"VALUE":[3,"{n",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"{n":{"opcode":"operator_mathop","next":null,"parent":"u4","inputs":{"NUM":[3,"{o",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{o":{"opcode":"operator_divide","next":null,"parent":"{n","inputs":{"NUM1":[3,"a9n",[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"a9n":{"opcode":"operator_mod","next":null,"parent":"{o","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"au":{"opcode":"control_if_else","next":"a9o","parent":"u4","inputs":{"CONDITION":[2,"a9p"],"SUBSTACK":[2,"g["],"SUBSTACK2":[2,"g]"]},"fields":{},"shadow":false,"topLevel":false},"a9p":{"opcode":"operator_lt","next":null,"parent":"au","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"g[":{"opcode":"control_if_else","next":null,"parent":"au","inputs":{"CONDITION":[2,"a9q"],"SUBSTACK":[2,"g^"],"SUBSTACK2":[2,"g_"]},"fields":{},"shadow":false,"topLevel":false},"a9q":{"opcode":"operator_lt","next":null,"parent":"g[","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"g^":{"opcode":"control_if_else","next":null,"parent":"g[","inputs":{"CONDITION":[2,"a9r"],"SUBSTACK":[2,"{p"],"SUBSTACK2":[2,"u7"]},"fields":{},"shadow":false,"topLevel":false},"a9r":{"opcode":"operator_lt","next":null,"parent":"g^","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"{p":{"opcode":"control_if_else","next":null,"parent":"g^","inputs":{"CONDITION":[2,"a9s"]},"fields":{},"shadow":false,"topLevel":false},"a9s":{"opcode":"operator_lt","next":null,"parent":"{p","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"u7":{"opcode":"control_if_else","next":null,"parent":"g^","inputs":{"CONDITION":[2,"a9t"],"SUBSTACK":[2,"u8"]},"fields":{},"shadow":false,"topLevel":false},"a9t":{"opcode":"operator_lt","next":null,"parent":"u7","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"g_":{"opcode":"control_if_else","next":null,"parent":"g[","inputs":{"CONDITION":[2,"a9u"],"SUBSTACK":[2,"u9"],"SUBSTACK2":[2,"{q"]},"fields":{},"shadow":false,"topLevel":false},"a9u":{"opcode":"operator_lt","next":null,"parent":"g_","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"u9":{"opcode":"control_if_else","next":null,"parent":"g_","inputs":{"CONDITION":[2,"a9v"],"SUBSTACK":[2,"u!"]},"fields":{},"shadow":false,"topLevel":false},"a9v":{"opcode":"operator_lt","next":null,"parent":"u9","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"{q":{"opcode":"control_if_else","next":null,"parent":"g_","inputs":{"CONDITION":[2,"a9w"]},"fields":{},"shadow":false,"topLevel":false},"a9w":{"opcode":"operator_lt","next":null,"parent":"{q","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"g]":{"opcode":"control_if_else","next":null,"parent":"au","inputs":{"CONDITION":[2,"a9x"],"SUBSTACK":[2,"g`"],"SUBSTACK2":[2,"g{"]},"fields":{},"shadow":false,"topLevel":false},"a9x":{"opcode":"operator_lt","next":null,"parent":"g]","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"g`":{"opcode":"control_if_else","next":null,"parent":"g]","inputs":{"CONDITION":[2,"a9y"],"SUBSTACK":[2,"{r"],"SUBSTACK2":[2,"{s"]},"fields":{},"shadow":false,"topLevel":false},"a9y":{"opcode":"operator_lt","next":null,"parent":"g`","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"{r":{"opcode":"control_if_else","next":null,"parent":"g`","inputs":{"CONDITION":[2,"a9z"]},"fields":{},"shadow":false,"topLevel":false},"a9z":{"opcode":"operator_lt","next":null,"parent":"{r","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"{s":{"opcode":"control_if_else","next":null,"parent":"g`","inputs":{"CONDITION":[2,"a9A"]},"fields":{},"shadow":false,"topLevel":false},"a9A":{"opcode":"operator_lt","next":null,"parent":"{s","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"g{":{"opcode":"control_if_else","next":null,"parent":"g]","inputs":{"CONDITION":[2,"a9B"],"SUBSTACK":[2,"u#"],"SUBSTACK2":[2,"{t"]},"fields":{},"shadow":false,"topLevel":false},"a9B":{"opcode":"operator_lt","next":null,"parent":"g{","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"u#":{"opcode":"control_if_else","next":null,"parent":"g{","inputs":{"CONDITION":[2,"a9C"],"SUBSTACK2":[2,"{u"]},"fields":{},"shadow":false,"topLevel":false},"a9C":{"opcode":"operator_lt","next":null,"parent":"u#","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"{u":{"opcode":"procedures_call","next":null,"parent":"u#","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"{v",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"{v":{"opcode":"operator_mod","next":null,"parent":"{u","inputs":{"NUM1":[3,"{w",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{w":{"opcode":"operator_mathop","next":null,"parent":"{v","inputs":{"NUM":[3,"a9D",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9D":{"opcode":"operator_divide","next":null,"parent":"{w","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"{t":{"opcode":"control_if_else","next":null,"parent":"g{","inputs":{"CONDITION":[2,"a9E"]},"fields":{},"shadow":false,"topLevel":false},"a9E":{"opcode":"operator_lt","next":null,"parent":"{t","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a9o":{"opcode":"data_changevariableby","next":null,"parent":"au","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"a9j":{"opcode":"data_changevariableby","next":null,"parent":"g@","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"u3":{"opcode":"control_if_else","next":null,"parent":"g=","inputs":{"CONDITION":[2,"a9F"],"SUBSTACK":[2,"a9G"]},"fields":{},"shadow":false,"topLevel":false},"a9F":{"opcode":"operator_lt","next":null,"parent":"u3","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a9G":{"opcode":"data_changevariableby","next":null,"parent":"u3","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"g?":{"opcode":"control_if_else","next":null,"parent":"g:","inputs":{"CONDITION":[2,"a9H"],"SUBSTACK":[2,"{x"],"SUBSTACK2":[2,"g|"]},"fields":{},"shadow":false,"topLevel":false},"a9H":{"opcode":"operator_lt","next":null,"parent":"g?","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"{x":{"opcode":"control_if_else","next":null,"parent":"g?","inputs":{"CONDITION":[2,"a9I"]},"fields":{},"shadow":false,"topLevel":false},"a9I":{"opcode":"operator_lt","next":null,"parent":"{x","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"g|":{"opcode":"control_if_else","next":null,"parent":"g?","inputs":{"CONDITION":[2,"a9J"],"SUBSTACK2":[2,"av"],"SUBSTACK":[2,"u%"]},"fields":{},"shadow":false,"topLevel":false},"a9J":{"opcode":"operator_lt","next":null,"parent":"g|","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"av":{"opcode":"control_if_else","next":"g}","parent":"g|","inputs":{"CONDITION":[2,"{y"],"SUBSTACK":[2,"u("],"SUBSTACK2":[2,"{z"]},"fields":{},"shadow":false,"topLevel":false},"{y":{"opcode":"operator_gt","next":null,"parent":"av","inputs":{"OPERAND1":[3,"a9K",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a9K":{"opcode":"operator_mod","next":null,"parent":"{y","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"u(":{"opcode":"procedures_call","next":"u)","parent":"av","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"a9L",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"a9L":{"opcode":"operator_mod","next":null,"parent":"u(","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"u)":{"opcode":"procedures_call","next":"a9M","parent":"u(","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"{A",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"{A":{"opcode":"operator_mod","next":null,"parent":"u)","inputs":{"NUM1":[3,"{B",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"{B":{"opcode":"operator_mathop","next":null,"parent":"{A","inputs":{"NUM":[3,"a9N",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9N":{"opcode":"operator_divide","next":null,"parent":"{B","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a9M":{"opcode":"data_setvariableto","next":null,"parent":"u)","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"{z":{"opcode":"data_setvariableto","next":null,"parent":"av","inputs":{"VALUE":[3,"a9O",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a9O":{"opcode":"operator_mod","next":null,"parent":"{z","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"g}":{"opcode":"control_if","next":"g~","parent":"av","inputs":{"CONDITION":[2,"{C"],"SUBSTACK":[2,"{D"]},"fields":{},"shadow":false,"topLevel":false},"{C":{"opcode":"operator_gt","next":null,"parent":"g}","inputs":{"OPERAND1":[3,"a9P",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a9P":{"opcode":"operator_mod","next":null,"parent":"{C","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"{D":{"opcode":"data_setvariableto","next":null,"parent":"g}","inputs":{"VALUE":[3,"a9Q",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a9Q":{"opcode":"operator_subtract","next":null,"parent":"{D","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"g~":{"opcode":"control_if_else","next":null,"parent":"g}","inputs":{"CONDITION":[2,"{E"],"SUBSTACK":[2,"u*"],"SUBSTACK2":[2,"u+"]},"fields":{},"shadow":false,"topLevel":false},"{E":{"opcode":"operator_gt","next":null,"parent":"g~","inputs":{"OPERAND1":[3,"a9R",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a9R":{"opcode":"operator_mod","next":null,"parent":"{E","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"u*":{"opcode":"procedures_call","next":"u,","parent":"g~","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"{F",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"{F":{"opcode":"operator_mod","next":null,"parent":"u*","inputs":{"NUM1":[3,"{G",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{G":{"opcode":"operator_mathop","next":null,"parent":"{F","inputs":{"NUM":[3,"a9S",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9S":{"opcode":"operator_divide","next":null,"parent":"{G","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"u,":{"opcode":"procedures_call","next":"{H","parent":"u*","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[3,"a9T",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","warp":"true"}},"a9T":{"opcode":"operator_add","next":null,"parent":"u,","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"{H":{"opcode":"procedures_call","next":null,"parent":"u,","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"{I",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"{I":{"opcode":"operator_mod","next":null,"parent":"{H","inputs":{"NUM1":[3,"{J",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{J":{"opcode":"operator_mathop","next":null,"parent":"{I","inputs":{"NUM":[3,"a9U",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9U":{"opcode":"operator_divide","next":null,"parent":"{J","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"u+":{"opcode":"procedures_call","next":"{K","parent":"g~","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"{L",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"{L":{"opcode":"operator_mod","next":null,"parent":"u+","inputs":{"NUM1":[3,"{M",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{M":{"opcode":"operator_mathop","next":null,"parent":"{L","inputs":{"NUM":[3,"a9V",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9V":{"opcode":"operator_divide","next":null,"parent":"{M","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"{K":{"opcode":"data_setvariableto","next":"u-","parent":"u+","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"u-":{"opcode":"procedures_call","next":"{N","parent":"{K","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"{O",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"{O":{"opcode":"operator_mod","next":null,"parent":"u-","inputs":{"NUM1":[3,"{P",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{P":{"opcode":"operator_mathop","next":null,"parent":"{O","inputs":{"NUM":[3,"a9W",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a9W":{"opcode":"operator_divide","next":null,"parent":"{P","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"{N":{"opcode":"procedures_call","next":null,"parent":"u-","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[3,"a9X",[10,""]],"-H4sp=),qi[~:f)tEWi`":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","warp":"true"}},"a9X":{"opcode":"operator_add","next":null,"parent":"{N","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"g;":{"opcode":"control_if_else","next":null,"parent":"g/","inputs":{"CONDITION":[2,"a9Y"],"SUBSTACK":[2,"ha"],"SUBSTACK2":[2,"hb"]},"fields":{},"shadow":false,"topLevel":false},"a9Y":{"opcode":"operator_lt","next":null,"parent":"g;","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ha":{"opcode":"control_if_else","next":null,"parent":"g;","inputs":{"CONDITION":[2,"a9Z"],"SUBSTACK":[2,"{Q"],"SUBSTACK2":[2,"u."]},"fields":{},"shadow":false,"topLevel":false},"a9Z":{"opcode":"operator_lt","next":null,"parent":"ha","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"{Q":{"opcode":"control_if_else","next":null,"parent":"ha","inputs":{"CONDITION":[2,"a90"]},"fields":{},"shadow":false,"topLevel":false},"a90":{"opcode":"operator_lt","next":null,"parent":"{Q","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"hb":{"opcode":"control_if_else","next":null,"parent":"g;","inputs":{"CONDITION":[2,"a91"],"SUBSTACK":[2,"{R"],"SUBSTACK2":[2,"{S"]},"fields":{},"shadow":false,"topLevel":false},"a91":{"opcode":"operator_lt","next":null,"parent":"hb","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"{R":{"opcode":"control_if_else","next":null,"parent":"hb","inputs":{"CONDITION":[2,"a92"]},"fields":{},"shadow":false,"topLevel":false},"a92":{"opcode":"operator_lt","next":null,"parent":"{R","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"{S":{"opcode":"control_if_else","next":null,"parent":"hb","inputs":{"CONDITION":[2,"a93"]},"fields":{},"shadow":false,"topLevel":false},"a93":{"opcode":"operator_lt","next":null,"parent":"{S","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"{T":{"opcode":"procedures_definition","next":"hc","parent":null,"inputs":{"custom_block":[1,"{U"]},"fields":{},"shadow":false,"topLevel":true,"x":10161,"y":409},"{U":{"opcode":"procedures_prototype","next":null,"parent":"{T","inputs":{"9;fw%Q)R[CaRaj#x%L6V":[1,"a94"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.check_condition %s","argumentids":"[\"9;fw%Q)R[CaRaj#x%L6V\"]","argumentnames":"[\"cond\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a94":{"opcode":"argument_reporter_string_number","next":null,"parent":"{U","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":true,"topLevel":false},"hc":{"opcode":"control_if_else","next":null,"parent":"{T","inputs":{"CONDITION":[2,"{V"],"SUBSTACK":[2,"gW"],"SUBSTACK2":[2,"gN"]},"fields":{},"shadow":false,"topLevel":false},"{V":{"opcode":"operator_lt","next":null,"parent":"hc","inputs":{"OPERAND1":[3,"a95",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a95":{"opcode":"argument_reporter_string_number","next":null,"parent":"{V","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gW":{"opcode":"control_if_else","next":null,"parent":"hc","inputs":{"CONDITION":[2,"_z"],"SUBSTACK":[2,"gX"],"SUBSTACK2":[2,"hd"]},"fields":{},"shadow":false,"topLevel":false},"a7|":{"opcode":"argument_reporter_string_number","next":null,"parent":"_z","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gX":{"opcode":"control_if_else","next":null,"parent":"gW","inputs":{"CONDITION":[2,"_A"],"SUBSTACK":[2,"gY"],"SUBSTACK2":[2,"gZ"]},"fields":{},"shadow":false,"topLevel":false},"a7}":{"opcode":"argument_reporter_string_number","next":null,"parent":"_A","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gY":{"opcode":"control_if_else","next":null,"parent":"gX","inputs":{"CONDITION":[2,"_B"],"SUBSTACK":[2,"_C"],"SUBSTACK2":[2,"_D"]},"fields":{},"shadow":false,"topLevel":false},"a7~":{"opcode":"argument_reporter_string_number","next":null,"parent":"_B","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"a8a":{"opcode":"data_itemoflist","next":null,"parent":"_C","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a8b":{"opcode":"data_itemoflist","next":null,"parent":"_E","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"gZ":{"opcode":"control_if_else","next":null,"parent":"gX","inputs":{"CONDITION":[2,"_F"],"SUBSTACK":[2,"_G"],"SUBSTACK2":[2,"_H"]},"fields":{},"shadow":false,"topLevel":false},"a8c":{"opcode":"argument_reporter_string_number","next":null,"parent":"_F","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"a8d":{"opcode":"data_itemoflist","next":null,"parent":"_G","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a8e":{"opcode":"data_itemoflist","next":null,"parent":"_I","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"hd":{"opcode":"control_if_else","next":null,"parent":"gW","inputs":{"CONDITION":[2,"{W"],"SUBSTACK":[2,"gL"],"SUBSTACK2":[2,"gM"]},"fields":{},"shadow":false,"topLevel":false},"{W":{"opcode":"operator_lt","next":null,"parent":"hd","inputs":{"OPERAND1":[3,"a96",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a96":{"opcode":"argument_reporter_string_number","next":null,"parent":"{W","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gL":{"opcode":"control_if_else","next":null,"parent":"hd","inputs":{"CONDITION":[2,"{X"],"SUBSTACK":[2,"{Y"],"SUBSTACK2":[2,"^w"]},"fields":{},"shadow":false,"topLevel":false},"{X":{"opcode":"operator_lt","next":null,"parent":"gL","inputs":{"OPERAND1":[3,"a97",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a97":{"opcode":"argument_reporter_string_number","next":null,"parent":"{X","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"{Y":{"opcode":"data_setvariableto","next":null,"parent":"gL","inputs":{"VALUE":[3,"a98",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"a98":{"opcode":"data_itemoflist","next":null,"parent":"{Y","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a74":{"opcode":"data_itemoflist","next":null,"parent":"^x","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"gM":{"opcode":"control_if_else","next":null,"parent":"hd","inputs":{"CONDITION":[2,"^y"],"SUBSTACK":[2,"^z"],"SUBSTACK2":[2,"^A"]},"fields":{},"shadow":false,"topLevel":false},"a75":{"opcode":"argument_reporter_string_number","next":null,"parent":"^y","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"a76":{"opcode":"data_itemoflist","next":null,"parent":"^z","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a77":{"opcode":"data_itemoflist","next":null,"parent":"^B","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"gN":{"opcode":"control_if_else","next":null,"parent":"hc","inputs":{"CONDITION":[2,"^C"],"SUBSTACK":[2,"gO"],"SUBSTACK2":[2,"he"]},"fields":{},"shadow":false,"topLevel":false},"a78":{"opcode":"argument_reporter_string_number","next":null,"parent":"^C","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gO":{"opcode":"control_if_else","next":null,"parent":"gN","inputs":{"CONDITION":[2,"^D"],"SUBSTACK":[2,"gP"],"SUBSTACK2":[2,"hf"]},"fields":{},"shadow":false,"topLevel":false},"a79":{"opcode":"argument_reporter_string_number","next":null,"parent":"^D","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gP":{"opcode":"control_if_else","next":null,"parent":"gO","inputs":{"CONDITION":[2,"^E"],"SUBSTACK":[2,"^F"],"SUBSTACK2":[2,"{Z"]},"fields":{},"shadow":false,"topLevel":false},"a7!":{"opcode":"argument_reporter_string_number","next":null,"parent":"^E","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"^G":{"opcode":"operator_gt","next":null,"parent":"^F","inputs":{"OPERAND1":[3,"u/",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"u/":{"opcode":"operator_subtract","next":null,"parent":"^G","inputs":{"NUM1":[3,"a99",[4,0]],"NUM2":[3,"a9!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a99":{"opcode":"data_itemoflist","next":null,"parent":"u/","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9!":{"opcode":"data_itemoflist","next":null,"parent":"u/","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"{Z":{"opcode":"data_setvariableto","next":null,"parent":"gP","inputs":{"VALUE":[3,"{0",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"{0":{"opcode":"operator_gt","next":null,"parent":"{Z","inputs":{"OPERAND1":[3,"u:",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"u:":{"opcode":"operator_subtract","next":null,"parent":"{0","inputs":{"NUM1":[3,"a9#",[4,0]],"NUM2":[3,"a9%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a9#":{"opcode":"data_itemoflist","next":null,"parent":"u:","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9%":{"opcode":"data_itemoflist","next":null,"parent":"u:","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"hf":{"opcode":"control_if_else","next":null,"parent":"gO","inputs":{"CONDITION":[2,"{1"],"SUBSTACK":[2,"{2"],"SUBSTACK2":[2,"{3"]},"fields":{},"shadow":false,"topLevel":false},"{1":{"opcode":"operator_lt","next":null,"parent":"hf","inputs":{"OPERAND1":[3,"a9(",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"a9(":{"opcode":"argument_reporter_string_number","next":null,"parent":"{1","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"{2":{"opcode":"data_setvariableto","next":null,"parent":"hf","inputs":{"VALUE":[3,"u;",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"u;":{"opcode":"operator_equals","next":null,"parent":"{2","inputs":{"OPERAND1":[3,"a9)",[10,""]],"OPERAND2":[3,"a9*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a9)":{"opcode":"data_itemoflist","next":null,"parent":"u;","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9*":{"opcode":"data_itemoflist","next":null,"parent":"u;","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"{3":{"opcode":"data_setvariableto","next":null,"parent":"hf","inputs":{"VALUE":[3,"{4",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"{4":{"opcode":"operator_not","next":null,"parent":"{3","inputs":{"OPERAND":[2,"u="]},"fields":{},"shadow":false,"topLevel":false},"u=":{"opcode":"operator_equals","next":null,"parent":"{4","inputs":{"OPERAND1":[3,"a9+",[10,""]],"OPERAND2":[3,"a9,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a9+":{"opcode":"data_itemoflist","next":null,"parent":"u=","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9,":{"opcode":"data_itemoflist","next":null,"parent":"u=","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"he":{"opcode":"control_if_else","next":null,"parent":"gN","inputs":{"CONDITION":[2,"{5"],"SUBSTACK":[2,"gH"],"SUBSTACK2":[2,"gS"]},"fields":{},"shadow":false,"topLevel":false},"{5":{"opcode":"operator_lt","next":null,"parent":"he","inputs":{"OPERAND1":[3,"a9-",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a9-":{"opcode":"argument_reporter_string_number","next":null,"parent":"{5","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"gH":{"opcode":"control_if_else","next":null,"parent":"he","inputs":{"CONDITION":[2,"]["],"SUBSTACK":[2,"]]"],"SUBSTACK2":[2,"^T"]},"fields":{},"shadow":false,"topLevel":false},"a7V":{"opcode":"argument_reporter_string_number","next":null,"parent":"][","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"ug":{"opcode":"operator_multiply","next":null,"parent":"]]","inputs":{"NUM1":[3,"^8",[4,0]],"NUM2":[3,"u?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a7+":{"opcode":"data_itemoflist","next":null,"parent":"^8","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"u?":{"opcode":"operator_equals","next":null,"parent":"ug","inputs":{"OPERAND1":[3,"a9.",[10,""]],"OPERAND2":[3,"a9/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a9.":{"opcode":"data_itemoflist","next":null,"parent":"u?","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9/":{"opcode":"data_itemoflist","next":null,"parent":"u?","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"uk":{"opcode":"operator_add","next":null,"parent":"^U","inputs":{"NUM1":[3,"a9:",[4,0]],"NUM2":[3,"^9",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a9:":{"opcode":"data_itemoflist","next":null,"parent":"uk","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"un":{"opcode":"operator_equals","next":null,"parent":"^9","inputs":{"OPERAND1":[3,"a9;",[10,""]],"OPERAND2":[3,"a9=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a9;":{"opcode":"data_itemoflist","next":null,"parent":"un","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a9=":{"opcode":"data_itemoflist","next":null,"parent":"un","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"gS":{"opcode":"control_if_else","next":null,"parent":"he","inputs":{"CONDITION":[2,"^!"],"SUBSTACK":[2,"a9?"],"SUBSTACK2":[2,"uf"]},"fields":{},"shadow":false,"topLevel":false},"a7,":{"opcode":"argument_reporter_string_number","next":null,"parent":"^!","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"a9?":{"opcode":"data_setvariableto","next":null,"parent":"gS","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"uf":{"opcode":"data_setvariableto","next":null,"parent":"gS","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false,"comment":"])"},"a8j":{"opcode":"argument_reporter_string_number","next":null,"parent":"_*","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"uC":{"opcode":"procedures_call","next":"hg","parent":"_)","inputs":{"kc)Odu7|W(7v#A=kW.{G":[3,"{6",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.check_condition %s","argumentids":"[\"kc)Odu7|W(7v#A=kW.{G\"]","warp":"true"}},"{6":{"opcode":"operator_mod","next":null,"parent":"uC","inputs":{"NUM1":[3,"{7",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{7":{"opcode":"operator_mathop","next":null,"parent":"{6","inputs":{"NUM":[3,"{8",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{8":{"opcode":"operator_divide","next":null,"parent":"{7","inputs":{"NUM1":[3,"a9@",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a9@":{"opcode":"argument_reporter_string_number","next":null,"parent":"{8","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"hg":{"opcode":"control_if","next":"u@","parent":"uC","inputs":{"CONDITION":[2,"a9["],"SUBSTACK":[2,"a9]"]},"fields":{},"shadow":false,"topLevel":false},"a9[":{"opcode":"operator_equals","next":null,"parent":"hg","inputs":{"OPERAND1":[3,[12,"core.condition_test","x|g/RBvah4i`.Kz@pfYu"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a9]":{"opcode":"control_stop","next":null,"parent":"hg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"_,":{"opcode":"procedures_definition","next":"aq","parent":null,"inputs":{"custom_block":[1,"_+"]},"fields":{},"shadow":false,"topLevel":true,"x":12317,"y":415},"a8k":{"opcode":"argument_reporter_string_number","next":null,"parent":"_+","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"aq":{"opcode":"data_setvariableto","next":"_-","parent":"_,","inputs":{"VALUE":[3,"a9^",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false,"comment":"]+"},"a9^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aq","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"uD":{"opcode":"control_repeat","next":"g0","parent":"_-","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"uE"]},"fields":{},"shadow":false,"topLevel":false},"uE":{"opcode":"data_setvariableto","next":"_.","parent":"uD","inputs":{"VALUE":[3,"u[",[10,""]]},"fields":{"VARIABLE":["core.little_endian","Sp7jtJ,4KrK(][NW_Syc"]},"shadow":false,"topLevel":false},"u[":{"opcode":"operator_add","next":null,"parent":"uE","inputs":{"NUM1":[3,"a9_",[4,0]],"NUM2":[3,"a9`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a9_":{"opcode":"operator_multiply","next":null,"parent":"u[","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a9`":{"opcode":"operator_mod","next":null,"parent":"u[","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a8l":{"opcode":"operator_divide","next":null,"parent":"_/","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"g0":{"opcode":"control_if_else","next":null,"parent":"uD","inputs":{"CONDITION":[2,"_:"],"SUBSTACK":[2,"g1"],"SUBSTACK2":[2,"gQ"]},"fields":{},"shadow":false,"topLevel":false},"a8m":{"opcode":"operator_mod","next":null,"parent":"_:","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000000"]]},"fields":{},"shadow":false,"topLevel":false},"g1":{"opcode":"control_if_else","next":null,"parent":"g0","inputs":{"CONDITION":[2,"_;"],"SUBSTACK":[2,"g2"],"SUBSTACK2":[2,"a9{"]},"fields":{},"shadow":false,"topLevel":false},"a8n":{"opcode":"operator_mod","next":null,"parent":"_;","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x08000000"]]},"fields":{},"shadow":false,"topLevel":false},"g2":{"opcode":"control_if_else","next":null,"parent":"g1","inputs":{"CONDITION":[2,"_="],"SUBSTACK":[2,"at"],"SUBSTACK2":[2,"hh"]},"fields":{},"shadow":false,"topLevel":false},"a8o":{"opcode":"operator_mod","next":null,"parent":"_=","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"at":{"opcode":"control_if_else","next":null,"parent":"g2","inputs":{"CONDITION":[2,"_?"],"SUBSTACK":[2,"a9|"],"SUBSTACK2":[2,"hi"]},"fields":{},"shadow":false,"topLevel":false},"a8p":{"opcode":"operator_divide","next":null,"parent":"_@","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a9|":{"opcode":"data_setvariableto","next":null,"parent":"at","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hi":{"opcode":"control_if_else","next":null,"parent":"at","inputs":{"CONDITION":[2,"uF"],"SUBSTACK":[2,"hj"],"SUBSTACK2":[2,"a9}"]},"fields":{},"shadow":false,"topLevel":false},"uF":{"opcode":"operator_and","next":null,"parent":"hi","inputs":{"OPERAND1":[2,"_["],"OPERAND2":[2,"{9"]},"fields":{},"shadow":false,"topLevel":false},"a8q":{"opcode":"operator_mod","next":null,"parent":"_[","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"{9":{"opcode":"operator_gt","next":null,"parent":"uF","inputs":{"OPERAND1":[3,"a9~",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a9~":{"opcode":"operator_mod","next":null,"parent":"{9","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hj":{"opcode":"control_if_else","next":null,"parent":"hi","inputs":{"CONDITION":[2,"{!"],"SUBSTACK":[2,"hk"],"SUBSTACK2":[2,"hl"]},"fields":{},"shadow":false,"topLevel":false},"{!":{"opcode":"operator_equals","next":null,"parent":"hj","inputs":{"OPERAND1":[3,"{#",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"{#":{"opcode":"operator_mod","next":null,"parent":"{!","inputs":{"NUM1":[3,"{%",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{%":{"opcode":"operator_mathop","next":null,"parent":"{#","inputs":{"NUM":[3,"a!a",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a!a":{"opcode":"operator_divide","next":null,"parent":"{%","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"hk":{"opcode":"control_if_else","next":null,"parent":"hj","inputs":{"CONDITION":[2,"{("],"SUBSTACK":[2,"a!b"],"SUBSTACK2":[2,"hm"]},"fields":{},"shadow":false,"topLevel":false},"{(":{"opcode":"operator_gt","next":null,"parent":"hk","inputs":{"OPERAND1":[3,"a!c",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!c":{"opcode":"operator_mod","next":null,"parent":"{(","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!b":{"opcode":"data_setvariableto","next":null,"parent":"hk","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hm":{"opcode":"control_if_else","next":null,"parent":"hk","inputs":{"CONDITION":[2,"{)"],"SUBSTACK":[2,"a!d"],"SUBSTACK2":[2,"a!e"]},"fields":{},"shadow":false,"topLevel":false},"{)":{"opcode":"operator_gt","next":null,"parent":"hm","inputs":{"OPERAND1":[3,"a!f",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!f":{"opcode":"operator_mod","next":null,"parent":"{)","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!d":{"opcode":"data_setvariableto","next":null,"parent":"hm","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a!e":{"opcode":"data_setvariableto","next":null,"parent":"hm","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hl":{"opcode":"control_if_else","next":null,"parent":"hj","inputs":{"CONDITION":[2,"{*"],"SUBSTACK":[2,"a!g"],"SUBSTACK2":[2,"hn"]},"fields":{},"shadow":false,"topLevel":false},"{*":{"opcode":"operator_gt","next":null,"parent":"hl","inputs":{"OPERAND1":[3,"a!h",[10,""]],"OPERAND2":[1,[10,"0x003FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!h":{"opcode":"operator_mod","next":null,"parent":"{*","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00800000"]]},"fields":{},"shadow":false,"topLevel":false},"a!g":{"opcode":"data_setvariableto","next":null,"parent":"hl","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hn":{"opcode":"control_if_else","next":null,"parent":"hl","inputs":{"CONDITION":[2,"{+"],"SUBSTACK":[2,"a!i"],"SUBSTACK2":[2,"{,"]},"fields":{},"shadow":false,"topLevel":false},"{+":{"opcode":"operator_equals","next":null,"parent":"hn","inputs":{"OPERAND1":[3,"{-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{-":{"opcode":"operator_mod","next":null,"parent":"{+","inputs":{"NUM1":[3,"{.",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"{.":{"opcode":"operator_mathop","next":null,"parent":"{-","inputs":{"NUM":[3,"a!j",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a!j":{"opcode":"operator_divide","next":null,"parent":"{.","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a!i":{"opcode":"data_setvariableto","next":null,"parent":"hn","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"{,":{"opcode":"data_setvariableto","next":null,"parent":"hn","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a9}":{"opcode":"data_setvariableto","next":null,"parent":"hi","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hh":{"opcode":"control_if_else","next":null,"parent":"g2","inputs":{"CONDITION":[2,"u]"],"SUBSTACK":[2,"ho"],"SUBSTACK2":[2,"a!k"]},"fields":{},"shadow":false,"topLevel":false},"u]":{"opcode":"operator_and","next":null,"parent":"hh","inputs":{"OPERAND1":[2,"{/"],"OPERAND2":[2,"{:"]},"fields":{},"shadow":false,"topLevel":false},"{/":{"opcode":"operator_gt","next":null,"parent":"u]","inputs":{"OPERAND1":[3,"a!l",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a!l":{"opcode":"operator_mod","next":null,"parent":"{/","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"{:":{"opcode":"operator_gt","next":null,"parent":"u]","inputs":{"OPERAND1":[3,"a!m",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a!m":{"opcode":"operator_mod","next":null,"parent":"{:","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ho":{"opcode":"control_if_else","next":null,"parent":"hh","inputs":{"CONDITION":[2,"{;"],"SUBSTACK":[2,"a!n"],"SUBSTACK2":[2,"hp"]},"fields":{},"shadow":false,"topLevel":false},"{;":{"opcode":"operator_gt","next":null,"parent":"ho","inputs":{"OPERAND1":[3,"a!o",[10,""]],"OPERAND2":[1,[10,"0x003FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!o":{"opcode":"operator_mod","next":null,"parent":"{;","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00800000"]]},"fields":{},"shadow":false,"topLevel":false},"a!n":{"opcode":"data_setvariableto","next":null,"parent":"ho","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"hp":{"opcode":"control_if_else","next":null,"parent":"ho","inputs":{"CONDITION":[2,"^I"],"SUBSTACK":[2,"a!p"],"SUBSTACK2":[2,"a!q"]},"fields":{},"shadow":false,"topLevel":false},"^I":{"opcode":"operator_equals","next":null,"parent":"hp","inputs":{"OPERAND1":[3,"^H",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a7#":{"opcode":"operator_divide","next":null,"parent":"^J","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a!p":{"opcode":"data_setvariableto","next":null,"parent":"hp","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a!q":{"opcode":"data_setvariableto","next":null,"parent":"hp","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a!k":{"opcode":"data_setvariableto","next":null,"parent":"hh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a9{":{"opcode":"data_setvariableto","next":null,"parent":"g1","inputs":{"VALUE":[1,[10,"7"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"gQ":{"opcode":"control_if_else","next":null,"parent":"g0","inputs":{"CONDITION":[2,"^K"],"SUBSTACK":[2,"gR"],"SUBSTACK2":[2,"hq"]},"fields":{},"shadow":false,"topLevel":false},"a7%":{"opcode":"operator_mod","next":null,"parent":"^K","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x0F000000"]]},"fields":{},"shadow":false,"topLevel":false},"gR":{"opcode":"control_if_else","next":null,"parent":"gQ","inputs":{"CONDITION":[2,"^L"],"SUBSTACK":[2,"a!r"],"SUBSTACK2":[2,"a!s"]},"fields":{},"shadow":false,"topLevel":false},"a7(":{"opcode":"operator_mod","next":null,"parent":"^L","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!r":{"opcode":"data_setvariableto","next":null,"parent":"gR","inputs":{"VALUE":[1,[10,"9"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a!s":{"opcode":"data_setvariableto","next":null,"parent":"gR","inputs":{"VALUE":[1,[10,"10"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a!t":{"opcode":"data_setvariableto","next":null,"parent":"hq","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"a7)":{"opcode":"looks_say","next":"^M","parent":null,"inputs":{"MESSAGE":[1,[10,"[ARM9] Data Processing"]]},"fields":{},"shadow":false,"topLevel":true,"x":8722,"y":264},"^S":{"opcode":"looks_say","next":"{=","parent":"^R","inputs":{"MESSAGE":[1,[10,"[ARM9] Halfword Data Transfer (Immediate Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"{=":{"opcode":"looks_say","next":"{?","parent":"^S","inputs":{"MESSAGE":[1,[10,"[ARM9] Single Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"{?":{"opcode":"looks_say","next":"{@","parent":"{=","inputs":{"MESSAGE":[1,[10,"[ARM9] Undefined Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"{@":{"opcode":"looks_say","next":"{[","parent":"{?","inputs":{"MESSAGE":[1,[10,"[ARM9] Block Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"{[":{"opcode":"looks_say","next":"{]","parent":"{@","inputs":{"MESSAGE":[1,[10,"[ARM9] Branch"]]},"fields":{},"shadow":false,"topLevel":false},"{]":{"opcode":"looks_say","next":"_d","parent":"{[","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"_d":{"opcode":"looks_say","next":"_c","parent":"{]","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Data Operation"]]},"fields":{},"shadow":false,"topLevel":false},"a7?":{"opcode":"looks_say","next":null,"parent":"_c","inputs":{"MESSAGE":[1,[10,"[ARM9] Software Interrupt"]]},"fields":{},"shadow":false,"topLevel":false},"ur":{"opcode":"procedures_prototype","next":null,"parent":"_e","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[1,"a!u"],"YcCxsq`]3g25uQV)Hi5o":[1,"a!v"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","argumentnames":"[\"register\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a!u":{"opcode":"argument_reporter_string_number","next":null,"parent":"ur","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"a!v":{"opcode":"argument_reporter_string_number","next":null,"parent":"ur","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"a7@":{"opcode":"argument_reporter_string_number","next":null,"parent":"_g","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"gV":{"opcode":"control_if_else","next":null,"parent":"_f","inputs":{"CONDITION":[2,"_h"],"SUBSTACK":[2,"_i"],"SUBSTACK2":[2,"_k"]},"fields":{},"shadow":false,"topLevel":false},"a7[":{"opcode":"argument_reporter_string_number","next":null,"parent":"_h","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"a7^":{"opcode":"argument_reporter_string_number","next":null,"parent":"_l","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"a7]":{"opcode":"operator_subtract","next":null,"parent":"_k","inputs":{"NUM1":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{^":{"opcode":"procedures_definition","next":"hr","parent":null,"inputs":{"custom_block":[1,"{_"]},"fields":{},"shadow":false,"topLevel":true,"x":13125,"y":655},"{_":{"opcode":"procedures_prototype","next":null,"parent":"{^","inputs":{"BM!EW:X=[xA|lsOiV[D^":[1,"a!w"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a!w":{"opcode":"argument_reporter_string_number","next":null,"parent":"{_","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"hr":{"opcode":"control_if_else","next":null,"parent":"{^","inputs":{"CONDITION":[2,"{`"],"SUBSTACK":[2,"{{"],"SUBSTACK2":[2,"{|"]},"fields":{},"shadow":false,"topLevel":false},"{`":{"opcode":"operator_lt","next":null,"parent":"hr","inputs":{"OPERAND1":[3,"a!x",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a!x":{"opcode":"argument_reporter_string_number","next":null,"parent":"{`","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"{{":{"opcode":"data_setvariableto","next":null,"parent":"hr","inputs":{"VALUE":[3,"{}",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"{}":{"opcode":"data_itemoflist","next":null,"parent":"{{","inputs":{"INDEX":[3,"{~",[7,0]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"{~":{"opcode":"operator_add","next":null,"parent":"{}","inputs":{"NUM1":[3,"a!y",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!y":{"opcode":"argument_reporter_string_number","next":null,"parent":"{~","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"{|":{"opcode":"data_setvariableto","next":null,"parent":"hr","inputs":{"VALUE":[3,"a!z",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"a!z":{"opcode":"operator_subtract","next":null,"parent":"{|","inputs":{"NUM1":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"|a":{"opcode":"procedures_definition","next":"u^","parent":null,"inputs":{"custom_block":[1,"u_"]},"fields":{},"shadow":false,"topLevel":true,"x":13666,"y":447},"u_":{"opcode":"procedures_prototype","next":null,"parent":"|a","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[1,"a!A"],"!ho_MT93$iY`6pTQQERT":[1,"a!B"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","argumentnames":"[\"register\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a!A":{"opcode":"argument_reporter_string_number","next":null,"parent":"u_","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"a!B":{"opcode":"argument_reporter_string_number","next":null,"parent":"u_","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"u^":{"opcode":"data_replaceitemoflist","next":null,"parent":"|a","inputs":{"INDEX":[3,"|b",[7,0]],"ITEM":[3,"a!C",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"|b":{"opcode":"operator_add","next":null,"parent":"u^","inputs":{"NUM1":[3,"a!D",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!D":{"opcode":"argument_reporter_string_number","next":null,"parent":"|b","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"a!C":{"opcode":"argument_reporter_string_number","next":null,"parent":"u^","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"|c":{"opcode":"procedures_definition","next":"u`","parent":null,"inputs":{"custom_block":[1,"|d"]},"fields":{},"shadow":false,"topLevel":true,"x":3982,"y":428},"|d":{"opcode":"procedures_prototype","next":null,"parent":"|c","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[1,"a!E"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a!E":{"opcode":"argument_reporter_string_number","next":null,"parent":"|d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"u`":{"opcode":"procedures_call","next":"u{","parent":"|c","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"a!F",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"a!F":{"opcode":"argument_reporter_string_number","next":null,"parent":"u`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"u{":{"opcode":"control_if","next":null,"parent":"u`","inputs":{"CONDITION":[2,"|e"],"SUBSTACK":[2,"u|"]},"fields":{},"shadow":false,"topLevel":false},"|e":{"opcode":"operator_gt","next":null,"parent":"u{","inputs":{"OPERAND1":[3,"|f",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|f":{"opcode":"operator_mod","next":null,"parent":"|e","inputs":{"NUM1":[3,"a!G",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a!G":{"opcode":"argument_reporter_string_number","next":null,"parent":"|f","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"u|":{"opcode":"data_setvariableto","next":"u}","parent":"u{","inputs":{"VALUE":[3,"|g",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"|g":{"opcode":"operator_round","next":null,"parent":"u|","inputs":{"NUM":[3,"|h",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|h":{"opcode":"operator_mathop","next":null,"parent":"|g","inputs":{"NUM":[3,"|i",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"|i":{"opcode":"operator_multiply","next":null,"parent":"|h","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"|j",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|j":{"opcode":"operator_subtract","next":null,"parent":"|i","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"|k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|k":{"opcode":"operator_mod","next":null,"parent":"|j","inputs":{"NUM1":[3,"a!H",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a!H":{"opcode":"argument_reporter_string_number","next":null,"parent":"|k","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|l":{"opcode":"procedures_definition","next":"hs","parent":null,"inputs":{"custom_block":[1,"u~"]},"fields":{},"shadow":false,"topLevel":true,"x":3993,"y":968},"u~":{"opcode":"procedures_prototype","next":null,"parent":"|l","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[1,"a!I"],"-H4sp=),qi[~:f)tEWi`":[1,"a!J"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a!I":{"opcode":"argument_reporter_string_number","next":null,"parent":"u~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a!J":{"opcode":"argument_reporter_string_number","next":null,"parent":"u~","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"hs":{"opcode":"control_if_else","next":null,"parent":"|l","inputs":{"CONDITION":[2,"|m"],"SUBSTACK":[2,"va"],"SUBSTACK2":[2,"ut"]},"fields":{},"shadow":false,"topLevel":false},"|m":{"opcode":"operator_equals","next":null,"parent":"hs","inputs":{"OPERAND1":[3,"|n",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|n":{"opcode":"operator_mod","next":null,"parent":"|m","inputs":{"NUM1":[3,"a!K",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a!K":{"opcode":"argument_reporter_string_number","next":null,"parent":"|n","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"va":{"opcode":"procedures_call","next":null,"parent":"hs","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"a!L",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"a!M",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"a!L":{"opcode":"argument_reporter_string_number","next":null,"parent":"va","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a!M":{"opcode":"argument_reporter_string_number","next":null,"parent":"va","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"ut":{"opcode":"data_setvariableto","next":"uu","parent":"hs","inputs":{"VALUE":[3,"_J",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"a8f":{"opcode":"argument_reporter_string_number","next":null,"parent":"_M","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uu":{"opcode":"data_setvariableto","next":"vb","parent":"ut","inputs":{"VALUE":[3,"_N",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"a8g":{"opcode":"argument_reporter_string_number","next":null,"parent":"_S","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vb":{"opcode":"procedures_call","next":"ht","parent":"uu","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"a!N",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"a!N":{"opcode":"argument_reporter_string_number","next":null,"parent":"vb","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ht":{"opcode":"procedures_call","next":"uH","parent":"vb","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"a!O",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"uG",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"a!O":{"opcode":"argument_reporter_string_number","next":null,"parent":"ht","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uG":{"opcode":"operator_add","next":null,"parent":"ht","inputs":{"NUM1":[3,"_]",[4,0]],"NUM2":[3,"__",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a8r":{"opcode":"operator_divide","next":null,"parent":"_^","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a8s":{"opcode":"argument_reporter_string_number","next":null,"parent":"_`","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"uH":{"opcode":"procedures_call","next":"uI","parent":"ht","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"_{",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"a8t":{"opcode":"argument_reporter_string_number","next":null,"parent":"_{","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uI":{"opcode":"procedures_call","next":null,"parent":"uH","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"_|",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"uJ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"a8u":{"opcode":"argument_reporter_string_number","next":null,"parent":"_|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"uJ":{"opcode":"operator_add","next":null,"parent":"uI","inputs":{"NUM1":[3,"a!P",[4,0]],"NUM2":[3,"_}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a!P":{"opcode":"operator_mod","next":null,"parent":"uJ","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a8v":{"opcode":"argument_reporter_string_number","next":null,"parent":"_~","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"a7Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"^g","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"gI":{"opcode":"control_if_else","next":null,"parent":"^f","inputs":{"CONDITION":[2,"|o"],"SUBSTACK":[2,"hu"],"SUBSTACK2":[2,"hv"]},"fields":{},"shadow":false,"topLevel":false},"|o":{"opcode":"operator_gt","next":null,"parent":"gI","inputs":{"OPERAND1":[3,"a!Q",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"|o","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hu":{"opcode":"control_if_else","next":null,"parent":"gI","inputs":{"CONDITION":[2,"|p"],"SUBSTACK":[2,"ar"],"SUBSTACK2":[2,"hw"]},"fields":{},"shadow":false,"topLevel":false},"|p":{"opcode":"operator_gt","next":null,"parent":"hu","inputs":{"OPERAND1":[3,"a!R",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!R":{"opcode":"argument_reporter_string_number","next":null,"parent":"|p","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ar":{"opcode":"control_if_else","next":null,"parent":"hu","inputs":{"CONDITION":[2,"|q"],"SUBSTACK2":[2,"|r"]},"fields":{},"shadow":false,"topLevel":false,"comment":"}"},"|q":{"opcode":"operator_gt","next":null,"parent":"ar","inputs":{"OPERAND1":[3,"a!S",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!S":{"opcode":"argument_reporter_string_number","next":null,"parent":"|q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|r":{"opcode":"data_setvariableto","next":null,"parent":"ar","inputs":{"VALUE":[3,"|s",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|s":{"opcode":"data_itemoflist","next":null,"parent":"|r","inputs":{"INDEX":[3,"|t",[7,0]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"|t":{"opcode":"operator_add","next":null,"parent":"|s","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|u",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|u":{"opcode":"operator_mathop","next":null,"parent":"|t","inputs":{"NUM":[3,"|v",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|v":{"opcode":"operator_divide","next":null,"parent":"|u","inputs":{"NUM1":[3,"|w",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|w":{"opcode":"operator_subtract","next":null,"parent":"|v","inputs":{"NUM1":[3,"a!T",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!T":{"opcode":"argument_reporter_string_number","next":null,"parent":"|w","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hw":{"opcode":"control_if_else","next":null,"parent":"hu","inputs":{"CONDITION":[2,"|x"],"SUBSTACK":[2,"hx"],"SUBSTACK2":[2,"hy"]},"fields":{},"shadow":false,"topLevel":false},"|x":{"opcode":"operator_gt","next":null,"parent":"hw","inputs":{"OPERAND1":[3,"a!U",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!U":{"opcode":"argument_reporter_string_number","next":null,"parent":"|x","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hx":{"opcode":"control_if_else","next":null,"parent":"hw","inputs":{"CONDITION":[2,"|y"],"SUBSTACK":[2,"|z"],"SUBSTACK2":[2,"|A"]},"fields":{},"shadow":false,"topLevel":false},"|y":{"opcode":"operator_gt","next":null,"parent":"hx","inputs":{"OPERAND1":[3,"a!V",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!V":{"opcode":"argument_reporter_string_number","next":null,"parent":"|y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|z":{"opcode":"data_setvariableto","next":null,"parent":"hx","inputs":{"VALUE":[3,"|B",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|B":{"opcode":"data_itemoflist","next":null,"parent":"|z","inputs":{"INDEX":[3,"|C",[7,0]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"|C":{"opcode":"operator_add","next":null,"parent":"|B","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|D":{"opcode":"operator_mathop","next":null,"parent":"|C","inputs":{"NUM":[3,"|E",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|E":{"opcode":"operator_divide","next":null,"parent":"|D","inputs":{"NUM1":[3,"|F",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|F":{"opcode":"operator_subtract","next":null,"parent":"|E","inputs":{"NUM1":[3,"a!W",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"a!W":{"opcode":"argument_reporter_string_number","next":null,"parent":"|F","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|A":{"opcode":"data_setvariableto","next":null,"parent":"hx","inputs":{"VALUE":[3,"|G",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|G":{"opcode":"data_itemoflist","next":null,"parent":"|A","inputs":{"INDEX":[3,"|H",[7,0]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"|H":{"opcode":"operator_add","next":null,"parent":"|G","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|I",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|I":{"opcode":"operator_mathop","next":null,"parent":"|H","inputs":{"NUM":[3,"|J",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|J":{"opcode":"operator_divide","next":null,"parent":"|I","inputs":{"NUM1":[3,"|K",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|K":{"opcode":"operator_subtract","next":null,"parent":"|J","inputs":{"NUM1":[3,"a!X",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"a!X":{"opcode":"argument_reporter_string_number","next":null,"parent":"|K","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hy":{"opcode":"control_if_else","next":null,"parent":"hw","inputs":{"CONDITION":[2,"|L"],"SUBSTACK":[2,"|M"],"SUBSTACK2":[2,"|N"]},"fields":{},"shadow":false,"topLevel":false},"|L":{"opcode":"operator_gt","next":null,"parent":"hy","inputs":{"OPERAND1":[3,"a!Y",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"|L","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|M":{"opcode":"data_setvariableto","next":null,"parent":"hy","inputs":{"VALUE":[3,"|O",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|O":{"opcode":"data_itemoflist","next":null,"parent":"|M","inputs":{"INDEX":[3,"|P",[7,0]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"|P":{"opcode":"operator_add","next":null,"parent":"|O","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|Q":{"opcode":"operator_mathop","next":null,"parent":"|P","inputs":{"NUM":[3,"|R",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|R":{"opcode":"operator_divide","next":null,"parent":"|Q","inputs":{"NUM1":[3,"|S",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|S":{"opcode":"operator_subtract","next":null,"parent":"|R","inputs":{"NUM1":[3,"a!Z",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"a!Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"|S","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|N":{"opcode":"data_setvariableto","next":null,"parent":"hy","inputs":{"VALUE":[3,"|T",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|T":{"opcode":"data_itemoflist","next":null,"parent":"|N","inputs":{"INDEX":[3,"|U",[7,0]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"|U":{"opcode":"operator_add","next":null,"parent":"|T","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|V",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|V":{"opcode":"operator_mathop","next":null,"parent":"|U","inputs":{"NUM":[3,"|W",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|W":{"opcode":"operator_divide","next":null,"parent":"|V","inputs":{"NUM1":[3,"|X",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|X":{"opcode":"operator_subtract","next":null,"parent":"|W","inputs":{"NUM1":[3,"a!0",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"a!0":{"opcode":"argument_reporter_string_number","next":null,"parent":"|X","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hv":{"opcode":"control_if_else","next":null,"parent":"gI","inputs":{"CONDITION":[2,"|Y"],"SUBSTACK":[2,"hz"],"SUBSTACK2":[2,"hA"]},"fields":{},"shadow":false,"topLevel":false},"|Y":{"opcode":"operator_gt","next":null,"parent":"hv","inputs":{"OPERAND1":[3,"a!1",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!1":{"opcode":"argument_reporter_string_number","next":null,"parent":"|Y","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hz":{"opcode":"control_if_else","next":null,"parent":"hv","inputs":{"CONDITION":[2,"|Z"],"SUBSTACK":[2,"|0"],"SUBSTACK2":[2,"hB"]},"fields":{},"shadow":false,"topLevel":false},"|Z":{"opcode":"operator_gt","next":null,"parent":"hz","inputs":{"OPERAND1":[3,"a!2",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!2":{"opcode":"argument_reporter_string_number","next":null,"parent":"|Z","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|0":{"opcode":"data_setvariableto","next":null,"parent":"hz","inputs":{"VALUE":[3,"|1",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|1":{"opcode":"data_itemoflist","next":null,"parent":"|0","inputs":{"INDEX":[3,"|2",[7,0]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"|2":{"opcode":"operator_add","next":null,"parent":"|1","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|3":{"opcode":"operator_mathop","next":null,"parent":"|2","inputs":{"NUM":[3,"|4",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|4":{"opcode":"operator_divide","next":null,"parent":"|3","inputs":{"NUM1":[3,"|5",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|5":{"opcode":"operator_subtract","next":null,"parent":"|4","inputs":{"NUM1":[3,"a!3",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!3":{"opcode":"argument_reporter_string_number","next":null,"parent":"|5","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hB":{"opcode":"control_if_else","next":null,"parent":"hz","inputs":{"CONDITION":[2,"|6"],"SUBSTACK":[2,"|7"],"SUBSTACK2":[2,"|8"]},"fields":{},"shadow":false,"topLevel":false},"|6":{"opcode":"operator_gt","next":null,"parent":"hB","inputs":{"OPERAND1":[3,"a!4",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!4":{"opcode":"argument_reporter_string_number","next":null,"parent":"|6","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|7":{"opcode":"data_setvariableto","next":null,"parent":"hB","inputs":{"VALUE":[3,"|9",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|9":{"opcode":"data_itemoflist","next":null,"parent":"|7","inputs":{"INDEX":[3,"|!",[7,0]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"|!":{"opcode":"operator_add","next":null,"parent":"|9","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|#":{"opcode":"operator_mathop","next":null,"parent":"|!","inputs":{"NUM":[3,"|%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|%":{"opcode":"operator_divide","next":null,"parent":"|#","inputs":{"NUM1":[3,"|(",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|(":{"opcode":"operator_subtract","next":null,"parent":"|%","inputs":{"NUM1":[3,"a!5",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!5":{"opcode":"argument_reporter_string_number","next":null,"parent":"|(","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|8":{"opcode":"data_setvariableto","next":null,"parent":"hB","inputs":{"VALUE":[3,"|)",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|)":{"opcode":"data_itemoflist","next":null,"parent":"|8","inputs":{"INDEX":[3,"|*",[7,0]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"|*":{"opcode":"operator_add","next":null,"parent":"|)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|+":{"opcode":"operator_mathop","next":null,"parent":"|*","inputs":{"NUM":[3,"|,",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|,":{"opcode":"operator_divide","next":null,"parent":"|+","inputs":{"NUM1":[3,"|-",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|-":{"opcode":"operator_subtract","next":null,"parent":"|,","inputs":{"NUM1":[3,"a!6",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!6":{"opcode":"argument_reporter_string_number","next":null,"parent":"|-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hA":{"opcode":"control_if_else","next":null,"parent":"hv","inputs":{"CONDITION":[2,"|."],"SUBSTACK":[2,"hC"],"SUBSTACK2":[2,"gB"]},"fields":{},"shadow":false,"topLevel":false},"|.":{"opcode":"operator_gt","next":null,"parent":"hA","inputs":{"OPERAND1":[3,"a!7",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!7":{"opcode":"argument_reporter_string_number","next":null,"parent":"|.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hC":{"opcode":"control_if_else","next":null,"parent":"hA","inputs":{"CONDITION":[2,"|/"],"SUBSTACK":[2,"|:"],"SUBSTACK2":[2,"hD"]},"fields":{},"shadow":false,"topLevel":false},"|/":{"opcode":"operator_gt","next":null,"parent":"hC","inputs":{"OPERAND1":[3,"a!8",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!8":{"opcode":"argument_reporter_string_number","next":null,"parent":"|/","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|:":{"opcode":"data_setvariableto","next":null,"parent":"hC","inputs":{"VALUE":[3,"|;",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|;":{"opcode":"data_itemoflist","next":null,"parent":"|:","inputs":{"INDEX":[3,"|=",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"|=":{"opcode":"operator_add","next":null,"parent":"|;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"|?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"|?":{"opcode":"operator_mathop","next":null,"parent":"|=","inputs":{"NUM":[3,"|@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"|@":{"opcode":"operator_divide","next":null,"parent":"|?","inputs":{"NUM1":[3,"|[",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|[":{"opcode":"operator_subtract","next":null,"parent":"|@","inputs":{"NUM1":[3,"a!9",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!9":{"opcode":"argument_reporter_string_number","next":null,"parent":"|[","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hD":{"opcode":"control_if_else","next":null,"parent":"hC","inputs":{"CONDITION":[2,"|]"],"SUBSTACK":[2,"hE"],"SUBSTACK2":[2,"hF"]},"fields":{},"shadow":false,"topLevel":false},"|]":{"opcode":"operator_gt","next":null,"parent":"hD","inputs":{"OPERAND1":[3,"a!!",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"a!!":{"opcode":"argument_reporter_string_number","next":null,"parent":"|]","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hE":{"opcode":"control_if_else","next":null,"parent":"hD","inputs":{"CONDITION":[2,"|^"],"SUBSTACK":[2,"hG"],"SUBSTACK2":[2,"|_"]},"fields":{},"shadow":false,"topLevel":false},"|^":{"opcode":"operator_gt","next":null,"parent":"hE","inputs":{"OPERAND1":[3,"a!#",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a!#":{"opcode":"argument_reporter_string_number","next":null,"parent":"|^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hG":{"opcode":"control_if_else","next":null,"parent":"hE","inputs":{"CONDITION":[2,"|`"],"SUBSTACK":[2,"|{"],"SUBSTACK2":[2,"||"]},"fields":{},"shadow":false,"topLevel":false},"|`":{"opcode":"operator_gt","next":null,"parent":"hG","inputs":{"OPERAND1":[3,"a!%",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a!%":{"opcode":"argument_reporter_string_number","next":null,"parent":"|`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|{":{"opcode":"data_setvariableto","next":null,"parent":"hG","inputs":{"VALUE":[3,"|}",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"|}":{"opcode":"data_itemoflist","next":null,"parent":"|{","inputs":{"INDEX":[3,"|~",[7,0]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"|~":{"opcode":"operator_add","next":null,"parent":"|}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}a",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}a":{"opcode":"operator_mathop","next":null,"parent":"|~","inputs":{"NUM":[3,"}b",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}b":{"opcode":"operator_divide","next":null,"parent":"}a","inputs":{"NUM1":[3,"}c",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}c":{"opcode":"operator_subtract","next":null,"parent":"}b","inputs":{"NUM1":[3,"a!(",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"a!(":{"opcode":"argument_reporter_string_number","next":null,"parent":"}c","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"||":{"opcode":"data_setvariableto","next":null,"parent":"hG","inputs":{"VALUE":[3,"}d",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"}d":{"opcode":"data_itemoflist","next":null,"parent":"||","inputs":{"INDEX":[3,"}e",[7,0]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"}e":{"opcode":"operator_add","next":null,"parent":"}d","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}f",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}f":{"opcode":"operator_mathop","next":null,"parent":"}e","inputs":{"NUM":[3,"}g",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}g":{"opcode":"operator_divide","next":null,"parent":"}f","inputs":{"NUM1":[3,"}h",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}h":{"opcode":"operator_subtract","next":null,"parent":"}g","inputs":{"NUM1":[3,"a!)",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"a!)":{"opcode":"argument_reporter_string_number","next":null,"parent":"}h","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"|_":{"opcode":"data_setvariableto","next":null,"parent":"hE","inputs":{"VALUE":[3,"}i",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"}i":{"opcode":"data_itemoflist","next":null,"parent":"|_","inputs":{"INDEX":[3,"}j",[7,0]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"}j":{"opcode":"operator_add","next":null,"parent":"}i","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}k":{"opcode":"operator_mathop","next":null,"parent":"}j","inputs":{"NUM":[3,"}l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}l":{"opcode":"operator_divide","next":null,"parent":"}k","inputs":{"NUM1":[3,"}m",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}m":{"opcode":"operator_subtract","next":null,"parent":"}l","inputs":{"NUM1":[3,"a!*",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"a!*":{"opcode":"argument_reporter_string_number","next":null,"parent":"}m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hF":{"opcode":"control_if_else","next":null,"parent":"hD","inputs":{"CONDITION":[2,"}n"],"SUBSTACK":[2,"hH"],"SUBSTACK2":[2,"}o"]},"fields":{},"shadow":false,"topLevel":false},"}n":{"opcode":"operator_gt","next":null,"parent":"hF","inputs":{"OPERAND1":[3,"a!+",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"a!+":{"opcode":"argument_reporter_string_number","next":null,"parent":"}n","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hH":{"opcode":"control_if_else","next":null,"parent":"hF","inputs":{"CONDITION":[2,"}p"],"SUBSTACK":[2,"}q"],"SUBSTACK2":[2,"}r"]},"fields":{},"shadow":false,"topLevel":false},"}p":{"opcode":"operator_gt","next":null,"parent":"hH","inputs":{"OPERAND1":[3,"a!,",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"a!,":{"opcode":"argument_reporter_string_number","next":null,"parent":"}p","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"}q":{"opcode":"data_setvariableto","next":null,"parent":"hH","inputs":{"VALUE":[3,"}s",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"}s":{"opcode":"data_itemoflist","next":null,"parent":"}q","inputs":{"INDEX":[3,"}t",[7,0]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"}t":{"opcode":"operator_add","next":null,"parent":"}s","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}u",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}u":{"opcode":"operator_mathop","next":null,"parent":"}t","inputs":{"NUM":[3,"}v",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}v":{"opcode":"operator_divide","next":null,"parent":"}u","inputs":{"NUM1":[3,"}w",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}w":{"opcode":"operator_subtract","next":null,"parent":"}v","inputs":{"NUM1":[3,"a!-",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"a!-":{"opcode":"argument_reporter_string_number","next":null,"parent":"}w","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"}r":{"opcode":"data_setvariableto","next":null,"parent":"hH","inputs":{"VALUE":[3,"}x",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"}x":{"opcode":"data_itemoflist","next":null,"parent":"}r","inputs":{"INDEX":[3,"}y",[7,0]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"}y":{"opcode":"operator_add","next":null,"parent":"}x","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}z":{"opcode":"operator_mathop","next":null,"parent":"}y","inputs":{"NUM":[3,"}A",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}A":{"opcode":"operator_divide","next":null,"parent":"}z","inputs":{"NUM1":[3,"}B",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}B":{"opcode":"operator_subtract","next":null,"parent":"}A","inputs":{"NUM1":[3,"a!.",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"a!.":{"opcode":"argument_reporter_string_number","next":null,"parent":"}B","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"}o":{"opcode":"data_setvariableto","next":null,"parent":"hF","inputs":{"VALUE":[3,"}C",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"}C":{"opcode":"data_itemoflist","next":null,"parent":"}o","inputs":{"INDEX":[3,"}D",[7,0]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"}D":{"opcode":"operator_add","next":null,"parent":"}C","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}E",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}E":{"opcode":"operator_mathop","next":null,"parent":"}D","inputs":{"NUM":[3,"}F",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}F":{"opcode":"operator_divide","next":null,"parent":"}E","inputs":{"NUM1":[3,"}G",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}G":{"opcode":"operator_subtract","next":null,"parent":"}F","inputs":{"NUM1":[3,"a!/",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a!/":{"opcode":"argument_reporter_string_number","next":null,"parent":"}G","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"gB":{"opcode":"control_if_else","next":null,"parent":"hA","inputs":{"CONDITION":[2,"}H"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aa"},"}H":{"opcode":"operator_gt","next":null,"parent":"gB","inputs":{"OPERAND1":[3,"a!:",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!:":{"opcode":"argument_reporter_string_number","next":null,"parent":"}H","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"}I":{"opcode":"procedures_definition","next":"hI","parent":null,"inputs":{"custom_block":[1,"vc"]},"fields":{},"shadow":false,"topLevel":true,"x":6519,"y":155},"vc":{"opcode":"procedures_prototype","next":null,"parent":"}I","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[1,"a!;"],"717nQiAIK*1%Lw6f%Hc:":[1,"a!="]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a!;":{"opcode":"argument_reporter_string_number","next":null,"parent":"vc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a!=":{"opcode":"argument_reporter_string_number","next":null,"parent":"vc","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"hI":{"opcode":"control_if_else","next":null,"parent":"}I","inputs":{"CONDITION":[2,"}J"],"SUBSTACK":[2,"hJ"],"SUBSTACK2":[2,"hK"]},"fields":{},"shadow":false,"topLevel":false},"}J":{"opcode":"operator_gt","next":null,"parent":"hI","inputs":{"OPERAND1":[3,"a!?",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!?":{"opcode":"argument_reporter_string_number","next":null,"parent":"}J","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hJ":{"opcode":"control_if_else","next":null,"parent":"hI","inputs":{"CONDITION":[2,"}K"],"SUBSTACK":[2,"vd"],"SUBSTACK2":[2,"hL"]},"fields":{},"shadow":false,"topLevel":false},"}K":{"opcode":"operator_gt","next":null,"parent":"hJ","inputs":{"OPERAND1":[3,"a!@",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!@":{"opcode":"argument_reporter_string_number","next":null,"parent":"}K","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vd":{"opcode":"control_if_else","next":null,"parent":"hJ","inputs":{"CONDITION":[2,"}L"],"SUBSTACK2":[2,"ve"]},"fields":{},"shadow":false,"topLevel":false},"}L":{"opcode":"operator_gt","next":null,"parent":"vd","inputs":{"OPERAND1":[3,"a![",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a![":{"opcode":"argument_reporter_string_number","next":null,"parent":"}L","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hL":{"opcode":"control_if_else","next":null,"parent":"hJ","inputs":{"CONDITION":[2,"}M"],"SUBSTACK":[2,"hM"],"SUBSTACK2":[2,"hN"]},"fields":{},"shadow":false,"topLevel":false},"}M":{"opcode":"operator_gt","next":null,"parent":"hL","inputs":{"OPERAND1":[3,"a!]",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!]":{"opcode":"argument_reporter_string_number","next":null,"parent":"}M","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hM":{"opcode":"control_if_else","next":null,"parent":"hL","inputs":{"CONDITION":[2,"}N"],"SUBSTACK":[2,"vf"],"SUBSTACK2":[2,"vg"]},"fields":{},"shadow":false,"topLevel":false},"}N":{"opcode":"operator_gt","next":null,"parent":"hM","inputs":{"OPERAND1":[3,"a!^",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!^":{"opcode":"argument_reporter_string_number","next":null,"parent":"}N","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vf":{"opcode":"data_replaceitemoflist","next":null,"parent":"hM","inputs":{"INDEX":[3,"}O",[7,0]],"ITEM":[3,"a!_",[10,""]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"}O":{"opcode":"operator_add","next":null,"parent":"vf","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}P",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}P":{"opcode":"operator_mathop","next":null,"parent":"}O","inputs":{"NUM":[3,"}Q",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}Q":{"opcode":"operator_divide","next":null,"parent":"}P","inputs":{"NUM1":[3,"}R",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}R":{"opcode":"operator_subtract","next":null,"parent":"}Q","inputs":{"NUM1":[3,"a!`",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"a!`":{"opcode":"argument_reporter_string_number","next":null,"parent":"}R","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a!_":{"opcode":"argument_reporter_string_number","next":null,"parent":"vf","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vg":{"opcode":"data_replaceitemoflist","next":null,"parent":"hM","inputs":{"INDEX":[3,"}S",[7,0]],"ITEM":[3,"a!{",[10,""]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"}S":{"opcode":"operator_add","next":null,"parent":"vg","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}T",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}T":{"opcode":"operator_mathop","next":null,"parent":"}S","inputs":{"NUM":[3,"}U",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}U":{"opcode":"operator_divide","next":null,"parent":"}T","inputs":{"NUM1":[3,"}V",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}V":{"opcode":"operator_subtract","next":null,"parent":"}U","inputs":{"NUM1":[3,"a!|",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"a!|":{"opcode":"argument_reporter_string_number","next":null,"parent":"}V","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a!{":{"opcode":"argument_reporter_string_number","next":null,"parent":"vg","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hN":{"opcode":"control_if_else","next":null,"parent":"hL","inputs":{"CONDITION":[2,"}W"],"SUBSTACK":[2,"vh"],"SUBSTACK2":[2,"vi"]},"fields":{},"shadow":false,"topLevel":false},"}W":{"opcode":"operator_gt","next":null,"parent":"hN","inputs":{"OPERAND1":[3,"a!}",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a!}":{"opcode":"argument_reporter_string_number","next":null,"parent":"}W","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vh":{"opcode":"data_replaceitemoflist","next":null,"parent":"hN","inputs":{"INDEX":[3,"}X",[7,0]],"ITEM":[3,"a!~",[10,""]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"}X":{"opcode":"operator_add","next":null,"parent":"vh","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}Y":{"opcode":"operator_mathop","next":null,"parent":"}X","inputs":{"NUM":[3,"}Z",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}Z":{"opcode":"operator_divide","next":null,"parent":"}Y","inputs":{"NUM1":[3,"}0",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}0":{"opcode":"operator_subtract","next":null,"parent":"}Z","inputs":{"NUM1":[3,"a#a",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"a#a":{"opcode":"argument_reporter_string_number","next":null,"parent":"}0","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a!~":{"opcode":"argument_reporter_string_number","next":null,"parent":"vh","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vi":{"opcode":"data_replaceitemoflist","next":null,"parent":"hN","inputs":{"INDEX":[3,"}1",[7,0]],"ITEM":[3,"a#b",[10,""]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"}1":{"opcode":"operator_add","next":null,"parent":"vi","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}2",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}2":{"opcode":"operator_mathop","next":null,"parent":"}1","inputs":{"NUM":[3,"}3",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}3":{"opcode":"operator_divide","next":null,"parent":"}2","inputs":{"NUM1":[3,"}4",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}4":{"opcode":"operator_subtract","next":null,"parent":"}3","inputs":{"NUM1":[3,"a#c",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"a#c":{"opcode":"argument_reporter_string_number","next":null,"parent":"}4","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#b":{"opcode":"argument_reporter_string_number","next":null,"parent":"vi","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hK":{"opcode":"control_if_else","next":null,"parent":"hI","inputs":{"CONDITION":[2,"}5"],"SUBSTACK":[2,"hO"],"SUBSTACK2":[2,"hP"]},"fields":{},"shadow":false,"topLevel":false},"}5":{"opcode":"operator_gt","next":null,"parent":"hK","inputs":{"OPERAND1":[3,"a#d",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#d":{"opcode":"argument_reporter_string_number","next":null,"parent":"}5","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hO":{"opcode":"control_if_else","next":null,"parent":"hK","inputs":{"CONDITION":[2,"}6"],"SUBSTACK":[2,"vj"],"SUBSTACK2":[2,"hQ"]},"fields":{},"shadow":false,"topLevel":false},"}6":{"opcode":"operator_gt","next":null,"parent":"hO","inputs":{"OPERAND1":[3,"a#e",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#e":{"opcode":"argument_reporter_string_number","next":null,"parent":"}6","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vj":{"opcode":"data_replaceitemoflist","next":null,"parent":"hO","inputs":{"INDEX":[3,"}7",[7,0]],"ITEM":[3,"a#f",[10,""]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"}7":{"opcode":"operator_add","next":null,"parent":"vj","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}8":{"opcode":"operator_mathop","next":null,"parent":"}7","inputs":{"NUM":[3,"}9",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}9":{"opcode":"operator_divide","next":null,"parent":"}8","inputs":{"NUM1":[3,"}!",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}!":{"opcode":"operator_subtract","next":null,"parent":"}9","inputs":{"NUM1":[3,"a#g",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#g":{"opcode":"argument_reporter_string_number","next":null,"parent":"}!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#f":{"opcode":"argument_reporter_string_number","next":null,"parent":"vj","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hQ":{"opcode":"control_if_else","next":null,"parent":"hO","inputs":{"CONDITION":[2,"}#"],"SUBSTACK":[2,"vk"],"SUBSTACK2":[2,"vl"]},"fields":{},"shadow":false,"topLevel":false},"}#":{"opcode":"operator_gt","next":null,"parent":"hQ","inputs":{"OPERAND1":[3,"a#h",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#h":{"opcode":"argument_reporter_string_number","next":null,"parent":"}#","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vl":{"opcode":"data_replaceitemoflist","next":null,"parent":"hQ","inputs":{"INDEX":[3,"}%",[7,0]],"ITEM":[3,"a#i",[10,""]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"}%":{"opcode":"operator_add","next":null,"parent":"vl","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}(":{"opcode":"operator_mathop","next":null,"parent":"}%","inputs":{"NUM":[3,"})",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"})":{"opcode":"operator_divide","next":null,"parent":"}(","inputs":{"NUM1":[3,"}*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}*":{"opcode":"operator_subtract","next":null,"parent":"})","inputs":{"NUM1":[3,"a#j",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#j":{"opcode":"argument_reporter_string_number","next":null,"parent":"}*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#i":{"opcode":"argument_reporter_string_number","next":null,"parent":"vl","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hP":{"opcode":"control_if_else","next":null,"parent":"hK","inputs":{"CONDITION":[2,"}+"],"SUBSTACK":[2,"hR"],"SUBSTACK2":[2,"},"]},"fields":{},"shadow":false,"topLevel":false},"}+":{"opcode":"operator_gt","next":null,"parent":"hP","inputs":{"OPERAND1":[3,"a#k",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#k":{"opcode":"argument_reporter_string_number","next":null,"parent":"}+","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hR":{"opcode":"control_if_else","next":null,"parent":"hP","inputs":{"CONDITION":[2,"}-"],"SUBSTACK":[2,"vm"],"SUBSTACK2":[2,"hS"]},"fields":{},"shadow":false,"topLevel":false},"}-":{"opcode":"operator_gt","next":null,"parent":"hR","inputs":{"OPERAND1":[3,"a#l",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#l":{"opcode":"argument_reporter_string_number","next":null,"parent":"}-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vm":{"opcode":"data_replaceitemoflist","next":null,"parent":"hR","inputs":{"INDEX":[3,"}.",[7,0]],"ITEM":[3,"a#m",[10,""]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"}.":{"opcode":"operator_add","next":null,"parent":"vm","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}/":{"opcode":"operator_mathop","next":null,"parent":"}.","inputs":{"NUM":[3,"}:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}:":{"opcode":"operator_divide","next":null,"parent":"}/","inputs":{"NUM1":[3,"};",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"};":{"opcode":"operator_subtract","next":null,"parent":"}:","inputs":{"NUM1":[3,"a#n",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#n":{"opcode":"argument_reporter_string_number","next":null,"parent":"};","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#m":{"opcode":"argument_reporter_string_number","next":null,"parent":"vm","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hS":{"opcode":"control_if_else","next":null,"parent":"hR","inputs":{"CONDITION":[2,"}="],"SUBSTACK":[2,"hT"],"SUBSTACK2":[2,"hU"]},"fields":{},"shadow":false,"topLevel":false},"}=":{"opcode":"operator_gt","next":null,"parent":"hS","inputs":{"OPERAND1":[3,"a#o",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"a#o":{"opcode":"argument_reporter_string_number","next":null,"parent":"}=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hT":{"opcode":"control_if_else","next":null,"parent":"hS","inputs":{"CONDITION":[2,"}?"],"SUBSTACK":[2,"hV"],"SUBSTACK2":[2,"vn"]},"fields":{},"shadow":false,"topLevel":false},"}?":{"opcode":"operator_gt","next":null,"parent":"hT","inputs":{"OPERAND1":[3,"a#p",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"a#p":{"opcode":"argument_reporter_string_number","next":null,"parent":"}?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hV":{"opcode":"control_if_else","next":null,"parent":"hT","inputs":{"CONDITION":[2,"}@"],"SUBSTACK":[2,"vo"],"SUBSTACK2":[2,"vp"]},"fields":{},"shadow":false,"topLevel":false},"}@":{"opcode":"operator_gt","next":null,"parent":"hV","inputs":{"OPERAND1":[3,"a#q",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"a#q":{"opcode":"argument_reporter_string_number","next":null,"parent":"}@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vo":{"opcode":"data_replaceitemoflist","next":null,"parent":"hV","inputs":{"INDEX":[3,"}[",[7,0]],"ITEM":[3,"a#r",[10,""]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"}[":{"opcode":"operator_add","next":null,"parent":"vo","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}]":{"opcode":"operator_mathop","next":null,"parent":"}[","inputs":{"NUM":[3,"}^",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}^":{"opcode":"operator_divide","next":null,"parent":"}]","inputs":{"NUM1":[3,"}_",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}_":{"opcode":"operator_subtract","next":null,"parent":"}^","inputs":{"NUM1":[3,"a#s",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"a#s":{"opcode":"argument_reporter_string_number","next":null,"parent":"}_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#r":{"opcode":"argument_reporter_string_number","next":null,"parent":"vo","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vp":{"opcode":"data_replaceitemoflist","next":null,"parent":"hV","inputs":{"INDEX":[3,"}`",[7,0]],"ITEM":[3,"a#t",[10,""]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"}`":{"opcode":"operator_add","next":null,"parent":"vp","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"}{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"}{":{"opcode":"operator_mathop","next":null,"parent":"}`","inputs":{"NUM":[3,"}|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"}|":{"opcode":"operator_divide","next":null,"parent":"}{","inputs":{"NUM1":[3,"}}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}}":{"opcode":"operator_subtract","next":null,"parent":"}|","inputs":{"NUM1":[3,"a#u",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"a#u":{"opcode":"argument_reporter_string_number","next":null,"parent":"}}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#t":{"opcode":"argument_reporter_string_number","next":null,"parent":"vp","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vn":{"opcode":"data_replaceitemoflist","next":null,"parent":"hT","inputs":{"INDEX":[3,"}~",[7,0]],"ITEM":[3,"a#v",[10,""]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"}~":{"opcode":"operator_add","next":null,"parent":"vn","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"~a",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~a":{"opcode":"operator_mathop","next":null,"parent":"}~","inputs":{"NUM":[3,"~b",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"~b":{"opcode":"operator_divide","next":null,"parent":"~a","inputs":{"NUM1":[3,"~c",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"~c":{"opcode":"operator_subtract","next":null,"parent":"~b","inputs":{"NUM1":[3,"a#w",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"a#w":{"opcode":"argument_reporter_string_number","next":null,"parent":"~c","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#v":{"opcode":"argument_reporter_string_number","next":null,"parent":"vn","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"hU":{"opcode":"control_if_else","next":null,"parent":"hS","inputs":{"CONDITION":[2,"~d"],"SUBSTACK":[2,"hW"],"SUBSTACK2":[2,"vq"]},"fields":{},"shadow":false,"topLevel":false},"~d":{"opcode":"operator_gt","next":null,"parent":"hU","inputs":{"OPERAND1":[3,"a#x",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"a#x":{"opcode":"argument_reporter_string_number","next":null,"parent":"~d","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hW":{"opcode":"control_if_else","next":null,"parent":"hU","inputs":{"CONDITION":[2,"~e"],"SUBSTACK":[2,"vr"],"SUBSTACK2":[2,"vs"]},"fields":{},"shadow":false,"topLevel":false},"~e":{"opcode":"operator_gt","next":null,"parent":"hW","inputs":{"OPERAND1":[3,"a#y",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"a#y":{"opcode":"argument_reporter_string_number","next":null,"parent":"~e","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vr":{"opcode":"data_replaceitemoflist","next":null,"parent":"hW","inputs":{"INDEX":[3,"~f",[7,0]],"ITEM":[3,"a#z",[10,""]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"~f":{"opcode":"operator_add","next":null,"parent":"vr","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"~g",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~g":{"opcode":"operator_mathop","next":null,"parent":"~f","inputs":{"NUM":[3,"~h",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"~h":{"opcode":"operator_divide","next":null,"parent":"~g","inputs":{"NUM1":[3,"~i",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"~i":{"opcode":"operator_subtract","next":null,"parent":"~h","inputs":{"NUM1":[3,"a#A",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"a#A":{"opcode":"argument_reporter_string_number","next":null,"parent":"~i","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#z":{"opcode":"argument_reporter_string_number","next":null,"parent":"vr","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vs":{"opcode":"data_replaceitemoflist","next":null,"parent":"hW","inputs":{"INDEX":[3,"~j",[7,0]],"ITEM":[3,"a#B",[10,""]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"~j":{"opcode":"operator_add","next":null,"parent":"vs","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"~k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~k":{"opcode":"operator_mathop","next":null,"parent":"~j","inputs":{"NUM":[3,"~l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"~l":{"opcode":"operator_divide","next":null,"parent":"~k","inputs":{"NUM1":[3,"~m",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"~m":{"opcode":"operator_subtract","next":null,"parent":"~l","inputs":{"NUM1":[3,"a#C",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"a#C":{"opcode":"argument_reporter_string_number","next":null,"parent":"~m","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#B":{"opcode":"argument_reporter_string_number","next":null,"parent":"vs","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vq":{"opcode":"data_replaceitemoflist","next":null,"parent":"hU","inputs":{"INDEX":[3,"~n",[7,0]],"ITEM":[3,"a#D",[10,""]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"~n":{"opcode":"operator_add","next":null,"parent":"vq","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"~o",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~o":{"opcode":"operator_mathop","next":null,"parent":"~n","inputs":{"NUM":[3,"~p",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"~p":{"opcode":"operator_divide","next":null,"parent":"~o","inputs":{"NUM1":[3,"~q",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"~q":{"opcode":"operator_subtract","next":null,"parent":"~p","inputs":{"NUM1":[3,"a#E",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#E":{"opcode":"argument_reporter_string_number","next":null,"parent":"~q","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#D":{"opcode":"argument_reporter_string_number","next":null,"parent":"vq","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"},":{"opcode":"control_if_else","next":null,"parent":"hP","inputs":{"CONDITION":[2,"~r"]},"fields":{},"shadow":false,"topLevel":false},"~r":{"opcode":"operator_gt","next":null,"parent":"},","inputs":{"OPERAND1":[3,"a#F",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a#F":{"opcode":"argument_reporter_string_number","next":null,"parent":"~r","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"~s":{"opcode":"procedures_definition","next":"vt","parent":null,"inputs":{"custom_block":[1,"~t"]},"fields":{},"shadow":false,"topLevel":true,"x":4004,"y":1707},"~t":{"opcode":"procedures_prototype","next":null,"parent":"~s","inputs":{".5IabzOBB`r;A-[bJCH-":[1,"a#G"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a#G":{"opcode":"argument_reporter_string_number","next":null,"parent":"~t","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"vt":{"opcode":"procedures_call","next":"vu","parent":"~s","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"a#H",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"a#H":{"opcode":"argument_reporter_string_number","next":null,"parent":"vt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"~u":{"opcode":"procedures_definition","next":"hX","parent":null,"inputs":{"custom_block":[1,"vv"]},"fields":{},"shadow":false,"topLevel":true,"x":4025,"y":2266},"vv":{"opcode":"procedures_prototype","next":null,"parent":"~u","inputs":{"[:qunpS-8M/60cedXKZc":[1,"a#I"],"penC[|54{B|rziE}7Inh":[1,"a#J"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_memory %s %s","argumentids":"[\"[:qunpS-8M/60cedXKZc\",\"penC[|54{B|rziE}7Inh\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a#I":{"opcode":"argument_reporter_string_number","next":null,"parent":"vv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a#J":{"opcode":"argument_reporter_string_number","next":null,"parent":"vv","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"hX":{"opcode":"control_if_else","next":null,"parent":"~u","inputs":{"CONDITION":[2,"~v"],"SUBSTACK":[2,"vw"],"SUBSTACK2":[2,"vx"]},"fields":{},"shadow":false,"topLevel":false},"~v":{"opcode":"operator_equals","next":null,"parent":"hX","inputs":{"OPERAND1":[3,"~w",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~w":{"opcode":"operator_mod","next":null,"parent":"~v","inputs":{"NUM1":[3,"a#K",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a#K":{"opcode":"argument_reporter_string_number","next":null,"parent":"~w","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vw":{"opcode":"procedures_call","next":null,"parent":"hX","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"a#L",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"a#M",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"a#L":{"opcode":"argument_reporter_string_number","next":null,"parent":"vw","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a#M":{"opcode":"argument_reporter_string_number","next":null,"parent":"vw","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"a#N":{"opcode":"looks_say","next":"~x","parent":null,"inputs":{"MESSAGE":[1,[10,"[ARM7] Data Processing"]]},"fields":{},"shadow":false,"topLevel":true,"x":7492,"y":316},"~x":{"opcode":"looks_say","next":"~y","parent":"a#N","inputs":{"MESSAGE":[1,[10,"[ARM7] Multiply"]]},"fields":{},"shadow":false,"topLevel":false},"~y":{"opcode":"looks_say","next":"~z","parent":"~x","inputs":{"MESSAGE":[1,[10,"[ARM7] Multiply Long"]]},"fields":{},"shadow":false,"topLevel":false},"~z":{"opcode":"looks_say","next":"~A","parent":"~y","inputs":{"MESSAGE":[1,[10,"[ARM7] Single Data Swap"]]},"fields":{},"shadow":false,"topLevel":false},"~A":{"opcode":"looks_say","next":"~B","parent":"~z","inputs":{"MESSAGE":[1,[10,"[ARM7] Branch and Exchange"]]},"fields":{},"shadow":false,"topLevel":false},"~B":{"opcode":"looks_say","next":"~C","parent":"~A","inputs":{"MESSAGE":[1,[10,"[ARM7] Halfword Data Transfer (Register Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"~C":{"opcode":"looks_say","next":"~D","parent":"~B","inputs":{"MESSAGE":[1,[10,"[ARM7] Halfword Data Transfer (Immediate Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"~D":{"opcode":"looks_say","next":"~E","parent":"~C","inputs":{"MESSAGE":[1,[10,"[ARM7] Single Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"~E":{"opcode":"looks_say","next":"~F","parent":"~D","inputs":{"MESSAGE":[1,[10,"[ARM7] Undefined Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"~F":{"opcode":"looks_say","next":"~G","parent":"~E","inputs":{"MESSAGE":[1,[10,"[ARM7] Block Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"~G":{"opcode":"looks_say","next":"~H","parent":"~F","inputs":{"MESSAGE":[1,[10,"[ARM7] Branch"]]},"fields":{},"shadow":false,"topLevel":false},"~H":{"opcode":"looks_say","next":"~I","parent":"~G","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"~I":{"opcode":"looks_say","next":"~J","parent":"~H","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Data Operation"]]},"fields":{},"shadow":false,"topLevel":false},"~J":{"opcode":"looks_say","next":"~K","parent":"~I","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Register Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"~K":{"opcode":"looks_say","next":"a#O","parent":"~J","inputs":{"MESSAGE":[1,[10,"[ARM7] Software Interrupt"]]},"fields":{},"shadow":false,"topLevel":false},"a#O":{"opcode":"looks_say","next":null,"parent":"~K","inputs":{"MESSAGE":[1,[10,"[ARM7] Illegal Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"~L":{"opcode":"procedures_definition","next":"hY","parent":null,"inputs":{"custom_block":[1,"vy"]},"fields":{},"shadow":false,"topLevel":true,"x":13682,"y":1034},"vy":{"opcode":"procedures_prototype","next":null,"parent":"~L","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[1,"a#P"],"3)l`,m3z-UYcLsco:|pk":[1,"a#Q"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a#P":{"opcode":"argument_reporter_string_number","next":null,"parent":"vy","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a#Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"vy","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"hY":{"opcode":"procedures_call","next":"~M","parent":"~L","inputs":{"I)$U1@(uKe.xp@l!IP(k":[3,"a#R",[10,""]],"|6V?U0H`Ot6{lp?o_9O(":[3,"a#S",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","warp":"true"}},"a#R":{"opcode":"argument_reporter_string_number","next":null,"parent":"hY","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"a#S":{"opcode":"argument_reporter_string_number","next":null,"parent":"hY","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~M":{"opcode":"data_setvariableto","next":"hZ","parent":"hY","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"hZ":{"opcode":"procedures_call","next":"~N","parent":"~M","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,"a#T",[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"~O",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"a#T":{"opcode":"argument_reporter_string_number","next":null,"parent":"hZ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"~O":{"opcode":"operator_subtract","next":null,"parent":"hZ","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"a#U",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#U":{"opcode":"argument_reporter_string_number","next":null,"parent":"~O","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~N":{"opcode":"data_setvariableto","next":null,"parent":"hZ","inputs":{"VALUE":[3,"~P",[10,""]]},"fields":{"VARIABLE":["core.rotate_return","zY(u-?O,+t%[td.I,e.a"]},"shadow":false,"topLevel":false},"~P":{"opcode":"operator_mod","next":null,"parent":"~N","inputs":{"NUM1":[3,"a#V",[4,0]],"NUM2":[1,[4,"0x100000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#V":{"opcode":"operator_add","next":null,"parent":"~P","inputs":{"NUM1":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~Q":{"opcode":"procedures_definition","next":"h0","parent":null,"inputs":{"custom_block":[1,"vz"]},"fields":{},"shadow":false,"topLevel":true,"x":14353,"y":949},"vz":{"opcode":"procedures_prototype","next":null,"parent":"~Q","inputs":{"*TJdpJem{W@WY?Pe*rSz":[1,"a#W"],"fccig(k~vwUyH!-GOnIm":[1,"a#X"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_left %s %s","argumentids":"[\"*TJdpJem{W@WY?Pe*rSz\",\"fccig(k~vwUyH!-GOnIm\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a#W":{"opcode":"argument_reporter_string_number","next":null,"parent":"vz","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a#X":{"opcode":"argument_reporter_string_number","next":null,"parent":"vz","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"h0":{"opcode":"procedures_call","next":"~R","parent":"~Q","inputs":{"I)$U1@(uKe.xp@l!IP(k":[3,"a#Y",[10,""]],"|6V?U0H`Ot6{lp?o_9O(":[3,"~S",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","warp":"true"}},"a#Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"h0","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"~S":{"opcode":"operator_subtract","next":null,"parent":"h0","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"a#Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"~S","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~R":{"opcode":"data_setvariableto","next":"h1","parent":"h0","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"h1":{"opcode":"procedures_call","next":"~T","parent":"~R","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,"a#0",[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"a#1",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"a#0":{"opcode":"argument_reporter_string_number","next":null,"parent":"h1","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"a#1":{"opcode":"argument_reporter_string_number","next":null,"parent":"h1","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~T":{"opcode":"data_setvariableto","next":null,"parent":"h1","inputs":{"VALUE":[3,"~U",[10,""]]},"fields":{"VARIABLE":["core.rotate_return","zY(u-?O,+t%[td.I,e.a"]},"shadow":false,"topLevel":false},"~U":{"opcode":"operator_mod","next":null,"parent":"~T","inputs":{"NUM1":[3,"a#2",[4,0]],"NUM2":[1,[4,"0x100000000"]]},"fields":{},"shadow":false,"topLevel":false},"a#2":{"opcode":"operator_add","next":null,"parent":"~U","inputs":{"NUM1":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~V":{"opcode":"procedures_definition","next":"~W","parent":null,"inputs":{"custom_block":[1,"vA"]},"fields":{},"shadow":false,"topLevel":true,"x":14352,"y":427},"vA":{"opcode":"procedures_prototype","next":null,"parent":"~V","inputs":{",!vV[QISR{R?|c;ZW)|A":[1,"a#3"],"2=ZrP1;%i72|7V~%m9,3":[1,"a#4"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"false\",\"\",\"\",\"\"]","warp":"true"}},"a#3":{"opcode":"argument_reporter_string_number","next":null,"parent":"vA","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a#4":{"opcode":"argument_reporter_string_number","next":null,"parent":"vA","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"~W":{"opcode":"data_setvariableto","next":null,"parent":"~V","inputs":{"VALUE":[3,"vB",[10,""]]},"fields":{"VARIABLE":["core.shift_return","v;eH`7|2r1}R]J+L$.n+"]},"shadow":false,"topLevel":false},"vB":{"opcode":"operator_multiply","next":null,"parent":"~W","inputs":{"NUM1":[3,"a#5",[4,0]],"NUM2":[3,"~X",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#5":{"opcode":"argument_reporter_string_number","next":null,"parent":"vB","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"~X":{"opcode":"operator_round","next":null,"parent":"vB","inputs":{"NUM":[3,"~Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~Y":{"opcode":"operator_mathop","next":null,"parent":"~X","inputs":{"NUM":[3,"~Z",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"~Z":{"opcode":"operator_multiply","next":null,"parent":"~Y","inputs":{"NUM1":[3,"a#6",[4,0]],"NUM2":[1,[4,"0.6931471805599453"]]},"fields":{},"shadow":false,"topLevel":false},"a#6":{"opcode":"argument_reporter_string_number","next":null,"parent":"~Z","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~0":{"opcode":"procedures_definition","next":"~1","parent":null,"inputs":{"custom_block":[1,"vC"]},"fields":{},"shadow":false,"topLevel":true,"x":14566,"y":690},"vC":{"opcode":"procedures_prototype","next":null,"parent":"~0","inputs":{"I)$U1@(uKe.xp@l!IP(k":[1,"a#7"],"|6V?U0H`Ot6{lp?o_9O(":[1,"a#8"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a#7":{"opcode":"argument_reporter_string_number","next":null,"parent":"vC","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"a#8":{"opcode":"argument_reporter_string_number","next":null,"parent":"vC","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"~1":{"opcode":"data_setvariableto","next":null,"parent":"~0","inputs":{"VALUE":[3,"~2",[10,""]]},"fields":{"VARIABLE":["core.shift_return","v;eH`7|2r1}R]J+L$.n+"]},"shadow":false,"topLevel":false},"~2":{"opcode":"operator_mathop","next":null,"parent":"~1","inputs":{"NUM":[3,"vD",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"vD":{"opcode":"operator_divide","next":null,"parent":"~2","inputs":{"NUM1":[3,"a#9",[4,0]],"NUM2":[3,"~3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#9":{"opcode":"argument_reporter_string_number","next":null,"parent":"vD","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"~3":{"opcode":"operator_round","next":null,"parent":"vD","inputs":{"NUM":[3,"~4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"~4":{"opcode":"operator_mathop","next":null,"parent":"~3","inputs":{"NUM":[3,"~5",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"~5":{"opcode":"operator_multiply","next":null,"parent":"~4","inputs":{"NUM1":[3,"a#!",[4,0]],"NUM2":[1,[4,"0.6931471805599453"]]},"fields":{},"shadow":false,"topLevel":false},"a#!":{"opcode":"argument_reporter_string_number","next":null,"parent":"~5","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"~6":{"opcode":"procedures_definition","next":"h2","parent":null,"inputs":{"custom_block":[1,"~7"]},"fields":{},"shadow":false,"topLevel":true,"x":11123,"y":415},"~7":{"opcode":"procedures_prototype","next":null,"parent":"~6","inputs":{"kc)Odu7|W(7v#A=kW.{G":[1,"a##"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.check_condition %s","argumentids":"[\"kc)Odu7|W(7v#A=kW.{G\"]","argumentnames":"[\"cond\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a##":{"opcode":"argument_reporter_string_number","next":null,"parent":"~7","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":true,"topLevel":false},"h2":{"opcode":"control_if_else","next":null,"parent":"~6","inputs":{"CONDITION":[2,"~8"],"SUBSTACK":[2,"h3"],"SUBSTACK2":[2,"h4"]},"fields":{},"shadow":false,"topLevel":false},"~8":{"opcode":"operator_lt","next":null,"parent":"h2","inputs":{"OPERAND1":[3,"a#%",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a#%":{"opcode":"argument_reporter_string_number","next":null,"parent":"~8","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h3":{"opcode":"control_if_else","next":null,"parent":"h2","inputs":{"CONDITION":[2,"~9"],"SUBSTACK":[2,"h5"],"SUBSTACK2":[2,"h6"]},"fields":{},"shadow":false,"topLevel":false},"~9":{"opcode":"operator_lt","next":null,"parent":"h3","inputs":{"OPERAND1":[3,"a#(",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a#(":{"opcode":"argument_reporter_string_number","next":null,"parent":"~9","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h5":{"opcode":"control_if_else","next":null,"parent":"h3","inputs":{"CONDITION":[2,"~!"],"SUBSTACK":[2,"h7"],"SUBSTACK2":[2,"h8"]},"fields":{},"shadow":false,"topLevel":false},"~!":{"opcode":"operator_lt","next":null,"parent":"h5","inputs":{"OPERAND1":[3,"a#)",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a#)":{"opcode":"argument_reporter_string_number","next":null,"parent":"~!","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h7":{"opcode":"control_if_else","next":null,"parent":"h5","inputs":{"CONDITION":[2,"~#"],"SUBSTACK":[2,"~%"],"SUBSTACK2":[2,"~("]},"fields":{},"shadow":false,"topLevel":false},"~#":{"opcode":"operator_lt","next":null,"parent":"h7","inputs":{"OPERAND1":[3,"a#*",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a#*":{"opcode":"argument_reporter_string_number","next":null,"parent":"~#","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"~%":{"opcode":"data_setvariableto","next":null,"parent":"h7","inputs":{"VALUE":[3,"a#+",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"a#+":{"opcode":"data_itemoflist","next":null,"parent":"~%","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"~(":{"opcode":"data_setvariableto","next":null,"parent":"h7","inputs":{"VALUE":[3,"~)",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~)":{"opcode":"operator_subtract","next":null,"parent":"~(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a#,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#,":{"opcode":"data_itemoflist","next":null,"parent":"~)","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h8":{"opcode":"control_if_else","next":null,"parent":"h5","inputs":{"CONDITION":[2,"~*"],"SUBSTACK":[2,"~+"],"SUBSTACK2":[2,"~,"]},"fields":{},"shadow":false,"topLevel":false},"~*":{"opcode":"operator_lt","next":null,"parent":"h8","inputs":{"OPERAND1":[3,"a#-",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a#-":{"opcode":"argument_reporter_string_number","next":null,"parent":"~*","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"~+":{"opcode":"data_setvariableto","next":null,"parent":"h8","inputs":{"VALUE":[3,"a#.",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"a#.":{"opcode":"data_itemoflist","next":null,"parent":"~+","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"~,":{"opcode":"data_setvariableto","next":null,"parent":"h8","inputs":{"VALUE":[3,"~-",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~-":{"opcode":"operator_subtract","next":null,"parent":"~,","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a#/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#/":{"opcode":"data_itemoflist","next":null,"parent":"~-","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h6":{"opcode":"control_if_else","next":null,"parent":"h3","inputs":{"CONDITION":[2,"~."],"SUBSTACK":[2,"h9"],"SUBSTACK2":[2,"h!"]},"fields":{},"shadow":false,"topLevel":false},"~.":{"opcode":"operator_lt","next":null,"parent":"h6","inputs":{"OPERAND1":[3,"a#:",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a#:":{"opcode":"argument_reporter_string_number","next":null,"parent":"~.","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h9":{"opcode":"control_if_else","next":null,"parent":"h6","inputs":{"CONDITION":[2,"~/"],"SUBSTACK":[2,"~:"],"SUBSTACK2":[2,"~;"]},"fields":{},"shadow":false,"topLevel":false},"~/":{"opcode":"operator_lt","next":null,"parent":"h9","inputs":{"OPERAND1":[3,"a#;",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a#;":{"opcode":"argument_reporter_string_number","next":null,"parent":"~/","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"~:":{"opcode":"data_setvariableto","next":null,"parent":"h9","inputs":{"VALUE":[3,"a#=",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"a#=":{"opcode":"data_itemoflist","next":null,"parent":"~:","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"~;":{"opcode":"data_setvariableto","next":null,"parent":"h9","inputs":{"VALUE":[3,"~=",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~=":{"opcode":"operator_subtract","next":null,"parent":"~;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a#?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#?":{"opcode":"data_itemoflist","next":null,"parent":"~=","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h!":{"opcode":"control_if_else","next":null,"parent":"h6","inputs":{"CONDITION":[2,"~?"],"SUBSTACK":[2,"~@"],"SUBSTACK2":[2,"~["]},"fields":{},"shadow":false,"topLevel":false},"~?":{"opcode":"operator_lt","next":null,"parent":"h!","inputs":{"OPERAND1":[3,"a#@",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a#@":{"opcode":"argument_reporter_string_number","next":null,"parent":"~?","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"~@":{"opcode":"data_setvariableto","next":null,"parent":"h!","inputs":{"VALUE":[3,"a#[",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"a#[":{"opcode":"data_itemoflist","next":null,"parent":"~@","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"~[":{"opcode":"data_setvariableto","next":null,"parent":"h!","inputs":{"VALUE":[3,"~]",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~]":{"opcode":"operator_subtract","next":null,"parent":"~[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a#]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#]":{"opcode":"data_itemoflist","next":null,"parent":"~]","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h4":{"opcode":"control_if_else","next":null,"parent":"h2","inputs":{"CONDITION":[2,"~^"],"SUBSTACK":[2,"h#"],"SUBSTACK2":[2,"h%"]},"fields":{},"shadow":false,"topLevel":false},"~^":{"opcode":"operator_lt","next":null,"parent":"h4","inputs":{"OPERAND1":[3,"a#^",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"a#^":{"opcode":"argument_reporter_string_number","next":null,"parent":"~^","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h#":{"opcode":"control_if_else","next":null,"parent":"h4","inputs":{"CONDITION":[2,"~_"],"SUBSTACK":[2,"h("],"SUBSTACK2":[2,"h)"]},"fields":{},"shadow":false,"topLevel":false},"~_":{"opcode":"operator_lt","next":null,"parent":"h#","inputs":{"OPERAND1":[3,"a#_",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a#_":{"opcode":"argument_reporter_string_number","next":null,"parent":"~_","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h(":{"opcode":"control_if_else","next":null,"parent":"h#","inputs":{"CONDITION":[2,"~`"],"SUBSTACK":[2,"~{"],"SUBSTACK2":[2,"~|"]},"fields":{},"shadow":false,"topLevel":false},"~`":{"opcode":"operator_lt","next":null,"parent":"h(","inputs":{"OPERAND1":[3,"a#`",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a#`":{"opcode":"argument_reporter_string_number","next":null,"parent":"~`","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"~{":{"opcode":"data_setvariableto","next":null,"parent":"h(","inputs":{"VALUE":[3,"~}",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~}":{"opcode":"operator_gt","next":null,"parent":"~{","inputs":{"OPERAND1":[3,"vE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vE":{"opcode":"operator_subtract","next":null,"parent":"~}","inputs":{"NUM1":[3,"a#{",[4,0]],"NUM2":[3,"a#|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#{":{"opcode":"data_itemoflist","next":null,"parent":"vE","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a#|":{"opcode":"data_itemoflist","next":null,"parent":"vE","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"~|":{"opcode":"data_setvariableto","next":null,"parent":"h(","inputs":{"VALUE":[3,"~~",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"~~":{"opcode":"operator_gt","next":null,"parent":"~|","inputs":{"OPERAND1":[3,"vF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vF":{"opcode":"operator_subtract","next":null,"parent":"~~","inputs":{"NUM1":[3,"a#}",[4,0]],"NUM2":[3,"a#~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a#}":{"opcode":"data_itemoflist","next":null,"parent":"vF","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a#~":{"opcode":"data_itemoflist","next":null,"parent":"vF","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h)":{"opcode":"control_if_else","next":null,"parent":"h#","inputs":{"CONDITION":[2,"aaa"],"SUBSTACK":[2,"aab"],"SUBSTACK2":[2,"aac"]},"fields":{},"shadow":false,"topLevel":false},"aaa":{"opcode":"operator_lt","next":null,"parent":"h)","inputs":{"OPERAND1":[3,"a%a",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"a%a":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaa","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"aab":{"opcode":"data_setvariableto","next":null,"parent":"h)","inputs":{"VALUE":[3,"vG",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"vG":{"opcode":"operator_equals","next":null,"parent":"aab","inputs":{"OPERAND1":[3,"a%b",[10,""]],"OPERAND2":[3,"a%c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%b":{"opcode":"data_itemoflist","next":null,"parent":"vG","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a%c":{"opcode":"data_itemoflist","next":null,"parent":"vG","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"aac":{"opcode":"data_setvariableto","next":null,"parent":"h)","inputs":{"VALUE":[3,"aad",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"aad":{"opcode":"operator_not","next":null,"parent":"aac","inputs":{"OPERAND":[2,"vH"]},"fields":{},"shadow":false,"topLevel":false},"vH":{"opcode":"operator_equals","next":null,"parent":"aad","inputs":{"OPERAND1":[3,"a%d",[10,""]],"OPERAND2":[3,"a%e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%d":{"opcode":"data_itemoflist","next":null,"parent":"vH","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a%e":{"opcode":"data_itemoflist","next":null,"parent":"vH","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"h%":{"opcode":"control_if_else","next":null,"parent":"h4","inputs":{"CONDITION":[2,"aae"],"SUBSTACK":[2,"h*"],"SUBSTACK2":[2,"gF"]},"fields":{},"shadow":false,"topLevel":false},"aae":{"opcode":"operator_lt","next":null,"parent":"h%","inputs":{"OPERAND1":[3,"a%f",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a%f":{"opcode":"argument_reporter_string_number","next":null,"parent":"aae","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h*":{"opcode":"control_if_else","next":null,"parent":"h%","inputs":{"CONDITION":[2,"aaf"],"SUBSTACK":[2,"aag"],"SUBSTACK2":[2,"aah"]},"fields":{},"shadow":false,"topLevel":false},"aaf":{"opcode":"operator_lt","next":null,"parent":"h*","inputs":{"OPERAND1":[3,"a%g",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"a%g":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaf","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"aag":{"opcode":"data_setvariableto","next":null,"parent":"h*","inputs":{"VALUE":[3,"vI",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"vI":{"opcode":"operator_multiply","next":null,"parent":"aag","inputs":{"NUM1":[3,"aai",[4,0]],"NUM2":[3,"vJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aai":{"opcode":"operator_subtract","next":null,"parent":"vI","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a%h",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%h":{"opcode":"data_itemoflist","next":null,"parent":"aai","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"vJ":{"opcode":"operator_equals","next":null,"parent":"vI","inputs":{"OPERAND1":[3,"a%i",[10,""]],"OPERAND2":[3,"a%j",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%i":{"opcode":"data_itemoflist","next":null,"parent":"vJ","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a%j":{"opcode":"data_itemoflist","next":null,"parent":"vJ","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"aah":{"opcode":"data_setvariableto","next":null,"parent":"h*","inputs":{"VALUE":[3,"aaj",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"aaj":{"opcode":"operator_gt","next":null,"parent":"aah","inputs":{"OPERAND1":[3,"vK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vK":{"opcode":"operator_add","next":null,"parent":"aaj","inputs":{"NUM1":[3,"a%k",[4,0]],"NUM2":[3,"aak",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%k":{"opcode":"data_itemoflist","next":null,"parent":"vK","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"aak":{"opcode":"operator_not","next":null,"parent":"vK","inputs":{"OPERAND":[2,"vL"]},"fields":{},"shadow":false,"topLevel":false},"vL":{"opcode":"operator_equals","next":null,"parent":"aak","inputs":{"OPERAND1":[3,"a%l",[10,""]],"OPERAND2":[3,"a%m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%l":{"opcode":"data_itemoflist","next":null,"parent":"vL","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a%m":{"opcode":"data_itemoflist","next":null,"parent":"vL","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"gF":{"opcode":"control_if_else","next":null,"parent":"h%","inputs":{"CONDITION":[2,"aal"],"SUBSTACK":[2,"a%n"],"SUBSTACK2":[2,"],"]},"fields":{},"shadow":false,"topLevel":false},"aal":{"opcode":"operator_lt","next":null,"parent":"gF","inputs":{"OPERAND1":[3,"a%o",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a%o":{"opcode":"argument_reporter_string_number","next":null,"parent":"aal","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"a%n":{"opcode":"data_setvariableto","next":null,"parent":"gF","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"aam":{"opcode":"procedures_definition","next":"vM","parent":null,"inputs":{"custom_block":[1,"aan"]},"fields":{},"shadow":false,"topLevel":true,"x":4003,"y":3025},"aan":{"opcode":"procedures_prototype","next":null,"parent":"aam","inputs":{"V)?tNL$%Rh+w==[pHm3i":[1,"a%p"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a%p":{"opcode":"argument_reporter_string_number","next":null,"parent":"aan","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"vM":{"opcode":"procedures_call","next":"vN","parent":"aam","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"a%q",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"a%q":{"opcode":"argument_reporter_string_number","next":null,"parent":"vM","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vN":{"opcode":"procedures_call","next":"a%r","parent":"vM","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"aao",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"aao":{"opcode":"operator_mod","next":null,"parent":"vN","inputs":{"NUM1":[3,"a%s",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%s":{"opcode":"argument_reporter_string_number","next":null,"parent":"aao","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a%r":{"opcode":"data_setvariableto","next":null,"parent":"vN","inputs":{"VALUE":[3,[12,"core.byte_return","D@T%uY;^Ck}J:bfqk*PR"],[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"aap":{"opcode":"procedures_definition","next":"vO","parent":null,"inputs":{"custom_block":[1,"aaq"]},"fields":{},"shadow":false,"topLevel":true,"x":3983,"y":3784},"aaq":{"opcode":"procedures_prototype","next":null,"parent":"aap","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,"a%t"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a%t":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"vO":{"opcode":"procedures_call","next":"vP","parent":"aap","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"a%u",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"a%u":{"opcode":"argument_reporter_string_number","next":null,"parent":"vO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"vP":{"opcode":"procedures_call","next":"a%v","parent":"vO","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"aar",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"aar":{"opcode":"operator_mod","next":null,"parent":"vP","inputs":{"NUM1":[3,"a%w",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%w":{"opcode":"argument_reporter_string_number","next":null,"parent":"aar","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a%v":{"opcode":"data_setvariableto","next":null,"parent":"vP","inputs":{"VALUE":[3,[12,"core.byte_return","D@T%uY;^Ck}J:bfqk*PR"],[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"aas":{"opcode":"procedures_definition","next":"aat","parent":null,"inputs":{"custom_block":[1,"vQ"]},"fields":{},"shadow":false,"topLevel":true,"x":4509,"y":3028},"vQ":{"opcode":"procedures_prototype","next":null,"parent":"aas","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[1,"a%x"],"chMd9Q|EzSGqtBqxQ;h?":[1,"a%y"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a%x":{"opcode":"argument_reporter_string_number","next":null,"parent":"vQ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a%y":{"opcode":"argument_reporter_string_number","next":null,"parent":"vQ","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"aat":{"opcode":"data_setvariableto","next":"aau","parent":"aas","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aau":{"opcode":"data_setvariableto","next":"vR","parent":"aat","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"vR":{"opcode":"control_repeat","next":"aav","parent":"aau","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"aw"]},"fields":{},"shadow":false,"topLevel":false},"aw":{"opcode":"control_if_else","next":"a%z","parent":"vR","inputs":{"CONDITION":[2,"aaw"],"SUBSTACK":[2,"aax"],"SUBSTACK2":[2,"vS"]},"fields":{},"shadow":false,"topLevel":false},"aaw":{"opcode":"operator_equals","next":null,"parent":"aw","inputs":{"OPERAND1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[10,""]],"OPERAND2":[3,"aay",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aay":{"opcode":"operator_mod","next":null,"parent":"aaw","inputs":{"NUM1":[3,"a%A",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%A":{"opcode":"argument_reporter_string_number","next":null,"parent":"aay","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aax":{"opcode":"data_setvariableto","next":null,"parent":"aw","inputs":{"VALUE":[3,"vT",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"vT":{"opcode":"operator_add","next":null,"parent":"aax","inputs":{"NUM1":[3,"a%B",[4,0]],"NUM2":[3,"a%C",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%B":{"opcode":"operator_multiply","next":null,"parent":"vT","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%C":{"opcode":"argument_reporter_string_number","next":null,"parent":"vT","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vS":{"opcode":"procedures_call","next":"aaz","parent":"aw","inputs":{"V)?tNL$%Rh+w==[pHm3i":[3,"aaA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","warp":"true"}},"aaA":{"opcode":"operator_add","next":null,"parent":"vS","inputs":{"NUM1":[3,"aaB",[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aaB":{"opcode":"operator_multiply","next":null,"parent":"aaA","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"aaC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aaC":{"opcode":"operator_mathop","next":null,"parent":"aaB","inputs":{"NUM":[3,"aaD",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aaD":{"opcode":"operator_divide","next":null,"parent":"aaC","inputs":{"NUM1":[3,"a%D",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%D":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aaz":{"opcode":"data_setvariableto","next":null,"parent":"vS","inputs":{"VALUE":[3,"aaE",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"aaE":{"opcode":"operator_add","next":null,"parent":"aaz","inputs":{"NUM1":[3,"a%E",[4,0]],"NUM2":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%E":{"opcode":"operator_multiply","next":null,"parent":"aaE","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%z":{"opcode":"data_changevariableby","next":null,"parent":"aw","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aav":{"opcode":"procedures_call","next":null,"parent":"vR","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[3,"aaF",[10,""]],"-H4sp=),qi[~:f)tEWi`":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","warp":"true"}},"aaF":{"opcode":"operator_multiply","next":null,"parent":"aav","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"aaG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aaG":{"opcode":"operator_mathop","next":null,"parent":"aaF","inputs":{"NUM":[3,"aaH",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aaH":{"opcode":"operator_divide","next":null,"parent":"aaG","inputs":{"NUM1":[3,"a%F",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%F":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aaI":{"opcode":"procedures_definition","next":"aaJ","parent":null,"inputs":{"custom_block":[1,"vU"]},"fields":{},"shadow":false,"topLevel":true,"x":4507,"y":3775},"vU":{"opcode":"procedures_prototype","next":null,"parent":"aaI","inputs":{"D.*5WhEjoNWAd$2TCWYY":[1,"a%G"],"]VDD,IQ9ku]1-ToXGR.#":[1,"a%H"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a%G":{"opcode":"argument_reporter_string_number","next":null,"parent":"vU","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"a%H":{"opcode":"argument_reporter_string_number","next":null,"parent":"vU","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"aaJ":{"opcode":"data_setvariableto","next":"aaK","parent":"aaI","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aaK":{"opcode":"data_setvariableto","next":"vV","parent":"aaJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"vV":{"opcode":"control_repeat","next":"aaL","parent":"aaK","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"ax"]},"fields":{},"shadow":false,"topLevel":false},"ax":{"opcode":"control_if_else","next":"a%I","parent":"vV","inputs":{"CONDITION":[2,"aaM"],"SUBSTACK":[2,"aaN"],"SUBSTACK2":[2,"vW"]},"fields":{},"shadow":false,"topLevel":false},"aaM":{"opcode":"operator_equals","next":null,"parent":"ax","inputs":{"OPERAND1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[10,""]],"OPERAND2":[3,"aaO",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aaO":{"opcode":"operator_mod","next":null,"parent":"aaM","inputs":{"NUM1":[3,"a%J",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%J":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aaN":{"opcode":"data_setvariableto","next":null,"parent":"ax","inputs":{"VALUE":[3,"vX",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"vX":{"opcode":"operator_add","next":null,"parent":"aaN","inputs":{"NUM1":[3,"a%K",[4,0]],"NUM2":[3,"a%L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%K":{"opcode":"operator_multiply","next":null,"parent":"vX","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%L":{"opcode":"argument_reporter_string_number","next":null,"parent":"vX","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vW":{"opcode":"procedures_call","next":"aaP","parent":"ax","inputs":{"JB:_vsE:+DeE~*XZsm)n":[3,"aaQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"aaQ":{"opcode":"operator_add","next":null,"parent":"vW","inputs":{"NUM1":[3,"aaR",[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aaR":{"opcode":"operator_multiply","next":null,"parent":"aaQ","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"aaS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aaS":{"opcode":"operator_mathop","next":null,"parent":"aaR","inputs":{"NUM":[3,"aaT",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aaT":{"opcode":"operator_divide","next":null,"parent":"aaS","inputs":{"NUM1":[3,"a%M",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a%M":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaT","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aaP":{"opcode":"data_setvariableto","next":null,"parent":"vW","inputs":{"VALUE":[3,"aaU",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"aaU":{"opcode":"operator_add","next":null,"parent":"aaP","inputs":{"NUM1":[3,"a%N",[4,0]],"NUM2":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%N":{"opcode":"operator_multiply","next":null,"parent":"aaU","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%I":{"opcode":"data_changevariableby","next":null,"parent":"ax","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aaL":{"opcode":"procedures_call","next":null,"parent":"vV","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"a%O",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"a%O":{"opcode":"argument_reporter_string_number","next":null,"parent":"aaL","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aaV":{"opcode":"procedures_definition","next":"aaW","parent":null,"inputs":{"custom_block":[1,"a%P"]},"fields":{},"shadow":false,"topLevel":true,"x":12,"y":142},"a%P":{"opcode":"procedures_prototype","next":null,"parent":"aaV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aaW":{"opcode":"data_setvariableto","next":"aaX","parent":"aaV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"aaX":{"opcode":"data_setvariableto","next":"vY","parent":"aaW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_y","D*/(a|uRL{vFdIeuWJq}"]},"shadow":false,"topLevel":false},"vY":{"opcode":"control_repeat_until","next":null,"parent":"aaX","inputs":{"CONDITION":[2,"a%Q"],"SUBSTACK":[2,"h+"]},"fields":{},"shadow":false,"topLevel":false},"a%Q":{"opcode":"operator_equals","next":null,"parent":"vY","inputs":{"OPERAND1":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[10,""]],"OPERAND2":[1,[10,"263"]]},"fields":{},"shadow":false,"topLevel":false},"h+":{"opcode":"control_repeat_until","next":"h,","parent":"vY","inputs":{"CONDITION":[2,"aaY"],"SUBSTACK":[2,"vZ"]},"fields":{},"shadow":false,"topLevel":false},"aaY":{"opcode":"operator_gt","next":null,"parent":"h+","inputs":{"OPERAND1":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[10,""]],"OPERAND2":[3,"a%R",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%R":{"opcode":"operator_divide","next":null,"parent":"aaY","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vZ":{"opcode":"procedures_call","next":"a%S","parent":"h+","inputs":{"w|jx0IoJLmzBO~yODIww":[3,"a%T",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.instruction %s","argumentids":"[\"w|jx0IoJLmzBO~yODIww\"]","warp":"true"}},"a%T":{"opcode":"data_itemoflist","next":null,"parent":"vZ","inputs":{"INDEX":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[7,0]]},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},"a%S":{"opcode":"data_changevariableby","next":null,"parent":"vZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"h,":{"opcode":"control_repeat_until","next":"h-","parent":"h+","inputs":{"CONDITION":[2,"aaZ"],"SUBSTACK":[2,"v0"]},"fields":{},"shadow":false,"topLevel":false},"aaZ":{"opcode":"operator_gt","next":null,"parent":"h,","inputs":{"OPERAND1":[3,"a%U",[10,""]],"OPERAND2":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%U":{"opcode":"operator_divide","next":null,"parent":"aaZ","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"v0":{"opcode":"procedures_call","next":"a%V","parent":"h,","inputs":{"#l%LO,1LL7`*b:s_Xb^M":[3,"a%W",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.instruction %s","argumentids":"[\"#l%LO,1LL7`*b:s_Xb^M\"]","warp":"true"}},"a%W":{"opcode":"data_itemoflist","next":null,"parent":"v0","inputs":{"INDEX":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[7,0]]},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"a%V":{"opcode":"data_changevariableby","next":null,"parent":"v0","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"h-":{"opcode":"control_if","next":"v1","parent":"h,","inputs":{"CONDITION":[2,"a%X"],"SUBSTACK":[2,"v2"]},"fields":{},"shadow":false,"topLevel":false},"a%X":{"opcode":"operator_gt","next":null,"parent":"h-","inputs":{"OPERAND1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"v2":{"opcode":"data_setvariableto","next":"aa0","parent":"h-","inputs":{"VALUE":[3,"a%Y",[10,""]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"a%Y":{"opcode":"operator_subtract","next":null,"parent":"v2","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aa0":{"opcode":"data_setvariableto","next":"h.","parent":"v2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"aa1":{"opcode":"procedures_call","next":"aa2","parent":"h.","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,[10,"0x06800002"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"aa2":{"opcode":"data_setvariableto","next":"aa3","parent":"aa1","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aa3":{"opcode":"procedures_call","next":"v3","parent":"aa2","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,[10,"0x06800003"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"v4":{"opcode":"data_replaceitemoflist","next":null,"parent":"v3","inputs":{"INDEX":[3,"aa4",[7,0]],"ITEM":[3,"aa5",[10,""]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"aa4":{"opcode":"operator_add","next":null,"parent":"v4","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aa6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aa6":{"opcode":"operator_add","next":null,"parent":"aa4","inputs":{"NUM1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[4,0]],"NUM2":[3,"a%Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%Z":{"opcode":"operator_multiply","next":null,"parent":"aa6","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aa5":{"opcode":"operator_add","next":null,"parent":"v4","inputs":{"NUM1":[3,"a%0",[4,0]],"NUM2":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%0":{"opcode":"operator_multiply","next":null,"parent":"aa5","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%1":{"opcode":"data_changevariableby","next":null,"parent":"h.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"v1":{"opcode":"control_if","next":null,"parent":"h-","inputs":{"CONDITION":[2,"a%2"],"SUBSTACK":[2,"aa7"]},"fields":{},"shadow":false,"topLevel":false},"a%2":{"opcode":"operator_equals","next":null,"parent":"v1","inputs":{"OPERAND1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[10,""]],"OPERAND2":[1,[10,"355"]]},"fields":{},"shadow":false,"topLevel":false},"aa7":{"opcode":"data_setvariableto","next":"a%3","parent":"v1","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"a%3":{"opcode":"data_changevariableby","next":null,"parent":"aa7","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["display.scan_y","D*/(a|uRL{vFdIeuWJq}"]},"shadow":false,"topLevel":false},"aa8":{"opcode":"data_deletealloflist","next":"aa9","parent":"a%4","inputs":{},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"aa9":{"opcode":"data_deletealloflist","next":"aa!","parent":"aa8","inputs":{},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"aa!":{"opcode":"data_deletealloflist","next":"aa#","parent":"aa9","inputs":{},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"aa#":{"opcode":"data_deletealloflist","next":"aa%","parent":"aa!","inputs":{},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"aa%":{"opcode":"data_deletealloflist","next":"aa(","parent":"aa#","inputs":{},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"aa(":{"opcode":"data_deletealloflist","next":"aa)","parent":"aa%","inputs":{},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"aa)":{"opcode":"data_deletealloflist","next":"aa*","parent":"aa(","inputs":{},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"aa*":{"opcode":"data_deletealloflist","next":"aa+","parent":"aa)","inputs":{},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"aa+":{"opcode":"data_deletealloflist","next":"aa,","parent":"aa*","inputs":{},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"aa,":{"opcode":"data_deletealloflist","next":"aa-","parent":"aa+","inputs":{},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"aa-":{"opcode":"data_deletealloflist","next":"aa.","parent":"aa,","inputs":{},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"aa.":{"opcode":"data_deletealloflist","next":"aa/","parent":"aa-","inputs":{},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"aa/":{"opcode":"data_deletealloflist","next":"aa:","parent":"aa.","inputs":{},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"aa:":{"opcode":"data_deletealloflist","next":"aa;","parent":"aa/","inputs":{},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"aa;":{"opcode":"data_deletealloflist","next":"aa=","parent":"aa:","inputs":{},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"aa=":{"opcode":"data_deletealloflist","next":"aa?","parent":"aa;","inputs":{},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"aa?":{"opcode":"data_deletealloflist","next":"aa@","parent":"aa=","inputs":{},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"aa@":{"opcode":"data_deletealloflist","next":"aa[","parent":"aa?","inputs":{},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"aa[":{"opcode":"data_deletealloflist","next":"aa]","parent":"aa@","inputs":{},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"aa]":{"opcode":"data_deletealloflist","next":"aa^","parent":"aa[","inputs":{},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"aa^":{"opcode":"data_deletealloflist","next":"aa_","parent":"aa]","inputs":{},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"aa_":{"opcode":"data_deletealloflist","next":"aa`","parent":"aa^","inputs":{},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"aa`":{"opcode":"data_deletealloflist","next":"aa{","parent":"aa_","inputs":{},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"aa{":{"opcode":"data_deletealloflist","next":"aa|","parent":"aa`","inputs":{},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"aa|":{"opcode":"data_deletealloflist","next":"aa}","parent":"aa{","inputs":{},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"aa}":{"opcode":"data_deletealloflist","next":"aa~","parent":"aa|","inputs":{},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"aa~":{"opcode":"data_deletealloflist","next":"a%5","parent":"aa}","inputs":{},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"a%5":{"opcode":"data_deletealloflist","next":null,"parent":"aa~","inputs":{},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"aba":{"opcode":"operator_mod","next":null,"parent":"abb","inputs":{"NUM1":[3,"a%6",[4,0]],"NUM2":[1,[4,"0x0100"]]},"fields":{},"shadow":false,"topLevel":false},"abb":{"opcode":"operator_gt","next":null,"parent":"h.","inputs":{"OPERAND1":[3,"aba",[10,""]],"OPERAND2":[1,[10,"0x7F"]]},"fields":{},"shadow":false,"topLevel":false},"a%6":{"opcode":"data_itemoflist","next":null,"parent":"aba","inputs":{"INDEX":[1,[7,"145"]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"abc":{"opcode":"operator_mod","next":null,"parent":"u8","inputs":{"NUM1":[3,"abd",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abd":{"opcode":"operator_mathop","next":null,"parent":"abc","inputs":{"NUM":[3,"a%7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%7":{"opcode":"operator_divide","next":null,"parent":"abd","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"v5":{"opcode":"data_setvariableto","next":"h/","parent":"u8","inputs":{"VALUE":[3,"a%8",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"a%8":{"opcode":"operator_subtract","next":null,"parent":"v5","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"h/":{"opcode":"control_if","next":"h:","parent":"v5","inputs":{"CONDITION":[2,"abe"],"SUBSTACK":[2,"abf"]},"fields":{},"shadow":false,"topLevel":false},"abe":{"opcode":"operator_gt","next":null,"parent":"h/","inputs":{"OPERAND1":[3,"a%9",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a%9":{"opcode":"operator_mod","next":null,"parent":"abe","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"abf":{"opcode":"data_replaceitemoflist","next":null,"parent":"h/","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a%!",[10,""]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"a%!":{"opcode":"operator_lt","next":null,"parent":"abf","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"h:":{"opcode":"control_if","next":"abg","parent":"h/","inputs":{"CONDITION":[2,"a%#"],"SUBSTACK":[2,"a%%"]},"fields":{},"shadow":false,"topLevel":false},"a%#":{"opcode":"operator_lt","next":null,"parent":"h:","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a%%":{"opcode":"data_changevariableby","next":null,"parent":"h:","inputs":{"VALUE":[1,[4,"0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"abh":{"opcode":"operator_mod","next":null,"parent":"abg","inputs":{"NUM1":[3,"abi",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abi":{"opcode":"operator_mathop","next":null,"parent":"abh","inputs":{"NUM":[3,"a%(",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%(":{"opcode":"operator_divide","next":null,"parent":"abi","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"u8":{"opcode":"procedures_call","next":"v5","parent":"u7","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"abc",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"abg":{"opcode":"procedures_call","next":null,"parent":"h:","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"abh",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"u%":{"opcode":"data_setvariableto","next":"h;","parent":"g|","inputs":{"VALUE":[3,"abj",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"abj":{"opcode":"operator_subtract","next":null,"parent":"u%","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"v6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v6":{"opcode":"operator_add","next":null,"parent":"abj","inputs":{"NUM1":[3,"abk",[4,0]],"NUM2":[3,"a%)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abk":{"opcode":"operator_multiply","next":null,"parent":"v6","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"abl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abl":{"opcode":"operator_mod","next":null,"parent":"abk","inputs":{"NUM1":[3,"abm",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abm":{"opcode":"operator_mathop","next":null,"parent":"abl","inputs":{"NUM":[3,"a%*",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%*":{"opcode":"operator_divide","next":null,"parent":"abm","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a%)":{"opcode":"operator_mod","next":null,"parent":"v6","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"h;":{"opcode":"control_if","next":"v7","parent":"u%","inputs":{"CONDITION":[2,"abn"],"SUBSTACK":[2,"abo"]},"fields":{},"shadow":false,"topLevel":false},"abn":{"opcode":"operator_gt","next":null,"parent":"h;","inputs":{"OPERAND1":[3,"a%+",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a%+":{"opcode":"operator_mod","next":null,"parent":"abn","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"abo":{"opcode":"data_setvariableto","next":null,"parent":"h;","inputs":{"VALUE":[3,"a%,",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a%,":{"opcode":"operator_subtract","next":null,"parent":"abo","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abp":{"opcode":"operator_mod","next":null,"parent":"v7","inputs":{"NUM1":[3,"abq",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abq":{"opcode":"operator_mathop","next":null,"parent":"abp","inputs":{"NUM":[3,"a%-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%-":{"opcode":"operator_divide","next":null,"parent":"abq","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"abr":{"opcode":"data_changevariableby","next":"h=","parent":"v7","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"h=":{"opcode":"control_if","next":"ay","parent":"abr","inputs":{"CONDITION":[2,"abs"],"SUBSTACK":[2,"abt"]},"fields":{},"shadow":false,"topLevel":false},"abs":{"opcode":"operator_gt","next":null,"parent":"h=","inputs":{"OPERAND1":[3,"a%.",[10,""]],"OPERAND2":[1,[10,"0x001FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a%.":{"opcode":"operator_mod","next":null,"parent":"abs","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00400000"]]},"fields":{},"shadow":false,"topLevel":false},"abu":{"opcode":"operator_mod","next":null,"parent":"abt","inputs":{"NUM1":[3,"abv",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abv":{"opcode":"operator_mathop","next":null,"parent":"abu","inputs":{"NUM":[3,"a%/",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%/":{"opcode":"operator_divide","next":null,"parent":"abv","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"ay":{"opcode":"control_if_else","next":"a%:","parent":"h=","inputs":{"CONDITION":[2,"abw"],"SUBSTACK":[2,"abx"],"SUBSTACK2":[2,"v8"]},"fields":{},"shadow":false,"topLevel":false},"abw":{"opcode":"operator_gt","next":null,"parent":"ay","inputs":{"OPERAND1":[3,"a%;",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a%;":{"opcode":"operator_mod","next":null,"parent":"abw","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"aby":{"opcode":"operator_mod","next":null,"parent":"abz","inputs":{"NUM1":[3,"abA",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abA":{"opcode":"operator_mathop","next":null,"parent":"aby","inputs":{"NUM":[3,"a%=",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%=":{"opcode":"operator_divide","next":null,"parent":"abA","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"abB":{"opcode":"operator_mod","next":null,"parent":"v8","inputs":{"NUM1":[3,"abC",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abC":{"opcode":"operator_mathop","next":null,"parent":"abB","inputs":{"NUM":[3,"a%?",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%?":{"opcode":"operator_divide","next":null,"parent":"abC","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"abD":{"opcode":"data_setvariableto","next":"v9","parent":"v8","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"abE":{"opcode":"operator_mathop","next":null,"parent":"v9","inputs":{"NUM":[3,"a%@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%@":{"opcode":"operator_divide","next":null,"parent":"abE","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a%[":{"opcode":"operator_add","next":null,"parent":"v!","inputs":{"NUM1":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%]":{"opcode":"operator_mod","next":null,"parent":"v!","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a%:":{"opcode":"data_changevariableby","next":null,"parent":"ay","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"v7":{"opcode":"procedures_call","next":"abr","parent":"h;","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"abp",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"abt":{"opcode":"procedures_call","next":null,"parent":"h=","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"abu",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"abz":{"opcode":"procedures_call","next":null,"parent":"abx","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aby",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"abx":{"opcode":"procedures_call","next":"abz","parent":"ay","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","warp":"true"}},"v8":{"opcode":"procedures_call","next":"abD","parent":"ay","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"abB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"v9":{"opcode":"procedures_call","next":"v!","parent":"abD","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]],"chMd9Q|EzSGqtBqxQ;h?":[3,"abE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","warp":"true"}},"v!":{"opcode":"procedures_call","next":null,"parent":"v9","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[3,"a%[",[10,""]],"chMd9Q|EzSGqtBqxQ;h?":[3,"a%]",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","warp":"true"}},"abF":{"opcode":"operator_mod","next":null,"parent":"u!","inputs":{"NUM1":[3,"abG",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abG":{"opcode":"operator_mathop","next":null,"parent":"abF","inputs":{"NUM":[3,"a%^",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%^":{"opcode":"operator_divide","next":null,"parent":"abG","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"v#":{"opcode":"data_setvariableto","next":"h?","parent":"u!","inputs":{"VALUE":[3,"a%_",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"a%_":{"opcode":"operator_add","next":null,"parent":"v#","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"h?":{"opcode":"control_if","next":"abH","parent":"v#","inputs":{"CONDITION":[2,"a%`"],"SUBSTACK":[2,"a%{"]},"fields":{},"shadow":false,"topLevel":false},"a%`":{"opcode":"operator_gt","next":null,"parent":"h?","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0xFFFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a%{":{"opcode":"data_changevariableby","next":null,"parent":"h?","inputs":{"VALUE":[1,[4,"-0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"abI":{"opcode":"operator_mod","next":null,"parent":"abH","inputs":{"NUM1":[3,"abJ",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abJ":{"opcode":"operator_mathop","next":null,"parent":"abI","inputs":{"NUM":[3,"a%|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%|":{"opcode":"operator_divide","next":null,"parent":"abJ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"u!":{"opcode":"procedures_call","next":"v#","parent":"u9","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"abF",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"abH":{"opcode":"procedures_call","next":null,"parent":"h?","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"abI",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"v3":{"opcode":"control_if","next":null,"parent":"aa3","inputs":{"CONDITION":[2,"v%"],"SUBSTACK":[2,"v4"]},"fields":{},"shadow":false,"topLevel":false},"v%":{"opcode":"operator_and","next":null,"parent":"v3","inputs":{"OPERAND2":[2,"a%}"],"OPERAND1":[2,"a%~"]},"fields":{},"shadow":false,"topLevel":false},"a%}":{"opcode":"operator_lt","next":null,"parent":"v%","inputs":{"OPERAND1":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"a%~":{"opcode":"operator_lt","next":null,"parent":"v%","inputs":{"OPERAND1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"h.":{"opcode":"control_if","next":"a%1","parent":"aa0","inputs":{"SUBSTACK":[2,"aa1"],"CONDITION":[2,"abb"]},"fields":{},"shadow":false,"topLevel":false},"abK":{"opcode":"operator_equals","next":null,"parent":"hq","inputs":{"OPERAND1":[3,"abL",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"hq":{"opcode":"control_if_else","next":null,"parent":"gQ","inputs":{"SUBSTACK2":[2,"a!t"],"CONDITION":[2,"abK"],"SUBSTACK":[2,"a(a"]},"fields":{},"shadow":false,"topLevel":false},"abL":{"opcode":"operator_mod","next":null,"parent":"abK","inputs":{"NUM1":[3,"abM",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"abM":{"opcode":"operator_mathop","next":null,"parent":"abL","inputs":{"NUM":[3,"a(b",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(b":{"opcode":"operator_divide","next":null,"parent":"abM","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"a(a":{"opcode":"data_setvariableto","next":null,"parent":"hq","inputs":{"VALUE":[1,[10,"14"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"^n":{"opcode":"procedures_call","next":"^q","parent":"^m","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","warp":"true"}},"^q":{"opcode":"event_broadcast","next":"^p","parent":"^n","inputs":{"BROADCAST_INPUT":[1,[11,"render_screen","*~j7B^$jo;Babt$i@0p-"]]},"fields":{},"shadow":false,"topLevel":false},"a%4":{"opcode":"event_whenbroadcastreceived","next":"aa8","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":-488,"y":892},"uW":{"opcode":"data_replaceitemoflist","next":null,"parent":"g*","inputs":{"INDEX":[3,"abN",[7,0]],"ITEM":[3,"a(c",[10,""]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"abN":{"opcode":"operator_add","next":null,"parent":"uW","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"abO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abO":{"opcode":"operator_mathop","next":null,"parent":"abN","inputs":{"NUM":[3,"abP",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"abP":{"opcode":"operator_divide","next":null,"parent":"abO","inputs":{"NUM1":[3,"abQ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"abQ":{"opcode":"operator_subtract","next":null,"parent":"abP","inputs":{"NUM1":[3,"a(d",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"a(d":{"opcode":"argument_reporter_string_number","next":null,"parent":"abQ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a(c":{"opcode":"argument_reporter_string_number","next":null,"parent":"uW","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"uq":{"opcode":"data_replaceitemoflist","next":null,"parent":"_e","inputs":{"INDEX":[3,"abR",[7,0]],"ITEM":[3,"a(e",[10,""]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"abR":{"opcode":"operator_add","next":null,"parent":"uq","inputs":{"NUM1":[3,"a(f",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a(f":{"opcode":"argument_reporter_string_number","next":null,"parent":"abR","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"a(e":{"opcode":"argument_reporter_string_number","next":null,"parent":"uq","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"u6":{"opcode":"procedures_call","next":"a(g","parent":"u5","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"abS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"abS":{"opcode":"operator_mod","next":null,"parent":"u6","inputs":{"NUM1":[3,"abT",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"abT":{"opcode":"operator_mathop","next":null,"parent":"abS","inputs":{"NUM":[3,"a(h",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(h":{"opcode":"operator_divide","next":null,"parent":"abT","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a(g":{"opcode":"data_setvariableto","next":null,"parent":"u6","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"u.":{"opcode":"control_if_else","next":null,"parent":"ha","inputs":{"CONDITION":[2,"a(i"],"SUBSTACK":[2,"h@"]},"fields":{},"shadow":false,"topLevel":false},"a(i":{"opcode":"operator_lt","next":null,"parent":"u.","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"h@":{"opcode":"control_if","next":"az","parent":"u.","inputs":{"CONDITION":[2,"abU"],"SUBSTACK":[2,"abV"]},"fields":{},"shadow":false,"topLevel":false},"abU":{"opcode":"operator_gt","next":null,"parent":"h@","inputs":{"OPERAND1":[3,"a(j",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(j":{"opcode":"operator_mod","next":null,"parent":"abU","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"abV":{"opcode":"procedures_call","next":null,"parent":"h@","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[1,[10,"14"]],"YcCxsq`]3g25uQV)Hi5o":[3,"a(k",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"a(k":{"opcode":"operator_subtract","next":null,"parent":"abV","inputs":{"NUM1":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"az":{"opcode":"control_if_else","next":"a(l","parent":"h@","inputs":{"CONDITION":[2,"abW"],"SUBSTACK":[2,"abX"],"SUBSTACK2":[2,"abY"]},"fields":{},"shadow":false,"topLevel":false},"abW":{"opcode":"operator_gt","next":null,"parent":"az","inputs":{"OPERAND1":[3,"a(m",[10,""]],"OPERAND2":[1,[10,"0x008FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(m":{"opcode":"operator_mod","next":null,"parent":"abW","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"abX":{"opcode":"data_changevariableby","next":null,"parent":"az","inputs":{"VALUE":[3,"abZ",[4,0]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"abZ":{"opcode":"operator_multiply","next":null,"parent":"abX","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[3,"ab0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab0":{"opcode":"operator_subtract","next":null,"parent":"abZ","inputs":{"NUM1":[1,[4,"0x00FFFFFF"]],"NUM2":[3,"a(n",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a(n":{"opcode":"operator_mod","next":null,"parent":"ab0","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"abY":{"opcode":"data_changevariableby","next":null,"parent":"az","inputs":{"VALUE":[3,"a(o",[4,0]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"a(o":{"opcode":"operator_mod","next":null,"parent":"abY","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"a(l":{"opcode":"data_changevariableby","next":null,"parent":"az","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"u@":{"opcode":"procedures_call","next":"h[","parent":"hg","inputs":{"HR}S7=-$neJrd)Sf~gG)":[3,"a(p",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","warp":"true"}},"a(p":{"opcode":"argument_reporter_string_number","next":null,"parent":"u@","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"h[":{"opcode":"control_if_else","next":null,"parent":"u@","inputs":{"CONDITION":[2,"a(q"],"SUBSTACK":[2,"h]"],"SUBSTACK2":[2,"h^"]},"fields":{},"shadow":false,"topLevel":false},"a(q":{"opcode":"operator_lt","next":null,"parent":"h[","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"h]":{"opcode":"control_if_else","next":null,"parent":"h[","inputs":{"CONDITION":[2,"a(r"],"SUBSTACK":[2,"h_"],"SUBSTACK2":[2,"h`"]},"fields":{},"shadow":false,"topLevel":false},"a(r":{"opcode":"operator_lt","next":null,"parent":"h]","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"h_":{"opcode":"control_if_else","next":null,"parent":"h]","inputs":{"CONDITION":[2,"a(s"],"SUBSTACK":[2,"!"],"SUBSTACK2":[2,"v("]},"fields":{},"shadow":false,"topLevel":false},"a(s":{"opcode":"operator_lt","next":null,"parent":"h_","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!":{"opcode":"control_if_else","next":null,"parent":"h_","inputs":{"CONDITION":[2,"a(t"],"SUBSTACK":[2,"aA"],"SUBSTACK2":[2,"a(u"]},"fields":{},"shadow":false,"topLevel":false,"comment":"]*"},"a(t":{"opcode":"operator_lt","next":null,"parent":"!","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aA":{"opcode":"control_if_else","next":"v)","parent":"!","inputs":{"CONDITION":[2,"ab1"],"SUBSTACK":[2,"h{"],"SUBSTACK2":[2,"v*"]},"fields":{},"shadow":false,"topLevel":false},"ab1":{"opcode":"operator_gt","next":null,"parent":"aA","inputs":{"OPERAND1":[3,"a(v",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(v":{"opcode":"operator_mod","next":null,"parent":"ab1","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"h{":{"opcode":"procedures_call","next":"a(w","parent":"aA","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[3,"a(x",[10,""]],"3)l`,m3z-UYcLsco:|pk":[3,"ab2",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","warp":"true"}},"a(x":{"opcode":"operator_mod","next":null,"parent":"h{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ab2":{"opcode":"operator_multiply","next":null,"parent":"h{","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"ab3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab3":{"opcode":"operator_mod","next":null,"parent":"ab2","inputs":{"NUM1":[3,"ab4",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab4":{"opcode":"operator_mathop","next":null,"parent":"ab3","inputs":{"NUM":[3,"a(y",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(y":{"opcode":"operator_divide","next":null,"parent":"ab4","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a(w":{"opcode":"data_setvariableto","next":null,"parent":"h{","inputs":{"VALUE":[3,[12,"core.rotate_return","zY(u-?O,+t%[td.I,e.a"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"v*":{"opcode":"procedures_call","next":"v+","parent":"aA","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"a(z",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"a(z":{"opcode":"operator_mod","next":null,"parent":"v*","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"v+":{"opcode":"procedures_call","next":"a(A","parent":"v*","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"ab5",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"ab5":{"opcode":"operator_mod","next":null,"parent":"v+","inputs":{"NUM1":[3,"ab6",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ab6":{"opcode":"operator_mathop","next":null,"parent":"ab5","inputs":{"NUM":[3,"a(B",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(B":{"opcode":"operator_divide","next":null,"parent":"ab6","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a(A":{"opcode":"data_setvariableto","next":null,"parent":"v+","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"v)":{"opcode":"data_setvariableto","next":"aT","parent":"aA","inputs":{"VALUE":[3,"ab7",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"ab7":{"opcode":"operator_mathop","next":null,"parent":"v)","inputs":{"NUM":[3,"ab8",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ab8":{"opcode":"operator_divide","next":null,"parent":"ab7","inputs":{"NUM1":[3,"a(C",[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"a(C":{"opcode":"operator_mod","next":null,"parent":"ab8","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"aT":{"opcode":"control_if_else","next":"a(D","parent":"v)","inputs":{"CONDITION":[2,"a(E"],"SUBSTACK":[2,"h|"],"SUBSTACK2":[2,"h}"]},"fields":{},"shadow":false,"topLevel":false},"a(E":{"opcode":"operator_lt","next":null,"parent":"aT","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"h|":{"opcode":"control_if_else","next":null,"parent":"aT","inputs":{"CONDITION":[2,"a(F"],"SUBSTACK":[2,"h~"],"SUBSTACK2":[2,"ia"]},"fields":{},"shadow":false,"topLevel":false},"a(F":{"opcode":"operator_lt","next":null,"parent":"h|","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"h~":{"opcode":"control_if_else","next":null,"parent":"h|","inputs":{"CONDITION":[2,"a(G"],"SUBSTACK":[2,"ab9"],"SUBSTACK2":[2,"v,"]},"fields":{},"shadow":false,"topLevel":false},"a(G":{"opcode":"operator_lt","next":null,"parent":"h~","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ab9":{"opcode":"control_if_else","next":null,"parent":"h~","inputs":{"CONDITION":[2,"a(H"]},"fields":{},"shadow":false,"topLevel":false},"a(H":{"opcode":"operator_lt","next":null,"parent":"ab9","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"v,":{"opcode":"control_if_else","next":null,"parent":"h~","inputs":{"CONDITION":[2,"a(I"],"SUBSTACK":[2,"v-"]},"fields":{},"shadow":false,"topLevel":false},"a(I":{"opcode":"operator_lt","next":null,"parent":"v,","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"v-":{"opcode":"procedures_call","next":"v.","parent":"v,","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"ab!",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"ab!":{"opcode":"operator_mod","next":null,"parent":"v-","inputs":{"NUM1":[3,"ab#",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab#":{"opcode":"operator_mathop","next":null,"parent":"ab!","inputs":{"NUM":[3,"a(J",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(J":{"opcode":"operator_divide","next":null,"parent":"ab#","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"v.":{"opcode":"data_setvariableto","next":"ib","parent":"v-","inputs":{"VALUE":[3,"a(K",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"a(K":{"opcode":"operator_subtract","next":null,"parent":"v.","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ib":{"opcode":"control_if","next":"ic","parent":"v.","inputs":{"CONDITION":[2,"ab%"],"SUBSTACK":[2,"ab("]},"fields":{},"shadow":false,"topLevel":false},"ab%":{"opcode":"operator_gt","next":null,"parent":"ib","inputs":{"OPERAND1":[3,"a(L",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(L":{"opcode":"operator_mod","next":null,"parent":"ab%","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"ab(":{"opcode":"data_replaceitemoflist","next":null,"parent":"ib","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a(M",[10,""]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"a(M":{"opcode":"operator_lt","next":null,"parent":"ab(","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ic":{"opcode":"control_if","next":"ab)","parent":"ib","inputs":{"CONDITION":[2,"a(N"],"SUBSTACK":[2,"a(O"]},"fields":{},"shadow":false,"topLevel":false},"a(N":{"opcode":"operator_lt","next":null,"parent":"ic","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a(O":{"opcode":"data_changevariableby","next":null,"parent":"ic","inputs":{"VALUE":[1,[4,"0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"ab)":{"opcode":"procedures_call","next":null,"parent":"ic","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ab*",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ab*":{"opcode":"operator_mod","next":null,"parent":"ab)","inputs":{"NUM1":[3,"ab+",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab+":{"opcode":"operator_mathop","next":null,"parent":"ab*","inputs":{"NUM":[3,"a(P",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(P":{"opcode":"operator_divide","next":null,"parent":"ab+","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"ia":{"opcode":"control_if_else","next":null,"parent":"h|","inputs":{"CONDITION":[2,"a(Q"],"SUBSTACK":[2,"v/"],"SUBSTACK2":[2,"ab,"]},"fields":{},"shadow":false,"topLevel":false},"a(Q":{"opcode":"operator_lt","next":null,"parent":"ia","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"v/":{"opcode":"control_if_else","next":null,"parent":"ia","inputs":{"CONDITION":[2,"a(R"],"SUBSTACK":[2,"v:"]},"fields":{},"shadow":false,"topLevel":false},"a(R":{"opcode":"operator_lt","next":null,"parent":"v/","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"v:":{"opcode":"procedures_call","next":"v;","parent":"v/","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"ab-",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"ab-":{"opcode":"operator_mod","next":null,"parent":"v:","inputs":{"NUM1":[3,"ab.",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab.":{"opcode":"operator_mathop","next":null,"parent":"ab-","inputs":{"NUM":[3,"a(S",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(S":{"opcode":"operator_divide","next":null,"parent":"ab.","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"v;":{"opcode":"data_setvariableto","next":"id","parent":"v:","inputs":{"VALUE":[3,"a(T",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"a(T":{"opcode":"operator_add","next":null,"parent":"v;","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"id":{"opcode":"control_if","next":"ab/","parent":"v;","inputs":{"CONDITION":[2,"a(U"],"SUBSTACK":[2,"a(V"]},"fields":{},"shadow":false,"topLevel":false},"a(U":{"opcode":"operator_gt","next":null,"parent":"id","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0xFFFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(V":{"opcode":"data_changevariableby","next":null,"parent":"id","inputs":{"VALUE":[1,[4,"-0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"ab/":{"opcode":"procedures_call","next":null,"parent":"id","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ab:",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ab:":{"opcode":"operator_mod","next":null,"parent":"ab/","inputs":{"NUM1":[3,"ab;",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab;":{"opcode":"operator_mathop","next":null,"parent":"ab:","inputs":{"NUM":[3,"a(W",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(W":{"opcode":"operator_divide","next":null,"parent":"ab;","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"ab,":{"opcode":"control_if_else","next":null,"parent":"ia","inputs":{"CONDITION":[2,"a(X"]},"fields":{},"shadow":false,"topLevel":false},"a(X":{"opcode":"operator_lt","next":null,"parent":"ab,","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"h}":{"opcode":"control_if_else","next":null,"parent":"aT","inputs":{"CONDITION":[2,"a(Y"],"SUBSTACK":[2,"ie"],"SUBSTACK2":[2,"if"]},"fields":{},"shadow":false,"topLevel":false},"a(Y":{"opcode":"operator_lt","next":null,"parent":"h}","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ie":{"opcode":"control_if_else","next":null,"parent":"h}","inputs":{"CONDITION":[2,"a(Z"],"SUBSTACK":[2,"ab="],"SUBSTACK2":[2,"ab?"]},"fields":{},"shadow":false,"topLevel":false},"a(Z":{"opcode":"operator_lt","next":null,"parent":"ie","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ab=":{"opcode":"control_if_else","next":null,"parent":"ie","inputs":{"CONDITION":[2,"a(0"]},"fields":{},"shadow":false,"topLevel":false},"a(0":{"opcode":"operator_lt","next":null,"parent":"ab=","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ab?":{"opcode":"control_if_else","next":null,"parent":"ie","inputs":{"CONDITION":[2,"a(1"]},"fields":{},"shadow":false,"topLevel":false},"a(1":{"opcode":"operator_lt","next":null,"parent":"ab?","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"if":{"opcode":"control_if_else","next":null,"parent":"h}","inputs":{"CONDITION":[2,"a(2"],"SUBSTACK":[2,"v="],"SUBSTACK2":[2,"ab@"]},"fields":{},"shadow":false,"topLevel":false},"a(2":{"opcode":"operator_lt","next":null,"parent":"if","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"v=":{"opcode":"control_if_else","next":null,"parent":"if","inputs":{"CONDITION":[2,"a(3"],"SUBSTACK2":[2,"ab["]},"fields":{},"shadow":false,"topLevel":false},"a(3":{"opcode":"operator_lt","next":null,"parent":"v=","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ab[":{"opcode":"procedures_call","next":null,"parent":"v=","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ab]",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ab]":{"opcode":"operator_mod","next":null,"parent":"ab[","inputs":{"NUM1":[3,"ab^",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab^":{"opcode":"operator_mathop","next":null,"parent":"ab]","inputs":{"NUM":[3,"a(4",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(4":{"opcode":"operator_divide","next":null,"parent":"ab^","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"ab@":{"opcode":"control_if_else","next":null,"parent":"if","inputs":{"CONDITION":[2,"a(5"]},"fields":{},"shadow":false,"topLevel":false},"a(5":{"opcode":"operator_lt","next":null,"parent":"ab@","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a(D":{"opcode":"data_changevariableby","next":null,"parent":"aT","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"a(u":{"opcode":"data_changevariableby","next":null,"parent":"!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"v(":{"opcode":"control_if_else","next":null,"parent":"h_","inputs":{"CONDITION":[2,"a(6"],"SUBSTACK":[2,"a(7"]},"fields":{},"shadow":false,"topLevel":false},"a(6":{"opcode":"operator_lt","next":null,"parent":"v(","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a(7":{"opcode":"data_changevariableby","next":null,"parent":"v(","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"h`":{"opcode":"control_if_else","next":null,"parent":"h]","inputs":{"CONDITION":[2,"a(8"],"SUBSTACK":[2,"v?"],"SUBSTACK2":[2,"ig"]},"fields":{},"shadow":false,"topLevel":false},"a(8":{"opcode":"operator_lt","next":null,"parent":"h`","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"v?":{"opcode":"control_if_else","next":null,"parent":"h`","inputs":{"CONDITION":[2,"a(9"],"SUBSTACK":[2,"a(!"]},"fields":{},"shadow":false,"topLevel":false},"a(9":{"opcode":"operator_lt","next":null,"parent":"v?","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a(!":{"opcode":"data_changevariableby","next":null,"parent":"v?","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"ig":{"opcode":"control_if_else","next":null,"parent":"h`","inputs":{"CONDITION":[2,"a(#"],"SUBSTACK":[2,"v@"],"SUBSTACK2":[2,"aU"]},"fields":{},"shadow":false,"topLevel":false},"a(#":{"opcode":"operator_lt","next":null,"parent":"ig","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"v@":{"opcode":"data_setvariableto","next":"ih","parent":"ig","inputs":{"VALUE":[3,"ab_",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"ab_":{"opcode":"operator_subtract","next":null,"parent":"v@","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"v[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v[":{"opcode":"operator_add","next":null,"parent":"ab_","inputs":{"NUM1":[3,"ab`",[4,0]],"NUM2":[3,"a(%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab`":{"opcode":"operator_multiply","next":null,"parent":"v[","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"ab{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab{":{"opcode":"operator_mod","next":null,"parent":"ab`","inputs":{"NUM1":[3,"ab|",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ab|":{"opcode":"operator_mathop","next":null,"parent":"ab{","inputs":{"NUM":[3,"a((",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a((":{"opcode":"operator_divide","next":null,"parent":"ab|","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a(%":{"opcode":"operator_mod","next":null,"parent":"v[","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ih":{"opcode":"control_if","next":"v]","parent":"v@","inputs":{"CONDITION":[2,"ab}"],"SUBSTACK":[2,"ab~"]},"fields":{},"shadow":false,"topLevel":false},"ab}":{"opcode":"operator_gt","next":null,"parent":"ih","inputs":{"OPERAND1":[3,"a()",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a()":{"opcode":"operator_mod","next":null,"parent":"ab}","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"ab~":{"opcode":"data_setvariableto","next":null,"parent":"ih","inputs":{"VALUE":[3,"a(*",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a(*":{"opcode":"operator_subtract","next":null,"parent":"ab~","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v]":{"opcode":"procedures_call","next":"aca","parent":"ih","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"acb",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"acb":{"opcode":"operator_mod","next":null,"parent":"v]","inputs":{"NUM1":[3,"acc",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acc":{"opcode":"operator_mathop","next":null,"parent":"acb","inputs":{"NUM":[3,"a(+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(+":{"opcode":"operator_divide","next":null,"parent":"acc","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"aca":{"opcode":"data_changevariableby","next":"ii","parent":"v]","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"ii":{"opcode":"control_if","next":"aV","parent":"aca","inputs":{"CONDITION":[2,"acd"],"SUBSTACK":[2,"ace"]},"fields":{},"shadow":false,"topLevel":false},"acd":{"opcode":"operator_gt","next":null,"parent":"ii","inputs":{"OPERAND1":[3,"a(,",[10,""]],"OPERAND2":[1,[10,"0x001FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(,":{"opcode":"operator_mod","next":null,"parent":"acd","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00400000"]]},"fields":{},"shadow":false,"topLevel":false},"ace":{"opcode":"procedures_call","next":null,"parent":"ii","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"acf",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"acf":{"opcode":"operator_mod","next":null,"parent":"ace","inputs":{"NUM1":[3,"acg",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acg":{"opcode":"operator_mathop","next":null,"parent":"acf","inputs":{"NUM":[3,"a(-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(-":{"opcode":"operator_divide","next":null,"parent":"acg","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"aV":{"opcode":"control_if_else","next":"a(.","parent":"ii","inputs":{"CONDITION":[2,"ach"],"SUBSTACK":[2,"aci"],"SUBSTACK2":[2,"v^"]},"fields":{},"shadow":false,"topLevel":false},"ach":{"opcode":"operator_gt","next":null,"parent":"aV","inputs":{"OPERAND1":[3,"a(/",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(/":{"opcode":"operator_mod","next":null,"parent":"ach","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"aci":{"opcode":"procedures_call","next":"acj","parent":"aV","inputs":{".5IabzOBB`r;A-[bJCH-":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","warp":"true"}},"acj":{"opcode":"procedures_call","next":null,"parent":"aci","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ack",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ack":{"opcode":"operator_mod","next":null,"parent":"acj","inputs":{"NUM1":[3,"acl",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acl":{"opcode":"operator_mathop","next":null,"parent":"ack","inputs":{"NUM":[3,"a(:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(:":{"opcode":"operator_divide","next":null,"parent":"acl","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"v^":{"opcode":"procedures_call","next":"acm","parent":"aV","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"acn",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"acn":{"opcode":"operator_mod","next":null,"parent":"v^","inputs":{"NUM1":[3,"aco",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aco":{"opcode":"operator_mathop","next":null,"parent":"acn","inputs":{"NUM":[3,"a(;",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(;":{"opcode":"operator_divide","next":null,"parent":"aco","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"acm":{"opcode":"data_setvariableto","next":"v_","parent":"v^","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"v_":{"opcode":"procedures_call","next":"v`","parent":"acm","inputs":{"D.*5WhEjoNWAd$2TCWYY":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]],"]VDD,IQ9ku]1-ToXGR.#":[3,"acp",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","warp":"true"}},"acp":{"opcode":"operator_mod","next":null,"parent":"v_","inputs":{"NUM1":[3,"acq",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"acq":{"opcode":"operator_mathop","next":null,"parent":"acp","inputs":{"NUM":[3,"a(=",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(=":{"opcode":"operator_divide","next":null,"parent":"acq","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"v`":{"opcode":"procedures_call","next":null,"parent":"v_","inputs":{"D.*5WhEjoNWAd$2TCWYY":[3,"a(?",[10,""]],"]VDD,IQ9ku]1-ToXGR.#":[3,"a(@",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","warp":"true"}},"a(?":{"opcode":"operator_add","next":null,"parent":"v`","inputs":{"NUM1":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a(@":{"opcode":"operator_mod","next":null,"parent":"v`","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a(.":{"opcode":"data_changevariableby","next":null,"parent":"aV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"aU":{"opcode":"control_if_else","next":"ij","parent":"ig","inputs":{"CONDITION":[2,"acr"],"SUBSTACK":[2,"v{"],"SUBSTACK2":[2,"acs"]},"fields":{},"shadow":false,"topLevel":false},"acr":{"opcode":"operator_gt","next":null,"parent":"aU","inputs":{"OPERAND1":[3,"a([",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a([":{"opcode":"operator_mod","next":null,"parent":"acr","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"v{":{"opcode":"procedures_call","next":"v|","parent":"aU","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"a(]",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"a(]":{"opcode":"operator_mod","next":null,"parent":"v{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"v|":{"opcode":"procedures_call","next":"a(^","parent":"v{","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"act",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"act":{"opcode":"operator_mod","next":null,"parent":"v|","inputs":{"NUM1":[3,"acu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"acu":{"opcode":"operator_mathop","next":null,"parent":"act","inputs":{"NUM":[3,"a(_",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(_":{"opcode":"operator_divide","next":null,"parent":"acu","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a(^":{"opcode":"data_setvariableto","next":null,"parent":"v|","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"acs":{"opcode":"data_setvariableto","next":null,"parent":"aU","inputs":{"VALUE":[3,"a(`",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a(`":{"opcode":"operator_mod","next":null,"parent":"acs","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"ij":{"opcode":"control_if","next":"ik","parent":"aU","inputs":{"CONDITION":[2,"acv"],"SUBSTACK":[2,"acw"]},"fields":{},"shadow":false,"topLevel":false},"acv":{"opcode":"operator_gt","next":null,"parent":"ij","inputs":{"OPERAND1":[3,"a({",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a({":{"opcode":"operator_mod","next":null,"parent":"acv","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"acw":{"opcode":"data_setvariableto","next":null,"parent":"ij","inputs":{"VALUE":[3,"a(|",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"a(|":{"opcode":"operator_subtract","next":null,"parent":"acw","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ik":{"opcode":"control_if_else","next":null,"parent":"ij","inputs":{"CONDITION":[2,"acx"],"SUBSTACK":[2,"v}"],"SUBSTACK2":[2,"v~"]},"fields":{},"shadow":false,"topLevel":false},"acx":{"opcode":"operator_gt","next":null,"parent":"ik","inputs":{"OPERAND1":[3,"a(}",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a(}":{"opcode":"operator_mod","next":null,"parent":"acx","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"v}":{"opcode":"procedures_call","next":"wa","parent":"ik","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"acy",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"acy":{"opcode":"operator_mod","next":null,"parent":"v}","inputs":{"NUM1":[3,"acz",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acz":{"opcode":"operator_mathop","next":null,"parent":"acy","inputs":{"NUM":[3,"a(~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a(~":{"opcode":"operator_divide","next":null,"parent":"acz","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"wa":{"opcode":"procedures_call","next":"acA","parent":"v}","inputs":{".5IabzOBB`r;A-[bJCH-":[3,"a)a",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","warp":"true"}},"a)a":{"opcode":"operator_add","next":null,"parent":"wa","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acA":{"opcode":"procedures_call","next":null,"parent":"wa","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"acB",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"acB":{"opcode":"operator_mod","next":null,"parent":"acA","inputs":{"NUM1":[3,"acC",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acC":{"opcode":"operator_mathop","next":null,"parent":"acB","inputs":{"NUM":[3,"a)b",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)b":{"opcode":"operator_divide","next":null,"parent":"acC","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"v~":{"opcode":"procedures_call","next":"acD","parent":"ik","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"acE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"acE":{"opcode":"operator_mod","next":null,"parent":"v~","inputs":{"NUM1":[3,"acF",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acF":{"opcode":"operator_mathop","next":null,"parent":"acE","inputs":{"NUM":[3,"a)c",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)c":{"opcode":"operator_divide","next":null,"parent":"acF","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"acD":{"opcode":"data_setvariableto","next":"wb","parent":"v~","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"wb":{"opcode":"procedures_call","next":"acG","parent":"acD","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"acH",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"acH":{"opcode":"operator_mod","next":null,"parent":"wb","inputs":{"NUM1":[3,"acI",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"acI":{"opcode":"operator_mathop","next":null,"parent":"acH","inputs":{"NUM":[3,"a)d",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)d":{"opcode":"operator_divide","next":null,"parent":"acI","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"acG":{"opcode":"procedures_call","next":null,"parent":"wb","inputs":{"[:qunpS-8M/60cedXKZc":[3,"a)e",[10,""]],"penC[|54{B|rziE}7Inh":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_memory %s %s","argumentids":"[\"[:qunpS-8M/60cedXKZc\",\"penC[|54{B|rziE}7Inh\"]","warp":"true"}},"a)e":{"opcode":"operator_add","next":null,"parent":"acG","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"h^":{"opcode":"control_if_else","next":null,"parent":"h[","inputs":{"CONDITION":[2,"a)f"],"SUBSTACK":[2,"il"],"SUBSTACK2":[2,"im"]},"fields":{},"shadow":false,"topLevel":false},"a)f":{"opcode":"operator_lt","next":null,"parent":"h^","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"il":{"opcode":"control_if_else","next":null,"parent":"h^","inputs":{"CONDITION":[2,"a)g"],"SUBSTACK":[2,"acJ"],"SUBSTACK2":[2,"wc"]},"fields":{},"shadow":false,"topLevel":false},"a)g":{"opcode":"operator_lt","next":null,"parent":"il","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"acJ":{"opcode":"control_if_else","next":null,"parent":"il","inputs":{"CONDITION":[2,"a)h"]},"fields":{},"shadow":false,"topLevel":false},"a)h":{"opcode":"operator_lt","next":null,"parent":"acJ","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"wc":{"opcode":"control_if_else","next":null,"parent":"il","inputs":{"CONDITION":[2,"a)i"],"SUBSTACK":[2,"in"]},"fields":{},"shadow":false,"topLevel":false},"a)i":{"opcode":"operator_lt","next":null,"parent":"wc","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"in":{"opcode":"control_if","next":"aW","parent":"wc","inputs":{"CONDITION":[2,"acK"],"SUBSTACK":[2,"acL"]},"fields":{},"shadow":false,"topLevel":false},"acK":{"opcode":"operator_gt","next":null,"parent":"in","inputs":{"OPERAND1":[3,"a)j",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a)j":{"opcode":"operator_mod","next":null,"parent":"acK","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"acL":{"opcode":"procedures_call","next":null,"parent":"in","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[1,[10,"14"]],"!ho_MT93$iY`6pTQQERT":[3,"a)k",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"a)k":{"opcode":"operator_subtract","next":null,"parent":"acL","inputs":{"NUM1":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aW":{"opcode":"control_if_else","next":"a)l","parent":"in","inputs":{"CONDITION":[2,"acM"],"SUBSTACK":[2,"acN"],"SUBSTACK2":[2,"acO"]},"fields":{},"shadow":false,"topLevel":false},"acM":{"opcode":"operator_gt","next":null,"parent":"aW","inputs":{"OPERAND1":[3,"a)m",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a)m":{"opcode":"operator_mod","next":null,"parent":"acM","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"acN":{"opcode":"data_changevariableby","next":null,"parent":"aW","inputs":{"VALUE":[3,"acP",[4,0]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"acP":{"opcode":"operator_multiply","next":null,"parent":"acN","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[3,"acQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acQ":{"opcode":"operator_subtract","next":null,"parent":"acP","inputs":{"NUM1":[1,[4,"0x00FFFFFF"]],"NUM2":[3,"a)n",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a)n":{"opcode":"operator_mod","next":null,"parent":"acQ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"acO":{"opcode":"data_changevariableby","next":null,"parent":"aW","inputs":{"VALUE":[3,"a)o",[4,0]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"a)o":{"opcode":"operator_mod","next":null,"parent":"acO","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)l":{"opcode":"data_changevariableby","next":null,"parent":"aW","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"im":{"opcode":"control_if_else","next":null,"parent":"h^","inputs":{"CONDITION":[2,"a)p"],"SUBSTACK":[2,"acR"],"SUBSTACK2":[2,"io"]},"fields":{},"shadow":false,"topLevel":false},"a)p":{"opcode":"operator_lt","next":null,"parent":"im","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"acR":{"opcode":"control_if_else","next":null,"parent":"im","inputs":{"CONDITION":[2,"a)q"]},"fields":{},"shadow":false,"topLevel":false},"a)q":{"opcode":"operator_lt","next":null,"parent":"acR","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"io":{"opcode":"control_if_else","next":null,"parent":"im","inputs":{"CONDITION":[2,"a)r"],"SUBSTACK":[2,"wd"],"SUBSTACK2":[2,"a)s"]},"fields":{},"shadow":false,"topLevel":false},"a)r":{"opcode":"operator_lt","next":null,"parent":"io","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"wd":{"opcode":"data_setvariableto","next":"ip","parent":"io","inputs":{"VALUE":[3,"a)t",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"a)t":{"opcode":"operator_mod","next":null,"parent":"wd","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ip":{"opcode":"control_if_else","next":null,"parent":"wd","inputs":{"CONDITION":[2,"a)u"],"SUBSTACK":[2,"iq"],"SUBSTACK2":[2,"ir"]},"fields":{},"shadow":false,"topLevel":false},"a)u":{"opcode":"operator_lt","next":null,"parent":"ip","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"iq":{"opcode":"control_if_else","next":null,"parent":"ip","inputs":{"CONDITION":[2,"a)v"],"SUBSTACK":[2,"is"],"SUBSTACK2":[2,"it"]},"fields":{},"shadow":false,"topLevel":false},"a)v":{"opcode":"operator_lt","next":null,"parent":"iq","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"is":{"opcode":"control_if_else","next":null,"parent":"iq","inputs":{"CONDITION":[2,"a)w"],"SUBSTACK":[2,"iu"],"SUBSTACK2":[2,"iv"]},"fields":{},"shadow":false,"topLevel":false},"a)w":{"opcode":"operator_lt","next":null,"parent":"is","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"iu":{"opcode":"control_if_else","next":null,"parent":"is","inputs":{"CONDITION":[2,"a)x"],"SUBSTACK":[2,"we"],"SUBSTACK2":[2,"wf"]},"fields":{},"shadow":false,"topLevel":false},"a)x":{"opcode":"operator_lt","next":null,"parent":"iu","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"we":{"opcode":"control_if_else","next":null,"parent":"iu","inputs":{"CONDITION":[2,"a)y"],"SUBSTACK":[2,"a)z"]},"fields":{},"shadow":false,"topLevel":false},"a)y":{"opcode":"operator_lt","next":null,"parent":"we","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a)z":{"opcode":"data_setvariableto","next":null,"parent":"we","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"wf":{"opcode":"control_if_else","next":null,"parent":"iu","inputs":{"CONDITION":[2,"a)A"],"SUBSTACK2":[2,"acS"]},"fields":{},"shadow":false,"topLevel":false},"a)A":{"opcode":"operator_lt","next":null,"parent":"wf","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"acS":{"opcode":"data_changevariableby","next":null,"parent":"wf","inputs":{"VALUE":[3,"acT",[4,0]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"acT":{"opcode":"operator_multiply","next":null,"parent":"acS","inputs":{"NUM1":[1,[4,"93"]],"NUM2":[3,"acU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acU":{"opcode":"operator_divide","next":null,"parent":"acT","inputs":{"NUM1":[3,"a)B",[4,0]],"NUM2":[1,[4,"4189"]]},"fields":{},"shadow":false,"topLevel":false},"a)B":{"opcode":"data_itemoflist","next":null,"parent":"acU","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"iv":{"opcode":"control_if_else","next":null,"parent":"is","inputs":{"CONDITION":[2,"a)C"],"SUBSTACK":[2,"acV"],"SUBSTACK2":[2,"acW"]},"fields":{},"shadow":false,"topLevel":false},"a)C":{"opcode":"operator_lt","next":null,"parent":"iv","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"acV":{"opcode":"control_if_else","next":null,"parent":"iv","inputs":{"CONDITION":[2,"a)D"]},"fields":{},"shadow":false,"topLevel":false},"a)D":{"opcode":"operator_lt","next":null,"parent":"acV","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"acW":{"opcode":"control_if_else","next":null,"parent":"iv","inputs":{"CONDITION":[2,"a)E"]},"fields":{},"shadow":false,"topLevel":false},"a)E":{"opcode":"operator_lt","next":null,"parent":"acW","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"it":{"opcode":"control_if_else","next":null,"parent":"iq","inputs":{"CONDITION":[2,"a)F"],"SUBSTACK":[2,"iw"],"SUBSTACK2":[2,"ix"]},"fields":{},"shadow":false,"topLevel":false},"a)F":{"opcode":"operator_lt","next":null,"parent":"it","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"iw":{"opcode":"control_if_else","next":null,"parent":"it","inputs":{"CONDITION":[2,"a)G"],"SUBSTACK":[2,"wg"],"SUBSTACK2":[2,"acX"]},"fields":{},"shadow":false,"topLevel":false},"a)G":{"opcode":"operator_lt","next":null,"parent":"iw","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"wg":{"opcode":"control_if_else","next":null,"parent":"iw","inputs":{"CONDITION":[2,"a)H"],"SUBSTACK":[2,"aX"]},"fields":{},"shadow":false,"topLevel":false},"a)H":{"opcode":"operator_lt","next":null,"parent":"wg","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aX":{"opcode":"control_if_else","next":"aY","parent":"wg","inputs":{"CONDITION":[2,"acY"],"SUBSTACK":[2,"acZ"],"SUBSTACK2":[2,"ac0"]},"fields":{},"shadow":false,"topLevel":false},"acY":{"opcode":"operator_gt","next":null,"parent":"aX","inputs":{"OPERAND1":[3,"a)I",[10,""]],"OPERAND2":[1,[10,"0x7FFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a)I":{"opcode":"data_itemoflist","next":null,"parent":"acY","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"acZ":{"opcode":"data_setvariableto","next":null,"parent":"aX","inputs":{"VALUE":[3,"ac1",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"ac1":{"opcode":"operator_subtract","next":null,"parent":"acZ","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"ac2",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac2":{"opcode":"operator_mod","next":null,"parent":"ac1","inputs":{"NUM1":[3,"a)J",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)J":{"opcode":"data_itemoflist","next":null,"parent":"ac2","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac0":{"opcode":"data_setvariableto","next":null,"parent":"aX","inputs":{"VALUE":[3,"ac3",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"ac3":{"opcode":"operator_mod","next":null,"parent":"ac0","inputs":{"NUM1":[3,"a)K",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)K":{"opcode":"data_itemoflist","next":null,"parent":"ac3","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"aY":{"opcode":"control_if_else","next":"aZ","parent":"aX","inputs":{"CONDITION":[2,"ac4"],"SUBSTACK":[2,"ac5"],"SUBSTACK2":[2,"ac6"]},"fields":{},"shadow":false,"topLevel":false},"ac4":{"opcode":"operator_gt","next":null,"parent":"aY","inputs":{"OPERAND1":[3,"a)L",[10,""]],"OPERAND2":[1,[10,"0x7FFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"a)L":{"opcode":"data_itemoflist","next":null,"parent":"ac4","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac5":{"opcode":"data_setvariableto","next":null,"parent":"aY","inputs":{"VALUE":[3,"ac7",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"ac7":{"opcode":"operator_subtract","next":null,"parent":"ac5","inputs":{"NUM1":[1,[4,"0x7FFFFFFF"]],"NUM2":[3,"ac8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac8":{"opcode":"operator_mod","next":null,"parent":"ac7","inputs":{"NUM1":[3,"a)M",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)M":{"opcode":"data_itemoflist","next":null,"parent":"ac8","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac6":{"opcode":"data_setvariableto","next":null,"parent":"aY","inputs":{"VALUE":[3,"ac9",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"ac9":{"opcode":"operator_mod","next":null,"parent":"ac6","inputs":{"NUM1":[3,"a)N",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)N":{"opcode":"data_itemoflist","next":null,"parent":"ac9","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"aZ":{"opcode":"control_if_else","next":"ac!","parent":"aY","inputs":{"CONDITION":[2,"ac#"],"SUBSTACK":[2,"wh"],"SUBSTACK2":[2,"wi"]},"fields":{},"shadow":false,"topLevel":false},"ac#":{"opcode":"operator_lt","next":null,"parent":"aZ","inputs":{"OPERAND1":[3,"a)O",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a)O":{"opcode":"operator_divide","next":null,"parent":"ac#","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wh":{"opcode":"data_replaceitemoflist","next":"ac%","parent":"aZ","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"ac(",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac(":{"opcode":"operator_add","next":null,"parent":"wh","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"ac)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac)":{"opcode":"operator_mathop","next":null,"parent":"ac(","inputs":{"NUM":[3,"a)P",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)P":{"opcode":"operator_divide","next":null,"parent":"ac)","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac%":{"opcode":"data_replaceitemoflist","next":null,"parent":"wh","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"ac*",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac*":{"opcode":"operator_add","next":null,"parent":"ac%","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"a)Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a)Q":{"opcode":"operator_mod","next":null,"parent":"ac*","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wi":{"opcode":"data_replaceitemoflist","next":"ac+","parent":"aZ","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"ac,",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac,":{"opcode":"operator_mathop","next":null,"parent":"wi","inputs":{"NUM":[3,"a)R",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)R":{"opcode":"operator_divide","next":null,"parent":"ac,","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac+":{"opcode":"data_replaceitemoflist","next":null,"parent":"wi","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"a)S",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"a)S":{"opcode":"operator_mod","next":null,"parent":"ac+","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac!":{"opcode":"data_replaceitemoflist","next":null,"parent":"aZ","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"ac-",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac-":{"opcode":"operator_mathop","next":null,"parent":"ac!","inputs":{"NUM":[3,"ac.",[4,0]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"ac.":{"opcode":"operator_mathop","next":null,"parent":"ac-","inputs":{"NUM":[3,"a)T",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)T":{"opcode":"operator_divide","next":null,"parent":"ac.","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acX":{"opcode":"control_if_else","next":null,"parent":"iw","inputs":{"CONDITION":[2,"a)U"]},"fields":{},"shadow":false,"topLevel":false},"a)U":{"opcode":"operator_lt","next":null,"parent":"acX","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"ix":{"opcode":"control_if_else","next":null,"parent":"it","inputs":{"CONDITION":[2,"a)V"],"SUBSTACK":[2,"ac/"],"SUBSTACK2":[2,"ac:"]},"fields":{},"shadow":false,"topLevel":false},"a)V":{"opcode":"operator_lt","next":null,"parent":"ix","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"ac/":{"opcode":"control_if_else","next":null,"parent":"ix","inputs":{"CONDITION":[2,"a)W"]},"fields":{},"shadow":false,"topLevel":false},"a)W":{"opcode":"operator_lt","next":null,"parent":"ac/","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ac:":{"opcode":"control_if_else","next":null,"parent":"ix","inputs":{"CONDITION":[2,"a)X"]},"fields":{},"shadow":false,"topLevel":false},"a)X":{"opcode":"operator_lt","next":null,"parent":"ac:","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"ir":{"opcode":"control_if_else","next":null,"parent":"ip","inputs":{"CONDITION":[2,"a)Y"],"SUBSTACK":[2,"iy"],"SUBSTACK2":[2,"iz"]},"fields":{},"shadow":false,"topLevel":false},"a)Y":{"opcode":"operator_lt","next":null,"parent":"ir","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"iy":{"opcode":"control_if_else","next":null,"parent":"ir","inputs":{"CONDITION":[2,"a)Z"],"SUBSTACK":[2,"iA"],"SUBSTACK2":[2,"mt"]},"fields":{},"shadow":false,"topLevel":false},"a)Z":{"opcode":"operator_lt","next":null,"parent":"iy","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"iA":{"opcode":"control_if_else","next":null,"parent":"iy","inputs":{"CONDITION":[2,"a)0"],"SUBSTACK":[2,"ac;"],"SUBSTACK2":[2,"ac="]},"fields":{},"shadow":false,"topLevel":false},"a)0":{"opcode":"operator_lt","next":null,"parent":"iA","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"ac;":{"opcode":"control_if_else","next":null,"parent":"iA","inputs":{"CONDITION":[2,"a)1"]},"fields":{},"shadow":false,"topLevel":false},"a)1":{"opcode":"operator_lt","next":null,"parent":"ac;","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},"ac=":{"opcode":"control_if_else","next":null,"parent":"iA","inputs":{"CONDITION":[2,"a)2"]},"fields":{},"shadow":false,"topLevel":false},"a)2":{"opcode":"operator_lt","next":null,"parent":"ac=","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"mt":{"opcode":"control_if_else","next":null,"parent":"iy","inputs":{"CONDITION":[2,"a)3"],"SUBSTACK":[2,"ac?"],"SUBSTACK2":[2,"ac@"]},"fields":{},"shadow":false,"topLevel":false},"a)3":{"opcode":"operator_lt","next":null,"parent":"mt","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"ac?":{"opcode":"control_if_else","next":null,"parent":"mt","inputs":{"CONDITION":[2,"a)4"]},"fields":{},"shadow":false,"topLevel":false},"a)4":{"opcode":"operator_lt","next":null,"parent":"ac?","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"21"]]},"fields":{},"shadow":false,"topLevel":false},"ac@":{"opcode":"control_if_else","next":null,"parent":"mt","inputs":{"CONDITION":[2,"a)5"]},"fields":{},"shadow":false,"topLevel":false},"a)5":{"opcode":"operator_lt","next":null,"parent":"ac@","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"iz":{"opcode":"control_if_else","next":null,"parent":"ir","inputs":{"CONDITION":[2,"a)6"],"SUBSTACK":[2,"iB"],"SUBSTACK2":[2,"iC"]},"fields":{},"shadow":false,"topLevel":false},"a)6":{"opcode":"operator_lt","next":null,"parent":"iz","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"28"]]},"fields":{},"shadow":false,"topLevel":false},"iB":{"opcode":"control_if_else","next":null,"parent":"iz","inputs":{"CONDITION":[2,"a)7"],"SUBSTACK":[2,"ac["],"SUBSTACK2":[2,"ac]"]},"fields":{},"shadow":false,"topLevel":false},"a)7":{"opcode":"operator_lt","next":null,"parent":"iB","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"ac[":{"opcode":"control_if_else","next":null,"parent":"iB","inputs":{"CONDITION":[2,"a)8"]},"fields":{},"shadow":false,"topLevel":false},"a)8":{"opcode":"operator_lt","next":null,"parent":"ac[","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"ac]":{"opcode":"control_if_else","next":null,"parent":"iB","inputs":{"CONDITION":[2,"a)9"]},"fields":{},"shadow":false,"topLevel":false},"a)9":{"opcode":"operator_lt","next":null,"parent":"ac]","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"27"]]},"fields":{},"shadow":false,"topLevel":false},"iC":{"opcode":"control_if_else","next":null,"parent":"iz","inputs":{"CONDITION":[2,"a)!"],"SUBSTACK":[2,"ac^"],"SUBSTACK2":[2,"ac_"]},"fields":{},"shadow":false,"topLevel":false},"a)!":{"opcode":"operator_lt","next":null,"parent":"iC","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"30"]]},"fields":{},"shadow":false,"topLevel":false},"ac^":{"opcode":"control_if_else","next":null,"parent":"iC","inputs":{"CONDITION":[2,"a)#"]},"fields":{},"shadow":false,"topLevel":false},"a)#":{"opcode":"operator_lt","next":null,"parent":"ac^","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"29"]]},"fields":{},"shadow":false,"topLevel":false},"ac_":{"opcode":"control_if_else","next":null,"parent":"iC","inputs":{"CONDITION":[2,"a)%"]},"fields":{},"shadow":false,"topLevel":false},"a)%":{"opcode":"operator_lt","next":null,"parent":"ac_","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"a)s":{"opcode":"looks_say","next":null,"parent":"io","inputs":{"MESSAGE":[1,[10,"[ARM9] Illegal Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"uU":{"opcode":"control_repeat","next":"ac`","parent":"`:","inputs":{"TIMES":[1,[6,"32768"]],"SUBSTACK":[2,"a)("]},"fields":{},"shadow":false,"topLevel":false},"a)(":{"opcode":"data_addtolist","next":null,"parent":"uU","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"ac`":{"opcode":"data_deletealloflist","next":"ap","parent":"uU","inputs":{},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ap":{"opcode":"control_repeat","next":"ac{","parent":"ac`","inputs":{"TIMES":[1,[6,"167936"]],"SUBSTACK":[2,"a))"]},"fields":{},"shadow":false,"topLevel":false,"comment":"]("},"a))":{"opcode":"data_addtolist","next":null,"parent":"ap","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ac{":{"opcode":"data_deletealloflist","next":"wj","parent":"ap","inputs":{},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"wj":{"opcode":"control_repeat","next":"ac|","parent":"ac{","inputs":{"TIMES":[1,[6,"512"]],"SUBSTACK":[2,"a)*"]},"fields":{},"shadow":false,"topLevel":false},"a)*":{"opcode":"data_addtolist","next":null,"parent":"wj","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"ac|":{"opcode":"data_deletealloflist","next":"wk","parent":"wj","inputs":{},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"wk":{"opcode":"control_repeat","next":"ac}","parent":"ac|","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"a)+"]},"fields":{},"shadow":false,"topLevel":false},"a)+":{"opcode":"data_addtolist","next":null,"parent":"wk","inputs":{"ITEM":[1,[10,"false"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"ac}":{"opcode":"data_deletealloflist","next":"wl","parent":"wk","inputs":{},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"wl":{"opcode":"control_repeat","next":"ac~","parent":"ac}","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a),"]},"fields":{},"shadow":false,"topLevel":false},"a),":{"opcode":"data_addtolist","next":null,"parent":"wl","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ac~":{"opcode":"data_deletealloflist","next":"ada","parent":"wl","inputs":{},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"ada":{"opcode":"control_repeat","next":null,"parent":"ac~","inputs":{"TIMES":[1,[6,"98304"]],"SUBSTACK":[2,"a)-"]},"fields":{},"shadow":false,"topLevel":false},"a)-":{"opcode":"data_addtolist","next":null,"parent":"ada","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"u}":{"opcode":"data_setvariableto","next":"wm","parent":"u|","inputs":{"VALUE":[3,"a).",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"a).":{"opcode":"operator_mod","next":null,"parent":"u}","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wm":{"opcode":"procedures_call","next":"adb","parent":"u}","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"adc",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"adc":{"opcode":"operator_add","next":null,"parent":"wm","inputs":{"NUM1":[3,"a)/",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a)/":{"opcode":"argument_reporter_string_number","next":null,"parent":"adc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adb":{"opcode":"data_setvariableto","next":null,"parent":"wm","inputs":{"VALUE":[3,"wn",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"wn":{"opcode":"operator_add","next":null,"parent":"adb","inputs":{"NUM1":[3,"add",[4,0]],"NUM2":[3,"ade",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"add":{"opcode":"operator_multiply","next":null,"parent":"wn","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"a):",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a):":{"opcode":"operator_divide","next":null,"parent":"add","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ade":{"opcode":"operator_mathop","next":null,"parent":"wn","inputs":{"NUM":[3,"a);",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a);":{"opcode":"operator_divide","next":null,"parent":"ade","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ve":{"opcode":"data_replaceitemoflist","next":null,"parent":"vd","inputs":{"INDEX":[3,"adf",[7,0]],"ITEM":[3,"a)=",[10,""]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"adf":{"opcode":"operator_add","next":null,"parent":"ve","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adg":{"opcode":"operator_mathop","next":null,"parent":"adf","inputs":{"NUM":[3,"adh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adh":{"opcode":"operator_divide","next":null,"parent":"adg","inputs":{"NUM1":[3,"adi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adi":{"opcode":"operator_subtract","next":null,"parent":"adh","inputs":{"NUM1":[3,"a)?",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)?":{"opcode":"argument_reporter_string_number","next":null,"parent":"adi","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a)=":{"opcode":"argument_reporter_string_number","next":null,"parent":"ve","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vk":{"opcode":"data_replaceitemoflist","next":null,"parent":"hQ","inputs":{"INDEX":[3,"adj",[7,0]],"ITEM":[3,"a)@",[10,""]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"adj":{"opcode":"operator_add","next":null,"parent":"vk","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adk":{"opcode":"operator_mathop","next":null,"parent":"adj","inputs":{"NUM":[3,"adl",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adl":{"opcode":"operator_divide","next":null,"parent":"adk","inputs":{"NUM1":[3,"adm",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adm":{"opcode":"operator_subtract","next":null,"parent":"adl","inputs":{"NUM1":[3,"a)[",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"a)[":{"opcode":"argument_reporter_string_number","next":null,"parent":"adm","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"a)@":{"opcode":"argument_reporter_string_number","next":null,"parent":"vk","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"vu":{"opcode":"control_if","next":null,"parent":"vt","inputs":{"CONDITION":[2,"adn"],"SUBSTACK":[2,"wo"]},"fields":{},"shadow":false,"topLevel":false},"adn":{"opcode":"operator_gt","next":null,"parent":"vu","inputs":{"OPERAND1":[3,"ado",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ado":{"opcode":"operator_mod","next":null,"parent":"adn","inputs":{"NUM1":[3,"a)]",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a)]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ado","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"wo":{"opcode":"data_setvariableto","next":"wp","parent":"vu","inputs":{"VALUE":[3,"adp",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"adp":{"opcode":"operator_round","next":null,"parent":"wo","inputs":{"NUM":[3,"adq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adq":{"opcode":"operator_mathop","next":null,"parent":"adp","inputs":{"NUM":[3,"adr",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"adr":{"opcode":"operator_multiply","next":null,"parent":"adq","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"ads",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ads":{"opcode":"operator_subtract","next":null,"parent":"adr","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"adt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adt":{"opcode":"operator_mod","next":null,"parent":"ads","inputs":{"NUM1":[3,"a)^",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a)^":{"opcode":"argument_reporter_string_number","next":null,"parent":"adt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"wp":{"opcode":"data_setvariableto","next":"wq","parent":"wo","inputs":{"VALUE":[3,"a)_",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"a)_":{"opcode":"operator_mod","next":null,"parent":"wp","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wq":{"opcode":"procedures_call","next":"adu","parent":"wp","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"adv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"adv":{"opcode":"operator_add","next":null,"parent":"wq","inputs":{"NUM1":[3,"a)`",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a)`":{"opcode":"argument_reporter_string_number","next":null,"parent":"adv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adu":{"opcode":"data_setvariableto","next":null,"parent":"wq","inputs":{"VALUE":[3,"wr",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"wr":{"opcode":"operator_add","next":null,"parent":"adu","inputs":{"NUM1":[3,"adw",[4,0]],"NUM2":[3,"adx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adw":{"opcode":"operator_multiply","next":null,"parent":"wr","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"a){",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a){":{"opcode":"operator_divide","next":null,"parent":"adw","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adx":{"opcode":"operator_mathop","next":null,"parent":"wr","inputs":{"NUM":[3,"a)|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a)|":{"opcode":"operator_divide","next":null,"parent":"adx","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vx":{"opcode":"data_setvariableto","next":"ws","parent":"hX","inputs":{"VALUE":[3,"ady",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"ady":{"opcode":"operator_round","next":null,"parent":"vx","inputs":{"NUM":[3,"adz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adz":{"opcode":"operator_mathop","next":null,"parent":"ady","inputs":{"NUM":[3,"adA",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"adA":{"opcode":"operator_multiply","next":null,"parent":"adz","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"adB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adB":{"opcode":"operator_mod","next":null,"parent":"adA","inputs":{"NUM1":[3,"a)}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a)}":{"opcode":"argument_reporter_string_number","next":null,"parent":"adB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ws":{"opcode":"data_setvariableto","next":"wt","parent":"vx","inputs":{"VALUE":[3,"adC",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"adC":{"opcode":"operator_round","next":null,"parent":"ws","inputs":{"NUM":[3,"adD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adD":{"opcode":"operator_mathop","next":null,"parent":"adC","inputs":{"NUM":[3,"adE",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"adE":{"opcode":"operator_multiply","next":null,"parent":"adD","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"adF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adF":{"opcode":"operator_subtract","next":null,"parent":"adE","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"adG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adG":{"opcode":"operator_mod","next":null,"parent":"adF","inputs":{"NUM1":[3,"adH",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adH":{"opcode":"operator_subtract","next":null,"parent":"adG","inputs":{"NUM1":[3,"a)~",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a)~":{"opcode":"argument_reporter_string_number","next":null,"parent":"adH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"wt":{"opcode":"procedures_call","next":"iD","parent":"ws","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"a*a",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"a*a":{"opcode":"argument_reporter_string_number","next":null,"parent":"wt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iD":{"opcode":"procedures_call","next":"wu","parent":"wt","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"a*b",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"wv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"a*b":{"opcode":"argument_reporter_string_number","next":null,"parent":"iD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"wv":{"opcode":"operator_add","next":null,"parent":"iD","inputs":{"NUM1":[3,"adI",[4,0]],"NUM2":[3,"adJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adI":{"opcode":"operator_multiply","next":null,"parent":"wv","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"adK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adK":{"opcode":"operator_mathop","next":null,"parent":"adI","inputs":{"NUM":[3,"a*c",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a*c":{"opcode":"operator_divide","next":null,"parent":"adK","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adJ":{"opcode":"operator_mathop","next":null,"parent":"wv","inputs":{"NUM":[3,"adL",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adL":{"opcode":"operator_divide","next":null,"parent":"adJ","inputs":{"NUM1":[3,"a*d",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*d":{"opcode":"argument_reporter_string_number","next":null,"parent":"adL","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"wu":{"opcode":"procedures_call","next":"ww","parent":"iD","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"adM",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"adM":{"opcode":"operator_add","next":null,"parent":"wu","inputs":{"NUM1":[3,"a*e",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a*e":{"opcode":"argument_reporter_string_number","next":null,"parent":"adM","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ww":{"opcode":"procedures_call","next":null,"parent":"wu","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"adN",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"wx",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"adN":{"opcode":"operator_add","next":null,"parent":"ww","inputs":{"NUM1":[3,"a*f",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a*f":{"opcode":"argument_reporter_string_number","next":null,"parent":"adN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"wx":{"opcode":"operator_add","next":null,"parent":"ww","inputs":{"NUM1":[3,"a*g",[4,0]],"NUM2":[3,"adO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*g":{"opcode":"operator_mod","next":null,"parent":"wx","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adO":{"opcode":"operator_multiply","next":null,"parent":"wx","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"adP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adP":{"opcode":"operator_mod","next":null,"parent":"adO","inputs":{"NUM1":[3,"a*h",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*h":{"opcode":"argument_reporter_string_number","next":null,"parent":"adP","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false}},"comments":{"]%":{"blockId":"gA","x":1175.148148148148,"y":1568.2962962962963,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"ab":{"blockId":"gy","x":2209.0666666666666,"y":350.2,"width":179.25927734375,"height":154.0740966796875,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"buR":{"blockId":"buS","x":1147,"y":1472,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"ac":{"blockId":"9","x":2213,"y":1706.5555555555554,"width":197.9423828125,"height":130.04116821289062,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"]!":{"blockId":"gx","x":-210,"y":397,"width":200,"height":200,"minimized":false,"text":"This is so the emulator isn't horribly slow (like seriously this could help out quite a bit)"},"])":{"blockId":"uf","x":10667.333333333334,"y":3034,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"},"buT":{"blockId":"buU","x":8026.0100760876685,"y":381.5525895408348,"width":200,"height":200,"minimized":false,"text":"Just checking up on some values to see if it's a data processing instruction or something else."},"buV":{"blockId":"at","x":7808.56029685974,"y":464.9599969482422,"width":189.629638671875,"height":122.96298217773438,"minimized":false,"text":"Pretty specific instruction if you ask me .-."},"buW":{"blockId":"buX","x":7801,"y":933,"width":161,"height":87,"minimized":false,"text":"Illegal opcode :p"},"buY":{"blockId":"{,","x":7836.080896719473,"y":1026.589626577872,"width":118.5184326171875,"height":66.6666259765625,"minimized":false,"text":""},"]+":{"blockId":"aq","x":12673.962962962964,"y":406.74074074074076,"width":200,"height":200,"minimized":false,"text":"I'm sorry I just really can't do this without little endian ;-;"},"buZ":{"blockId":"bu0","x":1175,"y":1568,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"](":{"blockId":"ap","x":1059,"y":4016,"width":182.71612548828125,"height":153.08642578125,"minimized":false,"text":"Idk what's up with LCDC allocated VRAM but it can hold 656 KB of memory for some reason"},"]#":{"blockId":"gz","x":1014.395061728395,"y":138.41975308641975,"width":233.3333740234375,"height":182.71603393554688,"minimized":false,"text":"I need to store a lot of memory, though luckily the DS is actually just around twice as powerful as the GBA (Gameboy Advance). Note that the 3DS is actually a lot more powerful than this."},"}":{"blockId":"ar","x":5974.08,"y":209.9280000000001,"width":216.0750732421875,"height":229.47103881835938,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"aa":{"blockId":"gB","x":5733.703703703705,"y":3417.685185185185,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"]*":{"blockId":"!","x":9529.586419753086,"y":801.4305555555555,"width":200,"height":200,"minimized":false,"text":"Data processing instructions are stupid because there's actually 16 of them."},"bu1":{"blockId":null,"x":2448,"y":1643,"width":133,"height":177,"minimized":false,"text":"0x02000000,\n0x02030D40,\n0x020927C0,\n0x020C3500,\n0x020F4240,\n0x02124F80"},"bu2":{"blockId":"bu3","x":-669.5925925925926,"y":379.0740740740741,"width":200,"height":200,"minimized":false,"text":"Takes the strain off of loading that caused crashes previously"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"pop","assetId":"83a9787d4cb6f3b7632b4ddfebf74367","dataFormat":"wav","format":"","rate":48000,"sampleCount":1123,"md5ext":"83a9787d4cb6f3b7632b4ddfebf74367.wav"}],"volume":100,"layerOrder":7,"visible":true,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"BytePusher","variables":{"-7dlmlcLCpV7tl8DS7P}":["i",33554432],"C0qco%J%rH+?w-9+KXyy":["j",4],";idbd$swwqwNu;DQ0=vB":["a",256],".:y58a4w1!iQvV%zNhGC":["bytepusher",256],"=MQ3i72Bb4vUb@o!rkK.":["k","00000000"],"?fG`_xt7u6j*Uem:ZtKX":["p",0],"ZA(HcErI5O~0g3i@+U-^":["n",10],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"N!E=h~yfwhqsk0jnH|cu":["bytepusher",[]],"[t[1fR}eq!?#HcGC2#-V":["c",["aewq321x","vfr4czds"]],"`^!VhjO#Rx$;MO?qNS$1":["p",[51,102,153,204,255,13056,13107,13158,13209,13260,13311,26112,26163,26214,26265,26316,26367,39168,39219,39270,39321,39372,39423,52224,52275,52326,52377,52428,52479,65280,65331,65382,65433,65484,65535,3342336,3342387,3342438,3342489,3342540,3342591,3355392,3355443,3355494,3355545,3355596,3355647,3368448,3368499,3368550,3368601,3368652,3368703,3381504,3381555,3381606,3381657,3381708,3381759,3394560,3394611,3394662,3394713,3394764,3394815,3407616,3407667,3407718,3407769,3407820,3407871,6684672,6684723,6684774,6684825,6684876,6684927,6697728,6697779,6697830,6697881,6697932,6697983,6710784,6710835,6710886,6710937,6710988,6711039,6723840,6723891,6723942,6723993,6724044,6724095,6736896,6736947,6736998,6737049,6737100,6737151,6749952,6750003,6750054,6750105,6750156,6750207,10027008,10027059,10027110,10027161,10027212,10027263,10040064,10040115,10040166,10040217,10040268,10040319,10053120,10053171,10053222,10053273,10053324,10053375,10066176,10066227,10066278,10066329,10066380,10066431,10079232,10079283,10079334,10079385,10079436,10079487,10092288,10092339,10092390,10092441,10092492,10092543,13369344,13369395,13369446,13369497,13369548,13369599,13382400,13382451,13382502,13382553,13382604,13382655,13395456,13395507,13395558,13395609,13395660,13395711,13408512,13408563,13408614,13408665,13408716,13408767,13421568,13421619,13421670,13421721,13421772,13421823,13434624,13434675,13434726,13434777,13434828,13434879,16711680,16711731,16711782,16711833,16711884,16711935,16724736,16724787,16724838,16724889,16724940,16724991,16737792,16737843,16737894,16737945,16737996,16738047,16750848,16750899,16750950,16751001,16751052,16751103,16763904,16763955,16764006,16764057,16764108,16764159,16776960,16777011,16777062,16777113,16777164,16777215,0,51,102,153,204,255,13056,13107,13158,13209,13260,13311,26112,26163,26214,26265,26316,26367,39168,39219,39270,39321,39372,39423,52224,52275,52326,52377,52428,52479,65280,65331,65382,65433,65484,65535,3342336,3342387,3342438,3342489,3342540]],"zkQL|M442N4wRsc)+07d":["t",[]],"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"a*i":{"opcode":"event_whenbroadcastreceived","next":"adQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["BytePusher",".+sr=pJUQmu{0)%LLjC}"]},"shadow":false,"topLevel":true,"x":287,"y":151},"adQ":{"opcode":"data_deletealloflist","next":"adR","parent":"a*i","inputs":{},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"adR":{"opcode":"data_setvariableto","next":"mu","parent":"adQ","inputs":{"VALUE":[1,[10,"33554432"]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"mu":{"opcode":"control_repeat","next":"wy","parent":"adR","inputs":{"TIMES":[3,"adS",[6,0]],"SUBSTACK":[2,"a*j"]},"fields":{},"shadow":false,"topLevel":false},"adS":{"opcode":"operator_subtract","next":null,"parent":"mu","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,"a*k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*k":{"opcode":"data_lengthoflist","next":null,"parent":"adS","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a*j":{"opcode":"data_addtolist","next":null,"parent":"mu","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"wy":{"opcode":"control_repeat","next":"adT","parent":"mu","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"adU"]},"fields":{},"shadow":false,"topLevel":false},"adU":{"opcode":"data_addtolist","next":"a*l","parent":"wy","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"a*l":{"opcode":"data_changevariableby","next":null,"parent":"adU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"adT":{"opcode":"control_forever","next":null,"parent":"wy","inputs":{"SUBSTACK":[2,"wz"]},"fields":{},"shadow":false,"topLevel":false},"wz":{"opcode":"control_for_each","next":"wA","parent":"adT","inputs":{"VALUE":[1,[6,"2"]],"SUBSTACK":[2,"adV"]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"adV":{"opcode":"data_setvariableto","next":"wB","parent":"wz","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"wB":{"opcode":"control_for_each","next":"wC","parent":"adV","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"adW"]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"adW":{"opcode":"data_setvariableto","next":null,"parent":"wB","inputs":{"VALUE":[3,"adX",[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"adX":{"opcode":"operator_join","next":null,"parent":"adW","inputs":{"STRING1":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]],"STRING2":[3,"adY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"adY":{"opcode":"operator_add","next":null,"parent":"adX","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Hm",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hm":{"opcode":"sensing_keypressed","next":null,"parent":"adY","inputs":{"KEY_OPTION":[3,"adZ","a*m"]},"fields":{},"shadow":false,"topLevel":false},"adZ":{"opcode":"operator_letter_of","next":null,"parent":"Hm","inputs":{"LETTER":[3,[12,"i","-7dlmlcLCpV7tl8DS7P}"],[6,0]],"STRING":[3,"a*n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*n":{"opcode":"data_itemoflist","next":null,"parent":"adZ","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]]},"fields":{"LIST":["c","[t[1fR}eq!?#HcGC2#-V"]},"shadow":false,"topLevel":false},"a*m":{"opcode":"sensing_keyoptions","next":null,"parent":"Hm","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"wC":{"opcode":"data_replaceitemoflist","next":null,"parent":"wB","inputs":{"INDEX":[3,"a*o",[7,0]],"ITEM":[3,"a*p",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a*o":{"opcode":"operator_subtract","next":null,"parent":"wC","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*p":{"opcode":"operator_join","next":null,"parent":"wC","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wA":{"opcode":"data_setvariableto","next":"wD","parent":"wz","inputs":{"VALUE":[3,"wE",[10,""]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"wE":{"opcode":"operator_add","next":null,"parent":"wA","inputs":{"NUM1":[3,"ad0",[4,0]],"NUM2":[3,"wF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad0":{"opcode":"operator_multiply","next":null,"parent":"wE","inputs":{"NUM1":[3,"a*q",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"a*q":{"opcode":"data_itemoflist","next":null,"parent":"ad0","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"wD":{"opcode":"control_repeat","next":"ad1","parent":"wA","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"ad2"]},"fields":{},"shadow":false,"topLevel":false},"ad2":{"opcode":"data_deletealloflist","next":"ad3","parent":"wD","inputs":{},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"ad3":{"opcode":"data_setvariableto","next":"wG","parent":"ad2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"wG":{"opcode":"control_for_each","next":"iE","parent":"ad3","inputs":{"VALUE":[1,[6,"9"]],"SUBSTACK":[2,"wH"]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"wH":{"opcode":"data_setvariableto","next":"wI","parent":"wG","inputs":{"VALUE":[3,"wJ",[10,""]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"wJ":{"opcode":"operator_add","next":null,"parent":"wH","inputs":{"NUM1":[3,"a*r",[4,0]],"NUM2":[3,"ad4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*r":{"opcode":"operator_multiply","next":null,"parent":"wJ","inputs":{"NUM1":[3,[12,"p","?fG`_xt7u6j*Uem:ZtKX"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ad4":{"opcode":"data_itemoflist","next":null,"parent":"wJ","inputs":{"INDEX":[3,"a*s",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a*s":{"opcode":"operator_add","next":null,"parent":"ad4","inputs":{"NUM1":[3,[12,"i","-7dlmlcLCpV7tl8DS7P}"],[4,0]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wI":{"opcode":"control_if","next":null,"parent":"wH","inputs":{"CONDITION":[2,"ad5"],"SUBSTACK":[2,"ad6"]},"fields":{},"shadow":false,"topLevel":false},"ad5":{"opcode":"operator_equals","next":null,"parent":"wI","inputs":{"OPERAND1":[3,"a*t",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*t":{"opcode":"operator_mod","next":null,"parent":"ad5","inputs":{"NUM1":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ad6":{"opcode":"data_addtolist","next":"a*u","parent":"wI","inputs":{"ITEM":[3,[12,"p","?fG`_xt7u6j*Uem:ZtKX"],[10,""]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"a*u":{"opcode":"data_setvariableto","next":null,"parent":"ad6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"iE":{"opcode":"data_replaceitemoflist","next":"ad7","parent":"wG","inputs":{"INDEX":[3,"ad8",[7,0]],"ITEM":[3,"ad9",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ad8":{"opcode":"operator_add","next":null,"parent":"iE","inputs":{"NUM1":[3,"a*v",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*v":{"opcode":"data_itemoflist","next":null,"parent":"ad8","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"ad9":{"opcode":"data_itemoflist","next":null,"parent":"iE","inputs":{"INDEX":[3,"ad!",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ad!":{"opcode":"operator_add","next":null,"parent":"ad9","inputs":{"NUM1":[3,"a*w",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*w":{"opcode":"data_itemoflist","next":null,"parent":"ad!","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"ad7":{"opcode":"data_setvariableto","next":null,"parent":"iE","inputs":{"VALUE":[3,"a*x",[10,""]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"a*x":{"opcode":"data_itemoflist","next":null,"parent":"ad7","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"ad1":{"opcode":"data_setvariableto","next":"a*y","parent":"wD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"a*y":{"opcode":"procedures_call","next":null,"parent":"ad1","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw bp","argumentids":"[]","warp":"true"}},"ad#":{"opcode":"procedures_definition","next":"ad%","parent":null,"inputs":{"custom_block":[1,"a*z"]},"fields":{},"shadow":false,"topLevel":true,"x":1422,"y":560},"a*z":{"opcode":"procedures_prototype","next":null,"parent":"ad#","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw bp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ad%":{"opcode":"control_for_each","next":null,"parent":"ad#","inputs":{"VALUE":[1,[6,"256"]],"SUBSTACK":[2,"ad("]},"fields":{"VARIABLE":["a",";idbd$swwqwNu;DQ0=vB"]},"shadow":false,"topLevel":false},"ad(":{"opcode":"control_for_each","next":null,"parent":"ad%","inputs":{"VALUE":[1,[6,"256"]],"SUBSTACK":[2,"ad)"]},"fields":{"VARIABLE":["bytepusher",".:y58a4w1!iQvV%zNhGC"]},"shadow":false,"topLevel":false},"ad)":{"opcode":"data_changevariableby","next":"wK","parent":"ad(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"wK":{"opcode":"data_setvariableto","next":"wL","parent":"ad)","inputs":{"VALUE":[3,"ad*",[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"ad*":{"opcode":"data_itemoflist","next":null,"parent":"wK","inputs":{"INDEX":[3,"ad+",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ad+":{"opcode":"operator_add","next":null,"parent":"ad*","inputs":{"NUM1":[3,"ad,",[4,0]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad,":{"opcode":"operator_multiply","next":null,"parent":"ad+","inputs":{"NUM1":[3,"a*A",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"a*A":{"opcode":"data_itemoflist","next":null,"parent":"ad,","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"wL":{"opcode":"control_if_else","next":null,"parent":"wK","inputs":{"CONDITION":[2,"ad-"],"SUBSTACK2":[2,"ad."]},"fields":{},"shadow":false,"topLevel":false},"ad-":{"opcode":"operator_equals","next":null,"parent":"wL","inputs":{"OPERAND1":[3,"a*B",[10,""]],"OPERAND2":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*B":{"opcode":"data_itemoflist","next":null,"parent":"ad-","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"ad.":{"opcode":"data_replaceitemoflist","next":"iF","parent":"wL","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]],"ITEM":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"iF":{"opcode":"motion_gotoxy","next":"wM","parent":"ad.","inputs":{"X":[3,"a*C",[4,0]],"Y":[3,"a*D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*C":{"opcode":"operator_subtract","next":null,"parent":"iF","inputs":{"NUM1":[3,[12,"bytepusher",".:y58a4w1!iQvV%zNhGC"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a*D":{"opcode":"operator_subtract","next":null,"parent":"iF","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,[12,"a",";idbd$swwqwNu;DQ0=vB"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wM":{"opcode":"pen_setPenColorToColor","next":"ad/","parent":"iF","inputs":{"COLOR":[3,"a*E",[9,"#6029a3"]]},"fields":{},"shadow":false,"topLevel":false},"a*E":{"opcode":"data_itemoflist","next":null,"parent":"wM","inputs":{"INDEX":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[7,0]]},"fields":{"LIST":["p","`^!VhjO#Rx$;MO?qNS$1"]},"shadow":false,"topLevel":false},"ad/":{"opcode":"pen_penDown","next":"a*F","parent":"wM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a*F":{"opcode":"pen_penUp","next":null,"parent":"ad/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a*G":{"opcode":"event_whenbroadcastreceived","next":"ad:","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":1422,"y":64},"ad:":{"opcode":"data_deletealloflist","next":"a*H","parent":"a*G","inputs":{},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"a*H":{"opcode":"data_deletealloflist","next":null,"parent":"ad:","inputs":{},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"a*I":{"opcode":"event_whenbroadcastreceived","next":"ad;","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Nuke all lists","nXk!G*y_h@WG)9_e/VKR"]},"shadow":false,"topLevel":true,"x":1422,"y":288},"ad;":{"opcode":"data_deletealloflist","next":"ad=","parent":"a*I","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"ad=":{"opcode":"data_deletealloflist","next":"a*J","parent":"ad;","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a*J":{"opcode":"event_broadcast","next":null,"parent":"ad=","inputs":{"BROADCAST_INPUT":[1,[11,"Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]]},"fields":{},"shadow":false,"topLevel":false},"a*K":{"opcode":"event_whenbroadcastreceived","next":"a*L","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":31,"y":197},"a*L":{"opcode":"control_stop","next":null,"parent":"a*K","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"wF":{"opcode":"operator_add","next":null,"parent":"wE","inputs":{"NUM1":[3,"ad?",[4,0]],"NUM2":[3,"a*M",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad?":{"opcode":"operator_multiply","next":null,"parent":"wF","inputs":{"NUM1":[3,"a*N",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a*N":{"opcode":"data_itemoflist","next":null,"parent":"ad?","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a*M":{"opcode":"data_itemoflist","next":null,"parent":"wF","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume2","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":10,"visible":false,"x":5,"y":-10,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"wave channel","variables":{"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",-333.76316562295915],"M-Sd[r]S2Y9UXO}BNFJ(":["fftlast","0"],";E?SYI/y0cz0le)X4#4l":["_R",0],"io(,(TfDAEBRM2iX1c}h":["loop",0],"!@vTj4c1The8*{(^_*O.":["_S",0],"T`~F4~2,O!/[8pu)xO1,":["T1",0],"pI+E2RUGrnC0}Oxj[fQD":["g",0],"*r-MV7B^PL30%%8PQz%`":["i",0],"Yyq0n/?:tZ-1R{!(9E,I":[".IME",0],"R93(y;ezBDFNxz;R$.9{":["-LY",0],"]j0JoR^IRmZ%Dqa1U-3t":["-wx",0],"[P*KHQ#6Rk9]Ox;1v%3A":["-LYC",0],"FL2h%|upY.J#$}=ul8?a":[".spritesize",0],"0pKRpVmta7bZeii6{wYz":["-scx",0],"j%_uw7vcE;vljqGCEt;-":["-LCDC",0],".yqIokTgw8-|]3$}O%wt":["-STATUS",0],"hX1J)AVg^t88ELGv:hb%":["T2",0],"RJLtSXRx71$[%`nwOBtM":["@PIX",0],"Xa^xc{EoyO7r}@UX9*==":["h",0],"Tj+w!/(PV_!`zhKO@qb%":["@PAL",0],"Z]?-Im_0pF^!OOi!AX81":["-WLY",0],"dyPQEg`wlO+1vws5/HRV":["-windowWasDrawn?",0],":D[mPTcd3;]Yf==]Wvx`":["_X",0],"DmmVyMpO/ebSRU2g=Wc:":["T3",0],"7D2+hT#2qu+P*=`t{Hlz":["_current bank",0],"v.3%0+x.An^dc%ycqc,h":["*OAMDMAS",0],"w]/Z*A/dznMc;~79B@Ap":["*OAMDMA#",0],"WhM=KlgvY@V6x|(`!06Q":["T5",0],"xwd)j4SY4qa||w7J0yBP":["T6",0],"FJEs/3`VRSW|=4S_cI}F":["_frames",0],"%Z}6^@{`zI6YV~G_?)Jj":["_frameskip",0],"O*.$-nBOGKoJ7i+^Qwg2":["time1",0],"ZnIX}4]R}DE8HyQ,rg57":[".instrID",0],"ujAlu]pJm2~uaC1iJUQ]":[".instr",0],"|Cl^=?C:,/{Epnf![x2:":["_T",0],"d{oa^`AGe`;eIR$H[7uf":["T7",0],"4`Ni_=/i=RIJ0%Y?]=Fn":["_RE",0],"VR1C#;_dshr98xN-P9L|":["T8",0],"+rwgUY7_t16|rsI3)wfC":["_lineCyc",0],"o~PUUkHtM;d|0cL72}R,":["_STATcond1",0],"{}%R*l;pt#ssSJM}}m?-":["_STATcond2",0],"%H5F/uE0-oBcg#Ueg1HX":["-LCDS",0],",P:HlIkn5_@.Bjl6n4Lx":["Game Boy: _PC",0],"VaPoqP]`j)*~CaHtP4A4":["Game Boy: _SP",0],"LRuELDc9kOO]l7B*P%0g":["Game Boy: _HALT",0],"$bOgKA@,Cg7J(#lntKuz":["_YSHIFT",0],"7ge_EoziNOcpkF[hyyvb":["_XSHIFT",0],"951ss`PQmd4:$N48_hl;":[".soundEnable",0],"jQVk|kz76jS8DHck5*?e":["_rom size",0],"i{fSr|$u)-tpEX+a*y{]":["_SIZE",0],"za5df3dC6Lq85;3lun8/":[".GBC?",0],"l5]S3A7BUTfQhoeX1QMo":["_Z",0],"dOLNCNdWP`.36j7uacOp":[".windowflag",0],"*$a?01}j0xiTOD04my^,":["T10",0],"s18i.M`CVzl`g@kEVPGN":[".DIVCYCLES",0],"TyNKP)!4YD91CXr;Ofr%":[".TAC1",0],".C8gJ;d]=.XH;$5E8oB2":[".TAC2",0],"dK3?LB9A%FG6.YYddD?(":[".TACFLAG",0],"AX4IlWqKU({GdZ7:.?*!":[".spriteattributes",0],"ecaYd9sPeo:%`_LsAsJD":["T9",0],"W/n=I{ySVA3XJEP{k?=[":[",joypad",0],"(BHg(FiW6n7},,p-%q%%":["T4",0],"wJ{KQ$v8^;+Hlh@.7tJv":["_MBCnumber",0],"Crf*ltOpxTp[zPgDlY{T":[",c",0],"k_tzmxwQ^5),Egn!0L:3":["FPS",0],"!#:owuhU@|TD~fX?SQd0":["-SCXMOD8",0],"F-[0c$U5I;6bxPbW?^5C":[".vbank",0],"|:KA#88+TR_ky=lPP5oN":[".spriteCpal",0],"a^B*+PC_g3)^{A!L}XWv":[".tileB",0],";.CEwXh;.U;z^iL6kY}4":[".Mpri",0],";gzI_,?`HaxU*b,C$z,M":[".Spri",0],"QwG!GB*-SvenHq{bU0[6":["-LYmask",0],"b#%5IA`afs~P-ErWHe%`":["render",0],";{(|I#5z)oz:*|%#$atp":["_IEindex",0],"qOvY4@JXH3Z=q*#gP*-=":["_IFindex",0],"$:(/kN7.}P:lAp]`:oC)":[".timenable",0],"MzjtR%U}q{vlM~,lxGYF":[".SPEED",0],"q3];|lI;X@QP63GyUdgC":[".DMAstart",0],"gb)yqT91dr(YhxH_!$oK":[".DMAend",0],")y?/_!@Q{wFz2FZBZ)YR":[".DMAlength",0],"kk18ewt7HpVOvYWizQ?E":[".DMAenable",0],"0NzoLpmy^eZ1=JjkzYGg":[".DMAtype",0],"qXl$(oh,s-`,(d=7TISu":[".DIV2",0],")$_1A%[u4h%@g;$35$Xj":["time2",0],"j1eKKgYTu[qSVFb2,O.#":[".HDMAenable",0],"QGqvJ2ss)hMY|{h/*HlZ":["_INTRdest",0],"[THklOWON,rz#pznmehC":["_A",0],"jh2$j7v[s~2Jkx.#Z1+z":["_B",0],"tGe/Wd:o59i4QQ9}C^)o":["T11",0],"hpXj8g4|ZHczy1?w+*u`":["T4.1",0],"P6r1PrSf,aWdOUXT8nij":["T4.2",0],"_CW|-^_^`N}DL:?%3bn.":["-keyRandom",0],"R-FPpZHK,2MV|H?}Z/73":["target frames",0],"AfAG@-SCQv_v!Pd(!ksr":["_PIXEL#",0],"K{h~x6)DC:d*~Zu`CfAX":["k",0],"k:|mZZ-e3/}Z,@tSy,sK":["l",0],"8#GN`Bn0{e?U=[@Rvm;~":["m",0],"RBD.T_tlTqDvriQZH:[N":["x",0],"|ke}j~q$D+WWLo05@rUl":["z",0],"xM[|Vl:5_:MuhN:9WJ%-":["v",0]},"lists":{"I`5okbJQFT`oYf*Pv4E]":["Flag bits",[]],"#,HpQY,,NMZpTP#Z/$7a":["byteStack",[]],"xQ!KH7TY-vixcN;SomF7":["bin",[]],"M;Zg}Clnv_jRTTiVfz1x":["*OAMidx",[]],"M?#xf@GQJtIb?q(T@;L:":[".AND",[]],"{70mvh/rhp8h=gpj{Wj:":[".OR",[]],"x#q!AVJG16^9E}HtX.Z!":[".XOR",[]],"`#n=K.W21Z+b9,1$DjCs":["$A",[]],"Ztb;SoN#-D4mbjS9_?T|":["$B",[]],"*2nK}A?8F`?ufZ@yn-PQ":["$C",[]],"`b}E$,6@R122(5y)._3=":["2^x",[]],"rt`J2N?0$d]K9j?Ynj$f":["*palette",[]],"Gxeo^a7r|uEHj#R[%7jG":["*OAMx",[]],"lN|dA_r%+dH9fhnepMn$":["*OAMy",[]],"[~q6:p[Kks?m0Rapk7eD":["_REGISTERS",[]],"`Nny$[X*@z~ce_9oE{M!":[".addr2ptr",[]],".7fdK[:S64[eA_H7p=d0":[".pointerStart",[]],"pi,4q[J]J/T2U|O`6bdM":[".ptr",[]],"iA7(P88z*!*iQtK8@cy1":[".ptr index",[]],"WYIpZLO@uiw_pjT%Sf.j":["_cartridge stuff",[]],"`KBp;:YVz$LYqY:-@q%C":["_instrParam",[]],"OsR*`-9=L4[RoZqDaF|B":["_instrIDs",[]],"u16r)vc%h8n1*rIQ+.aj":["_RAM",[]],"?d7S^.xq^5}3hEAhxJ.u":["_ROM",[]],"A}SPn)@|;K4@45j;UT4o":["_pix",[]],"/|!9RA(;bcQML{0,LacV":["_DMGPALETTE",[]],"80s*CPv1XN%@|_(/A,i$":["_PALETTE RAM",[]],"co=Q#-C]T_}X,w7fOhbc":["_GBCPALETTELOOKUP",[]],"QHPemIrZSCXS)P]=c(?5":["_soundregs",[]],"Sg#%}-2*EKW|ZXDbl4V7":[".vals",[]],"g1X0d%+|q`l:YKb?Jj_I":["dat",[]]},"broadcasts":{},"blocks":{"0":{"opcode":"control_repeat","next":"Tw","parent":"c!","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"c#"]},"fields":{},"shadow":false,"topLevel":false},"1":{"opcode":"control_repeat","next":"aB","parent":"c%","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"Hn"]},"fields":{},"shadow":false,"topLevel":false},"R":{"opcode":"operator_or","next":null,"parent":"c(","inputs":{"OPERAND1":[2,"Tx"],"OPERAND2":[2,"Ty"]},"fields":{},"shadow":false,"topLevel":false},"k":{"opcode":"operator_equals","next":null,"parent":".","inputs":{"OPERAND1":[3,"Tz",[10,""]],"OPERAND2":[3,"TA",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Tx":{"opcode":"data_itemoflist","next":null,"parent":"R","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"Ty":{"opcode":"data_itemoflist","next":null,"parent":"R","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"bu4":{"opcode":"operator_add","next":null,"parent":"c)","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Hn":{"opcode":"data_changevariableby","next":"Ho","parent":"1","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"Ho":{"opcode":"data_setvariableto","next":null,"parent":"Hn","inputs":{"VALUE":[3,"Hp",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"Hp":{"opcode":"operator_join","next":null,"parent":"Ho","inputs":{"STRING1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"STRING2":[3,"-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-":{"opcode":"operator_add","next":null,"parent":"Hp","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,".",[4,0]]},"fields":{},"shadow":false,"topLevel":false},".":{"opcode":"operator_not","next":null,"parent":"-","inputs":{"OPERAND":[2,"k"]},"fields":{},"shadow":false,"topLevel":false},"Tz":{"opcode":"data_itemoflist","next":null,"parent":"k","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"TA":{"opcode":"data_itemoflist","next":null,"parent":"k","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"aE":{"opcode":"data_addtolist","next":null,"parent":"aB","inputs":{"ITEM":[3,"TB",[10,""]]},"fields":{"LIST":[".XOR","x#q!AVJG16^9E}HtX.Z!"]},"shadow":false,"topLevel":false},"TB":{"opcode":"operator_add","next":null,"parent":"aE","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Tw":{"opcode":"procedures_call","next":null,"parent":"0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"a*O":{"opcode":"event_whenbroadcastreceived","next":"ad@","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["m1","!SuCzx,hkc:*t}L8cFj="]},"shadow":false,"topLevel":true,"x":659,"y":64},"ad@":{"opcode":"sound_setvolumeto","next":"ad[","parent":"a*O","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ad[":{"opcode":"control_forever","next":null,"parent":"ad@","inputs":{"SUBSTACK":[2,"c("]},"fields":{},"shadow":false,"topLevel":false},"c(":{"opcode":"control_if","next":"ad]","parent":"ad[","inputs":{"CONDITION":[2,"ad^"],"SUBSTACK":[2,"ad_"]},"fields":{},"shadow":false,"topLevel":false},"ad^":{"opcode":"operator_equals","next":null,"parent":"c(","inputs":{"OPERAND1":[3,"a*P",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*P":{"opcode":"sound_volume","next":null,"parent":"ad^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ad_":{"opcode":"control_wait_until","next":null,"parent":"c(","inputs":{"CONDITION":[2,"ad`"]},"fields":{},"shadow":false,"topLevel":false},"ad`":{"opcode":"operator_gt","next":null,"parent":"ad_","inputs":{"OPERAND1":[3,"a*Q",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*Q":{"opcode":"sound_volume","next":null,"parent":"ad`","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ad]":{"opcode":"sound_playuntildone","next":null,"parent":"c(","inputs":{"SOUND_MENU":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],"a*R"]},"fields":{},"shadow":false,"topLevel":false},"a*R":{"opcode":"sound_sounds_menu","next":null,"parent":"ad]","inputs":{},"fields":{"SOUND_MENU":["sine15",null]},"shadow":true,"topLevel":false},"a*S":{"opcode":"event_whenbroadcastreceived","next":"ad{","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["m1","!SuCzx,hkc:*t}L8cFj="]},"shadow":false,"topLevel":true,"x":659,"y":395},"ad{":{"opcode":"control_forever","next":null,"parent":"a*S","inputs":{"SUBSTACK":[2,"c)"]},"fields":{},"shadow":false,"topLevel":false},"c)":{"opcode":"control_if","next":"c!","parent":"ad{","inputs":{"CONDITION":[2,"ad|"],"SUBSTACK":[2,"c#"]},"fields":{},"shadow":false,"topLevel":false},"ad|":{"opcode":"operator_equals","next":null,"parent":"c)","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[3,"a*T",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*T":{"opcode":"operator_divide","next":null,"parent":"ad|","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c#":{"opcode":"control_if","next":"ad}","parent":"c)","inputs":{"CONDITION":[2,"ad~"],"SUBSTACK":[2,"a*U"]},"fields":{},"shadow":false,"topLevel":false},"ad~":{"opcode":"operator_not","next":null,"parent":"c#","inputs":{"OPERAND":[2,"aea"]},"fields":{},"shadow":false,"topLevel":false},"aea":{"opcode":"operator_equals","next":null,"parent":"ad~","inputs":{"OPERAND1":[3,"a*V",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*V":{"opcode":"sound_volume","next":null,"parent":"aea","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a*U":{"opcode":"sound_setvolumeto","next":null,"parent":"c#","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ad}":{"opcode":"control_wait_until","next":null,"parent":"c#","inputs":{"CONDITION":[2,"aeb"]},"fields":{},"shadow":false,"topLevel":false},"aeb":{"opcode":"operator_gt","next":null,"parent":"ad}","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[3,"a*W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*W":{"opcode":"operator_divide","next":null,"parent":"aeb","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c!":{"opcode":"control_if_else","next":null,"parent":"c)","inputs":{"CONDITION":[2,"a*X"],"SUBSTACK":[2,"wN"],"SUBSTACK2":[2,"wO"]},"fields":{},"shadow":false,"topLevel":false},"a*X":{"opcode":"operator_gt","next":null,"parent":"c!","inputs":{"OPERAND1":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[10,""]],"OPERAND2":[3,[12,"q","|Wne6DL=-zq^m9{2r`hA"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wN":{"opcode":"control_if","next":null,"parent":"c!","inputs":{"CONDITION":[2,"aec"],"SUBSTACK":[2,"a*Y"]},"fields":{},"shadow":false,"topLevel":false},"aec":{"opcode":"operator_gt","next":null,"parent":"wN","inputs":{"OPERAND1":[3,"a*Z",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*Z":{"opcode":"sound_volume","next":null,"parent":"aec","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a*Y":{"opcode":"sound_setvolumeto","next":null,"parent":"wN","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"wO":{"opcode":"control_if","next":null,"parent":"c!","inputs":{"CONDITION":[2,"aed"],"SUBSTACK":[2,"aee"]},"fields":{},"shadow":false,"topLevel":false},"aed":{"opcode":"operator_not","next":null,"parent":"wO","inputs":{"OPERAND":[2,"wP"]},"fields":{},"shadow":false,"topLevel":false},"wP":{"opcode":"operator_equals","next":null,"parent":"aed","inputs":{"OPERAND1":[3,"a*0",[10,""]],"OPERAND2":[3,"a*1",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*0":{"opcode":"sound_volume","next":null,"parent":"wP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a*1":{"opcode":"data_itemoflist","next":null,"parent":"wP","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,0]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"aee":{"opcode":"sound_setvolumeto","next":null,"parent":"wO","inputs":{"VOLUME":[3,"wQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wQ":{"opcode":"operator_multiply","next":null,"parent":"aee","inputs":{"NUM1":[3,"a*2",[4,0]],"NUM2":[3,"a*3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*2":{"opcode":"data_itemoflist","next":null,"parent":"wQ","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,0]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"a*3":{"opcode":"operator_divide","next":null,"parent":"wQ","inputs":{"NUM1":[1,[4,"20"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aef":{"opcode":"procedures_definition","next":"aeg","parent":null,"inputs":{"custom_block":[1,"a*4"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":1153},"a*4":{"opcode":"procedures_prototype","next":null,"parent":"aef","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aeg":{"opcode":"data_setvariableto","next":"aeh","parent":"aef","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"aeh":{"opcode":"data_setvariableto","next":"c%","parent":"aeg","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["q","|Wne6DL=-zq^m9{2r`hA"]},"shadow":false,"topLevel":false},"c%":{"opcode":"control_if_else","next":null,"parent":"aeh","inputs":{"CONDITION":[2,"a*5"],"SUBSTACK":[2,"aei"],"SUBSTACK2":[2,"aej"]},"fields":{},"shadow":false,"topLevel":false},"a*5":{"opcode":"operator_not","next":null,"parent":"c%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aei":{"opcode":"data_setvariableto","next":"aek","parent":"c%","inputs":{"VALUE":[3,[12,"q","|Wne6DL=-zq^m9{2r`hA"],[10,""]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"aek":{"opcode":"control_repeat","next":null,"parent":"aei","inputs":{"TIMES":[3,[12,"q","|Wne6DL=-zq^m9{2r`hA"],[6,0]],"SUBSTACK":[2,"wR"]},"fields":{},"shadow":false,"topLevel":false},"wR":{"opcode":"control_create_clone_of","next":"a*6","parent":"aek","inputs":{"CLONE_OPTION":[1,"a*7"]},"fields":{},"shadow":false,"topLevel":false},"a*7":{"opcode":"control_create_clone_of_menu","next":null,"parent":"wR","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a*6":{"opcode":"data_changevariableby","next":null,"parent":"wR","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"aej":{"opcode":"data_setvariableto","next":"ael","parent":"c%","inputs":{"VALUE":[1,[10,"96"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"ael":{"opcode":"control_repeat","next":null,"parent":"aej","inputs":{"TIMES":[1,[6,"95"]],"SUBSTACK":[2,"wS"]},"fields":{},"shadow":false,"topLevel":false},"wS":{"opcode":"control_create_clone_of","next":"a*8","parent":"ael","inputs":{"CLONE_OPTION":[1,"a*9"]},"fields":{},"shadow":false,"topLevel":false},"a*9":{"opcode":"control_create_clone_of_menu","next":null,"parent":"wS","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a*8":{"opcode":"data_changevariableby","next":null,"parent":"wS","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"a*!":{"opcode":"event_whenbroadcastreceived","next":"aem","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["m1","!SuCzx,hkc:*t}L8cFj="]},"shadow":false,"topLevel":true,"x":1248,"y":624},"aem":{"opcode":"control_forever","next":null,"parent":"a*!","inputs":{"SUBSTACK":[2,"wT"]},"fields":{},"shadow":false,"topLevel":false},"wT":{"opcode":"control_if_else","next":null,"parent":"aem","inputs":{"CONDITION":[2,"aen"],"SUBSTACK2":[2,"wU"]},"fields":{},"shadow":false,"topLevel":false},"aen":{"opcode":"operator_equals","next":null,"parent":"wT","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[3,"a*#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*#":{"opcode":"operator_divide","next":null,"parent":"aen","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"wU":{"opcode":"control_if","next":null,"parent":"wT","inputs":{"CONDITION":[2,"aeo"],"SUBSTACK":[2,"aep"]},"fields":{},"shadow":false,"topLevel":false},"aeo":{"opcode":"operator_not","next":null,"parent":"wU","inputs":{"OPERAND":[2,"a*%"]},"fields":{},"shadow":false,"topLevel":false},"a*%":{"opcode":"operator_equals","next":null,"parent":"aeo","inputs":{"OPERAND1":[3,[12,"_pitch","(ecE`kfJLzw4p#})J_i9"],[10,""]],"OPERAND2":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aep":{"opcode":"data_setvariableto","next":"a*(","parent":"wU","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"a*(":{"opcode":"sound_seteffectto","next":null,"parent":"aep","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"a*)":{"opcode":"event_whenbroadcastreceived","next":"aeq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["create sound","O7?o@Pl6XR6dG~oq]ZEc"]},"shadow":false,"topLevel":true,"x":1857,"y":64},"aeq":{"opcode":"procedures_call","next":"aer","parent":"a*)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","warp":"true"}},"aer":{"opcode":"event_broadcast","next":"a**","parent":"aeq","inputs":{"BROADCAST_INPUT":[1,[11,"soundsync","Nj?La~+UE`p(Sb+Pu6FT"]]},"fields":{},"shadow":false,"topLevel":false},"a**":{"opcode":"event_broadcast","next":null,"parent":"aer","inputs":{"BROADCAST_INPUT":[1,[11,"m1","!SuCzx,hkc:*t}L8cFj="]]},"fields":{},"shadow":false,"topLevel":false},"aes":{"opcode":"procedures_definition","next":"aet","parent":null,"inputs":{"custom_block":[1,"a*+"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"a*+":{"opcode":"procedures_prototype","next":null,"parent":"aes","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aet":{"opcode":"data_deletealloflist","next":"aeu","parent":"aes","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeu":{"opcode":"data_deletealloflist","next":"aev","parent":"aet","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aev":{"opcode":"data_setvariableto","next":"aew","parent":"aeu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aew":{"opcode":"control_repeat","next":null,"parent":"aev","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"aex"]},"fields":{},"shadow":false,"topLevel":false},"aex":{"opcode":"data_changevariableby","next":"wV","parent":"aew","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"wV":{"opcode":"data_addtolist","next":"wW","parent":"aex","inputs":{"ITEM":[3,"aey",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aey":{"opcode":"operator_divide","next":null,"parent":"wV","inputs":{"NUM1":[3,"a*,",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*,":{"opcode":"data_itemoflist","next":null,"parent":"aey","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"wW":{"opcode":"data_addtolist","next":"wX","parent":"wV","inputs":{"ITEM":[3,"aez",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aez":{"opcode":"operator_divide","next":null,"parent":"wW","inputs":{"NUM1":[3,"a*-",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*-":{"opcode":"data_itemoflist","next":null,"parent":"aez","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"wX":{"opcode":"data_addtolist","next":"wY","parent":"wW","inputs":{"ITEM":[3,"aeA",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeA":{"opcode":"operator_divide","next":null,"parent":"wX","inputs":{"NUM1":[3,"a*.",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*.":{"opcode":"data_itemoflist","next":null,"parent":"aeA","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"wY":{"opcode":"data_addtolist","next":"wZ","parent":"wX","inputs":{"ITEM":[3,"aeB",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeB":{"opcode":"operator_divide","next":null,"parent":"wY","inputs":{"NUM1":[3,"a*/",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*/":{"opcode":"data_itemoflist","next":null,"parent":"aeB","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"wZ":{"opcode":"data_addtolist","next":"w0","parent":"wY","inputs":{"ITEM":[3,"aeC",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeC":{"opcode":"operator_divide","next":null,"parent":"wZ","inputs":{"NUM1":[3,"a*:",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*:":{"opcode":"data_itemoflist","next":null,"parent":"aeC","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"w0":{"opcode":"data_addtolist","next":"w1","parent":"wZ","inputs":{"ITEM":[3,"aeD",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeD":{"opcode":"operator_divide","next":null,"parent":"w0","inputs":{"NUM1":[3,"a*;",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*;":{"opcode":"data_itemoflist","next":null,"parent":"aeD","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"w1":{"opcode":"data_addtolist","next":"aeE","parent":"w0","inputs":{"ITEM":[3,"aeF",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeF":{"opcode":"operator_divide","next":null,"parent":"w1","inputs":{"NUM1":[3,"a*=",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*=":{"opcode":"data_itemoflist","next":null,"parent":"aeF","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"aeE":{"opcode":"data_addtolist","next":null,"parent":"w1","inputs":{"ITEM":[3,"aeG",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeG":{"opcode":"operator_divide","next":null,"parent":"aeE","inputs":{"NUM1":[3,"a*?",[4,0]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a*?":{"opcode":"data_itemoflist","next":null,"parent":"aeG","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"aeH":{"opcode":"procedures_definition","next":"aeI","parent":null,"inputs":{"custom_block":[1,"a*@"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":740},"a*@":{"opcode":"procedures_prototype","next":null,"parent":"aeH","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aeI":{"opcode":"data_setvariableto","next":"aeJ","parent":"aeH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aeJ":{"opcode":"data_deletealloflist","next":"w2","parent":"aeI","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"w2":{"opcode":"control_repeat","next":null,"parent":"aeJ","inputs":{"TIMES":[3,"a*[",[6,0]],"SUBSTACK":[2,"aeK"]},"fields":{},"shadow":false,"topLevel":false},"a*[":{"opcode":"data_lengthoflist","next":null,"parent":"w2","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aeK":{"opcode":"data_changevariableby","next":"w3","parent":"w2","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"w3":{"opcode":"data_setvariableto","next":"w4","parent":"aeK","inputs":{"VALUE":[3,"a*]",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a*]":{"opcode":"data_itemoflist","next":null,"parent":"w3","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"w4":{"opcode":"data_setvariableto","next":"aeL","parent":"w3","inputs":{"VALUE":[3,"a*^",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a*^":{"opcode":"data_itemoflist","next":null,"parent":"w4","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aeL":{"opcode":"data_addtolist","next":null,"parent":"w4","inputs":{"ITEM":[3,"w5",[10,""]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"w5":{"opcode":"operator_multiply","next":null,"parent":"aeL","inputs":{"NUM1":[3,"a*_",[4,0]],"NUM2":[3,"aeM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*_":{"opcode":"data_itemoflist","next":null,"parent":"w5","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"aeM":{"opcode":"operator_mathop","next":null,"parent":"w5","inputs":{"NUM":[3,"w6",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"w6":{"opcode":"operator_add","next":null,"parent":"aeM","inputs":{"NUM1":[3,"a*`",[4,0]],"NUM2":[3,"a*{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*`":{"opcode":"operator_multiply","next":null,"parent":"w6","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a*{":{"opcode":"operator_multiply","next":null,"parent":"w6","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]],"NUM2":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeN":{"opcode":"procedures_definition","next":"aeO","parent":null,"inputs":{"custom_block":[1,"aeP"]},"fields":{},"shadow":false,"topLevel":true,"x":2206,"y":64},"aeP":{"opcode":"procedures_prototype","next":null,"parent":"aeN","inputs":{"input0":[1,"a*|"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","argumentnames":"[\"I\"]","argumentdefaults":"[false]","warp":"true"}},"a*|":{"opcode":"argument_reporter_boolean","next":null,"parent":"aeP","inputs":{},"fields":{"VALUE":["I",null]},"shadow":true,"topLevel":false},"aeO":{"opcode":"data_deleteoflist","next":"aeQ","parent":"aeN","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aeQ":{"opcode":"data_deleteoflist","next":"a0","parent":"aeO","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a0":{"opcode":"control_if_else","next":"aeR","parent":"aeQ","inputs":{"CONDITION":[2,"w7"],"SUBSTACK":[2,"aeS"],"SUBSTACK2":[2,"aeT"]},"fields":{},"shadow":false,"topLevel":false},"w7":{"opcode":"operator_lt","next":null,"parent":"a0","inputs":{"OPERAND1":[3,"a*}",[10,""]],"OPERAND2":[3,"a*~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*}":{"opcode":"data_lengthoflist","next":null,"parent":"w7","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"a*~":{"opcode":"data_lengthoflist","next":null,"parent":"w7","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aeS":{"opcode":"data_setvariableto","next":null,"parent":"a0","inputs":{"VALUE":[3,"a+a",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+a":{"opcode":"data_lengthoflist","next":null,"parent":"aeS","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aeT":{"opcode":"data_setvariableto","next":null,"parent":"a0","inputs":{"VALUE":[3,"a+b",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+b":{"opcode":"data_lengthoflist","next":null,"parent":"aeT","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aeR":{"opcode":"data_changevariableby","next":"aeU","parent":"a0","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aeU":{"opcode":"data_setvariableto","next":"aeV","parent":"aeR","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aeV":{"opcode":"data_setvariableto","next":"aB","parent":"aeU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"aB":{"opcode":"control_repeat_until","next":"w8","parent":"aeV","inputs":{"CONDITION":[2,"a+c"],"SUBSTACK":[2,"aeW"]},"fields":{},"shadow":false,"topLevel":false},"a+c":{"opcode":"operator_gt","next":null,"parent":"aB","inputs":{"OPERAND1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]],"OPERAND2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aeW":{"opcode":"data_changevariableby","next":"a+d","parent":"aB","inputs":{"VALUE":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a+d":{"opcode":"data_changevariableby","next":null,"parent":"aeW","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"w8":{"opcode":"control_repeat","next":"aeX","parent":"aB","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"w9"]},"fields":{},"shadow":false,"topLevel":false},"w9":{"opcode":"data_setvariableto","next":"aeY","parent":"w8","inputs":{"VALUE":[3,"a+e",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+e":{"opcode":"data_lengthoflist","next":null,"parent":"w9","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aeY":{"opcode":"data_setvariableto","next":"w!","parent":"w9","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"w!":{"opcode":"control_repeat","next":"aeZ","parent":"aeY","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"w#"]},"fields":{},"shadow":false,"topLevel":false},"w#":{"opcode":"data_setvariableto","next":"w%","parent":"w!","inputs":{"VALUE":[3,"a+f",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a+f":{"opcode":"operator_multiply","next":null,"parent":"w#","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"w%":{"opcode":"data_changevariableby","next":"ae0","parent":"w#","inputs":{"VALUE":[3,"a+g",[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a+g":{"opcode":"operator_mod","next":null,"parent":"w%","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ae0":{"opcode":"data_setvariableto","next":null,"parent":"w%","inputs":{"VALUE":[3,"ae1",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ae1":{"opcode":"operator_mathop","next":null,"parent":"ae0","inputs":{"NUM":[3,"a+h",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a+h":{"opcode":"operator_divide","next":null,"parent":"ae1","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aeZ":{"opcode":"data_changevariableby","next":"w(","parent":"w!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"w(":{"opcode":"data_addtolist","next":"ae2","parent":"aeZ","inputs":{"ITEM":[3,"ae3",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ae3":{"opcode":"operator_add","next":null,"parent":"w(","inputs":{"NUM1":[3,"a+i",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+i":{"opcode":"data_itemoflist","next":null,"parent":"ae3","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ae2":{"opcode":"data_addtolist","next":null,"parent":"w(","inputs":{"ITEM":[3,"ae4",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"ae4":{"opcode":"operator_add","next":null,"parent":"ae2","inputs":{"NUM1":[3,"a+j",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+j":{"opcode":"data_itemoflist","next":null,"parent":"ae4","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aeX":{"opcode":"data_setvariableto","next":"w)","parent":"w8","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"w)":{"opcode":"control_repeat","next":"ae5","parent":"aeX","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"ae6"]},"fields":{},"shadow":false,"topLevel":false},"ae6":{"opcode":"data_setvariableto","next":"w*","parent":"w)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"w*":{"opcode":"data_setvariableto","next":"w+","parent":"ae6","inputs":{"VALUE":[3,"a+k",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a+k":{"opcode":"operator_divide","next":null,"parent":"w*","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"w+":{"opcode":"control_repeat","next":"a+l","parent":"w*","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"ae7"]},"fields":{},"shadow":false,"topLevel":false},"ae7":{"opcode":"data_setvariableto","next":"a1","parent":"w+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"a1":{"opcode":"control_if_else","next":"w,","parent":"ae7","inputs":{"CONDITION":[2,"a+m"],"SUBSTACK":[2,"ae8"],"SUBSTACK2":[2,"ae9"]},"fields":{},"shadow":false,"topLevel":false},"a+m":{"opcode":"argument_reporter_boolean","next":null,"parent":"a1","inputs":{},"fields":{"VALUE":["I",null]},"shadow":false,"topLevel":false},"ae8":{"opcode":"data_setvariableto","next":null,"parent":"a1","inputs":{"VALUE":[3,"a+n",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"a+n":{"opcode":"operator_divide","next":null,"parent":"ae8","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ae9":{"opcode":"data_setvariableto","next":null,"parent":"a1","inputs":{"VALUE":[3,"a+o",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"a+o":{"opcode":"operator_divide","next":null,"parent":"ae9","inputs":{"NUM1":[1,[4,"-180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w,":{"opcode":"control_repeat","next":"a+p","parent":"a1","inputs":{"TIMES":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,0]],"SUBSTACK":[2,"ae!"]},"fields":{},"shadow":false,"topLevel":false},"ae!":{"opcode":"data_changevariableby","next":"w-","parent":"w,","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"w-":{"opcode":"data_setvariableto","next":"w.","parent":"ae!","inputs":{"VALUE":[3,"a+q",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a+q":{"opcode":"operator_mathop","next":null,"parent":"w-","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"w.":{"opcode":"data_setvariableto","next":"w/","parent":"w-","inputs":{"VALUE":[3,"a+r",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"a+r":{"opcode":"operator_mathop","next":null,"parent":"w.","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"w/":{"opcode":"data_setvariableto","next":"w:","parent":"w.","inputs":{"VALUE":[3,"a+s",[10,""]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"a+s":{"opcode":"data_itemoflist","next":null,"parent":"w/","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"w:":{"opcode":"data_setvariableto","next":"w;","parent":"w/","inputs":{"VALUE":[3,"a+t",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"a+t":{"opcode":"data_itemoflist","next":null,"parent":"w:","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"w;":{"opcode":"data_setvariableto","next":"w=","parent":"w:","inputs":{"VALUE":[3,"w?",[10,""]]},"fields":{"VARIABLE":["r.6","flj)QgXS,93H6OayZ`w[-r.6-"]},"shadow":false,"topLevel":false},"w?":{"opcode":"operator_subtract","next":null,"parent":"w;","inputs":{"NUM1":[3,"a+u",[4,0]],"NUM2":[3,"a+v",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+u":{"opcode":"operator_multiply","next":null,"parent":"w?","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+v":{"opcode":"operator_multiply","next":null,"parent":"w?","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w=":{"opcode":"data_setvariableto","next":"w@","parent":"w;","inputs":{"VALUE":[3,"w[",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"w[":{"opcode":"operator_add","next":null,"parent":"w=","inputs":{"NUM1":[3,"a+w",[4,0]],"NUM2":[3,"a+x",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+w":{"opcode":"operator_multiply","next":null,"parent":"w[","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+x":{"opcode":"operator_multiply","next":null,"parent":"w[","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w@":{"opcode":"data_changevariableby","next":"w]","parent":"w=","inputs":{"VALUE":[3,"a+y",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+y":{"opcode":"operator_subtract","next":null,"parent":"w@","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w]":{"opcode":"data_setvariableto","next":"w^","parent":"w@","inputs":{"VALUE":[3,"a+z",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a+z":{"opcode":"data_itemoflist","next":null,"parent":"w]","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"w^":{"opcode":"data_setvariableto","next":"w_","parent":"w]","inputs":{"VALUE":[3,"a+A",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"a+A":{"opcode":"data_itemoflist","next":null,"parent":"w^","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"w_":{"opcode":"data_replaceitemoflist","next":"w`","parent":"w^","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a+B",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+B":{"opcode":"operator_add","next":null,"parent":"w_","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w`":{"opcode":"data_replaceitemoflist","next":"ae#","parent":"w_","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a+C",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+C":{"opcode":"operator_add","next":null,"parent":"w`","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ae#":{"opcode":"data_changevariableby","next":"w{","parent":"w`","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"w{":{"opcode":"data_replaceitemoflist","next":"w|","parent":"ae#","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a+D",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+D":{"opcode":"operator_subtract","next":null,"parent":"w{","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w|":{"opcode":"data_replaceitemoflist","next":"w}","parent":"w{","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a+E",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+E":{"opcode":"operator_subtract","next":null,"parent":"w|","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w}":{"opcode":"data_changevariableby","next":"a+F","parent":"w|","inputs":{"VALUE":[3,"a+G",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+G":{"opcode":"operator_subtract","next":null,"parent":"w}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+F":{"opcode":"data_changevariableby","next":null,"parent":"w}","inputs":{"VALUE":[3,[12,"r.9","flj)QgXS,93H6OayZ`w[-r.9-"],[4,0]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"a+p":{"opcode":"data_changevariableby","next":null,"parent":"w,","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a+l":{"opcode":"data_changevariableby","next":null,"parent":"w+","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"ae5":{"opcode":"data_setvariableto","next":"ae%","parent":"w)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ae%":{"opcode":"data_deleteoflist","next":"ae(","parent":"ae5","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ae(":{"opcode":"data_deleteoflist","next":"w~","parent":"ae%","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"w~":{"opcode":"data_setvariableto","next":"xa","parent":"ae(","inputs":{"VALUE":[3,"ae)",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"ae)":{"opcode":"operator_mathop","next":null,"parent":"w~","inputs":{"NUM":[3,"a+H",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"a+H":{"opcode":"data_lengthoflist","next":null,"parent":"ae)","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"xa":{"opcode":"control_repeat","next":null,"parent":"w~","inputs":{"TIMES":[3,"a+I",[6,0]],"SUBSTACK":[2,"ae*"]},"fields":{},"shadow":false,"topLevel":false},"a+I":{"opcode":"data_lengthoflist","next":null,"parent":"xa","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ae*":{"opcode":"data_changevariableby","next":"xb","parent":"xa","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"xb":{"opcode":"data_addtolist","next":"ae+","parent":"ae*","inputs":{"ITEM":[3,"ae,",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ae,":{"opcode":"operator_divide","next":null,"parent":"xb","inputs":{"NUM1":[3,"a+J",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+J":{"opcode":"data_itemoflist","next":null,"parent":"ae,","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ae+":{"opcode":"data_addtolist","next":null,"parent":"xb","inputs":{"ITEM":[3,"ae-",[10,""]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"ae-":{"opcode":"operator_divide","next":null,"parent":"ae+","inputs":{"NUM1":[3,"a+K",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+K":{"opcode":"data_itemoflist","next":null,"parent":"ae-","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+L":{"opcode":"event_whenbroadcastreceived","next":"ae.","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["soundsync","Nj?La~+UE`p(Sb+Pu6FT"]},"shadow":false,"topLevel":true,"x":1248,"y":64},"ae.":{"opcode":"data_setvariableto","next":"ae/","parent":"a+L","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["fftlast","M-Sd[r]S2Y9UXO}BNFJ("]},"shadow":false,"topLevel":false},"ae/":{"opcode":"control_forever","next":null,"parent":"ae.","inputs":{"SUBSTACK":[2,"iG"]},"fields":{},"shadow":false,"topLevel":false},"iG":{"opcode":"control_if_else","next":"xc","parent":"ae/","inputs":{"CONDITION":[2,"ae:"],"SUBSTACK":[2,"a+M"],"SUBSTACK2":[2,"ae;"]},"fields":{},"shadow":false,"topLevel":false},"ae:":{"opcode":"operator_lt","next":null,"parent":"iG","inputs":{"OPERAND1":[3,"a+N",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+N":{"opcode":"data_itemoflist","next":null,"parent":"ae:","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"a+M":{"opcode":"data_setvariableto","next":null,"parent":"iG","inputs":{"VALUE":[1,[10,"-Infinity"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"ae;":{"opcode":"data_setvariableto","next":null,"parent":"iG","inputs":{"VALUE":[3,"ae=",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"ae=":{"opcode":"operator_multiply","next":null,"parent":"ae;","inputs":{"NUM1":[3,"ae?",[4,0]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ae?":{"opcode":"operator_subtract","next":null,"parent":"ae=","inputs":{"NUM1":[3,"a+O",[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"a+O":{"opcode":"data_itemoflist","next":null,"parent":"ae?","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"xc":{"opcode":"control_if","next":null,"parent":"iG","inputs":{"CONDITION":[2,"ae@"],"SUBSTACK":[2,"ae["]},"fields":{},"shadow":false,"topLevel":false},"ae@":{"opcode":"operator_not","next":null,"parent":"xc","inputs":{"OPERAND":[2,"a+P"]},"fields":{},"shadow":false,"topLevel":false},"a+P":{"opcode":"operator_equals","next":null,"parent":"ae@","inputs":{"OPERAND1":[3,[13,"wave","*df.:JNR*^GpTa_k=NdQ"],[10,""]],"OPERAND2":[3,[12,"fftlast","M-Sd[r]S2Y9UXO}BNFJ("],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ae[":{"opcode":"procedures_call","next":"ae]","parent":"xc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","warp":"true"}},"ae]":{"opcode":"procedures_call","next":"ae^","parent":"ae[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","warp":"true"}},"ae^":{"opcode":"procedures_call","next":"a+Q","parent":"ae]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","warp":"true"}},"a+Q":{"opcode":"data_setvariableto","next":null,"parent":"ae^","inputs":{"VALUE":[3,[13,"wave","*df.:JNR*^GpTa_k=NdQ"],[10,""]]},"fields":{"VARIABLE":["fftlast","M-Sd[r]S2Y9UXO}BNFJ("]},"shadow":false,"topLevel":false},"a+R":{"opcode":"event_whenbroadcastreceived","next":"a+S","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["prune","eUXr-]/_0N]qtaXLt(ye"]},"shadow":false,"topLevel":true,"x":2775,"y":64},"a+S":{"opcode":"control_delete_this_clone","next":null,"parent":"a+R","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bu5":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu6":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu7":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu8":[12,"Game Boy: _SP","VaPoqP]`j)*~CaHtP4A4"],"bu9":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu!":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu#":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu%":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu(":[12,"T7","d{oa^`AGe`;eIR$H[7uf"],"bu)":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu*":[12,"T7","d{oa^`AGe`;eIR$H[7uf"],"bu+":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu,":[12,"T7","d{oa^`AGe`;eIR$H[7uf"],"bu-":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu.":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bu/":[12,"_T","|Cl^=?C:,/{Epnf![x2:"]},"comments":{"aMk":{"blockId":"aMl","x":-115,"y":3086,"width":200,"height":200,"minimized":true,"text":"fft"},"aMm":{"blockId":"aMn","x":-88,"y":3186,"width":200,"height":200,"minimized":true,"text":"inverse fft"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"vsine1","assetId":"d2a0d4559613ef2bfc40167edd8c5c4b","dataFormat":"wav","rate":48000,"sampleCount":3072000,"md5ext":"d2a0d4559613ef2bfc40167edd8c5c4b.wav"},{"name":"vsine2","assetId":"f8843c06c36a01ac5928d2a27d144d89","dataFormat":"wav","rate":48000,"sampleCount":1536000,"md5ext":"f8843c06c36a01ac5928d2a27d144d89.wav"},{"name":"vsine3","assetId":"03c7be5de5e3a3e34dec160853ac5f25","dataFormat":"wav","rate":48000,"sampleCount":1024000,"md5ext":"03c7be5de5e3a3e34dec160853ac5f25.wav"},{"name":"vsine4","assetId":"844b136c1c36a43805b45d2d93cd7e31","dataFormat":"wav","rate":48000,"sampleCount":768000,"md5ext":"844b136c1c36a43805b45d2d93cd7e31.wav"},{"name":"vsine5","assetId":"ff957600839bbd58abd52aad2531b67d","dataFormat":"wav","rate":48000,"sampleCount":614400,"md5ext":"ff957600839bbd58abd52aad2531b67d.wav"},{"name":"vsine6","assetId":"b314e31977e690f46450433836c24a4f","dataFormat":"wav","rate":48000,"sampleCount":512000,"md5ext":"b314e31977e690f46450433836c24a4f.wav"},{"name":"vsine7","assetId":"0a1229ba60dd4bdac663c0f64615577a","dataFormat":"wav","rate":48000,"sampleCount":438857,"md5ext":"0a1229ba60dd4bdac663c0f64615577a.wav"},{"name":"vsine8","assetId":"4b936c35b563d559de3122f775393009","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"4b936c35b563d559de3122f775393009.wav"},{"name":"vsine9","assetId":"4147dc61054ccd96f596638c7f298dce","dataFormat":"wav","rate":48000,"sampleCount":341333,"md5ext":"4147dc61054ccd96f596638c7f298dce.wav"},{"name":"vsine10","assetId":"497d0c2eb954ace427b95695e9badbaf","dataFormat":"wav","rate":48000,"sampleCount":307200,"md5ext":"497d0c2eb954ace427b95695e9badbaf.wav"},{"name":"vsine11","assetId":"3aa72c565867b6324d52d29884b9010a","dataFormat":"wav","rate":48000,"sampleCount":279272,"md5ext":"3aa72c565867b6324d52d29884b9010a.wav"},{"name":"vsine12","assetId":"7ffe6b116e37894f3fcbc9f54aab09c0","dataFormat":"wav","rate":48000,"sampleCount":256000,"md5ext":"7ffe6b116e37894f3fcbc9f54aab09c0.wav"},{"name":"vsine13","assetId":"7e1f020e1ea02f5cb1089d5e29de3718","dataFormat":"wav","rate":48000,"sampleCount":236307,"md5ext":"7e1f020e1ea02f5cb1089d5e29de3718.wav"},{"name":"vsine14","assetId":"6ef07ef8283bf79a39f0657f5e87519c","dataFormat":"wav","rate":48000,"sampleCount":219428,"md5ext":"6ef07ef8283bf79a39f0657f5e87519c.wav"},{"name":"vsine15","assetId":"3c958dab6e860e14d79da9e0935cd105","dataFormat":"wav","rate":48000,"sampleCount":204799,"md5ext":"3c958dab6e860e14d79da9e0935cd105.wav"},{"name":"vsine16","assetId":"2780f6f2e63ec9e15b77d3416be9de04","dataFormat":"wav","rate":48000,"sampleCount":192000,"md5ext":"2780f6f2e63ec9e15b77d3416be9de04.wav"}],"volume":0,"layerOrder":11,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"draw","variables":{"h9od:zPMB5,pRnd*~S?_":["draw: pixel",59392],"x`lXY}QGbH88#]Q,]k6{":["scaling","1"],"FXOp8UxfocDLes#jb]#0":["size_mod","0"],"]5%Fb_Ak`e}VBjN~n|kJ":["o_down","8"],"k=~b=v$2`QjSTgTcPXL-":["o_up","8"],"73W`D}JRkTT8cP#X0=^@":["display_mode","0"],"RUoRvD^Z-E8laPv?;h)+":["stretch_x","1"],"9*o%9GxNGz?fbMF7pB8J":["stretch_y","1"]},"lists":{},"broadcasts":{},"blocks":{"ae_":{"opcode":"procedures_definition","next":"ae`","parent":null,"inputs":{"custom_block":[1,"a+T"]},"fields":{},"shadow":false,"topLevel":true,"x":709,"y":236},"a+T":{"opcode":"procedures_prototype","next":null,"parent":"ae_","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ae`":{"opcode":"pen_clear","next":"ae{","parent":"ae_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ae{":{"opcode":"motion_gotoxy","next":"ae|","parent":"ae`","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ae|":{"opcode":"pen_setPenSizeTo","next":"ae}","parent":"ae{","inputs":{"SIZE":[1,[4,"750"]]},"fields":{},"shadow":false,"topLevel":false},"ae}":{"opcode":"pen_setPenColorToColor","next":"ae~","parent":"ae|","inputs":{"COLOR":[3,[12,"bg_color","~s-a1kNvmHy%k|6}Y3^~"],[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"ae~":{"opcode":"pen_penDown","next":"afa","parent":"ae}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"afa":{"opcode":"pen_penUp","next":"Hq","parent":"ae~","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Hq":{"opcode":"pen_setPenSizeTo","next":"Hr","parent":"afa","inputs":{"SIZE":[3,"a+U",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+U":{"opcode":"operator_add","next":null,"parent":"Hq","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,[12,"size_mod","FXOp8UxfocDLes#jb]#0"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hr":{"opcode":"control_if","next":null,"parent":"Hq","inputs":{"CONDITION":[2,"a+V"],"SUBSTACK":[2,"mv"]},"fields":{},"shadow":false,"topLevel":false},"a+V":{"opcode":"operator_equals","next":null,"parent":"Hr","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"mv":{"opcode":"motion_gotoxy","next":"Hs","parent":"Hr","inputs":{"X":[3,"afb",[4,0]],"Y":[3,"afc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afb":{"opcode":"operator_multiply","next":null,"parent":"mv","inputs":{"NUM1":[3,"afd",[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afd":{"opcode":"operator_add","next":null,"parent":"afb","inputs":{"NUM1":[3,"a+W",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a+W":{"opcode":"operator_multiply","next":null,"parent":"afd","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"afc":{"opcode":"operator_multiply","next":null,"parent":"mv","inputs":{"NUM1":[3,"afe",[4,0]],"NUM2":[3,[12,"stretch_y","9*o%9GxNGz?fbMF7pB8J"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afe":{"opcode":"operator_subtract","next":null,"parent":"afc","inputs":{"NUM1":[3,"aff",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aff":{"opcode":"operator_multiply","next":null,"parent":"afe","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,"a+X",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+X":{"opcode":"operator_subtract","next":null,"parent":"aff","inputs":{"NUM1":[1,[4,"120"]],"NUM2":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hs":{"opcode":"data_setvariableto","next":"Ht","parent":"mv","inputs":{"VALUE":[3,"a+Y",[10,""]]},"fields":{"VARIABLE":["draw: pixel","h9od:zPMB5,pRnd*~S?_"]},"shadow":false,"topLevel":false},"a+Y":{"opcode":"operator_multiply","next":null,"parent":"Hs","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ht":{"opcode":"control_repeat","next":null,"parent":"Hs","inputs":{"TIMES":[3,"afg",[6,0]],"SUBSTACK":[2,"Hu"]},"fields":{},"shadow":false,"topLevel":false},"afg":{"opcode":"operator_subtract","next":null,"parent":"Ht","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,"a+Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+Z":{"opcode":"operator_add","next":null,"parent":"afg","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hu":{"opcode":"control_repeat","next":"Hv","parent":"Ht","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"afh"]},"fields":{},"shadow":false,"topLevel":false},"afh":{"opcode":"data_changevariableby","next":"mw","parent":"Hu","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["draw: pixel","h9od:zPMB5,pRnd*~S?_"]},"shadow":false,"topLevel":false},"mw":{"opcode":"control_if","next":"afi","parent":"afh","inputs":{"CONDITION":[2,"afj"],"SUBSTACK":[2,"Hw"]},"fields":{},"shadow":false,"topLevel":false},"afj":{"opcode":"operator_not","next":null,"parent":"mw","inputs":{"OPERAND":[2,"Hx"]},"fields":{},"shadow":false,"topLevel":false},"Hx":{"opcode":"operator_or","next":null,"parent":"afj","inputs":{"OPERAND1":[2,"afk"],"OPERAND2":[2,"afl"]},"fields":{},"shadow":false,"topLevel":false},"afk":{"opcode":"operator_equals","next":null,"parent":"Hx","inputs":{"OPERAND1":[3,"a+0",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+0":{"opcode":"data_itemoflist","next":null,"parent":"afk","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"afl":{"opcode":"operator_equals","next":null,"parent":"Hx","inputs":{"OPERAND1":[3,"a+1",[10,""]],"OPERAND2":[3,[12,"bg_color","~s-a1kNvmHy%k|6}Y3^~"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+1":{"opcode":"data_itemoflist","next":null,"parent":"afl","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Hw":{"opcode":"pen_setPenColorToColor","next":"afm","parent":"mw","inputs":{"COLOR":[3,"a+2",[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"a+2":{"opcode":"data_itemoflist","next":null,"parent":"Hw","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"afm":{"opcode":"pen_penDown","next":"a+3","parent":"Hw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a+3":{"opcode":"pen_penUp","next":null,"parent":"afm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"afi":{"opcode":"motion_changexby","next":null,"parent":"mw","inputs":{"DX":[3,"a+4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+4":{"opcode":"operator_multiply","next":null,"parent":"afi","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hv":{"opcode":"motion_setx","next":"afn","parent":"Hu","inputs":{"X":[3,"afo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afo":{"opcode":"operator_multiply","next":null,"parent":"Hv","inputs":{"NUM1":[3,"afp",[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afp":{"opcode":"operator_add","next":null,"parent":"afo","inputs":{"NUM1":[3,"a+5",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a+5":{"opcode":"operator_multiply","next":null,"parent":"afp","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"afn":{"opcode":"motion_changeyby","next":null,"parent":"Hv","inputs":{"DY":[3,"afq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afq":{"opcode":"operator_multiply","next":null,"parent":"afn","inputs":{"NUM1":[3,"a+6",[4,0]],"NUM2":[3,[12,"stretch_y","9*o%9GxNGz?fbMF7pB8J"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a+6":{"opcode":"operator_multiply","next":null,"parent":"afq","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"a+7":{"opcode":"event_whenbroadcastreceived","next":"a+8","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["draw","a,=[Gay5*+98NY%7e1=p"]},"shadow":false,"topLevel":true,"x":709,"y":64},"a+9":{"opcode":"event_whenkeypressed","next":"mx","parent":null,"inputs":{},"fields":{"KEY_OPTION":["8",null]},"shadow":false,"topLevel":true,"x":48,"y":1348},"mx":{"opcode":"control_if_else","next":null,"parent":"a+9","inputs":{"CONDITION":[2,"afr"],"SUBSTACK":[2,"afs"],"SUBSTACK2":[2,"aft"]},"fields":{},"shadow":false,"topLevel":false},"afr":{"opcode":"operator_equals","next":null,"parent":"mx","inputs":{"OPERAND1":[3,"a+!",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a+!":{"opcode":"data_itemoflist","next":null,"parent":"afr","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"afs":{"opcode":"data_hidevariable","next":"afu","parent":"mx","inputs":{},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"afu":{"opcode":"data_hidevariable","next":"afv","parent":"afs","inputs":{},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"afv":{"opcode":"data_hidevariable","next":"afw","parent":"afu","inputs":{},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"afw":{"opcode":"data_hidevariable","next":"afx","parent":"afv","inputs":{},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"afx":{"opcode":"data_hidevariable","next":"afy","parent":"afw","inputs":{},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"afy":{"opcode":"data_hidevariable","next":"a+#","parent":"afx","inputs":{},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"a+#":{"opcode":"data_replaceitemoflist","next":null,"parent":"afy","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"aft":{"opcode":"data_showvariable","next":"afz","parent":"mx","inputs":{},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"afz":{"opcode":"data_showvariable","next":"afA","parent":"aft","inputs":{},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"afA":{"opcode":"data_showvariable","next":"afB","parent":"afz","inputs":{},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"afB":{"opcode":"data_showvariable","next":"afC","parent":"afA","inputs":{},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"afC":{"opcode":"data_showvariable","next":"afD","parent":"afB","inputs":{},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"afD":{"opcode":"data_showvariable","next":"a+%","parent":"afC","inputs":{},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"a+%":{"opcode":"data_replaceitemoflist","next":null,"parent":"afD","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"a+(":{"opcode":"event_whenbroadcastreceived","next":"afE","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":709,"y":1680},"afE":{"opcode":"data_setvariableto","next":"afF","parent":"a+(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display_mode","73W`D}JRkTT8cP#X0=^@"]},"shadow":false,"topLevel":false},"afF":{"opcode":"data_setvariableto","next":"afG","parent":"afE","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"afG":{"opcode":"data_setvariableto","next":"afH","parent":"afF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"afH":{"opcode":"data_setvariableto","next":"afI","parent":"afG","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"afI":{"opcode":"data_setvariableto","next":"afJ","parent":"afH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"afJ":{"opcode":"data_setvariableto","next":"a+)","parent":"afI","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"a+)":{"opcode":"data_setvariableto","next":null,"parent":"afJ","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"a+*":{"opcode":"event_whenbroadcastreceived","next":"a++","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":2264},"a++":{"opcode":"procedures_call","next":null,"parent":"a+*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","warp":"false"}},"a+,":{"opcode":"event_whenbroadcastreceived","next":"afK","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["display_size","0|$coU#Vlwnj!3!NWjhi"]},"shadow":false,"topLevel":true,"x":48,"y":64},"afK":{"opcode":"data_setvariableto","next":"afL","parent":"a+,","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"afL":{"opcode":"data_setvariableto","next":"Hy","parent":"afK","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"Hy":{"opcode":"data_setvariableto","next":"my","parent":"afL","inputs":{"VALUE":[3,"afM",[10,""]]},"fields":{"VARIABLE":["display_mode","73W`D}JRkTT8cP#X0=^@"]},"shadow":false,"topLevel":false},"afM":{"opcode":"operator_mod","next":null,"parent":"Hy","inputs":{"NUM1":[3,"a+-",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a+-":{"opcode":"operator_add","next":null,"parent":"afM","inputs":{"NUM1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"my":{"opcode":"control_if","next":"mz","parent":"Hy","inputs":{"CONDITION":[2,"a+."],"SUBSTACK":[2,"afN"]},"fields":{},"shadow":false,"topLevel":false},"a+.":{"opcode":"operator_equals","next":null,"parent":"my","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"afN":{"opcode":"data_setvariableto","next":"a+/","parent":"my","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"a+/":{"opcode":"data_setvariableto","next":null,"parent":"afN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"mz":{"opcode":"control_if","next":"mA","parent":"my","inputs":{"CONDITION":[2,"a+:"],"SUBSTACK":[2,"Hz"]},"fields":{},"shadow":false,"topLevel":false},"a+:":{"opcode":"operator_equals","next":null,"parent":"mz","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Hz":{"opcode":"data_setvariableto","next":"afO","parent":"mz","inputs":{"VALUE":[3,"afP",[10,""]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"afP":{"opcode":"operator_add","next":null,"parent":"Hz","inputs":{"NUM1":[1,[4,"1.5"]],"NUM2":[3,"afQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afQ":{"opcode":"operator_divide","next":null,"parent":"afP","inputs":{"NUM1":[3,"a+;",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a+;":{"opcode":"operator_add","next":null,"parent":"afQ","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afO":{"opcode":"data_setvariableto","next":null,"parent":"Hz","inputs":{"VALUE":[3,"afR",[10,""]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"afR":{"opcode":"operator_add","next":null,"parent":"afO","inputs":{"NUM1":[1,[4,"0.75"]],"NUM2":[3,"afS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afS":{"opcode":"operator_divide","next":null,"parent":"afR","inputs":{"NUM1":[3,"a+=",[4,0]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"a+=":{"opcode":"operator_add","next":null,"parent":"afS","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"mA":{"opcode":"control_if","next":"mB","parent":"mz","inputs":{"CONDITION":[2,"a+?"],"SUBSTACK":[2,"HA"]},"fields":{},"shadow":false,"topLevel":false},"a+?":{"opcode":"operator_equals","next":null,"parent":"mA","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"HA":{"opcode":"data_setvariableto","next":"HB","parent":"mA","inputs":{"VALUE":[3,"afT",[10,""]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"afT":{"opcode":"operator_add","next":null,"parent":"HA","inputs":{"NUM1":[1,[4,"1.5"]],"NUM2":[3,"afU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afU":{"opcode":"operator_divide","next":null,"parent":"afT","inputs":{"NUM1":[3,"a+@",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a+@":{"opcode":"operator_add","next":null,"parent":"afU","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HB":{"opcode":"data_setvariableto","next":"afV","parent":"HA","inputs":{"VALUE":[3,"afW",[10,""]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"afW":{"opcode":"operator_add","next":null,"parent":"HB","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"afX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afX":{"opcode":"operator_divide","next":null,"parent":"afW","inputs":{"NUM1":[3,"a+[",[4,0]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"a+[":{"opcode":"operator_add","next":null,"parent":"afX","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afV":{"opcode":"data_changevariableby","next":null,"parent":"HB","inputs":{"VALUE":[3,"afY",[4,0]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"afY":{"opcode":"operator_subtract","next":null,"parent":"afV","inputs":{"NUM1":[1,[4,"0.25"]],"NUM2":[3,"afZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afZ":{"opcode":"operator_divide","next":null,"parent":"afY","inputs":{"NUM1":[3,"a+]",[4,0]],"NUM2":[1,[4,"192"]]},"fields":{},"shadow":false,"topLevel":false},"a+]":{"opcode":"operator_add","next":null,"parent":"afZ","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"mB":{"opcode":"control_if","next":"af0","parent":"mA","inputs":{"CONDITION":[2,"a+^"],"SUBSTACK":[2,"af1"]},"fields":{},"shadow":false,"topLevel":false},"a+^":{"opcode":"operator_equals","next":null,"parent":"mB","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"af1":{"opcode":"data_setvariableto","next":"a+_","parent":"mB","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"a+_":{"opcode":"data_setvariableto","next":null,"parent":"af1","inputs":{"VALUE":[1,[10,"0.24"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"af0":{"opcode":"procedures_call","next":"a+`","parent":"mB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","warp":"true"}},"a+`":{"opcode":"procedures_call","next":null,"parent":"af0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","warp":"false"}},"af2":{"opcode":"procedures_definition","next":"af3","parent":null,"inputs":{"custom_block":[1,"a+{"]},"fields":{},"shadow":false,"topLevel":true,"x":1874,"y":64},"a+{":{"opcode":"procedures_prototype","next":null,"parent":"af2","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"af3":{"opcode":"motion_gotoxy","next":"af4","parent":"af2","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"af4":{"opcode":"pen_setPenSizeTo","next":"af5","parent":"af3","inputs":{"SIZE":[1,[4,"750"]]},"fields":{},"shadow":false,"topLevel":false},"af5":{"opcode":"pen_setPenColorToColor","next":"HC","parent":"af4","inputs":{"COLOR":[1,[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"HC":{"opcode":"pen_setPenColorParamTo","next":"af6","parent":"af5","inputs":{"COLOR_PARAM":[1,"a+|"],"VALUE":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"a+|":{"opcode":"pen_menu_colorParam","next":null,"parent":"HC","inputs":{},"fields":{"colorParam":["transparency",null]},"shadow":true,"topLevel":false},"af6":{"opcode":"pen_penDown","next":"a+}","parent":"HC","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a+}":{"opcode":"pen_penUp","next":null,"parent":"af6","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a+8":{"opcode":"procedures_call","next":null,"parent":"a+7","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","warp":"true"}}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":2,"dataFormat":"png","assetId":"c446646a95cd43c36d25583fdaea3dbc","md5ext":"c446646a95cd43c36d25583fdaea3dbc.png","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":12,"visible":false,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"5b","variables":{",t*Z$?npxtUrPvuD([wH":["command",0],"C$3%UxOY37Q#Dsvx}pl%":["a_period",107],"1dl`5c(ttkH8zjjKw3]h":["b_period",170],"Zglcb5*?xw@Pwq/!OgNE":["c_period",106],"^1+.`x@~.CAD5*aQd5z?":["a_volume","0"],"bp]UrL+l(!XQs0b81aNn":["b_volume","0"],"[y{.(/{:CXtsj~;{6tBJ":["c_volume","0"],"~iiQIbIjt?[mwNAT~huV":["id",9],"*BbF=^noa+^(po`UzO^q":["a_freq",522.7140771028037],"A.FiYg2V3]9MvGX^[W-F":["b_freq",329.00238970588236],"0!}3I/:t|H,p/H;u;cje":["c_freq",527.6453419811321],"3Wx!o~B/=iFPCh,V5Ll^":["a_enabled",0],"WVeQ5OsR!_8f|-c%t5(G":["b_enabled",1],"caul(Af@e*}P?S`EA[Qa":["c_enabled",1]},"lists":{},"broadcasts":{},"blocks":{"a+~":{"opcode":"event_whenbroadcastreceived","next":"HD","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["5b","ET.1ru=%3YXJv8(/!(4S"]},"shadow":false,"topLevel":true,"x":48,"y":332},"HD":{"opcode":"data_setvariableto","next":"mC","parent":"a+~","inputs":{"VALUE":[3,"af7",[10,""]]},"fields":{"VARIABLE":["command",",t*Z$?npxtUrPvuD([wH"]},"shadow":false,"topLevel":false},"af7":{"opcode":"sensing_of","next":null,"parent":"HD","inputs":{"OBJECT":[1,"a,a"]},"fields":{"PROPERTY":["$5b_command",null]},"shadow":false,"topLevel":false},"a,a":{"opcode":"sensing_of_object_menu","next":null,"parent":"af7","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mC":{"opcode":"control_if","next":"mD","parent":"HD","inputs":{"CONDITION":[2,"a,b"],"SUBSTACK":[2,"af8"]},"fields":{},"shadow":false,"topLevel":false},"a,b":{"opcode":"operator_equals","next":null,"parent":"mC","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"af8":{"opcode":"data_setvariableto","next":null,"parent":"mC","inputs":{"VALUE":[3,"HE",[10,""]]},"fields":{"VARIABLE":["a_period","C$3%UxOY37Q#Dsvx}pl%"]},"shadow":false,"topLevel":false},"HE":{"opcode":"operator_add","next":null,"parent":"af8","inputs":{"NUM1":[3,"af9",[4,0]],"NUM2":[3,"af!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af9":{"opcode":"operator_subtract","next":null,"parent":"HE","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[3,"a,c",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,c":{"opcode":"operator_mod","next":null,"parent":"af9","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af!":{"opcode":"sensing_of","next":null,"parent":"HE","inputs":{"OBJECT":[1,"a,d"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,d":{"opcode":"sensing_of_object_menu","next":null,"parent":"af!","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mD":{"opcode":"control_if","next":"mE","parent":"mC","inputs":{"CONDITION":[2,"a,e"],"SUBSTACK":[2,"af#"]},"fields":{},"shadow":false,"topLevel":false},"a,e":{"opcode":"operator_equals","next":null,"parent":"mD","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"af#":{"opcode":"data_setvariableto","next":null,"parent":"mD","inputs":{"VALUE":[3,"HF",[10,""]]},"fields":{"VARIABLE":["a_period","C$3%UxOY37Q#Dsvx}pl%"]},"shadow":false,"topLevel":false},"HF":{"opcode":"operator_add","next":null,"parent":"af#","inputs":{"NUM1":[3,"a,f",[4,0]],"NUM2":[3,"af%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,f":{"opcode":"operator_mod","next":null,"parent":"HF","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af%":{"opcode":"operator_multiply","next":null,"parent":"HF","inputs":{"NUM1":[3,"af(",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af(":{"opcode":"operator_mod","next":null,"parent":"af%","inputs":{"NUM1":[3,"af)",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"af)":{"opcode":"sensing_of","next":null,"parent":"af(","inputs":{"OBJECT":[1,"a,g"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,g":{"opcode":"sensing_of_object_menu","next":null,"parent":"af)","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mE":{"opcode":"control_if","next":"mF","parent":"mD","inputs":{"CONDITION":[2,"a,h"],"SUBSTACK":[2,"af*"]},"fields":{},"shadow":false,"topLevel":false},"a,h":{"opcode":"operator_equals","next":null,"parent":"mE","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"af*":{"opcode":"data_setvariableto","next":null,"parent":"mE","inputs":{"VALUE":[3,"HG",[10,""]]},"fields":{"VARIABLE":["b_period","1dl`5c(ttkH8zjjKw3]h"]},"shadow":false,"topLevel":false},"HG":{"opcode":"operator_add","next":null,"parent":"af*","inputs":{"NUM1":[3,"af+",[4,0]],"NUM2":[3,"af,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af+":{"opcode":"operator_subtract","next":null,"parent":"HG","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[3,"a,i",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,i":{"opcode":"operator_mod","next":null,"parent":"af+","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af,":{"opcode":"sensing_of","next":null,"parent":"HG","inputs":{"OBJECT":[1,"a,j"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,j":{"opcode":"sensing_of_object_menu","next":null,"parent":"af,","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mF":{"opcode":"control_if","next":"mG","parent":"mE","inputs":{"CONDITION":[2,"a,k"],"SUBSTACK":[2,"af-"]},"fields":{},"shadow":false,"topLevel":false},"a,k":{"opcode":"operator_equals","next":null,"parent":"mF","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"af-":{"opcode":"data_setvariableto","next":null,"parent":"mF","inputs":{"VALUE":[3,"HH",[10,""]]},"fields":{"VARIABLE":["b_period","1dl`5c(ttkH8zjjKw3]h"]},"shadow":false,"topLevel":false},"HH":{"opcode":"operator_add","next":null,"parent":"af-","inputs":{"NUM1":[3,"a,l",[4,0]],"NUM2":[3,"af.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,l":{"opcode":"operator_mod","next":null,"parent":"HH","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af.":{"opcode":"operator_multiply","next":null,"parent":"HH","inputs":{"NUM1":[3,"af/",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af/":{"opcode":"operator_mod","next":null,"parent":"af.","inputs":{"NUM1":[3,"af:",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"af:":{"opcode":"sensing_of","next":null,"parent":"af/","inputs":{"OBJECT":[1,"a,m"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,m":{"opcode":"sensing_of_object_menu","next":null,"parent":"af:","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mG":{"opcode":"control_if","next":"mH","parent":"mF","inputs":{"CONDITION":[2,"a,n"],"SUBSTACK":[2,"af;"]},"fields":{},"shadow":false,"topLevel":false},"a,n":{"opcode":"operator_equals","next":null,"parent":"mG","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"af;":{"opcode":"data_setvariableto","next":null,"parent":"mG","inputs":{"VALUE":[3,"HI",[10,""]]},"fields":{"VARIABLE":["c_period","Zglcb5*?xw@Pwq/!OgNE"]},"shadow":false,"topLevel":false},"HI":{"opcode":"operator_add","next":null,"parent":"af;","inputs":{"NUM1":[3,"af=",[4,0]],"NUM2":[3,"af?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af=":{"opcode":"operator_subtract","next":null,"parent":"HI","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[3,"a,o",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,o":{"opcode":"operator_mod","next":null,"parent":"af=","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af?":{"opcode":"sensing_of","next":null,"parent":"HI","inputs":{"OBJECT":[1,"a,p"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,p":{"opcode":"sensing_of_object_menu","next":null,"parent":"af?","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mH":{"opcode":"control_if","next":"mI","parent":"mG","inputs":{"CONDITION":[2,"a,q"],"SUBSTACK":[2,"af@"]},"fields":{},"shadow":false,"topLevel":false},"a,q":{"opcode":"operator_equals","next":null,"parent":"mH","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"af@":{"opcode":"data_setvariableto","next":null,"parent":"mH","inputs":{"VALUE":[3,"HJ",[10,""]]},"fields":{"VARIABLE":["c_period","Zglcb5*?xw@Pwq/!OgNE"]},"shadow":false,"topLevel":false},"HJ":{"opcode":"operator_add","next":null,"parent":"af@","inputs":{"NUM1":[3,"a,r",[4,0]],"NUM2":[3,"af[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,r":{"opcode":"operator_mod","next":null,"parent":"HJ","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af[":{"opcode":"operator_multiply","next":null,"parent":"HJ","inputs":{"NUM1":[3,"af]",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"af]":{"opcode":"operator_mod","next":null,"parent":"af[","inputs":{"NUM1":[3,"af^",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"af^":{"opcode":"sensing_of","next":null,"parent":"af]","inputs":{"OBJECT":[1,"a,s"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,s":{"opcode":"sensing_of_object_menu","next":null,"parent":"af^","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mI":{"opcode":"control_if","next":"mJ","parent":"mH","inputs":{"CONDITION":[2,"a,t"],"SUBSTACK":[2,"HK"]},"fields":{},"shadow":false,"topLevel":false},"a,t":{"opcode":"operator_equals","next":null,"parent":"mI","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"HK":{"opcode":"data_setvariableto","next":"HL","parent":"mI","inputs":{"VALUE":[3,"af_",[10,""]]},"fields":{"VARIABLE":["a_enabled","3Wx!o~B/=iFPCh,V5Ll^"]},"shadow":false,"topLevel":false},"af_":{"opcode":"operator_subtract","next":null,"parent":"HK","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"af`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af`":{"opcode":"operator_mod","next":null,"parent":"af_","inputs":{"NUM1":[3,"af{",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"af{":{"opcode":"sensing_of","next":null,"parent":"af`","inputs":{"OBJECT":[1,"a,u"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,u":{"opcode":"sensing_of_object_menu","next":null,"parent":"af{","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"HL":{"opcode":"data_setvariableto","next":"af|","parent":"HK","inputs":{"VALUE":[3,"af}",[10,""]]},"fields":{"VARIABLE":["b_enabled","WVeQ5OsR!_8f|-c%t5(G"]},"shadow":false,"topLevel":false},"af}":{"opcode":"operator_subtract","next":null,"parent":"HL","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"af~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af~":{"opcode":"operator_mod","next":null,"parent":"af}","inputs":{"NUM1":[3,"aga",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aga":{"opcode":"operator_mathop","next":null,"parent":"af~","inputs":{"NUM":[3,"agb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"agb":{"opcode":"operator_divide","next":null,"parent":"aga","inputs":{"NUM1":[3,"agc",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"agc":{"opcode":"sensing_of","next":null,"parent":"agb","inputs":{"OBJECT":[1,"a,v"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,v":{"opcode":"sensing_of_object_menu","next":null,"parent":"agc","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"af|":{"opcode":"data_setvariableto","next":null,"parent":"HL","inputs":{"VALUE":[3,"agd",[10,""]]},"fields":{"VARIABLE":["c_enabled","caul(Af@e*}P?S`EA[Qa"]},"shadow":false,"topLevel":false},"agd":{"opcode":"operator_subtract","next":null,"parent":"af|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"age",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"age":{"opcode":"operator_mod","next":null,"parent":"agd","inputs":{"NUM1":[3,"agf",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"agf":{"opcode":"operator_mathop","next":null,"parent":"age","inputs":{"NUM":[3,"agg",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"agg":{"opcode":"operator_divide","next":null,"parent":"agf","inputs":{"NUM1":[3,"agh",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agh":{"opcode":"sensing_of","next":null,"parent":"agg","inputs":{"OBJECT":[1,"a,w"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,w":{"opcode":"sensing_of_object_menu","next":null,"parent":"agh","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mJ":{"opcode":"control_if","next":"PZ","parent":"mI","inputs":{"CONDITION":[2,"a,x"],"SUBSTACK":[2,"agi"]},"fields":{},"shadow":false,"topLevel":false},"a,x":{"opcode":"operator_equals","next":null,"parent":"mJ","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"agi":{"opcode":"data_setvariableto","next":null,"parent":"mJ","inputs":{"VALUE":[3,"agj",[10,""]]},"fields":{"VARIABLE":["a_volume","^1+.`x@~.CAD5*aQd5z?"]},"shadow":false,"topLevel":false},"agj":{"opcode":"operator_multiply","next":null,"parent":"agi","inputs":{"NUM1":[3,"agk",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"agk":{"opcode":"operator_mod","next":null,"parent":"agj","inputs":{"NUM1":[3,"agl",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"agl":{"opcode":"sensing_of","next":null,"parent":"agk","inputs":{"OBJECT":[1,"a,y"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,y":{"opcode":"sensing_of_object_menu","next":null,"parent":"agl","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"PZ":{"opcode":"control_if","next":"mK","parent":"mJ","inputs":{"CONDITION":[2,"a,z"],"SUBSTACK":[2,"agm"]},"fields":{},"shadow":false,"topLevel":false},"a,z":{"opcode":"operator_equals","next":null,"parent":"PZ","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"agm":{"opcode":"data_setvariableto","next":null,"parent":"PZ","inputs":{"VALUE":[3,"agn",[10,""]]},"fields":{"VARIABLE":["b_volume","bp]UrL+l(!XQs0b81aNn"]},"shadow":false,"topLevel":false},"agn":{"opcode":"operator_multiply","next":null,"parent":"agm","inputs":{"NUM1":[3,"ago",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ago":{"opcode":"operator_mod","next":null,"parent":"agn","inputs":{"NUM1":[3,"agp",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"agp":{"opcode":"sensing_of","next":null,"parent":"ago","inputs":{"OBJECT":[1,"a,A"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,A":{"opcode":"sensing_of_object_menu","next":null,"parent":"agp","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"mK":{"opcode":"control_if","next":"HM","parent":"PZ","inputs":{"CONDITION":[2,"a,B"],"SUBSTACK":[2,"agq"]},"fields":{},"shadow":false,"topLevel":false},"a,B":{"opcode":"operator_equals","next":null,"parent":"mK","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"agq":{"opcode":"data_setvariableto","next":null,"parent":"mK","inputs":{"VALUE":[3,"agr",[10,""]]},"fields":{"VARIABLE":["c_volume","[y{.(/{:CXtsj~;{6tBJ"]},"shadow":false,"topLevel":false},"agr":{"opcode":"operator_multiply","next":null,"parent":"agq","inputs":{"NUM1":[3,"ags",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ags":{"opcode":"operator_mod","next":null,"parent":"agr","inputs":{"NUM1":[3,"agt",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"agt":{"opcode":"sensing_of","next":null,"parent":"ags","inputs":{"OBJECT":[1,"a,C"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"a,C":{"opcode":"sensing_of_object_menu","next":null,"parent":"agt","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"HM":{"opcode":"data_setvariableto","next":"HN","parent":"mK","inputs":{"VALUE":[3,"agu",[10,""]]},"fields":{"VARIABLE":["a_freq","*BbF=^noa+^(po`UzO^q"]},"shadow":false,"topLevel":false},"agu":{"opcode":"operator_divide","next":null,"parent":"HM","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"a,D",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,D":{"opcode":"operator_multiply","next":null,"parent":"agu","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HN":{"opcode":"data_setvariableto","next":"agv","parent":"HM","inputs":{"VALUE":[3,"agw",[10,""]]},"fields":{"VARIABLE":["b_freq","A.FiYg2V3]9MvGX^[W-F"]},"shadow":false,"topLevel":false},"agw":{"opcode":"operator_divide","next":null,"parent":"HN","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"a,E",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,E":{"opcode":"operator_multiply","next":null,"parent":"agw","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agv":{"opcode":"data_setvariableto","next":null,"parent":"HN","inputs":{"VALUE":[3,"agx",[10,""]]},"fields":{"VARIABLE":["c_freq","0!}3I/:t|H,p/H;u;cje"]},"shadow":false,"topLevel":false},"agx":{"opcode":"operator_divide","next":null,"parent":"agv","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"a,F",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,F":{"opcode":"operator_multiply","next":null,"parent":"agx","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,G":{"opcode":"event_whenbroadcastreceived","next":"HO","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":933,"y":64},"HO":{"opcode":"control_if","next":null,"parent":"a,G","inputs":{"CONDITION":[2,"a,H"],"SUBSTACK":[2,"agy"]},"fields":{},"shadow":false,"topLevel":false},"a,H":{"opcode":"operator_equals","next":null,"parent":"HO","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"agy":{"opcode":"control_for_each","next":null,"parent":"HO","inputs":{"VALUE":[1,[6,"9"]],"SUBSTACK":[2,"agz"]},"fields":{"VARIABLE":["id","~iiQIbIjt?[mwNAT~huV"]},"shadow":false,"topLevel":false},"agz":{"opcode":"control_create_clone_of","next":null,"parent":"agy","inputs":{"CLONE_OPTION":[1,"a,I"]},"fields":{},"shadow":false,"topLevel":false},"a,I":{"opcode":"control_create_clone_of_menu","next":null,"parent":"agz","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a,J":{"opcode":"control_start_as_clone","next":"agA","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":933,"y":620},"agA":{"opcode":"sound_setvolumeto","next":"mL","parent":"a,J","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"mL":{"opcode":"control_if","next":"mM","parent":"agA","inputs":{"CONDITION":[2,"a,K"],"SUBSTACK":[2,"agB"]},"fields":{},"shadow":false,"topLevel":false},"a,K":{"opcode":"operator_equals","next":null,"parent":"mL","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"agB":{"opcode":"control_forever","next":null,"parent":"mL","inputs":{"SUBSTACK":[2,"agC"]},"fields":{},"shadow":false,"topLevel":false},"agC":{"opcode":"sound_setvolumeto","next":null,"parent":"agB","inputs":{"VOLUME":[3,"agD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agD":{"opcode":"operator_multiply","next":null,"parent":"agC","inputs":{"NUM1":[3,"agE",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agE":{"opcode":"operator_multiply","next":null,"parent":"agD","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"a,L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,L":{"opcode":"operator_lt","next":null,"parent":"agE","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"mM":{"opcode":"control_if","next":"mN","parent":"mL","inputs":{"CONDITION":[2,"a,M"],"SUBSTACK":[2,"agF"]},"fields":{},"shadow":false,"topLevel":false},"a,M":{"opcode":"operator_equals","next":null,"parent":"mM","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"agF":{"opcode":"control_forever","next":null,"parent":"mM","inputs":{"SUBSTACK":[2,"agG"]},"fields":{},"shadow":false,"topLevel":false},"agG":{"opcode":"sound_setvolumeto","next":null,"parent":"agF","inputs":{"VOLUME":[3,"agH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agH":{"opcode":"operator_multiply","next":null,"parent":"agG","inputs":{"NUM1":[3,"agI",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agI":{"opcode":"operator_multiply","next":null,"parent":"agH","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"HP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HP":{"opcode":"operator_and","next":null,"parent":"agI","inputs":{"OPERAND1":[2,"a,N"],"OPERAND2":[2,"a,O"]},"fields":{},"shadow":false,"topLevel":false},"a,N":{"opcode":"operator_gt","next":null,"parent":"HP","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a,O":{"opcode":"operator_lt","next":null,"parent":"HP","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"mN":{"opcode":"control_if","next":"mO","parent":"mM","inputs":{"CONDITION":[2,"a,P"],"SUBSTACK":[2,"agJ"]},"fields":{},"shadow":false,"topLevel":false},"a,P":{"opcode":"operator_equals","next":null,"parent":"mN","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"agJ":{"opcode":"control_forever","next":null,"parent":"mN","inputs":{"SUBSTACK":[2,"agK"]},"fields":{},"shadow":false,"topLevel":false},"agK":{"opcode":"sound_setvolumeto","next":null,"parent":"agJ","inputs":{"VOLUME":[3,"agL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agL":{"opcode":"operator_multiply","next":null,"parent":"agK","inputs":{"NUM1":[3,"agM",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agM":{"opcode":"operator_multiply","next":null,"parent":"agL","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"a,Q",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,Q":{"opcode":"operator_gt","next":null,"parent":"agM","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"mO":{"opcode":"control_if","next":"mP","parent":"mN","inputs":{"CONDITION":[2,"a,R"],"SUBSTACK":[2,"agN"]},"fields":{},"shadow":false,"topLevel":false},"a,R":{"opcode":"operator_equals","next":null,"parent":"mO","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agN":{"opcode":"control_forever","next":null,"parent":"mO","inputs":{"SUBSTACK":[2,"agO"]},"fields":{},"shadow":false,"topLevel":false},"agO":{"opcode":"sound_setvolumeto","next":null,"parent":"agN","inputs":{"VOLUME":[3,"agP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agP":{"opcode":"operator_multiply","next":null,"parent":"agO","inputs":{"NUM1":[3,"agQ",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agQ":{"opcode":"operator_multiply","next":null,"parent":"agP","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"a,S",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,S":{"opcode":"operator_lt","next":null,"parent":"agQ","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"mP":{"opcode":"control_if","next":"mQ","parent":"mO","inputs":{"CONDITION":[2,"a,T"],"SUBSTACK":[2,"agR"]},"fields":{},"shadow":false,"topLevel":false},"a,T":{"opcode":"operator_equals","next":null,"parent":"mP","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"agR":{"opcode":"control_forever","next":null,"parent":"mP","inputs":{"SUBSTACK":[2,"agS"]},"fields":{},"shadow":false,"topLevel":false},"agS":{"opcode":"sound_setvolumeto","next":null,"parent":"agR","inputs":{"VOLUME":[3,"agT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agT":{"opcode":"operator_multiply","next":null,"parent":"agS","inputs":{"NUM1":[3,"agU",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agU":{"opcode":"operator_multiply","next":null,"parent":"agT","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"HQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HQ":{"opcode":"operator_and","next":null,"parent":"agU","inputs":{"OPERAND1":[2,"a,U"],"OPERAND2":[2,"a,V"]},"fields":{},"shadow":false,"topLevel":false},"a,U":{"opcode":"operator_gt","next":null,"parent":"HQ","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a,V":{"opcode":"operator_lt","next":null,"parent":"HQ","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"mQ":{"opcode":"control_if","next":"P0","parent":"mP","inputs":{"CONDITION":[2,"a,W"],"SUBSTACK":[2,"agV"]},"fields":{},"shadow":false,"topLevel":false},"a,W":{"opcode":"operator_equals","next":null,"parent":"mQ","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"agV":{"opcode":"control_forever","next":null,"parent":"mQ","inputs":{"SUBSTACK":[2,"agW"]},"fields":{},"shadow":false,"topLevel":false},"agW":{"opcode":"sound_setvolumeto","next":null,"parent":"agV","inputs":{"VOLUME":[3,"agX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agX":{"opcode":"operator_multiply","next":null,"parent":"agW","inputs":{"NUM1":[3,"agY",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agY":{"opcode":"operator_multiply","next":null,"parent":"agX","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"a,X",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,X":{"opcode":"operator_gt","next":null,"parent":"agY","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"P0":{"opcode":"control_if","next":"P1","parent":"mQ","inputs":{"CONDITION":[2,"a,Y"],"SUBSTACK":[2,"agZ"]},"fields":{},"shadow":false,"topLevel":false},"a,Y":{"opcode":"operator_equals","next":null,"parent":"P0","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"agZ":{"opcode":"control_forever","next":null,"parent":"P0","inputs":{"SUBSTACK":[2,"ag0"]},"fields":{},"shadow":false,"topLevel":false},"ag0":{"opcode":"sound_setvolumeto","next":null,"parent":"agZ","inputs":{"VOLUME":[3,"ag1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag1":{"opcode":"operator_multiply","next":null,"parent":"ag0","inputs":{"NUM1":[3,"ag2",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag2":{"opcode":"operator_multiply","next":null,"parent":"ag1","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"a,Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,Z":{"opcode":"operator_lt","next":null,"parent":"ag2","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"P1":{"opcode":"control_if","next":"HR","parent":"P0","inputs":{"CONDITION":[2,"a,0"],"SUBSTACK":[2,"ag3"]},"fields":{},"shadow":false,"topLevel":false},"a,0":{"opcode":"operator_equals","next":null,"parent":"P1","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ag3":{"opcode":"control_forever","next":null,"parent":"P1","inputs":{"SUBSTACK":[2,"ag4"]},"fields":{},"shadow":false,"topLevel":false},"ag4":{"opcode":"sound_setvolumeto","next":null,"parent":"ag3","inputs":{"VOLUME":[3,"ag5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag5":{"opcode":"operator_multiply","next":null,"parent":"ag4","inputs":{"NUM1":[3,"ag6",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag6":{"opcode":"operator_multiply","next":null,"parent":"ag5","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"HS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HS":{"opcode":"operator_and","next":null,"parent":"ag6","inputs":{"OPERAND1":[2,"a,1"],"OPERAND2":[2,"a,2"]},"fields":{},"shadow":false,"topLevel":false},"a,1":{"opcode":"operator_gt","next":null,"parent":"HS","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a,2":{"opcode":"operator_lt","next":null,"parent":"HS","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"HR":{"opcode":"control_if","next":null,"parent":"P1","inputs":{"CONDITION":[2,"a,3"],"SUBSTACK":[2,"ag7"]},"fields":{},"shadow":false,"topLevel":false},"a,3":{"opcode":"operator_equals","next":null,"parent":"HR","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ag7":{"opcode":"control_forever","next":null,"parent":"HR","inputs":{"SUBSTACK":[2,"ag8"]},"fields":{},"shadow":false,"topLevel":false},"ag8":{"opcode":"sound_setvolumeto","next":null,"parent":"ag7","inputs":{"VOLUME":[3,"ag9",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag9":{"opcode":"operator_multiply","next":null,"parent":"ag8","inputs":{"NUM1":[3,"ag!",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag!":{"opcode":"operator_multiply","next":null,"parent":"ag9","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"a,4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a,4":{"opcode":"operator_gt","next":null,"parent":"ag!","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"a,5":{"opcode":"control_start_as_clone","next":"ag#","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1897,"y":64},"ag#":{"opcode":"sound_cleareffects","next":"P2","parent":"a,5","inputs":{},"fields":{},"shadow":false,"topLevel":false},"P2":{"opcode":"control_if","next":"P3","parent":"ag#","inputs":{"CONDITION":[2,"a,6"],"SUBSTACK":[2,"ag%"]},"fields":{},"shadow":false,"topLevel":false},"a,6":{"opcode":"operator_equals","next":null,"parent":"P2","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ag%":{"opcode":"control_forever","next":null,"parent":"P2","inputs":{"SUBSTACK":[2,"ag("]},"fields":{},"shadow":false,"topLevel":false},"ag(":{"opcode":"sound_seteffectto","next":null,"parent":"ag%","inputs":{"VALUE":[3,"ag)",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag)":{"opcode":"operator_multiply","next":null,"parent":"ag(","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ag*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag*":{"opcode":"operator_mathop","next":null,"parent":"ag)","inputs":{"NUM":[3,"a,7",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,7":{"opcode":"operator_divide","next":null,"parent":"ag*","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"P3":{"opcode":"control_if","next":"mR","parent":"P2","inputs":{"CONDITION":[2,"a,8"],"SUBSTACK":[2,"ag+"]},"fields":{},"shadow":false,"topLevel":false},"a,8":{"opcode":"operator_equals","next":null,"parent":"P3","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ag+":{"opcode":"control_forever","next":null,"parent":"P3","inputs":{"SUBSTACK":[2,"ag,"]},"fields":{},"shadow":false,"topLevel":false},"ag,":{"opcode":"sound_seteffectto","next":null,"parent":"ag+","inputs":{"VALUE":[3,"ag-",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag-":{"opcode":"operator_multiply","next":null,"parent":"ag,","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ag.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag.":{"opcode":"operator_mathop","next":null,"parent":"ag-","inputs":{"NUM":[3,"a,9",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,9":{"opcode":"operator_divide","next":null,"parent":"ag.","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"mR":{"opcode":"control_if","next":"mS","parent":"P3","inputs":{"CONDITION":[2,"a,!"],"SUBSTACK":[2,"ag/"]},"fields":{},"shadow":false,"topLevel":false},"a,!":{"opcode":"operator_equals","next":null,"parent":"mR","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ag/":{"opcode":"control_forever","next":null,"parent":"mR","inputs":{"SUBSTACK":[2,"ag:"]},"fields":{},"shadow":false,"topLevel":false},"ag:":{"opcode":"sound_seteffectto","next":null,"parent":"ag/","inputs":{"VALUE":[3,"ag;",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag;":{"opcode":"operator_multiply","next":null,"parent":"ag:","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ag=",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag=":{"opcode":"operator_mathop","next":null,"parent":"ag;","inputs":{"NUM":[3,"a,#",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,#":{"opcode":"operator_divide","next":null,"parent":"ag=","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"mS":{"opcode":"control_if","next":"mT","parent":"mR","inputs":{"CONDITION":[2,"a,%"],"SUBSTACK":[2,"ag?"]},"fields":{},"shadow":false,"topLevel":false},"a,%":{"opcode":"operator_equals","next":null,"parent":"mS","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ag?":{"opcode":"control_forever","next":null,"parent":"mS","inputs":{"SUBSTACK":[2,"ag@"]},"fields":{},"shadow":false,"topLevel":false},"ag@":{"opcode":"sound_seteffectto","next":null,"parent":"ag?","inputs":{"VALUE":[3,"ag[",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag[":{"opcode":"operator_multiply","next":null,"parent":"ag@","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ag]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag]":{"opcode":"operator_mathop","next":null,"parent":"ag[","inputs":{"NUM":[3,"a,(",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,(":{"opcode":"operator_divide","next":null,"parent":"ag]","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"mT":{"opcode":"control_if","next":"mU","parent":"mS","inputs":{"CONDITION":[2,"a,)"],"SUBSTACK":[2,"ag^"]},"fields":{},"shadow":false,"topLevel":false},"a,)":{"opcode":"operator_equals","next":null,"parent":"mT","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ag^":{"opcode":"control_forever","next":null,"parent":"mT","inputs":{"SUBSTACK":[2,"ag_"]},"fields":{},"shadow":false,"topLevel":false},"ag_":{"opcode":"sound_seteffectto","next":null,"parent":"ag^","inputs":{"VALUE":[3,"ag`",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag`":{"opcode":"operator_multiply","next":null,"parent":"ag_","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ag{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag{":{"opcode":"operator_mathop","next":null,"parent":"ag`","inputs":{"NUM":[3,"a,*",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,*":{"opcode":"operator_divide","next":null,"parent":"ag{","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"mU":{"opcode":"control_if","next":"mV","parent":"mT","inputs":{"CONDITION":[2,"a,+"],"SUBSTACK":[2,"ag|"]},"fields":{},"shadow":false,"topLevel":false},"a,+":{"opcode":"operator_equals","next":null,"parent":"mU","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ag|":{"opcode":"control_forever","next":null,"parent":"mU","inputs":{"SUBSTACK":[2,"ag}"]},"fields":{},"shadow":false,"topLevel":false},"ag}":{"opcode":"sound_seteffectto","next":null,"parent":"ag|","inputs":{"VALUE":[3,"ag~",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ag~":{"opcode":"operator_multiply","next":null,"parent":"ag}","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aha",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aha":{"opcode":"operator_mathop","next":null,"parent":"ag~","inputs":{"NUM":[3,"a,,",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,,":{"opcode":"operator_divide","next":null,"parent":"aha","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"mV":{"opcode":"control_if","next":"mW","parent":"mU","inputs":{"CONDITION":[2,"a,-"],"SUBSTACK":[2,"ahb"]},"fields":{},"shadow":false,"topLevel":false},"a,-":{"opcode":"operator_equals","next":null,"parent":"mV","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ahb":{"opcode":"control_forever","next":null,"parent":"mV","inputs":{"SUBSTACK":[2,"ahc"]},"fields":{},"shadow":false,"topLevel":false},"ahc":{"opcode":"sound_seteffectto","next":null,"parent":"ahb","inputs":{"VALUE":[3,"ahd",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ahd":{"opcode":"operator_multiply","next":null,"parent":"ahc","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ahe",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahe":{"opcode":"operator_mathop","next":null,"parent":"ahd","inputs":{"NUM":[3,"a,.",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,.":{"opcode":"operator_divide","next":null,"parent":"ahe","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"mW":{"opcode":"control_if","next":"HT","parent":"mV","inputs":{"CONDITION":[2,"a,/"],"SUBSTACK":[2,"ahf"]},"fields":{},"shadow":false,"topLevel":false},"a,/":{"opcode":"operator_equals","next":null,"parent":"mW","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ahf":{"opcode":"control_forever","next":null,"parent":"mW","inputs":{"SUBSTACK":[2,"ahg"]},"fields":{},"shadow":false,"topLevel":false},"ahg":{"opcode":"sound_seteffectto","next":null,"parent":"ahf","inputs":{"VALUE":[3,"ahh",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ahh":{"opcode":"operator_multiply","next":null,"parent":"ahg","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ahi",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahi":{"opcode":"operator_mathop","next":null,"parent":"ahh","inputs":{"NUM":[3,"a,:",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,:":{"opcode":"operator_divide","next":null,"parent":"ahi","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"HT":{"opcode":"control_if","next":null,"parent":"mW","inputs":{"CONDITION":[2,"a,;"],"SUBSTACK":[2,"ahj"]},"fields":{},"shadow":false,"topLevel":false},"a,;":{"opcode":"operator_equals","next":null,"parent":"HT","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ahj":{"opcode":"control_forever","next":null,"parent":"HT","inputs":{"SUBSTACK":[2,"ahk"]},"fields":{},"shadow":false,"topLevel":false},"ahk":{"opcode":"sound_seteffectto","next":null,"parent":"ahj","inputs":{"VALUE":[3,"ahl",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ahl":{"opcode":"operator_multiply","next":null,"parent":"ahk","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ahm",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahm":{"opcode":"operator_mathop","next":null,"parent":"ahl","inputs":{"NUM":[3,"a,=",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a,=":{"opcode":"operator_divide","next":null,"parent":"ahm","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"a,?":{"opcode":"event_whenbroadcastreceived","next":"ahn","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":933,"y":404},"ahn":{"opcode":"sound_stopallsounds","next":"a,@","parent":"a,?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,@":{"opcode":"control_delete_this_clone","next":null,"parent":"ahn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,[":{"opcode":"control_start_as_clone","next":"aho","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2639,"y":64},"aho":{"opcode":"control_wait","next":"mX","parent":"a,[","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"mX":{"opcode":"control_if","next":"mY","parent":"aho","inputs":{"CONDITION":[2,"a,]"],"SUBSTACK":[2,"ahp"]},"fields":{},"shadow":false,"topLevel":false},"a,]":{"opcode":"operator_equals","next":null,"parent":"mX","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ahp":{"opcode":"control_forever","next":null,"parent":"mX","inputs":{"SUBSTACK":[2,"ahq"]},"fields":{},"shadow":false,"topLevel":false},"ahq":{"opcode":"sound_playuntildone","next":null,"parent":"ahp","inputs":{"SOUND_MENU":[1,"a,^"]},"fields":{},"shadow":false,"topLevel":false},"a,^":{"opcode":"sound_sounds_menu","next":null,"parent":"ahq","inputs":{},"fields":{"SOUND_MENU":["0200",null]},"shadow":true,"topLevel":false},"mY":{"opcode":"control_if","next":"mZ","parent":"mX","inputs":{"CONDITION":[2,"a,_"],"SUBSTACK":[2,"ahr"]},"fields":{},"shadow":false,"topLevel":false},"a,_":{"opcode":"operator_equals","next":null,"parent":"mY","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ahr":{"opcode":"control_forever","next":null,"parent":"mY","inputs":{"SUBSTACK":[2,"ahs"]},"fields":{},"shadow":false,"topLevel":false},"ahs":{"opcode":"sound_playuntildone","next":null,"parent":"ahr","inputs":{"SOUND_MENU":[1,"a,`"]},"fields":{},"shadow":false,"topLevel":false},"a,`":{"opcode":"sound_sounds_menu","next":null,"parent":"ahs","inputs":{},"fields":{"SOUND_MENU":["0400",null]},"shadow":true,"topLevel":false},"mZ":{"opcode":"control_if","next":"m0","parent":"mY","inputs":{"CONDITION":[2,"a,{"],"SUBSTACK":[2,"aht"]},"fields":{},"shadow":false,"topLevel":false},"a,{":{"opcode":"operator_equals","next":null,"parent":"mZ","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aht":{"opcode":"control_forever","next":null,"parent":"mZ","inputs":{"SUBSTACK":[2,"ahu"]},"fields":{},"shadow":false,"topLevel":false},"ahu":{"opcode":"sound_playuntildone","next":null,"parent":"aht","inputs":{"SOUND_MENU":[1,"a,|"]},"fields":{},"shadow":false,"topLevel":false},"a,|":{"opcode":"sound_sounds_menu","next":null,"parent":"ahu","inputs":{},"fields":{"SOUND_MENU":["0800",null]},"shadow":true,"topLevel":false},"m0":{"opcode":"control_if","next":"m1","parent":"mZ","inputs":{"CONDITION":[2,"a,}"],"SUBSTACK":[2,"ahv"]},"fields":{},"shadow":false,"topLevel":false},"a,}":{"opcode":"operator_equals","next":null,"parent":"m0","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahv":{"opcode":"control_forever","next":null,"parent":"m0","inputs":{"SUBSTACK":[2,"ahw"]},"fields":{},"shadow":false,"topLevel":false},"ahw":{"opcode":"sound_playuntildone","next":null,"parent":"ahv","inputs":{"SOUND_MENU":[1,"a,~"]},"fields":{},"shadow":false,"topLevel":false},"a,~":{"opcode":"sound_sounds_menu","next":null,"parent":"ahw","inputs":{},"fields":{"SOUND_MENU":["1200",null]},"shadow":true,"topLevel":false},"m1":{"opcode":"control_if","next":"m2","parent":"m0","inputs":{"CONDITION":[2,"a-a"],"SUBSTACK":[2,"ahx"]},"fields":{},"shadow":false,"topLevel":false},"a-a":{"opcode":"operator_equals","next":null,"parent":"m1","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ahx":{"opcode":"control_forever","next":null,"parent":"m1","inputs":{"SUBSTACK":[2,"ahy"]},"fields":{},"shadow":false,"topLevel":false},"ahy":{"opcode":"sound_playuntildone","next":null,"parent":"ahx","inputs":{"SOUND_MENU":[1,"a-b"]},"fields":{},"shadow":false,"topLevel":false},"a-b":{"opcode":"sound_sounds_menu","next":null,"parent":"ahy","inputs":{},"fields":{"SOUND_MENU":["1400",null]},"shadow":true,"topLevel":false},"m2":{"opcode":"control_if","next":"m3","parent":"m1","inputs":{"CONDITION":[2,"a-c"],"SUBSTACK":[2,"ahz"]},"fields":{},"shadow":false,"topLevel":false},"a-c":{"opcode":"operator_equals","next":null,"parent":"m2","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ahz":{"opcode":"control_forever","next":null,"parent":"m2","inputs":{"SUBSTACK":[2,"ahA"]},"fields":{},"shadow":false,"topLevel":false},"ahA":{"opcode":"sound_playuntildone","next":null,"parent":"ahz","inputs":{"SOUND_MENU":[1,"a-d"]},"fields":{},"shadow":false,"topLevel":false},"a-d":{"opcode":"sound_sounds_menu","next":null,"parent":"ahA","inputs":{},"fields":{"SOUND_MENU":["1800",null]},"shadow":true,"topLevel":false},"m3":{"opcode":"control_if","next":"m4","parent":"m2","inputs":{"CONDITION":[2,"a-e"],"SUBSTACK":[2,"ahB"]},"fields":{},"shadow":false,"topLevel":false},"a-e":{"opcode":"operator_equals","next":null,"parent":"m3","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ahB":{"opcode":"control_forever","next":null,"parent":"m3","inputs":{"SUBSTACK":[2,"ahC"]},"fields":{},"shadow":false,"topLevel":false},"ahC":{"opcode":"sound_playuntildone","next":null,"parent":"ahB","inputs":{"SOUND_MENU":[1,"a-f"]},"fields":{},"shadow":false,"topLevel":false},"a-f":{"opcode":"sound_sounds_menu","next":null,"parent":"ahC","inputs":{},"fields":{"SOUND_MENU":["2200",null]},"shadow":true,"topLevel":false},"m4":{"opcode":"control_if","next":"HU","parent":"m3","inputs":{"CONDITION":[2,"a-g"],"SUBSTACK":[2,"ahD"]},"fields":{},"shadow":false,"topLevel":false},"a-g":{"opcode":"operator_equals","next":null,"parent":"m4","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ahD":{"opcode":"control_forever","next":null,"parent":"m4","inputs":{"SUBSTACK":[2,"ahE"]},"fields":{},"shadow":false,"topLevel":false},"ahE":{"opcode":"sound_playuntildone","next":null,"parent":"ahD","inputs":{"SOUND_MENU":[1,"a-h"]},"fields":{},"shadow":false,"topLevel":false},"a-h":{"opcode":"sound_sounds_menu","next":null,"parent":"ahE","inputs":{},"fields":{"SOUND_MENU":["2400",null]},"shadow":true,"topLevel":false},"HU":{"opcode":"control_if","next":null,"parent":"m4","inputs":{"CONDITION":[2,"a-i"],"SUBSTACK":[2,"ahF"]},"fields":{},"shadow":false,"topLevel":false},"a-i":{"opcode":"operator_equals","next":null,"parent":"HU","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ahF":{"opcode":"control_forever","next":null,"parent":"HU","inputs":{"SUBSTACK":[2,"ahG"]},"fields":{},"shadow":false,"topLevel":false},"ahG":{"opcode":"sound_playuntildone","next":null,"parent":"ahF","inputs":{"SOUND_MENU":[1,"a-j"]},"fields":{},"shadow":false,"topLevel":false},"a-j":{"opcode":"sound_sounds_menu","next":null,"parent":"ahG","inputs":{},"fields":{"SOUND_MENU":["2800",null]},"shadow":true,"topLevel":false},"a-k":{"opcode":"event_whenflagclicked","next":"ahH","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"ahH":{"opcode":"data_setvariableto","next":"ahI","parent":"a-k","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["a_volume","^1+.`x@~.CAD5*aQd5z?"]},"shadow":false,"topLevel":false},"ahI":{"opcode":"data_setvariableto","next":"a-l","parent":"ahH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["b_volume","bp]UrL+l(!XQs0b81aNn"]},"shadow":false,"topLevel":false},"a-l":{"opcode":"data_setvariableto","next":null,"parent":"ahI","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c_volume","[y{.(/{:CXtsj~;{6tBJ"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"0200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"0400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"0800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"1200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"1400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"1800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"2200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"2400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"2800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"}],"volume":100,"layerOrder":13,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"pulse0","variables":{";Xw{G@Fj6{52PEY#;]UT":["id",12]},"lists":{},"broadcasts":{},"blocks":{"a-m":{"opcode":"event_whenbroadcastreceived","next":"HV","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"HV":{"opcode":"control_if","next":null,"parent":"a-m","inputs":{"CONDITION":[2,"a-n"],"SUBSTACK":[2,"ahJ"]},"fields":{},"shadow":false,"topLevel":false},"a-n":{"opcode":"operator_equals","next":null,"parent":"HV","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ahJ":{"opcode":"control_for_each","next":null,"parent":"HV","inputs":{"VALUE":[1,[6,"12"]],"SUBSTACK":[2,"ahK"]},"fields":{"VARIABLE":["id",";Xw{G@Fj6{52PEY#;]UT"]},"shadow":false,"topLevel":false},"ahK":{"opcode":"control_create_clone_of","next":null,"parent":"ahJ","inputs":{"CLONE_OPTION":[1,"a-o"]},"fields":{},"shadow":false,"topLevel":false},"a-o":{"opcode":"control_create_clone_of_menu","next":null,"parent":"ahK","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a-p":{"opcode":"event_whenbroadcastreceived","next":"ahL","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"ahL":{"opcode":"sound_stopallsounds","next":"a-q","parent":"a-p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-q":{"opcode":"control_delete_this_clone","next":null,"parent":"ahL","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-r":{"opcode":"control_start_as_clone","next":"ahM","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"ahM":{"opcode":"control_wait","next":"m5","parent":"a-r","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m5":{"opcode":"control_if","next":"xd","parent":"ahM","inputs":{"CONDITION":[2,"a-s"],"SUBSTACK":[2,"ahN"]},"fields":{},"shadow":false,"topLevel":false},"a-s":{"opcode":"operator_equals","next":null,"parent":"m5","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ahN":{"opcode":"control_forever","next":null,"parent":"m5","inputs":{"SUBSTACK":[2,"ahO"]},"fields":{},"shadow":false,"topLevel":false},"ahO":{"opcode":"sound_playuntildone","next":null,"parent":"ahN","inputs":{"SOUND_MENU":[1,"a-t"]},"fields":{},"shadow":false,"topLevel":false},"a-t":{"opcode":"sound_sounds_menu","next":null,"parent":"ahO","inputs":{},"fields":{"SOUND_MENU":["square0_200",null]},"shadow":true,"topLevel":false},"xd":{"opcode":"control_if","next":"m6","parent":"m5","inputs":{"CONDITION":[2,"a-u"],"SUBSTACK":[2,"ahP"]},"fields":{},"shadow":false,"topLevel":false},"a-u":{"opcode":"operator_equals","next":null,"parent":"xd","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ahP":{"opcode":"control_forever","next":null,"parent":"xd","inputs":{"SUBSTACK":[2,"ahQ"]},"fields":{},"shadow":false,"topLevel":false},"ahQ":{"opcode":"sound_playuntildone","next":null,"parent":"ahP","inputs":{"SOUND_MENU":[1,"a-v"]},"fields":{},"shadow":false,"topLevel":false},"a-v":{"opcode":"sound_sounds_menu","next":null,"parent":"ahQ","inputs":{},"fields":{"SOUND_MENU":["square1_200",null]},"shadow":true,"topLevel":false},"m6":{"opcode":"control_if","next":"m7","parent":"xd","inputs":{"CONDITION":[2,"a-w"],"SUBSTACK":[2,"ahR"]},"fields":{},"shadow":false,"topLevel":false},"a-w":{"opcode":"operator_equals","next":null,"parent":"m6","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ahR":{"opcode":"control_forever","next":null,"parent":"m6","inputs":{"SUBSTACK":[2,"ahS"]},"fields":{},"shadow":false,"topLevel":false},"ahS":{"opcode":"sound_playuntildone","next":null,"parent":"ahR","inputs":{"SOUND_MENU":[1,"a-x"]},"fields":{},"shadow":false,"topLevel":false},"a-x":{"opcode":"sound_sounds_menu","next":null,"parent":"ahS","inputs":{},"fields":{"SOUND_MENU":["square2_200",null]},"shadow":true,"topLevel":false},"m7":{"opcode":"control_if","next":"m8","parent":"m6","inputs":{"CONDITION":[2,"a-y"],"SUBSTACK":[2,"ahT"]},"fields":{},"shadow":false,"topLevel":false},"a-y":{"opcode":"operator_equals","next":null,"parent":"m7","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahT":{"opcode":"control_forever","next":null,"parent":"m7","inputs":{"SUBSTACK":[2,"ahU"]},"fields":{},"shadow":false,"topLevel":false},"ahU":{"opcode":"sound_playuntildone","next":null,"parent":"ahT","inputs":{"SOUND_MENU":[1,"a-z"]},"fields":{},"shadow":false,"topLevel":false},"a-z":{"opcode":"sound_sounds_menu","next":null,"parent":"ahU","inputs":{},"fields":{"SOUND_MENU":["square3_200",null]},"shadow":true,"topLevel":false},"m8":{"opcode":"control_if","next":"m9","parent":"m7","inputs":{"CONDITION":[2,"a-A"],"SUBSTACK":[2,"ahV"]},"fields":{},"shadow":false,"topLevel":false},"a-A":{"opcode":"operator_equals","next":null,"parent":"m8","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ahV":{"opcode":"control_forever","next":null,"parent":"m8","inputs":{"SUBSTACK":[2,"ahW"]},"fields":{},"shadow":false,"topLevel":false},"ahW":{"opcode":"sound_playuntildone","next":null,"parent":"ahV","inputs":{"SOUND_MENU":[1,"a-B"]},"fields":{},"shadow":false,"topLevel":false},"a-B":{"opcode":"sound_sounds_menu","next":null,"parent":"ahW","inputs":{},"fields":{"SOUND_MENU":["square0_400",null]},"shadow":true,"topLevel":false},"m9":{"opcode":"control_if","next":"m!","parent":"m8","inputs":{"CONDITION":[2,"a-C"],"SUBSTACK":[2,"ahX"]},"fields":{},"shadow":false,"topLevel":false},"a-C":{"opcode":"operator_equals","next":null,"parent":"m9","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ahX":{"opcode":"control_forever","next":null,"parent":"m9","inputs":{"SUBSTACK":[2,"ahY"]},"fields":{},"shadow":false,"topLevel":false},"ahY":{"opcode":"sound_playuntildone","next":null,"parent":"ahX","inputs":{"SOUND_MENU":[1,"a-D"]},"fields":{},"shadow":false,"topLevel":false},"a-D":{"opcode":"sound_sounds_menu","next":null,"parent":"ahY","inputs":{},"fields":{"SOUND_MENU":["square1_400",null]},"shadow":true,"topLevel":false},"m!":{"opcode":"control_if","next":"m#","parent":"m9","inputs":{"CONDITION":[2,"a-E"],"SUBSTACK":[2,"ahZ"]},"fields":{},"shadow":false,"topLevel":false},"a-E":{"opcode":"operator_equals","next":null,"parent":"m!","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ahZ":{"opcode":"control_forever","next":null,"parent":"m!","inputs":{"SUBSTACK":[2,"ah0"]},"fields":{},"shadow":false,"topLevel":false},"ah0":{"opcode":"sound_playuntildone","next":null,"parent":"ahZ","inputs":{"SOUND_MENU":[1,"a-F"]},"fields":{},"shadow":false,"topLevel":false},"a-F":{"opcode":"sound_sounds_menu","next":null,"parent":"ah0","inputs":{},"fields":{"SOUND_MENU":["square2_400",null]},"shadow":true,"topLevel":false},"m#":{"opcode":"control_if","next":"m%","parent":"m!","inputs":{"CONDITION":[2,"a-G"],"SUBSTACK":[2,"ah1"]},"fields":{},"shadow":false,"topLevel":false},"a-G":{"opcode":"operator_equals","next":null,"parent":"m#","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ah1":{"opcode":"control_forever","next":null,"parent":"m#","inputs":{"SUBSTACK":[2,"ah2"]},"fields":{},"shadow":false,"topLevel":false},"ah2":{"opcode":"sound_playuntildone","next":null,"parent":"ah1","inputs":{"SOUND_MENU":[1,"a-H"]},"fields":{},"shadow":false,"topLevel":false},"a-H":{"opcode":"sound_sounds_menu","next":null,"parent":"ah2","inputs":{},"fields":{"SOUND_MENU":["square3_400",null]},"shadow":true,"topLevel":false},"m%":{"opcode":"control_if","next":"m(","parent":"m#","inputs":{"CONDITION":[2,"a-I"],"SUBSTACK":[2,"ah3"]},"fields":{},"shadow":false,"topLevel":false},"a-I":{"opcode":"operator_equals","next":null,"parent":"m%","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ah3":{"opcode":"control_forever","next":null,"parent":"m%","inputs":{"SUBSTACK":[2,"ah4"]},"fields":{},"shadow":false,"topLevel":false},"ah4":{"opcode":"sound_playuntildone","next":null,"parent":"ah3","inputs":{"SOUND_MENU":[1,"a-J"]},"fields":{},"shadow":false,"topLevel":false},"a-J":{"opcode":"sound_sounds_menu","next":null,"parent":"ah4","inputs":{},"fields":{"SOUND_MENU":["square0_800",null]},"shadow":true,"topLevel":false},"m(":{"opcode":"control_if","next":"m)","parent":"m%","inputs":{"CONDITION":[2,"a-K"],"SUBSTACK":[2,"ah5"]},"fields":{},"shadow":false,"topLevel":false},"a-K":{"opcode":"operator_equals","next":null,"parent":"m(","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ah5":{"opcode":"control_forever","next":null,"parent":"m(","inputs":{"SUBSTACK":[2,"ah6"]},"fields":{},"shadow":false,"topLevel":false},"ah6":{"opcode":"sound_playuntildone","next":null,"parent":"ah5","inputs":{"SOUND_MENU":[1,"a-L"]},"fields":{},"shadow":false,"topLevel":false},"a-L":{"opcode":"sound_sounds_menu","next":null,"parent":"ah6","inputs":{},"fields":{"SOUND_MENU":["square1_800",null]},"shadow":true,"topLevel":false},"m)":{"opcode":"control_if","next":"HW","parent":"m(","inputs":{"CONDITION":[2,"a-M"],"SUBSTACK":[2,"ah7"]},"fields":{},"shadow":false,"topLevel":false},"a-M":{"opcode":"operator_equals","next":null,"parent":"m)","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"ah7":{"opcode":"control_forever","next":null,"parent":"m)","inputs":{"SUBSTACK":[2,"ah8"]},"fields":{},"shadow":false,"topLevel":false},"ah8":{"opcode":"sound_playuntildone","next":null,"parent":"ah7","inputs":{"SOUND_MENU":[1,"a-N"]},"fields":{},"shadow":false,"topLevel":false},"a-N":{"opcode":"sound_sounds_menu","next":null,"parent":"ah8","inputs":{},"fields":{"SOUND_MENU":["square2_800",null]},"shadow":true,"topLevel":false},"HW":{"opcode":"control_if","next":null,"parent":"m)","inputs":{"CONDITION":[2,"a-O"],"SUBSTACK":[2,"ah9"]},"fields":{},"shadow":false,"topLevel":false},"a-O":{"opcode":"operator_equals","next":null,"parent":"HW","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ah9":{"opcode":"control_forever","next":null,"parent":"HW","inputs":{"SUBSTACK":[2,"ah!"]},"fields":{},"shadow":false,"topLevel":false},"ah!":{"opcode":"sound_playuntildone","next":null,"parent":"ah9","inputs":{"SOUND_MENU":[1,"a-P"]},"fields":{},"shadow":false,"topLevel":false},"a-P":{"opcode":"sound_sounds_menu","next":null,"parent":"ah!","inputs":{},"fields":{"SOUND_MENU":["square3_800",null]},"shadow":true,"topLevel":false},"a-Q":{"opcode":"control_start_as_clone","next":"ah#","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":64},"ah#":{"opcode":"sound_setvolumeto","next":"m*","parent":"a-Q","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m*":{"opcode":"control_if","next":"m+","parent":"ah#","inputs":{"CONDITION":[2,"a-R"],"SUBSTACK":[2,"ah%"]},"fields":{},"shadow":false,"topLevel":false},"a-R":{"opcode":"operator_lt","next":null,"parent":"m*","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ah%":{"opcode":"control_forever","next":null,"parent":"m*","inputs":{"SUBSTACK":[2,"ah("]},"fields":{},"shadow":false,"topLevel":false},"ah(":{"opcode":"sound_setvolumeto","next":null,"parent":"ah%","inputs":{"VOLUME":[3,"HX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HX":{"opcode":"operator_multiply","next":null,"parent":"ah(","inputs":{"NUM1":[3,"a-S",[4,0]],"NUM2":[3,"HY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a-S":{"opcode":"data_itemoflist","next":null,"parent":"HX","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"HY":{"opcode":"operator_multiply","next":null,"parent":"HX","inputs":{"NUM1":[3,"ah)",[4,0]],"NUM2":[3,"HZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ah)":{"opcode":"operator_lt","next":null,"parent":"HY","inputs":{"OPERAND1":[3,"a-T",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a-T":{"opcode":"data_itemoflist","next":null,"parent":"ah)","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"HZ":{"opcode":"operator_equals","next":null,"parent":"HY","inputs":{"OPERAND1":[3,"a-U",[10,""]],"OPERAND2":[3,"a-V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a-U":{"opcode":"data_itemoflist","next":null,"parent":"HZ","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a-V":{"opcode":"operator_subtract","next":null,"parent":"HZ","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m+":{"opcode":"control_if","next":"H0","parent":"m*","inputs":{"CONDITION":[2,"a-W"],"SUBSTACK":[2,"ah*"]},"fields":{},"shadow":false,"topLevel":false},"a-W":{"opcode":"operator_lt","next":null,"parent":"m+","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ah*":{"opcode":"control_forever","next":null,"parent":"m+","inputs":{"SUBSTACK":[2,"ah+"]},"fields":{},"shadow":false,"topLevel":false},"ah+":{"opcode":"sound_setvolumeto","next":null,"parent":"ah*","inputs":{"VOLUME":[3,"H1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H1":{"opcode":"operator_multiply","next":null,"parent":"ah+","inputs":{"NUM1":[3,"a-X",[4,0]],"NUM2":[3,"H2",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a-X":{"opcode":"data_itemoflist","next":null,"parent":"H1","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H2":{"opcode":"operator_multiply","next":null,"parent":"H1","inputs":{"NUM1":[3,"H3",[4,0]],"NUM2":[3,"H4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H3":{"opcode":"operator_and","next":null,"parent":"H2","inputs":{"OPERAND1":[2,"ah,"],"OPERAND2":[2,"ah-"]},"fields":{},"shadow":false,"topLevel":false},"ah,":{"opcode":"operator_gt","next":null,"parent":"H3","inputs":{"OPERAND1":[3,"a-Y",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a-Y":{"opcode":"data_itemoflist","next":null,"parent":"ah,","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ah-":{"opcode":"operator_lt","next":null,"parent":"H3","inputs":{"OPERAND1":[3,"a-Z",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"a-Z":{"opcode":"data_itemoflist","next":null,"parent":"ah-","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H4":{"opcode":"operator_equals","next":null,"parent":"H2","inputs":{"OPERAND1":[3,"a-0",[10,""]],"OPERAND2":[3,"a-1",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a-0":{"opcode":"data_itemoflist","next":null,"parent":"H4","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a-1":{"opcode":"operator_subtract","next":null,"parent":"H4","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"H0":{"opcode":"control_if","next":null,"parent":"m+","inputs":{"CONDITION":[2,"a-2"],"SUBSTACK":[2,"ah."]},"fields":{},"shadow":false,"topLevel":false},"a-2":{"opcode":"operator_lt","next":null,"parent":"H0","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ah.":{"opcode":"control_forever","next":null,"parent":"H0","inputs":{"SUBSTACK":[2,"ah/"]},"fields":{},"shadow":false,"topLevel":false},"ah/":{"opcode":"sound_setvolumeto","next":null,"parent":"ah.","inputs":{"VOLUME":[3,"H5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H5":{"opcode":"operator_multiply","next":null,"parent":"ah/","inputs":{"NUM1":[3,"a-3",[4,0]],"NUM2":[3,"H6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a-3":{"opcode":"data_itemoflist","next":null,"parent":"H5","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H6":{"opcode":"operator_multiply","next":null,"parent":"H5","inputs":{"NUM1":[3,"ah:",[4,0]],"NUM2":[3,"H7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ah:":{"opcode":"operator_gt","next":null,"parent":"H6","inputs":{"OPERAND1":[3,"a-4",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"a-4":{"opcode":"data_itemoflist","next":null,"parent":"ah:","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H7":{"opcode":"operator_equals","next":null,"parent":"H6","inputs":{"OPERAND1":[3,"a-5",[10,""]],"OPERAND2":[3,"a-6",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a-5":{"opcode":"data_itemoflist","next":null,"parent":"H7","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a-6":{"opcode":"operator_subtract","next":null,"parent":"H7","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a-7":{"opcode":"control_start_as_clone","next":"ah;","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":980},"ah;":{"opcode":"sound_cleareffects","next":"m,","parent":"a-7","inputs":{},"fields":{},"shadow":false,"topLevel":false},"m,":{"opcode":"control_if","next":"m-","parent":"ah;","inputs":{"CONDITION":[2,"a-8"],"SUBSTACK":[2,"ah="]},"fields":{},"shadow":false,"topLevel":false},"a-8":{"opcode":"operator_lt","next":null,"parent":"m,","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ah=":{"opcode":"control_forever","next":null,"parent":"m,","inputs":{"SUBSTACK":[2,"ah?"]},"fields":{},"shadow":false,"topLevel":false},"ah?":{"opcode":"sound_seteffectto","next":null,"parent":"ah=","inputs":{"VALUE":[3,"ah@",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ah@":{"opcode":"operator_multiply","next":null,"parent":"ah?","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ah[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ah[":{"opcode":"operator_mathop","next":null,"parent":"ah@","inputs":{"NUM":[3,"ah]",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ah]":{"opcode":"operator_divide","next":null,"parent":"ah[","inputs":{"NUM1":[3,"a-9",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"a-9":{"opcode":"data_itemoflist","next":null,"parent":"ah]","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"m-":{"opcode":"control_if","next":"H8","parent":"m,","inputs":{"CONDITION":[2,"a-!"],"SUBSTACK":[2,"ah^"]},"fields":{},"shadow":false,"topLevel":false},"a-!":{"opcode":"operator_lt","next":null,"parent":"m-","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ah^":{"opcode":"control_forever","next":null,"parent":"m-","inputs":{"SUBSTACK":[2,"ah_"]},"fields":{},"shadow":false,"topLevel":false},"ah_":{"opcode":"sound_seteffectto","next":null,"parent":"ah^","inputs":{"VALUE":[3,"ah`",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ah`":{"opcode":"operator_multiply","next":null,"parent":"ah_","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ah{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ah{":{"opcode":"operator_mathop","next":null,"parent":"ah`","inputs":{"NUM":[3,"ah|",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ah|":{"opcode":"operator_divide","next":null,"parent":"ah{","inputs":{"NUM1":[3,"a-#",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"a-#":{"opcode":"data_itemoflist","next":null,"parent":"ah|","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H8":{"opcode":"control_if","next":null,"parent":"m-","inputs":{"CONDITION":[2,"a-%"],"SUBSTACK":[2,"ah}"]},"fields":{},"shadow":false,"topLevel":false},"a-%":{"opcode":"operator_lt","next":null,"parent":"H8","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ah}":{"opcode":"control_forever","next":null,"parent":"H8","inputs":{"SUBSTACK":[2,"ah~"]},"fields":{},"shadow":false,"topLevel":false},"ah~":{"opcode":"sound_seteffectto","next":null,"parent":"ah}","inputs":{"VALUE":[3,"aia",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"aia":{"opcode":"operator_multiply","next":null,"parent":"ah~","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aib",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aib":{"opcode":"operator_mathop","next":null,"parent":"aia","inputs":{"NUM":[3,"aic",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"aic":{"opcode":"operator_divide","next":null,"parent":"aib","inputs":{"NUM1":[3,"a-(",[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"a-(":{"opcode":"data_itemoflist","next":null,"parent":"aic","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"square0_200","assetId":"e57364a4200c66d59c6cd2aad2ac279f","dataFormat":"wav","rate":48000,"sampleCount":192100,"md5ext":"e57364a4200c66d59c6cd2aad2ac279f.wav"},{"name":"square1_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square2_200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"square3_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square0_400","assetId":"bb3d65f47a8eb8759488124be13835a5","dataFormat":"wav","rate":48000,"sampleCount":192026,"md5ext":"bb3d65f47a8eb8759488124be13835a5.wav"},{"name":"square1_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square2_400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"square3_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square0_800","assetId":"1aded0d64fb9983939909d2a518a0995","dataFormat":"wav","rate":48000,"sampleCount":192017,"md5ext":"1aded0d64fb9983939909d2a518a0995.wav"},{"name":"square1_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"},{"name":"square2_800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"square3_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"}],"volume":0,"layerOrder":14,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"pulse1","variables":{"^R[WOHQM-#~uf#]*`Mv3":["id",12]},"lists":{},"broadcasts":{},"blocks":{"a-)":{"opcode":"event_whenbroadcastreceived","next":"H9","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"H9":{"opcode":"control_if","next":null,"parent":"a-)","inputs":{"CONDITION":[2,"a-*"],"SUBSTACK":[2,"aid"]},"fields":{},"shadow":false,"topLevel":false},"a-*":{"opcode":"operator_equals","next":null,"parent":"H9","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aie":{"opcode":"control_forever","next":null,"parent":"m.","inputs":{"SUBSTACK":[2,"aif"]},"fields":{},"shadow":false,"topLevel":false},"aif":{"opcode":"sound_playuntildone","next":null,"parent":"aie","inputs":{"SOUND_MENU":[1,"a-+"]},"fields":{},"shadow":false,"topLevel":false},"a-+":{"opcode":"sound_sounds_menu","next":null,"parent":"aif","inputs":{},"fields":{"SOUND_MENU":["square0_200",null]},"shadow":true,"topLevel":false},"a-,":{"opcode":"event_whenbroadcastreceived","next":"aig","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"aig":{"opcode":"sound_stopallsounds","next":"a--","parent":"a-,","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aih":{"opcode":"control_create_clone_of","next":null,"parent":"aid","inputs":{"CLONE_OPTION":[1,"a-."]},"fields":{},"shadow":false,"topLevel":false},"a-.":{"opcode":"control_create_clone_of_menu","next":null,"parent":"aih","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a-/":{"opcode":"control_start_as_clone","next":"aii","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"aid":{"opcode":"control_for_each","next":null,"parent":"H9","inputs":{"VALUE":[1,[6,"12"]],"SUBSTACK":[2,"aih"]},"fields":{"VARIABLE":["id","^R[WOHQM-#~uf#]*`Mv3"]},"shadow":false,"topLevel":false},"m.":{"opcode":"control_if","next":"m/","parent":"aii","inputs":{"SUBSTACK":[2,"aie"],"CONDITION":[2,"a-:"]},"fields":{},"shadow":false,"topLevel":false},"a-:":{"opcode":"operator_equals","next":null,"parent":"m.","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m/":{"opcode":"control_if","next":"m:","parent":"m.","inputs":{"CONDITION":[2,"a-;"],"SUBSTACK":[2,"aij"]},"fields":{},"shadow":false,"topLevel":false},"a-;":{"opcode":"operator_equals","next":null,"parent":"m/","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aij":{"opcode":"control_forever","next":null,"parent":"m/","inputs":{"SUBSTACK":[2,"aik"]},"fields":{},"shadow":false,"topLevel":false},"aik":{"opcode":"sound_playuntildone","next":null,"parent":"aij","inputs":{"SOUND_MENU":[1,"a-="]},"fields":{},"shadow":false,"topLevel":false},"a-=":{"opcode":"sound_sounds_menu","next":null,"parent":"aik","inputs":{},"fields":{"SOUND_MENU":["square1_200",null]},"shadow":true,"topLevel":false},"m:":{"opcode":"control_if","next":"m;","parent":"m/","inputs":{"CONDITION":[2,"a-?"],"SUBSTACK":[2,"ail"]},"fields":{},"shadow":false,"topLevel":false},"a-?":{"opcode":"operator_equals","next":null,"parent":"m:","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ail":{"opcode":"control_forever","next":null,"parent":"m:","inputs":{"SUBSTACK":[2,"aim"]},"fields":{},"shadow":false,"topLevel":false},"aim":{"opcode":"sound_playuntildone","next":null,"parent":"ail","inputs":{"SOUND_MENU":[1,"a-@"]},"fields":{},"shadow":false,"topLevel":false},"a-@":{"opcode":"sound_sounds_menu","next":null,"parent":"aim","inputs":{},"fields":{"SOUND_MENU":["square2_200",null]},"shadow":true,"topLevel":false},"m;":{"opcode":"control_if","next":"m=","parent":"m:","inputs":{"CONDITION":[2,"a-["],"SUBSTACK":[2,"ain"]},"fields":{},"shadow":false,"topLevel":false},"a-[":{"opcode":"operator_equals","next":null,"parent":"m;","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ain":{"opcode":"control_forever","next":null,"parent":"m;","inputs":{"SUBSTACK":[2,"aio"]},"fields":{},"shadow":false,"topLevel":false},"aio":{"opcode":"sound_playuntildone","next":null,"parent":"ain","inputs":{"SOUND_MENU":[1,"a-]"]},"fields":{},"shadow":false,"topLevel":false},"a-]":{"opcode":"sound_sounds_menu","next":null,"parent":"aio","inputs":{},"fields":{"SOUND_MENU":["square3_200",null]},"shadow":true,"topLevel":false},"m=":{"opcode":"control_if","next":"m?","parent":"m;","inputs":{"CONDITION":[2,"a-^"],"SUBSTACK":[2,"aip"]},"fields":{},"shadow":false,"topLevel":false},"a-^":{"opcode":"operator_equals","next":null,"parent":"m=","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aip":{"opcode":"control_forever","next":null,"parent":"m=","inputs":{"SUBSTACK":[2,"aiq"]},"fields":{},"shadow":false,"topLevel":false},"aiq":{"opcode":"sound_playuntildone","next":null,"parent":"aip","inputs":{"SOUND_MENU":[1,"a-_"]},"fields":{},"shadow":false,"topLevel":false},"a-_":{"opcode":"sound_sounds_menu","next":null,"parent":"aiq","inputs":{},"fields":{"SOUND_MENU":["square0_400",null]},"shadow":true,"topLevel":false},"m?":{"opcode":"control_if","next":"m@","parent":"m=","inputs":{"CONDITION":[2,"a-`"],"SUBSTACK":[2,"air"]},"fields":{},"shadow":false,"topLevel":false},"a-`":{"opcode":"operator_equals","next":null,"parent":"m?","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"air":{"opcode":"control_forever","next":null,"parent":"m?","inputs":{"SUBSTACK":[2,"ais"]},"fields":{},"shadow":false,"topLevel":false},"ais":{"opcode":"sound_playuntildone","next":null,"parent":"air","inputs":{"SOUND_MENU":[1,"a-{"]},"fields":{},"shadow":false,"topLevel":false},"a-{":{"opcode":"sound_sounds_menu","next":null,"parent":"ais","inputs":{},"fields":{"SOUND_MENU":["square1_400",null]},"shadow":true,"topLevel":false},"m@":{"opcode":"control_if","next":"m[","parent":"m?","inputs":{"CONDITION":[2,"a-|"],"SUBSTACK":[2,"ait"]},"fields":{},"shadow":false,"topLevel":false},"a-|":{"opcode":"operator_equals","next":null,"parent":"m@","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ait":{"opcode":"control_forever","next":null,"parent":"m@","inputs":{"SUBSTACK":[2,"aiu"]},"fields":{},"shadow":false,"topLevel":false},"aiu":{"opcode":"sound_playuntildone","next":null,"parent":"ait","inputs":{"SOUND_MENU":[1,"a-}"]},"fields":{},"shadow":false,"topLevel":false},"a-}":{"opcode":"sound_sounds_menu","next":null,"parent":"aiu","inputs":{},"fields":{"SOUND_MENU":["square2_400",null]},"shadow":true,"topLevel":false},"m[":{"opcode":"control_if","next":"m]","parent":"m@","inputs":{"CONDITION":[2,"a-~"],"SUBSTACK":[2,"aiv"]},"fields":{},"shadow":false,"topLevel":false},"a-~":{"opcode":"operator_equals","next":null,"parent":"m[","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aiv":{"opcode":"control_forever","next":null,"parent":"m[","inputs":{"SUBSTACK":[2,"aiw"]},"fields":{},"shadow":false,"topLevel":false},"aiw":{"opcode":"sound_playuntildone","next":null,"parent":"aiv","inputs":{"SOUND_MENU":[1,"a.a"]},"fields":{},"shadow":false,"topLevel":false},"a.a":{"opcode":"sound_sounds_menu","next":null,"parent":"aiw","inputs":{},"fields":{"SOUND_MENU":["square3_400",null]},"shadow":true,"topLevel":false},"m]":{"opcode":"control_if","next":"m^","parent":"m[","inputs":{"CONDITION":[2,"a.b"],"SUBSTACK":[2,"aix"]},"fields":{},"shadow":false,"topLevel":false},"a.b":{"opcode":"operator_equals","next":null,"parent":"m]","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aix":{"opcode":"control_forever","next":null,"parent":"m]","inputs":{"SUBSTACK":[2,"aiy"]},"fields":{},"shadow":false,"topLevel":false},"aiy":{"opcode":"sound_playuntildone","next":null,"parent":"aix","inputs":{"SOUND_MENU":[1,"a.c"]},"fields":{},"shadow":false,"topLevel":false},"a.c":{"opcode":"sound_sounds_menu","next":null,"parent":"aiy","inputs":{},"fields":{"SOUND_MENU":["square0_800",null]},"shadow":true,"topLevel":false},"m^":{"opcode":"control_if","next":"m_","parent":"m]","inputs":{"CONDITION":[2,"a.d"],"SUBSTACK":[2,"aiz"]},"fields":{},"shadow":false,"topLevel":false},"a.d":{"opcode":"operator_equals","next":null,"parent":"m^","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aiz":{"opcode":"control_forever","next":null,"parent":"m^","inputs":{"SUBSTACK":[2,"aiA"]},"fields":{},"shadow":false,"topLevel":false},"aiA":{"opcode":"sound_playuntildone","next":null,"parent":"aiz","inputs":{"SOUND_MENU":[1,"a.e"]},"fields":{},"shadow":false,"topLevel":false},"a.e":{"opcode":"sound_sounds_menu","next":null,"parent":"aiA","inputs":{},"fields":{"SOUND_MENU":["square1_800",null]},"shadow":true,"topLevel":false},"m_":{"opcode":"control_if","next":"H!","parent":"m^","inputs":{"CONDITION":[2,"a.f"],"SUBSTACK":[2,"aiB"]},"fields":{},"shadow":false,"topLevel":false},"a.f":{"opcode":"operator_equals","next":null,"parent":"m_","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aiB":{"opcode":"control_forever","next":null,"parent":"m_","inputs":{"SUBSTACK":[2,"aiC"]},"fields":{},"shadow":false,"topLevel":false},"aiC":{"opcode":"sound_playuntildone","next":null,"parent":"aiB","inputs":{"SOUND_MENU":[1,"a.g"]},"fields":{},"shadow":false,"topLevel":false},"a.g":{"opcode":"sound_sounds_menu","next":null,"parent":"aiC","inputs":{},"fields":{"SOUND_MENU":["square2_800",null]},"shadow":true,"topLevel":false},"H!":{"opcode":"control_if","next":null,"parent":"m_","inputs":{"CONDITION":[2,"a.h"],"SUBSTACK":[2,"aiD"]},"fields":{},"shadow":false,"topLevel":false},"a.h":{"opcode":"operator_equals","next":null,"parent":"H!","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aiD":{"opcode":"control_forever","next":null,"parent":"H!","inputs":{"SUBSTACK":[2,"aiE"]},"fields":{},"shadow":false,"topLevel":false},"aiE":{"opcode":"sound_playuntildone","next":null,"parent":"aiD","inputs":{"SOUND_MENU":[1,"a.i"]},"fields":{},"shadow":false,"topLevel":false},"a.i":{"opcode":"sound_sounds_menu","next":null,"parent":"aiE","inputs":{},"fields":{"SOUND_MENU":["square3_800",null]},"shadow":true,"topLevel":false},"aii":{"opcode":"control_wait","next":"m.","parent":"a-/","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a--":{"opcode":"control_delete_this_clone","next":null,"parent":"aig","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.j":{"opcode":"control_start_as_clone","next":"aiF","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":64},"aiF":{"opcode":"sound_setvolumeto","next":"m`","parent":"a.j","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m`":{"opcode":"control_if","next":"m{","parent":"aiF","inputs":{"CONDITION":[2,"a.k"],"SUBSTACK":[2,"aiG"]},"fields":{},"shadow":false,"topLevel":false},"a.k":{"opcode":"operator_lt","next":null,"parent":"m`","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aiG":{"opcode":"control_forever","next":null,"parent":"m`","inputs":{"SUBSTACK":[2,"aiH"]},"fields":{},"shadow":false,"topLevel":false},"aiH":{"opcode":"sound_setvolumeto","next":null,"parent":"aiG","inputs":{"VOLUME":[3,"H#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H#":{"opcode":"operator_multiply","next":null,"parent":"aiH","inputs":{"NUM1":[3,"a.l",[4,0]],"NUM2":[3,"H%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.l":{"opcode":"data_itemoflist","next":null,"parent":"H#","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H%":{"opcode":"operator_multiply","next":null,"parent":"H#","inputs":{"NUM1":[3,"aiI",[4,0]],"NUM2":[3,"H(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aiI":{"opcode":"operator_lt","next":null,"parent":"H%","inputs":{"OPERAND1":[3,"a.m",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a.m":{"opcode":"data_itemoflist","next":null,"parent":"aiI","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H(":{"opcode":"operator_equals","next":null,"parent":"H%","inputs":{"OPERAND1":[3,"a.n",[10,""]],"OPERAND2":[3,"a.o",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a.n":{"opcode":"data_itemoflist","next":null,"parent":"H(","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a.o":{"opcode":"operator_subtract","next":null,"parent":"H(","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m{":{"opcode":"control_if","next":"H)","parent":"m`","inputs":{"CONDITION":[2,"a.p"],"SUBSTACK":[2,"aiJ"]},"fields":{},"shadow":false,"topLevel":false},"a.p":{"opcode":"operator_lt","next":null,"parent":"m{","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aiJ":{"opcode":"control_forever","next":null,"parent":"m{","inputs":{"SUBSTACK":[2,"aiK"]},"fields":{},"shadow":false,"topLevel":false},"aiK":{"opcode":"sound_setvolumeto","next":null,"parent":"aiJ","inputs":{"VOLUME":[3,"H*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H*":{"opcode":"operator_multiply","next":null,"parent":"aiK","inputs":{"NUM1":[3,"a.q",[4,0]],"NUM2":[3,"H+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.q":{"opcode":"data_itemoflist","next":null,"parent":"H*","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H+":{"opcode":"operator_multiply","next":null,"parent":"H*","inputs":{"NUM1":[3,"H,",[4,0]],"NUM2":[3,"H-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H,":{"opcode":"operator_and","next":null,"parent":"H+","inputs":{"OPERAND1":[2,"aiL"],"OPERAND2":[2,"aiM"]},"fields":{},"shadow":false,"topLevel":false},"aiL":{"opcode":"operator_gt","next":null,"parent":"H,","inputs":{"OPERAND1":[3,"a.r",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a.r":{"opcode":"data_itemoflist","next":null,"parent":"aiL","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aiM":{"opcode":"operator_lt","next":null,"parent":"H,","inputs":{"OPERAND1":[3,"a.s",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"a.s":{"opcode":"data_itemoflist","next":null,"parent":"aiM","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H-":{"opcode":"operator_equals","next":null,"parent":"H+","inputs":{"OPERAND1":[3,"a.t",[10,""]],"OPERAND2":[3,"a.u",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a.t":{"opcode":"data_itemoflist","next":null,"parent":"H-","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a.u":{"opcode":"operator_subtract","next":null,"parent":"H-","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"H)":{"opcode":"control_if","next":null,"parent":"m{","inputs":{"CONDITION":[2,"a.v"],"SUBSTACK":[2,"aiN"]},"fields":{},"shadow":false,"topLevel":false},"a.v":{"opcode":"operator_lt","next":null,"parent":"H)","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aiN":{"opcode":"control_forever","next":null,"parent":"H)","inputs":{"SUBSTACK":[2,"aiO"]},"fields":{},"shadow":false,"topLevel":false},"aiO":{"opcode":"sound_setvolumeto","next":null,"parent":"aiN","inputs":{"VOLUME":[3,"H.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H.":{"opcode":"operator_multiply","next":null,"parent":"aiO","inputs":{"NUM1":[3,"a.w",[4,0]],"NUM2":[3,"H/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.w":{"opcode":"data_itemoflist","next":null,"parent":"H.","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H/":{"opcode":"operator_multiply","next":null,"parent":"H.","inputs":{"NUM1":[3,"aiP",[4,0]],"NUM2":[3,"H:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aiP":{"opcode":"operator_gt","next":null,"parent":"H/","inputs":{"OPERAND1":[3,"a.x",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"a.x":{"opcode":"data_itemoflist","next":null,"parent":"aiP","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H:":{"opcode":"operator_equals","next":null,"parent":"H/","inputs":{"OPERAND1":[3,"a.y",[10,""]],"OPERAND2":[3,"a.z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a.y":{"opcode":"data_itemoflist","next":null,"parent":"H:","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a.z":{"opcode":"operator_subtract","next":null,"parent":"H:","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a.A":{"opcode":"control_start_as_clone","next":"aiQ","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":980},"aiQ":{"opcode":"sound_cleareffects","next":"m|","parent":"a.A","inputs":{},"fields":{},"shadow":false,"topLevel":false},"m|":{"opcode":"control_if","next":"m}","parent":"aiQ","inputs":{"CONDITION":[2,"a.B"],"SUBSTACK":[2,"aiR"]},"fields":{},"shadow":false,"topLevel":false},"a.B":{"opcode":"operator_lt","next":null,"parent":"m|","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aiR":{"opcode":"control_forever","next":null,"parent":"m|","inputs":{"SUBSTACK":[2,"aiS"]},"fields":{},"shadow":false,"topLevel":false},"aiS":{"opcode":"sound_seteffectto","next":null,"parent":"aiR","inputs":{"VALUE":[3,"aiT",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"aiT":{"opcode":"operator_multiply","next":null,"parent":"aiS","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aiU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aiU":{"opcode":"operator_mathop","next":null,"parent":"aiT","inputs":{"NUM":[3,"aiV",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"aiV":{"opcode":"operator_divide","next":null,"parent":"aiU","inputs":{"NUM1":[3,"a.C",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"a.C":{"opcode":"data_itemoflist","next":null,"parent":"aiV","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"m}":{"opcode":"control_if","next":"H;","parent":"m|","inputs":{"CONDITION":[2,"a.D"],"SUBSTACK":[2,"aiW"]},"fields":{},"shadow":false,"topLevel":false},"a.D":{"opcode":"operator_lt","next":null,"parent":"m}","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aiW":{"opcode":"control_forever","next":null,"parent":"m}","inputs":{"SUBSTACK":[2,"aiX"]},"fields":{},"shadow":false,"topLevel":false},"aiX":{"opcode":"sound_seteffectto","next":null,"parent":"aiW","inputs":{"VALUE":[3,"aiY",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"aiY":{"opcode":"operator_multiply","next":null,"parent":"aiX","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aiZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aiZ":{"opcode":"operator_mathop","next":null,"parent":"aiY","inputs":{"NUM":[3,"ai0",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"ai0":{"opcode":"operator_divide","next":null,"parent":"aiZ","inputs":{"NUM1":[3,"a.E",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"a.E":{"opcode":"data_itemoflist","next":null,"parent":"ai0","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H;":{"opcode":"control_if","next":null,"parent":"m}","inputs":{"CONDITION":[2,"a.F"],"SUBSTACK":[2,"ai1"]},"fields":{},"shadow":false,"topLevel":false},"a.F":{"opcode":"operator_lt","next":null,"parent":"H;","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ai1":{"opcode":"control_forever","next":null,"parent":"H;","inputs":{"SUBSTACK":[2,"ai2"]},"fields":{},"shadow":false,"topLevel":false},"ai2":{"opcode":"sound_seteffectto","next":null,"parent":"ai1","inputs":{"VALUE":[3,"ai3",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"ai3":{"opcode":"operator_multiply","next":null,"parent":"ai2","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ai4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ai4":{"opcode":"operator_mathop","next":null,"parent":"ai3","inputs":{"NUM":[3,"ai5",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"ai5":{"opcode":"operator_divide","next":null,"parent":"ai4","inputs":{"NUM1":[3,"a.G",[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"a.G":{"opcode":"data_itemoflist","next":null,"parent":"ai5","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"square0_200","assetId":"e57364a4200c66d59c6cd2aad2ac279f","dataFormat":"wav","rate":48000,"sampleCount":192100,"md5ext":"e57364a4200c66d59c6cd2aad2ac279f.wav"},{"name":"square1_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square2_200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"square3_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square0_400","assetId":"bb3d65f47a8eb8759488124be13835a5","dataFormat":"wav","rate":48000,"sampleCount":192026,"md5ext":"bb3d65f47a8eb8759488124be13835a5.wav"},{"name":"square1_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square2_400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"square3_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square0_800","assetId":"1aded0d64fb9983939909d2a518a0995","dataFormat":"wav","rate":48000,"sampleCount":192017,"md5ext":"1aded0d64fb9983939909d2a518a0995.wav"},{"name":"square1_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"},{"name":"square2_800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"square3_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"}],"volume":0,"layerOrder":15,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"noise","variables":{"5Vd}?h-0(QjqLpwAS(EX":["id",8]},"lists":{},"broadcasts":{},"blocks":{"a.H":{"opcode":"event_whenbroadcastreceived","next":"ai6","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"ai6":{"opcode":"sound_stopallsounds","next":"a.I","parent":"a.H","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.I":{"opcode":"control_delete_this_clone","next":null,"parent":"ai6","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.J":{"opcode":"event_whenbroadcastreceived","next":"H=","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"H=":{"opcode":"control_if","next":null,"parent":"a.J","inputs":{"CONDITION":[2,"a.K"],"SUBSTACK":[2,"ai7"]},"fields":{},"shadow":false,"topLevel":false},"a.K":{"opcode":"operator_equals","next":null,"parent":"H=","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ai7":{"opcode":"control_for_each","next":null,"parent":"H=","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"ai8"]},"fields":{"VARIABLE":["id","5Vd}?h-0(QjqLpwAS(EX"]},"shadow":false,"topLevel":false},"ai8":{"opcode":"control_create_clone_of","next":null,"parent":"ai7","inputs":{"CLONE_OPTION":[1,"a.L"]},"fields":{},"shadow":false,"topLevel":false},"a.L":{"opcode":"control_create_clone_of_menu","next":null,"parent":"ai8","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a.M":{"opcode":"control_start_as_clone","next":"ai9","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"ai9":{"opcode":"control_wait","next":"m~","parent":"a.M","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m~":{"opcode":"control_if","next":"na","parent":"ai9","inputs":{"CONDITION":[2,"a.N"],"SUBSTACK":[2,"ai!"]},"fields":{},"shadow":false,"topLevel":false},"a.N":{"opcode":"operator_equals","next":null,"parent":"m~","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ai!":{"opcode":"control_forever","next":null,"parent":"m~","inputs":{"SUBSTACK":[2,"ai#"]},"fields":{},"shadow":false,"topLevel":false},"ai#":{"opcode":"sound_playuntildone","next":null,"parent":"ai!","inputs":{"SOUND_MENU":[1,"a.O"]},"fields":{},"shadow":false,"topLevel":false},"a.O":{"opcode":"sound_sounds_menu","next":null,"parent":"ai#","inputs":{},"fields":{"SOUND_MENU":["noise_11",null]},"shadow":true,"topLevel":false},"na":{"opcode":"control_if","next":"nb","parent":"m~","inputs":{"CONDITION":[2,"a.P"],"SUBSTACK":[2,"ai%"]},"fields":{},"shadow":false,"topLevel":false},"a.P":{"opcode":"operator_equals","next":null,"parent":"na","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ai%":{"opcode":"control_forever","next":null,"parent":"na","inputs":{"SUBSTACK":[2,"ai("]},"fields":{},"shadow":false,"topLevel":false},"ai(":{"opcode":"sound_playuntildone","next":null,"parent":"ai%","inputs":{"SOUND_MENU":[1,"a.Q"]},"fields":{},"shadow":false,"topLevel":false},"a.Q":{"opcode":"sound_sounds_menu","next":null,"parent":"ai(","inputs":{},"fields":{"SOUND_MENU":["noise_8",null]},"shadow":true,"topLevel":false},"nb":{"opcode":"control_if","next":"nc","parent":"na","inputs":{"CONDITION":[2,"a.R"],"SUBSTACK":[2,"ai)"]},"fields":{},"shadow":false,"topLevel":false},"a.R":{"opcode":"operator_equals","next":null,"parent":"nb","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ai)":{"opcode":"control_forever","next":null,"parent":"nb","inputs":{"SUBSTACK":[2,"ai*"]},"fields":{},"shadow":false,"topLevel":false},"ai*":{"opcode":"sound_playuntildone","next":null,"parent":"ai)","inputs":{"SOUND_MENU":[1,"a.S"]},"fields":{},"shadow":false,"topLevel":false},"a.S":{"opcode":"sound_sounds_menu","next":null,"parent":"ai*","inputs":{},"fields":{"SOUND_MENU":["noise_5",null]},"shadow":true,"topLevel":false},"nc":{"opcode":"control_if","next":"nd","parent":"nb","inputs":{"CONDITION":[2,"a.T"],"SUBSTACK":[2,"ai+"]},"fields":{},"shadow":false,"topLevel":false},"a.T":{"opcode":"operator_equals","next":null,"parent":"nc","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ai+":{"opcode":"control_forever","next":null,"parent":"nc","inputs":{"SUBSTACK":[2,"ai,"]},"fields":{},"shadow":false,"topLevel":false},"ai,":{"opcode":"sound_playuntildone","next":null,"parent":"ai+","inputs":{"SOUND_MENU":[1,"a.U"]},"fields":{},"shadow":false,"topLevel":false},"a.U":{"opcode":"sound_sounds_menu","next":null,"parent":"ai,","inputs":{},"fields":{"SOUND_MENU":["noise_2",null]},"shadow":true,"topLevel":false},"nd":{"opcode":"control_if","next":"ne","parent":"nc","inputs":{"CONDITION":[2,"a.V"],"SUBSTACK":[2,"ai-"]},"fields":{},"shadow":false,"topLevel":false},"a.V":{"opcode":"operator_equals","next":null,"parent":"nd","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ai-":{"opcode":"control_forever","next":null,"parent":"nd","inputs":{"SUBSTACK":[2,"ai."]},"fields":{},"shadow":false,"topLevel":false},"ai.":{"opcode":"sound_playuntildone","next":null,"parent":"ai-","inputs":{"SOUND_MENU":[1,"a.W"]},"fields":{},"shadow":false,"topLevel":false},"a.W":{"opcode":"sound_sounds_menu","next":null,"parent":"ai.","inputs":{},"fields":{"SOUND_MENU":["noisem_11",null]},"shadow":true,"topLevel":false},"ne":{"opcode":"control_if","next":"nf","parent":"nd","inputs":{"CONDITION":[2,"a.X"],"SUBSTACK":[2,"ai/"]},"fields":{},"shadow":false,"topLevel":false},"a.X":{"opcode":"operator_equals","next":null,"parent":"ne","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ai/":{"opcode":"control_forever","next":null,"parent":"ne","inputs":{"SUBSTACK":[2,"ai:"]},"fields":{},"shadow":false,"topLevel":false},"ai:":{"opcode":"sound_playuntildone","next":null,"parent":"ai/","inputs":{"SOUND_MENU":[1,"a.Y"]},"fields":{},"shadow":false,"topLevel":false},"a.Y":{"opcode":"sound_sounds_menu","next":null,"parent":"ai:","inputs":{},"fields":{"SOUND_MENU":["noisem_8",null]},"shadow":true,"topLevel":false},"nf":{"opcode":"control_if","next":"H?","parent":"ne","inputs":{"CONDITION":[2,"a.Z"],"SUBSTACK":[2,"ai;"]},"fields":{},"shadow":false,"topLevel":false},"a.Z":{"opcode":"operator_equals","next":null,"parent":"nf","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ai;":{"opcode":"control_forever","next":null,"parent":"nf","inputs":{"SUBSTACK":[2,"ai="]},"fields":{},"shadow":false,"topLevel":false},"ai=":{"opcode":"sound_playuntildone","next":null,"parent":"ai;","inputs":{"SOUND_MENU":[1,"a.0"]},"fields":{},"shadow":false,"topLevel":false},"a.0":{"opcode":"sound_sounds_menu","next":null,"parent":"ai=","inputs":{},"fields":{"SOUND_MENU":["noisem_5",null]},"shadow":true,"topLevel":false},"H?":{"opcode":"control_if","next":null,"parent":"nf","inputs":{"CONDITION":[2,"a.1"],"SUBSTACK":[2,"ai?"]},"fields":{},"shadow":false,"topLevel":false},"a.1":{"opcode":"operator_equals","next":null,"parent":"H?","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ai?":{"opcode":"control_forever","next":null,"parent":"H?","inputs":{"SUBSTACK":[2,"ai@"]},"fields":{},"shadow":false,"topLevel":false},"ai@":{"opcode":"sound_playuntildone","next":null,"parent":"ai?","inputs":{"SOUND_MENU":[1,"a.2"]},"fields":{},"shadow":false,"topLevel":false},"a.2":{"opcode":"sound_sounds_menu","next":null,"parent":"ai@","inputs":{},"fields":{"SOUND_MENU":["noisem_2",null]},"shadow":true,"topLevel":false},"a.3":{"opcode":"control_start_as_clone","next":"ai[","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1660,"y":64},"ai[":{"opcode":"sound_cleareffects","next":"ng","parent":"a.3","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ng":{"opcode":"control_if","next":"nh","parent":"ai[","inputs":{"CONDITION":[2,"H@"],"SUBSTACK":[2,"ai]"]},"fields":{},"shadow":false,"topLevel":false},"H@":{"opcode":"operator_or","next":null,"parent":"ng","inputs":{"OPERAND1":[2,"a.4"],"OPERAND2":[2,"a.5"]},"fields":{},"shadow":false,"topLevel":false},"a.4":{"opcode":"operator_equals","next":null,"parent":"H@","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a.5":{"opcode":"operator_equals","next":null,"parent":"H@","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ai]":{"opcode":"control_forever","next":null,"parent":"ng","inputs":{"SUBSTACK":[2,"ai^"]},"fields":{},"shadow":false,"topLevel":false},"ai^":{"opcode":"sound_seteffectto","next":null,"parent":"ai]","inputs":{"VALUE":[3,"ai_",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ai_":{"opcode":"operator_multiply","next":null,"parent":"ai^","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ai`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ai`":{"opcode":"operator_mathop","next":null,"parent":"ai_","inputs":{"NUM":[3,"ai{",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ai{":{"opcode":"operator_divide","next":null,"parent":"ai`","inputs":{"NUM1":[3,"a.6",[4,0]],"NUM2":[1,[4,"3523.1751968503936"]]},"fields":{},"shadow":false,"topLevel":false},"a.6":{"opcode":"data_itemoflist","next":null,"parent":"ai{","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"nh":{"opcode":"control_if","next":"ni","parent":"ng","inputs":{"CONDITION":[2,"H["],"SUBSTACK":[2,"ai|"]},"fields":{},"shadow":false,"topLevel":false},"H[":{"opcode":"operator_or","next":null,"parent":"nh","inputs":{"OPERAND1":[2,"a.7"],"OPERAND2":[2,"a.8"]},"fields":{},"shadow":false,"topLevel":false},"a.7":{"opcode":"operator_equals","next":null,"parent":"H[","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.8":{"opcode":"operator_equals","next":null,"parent":"H[","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ai|":{"opcode":"control_forever","next":null,"parent":"nh","inputs":{"SUBSTACK":[2,"ai}"]},"fields":{},"shadow":false,"topLevel":false},"ai}":{"opcode":"sound_seteffectto","next":null,"parent":"ai|","inputs":{"VALUE":[3,"ai~",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ai~":{"opcode":"operator_multiply","next":null,"parent":"ai}","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aja",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aja":{"opcode":"operator_mathop","next":null,"parent":"ai~","inputs":{"NUM":[3,"ajb",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ajb":{"opcode":"operator_divide","next":null,"parent":"aja","inputs":{"NUM1":[3,"a.9",[4,0]],"NUM2":[1,[4,"8860.262376237624"]]},"fields":{},"shadow":false,"topLevel":false},"a.9":{"opcode":"data_itemoflist","next":null,"parent":"ajb","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ni":{"opcode":"control_if","next":"H]","parent":"nh","inputs":{"CONDITION":[2,"H^"],"SUBSTACK":[2,"ajc"]},"fields":{},"shadow":false,"topLevel":false},"H^":{"opcode":"operator_or","next":null,"parent":"ni","inputs":{"OPERAND1":[2,"a.!"],"OPERAND2":[2,"a.#"]},"fields":{},"shadow":false,"topLevel":false},"a.!":{"opcode":"operator_equals","next":null,"parent":"H^","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a.#":{"opcode":"operator_equals","next":null,"parent":"H^","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ajc":{"opcode":"control_forever","next":null,"parent":"ni","inputs":{"SUBSTACK":[2,"ajd"]},"fields":{},"shadow":false,"topLevel":false},"ajd":{"opcode":"sound_seteffectto","next":null,"parent":"ajc","inputs":{"VALUE":[3,"aje",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"aje":{"opcode":"operator_multiply","next":null,"parent":"ajd","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ajf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajf":{"opcode":"operator_mathop","next":null,"parent":"aje","inputs":{"NUM":[3,"ajg",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ajg":{"opcode":"operator_divide","next":null,"parent":"ajf","inputs":{"NUM1":[3,"a.%",[4,0]],"NUM2":[1,[4,"18643.46875"]]},"fields":{},"shadow":false,"topLevel":false},"a.%":{"opcode":"data_itemoflist","next":null,"parent":"ajg","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H]":{"opcode":"control_if","next":null,"parent":"ni","inputs":{"CONDITION":[2,"H_"],"SUBSTACK":[2,"ajh"]},"fields":{},"shadow":false,"topLevel":false},"H_":{"opcode":"operator_or","next":null,"parent":"H]","inputs":{"OPERAND1":[2,"a.("],"OPERAND2":[2,"a.)"]},"fields":{},"shadow":false,"topLevel":false},"a.(":{"opcode":"operator_equals","next":null,"parent":"H_","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a.)":{"opcode":"operator_equals","next":null,"parent":"H_","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ajh":{"opcode":"control_forever","next":null,"parent":"H]","inputs":{"SUBSTACK":[2,"aji"]},"fields":{},"shadow":false,"topLevel":false},"aji":{"opcode":"sound_seteffectto","next":null,"parent":"ajh","inputs":{"VALUE":[3,"ajj",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ajj":{"opcode":"operator_multiply","next":null,"parent":"aji","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"ajk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajk":{"opcode":"operator_mathop","next":null,"parent":"ajj","inputs":{"NUM":[3,"ajl",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"ajl":{"opcode":"operator_divide","next":null,"parent":"ajk","inputs":{"NUM1":[3,"a.*",[4,0]],"NUM2":[1,[4,"111860.8125"]]},"fields":{},"shadow":false,"topLevel":false},"a.*":{"opcode":"data_itemoflist","next":null,"parent":"ajl","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a.+":{"opcode":"control_start_as_clone","next":"ajm","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":474,"y":64},"ajm":{"opcode":"sound_setvolumeto","next":"nj","parent":"a.+","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nj":{"opcode":"control_if","next":"nk","parent":"ajm","inputs":{"CONDITION":[2,"a.,"],"SUBSTACK":[2,"ajn"]},"fields":{},"shadow":false,"topLevel":false},"a.,":{"opcode":"operator_equals","next":null,"parent":"nj","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ajn":{"opcode":"control_forever","next":null,"parent":"nj","inputs":{"SUBSTACK":[2,"ajo"]},"fields":{},"shadow":false,"topLevel":false},"ajo":{"opcode":"sound_setvolumeto","next":null,"parent":"ajn","inputs":{"VOLUME":[3,"H`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H`":{"opcode":"operator_multiply","next":null,"parent":"ajo","inputs":{"NUM1":[3,"a.-",[4,0]],"NUM2":[3,"H{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.-":{"opcode":"data_itemoflist","next":null,"parent":"H`","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H{":{"opcode":"operator_and","next":null,"parent":"H`","inputs":{"OPERAND1":[2,"ajp"],"OPERAND2":[2,"ajq"]},"fields":{},"shadow":false,"topLevel":false},"ajp":{"opcode":"operator_gt","next":null,"parent":"H{","inputs":{"OPERAND1":[3,"a..",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a..":{"opcode":"data_itemoflist","next":null,"parent":"ajp","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajq":{"opcode":"operator_lt","next":null,"parent":"H{","inputs":{"OPERAND1":[3,"a./",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a./":{"opcode":"data_itemoflist","next":null,"parent":"ajq","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"nk":{"opcode":"control_if","next":"nl","parent":"nj","inputs":{"CONDITION":[2,"a.:"],"SUBSTACK":[2,"ajr"]},"fields":{},"shadow":false,"topLevel":false},"a.:":{"opcode":"operator_equals","next":null,"parent":"nk","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ajr":{"opcode":"control_forever","next":null,"parent":"nk","inputs":{"SUBSTACK":[2,"ajs"]},"fields":{},"shadow":false,"topLevel":false},"ajs":{"opcode":"sound_setvolumeto","next":null,"parent":"ajr","inputs":{"VOLUME":[3,"H|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H|":{"opcode":"operator_multiply","next":null,"parent":"ajs","inputs":{"NUM1":[3,"a.;",[4,0]],"NUM2":[3,"H}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.;":{"opcode":"data_itemoflist","next":null,"parent":"H|","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"H}":{"opcode":"operator_and","next":null,"parent":"H|","inputs":{"OPERAND1":[2,"ajt"],"OPERAND2":[2,"aju"]},"fields":{},"shadow":false,"topLevel":false},"ajt":{"opcode":"operator_gt","next":null,"parent":"H}","inputs":{"OPERAND1":[3,"a.=",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a.=":{"opcode":"data_itemoflist","next":null,"parent":"ajt","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aju":{"opcode":"operator_lt","next":null,"parent":"H}","inputs":{"OPERAND1":[3,"a.?",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a.?":{"opcode":"data_itemoflist","next":null,"parent":"aju","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"nl":{"opcode":"control_if","next":"nm","parent":"nk","inputs":{"CONDITION":[2,"a.@"],"SUBSTACK":[2,"ajv"]},"fields":{},"shadow":false,"topLevel":false},"a.@":{"opcode":"operator_equals","next":null,"parent":"nl","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ajv":{"opcode":"control_forever","next":null,"parent":"nl","inputs":{"SUBSTACK":[2,"ajw"]},"fields":{},"shadow":false,"topLevel":false},"ajw":{"opcode":"sound_setvolumeto","next":null,"parent":"ajv","inputs":{"VOLUME":[3,"H~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H~":{"opcode":"operator_multiply","next":null,"parent":"ajw","inputs":{"NUM1":[3,"a.[",[4,0]],"NUM2":[3,"Ia",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.[":{"opcode":"data_itemoflist","next":null,"parent":"H~","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ia":{"opcode":"operator_and","next":null,"parent":"H~","inputs":{"OPERAND1":[2,"ajx"],"OPERAND2":[2,"ajy"]},"fields":{},"shadow":false,"topLevel":false},"ajx":{"opcode":"operator_lt","next":null,"parent":"Ia","inputs":{"OPERAND1":[3,"a.]",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a.]":{"opcode":"data_itemoflist","next":null,"parent":"ajx","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajy":{"opcode":"operator_gt","next":null,"parent":"Ia","inputs":{"OPERAND1":[3,"a.^",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a.^":{"opcode":"data_itemoflist","next":null,"parent":"ajy","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"nm":{"opcode":"control_if","next":"nn","parent":"nl","inputs":{"CONDITION":[2,"a._"],"SUBSTACK":[2,"ajz"]},"fields":{},"shadow":false,"topLevel":false},"a._":{"opcode":"operator_equals","next":null,"parent":"nm","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ajz":{"opcode":"control_forever","next":null,"parent":"nm","inputs":{"SUBSTACK":[2,"ajA"]},"fields":{},"shadow":false,"topLevel":false},"ajA":{"opcode":"sound_setvolumeto","next":null,"parent":"ajz","inputs":{"VOLUME":[3,"Ib",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ib":{"opcode":"operator_multiply","next":null,"parent":"ajA","inputs":{"NUM1":[3,"a.`",[4,0]],"NUM2":[3,"ajB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.`":{"opcode":"data_itemoflist","next":null,"parent":"Ib","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajB":{"opcode":"operator_lt","next":null,"parent":"Ib","inputs":{"OPERAND1":[3,"a.{",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a.{":{"opcode":"data_itemoflist","next":null,"parent":"ajB","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"nn":{"opcode":"control_if","next":"no","parent":"nm","inputs":{"CONDITION":[2,"a.|"],"SUBSTACK":[2,"ajC"]},"fields":{},"shadow":false,"topLevel":false},"a.|":{"opcode":"operator_equals","next":null,"parent":"nn","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ajC":{"opcode":"control_forever","next":null,"parent":"nn","inputs":{"SUBSTACK":[2,"ajD"]},"fields":{},"shadow":false,"topLevel":false},"ajD":{"opcode":"sound_setvolumeto","next":null,"parent":"ajC","inputs":{"VOLUME":[3,"Ic",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ic":{"opcode":"operator_multiply","next":null,"parent":"ajD","inputs":{"NUM1":[3,"a.}",[4,0]],"NUM2":[3,"Id",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a.}":{"opcode":"data_itemoflist","next":null,"parent":"Ic","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Id":{"opcode":"operator_and","next":null,"parent":"Ic","inputs":{"OPERAND1":[2,"ajE"],"OPERAND2":[2,"ajF"]},"fields":{},"shadow":false,"topLevel":false},"ajE":{"opcode":"operator_gt","next":null,"parent":"Id","inputs":{"OPERAND1":[3,"a.~",[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"a.~":{"opcode":"data_itemoflist","next":null,"parent":"ajE","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajF":{"opcode":"operator_lt","next":null,"parent":"Id","inputs":{"OPERAND1":[3,"a/a",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a/a":{"opcode":"data_itemoflist","next":null,"parent":"ajF","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"no":{"opcode":"control_if","next":"np","parent":"nn","inputs":{"CONDITION":[2,"a/b"],"SUBSTACK":[2,"ajG"]},"fields":{},"shadow":false,"topLevel":false},"a/b":{"opcode":"operator_equals","next":null,"parent":"no","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ajG":{"opcode":"control_forever","next":null,"parent":"no","inputs":{"SUBSTACK":[2,"ajH"]},"fields":{},"shadow":false,"topLevel":false},"ajH":{"opcode":"sound_setvolumeto","next":null,"parent":"ajG","inputs":{"VOLUME":[3,"Ie",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ie":{"opcode":"operator_multiply","next":null,"parent":"ajH","inputs":{"NUM1":[3,"a/c",[4,0]],"NUM2":[3,"If",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/c":{"opcode":"data_itemoflist","next":null,"parent":"Ie","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"If":{"opcode":"operator_and","next":null,"parent":"Ie","inputs":{"OPERAND1":[2,"ajI"],"OPERAND2":[2,"ajJ"]},"fields":{},"shadow":false,"topLevel":false},"ajI":{"opcode":"operator_gt","next":null,"parent":"If","inputs":{"OPERAND1":[3,"a/d",[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"a/d":{"opcode":"data_itemoflist","next":null,"parent":"ajI","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajJ":{"opcode":"operator_lt","next":null,"parent":"If","inputs":{"OPERAND1":[3,"a/e",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"a/e":{"opcode":"data_itemoflist","next":null,"parent":"ajJ","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"np":{"opcode":"control_if","next":"Ig","parent":"no","inputs":{"CONDITION":[2,"a/f"],"SUBSTACK":[2,"ajK"]},"fields":{},"shadow":false,"topLevel":false},"a/f":{"opcode":"operator_equals","next":null,"parent":"np","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"ajK":{"opcode":"control_forever","next":null,"parent":"np","inputs":{"SUBSTACK":[2,"ajL"]},"fields":{},"shadow":false,"topLevel":false},"ajL":{"opcode":"sound_setvolumeto","next":null,"parent":"ajK","inputs":{"VOLUME":[3,"Ih",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ih":{"opcode":"operator_multiply","next":null,"parent":"ajL","inputs":{"NUM1":[3,"a/g",[4,0]],"NUM2":[3,"Ii",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/g":{"opcode":"data_itemoflist","next":null,"parent":"Ih","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ii":{"opcode":"operator_and","next":null,"parent":"Ih","inputs":{"OPERAND1":[2,"ajM"],"OPERAND2":[2,"ajN"]},"fields":{},"shadow":false,"topLevel":false},"ajM":{"opcode":"operator_lt","next":null,"parent":"Ii","inputs":{"OPERAND1":[3,"a/h",[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"a/h":{"opcode":"data_itemoflist","next":null,"parent":"ajM","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajN":{"opcode":"operator_gt","next":null,"parent":"Ii","inputs":{"OPERAND1":[3,"a/i",[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"a/i":{"opcode":"data_itemoflist","next":null,"parent":"ajN","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ig":{"opcode":"control_if","next":null,"parent":"np","inputs":{"CONDITION":[2,"a/j"],"SUBSTACK":[2,"ajO"]},"fields":{},"shadow":false,"topLevel":false},"a/j":{"opcode":"operator_equals","next":null,"parent":"Ig","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ajO":{"opcode":"control_forever","next":null,"parent":"Ig","inputs":{"SUBSTACK":[2,"ajP"]},"fields":{},"shadow":false,"topLevel":false},"ajP":{"opcode":"sound_setvolumeto","next":null,"parent":"ajO","inputs":{"VOLUME":[3,"Ij",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ij":{"opcode":"operator_multiply","next":null,"parent":"ajP","inputs":{"NUM1":[3,"a/k",[4,0]],"NUM2":[3,"Ik",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/k":{"opcode":"data_itemoflist","next":null,"parent":"Ij","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ik":{"opcode":"operator_and","next":null,"parent":"Ij","inputs":{"OPERAND1":[2,"ajQ"],"OPERAND2":[2,"ajR"]},"fields":{},"shadow":false,"topLevel":false},"ajQ":{"opcode":"operator_gt","next":null,"parent":"Ik","inputs":{"OPERAND1":[3,"a/l",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"a/l":{"opcode":"data_itemoflist","next":null,"parent":"ajQ","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajR":{"opcode":"operator_lt","next":null,"parent":"Ik","inputs":{"OPERAND1":[3,"a/m",[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"a/m":{"opcode":"data_itemoflist","next":null,"parent":"ajR","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{"bu:":{"blockId":"bu;","x":-51.8888888888888,"y":219.25925925925924,"width":200,"height":200,"minimized":false,"text":"use this to calculate period frequency"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"noise_11","assetId":"ac10259395e9816f689b21b2370f653d","dataFormat":"wav","rate":48000,"sampleCount":208877,"md5ext":"ac10259395e9816f689b21b2370f653d.wav"},{"name":"noise_8","assetId":"6411c5a4a3523134b3223241d4fc8f11","dataFormat":"wav","rate":48000,"sampleCount":177555,"md5ext":"6411c5a4a3523134b3223241d4fc8f11.wav"},{"name":"noise_5","assetId":"023bbbd6509d255a4512f63b999700c1","dataFormat":"wav","rate":48000,"sampleCount":168573,"md5ext":"023bbbd6509d255a4512f63b999700c1.wav"},{"name":"noise_2","assetId":"5954e9d627031aaf99f57f5ed66dca3e","dataFormat":"wav","rate":48000,"sampleCount":182797,"md5ext":"5954e9d627031aaf99f57f5ed66dca3e.wav"},{"name":"noisem_11","assetId":"726bf3c5738d25df6674f03104feeef0","dataFormat":"wav","rate":48000,"sampleCount":191534,"md5ext":"726bf3c5738d25df6674f03104feeef0.wav"},{"name":"noisem_8","assetId":"6465d1edb3625eeeded9836dd769fa68","dataFormat":"wav","rate":48000,"sampleCount":192185,"md5ext":"6465d1edb3625eeeded9836dd769fa68.wav"},{"name":"noisem_5","assetId":"7320e155cc3ad464d679d1f66e38adad","dataFormat":"wav","rate":48000,"sampleCount":192192,"md5ext":"7320e155cc3ad464d679d1f66e38adad.wav"},{"name":"noisem_2","assetId":"26ff2fd358024009b897d24dff12719d","dataFormat":"wav","rate":48000,"sampleCount":192007,"md5ext":"26ff2fd358024009b897d24dff12719d.wav"}],"volume":0,"layerOrder":16,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"triangle","variables":{"n4Vk.4K3+)e4)7]IZXt*":["id",2],"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured",0],"PdO5iRC_RNzBVsdyMO(q":["!op",0],"6zFO5H,!X[g$Ax)0BDc:":["!break",0],"tnat7=?L(.Gf;]^`o~![":["!A",0],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",0],"3U:*vMhK7gf],IM6zRp[":["!SP",0],"1zbCCns)7a+FK@Nf^A#/":["!P",0],"kCSOy9d,i:SuF$IT*yY@":["!C",0],"3;^us/Z(haF2h@u#ixfd":["!D",0],"wJv)p=)7?CJ}66t~yQza":["!I",0],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",0],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",0],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",0],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe",0],"G)X5:8nBe}gs.ik#[2!5":["temp",0],"$4AJvv6|*3+i6I3,wC{(":["!penalty",0],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",0],"gJ4fW7d.auVkNJS*cbF.":["!port2_count",0],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",0],"*q7!$s|[`z8:pfv)YW#?":["!immediate",0],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit",0],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow",0],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr",0],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",0],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled",0],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag",0],"rp0u9foKc3@?]%7O5HRb":["@mask_bg",0],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite",0],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg",0],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite",0],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",0],"oS%53`U7y@bB1gbSz8^+":["@data_latch",0],"5@CAuX+T_vc:]!OZM32!":["@write_toggle",0],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer",0],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip",0],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",0],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result",0],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",0],"OQF50=wL0|j4S5.I%k/,":["@bit",0],"1oCHy{p]O4~gQKbeR[pS":["@palette",0],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",0],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",0],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",0],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",0],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",0],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",0],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",0],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr",0],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt",0],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit",0],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode",0],"fyS(EXct?2w*M.Nwqgr~":["#sequence",0],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt",0],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter",0],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled",0],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0",0],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode",0],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1",0],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch",0],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled",0],"(Bva{aj,%,g7M19235_|":["$irq_occured",0],"Rsej-utFuPehsXAVyTSL":["$reg0",0],":qHrq7o:g@OR|zUf/9t(":["$reg1",0],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode",0],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0",0],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1",0],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2",0],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3",0],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4",0],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5",0],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload",0],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2",0],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3",0],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6",0],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7",0],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter",0],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",0],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",0],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",0],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant",0],"#Av;W`BG=vl=H0s()-!=":["#sq0_start",0],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",0],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",0],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",0],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt",0],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",0],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant",0],"@4/+@;`xIa1GD6lDn;es":["#sq1_start",0],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",0],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled",0],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter",0],":~1CFOUK_x[i{fP8hA[3":["#tri_period",0],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter",0],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",0],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag",0],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled",0],"JA8|Du$U5F}!TRea:xoo":["!idle_skip",0],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable",0],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",0],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate",0],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",0],"elV@:}M3MreZKq22A%3?":["#sq0_swreload",0],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",0],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",0],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt",0],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant",0],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start",0],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter",0],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled",0],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable",0],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",0],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate",0],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",0],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload",0],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",0],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",0],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",0],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI",0],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",0],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",0],"LieAxAMhdI5M{cEs}+(t":["nes: address",0],"n;0UExIQMoO!Lz=!vPek":["@lastframe",0],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",0],"HM)En0c}chMa#CL/6:U:":["$prg_banks",0],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",0],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode",0],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",0],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",0],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled",0],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",0]},"lists":{"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"K9EeL,gT~K#pd2O-]8{E":["!and_table",[]],"OmUHLg`Ks]E}iO,)GyY3":["!ora_table",[]],"@:a?(:d2~c*i{a?h-Su_":["!eor_table",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",[]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",[]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",[]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",[]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",[]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]]},"broadcasts":{},"blocks":{"a/n":{"opcode":"event_whenbroadcastreceived","next":"Il","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"Il":{"opcode":"control_if","next":null,"parent":"a/n","inputs":{"CONDITION":[2,"a/o"],"SUBSTACK":[2,"ajS"]},"fields":{},"shadow":false,"topLevel":false},"a/o":{"opcode":"operator_equals","next":null,"parent":"Il","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ajS":{"opcode":"control_for_each","next":null,"parent":"Il","inputs":{"VALUE":[1,[6,"2"]],"SUBSTACK":[2,"ajT"]},"fields":{"VARIABLE":["id","n4Vk.4K3+)e4)7]IZXt*"]},"shadow":false,"topLevel":false},"ajT":{"opcode":"control_create_clone_of","next":null,"parent":"ajS","inputs":{"CLONE_OPTION":[1,"a/p"]},"fields":{},"shadow":false,"topLevel":false},"a/p":{"opcode":"control_create_clone_of_menu","next":null,"parent":"ajT","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a/q":{"opcode":"control_start_as_clone","next":"ajU","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":485,"y":64},"ajU":{"opcode":"sound_setvolumeto","next":"nq","parent":"a/q","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nq":{"opcode":"control_if","next":"Im","parent":"ajU","inputs":{"CONDITION":[2,"a/r"],"SUBSTACK":[2,"ajV"]},"fields":{},"shadow":false,"topLevel":false},"a/r":{"opcode":"operator_equals","next":null,"parent":"nq","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ajV":{"opcode":"control_forever","next":null,"parent":"nq","inputs":{"SUBSTACK":[2,"ajW"]},"fields":{},"shadow":false,"topLevel":false},"ajW":{"opcode":"sound_setvolumeto","next":null,"parent":"ajV","inputs":{"VOLUME":[3,"In",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"In":{"opcode":"operator_multiply","next":null,"parent":"ajW","inputs":{"NUM1":[3,"a/s",[4,0]],"NUM2":[3,"ajX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/s":{"opcode":"data_itemoflist","next":null,"parent":"In","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ajX":{"opcode":"operator_lt","next":null,"parent":"In","inputs":{"OPERAND1":[3,"a/t",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a/t":{"opcode":"data_itemoflist","next":null,"parent":"ajX","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Im":{"opcode":"control_if","next":null,"parent":"nq","inputs":{"CONDITION":[2,"a/u"],"SUBSTACK":[2,"ajY"]},"fields":{},"shadow":false,"topLevel":false},"a/u":{"opcode":"operator_equals","next":null,"parent":"Im","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ajY":{"opcode":"control_forever","next":null,"parent":"Im","inputs":{"SUBSTACK":[2,"ajZ"]},"fields":{},"shadow":false,"topLevel":false},"ajZ":{"opcode":"sound_setvolumeto","next":null,"parent":"ajY","inputs":{"VOLUME":[3,"Io",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Io":{"opcode":"operator_multiply","next":null,"parent":"ajZ","inputs":{"NUM1":[3,"a/v",[4,0]],"NUM2":[3,"aj0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/v":{"opcode":"data_itemoflist","next":null,"parent":"Io","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aj0":{"opcode":"operator_gt","next":null,"parent":"Io","inputs":{"OPERAND1":[3,"a/w",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a/w":{"opcode":"data_itemoflist","next":null,"parent":"aj0","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a/x":{"opcode":"control_start_as_clone","next":"aj1","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":485,"y":700},"aj1":{"opcode":"sound_cleareffects","next":"nr","parent":"a/x","inputs":{},"fields":{},"shadow":false,"topLevel":false},"nr":{"opcode":"control_if","next":"Ip","parent":"aj1","inputs":{"CONDITION":[2,"a/y"],"SUBSTACK":[2,"aj2"]},"fields":{},"shadow":false,"topLevel":false},"a/y":{"opcode":"operator_equals","next":null,"parent":"nr","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aj2":{"opcode":"control_forever","next":null,"parent":"nr","inputs":{"SUBSTACK":[2,"aj3"]},"fields":{},"shadow":false,"topLevel":false},"aj3":{"opcode":"sound_seteffectto","next":null,"parent":"aj2","inputs":{"VALUE":[3,"aj4",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"aj4":{"opcode":"operator_multiply","next":null,"parent":"aj3","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aj5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aj5":{"opcode":"operator_mathop","next":null,"parent":"aj4","inputs":{"NUM":[3,"aj6",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"aj6":{"opcode":"operator_divide","next":null,"parent":"aj5","inputs":{"NUM1":[3,"a/z",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"a/z":{"opcode":"data_itemoflist","next":null,"parent":"aj6","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ip":{"opcode":"control_if","next":null,"parent":"nr","inputs":{"CONDITION":[2,"a/A"],"SUBSTACK":[2,"aj7"]},"fields":{},"shadow":false,"topLevel":false},"a/A":{"opcode":"operator_equals","next":null,"parent":"Ip","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aj7":{"opcode":"control_forever","next":null,"parent":"Ip","inputs":{"SUBSTACK":[2,"aj8"]},"fields":{},"shadow":false,"topLevel":false},"aj8":{"opcode":"sound_seteffectto","next":null,"parent":"aj7","inputs":{"VALUE":[3,"aj9",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"aj9":{"opcode":"operator_multiply","next":null,"parent":"aj8","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aj!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aj!":{"opcode":"operator_mathop","next":null,"parent":"aj9","inputs":{"NUM":[3,"aj#",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"aj#":{"opcode":"operator_divide","next":null,"parent":"aj!","inputs":{"NUM1":[3,"a/B",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"a/B":{"opcode":"data_itemoflist","next":null,"parent":"aj#","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a/C":{"opcode":"event_whenbroadcastreceived","next":"aj%","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"aj%":{"opcode":"sound_stopallsounds","next":"a/D","parent":"a/C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a/D":{"opcode":"control_delete_this_clone","next":null,"parent":"aj%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a/E":{"opcode":"control_start_as_clone","next":"aj(","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"aj(":{"opcode":"control_wait","next":"ns","parent":"a/E","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ns":{"opcode":"control_if","next":"Iq","parent":"aj(","inputs":{"CONDITION":[2,"a/F"],"SUBSTACK":[2,"aj)"]},"fields":{},"shadow":false,"topLevel":false},"a/F":{"opcode":"operator_equals","next":null,"parent":"ns","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aj)":{"opcode":"control_forever","next":null,"parent":"ns","inputs":{"SUBSTACK":[2,"aj*"]},"fields":{},"shadow":false,"topLevel":false},"aj*":{"opcode":"sound_playuntildone","next":null,"parent":"aj)","inputs":{"SOUND_MENU":[1,"a/G"]},"fields":{},"shadow":false,"topLevel":false},"a/G":{"opcode":"sound_sounds_menu","next":null,"parent":"aj*","inputs":{},"fields":{"SOUND_MENU":["triangle_200",null]},"shadow":true,"topLevel":false},"Iq":{"opcode":"control_if","next":null,"parent":"ns","inputs":{"CONDITION":[2,"a/H"],"SUBSTACK":[2,"aj+"]},"fields":{},"shadow":false,"topLevel":false},"a/H":{"opcode":"operator_equals","next":null,"parent":"Iq","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aj+":{"opcode":"control_forever","next":null,"parent":"Iq","inputs":{"SUBSTACK":[2,"aj,"]},"fields":{},"shadow":false,"topLevel":false},"aj,":{"opcode":"sound_playuntildone","next":null,"parent":"aj+","inputs":{"SOUND_MENU":[1,"a/I"]},"fields":{},"shadow":false,"topLevel":false},"a/I":{"opcode":"sound_sounds_menu","next":null,"parent":"aj,","inputs":{},"fields":{"SOUND_MENU":["triangle_400",null]},"shadow":true,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"triangle_200","assetId":"45459e5cbca3b47ab97a592e3571e5cf","dataFormat":"wav","rate":48000,"sampleCount":192286,"md5ext":"45459e5cbca3b47ab97a592e3571e5cf.wav"},{"name":"triangle_400","assetId":"4233eb7b7cb98c8334d4a74fac0c6333","dataFormat":"wav","rate":48000,"sampleCount":192038,"md5ext":"4233eb7b7cb98c8334d4a74fac0c6333.wav"}],"volume":0,"layerOrder":17,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"nes","variables":{"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured","0"],"PdO5iRC_RNzBVsdyMO(q":["!op",197],"6zFO5H,!X[g$Ax)0BDc:":["!break","0"],"tnat7=?L(.Gf;]^`o~![":["!A",15],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",242],"3U:*vMhK7gf],IM6zRp[":["!SP",253],"1zbCCns)7a+FK@Nf^A#/":["!P",39],"kCSOy9d,i:SuF$IT*yY@":["!C",1],"3;^us/Z(haF2h@u#ixfd":["!D","0"],"wJv)p=)7?CJ}66t~yQza":["!I","1"],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",1],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",49809],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",8],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe","0"],"G)X5:8nBe}gs.ik#[2!5":["temp",2],"$4AJvv6|*3+i6I3,wC{(":["!penalty","0"],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",328],"gJ4fW7d.auVkNJS*cbF.":["!port2_count","0"],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",554901],"*q7!$s|[`z8:pfv)YW#?":["!immediate","0"],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit","0"],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow","0"],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr","0"],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",1],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled","1"],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag","1"],"rp0u9foKc3@?]%7O5HRb":["@mask_bg","1"],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite","1"],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg","1"],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite","0"],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",16768],"oS%53`U7y@bB1gbSz8^+":["@data_latch","00000000"],"5@CAuX+T_vc:]!OZM32!":["@write_toggle","0"],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer","0"],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip","0"],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",100],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result","00000000"],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",32],"OQF50=wL0|j4S5.I%k/,":["@bit",8],"1oCHy{p]O4~gQKbeR[pS":["@palette",1],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",1],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",66],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",128],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",172],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",1],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",2],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",8192],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr","1"],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt","0"],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit","1"],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode","1"],"fyS(EXct?2w*M.Nwqgr~":["#sequence",1],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt","0"],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter","0"],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled","0"],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0","0"],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode","0"],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1","0"],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch","0"],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled","0"],"(Bva{aj,%,g7M19235_|":["$irq_occured","0"],"Rsej-utFuPehsXAVyTSL":["$reg0","0"],":qHrq7o:g@OR|zUf/9t(":["$reg1","0"],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode","0"],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0","0"],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1","0"],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2","0"],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3","0"],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4","0"],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5","0"],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload","0"],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2","0"],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3","0"],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6","0"],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7","0"],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter","0"],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",253],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",1],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",0],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant","1"],"#Av;W`BG=vl=H0s()-!=":["#sq0_start","0"],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",0],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",1],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",189],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt","0"],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",0],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant","1"],"@4/+@;`xIa1GD6lDn;es":["#sq1_start","0"],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",0],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled","0"],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter","0"],":~1CFOUK_x[i{fP8hA[3":["#tri_period",380],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter","0"],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",1],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag","0"],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled","0"],"JA8|Du$U5F}!TRea:xoo":["!idle_skip","0"],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable","0"],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",7],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate","0"],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",7],"elV@:}M3MreZKq22A%3?":["#sq0_swreload","0"],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",3],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",254],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt","0"],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant","1"],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start","0"],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter","0"],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled","0"],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable","0"],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",7],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate","0"],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",7],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload","0"],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",3],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",190],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",768],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI","0"],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",549573],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",15],"LieAxAMhdI5M{cEs}+(t":["nes: address",210],"n;0UExIQMoO!Lz=!vPek":["@lastframe",8339.60565962963],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",259],"HM)En0c}chMa#CL/6:U:":["$prg_banks",32],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",1],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode","0"],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",59776],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",257],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled","0"],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",7]},"lists":{"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",["1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","13","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","3","33","3","1","2","34","2","2","0","35","0","3","4","36","4","4","11","37","14","37","6","38","12","12","0","39","0","39","40","40","39","39","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","5","6","6","12","12","0","7","0","7","8","8","7","7","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","","0 imp/acc","1 inx","2 zp","3 imm","4 abs","5 iny","6 zpx","7 aby","8 abx","11 rel","12 zpy","13 ind","14 stp","+32: penalty",""]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",["00","01","02","03","04","05","06","07","08","09","0A","0B","0C","0D","0E","0F","10","11","12","13","14","15","16","17","18","19","1A","1B","1C","1D","1E","1F","20","21","22","23","24","25","26","27","28","29","2A","2B","2C","2D","2E","2F","30","31","32","33","34","35","36","37","38","39","3A","3B","3C","3D","3E","3F","40","41","42","43","44","45","46","47","48","49","4A","4B","4C","4D","4E","4F","50","51","52","53","54","55","56","57","58","59","5A","5B","5C","5D","5E","5F","60","61","62","63","64","65","66","67","68","69","6A","6B","6C","6D","6E","6F","70","71","72","73","74","75","76","77","78","79","7A","7B","7C","7D","7E","7F","80","81","82","83","84","85","86","87","88","89","8A","8B","8C","8D","8E","8F","90","91","92","93","94","95","96","97","98","99","9A","9B","9C","9D","9E","9F","A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","AA","AB","AC","AD","AE","AF","B0","B1","B2","B3","B4","B5","B6","B7","B8","B9","BA","BB","BC","BD","BE","BF","C0","C1","C2","C3","C4","C5","C6","C7","C8","C9","CA","CB","CC","CD","CE","CF","D0","D1","D2","D3","D4","D5","D6","D7","D8","D9","DA","DB","DC","DD","DE","DF","E0","E1","E2","E3","E4","E5","E6","E7","E8","E9","EA","EB","EC","ED","EE","EF","F0","F1","F2","F3","F4","F5","F6","F7","F8","F9","FA","FB","FC","FD","FE","FF"]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",["#666666","#002A88","#1412A7","#3B00A4","#5C007E","#6E0040","#6C0600","#561D00","#333500","#0B4800","#005200","#004F08","#00404D","#000000","#000000","#000000","#ADADAD","#215FD9","#4240FF","#7527FE","#A01ACC","#B71E7B","#B53120","#994E00","#6B6D00","#388700","#0C9300","#008F32","#007C8D","#000000","#000000","#000000","#FFFEFF","#64B0FF","#9290FF","#C676FF","#F36AFF","#FE6ECC","#FE8170","#EA9E22","#BCBE00","#88D800","#5CE430","#45E082","#48CDDE","#4F4F4F","#000000","#000000","#FFFEFF","#C0DFFF","#D3D2FF","#E8C8FF","#FBC2FF","#FEC4EA","#FECCC5","#F7D8A5","#E4E594","#CFEF96","#BDF4AB","#B3F3CC","#B5EBF2","#B8B8B8","#000000","#000000"]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",["10","254","20","2","40","4","80","6","160","8","60","10","14","12","26","14","12","16","24","18","48","20","96","22","192","24","72","26","16","28","32","30"]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",["3","7","15","31","63","95","127","159","201","253","379","507","761","1015","2033","4067"]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]]},"broadcasts":{},"blocks":{"a/J":{"opcode":"event_whenbroadcastreceived","next":"a/K","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":543,"y":1860},"a/K":{"opcode":"control_stop","next":null,"parent":"a/J","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a/L":{"opcode":"event_whenbroadcastreceived","next":"aj-","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":543,"y":2032},"aj-":{"opcode":"control_forever","next":null,"parent":"a/L","inputs":{"SUBSTACK":[2,"a/M"]},"fields":{},"shadow":false,"topLevel":false},"a/M":{"opcode":"procedures_call","next":null,"parent":"aj-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!cpu","argumentids":"[]","warp":"true"}},"aj.":{"opcode":"procedures_definition","next":"nt","parent":null,"inputs":{"custom_block":[1,"a/N"]},"fields":{},"shadow":false,"topLevel":true,"x":1903,"y":64},"a/N":{"opcode":"procedures_prototype","next":null,"parent":"aj.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!execute","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"nt":{"opcode":"control_if","next":"nu","parent":"aj.","inputs":{"CONDITION":[2,"aj/"],"SUBSTACK":[2,"nv"]},"fields":{},"shadow":false,"topLevel":false},"aj/":{"opcode":"operator_equals","next":null,"parent":"nt","inputs":{"OPERAND1":[3,"a/O",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/O":{"opcode":"operator_mod","next":null,"parent":"aj/","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"nv":{"opcode":"control_if","next":"nw","parent":"nt","inputs":{"CONDITION":[2,"aj:"],"SUBSTACK":[2,"nx"]},"fields":{},"shadow":false,"topLevel":false},"aj:":{"opcode":"operator_equals","next":null,"parent":"nv","inputs":{"OPERAND1":[3,"a/P",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a/P":{"opcode":"operator_mod","next":null,"parent":"aj:","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"nx":{"opcode":"control_if","next":"ny","parent":"nv","inputs":{"CONDITION":[2,"a/Q"],"SUBSTACK":[2,"aj;"]},"fields":{},"shadow":false,"topLevel":false},"a/Q":{"opcode":"operator_equals","next":null,"parent":"nx","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aj;":{"opcode":"procedures_call","next":"a/R","parent":"nx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"php","argumentids":"[]","warp":"false"}},"a/R":{"opcode":"control_stop","next":null,"parent":"aj;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ny":{"opcode":"control_if","next":"nz","parent":"nx","inputs":{"CONDITION":[2,"a/S"],"SUBSTACK":[2,"aj="]},"fields":{},"shadow":false,"topLevel":false},"a/S":{"opcode":"operator_equals","next":null,"parent":"ny","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"40"]]},"fields":{},"shadow":false,"topLevel":false},"aj=":{"opcode":"procedures_call","next":"a/T","parent":"ny","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"plp","argumentids":"[]","warp":"false"}},"a/T":{"opcode":"control_stop","next":null,"parent":"aj=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nz":{"opcode":"control_if","next":"nA","parent":"ny","inputs":{"CONDITION":[2,"a/U"],"SUBSTACK":[2,"aj?"]},"fields":{},"shadow":false,"topLevel":false},"a/U":{"opcode":"operator_equals","next":null,"parent":"nz","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"72"]]},"fields":{},"shadow":false,"topLevel":false},"aj?":{"opcode":"procedures_call","next":"a/V","parent":"nz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pha","argumentids":"[]","warp":"false"}},"a/V":{"opcode":"control_stop","next":null,"parent":"aj?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nA":{"opcode":"control_if","next":"nB","parent":"nz","inputs":{"CONDITION":[2,"a/W"],"SUBSTACK":[2,"aj@"]},"fields":{},"shadow":false,"topLevel":false},"a/W":{"opcode":"operator_equals","next":null,"parent":"nA","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"104"]]},"fields":{},"shadow":false,"topLevel":false},"aj@":{"opcode":"procedures_call","next":"a/X","parent":"nA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pla","argumentids":"[]","warp":"false"}},"a/X":{"opcode":"control_stop","next":null,"parent":"aj@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nB":{"opcode":"control_if","next":"nC","parent":"nA","inputs":{"CONDITION":[2,"a/Y"],"SUBSTACK":[2,"aj["]},"fields":{},"shadow":false,"topLevel":false},"a/Y":{"opcode":"operator_equals","next":null,"parent":"nB","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"136"]]},"fields":{},"shadow":false,"topLevel":false},"aj[":{"opcode":"procedures_call","next":"a/Z","parent":"nB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dey","argumentids":"[]","warp":"false"}},"a/Z":{"opcode":"control_stop","next":null,"parent":"aj[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nC":{"opcode":"control_if","next":"nD","parent":"nB","inputs":{"CONDITION":[2,"a/0"],"SUBSTACK":[2,"aj]"]},"fields":{},"shadow":false,"topLevel":false},"a/0":{"opcode":"operator_equals","next":null,"parent":"nC","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"168"]]},"fields":{},"shadow":false,"topLevel":false},"aj]":{"opcode":"procedures_call","next":"a/1","parent":"nC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tay","argumentids":"[]","warp":"false"}},"a/1":{"opcode":"control_stop","next":null,"parent":"aj]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nw":{"opcode":"control_if","next":"nE","parent":"nv","inputs":{"CONDITION":[2,"aj^"],"SUBSTACK":[2,"nF"]},"fields":{},"shadow":false,"topLevel":false},"aj^":{"opcode":"operator_equals","next":null,"parent":"nw","inputs":{"OPERAND1":[3,"a/2",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a/2":{"opcode":"operator_mod","next":null,"parent":"aj^","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"nF":{"opcode":"control_if","next":"nG","parent":"nw","inputs":{"CONDITION":[2,"a/3"],"SUBSTACK":[2,"Ir"]},"fields":{},"shadow":false,"topLevel":false},"a/3":{"opcode":"operator_equals","next":null,"parent":"nF","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ir":{"opcode":"procedures_call","next":"a/4","parent":"nF","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/5"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/5":{"opcode":"operator_equals","next":null,"parent":"Ir","inputs":{"OPERAND1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/4":{"opcode":"control_stop","next":null,"parent":"Ir","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nG":{"opcode":"control_if","next":"nH","parent":"nF","inputs":{"CONDITION":[2,"a/6"],"SUBSTACK":[2,"Is"]},"fields":{},"shadow":false,"topLevel":false},"a/6":{"opcode":"operator_equals","next":null,"parent":"nG","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},"Is":{"opcode":"procedures_call","next":"a/7","parent":"nG","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/8"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/8":{"opcode":"operator_equals","next":null,"parent":"Is","inputs":{"OPERAND1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/7":{"opcode":"control_stop","next":null,"parent":"Is","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nH":{"opcode":"control_if","next":"nI","parent":"nG","inputs":{"CONDITION":[2,"a/9"],"SUBSTACK":[2,"It"]},"fields":{},"shadow":false,"topLevel":false},"a/9":{"opcode":"operator_equals","next":null,"parent":"nH","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"It":{"opcode":"procedures_call","next":"a/!","parent":"nH","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/#"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/#":{"opcode":"operator_equals","next":null,"parent":"It","inputs":{"OPERAND1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/!":{"opcode":"control_stop","next":null,"parent":"It","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nI":{"opcode":"control_if","next":"nJ","parent":"nH","inputs":{"CONDITION":[2,"a/%"],"SUBSTACK":[2,"Iu"]},"fields":{},"shadow":false,"topLevel":false},"a/%":{"opcode":"operator_equals","next":null,"parent":"nI","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"112"]]},"fields":{},"shadow":false,"topLevel":false},"Iu":{"opcode":"procedures_call","next":"a/(","parent":"nI","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/)"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/)":{"opcode":"operator_equals","next":null,"parent":"Iu","inputs":{"OPERAND1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/(":{"opcode":"control_stop","next":null,"parent":"Iu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nJ":{"opcode":"control_if","next":"nK","parent":"nI","inputs":{"CONDITION":[2,"a/*"],"SUBSTACK":[2,"Iv"]},"fields":{},"shadow":false,"topLevel":false},"a/*":{"opcode":"operator_equals","next":null,"parent":"nJ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"Iv":{"opcode":"procedures_call","next":"a/+","parent":"nJ","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/,"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/,":{"opcode":"operator_equals","next":null,"parent":"Iv","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/+":{"opcode":"control_stop","next":null,"parent":"Iv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nK":{"opcode":"control_if","next":"nL","parent":"nJ","inputs":{"CONDITION":[2,"a/-"],"SUBSTACK":[2,"Iw"]},"fields":{},"shadow":false,"topLevel":false},"a/-":{"opcode":"operator_equals","next":null,"parent":"nK","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"176"]]},"fields":{},"shadow":false,"topLevel":false},"Iw":{"opcode":"procedures_call","next":"a/.","parent":"nK","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a//"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a//":{"opcode":"operator_equals","next":null,"parent":"Iw","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/.":{"opcode":"control_stop","next":null,"parent":"Iw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nL":{"opcode":"control_if","next":"Ix","parent":"nK","inputs":{"CONDITION":[2,"a/:"],"SUBSTACK":[2,"Iy"]},"fields":{},"shadow":false,"topLevel":false},"a/:":{"opcode":"operator_equals","next":null,"parent":"nL","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},"Iy":{"opcode":"procedures_call","next":"a/;","parent":"nL","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/="]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/=":{"opcode":"operator_equals","next":null,"parent":"Iy","inputs":{"OPERAND1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/;":{"opcode":"control_stop","next":null,"parent":"Iy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ix":{"opcode":"control_if","next":null,"parent":"nL","inputs":{"CONDITION":[2,"a/?"],"SUBSTACK":[2,"Iz"]},"fields":{},"shadow":false,"topLevel":false},"a/?":{"opcode":"operator_equals","next":null,"parent":"Ix","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"Iz":{"opcode":"procedures_call","next":"a/@","parent":"Ix","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"a/["]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"a/[":{"opcode":"operator_equals","next":null,"parent":"Iz","inputs":{"OPERAND1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/@":{"opcode":"control_stop","next":null,"parent":"Iz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nE":{"opcode":"control_if","next":"nM","parent":"nw","inputs":{"CONDITION":[2,"aj_"],"SUBSTACK":[2,"nN"]},"fields":{},"shadow":false,"topLevel":false},"aj_":{"opcode":"operator_equals","next":null,"parent":"nE","inputs":{"OPERAND1":[3,"a/]",[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"a/]":{"opcode":"operator_mod","next":null,"parent":"aj_","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"nN":{"opcode":"control_if","next":"nO","parent":"nE","inputs":{"CONDITION":[2,"a/^"],"SUBSTACK":[2,"aj`"]},"fields":{},"shadow":false,"topLevel":false},"a/^":{"opcode":"operator_equals","next":null,"parent":"nN","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"aj`":{"opcode":"data_setvariableto","next":"a/_","parent":"nN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a/_":{"opcode":"control_stop","next":null,"parent":"aj`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nO":{"opcode":"control_if","next":"nP","parent":"nN","inputs":{"CONDITION":[2,"a/`"],"SUBSTACK":[2,"aj{"]},"fields":{},"shadow":false,"topLevel":false},"a/`":{"opcode":"operator_equals","next":null,"parent":"nO","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"56"]]},"fields":{},"shadow":false,"topLevel":false},"aj{":{"opcode":"data_setvariableto","next":"a/{","parent":"nO","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a/{":{"opcode":"control_stop","next":null,"parent":"aj{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nP":{"opcode":"control_if","next":"nQ","parent":"nO","inputs":{"CONDITION":[2,"a/|"],"SUBSTACK":[2,"aj|"]},"fields":{},"shadow":false,"topLevel":false},"a/|":{"opcode":"operator_equals","next":null,"parent":"nP","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"88"]]},"fields":{},"shadow":false,"topLevel":false},"aj|":{"opcode":"data_setvariableto","next":"a/}","parent":"nP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"a/}":{"opcode":"control_stop","next":null,"parent":"aj|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nQ":{"opcode":"control_if","next":"nR","parent":"nP","inputs":{"CONDITION":[2,"a/~"],"SUBSTACK":[2,"aj}"]},"fields":{},"shadow":false,"topLevel":false},"a/~":{"opcode":"operator_equals","next":null,"parent":"nQ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"120"]]},"fields":{},"shadow":false,"topLevel":false},"aj}":{"opcode":"data_setvariableto","next":"a:a","parent":"nQ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"a:a":{"opcode":"control_stop","next":null,"parent":"aj}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nR":{"opcode":"control_if","next":"nS","parent":"nQ","inputs":{"CONDITION":[2,"a:b"],"SUBSTACK":[2,"aj~"]},"fields":{},"shadow":false,"topLevel":false},"a:b":{"opcode":"operator_equals","next":null,"parent":"nR","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"152"]]},"fields":{},"shadow":false,"topLevel":false},"aj~":{"opcode":"procedures_call","next":"a:c","parent":"nR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tya","argumentids":"[]","warp":"false"}},"a:c":{"opcode":"control_stop","next":null,"parent":"aj~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nS":{"opcode":"control_if","next":"nT","parent":"nR","inputs":{"CONDITION":[2,"a:d"],"SUBSTACK":[2,"aka"]},"fields":{},"shadow":false,"topLevel":false},"a:d":{"opcode":"operator_equals","next":null,"parent":"nS","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"184"]]},"fields":{},"shadow":false,"topLevel":false},"aka":{"opcode":"data_setvariableto","next":"a:e","parent":"nS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"a:e":{"opcode":"control_stop","next":null,"parent":"aka","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nT":{"opcode":"control_if","next":"IA","parent":"nS","inputs":{"CONDITION":[2,"a:f"],"SUBSTACK":[2,"akb"]},"fields":{},"shadow":false,"topLevel":false},"a:f":{"opcode":"operator_equals","next":null,"parent":"nT","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"216"]]},"fields":{},"shadow":false,"topLevel":false},"akb":{"opcode":"data_setvariableto","next":"a:g","parent":"nT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"a:g":{"opcode":"control_stop","next":null,"parent":"akb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"IA":{"opcode":"control_if","next":null,"parent":"nT","inputs":{"CONDITION":[2,"a:h"],"SUBSTACK":[2,"akc"]},"fields":{},"shadow":false,"topLevel":false},"a:h":{"opcode":"operator_equals","next":null,"parent":"IA","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"akc":{"opcode":"data_setvariableto","next":"a:i","parent":"IA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"a:i":{"opcode":"control_stop","next":null,"parent":"akc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nM":{"opcode":"control_if","next":"nU","parent":"nE","inputs":{"CONDITION":[2,"a:j"],"SUBSTACK":[2,"nV"]},"fields":{},"shadow":false,"topLevel":false},"a:j":{"opcode":"operator_lt","next":null,"parent":"nM","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"nV":{"opcode":"control_if","next":"nW","parent":"nM","inputs":{"CONDITION":[2,"a:k"],"SUBSTACK":[2,"akd"]},"fields":{},"shadow":false,"topLevel":false},"a:k":{"opcode":"operator_equals","next":null,"parent":"nV","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"akd":{"opcode":"data_changevariableby","next":"ake","parent":"nV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"ake":{"opcode":"data_setvariableto","next":"a:l","parent":"akd","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"a:l":{"opcode":"control_stop","next":null,"parent":"ake","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nW":{"opcode":"control_if","next":"nX","parent":"nV","inputs":{"CONDITION":[2,"a:m"],"SUBSTACK":[2,"akf"]},"fields":{},"shadow":false,"topLevel":false},"a:m":{"opcode":"operator_equals","next":null,"parent":"nW","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"akf":{"opcode":"procedures_call","next":"a:n","parent":"nW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jsr","argumentids":"[]","warp":"false"}},"a:n":{"opcode":"control_stop","next":null,"parent":"akf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nU":{"opcode":"control_if","next":"nY","parent":"nM","inputs":{"CONDITION":[2,"a:o"],"SUBSTACK":[2,"nZ"]},"fields":{},"shadow":false,"topLevel":false},"a:o":{"opcode":"operator_lt","next":null,"parent":"nU","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"nZ":{"opcode":"control_if","next":"n0","parent":"nU","inputs":{"CONDITION":[2,"a:p"],"SUBSTACK":[2,"a:q"]},"fields":{},"shadow":false,"topLevel":false},"a:p":{"opcode":"operator_equals","next":null,"parent":"nZ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a:q":{"opcode":"control_stop","next":null,"parent":"nZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n0":{"opcode":"control_if","next":"akg","parent":"nZ","inputs":{"CONDITION":[2,"a:r"],"SUBSTACK":[2,"akh"]},"fields":{},"shadow":false,"topLevel":false},"a:r":{"opcode":"operator_equals","next":null,"parent":"n0","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"156"]]},"fields":{},"shadow":false,"topLevel":false},"akh":{"opcode":"procedures_call","next":"a:s","parent":"n0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shy","argumentids":"[]","warp":"false"}},"a:s":{"opcode":"control_stop","next":null,"parent":"akh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"akg":{"opcode":"procedures_call","next":"a:t","parent":"n0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sty","argumentids":"[]","warp":"false"}},"a:t":{"opcode":"control_stop","next":null,"parent":"akg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nY":{"opcode":"control_if","next":"n1","parent":"nU","inputs":{"CONDITION":[2,"a:u"],"SUBSTACK":[2,"aki"]},"fields":{},"shadow":false,"topLevel":false},"a:u":{"opcode":"operator_lt","next":null,"parent":"nY","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"aki":{"opcode":"procedures_call","next":"a:v","parent":"nY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldy","argumentids":"[]","warp":"false"}},"a:v":{"opcode":"control_stop","next":null,"parent":"aki","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n1":{"opcode":"control_if","next":"IB","parent":"nY","inputs":{"CONDITION":[2,"a:w"],"SUBSTACK":[2,"n2"]},"fields":{},"shadow":false,"topLevel":false},"a:w":{"opcode":"operator_lt","next":null,"parent":"n1","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"IB":{"opcode":"control_if","next":null,"parent":"n1","inputs":{"CONDITION":[2,"a:x"],"SUBSTACK":[2,"n3"]},"fields":{},"shadow":false,"topLevel":false},"a:x":{"opcode":"operator_lt","next":null,"parent":"IB","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"n3":{"opcode":"control_if","next":"akj","parent":"IB","inputs":{"CONDITION":[2,"a:y"],"SUBSTACK":[2,"akk"]},"fields":{},"shadow":false,"topLevel":false},"a:y":{"opcode":"operator_gt","next":null,"parent":"n3","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"243"]]},"fields":{},"shadow":false,"topLevel":false},"akk":{"opcode":"procedures_call","next":"a:z","parent":"n3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"a:z":{"opcode":"control_stop","next":null,"parent":"akk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"akj":{"opcode":"procedures_call","next":"a:A","parent":"n3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpx","argumentids":"[]","warp":"false"}},"a:A":{"opcode":"control_stop","next":null,"parent":"akj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nu":{"opcode":"control_if","next":"n4","parent":"nt","inputs":{"CONDITION":[2,"akl"],"SUBSTACK":[2,"n5"]},"fields":{},"shadow":false,"topLevel":false},"akl":{"opcode":"operator_equals","next":null,"parent":"nu","inputs":{"OPERAND1":[3,"a:B",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:B":{"opcode":"operator_mod","next":null,"parent":"akl","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"n5":{"opcode":"control_if","next":"n6","parent":"nu","inputs":{"CONDITION":[2,"a:C"],"SUBSTACK":[2,"akm"]},"fields":{},"shadow":false,"topLevel":false},"a:C":{"opcode":"operator_lt","next":null,"parent":"n5","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"akm":{"opcode":"procedures_call","next":"a:D","parent":"n5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ora","argumentids":"[]","warp":"false"}},"a:D":{"opcode":"control_stop","next":null,"parent":"akm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n6":{"opcode":"control_if","next":"n7","parent":"n5","inputs":{"CONDITION":[2,"a:E"],"SUBSTACK":[2,"akn"]},"fields":{},"shadow":false,"topLevel":false},"a:E":{"opcode":"operator_lt","next":null,"parent":"n6","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"akn":{"opcode":"procedures_call","next":"a:F","parent":"n6","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"a:F":{"opcode":"control_stop","next":null,"parent":"akn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n7":{"opcode":"control_if","next":"n8","parent":"n6","inputs":{"CONDITION":[2,"a:G"],"SUBSTACK":[2,"ako"]},"fields":{},"shadow":false,"topLevel":false},"a:G":{"opcode":"operator_lt","next":null,"parent":"n7","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"ako":{"opcode":"procedures_call","next":"a:H","parent":"n7","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"eor","argumentids":"[]","warp":"false"}},"a:H":{"opcode":"control_stop","next":null,"parent":"ako","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n8":{"opcode":"control_if","next":"n9","parent":"n7","inputs":{"CONDITION":[2,"a:I"],"SUBSTACK":[2,"akp"]},"fields":{},"shadow":false,"topLevel":false},"a:I":{"opcode":"operator_lt","next":null,"parent":"n8","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"akp":{"opcode":"procedures_call","next":"a:J","parent":"n8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"adc","argumentids":"[]","warp":"false"}},"a:J":{"opcode":"control_stop","next":null,"parent":"akp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n9":{"opcode":"control_if","next":"n!","parent":"n8","inputs":{"CONDITION":[2,"a:K"],"SUBSTACK":[2,"n#"]},"fields":{},"shadow":false,"topLevel":false},"a:K":{"opcode":"operator_lt","next":null,"parent":"n9","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"n#":{"opcode":"control_if","next":"akq","parent":"n9","inputs":{"CONDITION":[2,"a:L"],"SUBSTACK":[2,"a:M"]},"fields":{},"shadow":false,"topLevel":false},"a:L":{"opcode":"operator_equals","next":null,"parent":"n#","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"137"]]},"fields":{},"shadow":false,"topLevel":false},"a:M":{"opcode":"control_stop","next":null,"parent":"n#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"akq":{"opcode":"procedures_call","next":"a:N","parent":"n#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sta","argumentids":"[]","warp":"false"}},"a:N":{"opcode":"control_stop","next":null,"parent":"akq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n!":{"opcode":"control_if","next":"n%","parent":"n9","inputs":{"CONDITION":[2,"a:O"],"SUBSTACK":[2,"akr"]},"fields":{},"shadow":false,"topLevel":false},"a:O":{"opcode":"operator_lt","next":null,"parent":"n!","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"akr":{"opcode":"procedures_call","next":"a:P","parent":"n!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","warp":"false"}},"a:P":{"opcode":"control_stop","next":null,"parent":"akr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n%":{"opcode":"control_if","next":"IC","parent":"n!","inputs":{"CONDITION":[2,"a:Q"],"SUBSTACK":[2,"aks"]},"fields":{},"shadow":false,"topLevel":false},"a:Q":{"opcode":"operator_lt","next":null,"parent":"n%","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"aks":{"opcode":"procedures_call","next":"a:R","parent":"n%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cmp","argumentids":"[]","warp":"false"}},"a:R":{"opcode":"control_stop","next":null,"parent":"aks","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"IC":{"opcode":"control_if","next":null,"parent":"n%","inputs":{"CONDITION":[2,"a:S"],"SUBSTACK":[2,"akt"]},"fields":{},"shadow":false,"topLevel":false},"a:S":{"opcode":"operator_lt","next":null,"parent":"IC","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"akt":{"opcode":"procedures_call","next":"a:T","parent":"IC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","warp":"false"}},"a:T":{"opcode":"control_stop","next":null,"parent":"akt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a:U":{"opcode":"event_whenbroadcastreceived","next":"aku","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":543,"y":64},"aku":{"opcode":"data_setvariableto","next":"akv","parent":"a:U","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"akv":{"opcode":"data_setvariableto","next":"akw","parent":"aku","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"akw":{"opcode":"data_setvariableto","next":"ID","parent":"akv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"ID":{"opcode":"data_setvariableto","next":"akx","parent":"akw","inputs":{"VALUE":[3,"IE",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"IE":{"opcode":"operator_add","next":null,"parent":"ID","inputs":{"NUM1":[3,"aky",[4,0]],"NUM2":[3,"akz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aky":{"opcode":"operator_multiply","next":null,"parent":"IE","inputs":{"NUM1":[3,"akA",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"akA":{"opcode":"data_itemoflist","next":null,"parent":"aky","inputs":{"INDEX":[3,"a:V",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"a:V":{"opcode":"operator_subtract","next":null,"parent":"akA","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"akz":{"opcode":"data_itemoflist","next":null,"parent":"IE","inputs":{"INDEX":[3,"a:W",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"a:W":{"opcode":"operator_subtract","next":null,"parent":"akz","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"akx":{"opcode":"data_setvariableto","next":"akB","parent":"ID","inputs":{"VALUE":[1,[10,"253"]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"akB":{"opcode":"data_setvariableto","next":"akC","parent":"akx","inputs":{"VALUE":[1,[10,"36"]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"akC":{"opcode":"data_setvariableto","next":"akD","parent":"akB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"akD":{"opcode":"data_setvariableto","next":"akE","parent":"akC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"akE":{"opcode":"data_setvariableto","next":"akF","parent":"akD","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"akF":{"opcode":"data_setvariableto","next":"akG","parent":"akE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"akG":{"opcode":"data_setvariableto","next":"akH","parent":"akF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"akH":{"opcode":"data_setvariableto","next":"akI","parent":"akG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"akI":{"opcode":"data_setvariableto","next":"akJ","parent":"akH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"akJ":{"opcode":"data_setvariableto","next":"akK","parent":"akI","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"akK":{"opcode":"data_setvariableto","next":"akL","parent":"akJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"akL":{"opcode":"data_setvariableto","next":"akM","parent":"akK","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"akM":{"opcode":"data_setvariableto","next":"akN","parent":"akL","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"akN":{"opcode":"data_setvariableto","next":"akO","parent":"akM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"akO":{"opcode":"data_setvariableto","next":"akP","parent":"akN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"akP":{"opcode":"data_setvariableto","next":"akQ","parent":"akO","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"akQ":{"opcode":"data_setvariableto","next":"akR","parent":"akP","inputs":{"VALUE":[1,[10,"27"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"akR":{"opcode":"data_setvariableto","next":"akS","parent":"akQ","inputs":{"VALUE":[1,[10,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"akS":{"opcode":"data_setvariableto","next":"akT","parent":"akR","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"akT":{"opcode":"data_deletealloflist","next":"IF","parent":"akS","inputs":{},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"IF":{"opcode":"control_repeat","next":"IG","parent":"akT","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"a:X"]},"fields":{},"shadow":false,"topLevel":false},"a:X":{"opcode":"data_addtolist","next":null,"parent":"IF","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"IG":{"opcode":"control_if","next":null,"parent":"IF","inputs":{"CONDITION":[2,"a:Y"],"SUBSTACK":[2,"akU"]},"fields":{},"shadow":false,"topLevel":false},"a:Y":{"opcode":"operator_equals","next":null,"parent":"IG","inputs":{"OPERAND1":[3,[12,"battery","H0q(Yr;S8emYQ`u=.co}"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"akU":{"opcode":"data_deletealloflist","next":"IH","parent":"IG","inputs":{},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"IH":{"opcode":"control_repeat","next":"a:Z","parent":"akU","inputs":{"TIMES":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[6,0]],"SUBSTACK":[2,"a:0"]},"fields":{},"shadow":false,"topLevel":false},"a:0":{"opcode":"data_addtolist","next":null,"parent":"IH","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"a:Z":{"opcode":"data_setvariableto","next":null,"parent":"IH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["battery","H0q(Yr;S8emYQ`u=.co}"]},"shadow":false,"topLevel":false},"akV":{"opcode":"procedures_definition","next":"akW","parent":null,"inputs":{"custom_block":[1,"a:1"]},"fields":{},"shadow":false,"topLevel":true,"x":543,"y":2280},"a:1":{"opcode":"procedures_prototype","next":null,"parent":"akV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!cpu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"akW":{"opcode":"data_setvariableto","next":"akX","parent":"akV","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"akX":{"opcode":"procedures_call","next":"akY","parent":"akW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"akY":{"opcode":"data_setvariableto","next":"akZ","parent":"akX","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!op","PdO5iRC_RNzBVsdyMO(q"]},"shadow":false,"topLevel":false},"akZ":{"opcode":"data_changevariableby","next":"ak0","parent":"akY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"ak0":{"opcode":"data_changevariableby","next":"ak1","parent":"akZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ak1":{"opcode":"procedures_call","next":"ak2","parent":"ak0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ak2":{"opcode":"procedures_call","next":"ak3","parent":"ak1","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!address","argumentids":"[]","warp":"true"}},"ak3":{"opcode":"procedures_call","next":"ak4","parent":"ak2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!execute","argumentids":"[]","warp":"true"}},"ak4":{"opcode":"procedures_call","next":"n(","parent":"ak3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set p","argumentids":"[]","warp":"true"}},"n(":{"opcode":"control_if","next":"n)","parent":"ak4","inputs":{"CONDITION":[2,"a:2"],"SUBSTACK":[2,"ak5"]},"fields":{},"shadow":false,"topLevel":false},"a:2":{"opcode":"operator_gt","next":null,"parent":"n(","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"ak5":{"opcode":"data_changevariableby","next":"a:3","parent":"n(","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"a:3":{"opcode":"procedures_call","next":null,"parent":"ak5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"n)":{"opcode":"control_if","next":"n*","parent":"n(","inputs":{"CONDITION":[2,"a:4"],"SUBSTACK":[2,"ak6"]},"fields":{},"shadow":false,"topLevel":false},"a:4":{"opcode":"operator_gt","next":null,"parent":"n)","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ak6":{"opcode":"data_changevariableby","next":"a:5","parent":"n)","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"a:5":{"opcode":"procedures_call","next":null,"parent":"ak6","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"n*":{"opcode":"control_if","next":"n+","parent":"n)","inputs":{"CONDITION":[2,"ak7"],"SUBSTACK":[2,"ak8"]},"fields":{},"shadow":false,"topLevel":false},"ak7":{"opcode":"operator_equals","next":null,"parent":"n*","inputs":{"OPERAND1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]],"OPERAND2":[3,"a:6",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a:6":{"opcode":"operator_mod","next":null,"parent":"ak7","inputs":{"NUM1":[3,[12,"idle_skip","n5MwDuyB]-ZSKqim@`ip"],[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"ak8":{"opcode":"data_changevariableby","next":"II","parent":"n*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"II":{"opcode":"control_if","next":null,"parent":"ak8","inputs":{"CONDITION":[2,"a:7"],"SUBSTACK":[2,"n,"]},"fields":{},"shadow":false,"topLevel":false},"a:7":{"opcode":"operator_equals","next":null,"parent":"II","inputs":{"OPERAND1":[3,[12,"!idle_skip","JA8|Du$U5F}!TRea:xoo"],[10,""]],"OPERAND2":[1,[10,"42"]]},"fields":{},"shadow":false,"topLevel":false},"n,":{"opcode":"control_repeat_until","next":"a:8","parent":"II","inputs":{"CONDITION":[2,"IJ"],"SUBSTACK":[2,"ak9"]},"fields":{},"shadow":false,"topLevel":false},"IJ":{"opcode":"operator_or","next":null,"parent":"n,","inputs":{"OPERAND1":[2,"a:9"],"OPERAND2":[2,"IK"]},"fields":{},"shadow":false,"topLevel":false},"a:9":{"opcode":"operator_equals","next":null,"parent":"IJ","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IK":{"opcode":"operator_or","next":null,"parent":"IJ","inputs":{"OPERAND1":[2,"IL"],"OPERAND2":[2,"IM"]},"fields":{},"shadow":false,"topLevel":false},"IL":{"opcode":"operator_and","next":null,"parent":"IK","inputs":{"OPERAND1":[2,"a:!"],"OPERAND2":[2,"a:#"]},"fields":{},"shadow":false,"topLevel":false},"a:!":{"opcode":"operator_gt","next":null,"parent":"IL","inputs":{"OPERAND1":[3,[12,"nes: IRQ","N)orW@%%E%$4al|2,BkE"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:#":{"opcode":"operator_equals","next":null,"parent":"IL","inputs":{"OPERAND1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"IM":{"opcode":"operator_and","next":null,"parent":"IK","inputs":{"OPERAND1":[2,"a:%"],"OPERAND2":[2,"a:("]},"fields":{},"shadow":false,"topLevel":false},"a:%":{"opcode":"operator_gt","next":null,"parent":"IM","inputs":{"OPERAND1":[3,[12,"idle_skip","n5MwDuyB]-ZSKqim@`ip"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"a:(":{"opcode":"operator_equals","next":null,"parent":"IM","inputs":{"OPERAND1":[3,[12,"@sprite_hit","Y5dm@[4]PzSED`#Df2W["],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ak9":{"opcode":"data_changevariableby","next":"ak!","parent":"n,","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ak!":{"opcode":"data_changevariableby","next":"n-","parent":"ak9","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"n-":{"opcode":"control_if","next":"n.","parent":"ak!","inputs":{"CONDITION":[2,"a:)"],"SUBSTACK":[2,"ak#"]},"fields":{},"shadow":false,"topLevel":false},"a:)":{"opcode":"operator_gt","next":null,"parent":"n-","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"ak#":{"opcode":"data_changevariableby","next":"a:*","parent":"n-","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"a:*":{"opcode":"procedures_call","next":null,"parent":"ak#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"n.":{"opcode":"control_if","next":"a:+","parent":"n-","inputs":{"CONDITION":[2,"a:,"],"SUBSTACK":[2,"ak%"]},"fields":{},"shadow":false,"topLevel":false},"a:,":{"opcode":"operator_gt","next":null,"parent":"n.","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ak%":{"opcode":"data_changevariableby","next":"a:-","parent":"n.","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"a:-":{"opcode":"procedures_call","next":null,"parent":"ak%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"a:+":{"opcode":"procedures_call","next":null,"parent":"n.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"a:8":{"opcode":"data_setvariableto","next":null,"parent":"n,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"n+":{"opcode":"control_if","next":"n/","parent":"n*","inputs":{"CONDITION":[2,"IN"],"SUBSTACK":[2,"ak("]},"fields":{},"shadow":false,"topLevel":false},"IN":{"opcode":"operator_and","next":null,"parent":"n+","inputs":{"OPERAND1":[2,"a:."],"OPERAND2":[2,"a:/"]},"fields":{},"shadow":false,"topLevel":false},"a:.":{"opcode":"operator_equals","next":null,"parent":"IN","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:/":{"opcode":"operator_equals","next":null,"parent":"IN","inputs":{"OPERAND1":[3,[12,"!NMI_occured","YCX/}Ja|`ApccN*r;:,O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ak(":{"opcode":"data_changevariableby","next":"ak)","parent":"n+","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ak)":{"opcode":"data_changevariableby","next":"ak*","parent":"ak(","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ak*":{"opcode":"procedures_call","next":"ak+","parent":"ak)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ak+":{"opcode":"procedures_call","next":"ak,","parent":"ak*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ak,":{"opcode":"procedures_call","next":"a::","parent":"ak+","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65530"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"a::":{"opcode":"data_setvariableto","next":null,"parent":"ak,","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"n/":{"opcode":"control_if","next":"n:","parent":"n+","inputs":{"CONDITION":[2,"IO"],"SUBSTACK":[2,"ak-"]},"fields":{},"shadow":false,"topLevel":false},"IO":{"opcode":"operator_and","next":null,"parent":"n/","inputs":{"OPERAND1":[2,"a:;"],"OPERAND2":[2,"a:="]},"fields":{},"shadow":false,"topLevel":false},"a:;":{"opcode":"operator_equals","next":null,"parent":"IO","inputs":{"OPERAND1":[3,[12,"nes: IRQ","N)orW@%%E%$4al|2,BkE"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:=":{"opcode":"operator_equals","next":null,"parent":"IO","inputs":{"OPERAND1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ak-":{"opcode":"data_changevariableby","next":"ak.","parent":"n/","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ak.":{"opcode":"data_changevariableby","next":"ak/","parent":"ak-","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ak/":{"opcode":"procedures_call","next":"ak:","parent":"ak.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ak:":{"opcode":"procedures_call","next":"a:?","parent":"ak/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"a:?":{"opcode":"procedures_call","next":null,"parent":"ak:","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65534"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"n:":{"opcode":"control_if","next":"IP","parent":"n/","inputs":{"CONDITION":[2,"a:@"],"SUBSTACK":[2,"ak;"]},"fields":{},"shadow":false,"topLevel":false},"a:@":{"opcode":"operator_equals","next":null,"parent":"n:","inputs":{"OPERAND1":[3,[12,"!break","6zFO5H,!X[g$Ax)0BDc:"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ak;":{"opcode":"procedures_call","next":"a:[","parent":"n:","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65534"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"a:[":{"opcode":"data_setvariableto","next":null,"parent":"ak;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"IP":{"opcode":"control_if","next":null,"parent":"n:","inputs":{"CONDITION":[2,"IQ"],"SUBSTACK":[2,"a:]"]},"fields":{},"shadow":false,"topLevel":false},"IQ":{"opcode":"operator_and","next":null,"parent":"IP","inputs":{"OPERAND1":[2,"a:^"],"OPERAND2":[2,"a:_"]},"fields":{},"shadow":false,"topLevel":false},"a:^":{"opcode":"operator_equals","next":null,"parent":"IQ","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:_":{"opcode":"operator_equals","next":null,"parent":"IQ","inputs":{"OPERAND1":[3,[12,"!NMI_occured","YCX/}Ja|`ApccN*r;:,O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:]":{"opcode":"data_setvariableto","next":null,"parent":"IP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"ak=":{"opcode":"procedures_definition","next":"n;","parent":null,"inputs":{"custom_block":[1,"a:`"]},"fields":{},"shadow":false,"topLevel":true,"x":2496,"y":64},"a:`":{"opcode":"procedures_prototype","next":null,"parent":"ak=","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"n;":{"opcode":"control_if","next":"ak?","parent":"ak=","inputs":{"CONDITION":[2,"a:{"],"SUBSTACK":[2,"ak@"]},"fields":{},"shadow":false,"topLevel":false},"a:{":{"opcode":"operator_equals","next":null,"parent":"n;","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"80000"]]},"fields":{},"shadow":false,"topLevel":false},"ak@":{"opcode":"data_setvariableto","next":"a:|","parent":"n;","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a:|":{"opcode":"control_stop","next":null,"parent":"ak@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ak?":{"opcode":"data_changevariableby","next":"ak[","parent":"n;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ak[":{"opcode":"data_changevariableby","next":"ak]","parent":"ak?","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ak]":{"opcode":"procedures_call","next":"n=","parent":"ak[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"n=":{"opcode":"control_if","next":"n?","parent":"ak]","inputs":{"CONDITION":[2,"a:}"],"SUBSTACK":[2,"IR"]},"fields":{},"shadow":false,"topLevel":false},"a:}":{"opcode":"operator_lt","next":null,"parent":"n=","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"IR":{"opcode":"data_replaceitemoflist","next":"a:~","parent":"n=","inputs":{"INDEX":[3,"ak^",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"ak^":{"opcode":"operator_add","next":null,"parent":"IR","inputs":{"NUM1":[3,"a;a",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;a":{"opcode":"operator_mod","next":null,"parent":"ak^","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"a:~":{"opcode":"control_stop","next":null,"parent":"IR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n?":{"opcode":"control_if","next":"n@","parent":"n=","inputs":{"CONDITION":[2,"IS"],"SUBSTACK":[2,"ak_"]},"fields":{},"shadow":false,"topLevel":false},"IS":{"opcode":"operator_and","next":null,"parent":"n?","inputs":{"OPERAND1":[2,"a;b"],"OPERAND2":[2,"a;c"]},"fields":{},"shadow":false,"topLevel":false},"a;b":{"opcode":"operator_gt","next":null,"parent":"IS","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"a;c":{"opcode":"operator_lt","next":null,"parent":"IS","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"ak_":{"opcode":"procedures_call","next":"a;d","parent":"n?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu write","argumentids":"[]","warp":"true"}},"a;d":{"opcode":"control_stop","next":null,"parent":"ak_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n@":{"opcode":"control_if","next":"n[","parent":"n?","inputs":{"CONDITION":[2,"IT"],"SUBSTACK":[2,"ak`"]},"fields":{},"shadow":false,"topLevel":false},"IT":{"opcode":"operator_and","next":null,"parent":"n@","inputs":{"OPERAND1":[2,"a;e"],"OPERAND2":[2,"a;f"]},"fields":{},"shadow":false,"topLevel":false},"a;e":{"opcode":"operator_gt","next":null,"parent":"IT","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16383"]]},"fields":{},"shadow":false,"topLevel":false},"a;f":{"opcode":"operator_lt","next":null,"parent":"IT","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16404"]]},"fields":{},"shadow":false,"topLevel":false},"ak`":{"opcode":"procedures_call","next":"a;g","parent":"n@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"a;g":{"opcode":"control_stop","next":null,"parent":"ak`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n[":{"opcode":"control_if","next":"n]","parent":"n@","inputs":{"CONDITION":[2,"a;h"],"SUBSTACK":[2,"n^"]},"fields":{},"shadow":false,"topLevel":false},"a;h":{"opcode":"operator_equals","next":null,"parent":"n[","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16404"]]},"fields":{},"shadow":false,"topLevel":false},"n^":{"opcode":"control_if","next":"IU","parent":"n[","inputs":{"CONDITION":[2,"ak{"],"SUBSTACK":[2,"ak|"]},"fields":{},"shadow":false,"topLevel":false},"ak{":{"opcode":"operator_equals","next":null,"parent":"n^","inputs":{"OPERAND1":[3,"a;i",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;i":{"opcode":"operator_mod","next":null,"parent":"ak{","inputs":{"NUM1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ak|":{"opcode":"data_changevariableby","next":"ak}","parent":"n^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ak}":{"opcode":"data_changevariableby","next":"a;j","parent":"ak|","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"a;j":{"opcode":"procedures_call","next":null,"parent":"ak}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"IU":{"opcode":"data_setvariableto","next":"IV","parent":"n^","inputs":{"VALUE":[3,"a;k",[10,""]]},"fields":{"VARIABLE":["!sprite_dma","?knU,3_sJVt4l09i6{)x"]},"shadow":false,"topLevel":false},"a;k":{"opcode":"operator_multiply","next":null,"parent":"IU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"IV":{"opcode":"control_repeat","next":"ak~","parent":"IU","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"ala"]},"fields":{},"shadow":false,"topLevel":false},"ala":{"opcode":"data_setvariableto","next":"alb","parent":"IV","inputs":{"VALUE":[3,[12,"!sprite_dma","?knU,3_sJVt4l09i6{)x"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"alb":{"opcode":"procedures_call","next":"alc","parent":"ala","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"alc":{"opcode":"data_setvariableto","next":"ald","parent":"alb","inputs":{"VALUE":[1,[10,"8196"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ald":{"opcode":"procedures_call","next":"ale","parent":"alc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ale":{"opcode":"data_changevariableby","next":"n_","parent":"ald","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!sprite_dma","?knU,3_sJVt4l09i6{)x"]},"shadow":false,"topLevel":false},"n_":{"opcode":"control_if","next":"IW","parent":"ale","inputs":{"CONDITION":[2,"a;l"],"SUBSTACK":[2,"alf"]},"fields":{},"shadow":false,"topLevel":false},"a;l":{"opcode":"operator_gt","next":null,"parent":"n_","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"alf":{"opcode":"data_changevariableby","next":"a;m","parent":"n_","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"a;m":{"opcode":"procedures_call","next":null,"parent":"alf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"IW":{"opcode":"control_if","next":null,"parent":"n_","inputs":{"CONDITION":[2,"a;n"],"SUBSTACK":[2,"alg"]},"fields":{},"shadow":false,"topLevel":false},"a;n":{"opcode":"operator_gt","next":null,"parent":"IW","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"alg":{"opcode":"data_changevariableby","next":"a;o","parent":"IW","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"a;o":{"opcode":"procedures_call","next":null,"parent":"alg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"ak~":{"opcode":"data_changevariableby","next":"alh","parent":"IV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"alh":{"opcode":"data_changevariableby","next":"ali","parent":"ak~","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ali":{"opcode":"procedures_call","next":"a;p","parent":"alh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"a;p":{"opcode":"control_stop","next":null,"parent":"ali","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n]":{"opcode":"control_if","next":"n`","parent":"n[","inputs":{"CONDITION":[2,"a;q"],"SUBSTACK":[2,"alj"]},"fields":{},"shadow":false,"topLevel":false},"a;q":{"opcode":"operator_equals","next":null,"parent":"n]","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"alj":{"opcode":"procedures_call","next":"a;r","parent":"n]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"a;r":{"opcode":"control_stop","next":null,"parent":"alj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n`":{"opcode":"control_if","next":"n{","parent":"n]","inputs":{"CONDITION":[2,"a;s"],"SUBSTACK":[2,"iH"]},"fields":{},"shadow":false,"topLevel":false},"a;s":{"opcode":"operator_equals","next":null,"parent":"n`","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16406"]]},"fields":{},"shadow":false,"topLevel":false},"n{":{"opcode":"control_if","next":"n|","parent":"n`","inputs":{"CONDITION":[2,"a;t"],"SUBSTACK":[2,"IX"]},"fields":{},"shadow":false,"topLevel":false},"a;t":{"opcode":"operator_equals","next":null,"parent":"n{","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"IX":{"opcode":"data_setvariableto","next":"alk","parent":"n{","inputs":{"VALUE":[3,"a;u",[10,""]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"a;u":{"opcode":"operator_add","next":null,"parent":"IX","inputs":{"NUM1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[4,0]],"NUM2":[1,[4,"7457"]]},"fields":{},"shadow":false,"topLevel":false},"alk":{"opcode":"procedures_call","next":"a;v","parent":"IX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"a;v":{"opcode":"control_stop","next":null,"parent":"alk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n|":{"opcode":"control_if","next":"IY","parent":"n{","inputs":{"CONDITION":[2,"IZ"],"SUBSTACK":[2,"n}"]},"fields":{},"shadow":false,"topLevel":false},"IZ":{"opcode":"operator_and","next":null,"parent":"n|","inputs":{"OPERAND1":[2,"a;w"],"OPERAND2":[2,"a;x"]},"fields":{},"shadow":false,"topLevel":false},"a;w":{"opcode":"operator_gt","next":null,"parent":"IZ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"a;x":{"opcode":"operator_lt","next":null,"parent":"IZ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"n}":{"opcode":"control_if","next":"a;y","parent":"n|","inputs":{"CONDITION":[2,"I0"],"SUBSTACK":[2,"all"]},"fields":{},"shadow":false,"topLevel":false},"I0":{"opcode":"operator_and","next":null,"parent":"n}","inputs":{"OPERAND1":[2,"a;z"],"OPERAND2":[2,"alm"]},"fields":{},"shadow":false,"topLevel":false},"a;z":{"opcode":"operator_equals","next":null,"parent":"I0","inputs":{"OPERAND1":[3,[12,"wram_enabled","%XjU5(A-f?.:2f)2OCXj"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"alm":{"opcode":"operator_equals","next":null,"parent":"I0","inputs":{"OPERAND1":[3,"a;A",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"a;A":{"opcode":"data_itemoflist","next":null,"parent":"alm","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"all":{"opcode":"data_replaceitemoflist","next":null,"parent":"n}","inputs":{"INDEX":[3,"aln",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"aln":{"opcode":"operator_add","next":null,"parent":"all","inputs":{"NUM1":[3,"a;B",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;B":{"opcode":"operator_mod","next":null,"parent":"aln","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a;y":{"opcode":"control_stop","next":null,"parent":"n}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"IY":{"opcode":"control_if","next":null,"parent":"n|","inputs":{"CONDITION":[2,"a;C"],"SUBSTACK":[2,"alo"]},"fields":{},"shadow":false,"topLevel":false},"a;C":{"opcode":"operator_gt","next":null,"parent":"IY","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"alo":{"opcode":"procedures_call","next":"a;D","parent":"IY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mapper write","argumentids":"[]","warp":"true"}},"a;D":{"opcode":"control_stop","next":null,"parent":"alo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"alp":{"opcode":"procedures_definition","next":"I1","parent":null,"inputs":{"custom_block":[1,"a;E"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5192},"a;E":{"opcode":"procedures_prototype","next":null,"parent":"alp","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"I1":{"opcode":"data_setvariableto","next":"alq","parent":"alp","inputs":{"VALUE":[3,"a;F",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a;F":{"opcode":"operator_add","next":null,"parent":"I1","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"alq":{"opcode":"procedures_call","next":"alr","parent":"I1","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"alr":{"opcode":"data_setvariableto","next":null,"parent":"alq","inputs":{"VALUE":[3,"als",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"als":{"opcode":"operator_mod","next":null,"parent":"alr","inputs":{"NUM1":[3,"a;G",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a;G":{"opcode":"operator_subtract","next":null,"parent":"als","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"alt":{"opcode":"procedures_definition","next":"I2","parent":null,"inputs":{"custom_block":[1,"a;H"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5500},"a;H":{"opcode":"procedures_prototype","next":null,"parent":"alt","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"I2":{"opcode":"data_setvariableto","next":"I3","parent":"alt","inputs":{"VALUE":[3,"alu",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"alu":{"opcode":"operator_mod","next":null,"parent":"I2","inputs":{"NUM1":[3,"a;I",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a;I":{"opcode":"operator_add","next":null,"parent":"alu","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I3":{"opcode":"data_setvariableto","next":"a;J","parent":"I2","inputs":{"VALUE":[3,"a;K",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a;K":{"opcode":"operator_add","next":null,"parent":"I3","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a;J":{"opcode":"procedures_call","next":null,"parent":"I3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"alv":{"opcode":"procedures_definition","next":"n~","parent":null,"inputs":{"custom_block":[1,"a;L"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":64},"a;L":{"opcode":"procedures_prototype","next":null,"parent":"alv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\",\"false\",\"false\",\"\"]","warp":"true"}},"n~":{"opcode":"control_if","next":"alw","parent":"alv","inputs":{"CONDITION":[2,"a;M"],"SUBSTACK":[2,"alx"]},"fields":{},"shadow":false,"topLevel":false},"a;M":{"opcode":"operator_equals","next":null,"parent":"n~","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"80000"]]},"fields":{},"shadow":false,"topLevel":false},"alx":{"opcode":"data_setvariableto","next":"a;N","parent":"n~","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a;N":{"opcode":"control_stop","next":null,"parent":"alx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"alw":{"opcode":"data_changevariableby","next":"aly","parent":"n~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"aly":{"opcode":"data_changevariableby","next":"alz","parent":"alw","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"alz":{"opcode":"procedures_call","next":"oa","parent":"aly","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"oa":{"opcode":"control_if","next":"ob","parent":"alz","inputs":{"CONDITION":[2,"a;O"],"SUBSTACK":[2,"I4"]},"fields":{},"shadow":false,"topLevel":false},"a;O":{"opcode":"operator_lt","next":null,"parent":"oa","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"I4":{"opcode":"data_setvariableto","next":"a;P","parent":"oa","inputs":{"VALUE":[3,"alA",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alA":{"opcode":"data_itemoflist","next":null,"parent":"I4","inputs":{"INDEX":[3,"alB",[7,0]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"alB":{"opcode":"operator_add","next":null,"parent":"alA","inputs":{"NUM1":[3,"a;Q",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;Q":{"opcode":"operator_mod","next":null,"parent":"alB","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"a;P":{"opcode":"control_stop","next":null,"parent":"I4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ob":{"opcode":"control_if","next":"oc","parent":"oa","inputs":{"CONDITION":[2,"I5"],"SUBSTACK":[2,"alC"]},"fields":{},"shadow":false,"topLevel":false},"I5":{"opcode":"operator_and","next":null,"parent":"ob","inputs":{"OPERAND1":[2,"a;R"],"OPERAND2":[2,"a;S"]},"fields":{},"shadow":false,"topLevel":false},"a;R":{"opcode":"operator_gt","next":null,"parent":"I5","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"a;S":{"opcode":"operator_lt","next":null,"parent":"I5","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"alC":{"opcode":"procedures_call","next":"a;T","parent":"ob","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu read","argumentids":"[]","warp":"true"}},"a;T":{"opcode":"control_stop","next":null,"parent":"alC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oc":{"opcode":"control_if","next":"od","parent":"ob","inputs":{"CONDITION":[2,"a;U"],"SUBSTACK":[2,"alD"]},"fields":{},"shadow":false,"topLevel":false},"a;U":{"opcode":"operator_equals","next":null,"parent":"oc","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"alD":{"opcode":"procedures_call","next":"a;V","parent":"oc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu read","argumentids":"[]","warp":"true"}},"a;V":{"opcode":"control_stop","next":null,"parent":"alD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"od":{"opcode":"control_if","next":"oe","parent":"oc","inputs":{"CONDITION":[2,"a;W"],"SUBSTACK":[2,"og"]},"fields":{},"shadow":false,"topLevel":false},"a;W":{"opcode":"operator_equals","next":null,"parent":"od","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16406"]]},"fields":{},"shadow":false,"topLevel":false},"og":{"opcode":"control_if_else","next":null,"parent":"od","inputs":{"CONDITION":[2,"a;X"],"SUBSTACK":[2,"I6"],"SUBSTACK2":[2,"alE"]},"fields":{},"shadow":false,"topLevel":false},"a;X":{"opcode":"operator_equals","next":null,"parent":"og","inputs":{"OPERAND1":[3,[12,"!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I6":{"opcode":"data_setvariableto","next":"a;Y","parent":"og","inputs":{"VALUE":[3,"alF",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alF":{"opcode":"operator_add","next":null,"parent":"I6","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"I7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I7":{"opcode":"sensing_keypressed","next":null,"parent":"alF","inputs":{"KEY_OPTION":[3,"a;Z","a;0"]},"fields":{},"shadow":false,"topLevel":false},"a;Z":{"opcode":"data_itemoflist","next":null,"parent":"I7","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a;0":{"opcode":"sensing_keyoptions","next":null,"parent":"I7","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a;Y":{"opcode":"control_stop","next":null,"parent":"I6","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"alE":{"opcode":"data_changevariableby","next":"iI","parent":"og","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"iI":{"opcode":"control_if_else","next":"a;1","parent":"alE","inputs":{"CONDITION":[2,"a;2"],"SUBSTACK":[2,"alG"],"SUBSTACK2":[2,"a;3"]},"fields":{},"shadow":false,"topLevel":false},"a;2":{"opcode":"operator_lt","next":null,"parent":"iI","inputs":{"OPERAND1":[3,[12,"!port1_count","0D@F26Q(QbXNRv;sB.Ye"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"alG":{"opcode":"data_setvariableto","next":null,"parent":"iI","inputs":{"VALUE":[3,"alH",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alH":{"opcode":"operator_add","next":null,"parent":"alG","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"I8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I8":{"opcode":"sensing_keypressed","next":null,"parent":"alH","inputs":{"KEY_OPTION":[3,"a;4","a;5"]},"fields":{},"shadow":false,"topLevel":false},"a;4":{"opcode":"data_itemoflist","next":null,"parent":"I8","inputs":{"INDEX":[3,[12,"!port1_count","0D@F26Q(QbXNRv;sB.Ye"],[7,0]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a;5":{"opcode":"sensing_keyoptions","next":null,"parent":"I8","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a;3":{"opcode":"data_setvariableto","next":null,"parent":"iI","inputs":{"VALUE":[1,[10,"65"]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a;1":{"opcode":"control_stop","next":null,"parent":"iI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oe":{"opcode":"control_if","next":"oh","parent":"od","inputs":{"CONDITION":[2,"a;6"],"SUBSTACK":[2,"oi"]},"fields":{},"shadow":false,"topLevel":false},"a;6":{"opcode":"operator_equals","next":null,"parent":"oe","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"oi":{"opcode":"control_if_else","next":null,"parent":"oe","inputs":{"CONDITION":[2,"a;7"],"SUBSTACK":[2,"I9"],"SUBSTACK2":[2,"alI"]},"fields":{},"shadow":false,"topLevel":false},"a;7":{"opcode":"operator_equals","next":null,"parent":"oi","inputs":{"OPERAND1":[3,[12,"!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I9":{"opcode":"data_setvariableto","next":"a;8","parent":"oi","inputs":{"VALUE":[3,"alJ",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alJ":{"opcode":"operator_add","next":null,"parent":"I9","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"I!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I!":{"opcode":"sensing_keypressed","next":null,"parent":"alJ","inputs":{"KEY_OPTION":[3,"a;9","a;!"]},"fields":{},"shadow":false,"topLevel":false},"a;9":{"opcode":"data_itemoflist","next":null,"parent":"I!","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a;!":{"opcode":"sensing_keyoptions","next":null,"parent":"I!","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a;8":{"opcode":"control_stop","next":null,"parent":"I9","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"alI":{"opcode":"data_changevariableby","next":"iJ","parent":"oi","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"iJ":{"opcode":"control_if_else","next":"a;#","parent":"alI","inputs":{"CONDITION":[2,"a;%"],"SUBSTACK":[2,"alK"],"SUBSTACK2":[2,"a;("]},"fields":{},"shadow":false,"topLevel":false},"a;%":{"opcode":"operator_lt","next":null,"parent":"iJ","inputs":{"OPERAND1":[3,[12,"!port2_count","gJ4fW7d.auVkNJS*cbF."],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"alK":{"opcode":"data_setvariableto","next":null,"parent":"iJ","inputs":{"VALUE":[3,"alL",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alL":{"opcode":"operator_add","next":null,"parent":"alK","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"I#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I#":{"opcode":"sensing_keypressed","next":null,"parent":"alL","inputs":{"KEY_OPTION":[3,"alM","a;)"]},"fields":{},"shadow":false,"topLevel":false},"alM":{"opcode":"data_itemoflist","next":null,"parent":"I#","inputs":{"INDEX":[3,"a;*",[7,0]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"a;*":{"opcode":"operator_add","next":null,"parent":"alM","inputs":{"NUM1":[3,[12,"!port2_count","gJ4fW7d.auVkNJS*cbF."],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a;)":{"opcode":"sensing_keyoptions","next":null,"parent":"I#","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a;(":{"opcode":"data_setvariableto","next":null,"parent":"iJ","inputs":{"VALUE":[1,[10,"65"]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a;#":{"opcode":"control_stop","next":null,"parent":"iJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oh":{"opcode":"control_if","next":"oj","parent":"oe","inputs":{"CONDITION":[2,"I%"],"SUBSTACK":[2,"iK"]},"fields":{},"shadow":false,"topLevel":false},"I%":{"opcode":"operator_and","next":null,"parent":"oh","inputs":{"OPERAND1":[2,"a;+"],"OPERAND2":[2,"a;,"]},"fields":{},"shadow":false,"topLevel":false},"a;+":{"opcode":"operator_gt","next":null,"parent":"I%","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"a;,":{"opcode":"operator_lt","next":null,"parent":"I%","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"iK":{"opcode":"control_if_else","next":"a;-","parent":"oh","inputs":{"CONDITION":[2,"alN"],"SUBSTACK":[2,"ok"],"SUBSTACK2":[2,"I("]},"fields":{},"shadow":false,"topLevel":false},"alN":{"opcode":"operator_equals","next":null,"parent":"iK","inputs":{"OPERAND1":[3,"a;.",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"a;.":{"opcode":"data_itemoflist","next":null,"parent":"alN","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"ok":{"opcode":"control_if","next":"a;/","parent":"iK","inputs":{"CONDITION":[2,"a;:"],"SUBSTACK":[2,"alO"]},"fields":{},"shadow":false,"topLevel":false},"a;:":{"opcode":"operator_equals","next":null,"parent":"ok","inputs":{"OPERAND1":[3,[12,"wram_enabled","%XjU5(A-f?.:2f)2OCXj"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"alO":{"opcode":"data_setvariableto","next":null,"parent":"ok","inputs":{"VALUE":[3,"alP",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alP":{"opcode":"data_itemoflist","next":null,"parent":"alO","inputs":{"INDEX":[3,"alQ",[7,0]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"alQ":{"opcode":"operator_add","next":null,"parent":"alP","inputs":{"NUM1":[3,"a;;",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;;":{"opcode":"operator_mod","next":null,"parent":"alQ","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a;/":{"opcode":"control_stop","next":null,"parent":"ok","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"I(":{"opcode":"data_setvariableto","next":"a;=","parent":"iK","inputs":{"VALUE":[3,"alR",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alR":{"opcode":"data_itemoflist","next":null,"parent":"I(","inputs":{"INDEX":[3,"I)",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"I)":{"opcode":"operator_add","next":null,"parent":"alR","inputs":{"NUM1":[3,"a;?",[4,0]],"NUM2":[3,"a;@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a;?":{"opcode":"operator_subtract","next":null,"parent":"I)","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"a;@":{"opcode":"data_itemoflist","next":null,"parent":"I)","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"a;=":{"opcode":"control_stop","next":null,"parent":"I(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a;-":{"opcode":"control_stop","next":null,"parent":"iK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oj":{"opcode":"control_if","next":"P4","parent":"oh","inputs":{"CONDITION":[2,"a;["],"SUBSTACK":[2,"I*"]},"fields":{},"shadow":false,"topLevel":false},"a;[":{"opcode":"operator_lt","next":null,"parent":"oj","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"I*":{"opcode":"data_setvariableto","next":"a;]","parent":"oj","inputs":{"VALUE":[3,"alS",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alS":{"opcode":"data_itemoflist","next":null,"parent":"I*","inputs":{"INDEX":[3,"I+",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"I+":{"opcode":"operator_add","next":null,"parent":"alS","inputs":{"NUM1":[3,"a;^",[4,0]],"NUM2":[3,"a;_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a;^":{"opcode":"operator_subtract","next":null,"parent":"I+","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a;_":{"opcode":"data_itemoflist","next":null,"parent":"I+","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"a;]":{"opcode":"control_stop","next":null,"parent":"I*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P4":{"opcode":"control_if","next":"ol","parent":"oj","inputs":{"CONDITION":[2,"a;`"],"SUBSTACK":[2,"I,"]},"fields":{},"shadow":false,"topLevel":false},"a;`":{"opcode":"operator_lt","next":null,"parent":"P4","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"I,":{"opcode":"data_setvariableto","next":"a;{","parent":"P4","inputs":{"VALUE":[3,"alT",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alT":{"opcode":"data_itemoflist","next":null,"parent":"I,","inputs":{"INDEX":[3,"I-",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"I-":{"opcode":"operator_add","next":null,"parent":"alT","inputs":{"NUM1":[3,"a;|",[4,0]],"NUM2":[3,"a;}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a;|":{"opcode":"operator_subtract","next":null,"parent":"I-","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"a;}":{"opcode":"data_itemoflist","next":null,"parent":"I-","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"a;{":{"opcode":"control_stop","next":null,"parent":"I,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ol":{"opcode":"control_if","next":"I.","parent":"P4","inputs":{"CONDITION":[2,"a;~"],"SUBSTACK":[2,"I/"]},"fields":{},"shadow":false,"topLevel":false},"a;~":{"opcode":"operator_lt","next":null,"parent":"ol","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"I/":{"opcode":"data_setvariableto","next":"a=a","parent":"ol","inputs":{"VALUE":[3,"alU",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alU":{"opcode":"data_itemoflist","next":null,"parent":"I/","inputs":{"INDEX":[3,"I:",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"I:":{"opcode":"operator_add","next":null,"parent":"alU","inputs":{"NUM1":[3,"a=b",[4,0]],"NUM2":[3,"a=c",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=b":{"opcode":"operator_subtract","next":null,"parent":"I:","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a=c":{"opcode":"data_itemoflist","next":null,"parent":"I:","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"a=a":{"opcode":"control_stop","next":null,"parent":"I/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"I.":{"opcode":"control_if","next":null,"parent":"ol","inputs":{"CONDITION":[2,"a=d"],"SUBSTACK":[2,"I;"]},"fields":{},"shadow":false,"topLevel":false},"a=d":{"opcode":"operator_lt","next":null,"parent":"I.","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"I;":{"opcode":"data_setvariableto","next":"a=e","parent":"I.","inputs":{"VALUE":[3,"alV",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"alV":{"opcode":"data_itemoflist","next":null,"parent":"I;","inputs":{"INDEX":[3,"I=",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"I=":{"opcode":"operator_add","next":null,"parent":"alV","inputs":{"NUM1":[3,"a=f",[4,0]],"NUM2":[3,"a=g",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=f":{"opcode":"operator_subtract","next":null,"parent":"I=","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"a=g":{"opcode":"data_itemoflist","next":null,"parent":"I=","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"a=e":{"opcode":"control_stop","next":null,"parent":"I;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"alW":{"opcode":"procedures_definition","next":"I?","parent":null,"inputs":{"custom_block":[1,"alX"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":64},"alX":{"opcode":"procedures_prototype","next":null,"parent":"alW","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[1,"a=h"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"\",\"false\"]","warp":"false"}},"a=h":{"opcode":"argument_reporter_boolean","next":null,"parent":"alX","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"I?":{"opcode":"control_if","next":null,"parent":"alW","inputs":{"CONDITION":[2,"a=i"],"SUBSTACK":[2,"alY"]},"fields":{},"shadow":false,"topLevel":false},"a=i":{"opcode":"argument_reporter_boolean","next":null,"parent":"I?","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"alY":{"opcode":"data_changevariableby","next":"alZ","parent":"I?","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"alZ":{"opcode":"procedures_call","next":"I@","parent":"alY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"I@":{"opcode":"data_setvariableto","next":"al0","parent":"alZ","inputs":{"VALUE":[3,"al1",[10,""]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"al1":{"opcode":"operator_mathop","next":null,"parent":"I@","inputs":{"NUM":[3,"a=j",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a=j":{"opcode":"operator_divide","next":null,"parent":"al1","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"al0":{"opcode":"data_changevariableby","next":"I[","parent":"I@","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"I[":{"opcode":"control_if","next":null,"parent":"al0","inputs":{"CONDITION":[2,"al2"],"SUBSTACK":[2,"a=k"]},"fields":{},"shadow":false,"topLevel":false},"al2":{"opcode":"operator_not","next":null,"parent":"I[","inputs":{"OPERAND":[2,"al3"]},"fields":{},"shadow":false,"topLevel":false},"al3":{"opcode":"operator_equals","next":null,"parent":"al2","inputs":{"OPERAND1":[3,"al4",[10,""]],"OPERAND2":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"al4":{"opcode":"operator_mathop","next":null,"parent":"al3","inputs":{"NUM":[3,"a=l",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a=l":{"opcode":"operator_divide","next":null,"parent":"al4","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=k":{"opcode":"procedures_call","next":null,"parent":"I[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"al5":{"opcode":"procedures_definition","next":"om","parent":null,"inputs":{"custom_block":[1,"a=m"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1056},"a=m":{"opcode":"procedures_prototype","next":null,"parent":"al5","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"om":{"opcode":"control_if","next":"I]","parent":"al5","inputs":{"CONDITION":[2,"a=n"],"SUBSTACK":[2,"a=o"]},"fields":{},"shadow":false,"topLevel":false},"a=n":{"opcode":"operator_equals","next":null,"parent":"om","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=o":{"opcode":"procedures_call","next":null,"parent":"om","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"I]":{"opcode":"data_setvariableto","next":"a=p","parent":"om","inputs":{"VALUE":[3,"al6",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"al6":{"opcode":"data_itemoflist","next":null,"parent":"I]","inputs":{"INDEX":[3,"al7",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"al7":{"opcode":"operator_add","next":null,"parent":"al6","inputs":{"NUM1":[3,"al8",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"al8":{"opcode":"operator_add","next":null,"parent":"al7","inputs":{"NUM1":[3,"a=q",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=q":{"opcode":"operator_multiply","next":null,"parent":"al8","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=p":{"opcode":"procedures_call","next":null,"parent":"I]","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"al9":{"opcode":"procedures_definition","next":"al!","parent":null,"inputs":{"custom_block":[1,"a=r"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10084},"a=r":{"opcode":"procedures_prototype","next":null,"parent":"al9","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"asl","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"al!":{"opcode":"procedures_call","next":"al#","parent":"al9","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"al#":{"opcode":"procedures_call","next":"I^","parent":"al!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"I^":{"opcode":"data_setvariableto","next":"I_","parent":"al#","inputs":{"VALUE":[3,"al%",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"al%":{"opcode":"operator_add","next":null,"parent":"I^","inputs":{"NUM1":[3,"a=s",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=s":{"opcode":"operator_gt","next":null,"parent":"al%","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"I_":{"opcode":"data_setvariableto","next":"al(","parent":"I^","inputs":{"VALUE":[3,"al)",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"al)":{"opcode":"operator_mod","next":null,"parent":"I_","inputs":{"NUM1":[3,"a=t",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=t":{"opcode":"operator_multiply","next":null,"parent":"al)","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"al(":{"opcode":"procedures_call","next":"a=u","parent":"I_","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a=u":{"opcode":"procedures_call","next":null,"parent":"al(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"al*":{"opcode":"procedures_definition","next":"on","parent":null,"inputs":{"custom_block":[1,"a=v"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":652},"a=v":{"opcode":"procedures_prototype","next":null,"parent":"al*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ora","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"on":{"opcode":"control_if","next":"I`","parent":"al*","inputs":{"CONDITION":[2,"a=w"],"SUBSTACK":[2,"a=x"]},"fields":{},"shadow":false,"topLevel":false},"a=w":{"opcode":"operator_equals","next":null,"parent":"on","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=x":{"opcode":"procedures_call","next":null,"parent":"on","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"I`":{"opcode":"data_setvariableto","next":"a=y","parent":"on","inputs":{"VALUE":[3,"al+",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"al+":{"opcode":"data_itemoflist","next":null,"parent":"I`","inputs":{"INDEX":[3,"al,",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"al,":{"opcode":"operator_add","next":null,"parent":"al+","inputs":{"NUM1":[3,"al-",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"al-":{"opcode":"operator_add","next":null,"parent":"al,","inputs":{"NUM1":[3,"a=z",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=z":{"opcode":"operator_multiply","next":null,"parent":"al-","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=y":{"opcode":"procedures_call","next":null,"parent":"I`","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"al.":{"opcode":"procedures_definition","next":"al/","parent":null,"inputs":{"custom_block":[1,"a=A"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":9052},"a=A":{"opcode":"procedures_prototype","next":null,"parent":"al.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rol","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"al/":{"opcode":"procedures_call","next":"al:","parent":"al.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"al:":{"opcode":"procedures_call","next":"I{","parent":"al/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"I{":{"opcode":"data_setvariableto","next":"I|","parent":"al:","inputs":{"VALUE":[3,"al;",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"al;":{"opcode":"operator_add","next":null,"parent":"I{","inputs":{"NUM1":[3,"a=B",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=B":{"opcode":"operator_gt","next":null,"parent":"al;","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"I|":{"opcode":"data_setvariableto","next":"al=","parent":"I{","inputs":{"VALUE":[3,"al?",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"al?":{"opcode":"operator_mod","next":null,"parent":"I|","inputs":{"NUM1":[3,"al@",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"al@":{"opcode":"operator_add","next":null,"parent":"al?","inputs":{"NUM1":[3,"a=C",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=C":{"opcode":"operator_multiply","next":null,"parent":"al@","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"al=":{"opcode":"data_setvariableto","next":"al[","parent":"I|","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"al[":{"opcode":"procedures_call","next":"a=D","parent":"al=","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a=D":{"opcode":"procedures_call","next":null,"parent":"al[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"al]":{"opcode":"procedures_definition","next":"oo","parent":null,"inputs":{"custom_block":[1,"a=E"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1460},"a=E":{"opcode":"procedures_prototype","next":null,"parent":"al]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"eor","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"al^":{"opcode":"procedures_definition","next":"al_","parent":null,"inputs":{"custom_block":[1,"a=F"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10544},"a=F":{"opcode":"procedures_prototype","next":null,"parent":"al^","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lsr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"al_":{"opcode":"procedures_call","next":"al`","parent":"al^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"al`":{"opcode":"procedures_call","next":"I}","parent":"al_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"I}":{"opcode":"data_setvariableto","next":"I~","parent":"al`","inputs":{"VALUE":[3,"a=G",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a=G":{"opcode":"operator_mod","next":null,"parent":"I}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"I~":{"opcode":"data_setvariableto","next":"al{","parent":"I}","inputs":{"VALUE":[3,"al|",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"al|":{"opcode":"operator_mathop","next":null,"parent":"I~","inputs":{"NUM":[3,"a=H",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a=H":{"opcode":"operator_divide","next":null,"parent":"al|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"al{":{"opcode":"procedures_call","next":"a=I","parent":"I~","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a=I":{"opcode":"procedures_call","next":null,"parent":"al{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"al}":{"opcode":"procedures_definition","next":"al~","parent":null,"inputs":{"custom_block":[1,"a=J"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":9568},"a=J":{"opcode":"procedures_prototype","next":null,"parent":"al}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"al~":{"opcode":"procedures_call","next":"ama","parent":"al}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ama":{"opcode":"procedures_call","next":"Ja","parent":"al~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Ja":{"opcode":"data_setvariableto","next":"Jb","parent":"ama","inputs":{"VALUE":[3,"a=K",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a=K":{"opcode":"operator_mod","next":null,"parent":"Ja","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Jb":{"opcode":"data_setvariableto","next":"amb","parent":"Ja","inputs":{"VALUE":[3,"amc",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"amc":{"opcode":"operator_mod","next":null,"parent":"Jb","inputs":{"NUM1":[3,"Jc",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Jc":{"opcode":"operator_add","next":null,"parent":"amc","inputs":{"NUM1":[3,"amd",[4,0]],"NUM2":[3,"a=L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"amd":{"opcode":"operator_mathop","next":null,"parent":"Jc","inputs":{"NUM":[3,"a=M",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a=M":{"opcode":"operator_divide","next":null,"parent":"amd","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a=L":{"opcode":"operator_multiply","next":null,"parent":"Jc","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"amb":{"opcode":"data_setvariableto","next":"ame","parent":"Jb","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"ame":{"opcode":"procedures_call","next":"a=N","parent":"amb","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a=N":{"opcode":"procedures_call","next":null,"parent":"ame","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"amf":{"opcode":"procedures_definition","next":"amg","parent":null,"inputs":{"custom_block":[1,"a=O"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10996},"a=O":{"opcode":"procedures_prototype","next":null,"parent":"amf","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"bit","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"amg":{"opcode":"procedures_call","next":"Jd","parent":"amf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Jd":{"opcode":"data_setvariableto","next":"Je","parent":"amg","inputs":{"VALUE":[3,"amh",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"amh":{"opcode":"operator_add","next":null,"parent":"Jd","inputs":{"NUM1":[3,"a=P",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=P":{"opcode":"operator_gt","next":null,"parent":"amh","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Je":{"opcode":"data_setvariableto","next":"ami","parent":"Jd","inputs":{"VALUE":[3,"amj",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"amj":{"opcode":"operator_add","next":null,"parent":"Je","inputs":{"NUM1":[3,"amk",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"amk":{"opcode":"operator_equals","next":null,"parent":"amj","inputs":{"OPERAND1":[3,"aml",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aml":{"opcode":"operator_gt","next":null,"parent":"amk","inputs":{"OPERAND1":[3,"a=Q",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a=Q":{"opcode":"operator_mod","next":null,"parent":"aml","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ami":{"opcode":"data_setvariableto","next":null,"parent":"Je","inputs":{"VALUE":[3,"amm",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"amm":{"opcode":"operator_add","next":null,"parent":"ami","inputs":{"NUM1":[3,"amn",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"amn":{"opcode":"operator_equals","next":null,"parent":"amm","inputs":{"OPERAND1":[3,"amo",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"amo":{"opcode":"data_itemoflist","next":null,"parent":"amn","inputs":{"INDEX":[3,"amp",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"amp":{"opcode":"operator_add","next":null,"parent":"amo","inputs":{"NUM1":[3,"amq",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"amq":{"opcode":"operator_add","next":null,"parent":"amp","inputs":{"NUM1":[3,"a=R",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=R":{"opcode":"operator_multiply","next":null,"parent":"amq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"amr":{"opcode":"procedures_definition","next":"b;","parent":null,"inputs":{"custom_block":[1,"a=S"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1864},"a=S":{"opcode":"procedures_prototype","next":null,"parent":"amr","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"adc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"b;":{"opcode":"control_if","next":"iL","parent":"amr","inputs":{"CONDITION":[2,"ams"],"SUBSTACK":[2,"amt"]},"fields":{},"shadow":false,"topLevel":false},"ams":{"opcode":"operator_equals","next":null,"parent":"b;","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"amt":{"opcode":"procedures_call","next":null,"parent":"b;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iL":{"opcode":"data_setvariableto","next":"c*","parent":"b;","inputs":{"VALUE":[3,"Jf",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Jf":{"opcode":"operator_add","next":null,"parent":"iL","inputs":{"NUM1":[3,"c+",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"c+":{"opcode":"operator_add","next":null,"parent":"Jf","inputs":{"NUM1":[3,"Jg",[4,0]],"NUM2":[3,"Jh",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jg":{"opcode":"operator_subtract","next":null,"parent":"c+","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"Ji",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ji":{"opcode":"operator_multiply","next":null,"parent":"Jg","inputs":{"NUM1":[3,"TC",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TC":{"opcode":"operator_gt","next":null,"parent":"Ji","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jh":{"opcode":"operator_subtract","next":null,"parent":"c+","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"Jj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jj":{"opcode":"operator_multiply","next":null,"parent":"Jh","inputs":{"NUM1":[3,"TD",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TD":{"opcode":"operator_gt","next":null,"parent":"Jj","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"c*":{"opcode":"data_setvariableto","next":"c,","parent":"iL","inputs":{"VALUE":[3,"Jk",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"Jk":{"opcode":"operator_add","next":null,"parent":"c*","inputs":{"NUM1":[3,"c-",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"c-":{"opcode":"operator_or","next":null,"parent":"Jk","inputs":{"OPERAND1":[2,"TE"],"OPERAND2":[2,"TF"]},"fields":{},"shadow":false,"topLevel":false},"TE":{"opcode":"operator_gt","next":null,"parent":"c-","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TF":{"opcode":"operator_lt","next":null,"parent":"c-","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"c,":{"opcode":"data_setvariableto","next":"c.","parent":"c*","inputs":{"VALUE":[3,"Jl",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"Jl":{"opcode":"operator_add","next":null,"parent":"c,","inputs":{"NUM1":[3,"TG",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"TG":{"opcode":"operator_add","next":null,"parent":"Jl","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"c.":{"opcode":"data_setvariableto","next":"c/","parent":"c,","inputs":{"VALUE":[3,"Jm",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Jm":{"opcode":"operator_add","next":null,"parent":"c.","inputs":{"NUM1":[3,"TH",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TH":{"opcode":"operator_gt","next":null,"parent":"Jm","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"c/":{"opcode":"data_setvariableto","next":"TI","parent":"c.","inputs":{"VALUE":[3,"TJ",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TJ":{"opcode":"operator_mod","next":null,"parent":"c/","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TI":{"opcode":"procedures_call","next":null,"parent":"c/","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"amu":{"opcode":"procedures_definition","next":"b=","parent":null,"inputs":{"custom_block":[1,"a=T"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":3632},"a=T":{"opcode":"procedures_prototype","next":null,"parent":"amu","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"b=":{"opcode":"control_if","next":"iM","parent":"amu","inputs":{"CONDITION":[2,"amv"],"SUBSTACK":[2,"amw"]},"fields":{},"shadow":false,"topLevel":false},"amv":{"opcode":"operator_equals","next":null,"parent":"b=","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"amw":{"opcode":"procedures_call","next":null,"parent":"b=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iM":{"opcode":"data_setvariableto","next":"c:","parent":"b=","inputs":{"VALUE":[3,"c;",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"c;":{"opcode":"operator_subtract","next":null,"parent":"iM","inputs":{"NUM1":[3,"c=",[4,0]],"NUM2":[3,"TK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"c=":{"opcode":"operator_subtract","next":null,"parent":"c;","inputs":{"NUM1":[3,"Jn",[4,0]],"NUM2":[3,"Jo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jn":{"opcode":"operator_subtract","next":null,"parent":"c=","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"Jp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jp":{"opcode":"operator_multiply","next":null,"parent":"Jn","inputs":{"NUM1":[3,"TL",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TL":{"opcode":"operator_gt","next":null,"parent":"Jp","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jo":{"opcode":"operator_subtract","next":null,"parent":"c=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"Jq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jq":{"opcode":"operator_multiply","next":null,"parent":"Jo","inputs":{"NUM1":[3,"TM",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TM":{"opcode":"operator_gt","next":null,"parent":"Jq","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TK":{"opcode":"operator_lt","next":null,"parent":"c;","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c:":{"opcode":"data_setvariableto","next":"c?","parent":"iM","inputs":{"VALUE":[3,"Jr",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"Jr":{"opcode":"operator_add","next":null,"parent":"c:","inputs":{"NUM1":[3,"c@",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"c@":{"opcode":"operator_or","next":null,"parent":"Jr","inputs":{"OPERAND1":[2,"TN"],"OPERAND2":[2,"TO"]},"fields":{},"shadow":false,"topLevel":false},"TN":{"opcode":"operator_gt","next":null,"parent":"c@","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TO":{"opcode":"operator_lt","next":null,"parent":"c@","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"c?":{"opcode":"data_setvariableto","next":"c[","parent":"c:","inputs":{"VALUE":[3,"c]",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"c]":{"opcode":"operator_subtract","next":null,"parent":"c?","inputs":{"NUM1":[3,"TP",[4,0]],"NUM2":[3,"TQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"TP":{"opcode":"operator_subtract","next":null,"parent":"c]","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"TQ":{"opcode":"operator_lt","next":null,"parent":"c]","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c[":{"opcode":"data_setvariableto","next":"c^","parent":"c?","inputs":{"VALUE":[3,"Js",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Js":{"opcode":"operator_add","next":null,"parent":"c[","inputs":{"NUM1":[3,"TR",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TR":{"opcode":"operator_gt","next":null,"parent":"Js","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"c^":{"opcode":"data_setvariableto","next":"TS","parent":"c[","inputs":{"VALUE":[3,"TT",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TT":{"opcode":"operator_mod","next":null,"parent":"c^","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TS":{"opcode":"procedures_call","next":null,"parent":"c^","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"amx":{"opcode":"procedures_definition","next":"amy","parent":null,"inputs":{"custom_block":[1,"a=U"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":11424},"a=U":{"opcode":"procedures_prototype","next":null,"parent":"amx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"amy":{"opcode":"procedures_call","next":"amz","parent":"amx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"amz":{"opcode":"procedures_call","next":"Jt","parent":"amy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Jt":{"opcode":"data_setvariableto","next":"amA","parent":"amz","inputs":{"VALUE":[3,"amB",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"amB":{"opcode":"operator_mod","next":null,"parent":"Jt","inputs":{"NUM1":[3,"a=V",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=V":{"opcode":"operator_add","next":null,"parent":"amB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"amA":{"opcode":"procedures_call","next":"a=W","parent":"Jt","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a=W":{"opcode":"procedures_call","next":null,"parent":"amA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"amC":{"opcode":"procedures_definition","next":"Ju","parent":null,"inputs":{"custom_block":[1,"amD"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":3860},"amD":{"opcode":"procedures_prototype","next":null,"parent":"amC","inputs":{"he_5I0Vn2LIG0pN#spRg":[1,"a=X"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","argumentnames":"[\"reg\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a=X":{"opcode":"argument_reporter_string_number","next":null,"parent":"amD","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":true,"topLevel":false},"Ju":{"opcode":"data_setvariableto","next":"amE","parent":"amC","inputs":{"VALUE":[3,"amF",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"amF":{"opcode":"operator_add","next":null,"parent":"Ju","inputs":{"NUM1":[3,"amG",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"amG":{"opcode":"operator_equals","next":null,"parent":"amF","inputs":{"OPERAND1":[3,"a=Y",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=Y":{"opcode":"argument_reporter_string_number","next":null,"parent":"amG","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":false,"topLevel":false},"amE":{"opcode":"data_setvariableto","next":null,"parent":"Ju","inputs":{"VALUE":[3,"amH",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"amH":{"opcode":"operator_add","next":null,"parent":"amE","inputs":{"NUM1":[3,"amI",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"amI":{"opcode":"operator_gt","next":null,"parent":"amH","inputs":{"OPERAND1":[3,"a=Z",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a=Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"amI","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":false,"topLevel":false},"amJ":{"opcode":"procedures_definition","next":"amK","parent":null,"inputs":{"custom_block":[1,"a=0"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":64},"a=0":{"opcode":"procedures_prototype","next":null,"parent":"amJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"slo","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"amK":{"opcode":"procedures_call","next":"amL","parent":"amJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"amL":{"opcode":"procedures_call","next":"Jv","parent":"amK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Jv":{"opcode":"data_setvariableto","next":"Jw","parent":"amL","inputs":{"VALUE":[3,"amM",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"amM":{"opcode":"operator_add","next":null,"parent":"Jv","inputs":{"NUM1":[3,"a=1",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=1":{"opcode":"operator_gt","next":null,"parent":"amM","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jw":{"opcode":"data_setvariableto","next":"amN","parent":"Jv","inputs":{"VALUE":[3,"amO",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"amO":{"opcode":"operator_mod","next":null,"parent":"Jw","inputs":{"NUM1":[3,"a=2",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=2":{"opcode":"operator_multiply","next":null,"parent":"amO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"amN":{"opcode":"procedures_call","next":"Jx","parent":"Jw","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Jx":{"opcode":"data_setvariableto","next":"a=3","parent":"amN","inputs":{"VALUE":[3,"amP",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"amP":{"opcode":"data_itemoflist","next":null,"parent":"Jx","inputs":{"INDEX":[3,"amQ",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"amQ":{"opcode":"operator_add","next":null,"parent":"amP","inputs":{"NUM1":[3,"amR",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"amR":{"opcode":"operator_add","next":null,"parent":"amQ","inputs":{"NUM1":[3,"a=4",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=4":{"opcode":"operator_multiply","next":null,"parent":"amR","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=3":{"opcode":"procedures_call","next":null,"parent":"Jx","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"amS":{"opcode":"procedures_definition","next":"amT","parent":null,"inputs":{"custom_block":[1,"a=5"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":1200},"a=5":{"opcode":"procedures_prototype","next":null,"parent":"amS","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sre","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"amT":{"opcode":"procedures_call","next":"amU","parent":"amS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"amU":{"opcode":"procedures_call","next":"Jy","parent":"amT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Jy":{"opcode":"data_setvariableto","next":"Jz","parent":"amU","inputs":{"VALUE":[3,"a=6",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a=6":{"opcode":"operator_mod","next":null,"parent":"Jy","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Jz":{"opcode":"data_setvariableto","next":"amV","parent":"Jy","inputs":{"VALUE":[3,"amW",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"amW":{"opcode":"operator_mathop","next":null,"parent":"Jz","inputs":{"NUM":[3,"a=7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a=7":{"opcode":"operator_divide","next":null,"parent":"amW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"amV":{"opcode":"procedures_call","next":"JA","parent":"Jz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JA":{"opcode":"data_setvariableto","next":"a=8","parent":"amV","inputs":{"VALUE":[3,"amX",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"amX":{"opcode":"data_itemoflist","next":null,"parent":"JA","inputs":{"INDEX":[3,"amY",[7,0]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"amY":{"opcode":"operator_add","next":null,"parent":"amX","inputs":{"NUM1":[3,"amZ",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"amZ":{"opcode":"operator_add","next":null,"parent":"amY","inputs":{"NUM1":[3,"a=9",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=9":{"opcode":"operator_multiply","next":null,"parent":"amZ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=8":{"opcode":"procedures_call","next":null,"parent":"JA","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"am0":{"opcode":"procedures_definition","next":"JB","parent":null,"inputs":{"custom_block":[1,"a=!"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":2592},"a=!":{"opcode":"procedures_prototype","next":null,"parent":"am0","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"JB":{"opcode":"data_setvariableto","next":"a=#","parent":"am0","inputs":{"VALUE":[3,"am1",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"am1":{"opcode":"data_itemoflist","next":null,"parent":"JB","inputs":{"INDEX":[3,"am2",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"am2":{"opcode":"operator_add","next":null,"parent":"am1","inputs":{"NUM1":[3,"am3",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"am3":{"opcode":"operator_add","next":null,"parent":"am2","inputs":{"NUM1":[3,"a=%",[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=%":{"opcode":"operator_multiply","next":null,"parent":"am3","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=#":{"opcode":"procedures_call","next":null,"parent":"JB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"am4":{"opcode":"procedures_definition","next":"am5","parent":null,"inputs":{"custom_block":[1,"a=("]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":2860},"a=(":{"opcode":"procedures_prototype","next":null,"parent":"am4","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"am5":{"opcode":"procedures_call","next":"am6","parent":"am4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","warp":"false"}},"am6":{"opcode":"data_setvariableto","next":"a=)","parent":"am5","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"a=)":{"opcode":"procedures_call","next":null,"parent":"am6","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"am7":{"opcode":"procedures_definition","next":"am8","parent":null,"inputs":{"custom_block":[1,"a=*"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":604},"a=*":{"opcode":"procedures_prototype","next":null,"parent":"am7","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rla","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"am8":{"opcode":"procedures_call","next":"am9","parent":"am7","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"am9":{"opcode":"procedures_call","next":"JC","parent":"am8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JC":{"opcode":"data_setvariableto","next":"JD","parent":"am9","inputs":{"VALUE":[3,"am!",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"am!":{"opcode":"operator_add","next":null,"parent":"JC","inputs":{"NUM1":[3,"a=+",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=+":{"opcode":"operator_gt","next":null,"parent":"am!","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"JD":{"opcode":"data_setvariableto","next":"am#","parent":"JC","inputs":{"VALUE":[3,"am%",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"am%":{"opcode":"operator_mod","next":null,"parent":"JD","inputs":{"NUM1":[3,"am(",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"am(":{"opcode":"operator_add","next":null,"parent":"am%","inputs":{"NUM1":[3,"a=,",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=,":{"opcode":"operator_multiply","next":null,"parent":"am(","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"am#":{"opcode":"data_setvariableto","next":"am)","parent":"JD","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"am)":{"opcode":"procedures_call","next":"JE","parent":"am#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JE":{"opcode":"data_setvariableto","next":"a=-","parent":"am)","inputs":{"VALUE":[3,"am*",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"am*":{"opcode":"data_itemoflist","next":null,"parent":"JE","inputs":{"INDEX":[3,"am+",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"am+":{"opcode":"operator_add","next":null,"parent":"am*","inputs":{"NUM1":[3,"am,",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"am,":{"opcode":"operator_add","next":null,"parent":"am+","inputs":{"NUM1":[3,"a=.",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=.":{"opcode":"operator_multiply","next":null,"parent":"am,","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=-":{"opcode":"procedures_call","next":null,"parent":"JE","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"am-":{"opcode":"procedures_definition","next":"am.","parent":null,"inputs":{"custom_block":[1,"a=/"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":1732},"a=/":{"opcode":"procedures_prototype","next":null,"parent":"am-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rra","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"am.":{"opcode":"procedures_call","next":"am/","parent":"am-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"am/":{"opcode":"procedures_call","next":"JF","parent":"am.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JF":{"opcode":"data_setvariableto","next":"JG","parent":"am/","inputs":{"VALUE":[3,"a=:",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a=:":{"opcode":"operator_mod","next":null,"parent":"JF","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"JG":{"opcode":"data_setvariableto","next":"am:","parent":"JF","inputs":{"VALUE":[3,"am;",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"am;":{"opcode":"operator_mod","next":null,"parent":"JG","inputs":{"NUM1":[3,"JH",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"JH":{"opcode":"operator_add","next":null,"parent":"am;","inputs":{"NUM1":[3,"am=",[4,0]],"NUM2":[3,"a=;",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am=":{"opcode":"operator_mathop","next":null,"parent":"JH","inputs":{"NUM":[3,"a==",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a==":{"opcode":"operator_divide","next":null,"parent":"am=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a=;":{"opcode":"operator_multiply","next":null,"parent":"JH","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"am:":{"opcode":"data_setvariableto","next":"am?","parent":"JG","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"am?":{"opcode":"procedures_call","next":"JI","parent":"am:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JI":{"opcode":"data_setvariableto","next":"JJ","parent":"am?","inputs":{"VALUE":[3,"am@",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"am@":{"opcode":"operator_add","next":null,"parent":"JI","inputs":{"NUM1":[3,"JK",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JK":{"opcode":"operator_add","next":null,"parent":"am@","inputs":{"NUM1":[3,"am[",[4,0]],"NUM2":[3,"am]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am[":{"opcode":"operator_subtract","next":null,"parent":"JK","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"am^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am^":{"opcode":"operator_multiply","next":null,"parent":"am[","inputs":{"NUM1":[3,"a=?",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=?":{"opcode":"operator_gt","next":null,"parent":"am^","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"am]":{"opcode":"operator_subtract","next":null,"parent":"JK","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"am_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am_":{"opcode":"operator_multiply","next":null,"parent":"am]","inputs":{"NUM1":[3,"a=@",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=@":{"opcode":"operator_gt","next":null,"parent":"am_","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"JJ":{"opcode":"data_setvariableto","next":"JL","parent":"JI","inputs":{"VALUE":[3,"am`",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"am`":{"opcode":"operator_add","next":null,"parent":"JJ","inputs":{"NUM1":[3,"JM",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"JM":{"opcode":"operator_or","next":null,"parent":"am`","inputs":{"OPERAND1":[2,"a=["],"OPERAND2":[2,"a=]"]},"fields":{},"shadow":false,"topLevel":false},"a=[":{"opcode":"operator_gt","next":null,"parent":"JM","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a=]":{"opcode":"operator_lt","next":null,"parent":"JM","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"JL":{"opcode":"data_setvariableto","next":"JN","parent":"JJ","inputs":{"VALUE":[3,"am{",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"am{":{"opcode":"operator_add","next":null,"parent":"JL","inputs":{"NUM1":[3,"a=^",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a=^":{"opcode":"operator_add","next":null,"parent":"am{","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JN":{"opcode":"data_setvariableto","next":"JO","parent":"JL","inputs":{"VALUE":[3,"am|",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"am|":{"opcode":"operator_add","next":null,"parent":"JN","inputs":{"NUM1":[3,"a=_",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a=_":{"opcode":"operator_gt","next":null,"parent":"am|","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"JO":{"opcode":"data_setvariableto","next":"a=`","parent":"JN","inputs":{"VALUE":[3,"a={",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a={":{"opcode":"operator_mod","next":null,"parent":"JO","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=`":{"opcode":"procedures_call","next":null,"parent":"JO","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"am}":{"opcode":"procedures_definition","next":"am~","parent":null,"inputs":{"custom_block":[1,"a=|"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":3144},"a=|":{"opcode":"procedures_prototype","next":null,"parent":"am}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dcp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"am~":{"opcode":"procedures_call","next":"ana","parent":"am}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ana":{"opcode":"procedures_call","next":"JP","parent":"am~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JP":{"opcode":"data_setvariableto","next":"anb","parent":"ana","inputs":{"VALUE":[3,"anc",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"anc":{"opcode":"operator_mod","next":null,"parent":"JP","inputs":{"NUM1":[3,"a=}",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=}":{"opcode":"operator_subtract","next":null,"parent":"anc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"anb":{"opcode":"procedures_call","next":"JQ","parent":"JP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JQ":{"opcode":"data_setvariableto","next":"JR","parent":"anb","inputs":{"VALUE":[3,"and",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"and":{"opcode":"operator_add","next":null,"parent":"JQ","inputs":{"NUM1":[3,"ane",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ane":{"opcode":"operator_gt","next":null,"parent":"and","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,"a=~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a=~":{"opcode":"operator_subtract","next":null,"parent":"ane","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"JR":{"opcode":"data_setvariableto","next":"anf","parent":"JQ","inputs":{"VALUE":[3,"ang",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"ang":{"opcode":"operator_add","next":null,"parent":"JR","inputs":{"NUM1":[3,"a?a",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a?a":{"opcode":"operator_equals","next":null,"parent":"ang","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"anf":{"opcode":"data_setvariableto","next":null,"parent":"JR","inputs":{"VALUE":[3,"anh",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"anh":{"opcode":"operator_add","next":null,"parent":"anf","inputs":{"NUM1":[3,"ani",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ani":{"opcode":"operator_gt","next":null,"parent":"anh","inputs":{"OPERAND1":[3,"anj",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"anj":{"opcode":"operator_mod","next":null,"parent":"ani","inputs":{"NUM1":[3,"a?b",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?b":{"opcode":"operator_subtract","next":null,"parent":"anj","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ank":{"opcode":"procedures_definition","next":"anl","parent":null,"inputs":{"custom_block":[1,"a?c"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":3708},"a?c":{"opcode":"procedures_prototype","next":null,"parent":"ank","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"isc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"anl":{"opcode":"procedures_call","next":"anm","parent":"ank","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"anm":{"opcode":"procedures_call","next":"JS","parent":"anl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JS":{"opcode":"data_setvariableto","next":"ann","parent":"anm","inputs":{"VALUE":[3,"ano",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ano":{"opcode":"operator_mod","next":null,"parent":"JS","inputs":{"NUM1":[3,"a?d",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?d":{"opcode":"operator_add","next":null,"parent":"ano","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ann":{"opcode":"procedures_call","next":"JT","parent":"JS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"JT":{"opcode":"data_setvariableto","next":"JU","parent":"ann","inputs":{"VALUE":[3,"JV",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"JV":{"opcode":"operator_subtract","next":null,"parent":"JT","inputs":{"NUM1":[3,"JW",[4,0]],"NUM2":[3,"a?e",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JW":{"opcode":"operator_subtract","next":null,"parent":"JV","inputs":{"NUM1":[3,"anp",[4,0]],"NUM2":[3,"anq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anp":{"opcode":"operator_subtract","next":null,"parent":"JW","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"anr",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anr":{"opcode":"operator_multiply","next":null,"parent":"anp","inputs":{"NUM1":[3,"a?f",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?f":{"opcode":"operator_gt","next":null,"parent":"anr","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"anq":{"opcode":"operator_subtract","next":null,"parent":"JW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"ans",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ans":{"opcode":"operator_multiply","next":null,"parent":"anq","inputs":{"NUM1":[3,"a?g",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?g":{"opcode":"operator_gt","next":null,"parent":"ans","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a?e":{"opcode":"operator_lt","next":null,"parent":"JV","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"JU":{"opcode":"data_setvariableto","next":"JX","parent":"JT","inputs":{"VALUE":[3,"ant",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"ant":{"opcode":"operator_add","next":null,"parent":"JU","inputs":{"NUM1":[3,"JY",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"JY":{"opcode":"operator_or","next":null,"parent":"ant","inputs":{"OPERAND1":[2,"a?h"],"OPERAND2":[2,"a?i"]},"fields":{},"shadow":false,"topLevel":false},"a?h":{"opcode":"operator_gt","next":null,"parent":"JY","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a?i":{"opcode":"operator_lt","next":null,"parent":"JY","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"JX":{"opcode":"data_setvariableto","next":"JZ","parent":"JU","inputs":{"VALUE":[3,"J0",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"J0":{"opcode":"operator_subtract","next":null,"parent":"JX","inputs":{"NUM1":[3,"a?j",[4,0]],"NUM2":[3,"a?k",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?j":{"opcode":"operator_subtract","next":null,"parent":"J0","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?k":{"opcode":"operator_lt","next":null,"parent":"J0","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"JZ":{"opcode":"data_setvariableto","next":"J1","parent":"JX","inputs":{"VALUE":[3,"anu",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"anu":{"opcode":"operator_add","next":null,"parent":"JZ","inputs":{"NUM1":[3,"a?l",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a?l":{"opcode":"operator_gt","next":null,"parent":"anu","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"J1":{"opcode":"data_setvariableto","next":"a?m","parent":"JZ","inputs":{"VALUE":[3,"a?n",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a?n":{"opcode":"operator_mod","next":null,"parent":"J1","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?m":{"opcode":"procedures_call","next":null,"parent":"J1","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"anv":{"opcode":"procedures_definition","next":"anw","parent":null,"inputs":{"custom_block":[1,"a?o"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":4448},"a?o":{"opcode":"procedures_prototype","next":null,"parent":"anv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"anc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"anw":{"opcode":"procedures_call","next":"a?p","parent":"anv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"a?p":{"opcode":"data_setvariableto","next":null,"parent":"anw","inputs":{"VALUE":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"anx":{"opcode":"procedures_definition","next":"any","parent":null,"inputs":{"custom_block":[1,"a?q"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":4684},"a?q":{"opcode":"procedures_prototype","next":null,"parent":"anx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"alr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"any":{"opcode":"procedures_call","next":"J2","parent":"anx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"J2":{"opcode":"data_setvariableto","next":"J3","parent":"any","inputs":{"VALUE":[3,"a?r",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a?r":{"opcode":"operator_mod","next":null,"parent":"J2","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"J3":{"opcode":"data_setvariableto","next":"a?s","parent":"J2","inputs":{"VALUE":[3,"anz",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"anz":{"opcode":"operator_mathop","next":null,"parent":"J3","inputs":{"NUM":[3,"a?t",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a?t":{"opcode":"operator_divide","next":null,"parent":"anz","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a?s":{"opcode":"procedures_call","next":null,"parent":"J3","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"anA":{"opcode":"procedures_definition","next":"anB","parent":null,"inputs":{"custom_block":[1,"a?u"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5040},"a?u":{"opcode":"procedures_prototype","next":null,"parent":"anA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"anB":{"opcode":"procedures_call","next":"J4","parent":"anA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"J4":{"opcode":"data_setvariableto","next":"J5","parent":"anB","inputs":{"VALUE":[3,"a?v",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a?v":{"opcode":"operator_mod","next":null,"parent":"J4","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"J5":{"opcode":"data_setvariableto","next":"anC","parent":"J4","inputs":{"VALUE":[3,"anD",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"anD":{"opcode":"operator_mod","next":null,"parent":"J5","inputs":{"NUM1":[3,"J6",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"J6":{"opcode":"operator_add","next":null,"parent":"anD","inputs":{"NUM1":[3,"anE",[4,0]],"NUM2":[3,"a?w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anE":{"opcode":"operator_mathop","next":null,"parent":"J6","inputs":{"NUM":[3,"a?x",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a?x":{"opcode":"operator_divide","next":null,"parent":"anE","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a?w":{"opcode":"operator_multiply","next":null,"parent":"J6","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"anC":{"opcode":"data_setvariableto","next":"anF","parent":"J5","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"anF":{"opcode":"procedures_call","next":"J7","parent":"anC","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"J7":{"opcode":"data_setvariableto","next":"anG","parent":"anF","inputs":{"VALUE":[3,"anH",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"anH":{"opcode":"operator_add","next":null,"parent":"J7","inputs":{"NUM1":[3,"anI",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"anI":{"opcode":"operator_gt","next":null,"parent":"anH","inputs":{"OPERAND1":[3,"a?y",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a?y":{"opcode":"operator_mod","next":null,"parent":"anI","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"anG":{"opcode":"data_setvariableto","next":null,"parent":"J7","inputs":{"VALUE":[3,"anJ",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"anJ":{"opcode":"operator_add","next":null,"parent":"anG","inputs":{"NUM1":[3,"anK",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"anK":{"opcode":"operator_not","next":null,"parent":"anJ","inputs":{"OPERAND":[2,"J8"]},"fields":{},"shadow":false,"topLevel":false},"J8":{"opcode":"operator_equals","next":null,"parent":"anK","inputs":{"OPERAND1":[3,"anL",[10,""]],"OPERAND2":[3,"anM",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"anL":{"opcode":"operator_gt","next":null,"parent":"J8","inputs":{"OPERAND1":[3,"a?z",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a?z":{"opcode":"operator_mod","next":null,"parent":"anL","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"anM":{"opcode":"operator_gt","next":null,"parent":"J8","inputs":{"OPERAND1":[3,"a?A",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"a?A":{"opcode":"operator_mod","next":null,"parent":"anM","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"anN":{"opcode":"procedures_definition","next":"J9","parent":null,"inputs":{"custom_block":[1,"a?B"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5760},"a?B":{"opcode":"procedures_prototype","next":null,"parent":"anN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"axs","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J9":{"opcode":"data_setvariableto","next":"J!","parent":"anN","inputs":{"VALUE":[3,"anO",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"anO":{"opcode":"data_itemoflist","next":null,"parent":"J9","inputs":{"INDEX":[3,"anP",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"anP":{"opcode":"operator_add","next":null,"parent":"anO","inputs":{"NUM1":[3,"anQ",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"anQ":{"opcode":"operator_add","next":null,"parent":"anP","inputs":{"NUM1":[3,"a?C",[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?C":{"opcode":"operator_multiply","next":null,"parent":"anQ","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"J!":{"opcode":"data_setvariableto","next":"J#","parent":"J9","inputs":{"VALUE":[3,"a?D",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"a?D":{"opcode":"operator_subtract","next":null,"parent":"J!","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J#":{"opcode":"data_setvariableto","next":"J%","parent":"J!","inputs":{"VALUE":[3,"anR",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"anR":{"opcode":"operator_add","next":null,"parent":"J#","inputs":{"NUM1":[3,"a?E",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a?E":{"opcode":"operator_gt","next":null,"parent":"anR","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"J%":{"opcode":"data_setvariableto","next":"a?F","parent":"J#","inputs":{"VALUE":[3,"a?G",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"a?G":{"opcode":"operator_mod","next":null,"parent":"J%","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?F":{"opcode":"procedures_call","next":null,"parent":"J%","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"anS":{"opcode":"procedures_definition","next":"J(","parent":null,"inputs":{"custom_block":[1,"anT"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5808},"anT":{"opcode":"procedures_prototype","next":null,"parent":"anS","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,"a?H"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","argumentnames":"[\"vector\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a?H":{"opcode":"argument_reporter_string_number","next":null,"parent":"anT","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":true,"topLevel":false},"J(":{"opcode":"data_setvariableto","next":"anU","parent":"anS","inputs":{"VALUE":[3,"anV",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"anV":{"opcode":"operator_mathop","next":null,"parent":"J(","inputs":{"NUM":[3,"a?I",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a?I":{"opcode":"operator_divide","next":null,"parent":"anV","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"anU":{"opcode":"procedures_call","next":"J)","parent":"J(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"J)":{"opcode":"data_setvariableto","next":"anW","parent":"anU","inputs":{"VALUE":[3,"a?J",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?J":{"opcode":"operator_mod","next":null,"parent":"J)","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"anW":{"opcode":"procedures_call","next":"J*","parent":"J)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"J*":{"opcode":"data_setvariableto","next":"anX","parent":"anW","inputs":{"VALUE":[3,"a?K",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?K":{"opcode":"operator_add","next":null,"parent":"J*","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[3,[12,"!break","6zFO5H,!X[g$Ax)0BDc:"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anX":{"opcode":"procedures_call","next":"J+","parent":"J*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"J+":{"opcode":"data_setvariableto","next":"anY","parent":"anX","inputs":{"VALUE":[3,"a?L",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?L":{"opcode":"argument_reporter_string_number","next":null,"parent":"J+","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":false,"topLevel":false},"anY":{"opcode":"procedures_call","next":"anZ","parent":"J+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"anZ":{"opcode":"data_setvariableto","next":"J,","parent":"anY","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"J,":{"opcode":"data_setvariableto","next":"an0","parent":"anZ","inputs":{"VALUE":[3,"an1",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"an1":{"opcode":"operator_add","next":null,"parent":"J,","inputs":{"NUM1":[3,"a?M",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?M":{"opcode":"argument_reporter_string_number","next":null,"parent":"an1","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":false,"topLevel":false},"an0":{"opcode":"procedures_call","next":"J-","parent":"J,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"J-":{"opcode":"data_setvariableto","next":"a?N","parent":"an0","inputs":{"VALUE":[3,"an2",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an2":{"opcode":"operator_add","next":null,"parent":"J-","inputs":{"NUM1":[3,"a?O",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?O":{"opcode":"operator_multiply","next":null,"parent":"an2","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?N":{"opcode":"data_setvariableto","next":null,"parent":"J-","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"bu=":{"opcode":"procedures_call","next":null,"parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":795,"y":5280,"mutation":{"tagName":"mutation","children":[],"proccode":"!reset","argumentids":"[]","warp":"true"}},"an3":{"opcode":"procedures_definition","next":"an4","parent":null,"inputs":{"custom_block":[1,"a?P"]},"fields":{},"shadow":false,"topLevel":true,"x":6620,"y":2348},"a?P":{"opcode":"procedures_prototype","next":null,"parent":"an3","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!trace","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"an4":{"opcode":"data_addtolist","next":null,"parent":"an3","inputs":{"ITEM":[3,"an5",[10,""]]},"fields":{"LIST":["!trace","T$5A;?z~P`Hle{DQ-4sz"]},"shadow":false,"topLevel":false},"an5":{"opcode":"operator_join","next":null,"parent":"an4","inputs":{"STRING1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]],"STRING2":[3,"J.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J.":{"opcode":"operator_join","next":null,"parent":"an5","inputs":{"STRING1":[3,"a?Q",[10,""]],"STRING2":[3,"J/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?Q":{"opcode":"operator_join","next":null,"parent":"J.","inputs":{"STRING1":[1,[10," A:"]],"STRING2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J/":{"opcode":"operator_join","next":null,"parent":"J.","inputs":{"STRING1":[3,"a?R",[10,""]],"STRING2":[3,"J:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?R":{"opcode":"operator_join","next":null,"parent":"J/","inputs":{"STRING1":[1,[10," X:"]],"STRING2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J:":{"opcode":"operator_join","next":null,"parent":"J/","inputs":{"STRING1":[3,"a?S",[10,""]],"STRING2":[3,"J;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?S":{"opcode":"operator_join","next":null,"parent":"J:","inputs":{"STRING1":[1,[10," Y:"]],"STRING2":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J;":{"opcode":"operator_join","next":null,"parent":"J:","inputs":{"STRING1":[3,"an6",[10,""]],"STRING2":[3,"J=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"an6":{"opcode":"operator_join","next":null,"parent":"J;","inputs":{"STRING1":[1,[10," P:"]],"STRING2":[3,"an7",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"an7":{"opcode":"data_itemoflist","next":null,"parent":"an6","inputs":{"INDEX":[3,"a?T",[7,0]]},"fields":{"LIST":["!hex","J!+O1tv.S4ifq^pnyyrA"]},"shadow":false,"topLevel":false},"a?T":{"opcode":"operator_subtract","next":null,"parent":"an7","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"J=":{"opcode":"operator_join","next":null,"parent":"J;","inputs":{"STRING1":[3,"a?U",[10,""]],"STRING2":[3,"a?V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?U":{"opcode":"operator_join","next":null,"parent":"J=","inputs":{"STRING1":[1,[10," SP:"]],"STRING2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?V":{"opcode":"operator_join","next":null,"parent":"J=","inputs":{"STRING1":[1,[10," CPU:"]],"STRING2":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"an8":{"opcode":"procedures_definition","next":"an9","parent":null,"inputs":{"custom_block":[1,"a?W"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5856},"a?W":{"opcode":"procedures_prototype","next":null,"parent":"an8","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jsr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"an9":{"opcode":"data_changevariableby","next":"an!","parent":"an8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an!":{"opcode":"data_setvariableto","next":"J?","parent":"an9","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"J?":{"opcode":"data_setvariableto","next":"an#","parent":"an!","inputs":{"VALUE":[3,"a?X",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?X":{"opcode":"operator_add","next":null,"parent":"J?","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an#":{"opcode":"procedures_call","next":"J@","parent":"J?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"J@":{"opcode":"data_setvariableto","next":"an%","parent":"an#","inputs":{"VALUE":[3,"an(",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"an(":{"opcode":"operator_mathop","next":null,"parent":"J@","inputs":{"NUM":[3,"a?Y",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a?Y":{"opcode":"operator_divide","next":null,"parent":"an(","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an%":{"opcode":"procedures_call","next":"J[","parent":"J@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"J[":{"opcode":"data_setvariableto","next":"an)","parent":"an%","inputs":{"VALUE":[3,"a?Z",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?Z":{"opcode":"operator_mod","next":null,"parent":"J[","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an)":{"opcode":"procedures_call","next":"an*","parent":"J[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"an*":{"opcode":"data_setvariableto","next":"an+","parent":"an)","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"an+":{"opcode":"procedures_call","next":"an,","parent":"an*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"an,":{"opcode":"data_setvariableto","next":null,"parent":"an+","inputs":{"VALUE":[3,"an-",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an-":{"opcode":"operator_add","next":null,"parent":"an,","inputs":{"NUM1":[3,"a?0",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?0":{"opcode":"operator_multiply","next":null,"parent":"an-","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an.":{"opcode":"procedures_definition","next":"J]","parent":null,"inputs":{"custom_block":[1,"a?1"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":7796},"a?1":{"opcode":"procedures_prototype","next":null,"parent":"an.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"php","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J]":{"opcode":"data_setvariableto","next":"a?2","parent":"an.","inputs":{"VALUE":[3,"a?3",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?3":{"opcode":"operator_add","next":null,"parent":"J]","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a?2":{"opcode":"procedures_call","next":null,"parent":"J]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"an/":{"opcode":"procedures_definition","next":"J^","parent":null,"inputs":{"custom_block":[1,"a?4"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8040},"a?4":{"opcode":"procedures_prototype","next":null,"parent":"an/","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"plp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J^":{"opcode":"data_setvariableto","next":"an:","parent":"an/","inputs":{"VALUE":[3,"a?5",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?5":{"opcode":"operator_add","next":null,"parent":"J^","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"an:":{"opcode":"procedures_call","next":"an;","parent":"J^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"an;":{"opcode":"procedures_call","next":"an=","parent":"an:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"an=":{"opcode":"data_setvariableto","next":"a?6","parent":"an;","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a?6":{"opcode":"procedures_call","next":null,"parent":"an=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","warp":"true"}},"an?":{"opcode":"procedures_definition","next":"J_","parent":null,"inputs":{"custom_block":[1,"a?7"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":6572},"a?7":{"opcode":"procedures_prototype","next":null,"parent":"an?","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rts","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J_":{"opcode":"data_setvariableto","next":"an@","parent":"an?","inputs":{"VALUE":[3,"a?8",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?8":{"opcode":"operator_add","next":null,"parent":"J_","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an@":{"opcode":"procedures_call","next":"an[","parent":"J_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"an[":{"opcode":"data_setvariableto","next":"an]","parent":"an@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an]":{"opcode":"procedures_call","next":"an^","parent":"an[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"an^":{"opcode":"data_changevariableby","next":"an_","parent":"an]","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an_":{"opcode":"procedures_call","next":"J`","parent":"an^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"J`":{"opcode":"data_changevariableby","next":"an`","parent":"an_","inputs":{"VALUE":[3,"a?9",[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"a?9":{"opcode":"operator_multiply","next":null,"parent":"J`","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an`":{"opcode":"data_setvariableto","next":"an{","parent":"J`","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"an{":{"opcode":"procedures_call","next":"a?!","parent":"an`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"a?!":{"opcode":"data_changevariableby","next":null,"parent":"an{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"an|":{"opcode":"procedures_definition","next":"J{","parent":null,"inputs":{"custom_block":[1,"a?#"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":7208},"a?#":{"opcode":"procedures_prototype","next":null,"parent":"an|","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rti","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J{":{"opcode":"data_setvariableto","next":"an}","parent":"an|","inputs":{"VALUE":[3,"a?%",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?%":{"opcode":"operator_add","next":null,"parent":"J{","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"an}":{"opcode":"procedures_call","next":"an~","parent":"J{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"an~":{"opcode":"procedures_call","next":"aoa","parent":"an}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aoa":{"opcode":"data_setvariableto","next":"aob","parent":"an~","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"aob":{"opcode":"procedures_call","next":"aoc","parent":"aoa","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","warp":"true"}},"aoc":{"opcode":"procedures_call","next":"aod","parent":"aob","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aod":{"opcode":"data_setvariableto","next":"aoe","parent":"aoc","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aoe":{"opcode":"procedures_call","next":"aof","parent":"aod","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aof":{"opcode":"data_changevariableby","next":null,"parent":"aoe","inputs":{"VALUE":[3,"a?(",[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"a?(":{"opcode":"operator_multiply","next":null,"parent":"aof","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aog":{"opcode":"procedures_definition","next":"a?)","parent":null,"inputs":{"custom_block":[1,"a?*"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5668},"a?*":{"opcode":"procedures_prototype","next":null,"parent":"aog","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jmp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"a?)":{"opcode":"data_setvariableto","next":null,"parent":"aog","inputs":{"VALUE":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aoh":{"opcode":"procedures_definition","next":"aoi","parent":null,"inputs":{"custom_block":[1,"a?+"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8428},"a?+":{"opcode":"procedures_prototype","next":null,"parent":"aoh","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pha","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoi":{"opcode":"data_setvariableto","next":"a?,","parent":"aoh","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?,":{"opcode":"procedures_call","next":null,"parent":"aoi","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"aoj":{"opcode":"procedures_definition","next":"J|","parent":null,"inputs":{"custom_block":[1,"a?-"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8664},"a?-":{"opcode":"procedures_prototype","next":null,"parent":"aoj","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pla","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"J|":{"opcode":"data_setvariableto","next":"aok","parent":"aoj","inputs":{"VALUE":[3,"a?.",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"a?.":{"opcode":"operator_add","next":null,"parent":"J|","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aok":{"opcode":"procedures_call","next":"aol","parent":"J|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aol":{"opcode":"procedures_call","next":"aom","parent":"aok","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aom":{"opcode":"data_setvariableto","next":"a?/","parent":"aol","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a?/":{"opcode":"procedures_call","next":null,"parent":"aom","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aon":{"opcode":"procedures_definition","next":"aoo","parent":null,"inputs":{"custom_block":[1,"a?:"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":2532},"a?:":{"opcode":"procedures_prototype","next":null,"parent":"aon","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sta","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoo":{"opcode":"data_setvariableto","next":"a?;","parent":"aon","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?;":{"opcode":"procedures_call","next":null,"parent":"aoo","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aop":{"opcode":"procedures_definition","next":"b?","parent":null,"inputs":{"custom_block":[1,"a?="]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":2768},"a?=":{"opcode":"procedures_prototype","next":null,"parent":"aop","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b?":{"opcode":"control_if","next":"P5","parent":"aop","inputs":{"CONDITION":[2,"aoq"],"SUBSTACK":[2,"aor"]},"fields":{},"shadow":false,"topLevel":false},"aoq":{"opcode":"operator_equals","next":null,"parent":"b?","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aor":{"opcode":"procedures_call","next":null,"parent":"b?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P5":{"opcode":"data_setvariableto","next":"TU","parent":"b?","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TU":{"opcode":"procedures_call","next":null,"parent":"P5","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aos":{"opcode":"procedures_definition","next":"b@","parent":null,"inputs":{"custom_block":[1,"a??"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":3140},"a??":{"opcode":"procedures_prototype","next":null,"parent":"aos","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cmp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b@":{"opcode":"control_if","next":"iN","parent":"aos","inputs":{"CONDITION":[2,"aot"],"SUBSTACK":[2,"aou"]},"fields":{},"shadow":false,"topLevel":false},"aot":{"opcode":"operator_equals","next":null,"parent":"b@","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aou":{"opcode":"procedures_call","next":null,"parent":"b@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iN":{"opcode":"data_setvariableto","next":"c_","parent":"b@","inputs":{"VALUE":[3,"J}",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"J}":{"opcode":"operator_add","next":null,"parent":"iN","inputs":{"NUM1":[3,"J~",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"J~":{"opcode":"operator_gt","next":null,"parent":"J}","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,"TV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TV":{"opcode":"operator_subtract","next":null,"parent":"J~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c_":{"opcode":"data_setvariableto","next":"Ka","parent":"iN","inputs":{"VALUE":[3,"Kb",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Kb":{"opcode":"operator_add","next":null,"parent":"c_","inputs":{"NUM1":[3,"TW",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TW":{"opcode":"operator_equals","next":null,"parent":"Kb","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ka":{"opcode":"data_setvariableto","next":null,"parent":"c_","inputs":{"VALUE":[3,"Kc",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kc":{"opcode":"operator_add","next":null,"parent":"Ka","inputs":{"NUM1":[3,"Kd",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kd":{"opcode":"operator_gt","next":null,"parent":"Kc","inputs":{"OPERAND1":[3,"Ke",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ke":{"opcode":"operator_mod","next":null,"parent":"Kd","inputs":{"NUM1":[3,"TX",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TX":{"opcode":"operator_subtract","next":null,"parent":"Ke","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a?@":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"a?["]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5620},"a?[":{"opcode":"procedures_prototype","next":null,"parent":"a?@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"xaa","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aov":{"opcode":"procedures_definition","next":"b[","parent":null,"inputs":{"custom_block":[1,"a?]"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13224},"a?]":{"opcode":"procedures_prototype","next":null,"parent":"aov","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b[":{"opcode":"control_if","next":"P6","parent":"aov","inputs":{"CONDITION":[2,"aow"],"SUBSTACK":[2,"aox"]},"fields":{},"shadow":false,"topLevel":false},"aow":{"opcode":"operator_equals","next":null,"parent":"b[","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aox":{"opcode":"procedures_call","next":null,"parent":"b[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P6":{"opcode":"procedures_call","next":"TY","parent":"b[","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"TY":{"opcode":"data_setvariableto","next":null,"parent":"P6","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aoy":{"opcode":"procedures_definition","next":"aoz","parent":null,"inputs":{"custom_block":[1,"a?^"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13968},"a?^":{"opcode":"procedures_prototype","next":null,"parent":"aoy","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sty","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoz":{"opcode":"data_setvariableto","next":"a?_","parent":"aoy","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a?_":{"opcode":"procedures_call","next":null,"parent":"aoz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aoA":{"opcode":"procedures_definition","next":"b]","parent":null,"inputs":{"custom_block":[1,"a?`"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14440},"a?`":{"opcode":"procedures_prototype","next":null,"parent":"aoA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b]":{"opcode":"control_if","next":"iO","parent":"aoA","inputs":{"CONDITION":[2,"aoB"],"SUBSTACK":[2,"aoC"]},"fields":{},"shadow":false,"topLevel":false},"aoB":{"opcode":"operator_equals","next":null,"parent":"b]","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoC":{"opcode":"procedures_call","next":null,"parent":"b]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iO":{"opcode":"data_setvariableto","next":"c`","parent":"b]","inputs":{"VALUE":[3,"Kf",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Kf":{"opcode":"operator_add","next":null,"parent":"iO","inputs":{"NUM1":[3,"Kg",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kg":{"opcode":"operator_gt","next":null,"parent":"Kf","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,"TZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TZ":{"opcode":"operator_subtract","next":null,"parent":"Kg","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c`":{"opcode":"data_setvariableto","next":"Kh","parent":"iO","inputs":{"VALUE":[3,"Ki",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Ki":{"opcode":"operator_add","next":null,"parent":"c`","inputs":{"NUM1":[3,"T0",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"T0":{"opcode":"operator_equals","next":null,"parent":"Ki","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Kh":{"opcode":"data_setvariableto","next":null,"parent":"c`","inputs":{"VALUE":[3,"Kj",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kj":{"opcode":"operator_add","next":null,"parent":"Kh","inputs":{"NUM1":[3,"Kk",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kk":{"opcode":"operator_gt","next":null,"parent":"Kj","inputs":{"OPERAND1":[3,"Kl",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Kl":{"opcode":"operator_mod","next":null,"parent":"Kk","inputs":{"NUM1":[3,"T1",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T1":{"opcode":"operator_subtract","next":null,"parent":"Kl","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aoD":{"opcode":"procedures_definition","next":"b^","parent":null,"inputs":{"custom_block":[1,"a?{"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14932},"a?{":{"opcode":"procedures_prototype","next":null,"parent":"aoD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b^":{"opcode":"control_if","next":"iP","parent":"aoD","inputs":{"CONDITION":[2,"aoE"],"SUBSTACK":[2,"aoF"]},"fields":{},"shadow":false,"topLevel":false},"aoE":{"opcode":"operator_equals","next":null,"parent":"b^","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoF":{"opcode":"procedures_call","next":null,"parent":"b^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iP":{"opcode":"data_setvariableto","next":"c{","parent":"b^","inputs":{"VALUE":[3,"Km",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Km":{"opcode":"operator_add","next":null,"parent":"iP","inputs":{"NUM1":[3,"Kn",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kn":{"opcode":"operator_gt","next":null,"parent":"Km","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,"T2",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"T2":{"opcode":"operator_subtract","next":null,"parent":"Kn","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c{":{"opcode":"data_setvariableto","next":"Ko","parent":"iP","inputs":{"VALUE":[3,"Kp",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Kp":{"opcode":"operator_add","next":null,"parent":"c{","inputs":{"NUM1":[3,"T3",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"T3":{"opcode":"operator_equals","next":null,"parent":"Kp","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ko":{"opcode":"data_setvariableto","next":null,"parent":"c{","inputs":{"VALUE":[3,"Kq",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kq":{"opcode":"operator_add","next":null,"parent":"Ko","inputs":{"NUM1":[3,"Kr",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kr":{"opcode":"operator_gt","next":null,"parent":"Kq","inputs":{"OPERAND1":[3,"Ks",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ks":{"opcode":"operator_mod","next":null,"parent":"Kr","inputs":{"NUM1":[3,"T4",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T4":{"opcode":"operator_subtract","next":null,"parent":"Ks","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aoG":{"opcode":"procedures_definition","next":"Kt","parent":null,"inputs":{"custom_block":[1,"a?|"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12216},"a?|":{"opcode":"procedures_prototype","next":null,"parent":"aoG","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"iny","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Kt":{"opcode":"data_setvariableto","next":"a?}","parent":"aoG","inputs":{"VALUE":[3,"aoH",[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aoH":{"opcode":"operator_mod","next":null,"parent":"Kt","inputs":{"NUM1":[3,"a?~",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?~":{"opcode":"operator_add","next":null,"parent":"aoH","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?}":{"opcode":"procedures_call","next":null,"parent":"Kt","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoI":{"opcode":"procedures_definition","next":"Ku","parent":null,"inputs":{"custom_block":[1,"a@a"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12468},"a@a":{"opcode":"procedures_prototype","next":null,"parent":"aoI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dey","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Ku":{"opcode":"data_setvariableto","next":"a@b","parent":"aoI","inputs":{"VALUE":[3,"aoJ",[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aoJ":{"opcode":"operator_mod","next":null,"parent":"Ku","inputs":{"NUM1":[3,"a@c",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@c":{"opcode":"operator_subtract","next":null,"parent":"aoJ","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@b":{"opcode":"procedures_call","next":null,"parent":"Ku","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoK":{"opcode":"procedures_definition","next":"Kv","parent":null,"inputs":{"custom_block":[1,"a@d"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12720},"a@d":{"opcode":"procedures_prototype","next":null,"parent":"aoK","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Kv":{"opcode":"data_setvariableto","next":"a@e","parent":"aoK","inputs":{"VALUE":[3,"aoL",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aoL":{"opcode":"operator_mod","next":null,"parent":"Kv","inputs":{"NUM1":[3,"a@f",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@f":{"opcode":"operator_add","next":null,"parent":"aoL","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@e":{"opcode":"procedures_call","next":null,"parent":"Kv","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoM":{"opcode":"procedures_definition","next":"aoN","parent":null,"inputs":{"custom_block":[1,"a@g"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4300},"a@g":{"opcode":"procedures_prototype","next":null,"parent":"aoM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tay","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoN":{"opcode":"data_setvariableto","next":"a@h","parent":"aoM","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"a@h":{"opcode":"procedures_call","next":null,"parent":"aoN","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoO":{"opcode":"procedures_definition","next":"aoP","parent":null,"inputs":{"custom_block":[1,"a@i"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4536},"a@i":{"opcode":"procedures_prototype","next":null,"parent":"aoO","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tya","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoP":{"opcode":"data_setvariableto","next":"a@j","parent":"aoO","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a@j":{"opcode":"procedures_call","next":null,"parent":"aoP","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoQ":{"opcode":"procedures_definition","next":"aoR","parent":null,"inputs":{"custom_block":[1,"a@k"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14204},"a@k":{"opcode":"procedures_prototype","next":null,"parent":"aoQ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"stx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoR":{"opcode":"data_setvariableto","next":"a@l","parent":"aoQ","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a@l":{"opcode":"procedures_call","next":null,"parent":"aoR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aoS":{"opcode":"procedures_definition","next":"b_","parent":null,"inputs":{"custom_block":[1,"a@m"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13596},"a@m":{"opcode":"procedures_prototype","next":null,"parent":"aoS","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"b_":{"opcode":"control_if","next":"P7","parent":"aoS","inputs":{"CONDITION":[2,"aoT"],"SUBSTACK":[2,"aoU"]},"fields":{},"shadow":false,"topLevel":false},"aoT":{"opcode":"operator_equals","next":null,"parent":"b_","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoU":{"opcode":"procedures_call","next":null,"parent":"b_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P7":{"opcode":"procedures_call","next":"T5","parent":"b_","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"T5":{"opcode":"data_setvariableto","next":null,"parent":"P7","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aoV":{"opcode":"procedures_definition","next":"aoW","parent":null,"inputs":{"custom_block":[1,"a@n"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4772},"a@n":{"opcode":"procedures_prototype","next":null,"parent":"aoV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txa","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoW":{"opcode":"data_setvariableto","next":"a@o","parent":"aoV","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"a@o":{"opcode":"procedures_call","next":null,"parent":"aoW","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoX":{"opcode":"procedures_definition","next":"aoY","parent":null,"inputs":{"custom_block":[1,"a@p"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5008},"a@p":{"opcode":"procedures_prototype","next":null,"parent":"aoX","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aoY":{"opcode":"data_setvariableto","next":"a@q","parent":"aoX","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"a@q":{"opcode":"procedures_call","next":null,"parent":"aoY","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoZ":{"opcode":"procedures_definition","next":"Kw","parent":null,"inputs":{"custom_block":[1,"a@r"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12972},"a@r":{"opcode":"procedures_prototype","next":null,"parent":"aoZ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dex","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Kw":{"opcode":"data_setvariableto","next":"a@s","parent":"aoZ","inputs":{"VALUE":[3,"ao0",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"ao0":{"opcode":"operator_mod","next":null,"parent":"Kw","inputs":{"NUM1":[3,"a@t",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@t":{"opcode":"operator_subtract","next":null,"parent":"ao0","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@s":{"opcode":"procedures_call","next":null,"parent":"Kw","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"ao1":{"opcode":"procedures_definition","next":"a@u","parent":null,"inputs":{"custom_block":[1,"a@v"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5244},"a@v":{"opcode":"procedures_prototype","next":null,"parent":"ao1","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txs","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"a@u":{"opcode":"data_setvariableto","next":null,"parent":"ao1","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"ao2":{"opcode":"procedures_definition","next":"ao3","parent":null,"inputs":{"custom_block":[1,"a@w"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5432},"a@w":{"opcode":"procedures_prototype","next":null,"parent":"ao2","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tsx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"ao3":{"opcode":"data_setvariableto","next":"a@x","parent":"ao2","inputs":{"VALUE":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"a@x":{"opcode":"procedures_call","next":null,"parent":"ao3","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"ao4":{"opcode":"procedures_definition","next":"ao5","parent":null,"inputs":{"custom_block":[1,"a@y"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":11820},"a@y":{"opcode":"procedures_prototype","next":null,"parent":"ao4","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dec","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"ao5":{"opcode":"procedures_call","next":"ao6","parent":"ao4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ao6":{"opcode":"procedures_call","next":"Kx","parent":"ao5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Kx":{"opcode":"data_setvariableto","next":"ao7","parent":"ao6","inputs":{"VALUE":[3,"ao8",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ao8":{"opcode":"operator_mod","next":null,"parent":"Kx","inputs":{"NUM1":[3,"a@z",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@z":{"opcode":"operator_subtract","next":null,"parent":"ao8","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ao7":{"opcode":"procedures_call","next":"a@A","parent":"Kx","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"a@A":{"opcode":"procedures_call","next":null,"parent":"ao7","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ao9":{"opcode":"procedures_definition","next":"Ky","parent":null,"inputs":{"custom_block":[1,"a@B"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":6204},"a@B":{"opcode":"procedures_prototype","next":null,"parent":"ao9","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Ky":{"opcode":"data_setvariableto","next":"a@C","parent":"ao9","inputs":{"VALUE":[3,"ao!",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ao!":{"opcode":"data_itemoflist","next":null,"parent":"Ky","inputs":{"INDEX":[3,"Kz",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"Kz":{"opcode":"operator_add","next":null,"parent":"ao!","inputs":{"NUM1":[3,"a@D",[4,0]],"NUM2":[3,"a@E",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@D":{"opcode":"operator_multiply","next":null,"parent":"Kz","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@E":{"opcode":"operator_add","next":null,"parent":"Kz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@C":{"opcode":"procedures_call","next":null,"parent":"Ky","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ao#":{"opcode":"procedures_definition","next":"KA","parent":null,"inputs":{"custom_block":[1,"a@F"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":6464},"a@F":{"opcode":"procedures_prototype","next":null,"parent":"ao#","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"KA":{"opcode":"data_setvariableto","next":"a@G","parent":"ao#","inputs":{"VALUE":[3,"ao%",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ao%":{"opcode":"data_itemoflist","next":null,"parent":"KA","inputs":{"INDEX":[3,"KB",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"KB":{"opcode":"operator_add","next":null,"parent":"ao%","inputs":{"NUM1":[3,"a@H",[4,0]],"NUM2":[3,"a@I",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@H":{"opcode":"operator_multiply","next":null,"parent":"KB","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a@I":{"opcode":"operator_add","next":null,"parent":"KB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@G":{"opcode":"procedures_call","next":null,"parent":"KA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ao(":{"opcode":"procedures_definition","next":"ao)","parent":null,"inputs":{"custom_block":[1,"a@J"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":4128},"a@J":{"opcode":"procedures_prototype","next":null,"parent":"ao(","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set p","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ao)":{"opcode":"data_setvariableto","next":"KC","parent":"ao(","inputs":{"VALUE":[1,[10,"32"]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"KC":{"opcode":"data_changevariableby","next":"KD","parent":"ao)","inputs":{"VALUE":[3,"a@K",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@K":{"opcode":"operator_multiply","next":null,"parent":"KC","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KD":{"opcode":"data_changevariableby","next":"KE","parent":"KC","inputs":{"VALUE":[3,"a@L",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@L":{"opcode":"operator_multiply","next":null,"parent":"KD","inputs":{"NUM1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"KE":{"opcode":"data_changevariableby","next":"KF","parent":"KD","inputs":{"VALUE":[3,"a@M",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@M":{"opcode":"operator_multiply","next":null,"parent":"KE","inputs":{"NUM1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"KF":{"opcode":"data_changevariableby","next":"KG","parent":"KE","inputs":{"VALUE":[3,"a@N",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@N":{"opcode":"operator_multiply","next":null,"parent":"KF","inputs":{"NUM1":[3,[12,"!D","3;^us/Z(haF2h@u#ixfd"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"KG":{"opcode":"data_changevariableby","next":"ao*","parent":"KF","inputs":{"VALUE":[3,"a@O",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@O":{"opcode":"operator_multiply","next":null,"parent":"KG","inputs":{"NUM1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ao*":{"opcode":"data_changevariableby","next":null,"parent":"KG","inputs":{"VALUE":[3,"a@P",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"a@P":{"opcode":"operator_multiply","next":null,"parent":"ao*","inputs":{"NUM1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ao+":{"opcode":"procedures_definition","next":"KH","parent":null,"inputs":{"custom_block":[1,"a@Q"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":4652},"a@Q":{"opcode":"procedures_prototype","next":null,"parent":"ao+","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"KH":{"opcode":"data_setvariableto","next":"KI","parent":"ao+","inputs":{"VALUE":[3,"ao,",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ao,":{"opcode":"data_itemoflist","next":null,"parent":"KH","inputs":{"INDEX":[3,"a@R",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a@R":{"opcode":"operator_add","next":null,"parent":"ao,","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KI":{"opcode":"data_setvariableto","next":"KJ","parent":"KH","inputs":{"VALUE":[3,"a@S",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"a@S":{"opcode":"operator_letter_of","next":null,"parent":"KI","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"KJ":{"opcode":"data_setvariableto","next":"KK","parent":"KI","inputs":{"VALUE":[3,"a@T",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"a@T":{"opcode":"operator_letter_of","next":null,"parent":"KJ","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"KK":{"opcode":"data_setvariableto","next":"KL","parent":"KJ","inputs":{"VALUE":[3,"a@U",[10,""]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"a@U":{"opcode":"operator_letter_of","next":null,"parent":"KK","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"KL":{"opcode":"data_setvariableto","next":"KM","parent":"KK","inputs":{"VALUE":[3,"a@V",[10,""]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"a@V":{"opcode":"operator_letter_of","next":null,"parent":"KL","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"KM":{"opcode":"data_setvariableto","next":"ao-","parent":"KL","inputs":{"VALUE":[3,"a@W",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"a@W":{"opcode":"operator_letter_of","next":null,"parent":"KM","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ao-":{"opcode":"data_setvariableto","next":null,"parent":"KM","inputs":{"VALUE":[3,"a@X",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"a@X":{"opcode":"operator_letter_of","next":null,"parent":"ao-","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ao.":{"opcode":"procedures_definition","next":"ao/","parent":null,"inputs":{"custom_block":[1,"a@Y"]},"fields":{},"shadow":false,"topLevel":true,"x":2496,"y":3748},"a@Y":{"opcode":"procedures_prototype","next":null,"parent":"ao.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!address","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ao/":{"opcode":"data_setvariableto","next":"KN","parent":"ao.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"KN":{"opcode":"data_setvariableto","next":"iQ","parent":"ao/","inputs":{"VALUE":[3,"ao:",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ao:":{"opcode":"operator_mod","next":null,"parent":"KN","inputs":{"NUM1":[3,"a@Z",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a@Z":{"opcode":"data_itemoflist","next":null,"parent":"ao:","inputs":{"INDEX":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[7,0]]},"fields":{"LIST":["!modes","(FqH+{kk!n$8Z^)0|4F|"]},"shadow":false,"topLevel":false},"iQ":{"opcode":"control_if_else","next":"c|","parent":"KN","inputs":{"CONDITION":[2,"ao;"],"SUBSTACK":[2,"a@0"],"SUBSTACK2":[2,"a@1"]},"fields":{},"shadow":false,"topLevel":false},"ao;":{"opcode":"operator_gt","next":null,"parent":"iQ","inputs":{"OPERAND1":[3,"a@2",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a@2":{"opcode":"data_itemoflist","next":null,"parent":"ao;","inputs":{"INDEX":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[7,0]]},"fields":{"LIST":["!modes","(FqH+{kk!n$8Z^)0|4F|"]},"shadow":false,"topLevel":false},"a@0":{"opcode":"data_setvariableto","next":null,"parent":"iQ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"a@1":{"opcode":"data_setvariableto","next":null,"parent":"iQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"c|":{"opcode":"control_if","next":"c}","parent":"iQ","inputs":{"CONDITION":[2,"ao="],"SUBSTACK":[2,"P8"]},"fields":{},"shadow":false,"topLevel":false},"ao=":{"opcode":"operator_equals","next":null,"parent":"c|","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P8":{"opcode":"data_setvariableto","next":"T6","parent":"c|","inputs":{"VALUE":[1,[10,"80000"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T6":{"opcode":"control_stop","next":null,"parent":"P8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c}":{"opcode":"control_if","next":"c~","parent":"c|","inputs":{"CONDITION":[2,"ao?"],"SUBSTACK":[2,"P9"]},"fields":{},"shadow":false,"topLevel":false},"ao?":{"opcode":"operator_equals","next":null,"parent":"c}","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P9":{"opcode":"data_changevariableby","next":"KO","parent":"c}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KO":{"opcode":"data_setvariableto","next":"KP","parent":"P9","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KP":{"opcode":"procedures_call","next":"da","parent":"KO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"da":{"opcode":"data_setvariableto","next":"KQ","parent":"KP","inputs":{"VALUE":[3,"KR",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KR":{"opcode":"operator_mod","next":null,"parent":"da","inputs":{"NUM1":[3,"T7",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T7":{"opcode":"operator_add","next":null,"parent":"KR","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"KQ":{"opcode":"procedures_call","next":"KS","parent":"da","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"KS":{"opcode":"data_setvariableto","next":"#","parent":"KQ","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"#":{"opcode":"control_if_else","next":"KT","parent":"KS","inputs":{"CONDITION":[2,"KU"],"SUBSTACK":[2,"T8"],"SUBSTACK2":[2,"T9"]},"fields":{},"shadow":false,"topLevel":false},"KU":{"opcode":"operator_equals","next":null,"parent":"#","inputs":{"OPERAND1":[3,"T!",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T!":{"opcode":"operator_mod","next":null,"parent":"KU","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T8":{"opcode":"data_changevariableby","next":null,"parent":"#","inputs":{"VALUE":[1,[4,"-255"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T9":{"opcode":"data_changevariableby","next":null,"parent":"#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KT":{"opcode":"procedures_call","next":"db","parent":"#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"db":{"opcode":"data_setvariableto","next":"T#","parent":"KT","inputs":{"VALUE":[3,"KV",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KV":{"opcode":"operator_add","next":null,"parent":"db","inputs":{"NUM1":[3,"T%",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T%":{"opcode":"operator_multiply","next":null,"parent":"KV","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T#":{"opcode":"control_stop","next":null,"parent":"db","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c~":{"opcode":"control_if","next":"dc","parent":"c}","inputs":{"CONDITION":[2,"ao@"],"SUBSTACK":[2,"P!"]},"fields":{},"shadow":false,"topLevel":false},"ao@":{"opcode":"operator_equals","next":null,"parent":"c~","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P!":{"opcode":"data_changevariableby","next":"KW","parent":"c~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KW":{"opcode":"data_setvariableto","next":"T(","parent":"P!","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T(":{"opcode":"control_stop","next":null,"parent":"KW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dc":{"opcode":"control_if","next":"dd","parent":"c~","inputs":{"CONDITION":[2,"ao["],"SUBSTACK":[2,"P#"]},"fields":{},"shadow":false,"topLevel":false},"ao[":{"opcode":"operator_equals","next":null,"parent":"dc","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"P#":{"opcode":"data_changevariableby","next":"KX","parent":"dc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KX":{"opcode":"data_setvariableto","next":"T)","parent":"P#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"T)":{"opcode":"control_stop","next":null,"parent":"KX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dd":{"opcode":"control_if","next":"de","parent":"dc","inputs":{"CONDITION":[2,"ao]"],"SUBSTACK":[2,"P%"]},"fields":{},"shadow":false,"topLevel":false},"ao]":{"opcode":"operator_equals","next":null,"parent":"dd","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"P%":{"opcode":"data_changevariableby","next":"KY","parent":"dd","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KY":{"opcode":"data_setvariableto","next":"KZ","parent":"P%","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"KZ":{"opcode":"data_changevariableby","next":"K0","parent":"KY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K0":{"opcode":"procedures_call","next":"df","parent":"KZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"df":{"opcode":"data_setvariableto","next":"T*","parent":"K0","inputs":{"VALUE":[3,"K1",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K1":{"opcode":"operator_add","next":null,"parent":"df","inputs":{"NUM1":[3,"T+",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T+":{"opcode":"operator_multiply","next":null,"parent":"K1","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T*":{"opcode":"control_stop","next":null,"parent":"df","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"de":{"opcode":"control_if","next":"dg","parent":"dd","inputs":{"CONDITION":[2,"ao^"],"SUBSTACK":[2,"P("]},"fields":{},"shadow":false,"topLevel":false},"ao^":{"opcode":"operator_equals","next":null,"parent":"de","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"P(":{"opcode":"data_changevariableby","next":"K2","parent":"de","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K2":{"opcode":"data_setvariableto","next":"K3","parent":"P(","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K3":{"opcode":"procedures_call","next":"K4","parent":"K2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K4":{"opcode":"data_setvariableto","next":"dh","parent":"K3","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"dh":{"opcode":"data_setvariableto","next":"K5","parent":"K4","inputs":{"VALUE":[3,"K6",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K6":{"opcode":"operator_mod","next":null,"parent":"dh","inputs":{"NUM1":[3,"T,",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T,":{"opcode":"operator_add","next":null,"parent":"K6","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"K5":{"opcode":"procedures_call","next":"K7","parent":"dh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K7":{"opcode":"data_changevariableby","next":"iR","parent":"K5","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iR":{"opcode":"data_setvariableto","next":"a;","parent":"K7","inputs":{"VALUE":[3,"di",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"di":{"opcode":"operator_add","next":null,"parent":"iR","inputs":{"NUM1":[3,"T-",[4,0]],"NUM2":[3,"T.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T-":{"opcode":"operator_multiply","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T.":{"opcode":"operator_mod","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a;":{"opcode":"control_if","next":"ao_","parent":"iR","inputs":{"CONDITION":[2,"iS"],"SUBSTACK":[2,"P)"]},"fields":{},"shadow":false,"topLevel":false},"iS":{"opcode":"operator_or","next":null,"parent":"a;","inputs":{"OPERAND1":[2,"T/"],"OPERAND2":[2,"T:"]},"fields":{},"shadow":false,"topLevel":false},"T/":{"opcode":"operator_gt","next":null,"parent":"iS","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T:":{"opcode":"operator_equals","next":null,"parent":"iS","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P)":{"opcode":"procedures_call","next":"dj","parent":"a;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dj":{"opcode":"control_if","next":null,"parent":"P)","inputs":{"CONDITION":[2,"T;"],"SUBSTACK":[2,"K8"]},"fields":{},"shadow":false,"topLevel":false},"T;":{"opcode":"operator_gt","next":null,"parent":"dj","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K8":{"opcode":"data_setvariableto","next":null,"parent":"dj","inputs":{"VALUE":[3,"K9",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K9":{"opcode":"operator_mod","next":null,"parent":"K8","inputs":{"NUM1":[3,"T=",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"T=":{"opcode":"operator_add","next":null,"parent":"K9","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao_":{"opcode":"control_stop","next":null,"parent":"a;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dg":{"opcode":"control_if","next":"dk","parent":"de","inputs":{"CONDITION":[2,"ao`"],"SUBSTACK":[2,"P*"]},"fields":{},"shadow":false,"topLevel":false},"ao`":{"opcode":"operator_equals","next":null,"parent":"dg","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"P*":{"opcode":"data_changevariableby","next":"K!","parent":"dg","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K!":{"opcode":"data_setvariableto","next":"K#","parent":"P*","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K#":{"opcode":"procedures_call","next":"dl","parent":"K!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dl":{"opcode":"data_setvariableto","next":"T?","parent":"K#","inputs":{"VALUE":[3,"K%",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K%":{"opcode":"operator_mod","next":null,"parent":"dl","inputs":{"NUM1":[3,"T@",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T@":{"opcode":"operator_add","next":null,"parent":"K%","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T?":{"opcode":"control_stop","next":null,"parent":"dl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dk":{"opcode":"control_if","next":"dm","parent":"dg","inputs":{"CONDITION":[2,"ao{"],"SUBSTACK":[2,"P+"]},"fields":{},"shadow":false,"topLevel":false},"ao{":{"opcode":"operator_equals","next":null,"parent":"dk","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"P+":{"opcode":"data_changevariableby","next":"K(","parent":"dk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K(":{"opcode":"data_setvariableto","next":"K)","parent":"P+","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K)":{"opcode":"data_changevariableby","next":"K*","parent":"K(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K*":{"opcode":"procedures_call","next":"K+","parent":"K)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K+":{"opcode":"data_changevariableby","next":"iT","parent":"K*","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iT":{"opcode":"data_setvariableto","next":"a=","parent":"K+","inputs":{"VALUE":[3,"dn",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"dn":{"opcode":"operator_add","next":null,"parent":"iT","inputs":{"NUM1":[3,"T[",[4,0]],"NUM2":[3,"T]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T[":{"opcode":"operator_multiply","next":null,"parent":"dn","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T]":{"opcode":"operator_mod","next":null,"parent":"dn","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a=":{"opcode":"control_if","next":"ao|","parent":"iT","inputs":{"CONDITION":[2,"iU"],"SUBSTACK":[2,"P,"]},"fields":{},"shadow":false,"topLevel":false},"iU":{"opcode":"operator_or","next":null,"parent":"a=","inputs":{"OPERAND1":[2,"T^"],"OPERAND2":[2,"T_"]},"fields":{},"shadow":false,"topLevel":false},"T^":{"opcode":"operator_gt","next":null,"parent":"iU","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T_":{"opcode":"operator_equals","next":null,"parent":"iU","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P,":{"opcode":"procedures_call","next":"do","parent":"a=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"do":{"opcode":"control_if","next":null,"parent":"P,","inputs":{"CONDITION":[2,"T`"],"SUBSTACK":[2,"K,"]},"fields":{},"shadow":false,"topLevel":false},"T`":{"opcode":"operator_gt","next":null,"parent":"do","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K,":{"opcode":"data_setvariableto","next":null,"parent":"do","inputs":{"VALUE":[3,"K-",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K-":{"opcode":"operator_mod","next":null,"parent":"K,","inputs":{"NUM1":[3,"T{",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"T{":{"opcode":"operator_add","next":null,"parent":"K-","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao|":{"opcode":"control_stop","next":null,"parent":"a=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dm":{"opcode":"control_if","next":"dp","parent":"dk","inputs":{"CONDITION":[2,"ao}"],"SUBSTACK":[2,"P-"]},"fields":{},"shadow":false,"topLevel":false},"ao}":{"opcode":"operator_equals","next":null,"parent":"dm","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"P-":{"opcode":"data_changevariableby","next":"K.","parent":"dm","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K.":{"opcode":"data_setvariableto","next":"K/","parent":"P-","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K/":{"opcode":"data_changevariableby","next":"K:","parent":"K.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K:":{"opcode":"procedures_call","next":"K;","parent":"K/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K;":{"opcode":"data_changevariableby","next":"iV","parent":"K:","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iV":{"opcode":"data_setvariableto","next":"a?","parent":"K;","inputs":{"VALUE":[3,"dq",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"dq":{"opcode":"operator_add","next":null,"parent":"iV","inputs":{"NUM1":[3,"T|",[4,0]],"NUM2":[3,"T}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"T|":{"opcode":"operator_multiply","next":null,"parent":"dq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T}":{"opcode":"operator_mod","next":null,"parent":"dq","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a?":{"opcode":"control_if","next":"ao~","parent":"iV","inputs":{"CONDITION":[2,"iW"],"SUBSTACK":[2,"P."]},"fields":{},"shadow":false,"topLevel":false},"iW":{"opcode":"operator_or","next":null,"parent":"a?","inputs":{"OPERAND1":[2,"T~"],"OPERAND2":[2,"Ua"]},"fields":{},"shadow":false,"topLevel":false},"T~":{"opcode":"operator_gt","next":null,"parent":"iW","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Ua":{"opcode":"operator_equals","next":null,"parent":"iW","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P.":{"opcode":"procedures_call","next":"dr","parent":"a?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dr":{"opcode":"control_if","next":null,"parent":"P.","inputs":{"CONDITION":[2,"Ub"],"SUBSTACK":[2,"K="]},"fields":{},"shadow":false,"topLevel":false},"Ub":{"opcode":"operator_gt","next":null,"parent":"dr","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K=":{"opcode":"data_setvariableto","next":null,"parent":"dr","inputs":{"VALUE":[3,"K?",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K?":{"opcode":"operator_mod","next":null,"parent":"K=","inputs":{"NUM1":[3,"Uc",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Uc":{"opcode":"operator_add","next":null,"parent":"K?","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao~":{"opcode":"control_stop","next":null,"parent":"a?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dp":{"opcode":"control_if","next":"ds","parent":"dm","inputs":{"CONDITION":[2,"apa"],"SUBSTACK":[2,"P/"]},"fields":{},"shadow":false,"topLevel":false},"apa":{"opcode":"operator_equals","next":null,"parent":"dp","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"P/":{"opcode":"data_changevariableby","next":"aC","parent":"dp","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aC":{"opcode":"control_if_else","next":"Ud","parent":"P/","inputs":{"CONDITION":[2,"Ue"],"SUBSTACK":[2,"Uf"],"SUBSTACK2":[2,"a@"]},"fields":{},"shadow":false,"topLevel":false},"Ue":{"opcode":"operator_equals","next":null,"parent":"aC","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Uf":{"opcode":"data_setvariableto","next":null,"parent":"aC","inputs":{"VALUE":[1,[10,"-128"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a@":{"opcode":"control_if_else","next":null,"parent":"aC","inputs":{"CONDITION":[2,"apb"],"SUBSTACK":[2,"P:"],"SUBSTACK2":[2,"apc"]},"fields":{},"shadow":false,"topLevel":false},"apb":{"opcode":"operator_gt","next":null,"parent":"a@","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"P:":{"opcode":"data_setvariableto","next":null,"parent":"a@","inputs":{"VALUE":[3,"Ug",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Ug":{"opcode":"operator_mod","next":null,"parent":"P:","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"apc":{"opcode":"data_setvariableto","next":null,"parent":"a@","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Ud":{"opcode":"control_stop","next":null,"parent":"aC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ds":{"opcode":"control_if","next":"b`","parent":"dp","inputs":{"CONDITION":[2,"apd"],"SUBSTACK":[2,"P;"]},"fields":{},"shadow":false,"topLevel":false},"apd":{"opcode":"operator_equals","next":null,"parent":"ds","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"P;":{"opcode":"data_changevariableby","next":"K@","parent":"ds","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K@":{"opcode":"data_setvariableto","next":"K[","parent":"P;","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K[":{"opcode":"procedures_call","next":"dt","parent":"K@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dt":{"opcode":"data_setvariableto","next":"Uh","parent":"K[","inputs":{"VALUE":[3,"K]",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K]":{"opcode":"operator_mod","next":null,"parent":"dt","inputs":{"NUM1":[3,"Ui",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ui":{"opcode":"operator_add","next":null,"parent":"K]","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Uh":{"opcode":"control_stop","next":null,"parent":"dt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b`":{"opcode":"control_if","next":"iX","parent":"ds","inputs":{"CONDITION":[2,"ape"],"SUBSTACK":[2,"P="]},"fields":{},"shadow":false,"topLevel":false},"ape":{"opcode":"operator_equals","next":null,"parent":"b`","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"P=":{"opcode":"data_changevariableby","next":"K^","parent":"b`","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K^":{"opcode":"data_setvariableto","next":"K_","parent":"P=","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K_":{"opcode":"data_changevariableby","next":"K`","parent":"K^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K`":{"opcode":"procedures_call","next":"du","parent":"K_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"du":{"opcode":"data_setvariableto","next":"K{","parent":"K`","inputs":{"VALUE":[3,"K|",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K|":{"opcode":"operator_add","next":null,"parent":"du","inputs":{"NUM1":[3,"Uj",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Uj":{"opcode":"operator_multiply","next":null,"parent":"K|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"K{":{"opcode":"procedures_call","next":"K}","parent":"du","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K}":{"opcode":"data_setvariableto","next":"%","parent":"K{","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"%":{"opcode":"control_if_else","next":"K~","parent":"K}","inputs":{"CONDITION":[2,"La"],"SUBSTACK":[2,"Uk"],"SUBSTACK2":[2,"Ul"]},"fields":{},"shadow":false,"topLevel":false},"La":{"opcode":"operator_equals","next":null,"parent":"%","inputs":{"OPERAND1":[3,"Um",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Um":{"opcode":"operator_mod","next":null,"parent":"La","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Uk":{"opcode":"data_changevariableby","next":null,"parent":"%","inputs":{"VALUE":[1,[4,"-255"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"Ul":{"opcode":"data_changevariableby","next":null,"parent":"%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K~":{"opcode":"procedures_call","next":"dv","parent":"%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dv":{"opcode":"data_setvariableto","next":"Un","parent":"K~","inputs":{"VALUE":[3,"Lb",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"Lb":{"opcode":"operator_add","next":null,"parent":"dv","inputs":{"NUM1":[3,"Uo",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Uo":{"opcode":"operator_multiply","next":null,"parent":"Lb","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Un":{"opcode":"control_stop","next":null,"parent":"dv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iX":{"opcode":"control_if","next":null,"parent":"b`","inputs":{"CONDITION":[2,"Up"],"SUBSTACK":[2,"Lc"]},"fields":{},"shadow":false,"topLevel":false},"Up":{"opcode":"operator_equals","next":null,"parent":"iX","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"Lc":{"opcode":"sensing_askandwait","next":"Uq","parent":"iX","inputs":{"QUESTION":[1,[10,"CPU halted"]]},"fields":{},"shadow":false,"topLevel":false},"Uq":{"opcode":"control_stop","next":null,"parent":"Lc","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a@3":{"opcode":"event_whenbroadcastreceived","next":"apf","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":48,"y":3048},"apf":{"opcode":"data_deletealloflist","next":"apg","parent":"a@3","inputs":{},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"apg":{"opcode":"data_deletealloflist","next":"aph","parent":"apf","inputs":{},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aph":{"opcode":"data_deletealloflist","next":"api","parent":"apg","inputs":{},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"api":{"opcode":"data_deletealloflist","next":"apj","parent":"aph","inputs":{},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"apj":{"opcode":"data_deletealloflist","next":"apk","parent":"api","inputs":{},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"apk":{"opcode":"data_deletealloflist","next":"apl","parent":"apj","inputs":{},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"apl":{"opcode":"data_deletealloflist","next":"apm","parent":"apk","inputs":{},"fields":{"LIST":["!trace","T$5A;?z~P`Hle{DQ-4sz"]},"shadow":false,"topLevel":false},"apm":{"opcode":"data_deletealloflist","next":"apn","parent":"apl","inputs":{},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"apn":{"opcode":"data_deletealloflist","next":"apo","parent":"apm","inputs":{},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"apo":{"opcode":"data_deletealloflist","next":"app","parent":"apn","inputs":{},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"app":{"opcode":"data_deletealloflist","next":"apq","parent":"apo","inputs":{},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"apq":{"opcode":"data_deletealloflist","next":"apr","parent":"app","inputs":{},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"apr":{"opcode":"data_deletealloflist","next":"aps","parent":"apq","inputs":{},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"aps":{"opcode":"data_deletealloflist","next":"apt","parent":"apr","inputs":{},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"apt":{"opcode":"data_deletealloflist","next":"apu","parent":"aps","inputs":{},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"apu":{"opcode":"data_deletealloflist","next":"apv","parent":"apt","inputs":{},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"apv":{"opcode":"data_deletealloflist","next":"apw","parent":"apu","inputs":{},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"apw":{"opcode":"data_deletealloflist","next":"apx","parent":"apv","inputs":{},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"apx":{"opcode":"data_deletealloflist","next":"apy","parent":"apw","inputs":{},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"apy":{"opcode":"data_deletealloflist","next":"apz","parent":"apx","inputs":{},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"apz":{"opcode":"data_deletealloflist","next":"apA","parent":"apy","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"apA":{"opcode":"data_deletealloflist","next":"apB","parent":"apz","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"a@4":{"opcode":"data_setvariableto","next":null,"parent":"apB","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["battery","H0q(Yr;S8emYQ`u=.co}"]},"shadow":false,"topLevel":false},"apC":{"opcode":"procedures_definition","next":"apD","parent":null,"inputs":{"custom_block":[1,"a@5"]},"fields":{},"shadow":false,"topLevel":true,"x":8483,"y":1244},"a@5":{"opcode":"procedures_prototype","next":null,"parent":"apC","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"apD":{"opcode":"data_deletealloflist","next":"apE","parent":"apC","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"apE":{"opcode":"data_deletealloflist","next":"apF","parent":"apD","inputs":{},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"apF":{"opcode":"data_deletealloflist","next":"Ld","parent":"apE","inputs":{},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"Ld":{"opcode":"control_repeat","next":"Le","parent":"apF","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"Lf"]},"fields":{},"shadow":false,"topLevel":false},"Lf":{"opcode":"data_addtolist","next":"apG","parent":"Ld","inputs":{"ITEM":[3,"apH",[10,""]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"apH":{"opcode":"data_itemoflist","next":null,"parent":"Lf","inputs":{"INDEX":[3,"a@6",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"a@6":{"opcode":"operator_random","next":null,"parent":"apH","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"apG":{"opcode":"data_addtolist","next":null,"parent":"Lf","inputs":{"ITEM":[3,"apI",[10,""]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"apI":{"opcode":"data_itemoflist","next":null,"parent":"apG","inputs":{"INDEX":[3,"a@7",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"a@7":{"opcode":"operator_random","next":null,"parent":"apI","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Le":{"opcode":"data_setvariableto","next":"apJ","parent":"Ld","inputs":{"VALUE":[3,"a@8",[10,""]]},"fields":{"VARIABLE":["bg_color","~s-a1kNvmHy%k|6}Y3^~"]},"shadow":false,"topLevel":false},"a@8":{"opcode":"data_itemoflist","next":null,"parent":"Le","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"apJ":{"opcode":"data_deletealloflist","next":"apK","parent":"Le","inputs":{},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"apK":{"opcode":"data_deletealloflist","next":"apL","parent":"apJ","inputs":{},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"apL":{"opcode":"data_deletealloflist","next":"apM","parent":"apK","inputs":{},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"apM":{"opcode":"data_deletealloflist","next":"Lg","parent":"apL","inputs":{},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"Lg":{"opcode":"control_repeat","next":"apN","parent":"apM","inputs":{"TIMES":[1,[6,"1024"]],"SUBSTACK":[2,"apO"]},"fields":{},"shadow":false,"topLevel":false},"apO":{"opcode":"data_addtolist","next":"apP","parent":"Lg","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"apP":{"opcode":"data_addtolist","next":"apQ","parent":"apO","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"apQ":{"opcode":"data_addtolist","next":"a@9","parent":"apP","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"a@9":{"opcode":"data_addtolist","next":null,"parent":"apQ","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"apN":{"opcode":"data_deletealloflist","next":"apR","parent":"Lg","inputs":{},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"apR":{"opcode":"data_deletealloflist","next":"apS","parent":"apN","inputs":{},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"apS":{"opcode":"data_deletealloflist","next":"apT","parent":"apR","inputs":{},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"apT":{"opcode":"data_deletealloflist","next":"Lh","parent":"apS","inputs":{},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Lh":{"opcode":"control_repeat","next":"apU","parent":"apT","inputs":{"TIMES":[1,[6,"960"]],"SUBSTACK":[2,"apV"]},"fields":{},"shadow":false,"topLevel":false},"apV":{"opcode":"data_addtolist","next":"apW","parent":"Lh","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"apW":{"opcode":"data_addtolist","next":"apX","parent":"apV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"apX":{"opcode":"data_addtolist","next":"a@!","parent":"apW","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"a@!":{"opcode":"data_addtolist","next":null,"parent":"apX","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"apU":{"opcode":"data_deletealloflist","next":"Li","parent":"Lh","inputs":{},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"Li":{"opcode":"control_repeat","next":"a@#","parent":"apU","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"a@%"]},"fields":{},"shadow":false,"topLevel":false},"a@%":{"opcode":"data_addtolist","next":null,"parent":"Li","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"a@#":{"opcode":"data_deletealloflist","next":null,"parent":"Li","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"a@(":{"opcode":"event_whenbroadcastreceived","next":"apY","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":8483,"y":64},"apY":{"opcode":"data_setvariableto","next":"apZ","parent":"a@(","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"apZ":{"opcode":"data_setvariableto","next":"ap0","parent":"apY","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"ap0":{"opcode":"data_setvariableto","next":"ap1","parent":"apZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"]},"shadow":false,"topLevel":false},"ap1":{"opcode":"data_setvariableto","next":"ap2","parent":"ap0","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@vram_incr","|,-0zY+!?.Wa?z)q2;cN"]},"shadow":false,"topLevel":false},"ap2":{"opcode":"data_setvariableto","next":"ap3","parent":"ap1","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"]},"shadow":false,"topLevel":false},"ap3":{"opcode":"data_setvariableto","next":"ap4","parent":"ap2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bg_pattern","vTq-oq{gvgqfjW3L4iSt"]},"shadow":false,"topLevel":false},"ap4":{"opcode":"data_setvariableto","next":"ap5","parent":"ap3","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_size","6-5_Tcd.JImB^+U#4bLB"]},"shadow":false,"topLevel":false},"ap5":{"opcode":"data_setvariableto","next":"ap6","parent":"ap4","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_enabled","2j/RBbii5O{|d#5d)@hc"]},"shadow":false,"topLevel":false},"ap6":{"opcode":"data_setvariableto","next":"ap7","parent":"ap5","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"ap7":{"opcode":"data_setvariableto","next":"ap8","parent":"ap6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@mask_bg","rp0u9foKc3@?]%7O5HRb"]},"shadow":false,"topLevel":false},"ap8":{"opcode":"data_setvariableto","next":"ap9","parent":"ap7","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"]},"shadow":false,"topLevel":false},"ap9":{"opcode":"data_setvariableto","next":"ap!","parent":"ap8","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@render_bg","~C;tFyLG;WJlq~1ZPX1f"]},"shadow":false,"topLevel":false},"ap!":{"opcode":"data_setvariableto","next":"ap#","parent":"ap9","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@render_sprite","xu#/+b%vNGX}5y8HCFJ#"]},"shadow":false,"topLevel":false},"ap#":{"opcode":"data_setvariableto","next":"ap%","parent":"ap!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["render_enabled","kG=l#K?vQ345t{T6HPPz"]},"shadow":false,"topLevel":false},"ap%":{"opcode":"data_setvariableto","next":"ap(","parent":"ap#","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ap(":{"opcode":"data_setvariableto","next":"ap)","parent":"ap%","inputs":{"VALUE":[1,[10,"00000000"]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"ap)":{"opcode":"data_setvariableto","next":"ap*","parent":"ap(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"ap*":{"opcode":"data_setvariableto","next":"ap+","parent":"ap)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"ap+":{"opcode":"data_setvariableto","next":"ap,","parent":"ap*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"ap,":{"opcode":"data_setvariableto","next":"Lj","parent":"ap+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Lj":{"opcode":"data_setvariableto","next":"a@)","parent":"ap,","inputs":{"VALUE":[3,"a@*",[10,""]]},"fields":{"VARIABLE":["@lastframe","n;0UExIQMoO!Lz=!vPek"]},"shadow":false,"topLevel":false},"a@*":{"opcode":"sensing_dayssince2000","next":null,"parent":"Lj","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a@)":{"opcode":"procedures_call","next":null,"parent":"Lj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@init","argumentids":"[]","warp":"true"}},"ap-":{"opcode":"procedures_definition","next":"ap.","parent":null,"inputs":{"custom_block":[1,"a@+"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":64},"a@+":{"opcode":"procedures_prototype","next":null,"parent":"ap-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw bg line","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"false\",\"false\"]","warp":"true"}},"ap.":{"opcode":"data_setvariableto","next":"ap/","parent":"ap-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"ap/":{"opcode":"control_repeat","next":null,"parent":"ap.","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"ap:"]},"fields":{},"shadow":false,"topLevel":false},"ap:":{"opcode":"data_changevariableby","next":"b{","parent":"ap/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"b{":{"opcode":"control_if_else","next":null,"parent":"ap:","inputs":{"CONDITION":[2,"iY"],"SUBSTACK":[2,"ap;"],"SUBSTACK2":[2,"P?"]},"fields":{},"shadow":false,"topLevel":false},"iY":{"opcode":"operator_or","next":null,"parent":"b{","inputs":{"OPERAND1":[2,"Lk"],"OPERAND2":[2,"dw"]},"fields":{},"shadow":false,"topLevel":false},"Lk":{"opcode":"operator_equals","next":null,"parent":"iY","inputs":{"OPERAND1":[3,"Ur",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ur":{"opcode":"operator_letter_of","next":null,"parent":"Lk","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"dw":{"opcode":"operator_and","next":null,"parent":"iY","inputs":{"OPERAND1":[2,"Us"],"OPERAND2":[2,"Ll"]},"fields":{},"shadow":false,"topLevel":false},"Us":{"opcode":"operator_equals","next":null,"parent":"dw","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ll":{"opcode":"operator_lt","next":null,"parent":"dw","inputs":{"OPERAND1":[3,"Lm",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Lm":{"opcode":"operator_mod","next":null,"parent":"Ll","inputs":{"NUM1":[3,"Ut",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ut":{"opcode":"data_lengthoflist","next":null,"parent":"Lm","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"ap;":{"opcode":"data_addtolist","next":null,"parent":"b{","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P?":{"opcode":"data_addtolist","next":null,"parent":"b{","inputs":{"ITEM":[3,"Ln",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ln":{"opcode":"data_itemoflist","next":null,"parent":"P?","inputs":{"INDEX":[3,"Lo",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Lo":{"opcode":"operator_add","next":null,"parent":"Ln","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"Uu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Uu":{"opcode":"operator_letter_of","next":null,"parent":"Lo","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap=":{"opcode":"procedures_definition","next":"ap?","parent":null,"inputs":{"custom_block":[1,"a@,"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":644},"a@,":{"opcode":"procedures_prototype","next":null,"parent":"ap=","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped left","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ap?":{"opcode":"data_setvariableto","next":"dx","parent":"ap=","inputs":{"VALUE":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"dx":{"opcode":"control_if","next":"iZ","parent":"ap?","inputs":{"CONDITION":[2,"ap@"],"SUBSTACK":[2,"b|"]},"fields":{},"shadow":false,"topLevel":false},"ap@":{"opcode":"operator_equals","next":null,"parent":"dx","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"b|":{"opcode":"control_repeat","next":"ap[","parent":"dx","inputs":{"TIMES":[3,"ap]",[6,0]],"SUBSTACK":[2,"ap^"]},"fields":{},"shadow":false,"topLevel":false},"ap]":{"opcode":"operator_subtract","next":null,"parent":"b|","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ap^":{"opcode":"data_addtolist","next":null,"parent":"b|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"ap[":{"opcode":"control_stop","next":null,"parent":"b|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iZ":{"opcode":"control_repeat","next":null,"parent":"dx","inputs":{"TIMES":[3,"Uv",[6,0]],"SUBSTACK":[2,"P@"]},"fields":{},"shadow":false,"topLevel":false},"Uv":{"opcode":"operator_subtract","next":null,"parent":"iZ","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"P@":{"opcode":"data_changevariableby","next":"a[","parent":"iZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"a[":{"opcode":"control_if_else","next":null,"parent":"P@","inputs":{"CONDITION":[2,"P["],"SUBSTACK":[2,"ap_"],"SUBSTACK2":[2,"P]"]},"fields":{},"shadow":false,"topLevel":false},"P[":{"opcode":"operator_equals","next":null,"parent":"a[","inputs":{"OPERAND1":[3,"Uw",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uw":{"opcode":"operator_letter_of","next":null,"parent":"P[","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap_":{"opcode":"data_addtolist","next":null,"parent":"a[","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P]":{"opcode":"data_addtolist","next":null,"parent":"a[","inputs":{"ITEM":[3,"Lp",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Lp":{"opcode":"data_itemoflist","next":null,"parent":"P]","inputs":{"INDEX":[3,"Lq",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Lq":{"opcode":"operator_add","next":null,"parent":"Lp","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"Ux",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ux":{"opcode":"operator_letter_of","next":null,"parent":"Lq","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap`":{"opcode":"procedures_definition","next":"ap{","parent":null,"inputs":{"custom_block":[1,"a@-"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":1488},"a@-":{"opcode":"procedures_prototype","next":null,"parent":"ap`","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ap{":{"opcode":"data_setvariableto","next":"ap|","parent":"ap`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"ap|":{"opcode":"control_repeat","next":null,"parent":"ap{","inputs":{"TIMES":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[6,0]],"SUBSTACK":[2,"ap}"]},"fields":{},"shadow":false,"topLevel":false},"ap}":{"opcode":"data_changevariableby","next":"b}","parent":"ap|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"b}":{"opcode":"control_if_else","next":null,"parent":"ap}","inputs":{"CONDITION":[2,"P^"],"SUBSTACK":[2,"ap~"],"SUBSTACK2":[2,"P_"]},"fields":{},"shadow":false,"topLevel":false},"P^":{"opcode":"operator_equals","next":null,"parent":"b}","inputs":{"OPERAND1":[3,"Uy",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uy":{"opcode":"operator_letter_of","next":null,"parent":"P^","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap~":{"opcode":"data_addtolist","next":null,"parent":"b}","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P_":{"opcode":"data_addtolist","next":null,"parent":"b}","inputs":{"ITEM":[3,"Lr",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Lr":{"opcode":"data_itemoflist","next":null,"parent":"P_","inputs":{"INDEX":[3,"Ls",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Ls":{"opcode":"operator_add","next":null,"parent":"Lr","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"Uz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Uz":{"opcode":"operator_letter_of","next":null,"parent":"Ls","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aqa":{"opcode":"procedures_definition","next":"Lt","parent":null,"inputs":{"custom_block":[1,"a@."]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":2052},"a@.":{"opcode":"procedures_prototype","next":null,"parent":"aqa","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw sprite line","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Lt":{"opcode":"data_setvariableto","next":"i0","parent":"aqa","inputs":{"VALUE":[3,"a@/",[10,""]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"a@/":{"opcode":"operator_multiply","next":null,"parent":"Lt","inputs":{"NUM1":[3,[12,"@hflip","O-XGEJrBMMOorrV6rRfY"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"i0":{"opcode":"control_if_else","next":"aqb","parent":"Lt","inputs":{"CONDITION":[2,"a@:"],"SUBSTACK":[2,"Lu"],"SUBSTACK2":[2,"Lv"]},"fields":{},"shadow":false,"topLevel":false},"a@:":{"opcode":"operator_gt","next":null,"parent":"i0","inputs":{"OPERAND1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Lu":{"opcode":"data_setvariableto","next":"a@;","parent":"i0","inputs":{"VALUE":[3,"Lw",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"Lw":{"opcode":"operator_add","next":null,"parent":"Lu","inputs":{"NUM1":[3,"a@=",[4,0]],"NUM2":[3,"aqc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@=":{"opcode":"operator_multiply","next":null,"parent":"Lw","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aqc":{"opcode":"operator_multiply","next":null,"parent":"Lw","inputs":{"NUM1":[3,"Lx",[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"Lx":{"opcode":"operator_mod","next":null,"parent":"aqc","inputs":{"NUM1":[3,"aqd",[4,0]],"NUM2":[3,"a@?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqd":{"opcode":"operator_add","next":null,"parent":"Lx","inputs":{"NUM1":[3,"aqe",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aqe":{"opcode":"operator_subtract","next":null,"parent":"aqd","inputs":{"NUM1":[3,"a@@",[4,0]],"NUM2":[3,[12,"@sprite_y","y`PaeB/{^[+=lUi~^f35"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@@":{"opcode":"operator_subtract","next":null,"parent":"aqe","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@?":{"opcode":"operator_multiply","next":null,"parent":"Lx","inputs":{"NUM1":[1,[4,"-8"]],"NUM2":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@;":{"opcode":"procedures_call","next":null,"parent":"Lu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"Lv":{"opcode":"data_setvariableto","next":"a@[","parent":"i0","inputs":{"VALUE":[3,"Ly",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"Ly":{"opcode":"operator_add","next":null,"parent":"Lv","inputs":{"NUM1":[3,"a@]",[4,0]],"NUM2":[3,"aqf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@]":{"opcode":"operator_multiply","next":null,"parent":"Ly","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aqf":{"opcode":"operator_subtract","next":null,"parent":"Ly","inputs":{"NUM1":[3,"a@^",[4,0]],"NUM2":[3,[12,"@sprite_y","y`PaeB/{^[+=lUi~^f35"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@^":{"opcode":"operator_subtract","next":null,"parent":"aqf","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@[":{"opcode":"procedures_call","next":null,"parent":"Lv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"aqb":{"opcode":"control_repeat","next":null,"parent":"i0","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"Lz"]},"fields":{},"shadow":false,"topLevel":false},"Lz":{"opcode":"data_changevariableby","next":"aqg","parent":"aqb","inputs":{"VALUE":[3,"aqh",[4,0]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"aqh":{"opcode":"operator_subtract","next":null,"parent":"Lz","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a@_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a@_":{"opcode":"operator_multiply","next":null,"parent":"aqh","inputs":{"NUM1":[3,[12,"@hflip","O-XGEJrBMMOorrV6rRfY"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aqg":{"opcode":"data_changevariableby","next":"LA","parent":"Lz","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@sprite_x","*`+18/=FU3Ni:/*T,!l("]},"shadow":false,"topLevel":false},"LA":{"opcode":"control_if","next":null,"parent":"aqg","inputs":{"CONDITION":[2,"aqi"],"SUBSTACK":[2,"dy"]},"fields":{},"shadow":false,"topLevel":false},"aqi":{"opcode":"operator_not","next":null,"parent":"LA","inputs":{"OPERAND":[2,"LB"]},"fields":{},"shadow":false,"topLevel":false},"LB":{"opcode":"operator_or","next":null,"parent":"aqi","inputs":{"OPERAND1":[2,"aqj"],"OPERAND2":[2,"LC"]},"fields":{},"shadow":false,"topLevel":false},"aqj":{"opcode":"operator_equals","next":null,"parent":"LB","inputs":{"OPERAND1":[3,"a@`",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@`":{"opcode":"operator_letter_of","next":null,"parent":"aqj","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"LC":{"opcode":"operator_and","next":null,"parent":"LB","inputs":{"OPERAND1":[2,"a@{"],"OPERAND2":[2,"a@|"]},"fields":{},"shadow":false,"topLevel":false},"a@{":{"opcode":"operator_equals","next":null,"parent":"LC","inputs":{"OPERAND1":[3,[12,"@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@|":{"opcode":"operator_lt","next":null,"parent":"LC","inputs":{"OPERAND1":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"dy":{"opcode":"control_if","next":"b~","parent":"LA","inputs":{"CONDITION":[2,"i1"],"SUBSTACK":[2,"aqk"]},"fields":{},"shadow":false,"topLevel":false},"i1":{"opcode":"operator_and","next":null,"parent":"dy","inputs":{"OPERAND1":[2,"UA"],"OPERAND2":[2,"dz"]},"fields":{},"shadow":false,"topLevel":false},"UA":{"opcode":"operator_equals","next":null,"parent":"i1","inputs":{"OPERAND1":[3,[12,"@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"dz":{"opcode":"operator_and","next":null,"parent":"i1","inputs":{"OPERAND1":[2,"UB"],"OPERAND2":[2,"dA"]},"fields":{},"shadow":false,"topLevel":false},"UB":{"opcode":"operator_lt","next":null,"parent":"dz","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"dA":{"opcode":"operator_and","next":null,"parent":"dz","inputs":{"OPERAND1":[2,"UC"],"OPERAND2":[2,"LD"]},"fields":{},"shadow":false,"topLevel":false},"UC":{"opcode":"operator_lt","next":null,"parent":"dA","inputs":{"OPERAND1":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LD":{"opcode":"operator_not","next":null,"parent":"dA","inputs":{"OPERAND":[2,"LE"]},"fields":{},"shadow":false,"topLevel":false},"LE":{"opcode":"operator_equals","next":null,"parent":"LD","inputs":{"OPERAND1":[3,"LF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LF":{"opcode":"data_itemoflist","next":null,"parent":"LE","inputs":{"INDEX":[3,"LG",[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LG":{"opcode":"operator_add","next":null,"parent":"LF","inputs":{"NUM1":[3,"UD",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UD":{"opcode":"operator_multiply","next":null,"parent":"LG","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aqk":{"opcode":"data_setvariableto","next":null,"parent":"dy","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"b~":{"opcode":"control_if_else","next":null,"parent":"dy","inputs":{"CONDITION":[2,"aql"],"SUBSTACK":[2,"i2"],"SUBSTACK2":[2,"i3"]},"fields":{},"shadow":false,"topLevel":false},"aql":{"opcode":"operator_equals","next":null,"parent":"b~","inputs":{"OPERAND1":[3,[12,"@sprite_priority","q:J@[.C#brGXD1scwWlL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i2":{"opcode":"control_if","next":null,"parent":"b~","inputs":{"CONDITION":[2,"LH"],"SUBSTACK":[2,"dB"]},"fields":{},"shadow":false,"topLevel":false},"LH":{"opcode":"operator_equals","next":null,"parent":"i2","inputs":{"OPERAND1":[3,"LI",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LI":{"opcode":"data_itemoflist","next":null,"parent":"LH","inputs":{"INDEX":[3,"LJ",[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LJ":{"opcode":"operator_add","next":null,"parent":"LI","inputs":{"NUM1":[3,"UE",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UE":{"opcode":"operator_multiply","next":null,"parent":"LJ","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"dB":{"opcode":"data_replaceitemoflist","next":null,"parent":"i2","inputs":{"INDEX":[3,"LK",[7,0]],"ITEM":[3,"LL",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LK":{"opcode":"operator_add","next":null,"parent":"dB","inputs":{"NUM1":[3,"UF",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UF":{"opcode":"operator_multiply","next":null,"parent":"LK","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LL":{"opcode":"data_itemoflist","next":null,"parent":"dB","inputs":{"INDEX":[3,"LM",[7,0]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"LM":{"opcode":"operator_add","next":null,"parent":"LL","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"UG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UG":{"opcode":"operator_letter_of","next":null,"parent":"LM","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"i3":{"opcode":"data_replaceitemoflist","next":null,"parent":"b~","inputs":{"INDEX":[3,"LN",[7,0]],"ITEM":[3,"LO",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LN":{"opcode":"operator_add","next":null,"parent":"i3","inputs":{"NUM1":[3,"UH",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UH":{"opcode":"operator_multiply","next":null,"parent":"LN","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LO":{"opcode":"data_itemoflist","next":null,"parent":"i3","inputs":{"INDEX":[3,"LP",[7,0]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"LP":{"opcode":"operator_add","next":null,"parent":"LO","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"UI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"UI":{"opcode":"operator_letter_of","next":null,"parent":"LP","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aqm":{"opcode":"procedures_definition","next":"aqn","parent":null,"inputs":{"custom_block":[1,"a@}"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":3504},"a@}":{"opcode":"procedures_prototype","next":null,"parent":"aqm","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqn":{"opcode":"control_for_each","next":null,"parent":"aqm","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"LQ"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"LQ":{"opcode":"control_if","next":null,"parent":"aqn","inputs":{"CONDITION":[2,"LR"],"SUBSTACK":[2,"dC"]},"fields":{},"shadow":false,"topLevel":false},"LR":{"opcode":"operator_lt","next":null,"parent":"LQ","inputs":{"OPERAND1":[3,"a@~",[10,""]],"OPERAND2":[3,"a[a",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a@~":{"opcode":"operator_mod","next":null,"parent":"LR","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a[a":{"opcode":"operator_multiply","next":null,"parent":"LR","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"dC":{"opcode":"control_if","next":"dD","parent":"LQ","inputs":{"CONDITION":[2,"P`"],"SUBSTACK":[2,"i4"]},"fields":{},"shadow":false,"topLevel":false},"P`":{"opcode":"operator_equals","next":null,"parent":"dC","inputs":{"OPERAND1":[3,"UJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UJ":{"opcode":"data_itemoflist","next":null,"parent":"P`","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i4":{"opcode":"data_setvariableto","next":"UK","parent":"dC","inputs":{"VALUE":[3,"LS",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LS":{"opcode":"data_itemoflist","next":null,"parent":"i4","inputs":{"INDEX":[3,"LT",[7,0]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"LT":{"opcode":"operator_add","next":null,"parent":"LS","inputs":{"NUM1":[3,"UL",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UL":{"opcode":"operator_mod","next":null,"parent":"LT","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UK":{"opcode":"control_stop","next":null,"parent":"i4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dD":{"opcode":"control_if","next":"ca","parent":"dC","inputs":{"CONDITION":[2,"P{"],"SUBSTACK":[2,"i5"]},"fields":{},"shadow":false,"topLevel":false},"P{":{"opcode":"operator_equals","next":null,"parent":"dD","inputs":{"OPERAND1":[3,"UM",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UM":{"opcode":"data_itemoflist","next":null,"parent":"P{","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i5":{"opcode":"data_setvariableto","next":"UN","parent":"dD","inputs":{"VALUE":[3,"LU",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LU":{"opcode":"data_itemoflist","next":null,"parent":"i5","inputs":{"INDEX":[3,"LV",[7,0]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"LV":{"opcode":"operator_add","next":null,"parent":"LU","inputs":{"NUM1":[3,"UO",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UO":{"opcode":"operator_mod","next":null,"parent":"LV","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UN":{"opcode":"control_stop","next":null,"parent":"i5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ca":{"opcode":"control_if","next":"i6","parent":"dD","inputs":{"CONDITION":[2,"P|"],"SUBSTACK":[2,"i7"]},"fields":{},"shadow":false,"topLevel":false},"P|":{"opcode":"operator_equals","next":null,"parent":"ca","inputs":{"OPERAND1":[3,"UP",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"UP":{"opcode":"data_itemoflist","next":null,"parent":"P|","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i7":{"opcode":"data_setvariableto","next":"UQ","parent":"ca","inputs":{"VALUE":[3,"LW",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LW":{"opcode":"data_itemoflist","next":null,"parent":"i7","inputs":{"INDEX":[3,"LX",[7,0]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"LX":{"opcode":"operator_add","next":null,"parent":"LW","inputs":{"NUM1":[3,"UR",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UR":{"opcode":"operator_mod","next":null,"parent":"LX","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UQ":{"opcode":"control_stop","next":null,"parent":"i7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i6":{"opcode":"control_if","next":null,"parent":"ca","inputs":{"CONDITION":[2,"LY"],"SUBSTACK":[2,"dE"]},"fields":{},"shadow":false,"topLevel":false},"LY":{"opcode":"operator_equals","next":null,"parent":"i6","inputs":{"OPERAND1":[3,"US",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"US":{"opcode":"data_itemoflist","next":null,"parent":"LY","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dE":{"opcode":"data_setvariableto","next":"UT","parent":"i6","inputs":{"VALUE":[3,"LZ",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LZ":{"opcode":"data_itemoflist","next":null,"parent":"dE","inputs":{"INDEX":[3,"L0",[7,0]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"L0":{"opcode":"operator_add","next":null,"parent":"LZ","inputs":{"NUM1":[3,"UU",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UU":{"opcode":"operator_mod","next":null,"parent":"L0","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UT":{"opcode":"control_stop","next":null,"parent":"dE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqo":{"opcode":"procedures_definition","next":"aqp","parent":null,"inputs":{"custom_block":[1,"a[b"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":4684},"a[b":{"opcode":"procedures_prototype","next":null,"parent":"aqo","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write nt","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqp":{"opcode":"control_for_each","next":null,"parent":"aqo","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"L1"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"L1":{"opcode":"control_if","next":null,"parent":"aqp","inputs":{"CONDITION":[2,"L2"],"SUBSTACK":[2,"dF"]},"fields":{},"shadow":false,"topLevel":false},"L2":{"opcode":"operator_lt","next":null,"parent":"L1","inputs":{"OPERAND1":[3,"a[c",[10,""]],"OPERAND2":[3,"a[d",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a[c":{"opcode":"operator_mod","next":null,"parent":"L2","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a[d":{"opcode":"operator_multiply","next":null,"parent":"L2","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"dF":{"opcode":"control_if","next":"dG","parent":"L1","inputs":{"CONDITION":[2,"P}"],"SUBSTACK":[2,"i8"]},"fields":{},"shadow":false,"topLevel":false},"P}":{"opcode":"operator_equals","next":null,"parent":"dF","inputs":{"OPERAND1":[3,"UV",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UV":{"opcode":"data_itemoflist","next":null,"parent":"P}","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i8":{"opcode":"data_replaceitemoflist","next":"UW","parent":"dF","inputs":{"INDEX":[3,"L3",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"L3":{"opcode":"operator_add","next":null,"parent":"i8","inputs":{"NUM1":[3,"UX",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UX":{"opcode":"operator_mod","next":null,"parent":"L3","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UW":{"opcode":"control_stop","next":null,"parent":"i8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dG":{"opcode":"control_if","next":"cb","parent":"dF","inputs":{"CONDITION":[2,"P~"],"SUBSTACK":[2,"i9"]},"fields":{},"shadow":false,"topLevel":false},"P~":{"opcode":"operator_equals","next":null,"parent":"dG","inputs":{"OPERAND1":[3,"UY",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UY":{"opcode":"data_itemoflist","next":null,"parent":"P~","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i9":{"opcode":"data_replaceitemoflist","next":"UZ","parent":"dG","inputs":{"INDEX":[3,"L4",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"L4":{"opcode":"operator_add","next":null,"parent":"i9","inputs":{"NUM1":[3,"U0",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U0":{"opcode":"operator_mod","next":null,"parent":"L4","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UZ":{"opcode":"control_stop","next":null,"parent":"i9","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cb":{"opcode":"control_if","next":"i!","parent":"dG","inputs":{"CONDITION":[2,"Qa"],"SUBSTACK":[2,"i#"]},"fields":{},"shadow":false,"topLevel":false},"Qa":{"opcode":"operator_equals","next":null,"parent":"cb","inputs":{"OPERAND1":[3,"U1",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"U1":{"opcode":"data_itemoflist","next":null,"parent":"Qa","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i#":{"opcode":"data_replaceitemoflist","next":"U2","parent":"cb","inputs":{"INDEX":[3,"L5",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"L5":{"opcode":"operator_add","next":null,"parent":"i#","inputs":{"NUM1":[3,"U3",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U3":{"opcode":"operator_mod","next":null,"parent":"L5","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U2":{"opcode":"control_stop","next":null,"parent":"i#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i!":{"opcode":"control_if","next":null,"parent":"cb","inputs":{"CONDITION":[2,"L6"],"SUBSTACK":[2,"dH"]},"fields":{},"shadow":false,"topLevel":false},"L6":{"opcode":"operator_equals","next":null,"parent":"i!","inputs":{"OPERAND1":[3,"U4",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"U4":{"opcode":"data_itemoflist","next":null,"parent":"L6","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dH":{"opcode":"data_replaceitemoflist","next":"U5","parent":"i!","inputs":{"INDEX":[3,"L7",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"L7":{"opcode":"operator_add","next":null,"parent":"dH","inputs":{"NUM1":[3,"U6",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U6":{"opcode":"operator_mod","next":null,"parent":"L7","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U5":{"opcode":"control_stop","next":null,"parent":"dH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqq":{"opcode":"procedures_definition","next":"aqr","parent":null,"inputs":{"custom_block":[1,"a[e"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":5832},"a[e":{"opcode":"procedures_prototype","next":null,"parent":"aqq","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read at","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqr":{"opcode":"control_for_each","next":null,"parent":"aqq","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"L8"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"L8":{"opcode":"control_if","next":null,"parent":"aqr","inputs":{"CONDITION":[2,"L9"],"SUBSTACK":[2,"dI"]},"fields":{},"shadow":false,"topLevel":false},"L9":{"opcode":"operator_lt","next":null,"parent":"L8","inputs":{"OPERAND1":[3,"a[f",[10,""]],"OPERAND2":[3,"a[g",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a[f":{"opcode":"operator_mod","next":null,"parent":"L9","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a[g":{"opcode":"operator_multiply","next":null,"parent":"L9","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"dI":{"opcode":"control_if","next":"dJ","parent":"L8","inputs":{"CONDITION":[2,"Qb"],"SUBSTACK":[2,"i%"]},"fields":{},"shadow":false,"topLevel":false},"Qb":{"opcode":"operator_equals","next":null,"parent":"dI","inputs":{"OPERAND1":[3,"U7",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U7":{"opcode":"data_itemoflist","next":null,"parent":"Qb","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i%":{"opcode":"data_setvariableto","next":"U8","parent":"dI","inputs":{"VALUE":[3,"L!",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L!":{"opcode":"data_itemoflist","next":null,"parent":"i%","inputs":{"INDEX":[3,"L#",[7,0]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L#":{"opcode":"operator_add","next":null,"parent":"L!","inputs":{"NUM1":[3,"U9",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U9":{"opcode":"operator_mod","next":null,"parent":"L#","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U8":{"opcode":"control_stop","next":null,"parent":"i%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dJ":{"opcode":"control_if","next":"cc","parent":"dI","inputs":{"CONDITION":[2,"Qc"],"SUBSTACK":[2,"i("]},"fields":{},"shadow":false,"topLevel":false},"Qc":{"opcode":"operator_equals","next":null,"parent":"dJ","inputs":{"OPERAND1":[3,"U!",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U!":{"opcode":"data_itemoflist","next":null,"parent":"Qc","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i(":{"opcode":"data_setvariableto","next":"U#","parent":"dJ","inputs":{"VALUE":[3,"L%",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L%":{"opcode":"data_itemoflist","next":null,"parent":"i(","inputs":{"INDEX":[3,"L(",[7,0]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"L(":{"opcode":"operator_add","next":null,"parent":"L%","inputs":{"NUM1":[3,"U%",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U%":{"opcode":"operator_mod","next":null,"parent":"L(","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U#":{"opcode":"control_stop","next":null,"parent":"i(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cc":{"opcode":"control_if","next":"i)","parent":"dJ","inputs":{"CONDITION":[2,"Qd"],"SUBSTACK":[2,"i*"]},"fields":{},"shadow":false,"topLevel":false},"Qd":{"opcode":"operator_equals","next":null,"parent":"cc","inputs":{"OPERAND1":[3,"U(",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"U(":{"opcode":"data_itemoflist","next":null,"parent":"Qd","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i*":{"opcode":"data_setvariableto","next":"U)","parent":"cc","inputs":{"VALUE":[3,"L)",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L)":{"opcode":"data_itemoflist","next":null,"parent":"i*","inputs":{"INDEX":[3,"L*",[7,0]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"L*":{"opcode":"operator_add","next":null,"parent":"L)","inputs":{"NUM1":[3,"U*",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U*":{"opcode":"operator_mod","next":null,"parent":"L*","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U)":{"opcode":"control_stop","next":null,"parent":"i*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i)":{"opcode":"control_if","next":null,"parent":"cc","inputs":{"CONDITION":[2,"L+"],"SUBSTACK":[2,"dK"]},"fields":{},"shadow":false,"topLevel":false},"L+":{"opcode":"operator_equals","next":null,"parent":"i)","inputs":{"OPERAND1":[3,"U+",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"U+":{"opcode":"data_itemoflist","next":null,"parent":"L+","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dK":{"opcode":"data_setvariableto","next":"U,","parent":"i)","inputs":{"VALUE":[3,"L,",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L,":{"opcode":"data_itemoflist","next":null,"parent":"dK","inputs":{"INDEX":[3,"L-",[7,0]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"L-":{"opcode":"operator_add","next":null,"parent":"L,","inputs":{"NUM1":[3,"U-",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U-":{"opcode":"operator_mod","next":null,"parent":"L-","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U,":{"opcode":"control_stop","next":null,"parent":"dK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqs":{"opcode":"procedures_definition","next":"L.","parent":null,"inputs":{"custom_block":[1,"a[h"]},"fields":{},"shadow":false,"topLevel":true,"x":12583,"y":64},"a[h":{"opcode":"procedures_prototype","next":null,"parent":"aqs","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write at","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"L.":{"opcode":"data_setvariableto","next":"L/","parent":"aqs","inputs":{"VALUE":[3,"aqt",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aqt":{"opcode":"operator_subtract","next":null,"parent":"L.","inputs":{"NUM1":[3,"a[i",[4,0]],"NUM2":[1,[4,"960"]]},"fields":{},"shadow":false,"topLevel":false},"a[i":{"opcode":"operator_mod","next":null,"parent":"aqt","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"L/":{"opcode":"data_setvariableto","next":"aqu","parent":"L.","inputs":{"VALUE":[3,"aqv",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aqv":{"opcode":"operator_add","next":null,"parent":"L/","inputs":{"NUM1":[3,"L:",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"L:":{"opcode":"operator_add","next":null,"parent":"aqv","inputs":{"NUM1":[3,"a[j",[4,0]],"NUM2":[3,"aqw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[j":{"opcode":"operator_multiply","next":null,"parent":"L:","inputs":{"NUM1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aqw":{"opcode":"operator_multiply","next":null,"parent":"L:","inputs":{"NUM1":[3,"aqx",[4,0]],"NUM2":[1,[4,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aqx":{"opcode":"operator_mathop","next":null,"parent":"aqw","inputs":{"NUM":[3,"a[k",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a[k":{"opcode":"operator_divide","next":null,"parent":"aqx","inputs":{"NUM1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aqu":{"opcode":"control_for_each","next":null,"parent":"L/","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"L;"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"L;":{"opcode":"control_if","next":null,"parent":"aqu","inputs":{"CONDITION":[2,"L="],"SUBSTACK":[2,"dL"]},"fields":{},"shadow":false,"topLevel":false},"L=":{"opcode":"operator_lt","next":null,"parent":"L;","inputs":{"OPERAND1":[3,"a[l",[10,""]],"OPERAND2":[3,"a[m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a[l":{"opcode":"operator_mod","next":null,"parent":"L=","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a[m":{"opcode":"operator_multiply","next":null,"parent":"L=","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"dL":{"opcode":"control_if","next":"dM","parent":"L;","inputs":{"CONDITION":[2,"Qe"],"SUBSTACK":[2,"i+"]},"fields":{},"shadow":false,"topLevel":false},"Qe":{"opcode":"operator_equals","next":null,"parent":"dL","inputs":{"OPERAND1":[3,"U.",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U.":{"opcode":"data_itemoflist","next":null,"parent":"Qe","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i+":{"opcode":"control_repeat","next":"dN","parent":"dL","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dO"]},"fields":{},"shadow":false,"topLevel":false},"dO":{"opcode":"control_repeat","next":"dP","parent":"i+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dQ"]},"fields":{},"shadow":false,"topLevel":false},"dQ":{"opcode":"data_replaceitemoflist","next":"U/","parent":"dO","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"L?",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L?":{"opcode":"operator_multiply","next":null,"parent":"dQ","inputs":{"NUM1":[3,"U:",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U:":{"opcode":"operator_mod","next":null,"parent":"L?","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U/":{"opcode":"data_changevariableby","next":null,"parent":"dQ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dP":{"opcode":"control_repeat","next":"U;","parent":"dO","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dR"]},"fields":{},"shadow":false,"topLevel":false},"dR":{"opcode":"data_replaceitemoflist","next":"U=","parent":"dP","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"L@",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L@":{"opcode":"operator_multiply","next":null,"parent":"dR","inputs":{"NUM1":[3,"L[",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L[":{"opcode":"operator_mod","next":null,"parent":"L@","inputs":{"NUM1":[3,"L]",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L]":{"opcode":"operator_mathop","next":null,"parent":"L[","inputs":{"NUM":[3,"U?",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U?":{"opcode":"operator_divide","next":null,"parent":"L]","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U=":{"opcode":"data_changevariableby","next":null,"parent":"dR","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U;":{"opcode":"data_changevariableby","next":null,"parent":"dP","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dN":{"opcode":"control_repeat","next":"U@","parent":"i+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dS"]},"fields":{},"shadow":false,"topLevel":false},"dS":{"opcode":"control_repeat","next":"dT","parent":"dN","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dU"]},"fields":{},"shadow":false,"topLevel":false},"dU":{"opcode":"data_replaceitemoflist","next":"U[","parent":"dS","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"L^",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L^":{"opcode":"operator_multiply","next":null,"parent":"dU","inputs":{"NUM1":[3,"L_",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L_":{"opcode":"operator_mod","next":null,"parent":"L^","inputs":{"NUM1":[3,"L`",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L`":{"opcode":"operator_mathop","next":null,"parent":"L_","inputs":{"NUM":[3,"U]",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U]":{"opcode":"operator_divide","next":null,"parent":"L`","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"U[":{"opcode":"data_changevariableby","next":null,"parent":"dU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dT":{"opcode":"control_repeat","next":"U^","parent":"dS","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dV"]},"fields":{},"shadow":false,"topLevel":false},"dV":{"opcode":"data_replaceitemoflist","next":"U_","parent":"dT","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"L{",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L{":{"opcode":"operator_multiply","next":null,"parent":"dV","inputs":{"NUM1":[3,"L|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L|":{"opcode":"operator_mod","next":null,"parent":"L{","inputs":{"NUM1":[3,"L}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L}":{"opcode":"operator_mathop","next":null,"parent":"L|","inputs":{"NUM":[3,"U`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U`":{"opcode":"operator_divide","next":null,"parent":"L}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"U_":{"opcode":"data_changevariableby","next":null,"parent":"dV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U^":{"opcode":"data_changevariableby","next":null,"parent":"dT","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U@":{"opcode":"control_stop","next":null,"parent":"dN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"dM":{"opcode":"control_if","next":"cd","parent":"dL","inputs":{"CONDITION":[2,"Qf"],"SUBSTACK":[2,"i,"]},"fields":{},"shadow":false,"topLevel":false},"Qf":{"opcode":"operator_equals","next":null,"parent":"dM","inputs":{"OPERAND1":[3,"U{",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U{":{"opcode":"data_itemoflist","next":null,"parent":"Qf","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i,":{"opcode":"control_repeat","next":"dW","parent":"dM","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dX"]},"fields":{},"shadow":false,"topLevel":false},"dX":{"opcode":"control_repeat","next":"dY","parent":"i,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"op"]},"fields":{},"shadow":false,"topLevel":false},"op":{"opcode":"data_replaceitemoflist","next":"U|","parent":"dX","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"L~",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"L~":{"opcode":"operator_multiply","next":null,"parent":"op","inputs":{"NUM1":[3,"U}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U}":{"opcode":"operator_mod","next":null,"parent":"L~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U|":{"opcode":"data_changevariableby","next":null,"parent":"op","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dY":{"opcode":"control_repeat","next":"U~","parent":"dX","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dZ"]},"fields":{},"shadow":false,"topLevel":false},"dZ":{"opcode":"data_replaceitemoflist","next":"Va","parent":"dY","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Ma",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Ma":{"opcode":"operator_multiply","next":null,"parent":"dZ","inputs":{"NUM1":[3,"Mb",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mb":{"opcode":"operator_mod","next":null,"parent":"Ma","inputs":{"NUM1":[3,"Mc",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mc":{"opcode":"operator_mathop","next":null,"parent":"Mb","inputs":{"NUM":[3,"Vb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vb":{"opcode":"operator_divide","next":null,"parent":"Mc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Va":{"opcode":"data_changevariableby","next":null,"parent":"dZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U~":{"opcode":"data_changevariableby","next":null,"parent":"dY","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dW":{"opcode":"control_repeat","next":"Vc","parent":"i,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d0"]},"fields":{},"shadow":false,"topLevel":false},"d0":{"opcode":"control_repeat","next":"d1","parent":"dW","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d2"]},"fields":{},"shadow":false,"topLevel":false},"d2":{"opcode":"data_replaceitemoflist","next":"Vd","parent":"d0","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Md",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Md":{"opcode":"operator_multiply","next":null,"parent":"d2","inputs":{"NUM1":[3,"Me",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Me":{"opcode":"operator_mod","next":null,"parent":"Md","inputs":{"NUM1":[3,"Mf",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mf":{"opcode":"operator_mathop","next":null,"parent":"Me","inputs":{"NUM":[3,"Ve",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ve":{"opcode":"operator_divide","next":null,"parent":"Mf","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vd":{"opcode":"data_changevariableby","next":null,"parent":"d2","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d1":{"opcode":"control_repeat","next":"Vf","parent":"d0","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d3"]},"fields":{},"shadow":false,"topLevel":false},"d3":{"opcode":"data_replaceitemoflist","next":"Vg","parent":"d1","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mg",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Mg":{"opcode":"operator_multiply","next":null,"parent":"d3","inputs":{"NUM1":[3,"Mh",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mh":{"opcode":"operator_mod","next":null,"parent":"Mg","inputs":{"NUM1":[3,"Mi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mi":{"opcode":"operator_mathop","next":null,"parent":"Mh","inputs":{"NUM":[3,"Vh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vh":{"opcode":"operator_divide","next":null,"parent":"Mi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vg":{"opcode":"data_changevariableby","next":null,"parent":"d3","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vf":{"opcode":"data_changevariableby","next":null,"parent":"d1","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vc":{"opcode":"control_stop","next":null,"parent":"dW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cd":{"opcode":"control_if","next":"i-","parent":"dM","inputs":{"CONDITION":[2,"Qg"],"SUBSTACK":[2,"i."]},"fields":{},"shadow":false,"topLevel":false},"Qg":{"opcode":"operator_equals","next":null,"parent":"cd","inputs":{"OPERAND1":[3,"Vi",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Vi":{"opcode":"data_itemoflist","next":null,"parent":"Qg","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i.":{"opcode":"control_repeat","next":"d4","parent":"cd","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d5"]},"fields":{},"shadow":false,"topLevel":false},"d4":{"opcode":"control_repeat","next":"Vj","parent":"i.","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d6"]},"fields":{},"shadow":false,"topLevel":false},"d6":{"opcode":"control_repeat","next":"d7","parent":"d4","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d8"]},"fields":{},"shadow":false,"topLevel":false},"d8":{"opcode":"data_replaceitemoflist","next":"Vk","parent":"d6","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mj",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Mj":{"opcode":"operator_multiply","next":null,"parent":"d8","inputs":{"NUM1":[3,"Mk",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mk":{"opcode":"operator_mod","next":null,"parent":"Mj","inputs":{"NUM1":[3,"Ml",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ml":{"opcode":"operator_mathop","next":null,"parent":"Mk","inputs":{"NUM":[3,"Vl",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vl":{"opcode":"operator_divide","next":null,"parent":"Ml","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vk":{"opcode":"data_changevariableby","next":null,"parent":"d8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d7":{"opcode":"control_repeat","next":"Vm","parent":"d6","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d9"]},"fields":{},"shadow":false,"topLevel":false},"d9":{"opcode":"data_replaceitemoflist","next":"Vn","parent":"d7","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mm",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Mm":{"opcode":"operator_multiply","next":null,"parent":"d9","inputs":{"NUM1":[3,"Mn",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mn":{"opcode":"operator_mod","next":null,"parent":"Mm","inputs":{"NUM1":[3,"Mo",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mo":{"opcode":"operator_mathop","next":null,"parent":"Mn","inputs":{"NUM":[3,"Vo",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vo":{"opcode":"operator_divide","next":null,"parent":"Mo","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vn":{"opcode":"data_changevariableby","next":null,"parent":"d9","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vm":{"opcode":"data_changevariableby","next":null,"parent":"d7","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vj":{"opcode":"control_stop","next":null,"parent":"d4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i-":{"opcode":"control_if","next":null,"parent":"cd","inputs":{"CONDITION":[2,"Mp"],"SUBSTACK":[2,"d!"]},"fields":{},"shadow":false,"topLevel":false},"Mp":{"opcode":"operator_equals","next":null,"parent":"i-","inputs":{"OPERAND1":[3,"Vp",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Vp":{"opcode":"data_itemoflist","next":null,"parent":"Mp","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"d!":{"opcode":"control_repeat","next":"d#","parent":"i-","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d%"]},"fields":{},"shadow":false,"topLevel":false},"d%":{"opcode":"control_repeat","next":"d(","parent":"d!","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d)"]},"fields":{},"shadow":false,"topLevel":false},"d)":{"opcode":"data_replaceitemoflist","next":"Vq","parent":"d%","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mq",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mq":{"opcode":"operator_multiply","next":null,"parent":"d)","inputs":{"NUM1":[3,"Vr",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vr":{"opcode":"operator_mod","next":null,"parent":"Mq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vq":{"opcode":"data_changevariableby","next":null,"parent":"d)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d(":{"opcode":"control_repeat","next":"Vs","parent":"d%","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d*"]},"fields":{},"shadow":false,"topLevel":false},"d*":{"opcode":"data_replaceitemoflist","next":"Vt","parent":"d(","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mr",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mr":{"opcode":"operator_multiply","next":null,"parent":"d*","inputs":{"NUM1":[3,"Ms",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ms":{"opcode":"operator_mod","next":null,"parent":"Mr","inputs":{"NUM1":[3,"Mt",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mt":{"opcode":"operator_mathop","next":null,"parent":"Ms","inputs":{"NUM":[3,"Vu",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vu":{"opcode":"operator_divide","next":null,"parent":"Mt","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vt":{"opcode":"data_changevariableby","next":null,"parent":"d*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vs":{"opcode":"data_changevariableby","next":null,"parent":"d(","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d#":{"opcode":"control_repeat","next":"Vv","parent":"d!","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d+"]},"fields":{},"shadow":false,"topLevel":false},"d+":{"opcode":"control_repeat","next":"d,","parent":"d#","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d-"]},"fields":{},"shadow":false,"topLevel":false},"d-":{"opcode":"data_replaceitemoflist","next":"Vw","parent":"d+","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mu",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mu":{"opcode":"operator_multiply","next":null,"parent":"d-","inputs":{"NUM1":[3,"Mv",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mv":{"opcode":"operator_mod","next":null,"parent":"Mu","inputs":{"NUM1":[3,"Mw",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mw":{"opcode":"operator_mathop","next":null,"parent":"Mv","inputs":{"NUM":[3,"Vx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vx":{"opcode":"operator_divide","next":null,"parent":"Mw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vw":{"opcode":"data_changevariableby","next":null,"parent":"d-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d,":{"opcode":"control_repeat","next":"Vy","parent":"d+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d."]},"fields":{},"shadow":false,"topLevel":false},"d.":{"opcode":"data_replaceitemoflist","next":"Vz","parent":"d,","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Mx",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mx":{"opcode":"operator_multiply","next":null,"parent":"d.","inputs":{"NUM1":[3,"My",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"My":{"opcode":"operator_mod","next":null,"parent":"Mx","inputs":{"NUM1":[3,"Mz",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mz":{"opcode":"operator_mathop","next":null,"parent":"My","inputs":{"NUM":[3,"VA",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"VA":{"opcode":"operator_divide","next":null,"parent":"Mz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vz":{"opcode":"data_changevariableby","next":null,"parent":"d.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vy":{"opcode":"data_changevariableby","next":null,"parent":"d,","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vv":{"opcode":"control_stop","next":null,"parent":"d#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqy":{"opcode":"procedures_definition","next":"aqz","parent":null,"inputs":{"custom_block":[1,"a[n"]},"fields":{},"shadow":false,"topLevel":true,"x":12583,"y":5396},"a[n":{"opcode":"procedures_prototype","next":null,"parent":"aqy","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqz":{"opcode":"data_deletealloflist","next":"aqA","parent":"aqy","inputs":{},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"aqA":{"opcode":"data_setvariableto","next":"MA","parent":"aqz","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"MA":{"opcode":"control_repeat","next":null,"parent":"aqA","inputs":{"TIMES":[3,"a[o",[6,0]],"SUBSTACK":[2,"MB"]},"fields":{},"shadow":false,"topLevel":false},"a[o":{"opcode":"operator_divide","next":null,"parent":"MA","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"MB":{"opcode":"control_repeat","next":"a[p","parent":"MA","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aqB"]},"fields":{},"shadow":false,"topLevel":false},"aqB":{"opcode":"data_changevariableby","next":"MC","parent":"MB","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"MC":{"opcode":"data_setvariableto","next":"aqC","parent":"aqB","inputs":{"VALUE":[3,"MD",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"MD":{"opcode":"operator_join","next":null,"parent":"MC","inputs":{"STRING1":[3,"aqD",[10,""]],"STRING2":[3,"aqE",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aqD":{"opcode":"data_itemoflist","next":null,"parent":"MD","inputs":{"INDEX":[3,"aqF",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aqF":{"opcode":"operator_add","next":null,"parent":"aqD","inputs":{"NUM1":[3,"a[q",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[q":{"opcode":"data_itemoflist","next":null,"parent":"aqF","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"aqE":{"opcode":"data_itemoflist","next":null,"parent":"MD","inputs":{"INDEX":[3,"aqG",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aqG":{"opcode":"operator_add","next":null,"parent":"aqE","inputs":{"NUM1":[3,"aqH",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aqH":{"opcode":"data_itemoflist","next":null,"parent":"aqG","inputs":{"INDEX":[3,"a[r",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"a[r":{"opcode":"operator_add","next":null,"parent":"aqH","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aqC":{"opcode":"data_setvariableto","next":"ME","parent":"MC","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"ME":{"opcode":"control_for_each","next":"a[s","parent":"aqC","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"d/"]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"d/":{"opcode":"control_if","next":"d:","parent":"ME","inputs":{"CONDITION":[2,"i/"],"SUBSTACK":[2,"Qh"]},"fields":{},"shadow":false,"topLevel":false},"i/":{"opcode":"operator_and","next":null,"parent":"d/","inputs":{"OPERAND1":[2,"MF"],"OPERAND2":[2,"MG"]},"fields":{},"shadow":false,"topLevel":false},"MF":{"opcode":"operator_equals","next":null,"parent":"i/","inputs":{"OPERAND1":[3,"VB",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VB":{"opcode":"operator_letter_of","next":null,"parent":"MF","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MG":{"opcode":"operator_equals","next":null,"parent":"i/","inputs":{"OPERAND1":[3,"MH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MH":{"opcode":"operator_letter_of","next":null,"parent":"MG","inputs":{"LETTER":[3,"VC",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VC":{"opcode":"operator_add","next":null,"parent":"MH","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qh":{"opcode":"data_setvariableto","next":null,"parent":"d/","inputs":{"VALUE":[3,"VD",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VD":{"opcode":"operator_join","next":null,"parent":"Qh","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d:":{"opcode":"control_if","next":"ce","parent":"d/","inputs":{"CONDITION":[2,"i:"],"SUBSTACK":[2,"Qi"]},"fields":{},"shadow":false,"topLevel":false},"i:":{"opcode":"operator_and","next":null,"parent":"d:","inputs":{"OPERAND1":[2,"MI"],"OPERAND2":[2,"MJ"]},"fields":{},"shadow":false,"topLevel":false},"MI":{"opcode":"operator_equals","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"VE",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VE":{"opcode":"operator_letter_of","next":null,"parent":"MI","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MJ":{"opcode":"operator_equals","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"MK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MK":{"opcode":"operator_letter_of","next":null,"parent":"MJ","inputs":{"LETTER":[3,"VF",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VF":{"opcode":"operator_add","next":null,"parent":"MK","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qi":{"opcode":"data_setvariableto","next":null,"parent":"d:","inputs":{"VALUE":[3,"VG",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VG":{"opcode":"operator_join","next":null,"parent":"Qi","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ce":{"opcode":"control_if","next":"i;","parent":"d:","inputs":{"CONDITION":[2,"i="],"SUBSTACK":[2,"Qj"]},"fields":{},"shadow":false,"topLevel":false},"i=":{"opcode":"operator_and","next":null,"parent":"ce","inputs":{"OPERAND1":[2,"ML"],"OPERAND2":[2,"MM"]},"fields":{},"shadow":false,"topLevel":false},"ML":{"opcode":"operator_equals","next":null,"parent":"i=","inputs":{"OPERAND1":[3,"VH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VH":{"opcode":"operator_letter_of","next":null,"parent":"ML","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MM":{"opcode":"operator_equals","next":null,"parent":"i=","inputs":{"OPERAND1":[3,"MN",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MN":{"opcode":"operator_letter_of","next":null,"parent":"MM","inputs":{"LETTER":[3,"VI",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VI":{"opcode":"operator_add","next":null,"parent":"MN","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qj":{"opcode":"data_setvariableto","next":null,"parent":"ce","inputs":{"VALUE":[3,"VJ",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VJ":{"opcode":"operator_join","next":null,"parent":"Qj","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"i;":{"opcode":"control_if","next":null,"parent":"ce","inputs":{"CONDITION":[2,"d;"],"SUBSTACK":[2,"MO"]},"fields":{},"shadow":false,"topLevel":false},"d;":{"opcode":"operator_and","next":null,"parent":"i;","inputs":{"OPERAND1":[2,"MP"],"OPERAND2":[2,"MQ"]},"fields":{},"shadow":false,"topLevel":false},"MP":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,"VK",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VK":{"opcode":"operator_letter_of","next":null,"parent":"MP","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MQ":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,"MR",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MR":{"opcode":"operator_letter_of","next":null,"parent":"MQ","inputs":{"LETTER":[3,"VL",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VL":{"opcode":"operator_add","next":null,"parent":"MR","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MO":{"opcode":"data_setvariableto","next":null,"parent":"i;","inputs":{"VALUE":[3,"VM",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VM":{"opcode":"operator_join","next":null,"parent":"MO","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a[s":{"opcode":"data_addtolist","next":null,"parent":"ME","inputs":{"ITEM":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"a[p":{"opcode":"data_changevariableby","next":null,"parent":"MB","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"aqI":{"opcode":"procedures_definition","next":"i?","parent":null,"inputs":{"custom_block":[1,"a[t"]},"fields":{},"shadow":false,"topLevel":true,"x":9236,"y":572},"a[t":{"opcode":"procedures_prototype","next":null,"parent":"aqI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@cycle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"i?":{"opcode":"control_if","next":"i@","parent":"aqI","inputs":{"CONDITION":[2,"aqJ"],"SUBSTACK":[2,"cf"]},"fields":{},"shadow":false,"topLevel":false},"aqJ":{"opcode":"operator_equals","next":null,"parent":"i?","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"cf":{"opcode":"control_if","next":"Qk","parent":"i?","inputs":{"CONDITION":[2,"aqK"],"SUBSTACK":[2,"aqL"]},"fields":{},"shadow":false,"topLevel":false},"aqK":{"opcode":"operator_equals","next":null,"parent":"cf","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aqL":{"opcode":"data_setvariableto","next":null,"parent":"cf","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"Qk":{"opcode":"data_changevariableby","next":"VN","parent":"cf","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"VN":{"opcode":"control_stop","next":null,"parent":"Qk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i@":{"opcode":"control_if","next":"d=","parent":"i?","inputs":{"CONDITION":[2,"i["],"SUBSTACK":[2,"cg"]},"fields":{},"shadow":false,"topLevel":false},"i[":{"opcode":"operator_and","next":null,"parent":"i@","inputs":{"OPERAND1":[2,"VO"],"OPERAND2":[2,"VP"]},"fields":{},"shadow":false,"topLevel":false},"VO":{"opcode":"operator_gt","next":null,"parent":"i[","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"VP":{"opcode":"operator_lt","next":null,"parent":"i[","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"cg":{"opcode":"control_if","next":"a2","parent":"i@","inputs":{"CONDITION":[2,"i]"],"SUBSTACK":[2,"Ql"]},"fields":{},"shadow":false,"topLevel":false},"i]":{"opcode":"operator_and","next":null,"parent":"cg","inputs":{"OPERAND1":[2,"VQ"],"OPERAND2":[2,"VR"]},"fields":{},"shadow":false,"topLevel":false},"VQ":{"opcode":"operator_equals","next":null,"parent":"i]","inputs":{"OPERAND1":[3,[12,"coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VR":{"opcode":"operator_equals","next":null,"parent":"i]","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ql":{"opcode":"procedures_call","next":"VS","parent":"cg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","warp":"true"}},"VS":{"opcode":"data_setvariableto","next":null,"parent":"Ql","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"a2":{"opcode":"control_if_else","next":"a]","parent":"cg","inputs":{"CONDITION":[2,"VT"],"SUBSTACK":[2,"d?"],"SUBSTACK2":[2,"MS"]},"fields":{},"shadow":false,"topLevel":false},"VT":{"opcode":"operator_equals","next":null,"parent":"a2","inputs":{"OPERAND1":[3,[12,"@render_bg","~C;tFyLG;WJlq~1ZPX1f"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"control_for_each","next":"d@","parent":"a2","inputs":{"VALUE":[1,[6,"33"]],"SUBSTACK":[2,"MT"]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"MT":{"opcode":"procedures_call","next":"d[","parent":"d?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","warp":"true"}},"d[":{"opcode":"data_setvariableto","next":"MU","parent":"MT","inputs":{"VALUE":[3,"VU",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"VU":{"opcode":"operator_add","next":null,"parent":"d[","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,0]],"NUM2":[3,[12,"@bg_pattern","vTq-oq{gvgqfjW3L4iSt"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"MU":{"opcode":"procedures_call","next":"d]","parent":"d[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read at","argumentids":"[]","warp":"true"}},"d]":{"opcode":"data_setvariableto","next":"d^","parent":"MU","inputs":{"VALUE":[3,"VV",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"VV":{"opcode":"operator_add","next":null,"parent":"d]","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d^":{"opcode":"data_setvariableto","next":"MV","parent":"d]","inputs":{"VALUE":[3,"d_",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"d_":{"opcode":"operator_add","next":null,"parent":"d^","inputs":{"NUM1":[3,"VW",[4,0]],"NUM2":[3,"MW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"VW":{"opcode":"operator_multiply","next":null,"parent":"d_","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MW":{"opcode":"operator_mathop","next":null,"parent":"d_","inputs":{"NUM":[3,"VX",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"VX":{"opcode":"operator_divide","next":null,"parent":"MW","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"MV":{"opcode":"procedures_call","next":"aD","parent":"d^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"aD":{"opcode":"control_if_else","next":"MX","parent":"MV","inputs":{"CONDITION":[2,"d`"],"SUBSTACK":[2,"VY"],"SUBSTACK2":[2,"a^"]},"fields":{},"shadow":false,"topLevel":false},"d`":{"opcode":"operator_and","next":null,"parent":"aD","inputs":{"OPERAND1":[2,"VZ"],"OPERAND2":[2,"V0"]},"fields":{},"shadow":false,"topLevel":false},"VZ":{"opcode":"operator_gt","next":null,"parent":"d`","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V0":{"opcode":"operator_equals","next":null,"parent":"d`","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VY":{"opcode":"procedures_call","next":null,"parent":"aD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped left","argumentids":"[]","warp":"true"}},"a^":{"opcode":"control_if_else","next":null,"parent":"aD","inputs":{"CONDITION":[2,"i^"],"SUBSTACK":[2,"aqM"],"SUBSTACK2":[2,"i_"]},"fields":{},"shadow":false,"topLevel":false},"i^":{"opcode":"operator_and","next":null,"parent":"a^","inputs":{"OPERAND1":[2,"V1"],"OPERAND2":[2,"V2"]},"fields":{},"shadow":false,"topLevel":false},"V1":{"opcode":"operator_gt","next":null,"parent":"i^","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V2":{"opcode":"operator_equals","next":null,"parent":"i^","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"aqM":{"opcode":"procedures_call","next":null,"parent":"a^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","warp":"true"}},"i_":{"opcode":"control_if","next":null,"parent":"a^","inputs":{"CONDITION":[2,"V3"],"SUBSTACK":[2,"V4"]},"fields":{},"shadow":false,"topLevel":false},"V3":{"opcode":"operator_lt","next":null,"parent":"i_","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"V4":{"opcode":"procedures_call","next":null,"parent":"i_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw bg line","argumentids":"[]","warp":"true"}},"MX":{"opcode":"data_changevariableby","next":"d{","parent":"aD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"d{":{"opcode":"control_if","next":null,"parent":"MX","inputs":{"CONDITION":[2,"MY"],"SUBSTACK":[2,"MZ"]},"fields":{},"shadow":false,"topLevel":false},"MY":{"opcode":"operator_equals","next":null,"parent":"d{","inputs":{"OPERAND1":[3,"V5",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V5":{"opcode":"operator_mod","next":null,"parent":"MY","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"MZ":{"opcode":"data_changevariableby","next":"d|","parent":"d{","inputs":{"VALUE":[1,[4,"-32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"d|":{"opcode":"data_setvariableto","next":"d}","parent":"MZ","inputs":{"VALUE":[3,"M0",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M0":{"opcode":"operator_mathop","next":null,"parent":"d|","inputs":{"NUM":[3,"V6",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V6":{"opcode":"operator_divide","next":null,"parent":"M0","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"d}":{"opcode":"data_setvariableto","next":"M1","parent":"d|","inputs":{"VALUE":[3,"M2",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"M2":{"opcode":"operator_mod","next":null,"parent":"d}","inputs":{"NUM1":[3,"V7",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"V7":{"opcode":"operator_add","next":null,"parent":"M2","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M1":{"opcode":"data_changevariableby","next":null,"parent":"d}","inputs":{"VALUE":[3,"V8",[4,0]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"V8":{"opcode":"operator_multiply","next":null,"parent":"M1","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"d@":{"opcode":"data_setvariableto","next":"d~","parent":"d?","inputs":{"VALUE":[3,"ea",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ea":{"opcode":"operator_add","next":null,"parent":"d@","inputs":{"NUM1":[3,"M3",[4,0]],"NUM2":[3,"V9",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"M3":{"opcode":"operator_subtract","next":null,"parent":"ea","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[3,"V!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"V!":{"opcode":"operator_mod","next":null,"parent":"M3","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"V9":{"opcode":"operator_mod","next":null,"parent":"ea","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"d~":{"opcode":"data_setvariableto","next":"eb","parent":"d@","inputs":{"VALUE":[3,"M4",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M4":{"opcode":"operator_mathop","next":null,"parent":"d~","inputs":{"NUM":[3,"V#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V#":{"opcode":"operator_divide","next":null,"parent":"M4","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"eb":{"opcode":"data_setvariableto","next":"ec","parent":"d~","inputs":{"VALUE":[3,"ed",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ed":{"opcode":"operator_add","next":null,"parent":"eb","inputs":{"NUM1":[3,"M5",[4,0]],"NUM2":[3,"M6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"M5":{"opcode":"operator_subtract","next":null,"parent":"ed","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[3,"V%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"V%":{"opcode":"operator_mod","next":null,"parent":"M5","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"M6":{"opcode":"operator_mathop","next":null,"parent":"ed","inputs":{"NUM":[3,"M7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"M7":{"opcode":"operator_divide","next":null,"parent":"M6","inputs":{"NUM1":[3,"V(",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"V(":{"opcode":"operator_mod","next":null,"parent":"M7","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"ec":{"opcode":"data_setvariableto","next":"M8","parent":"eb","inputs":{"VALUE":[3,"ee",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ee":{"opcode":"operator_add","next":null,"parent":"ec","inputs":{"NUM1":[3,"V)",[4,0]],"NUM2":[3,"V*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"V)":{"opcode":"operator_mod","next":null,"parent":"ee","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"V*":{"opcode":"operator_multiply","next":null,"parent":"ee","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M8":{"opcode":"data_changevariableby","next":"ef","parent":"ec","inputs":{"VALUE":[1,[4,"4096"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ef":{"opcode":"control_if","next":null,"parent":"M8","inputs":{"CONDITION":[2,"V+"],"SUBSTACK":[2,"M9"]},"fields":{},"shadow":false,"topLevel":false},"V+":{"opcode":"operator_gt","next":null,"parent":"ef","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"M9":{"opcode":"data_changevariableby","next":"eg","parent":"ef","inputs":{"VALUE":[1,[4,"-32736"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"eg":{"opcode":"control_if","next":null,"parent":"M9","inputs":{"CONDITION":[2,"M!"],"SUBSTACK":[2,"M#"]},"fields":{},"shadow":false,"topLevel":false},"M!":{"opcode":"operator_equals","next":null,"parent":"eg","inputs":{"OPERAND1":[3,"M%",[10,""]],"OPERAND2":[1,[10,"30"]]},"fields":{},"shadow":false,"topLevel":false},"M%":{"opcode":"operator_mathop","next":null,"parent":"M!","inputs":{"NUM":[3,"M(",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"M(":{"opcode":"operator_divide","next":null,"parent":"M%","inputs":{"NUM1":[3,"V,",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"V,":{"opcode":"operator_mod","next":null,"parent":"M(","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M#":{"opcode":"data_changevariableby","next":"eh","parent":"eg","inputs":{"VALUE":[1,[4,"-960"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"eh":{"opcode":"data_setvariableto","next":"ei","parent":"M#","inputs":{"VALUE":[3,"M)",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M)":{"opcode":"operator_mathop","next":null,"parent":"eh","inputs":{"NUM":[3,"V-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V-":{"opcode":"operator_divide","next":null,"parent":"M)","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"ei":{"opcode":"data_setvariableto","next":"M*","parent":"eh","inputs":{"VALUE":[3,"M+",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"M+":{"opcode":"operator_mod","next":null,"parent":"ei","inputs":{"NUM1":[3,"V.",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"V.":{"opcode":"operator_add","next":null,"parent":"M+","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"M*":{"opcode":"data_changevariableby","next":null,"parent":"ei","inputs":{"VALUE":[3,"V/",[4,0]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"V/":{"opcode":"operator_multiply","next":null,"parent":"M*","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"MS":{"opcode":"control_repeat","next":null,"parent":"a2","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"V:"]},"fields":{},"shadow":false,"topLevel":false},"V:":{"opcode":"data_addtolist","next":null,"parent":"MS","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"a]":{"opcode":"control_if","next":"Qm","parent":"a2","inputs":{"CONDITION":[2,"aqN"],"SUBSTACK":[2,"oq"]},"fields":{},"shadow":false,"topLevel":false},"aqN":{"opcode":"operator_equals","next":null,"parent":"a]","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oq":{"opcode":"data_setvariableto","next":"a_","parent":"a]","inputs":{"VALUE":[3,"M,",[10,""]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"M,":{"opcode":"operator_subtract","next":null,"parent":"oq","inputs":{"NUM1":[3,"V;",[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"V;":{"opcode":"data_lengthoflist","next":null,"parent":"M,","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"a_":{"opcode":"control_repeat","next":"Qn","parent":"oq","inputs":{"TIMES":[3,"Qo",[6,0]],"SUBSTACK":[2,"i`"]},"fields":{},"shadow":false,"topLevel":false},"Qo":{"opcode":"operator_divide","next":null,"parent":"a_","inputs":{"NUM1":[3,"V=",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"V=":{"opcode":"data_lengthoflist","next":null,"parent":"Qo","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"i`":{"opcode":"data_setvariableto","next":"ej","parent":"a_","inputs":{"VALUE":[3,"V?",[10,""]]},"fields":{"VARIABLE":["@sprite_y","y`PaeB/{^[+=lUi~^f35"]},"shadow":false,"topLevel":false},"V?":{"opcode":"data_itemoflist","next":null,"parent":"i`","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"ej":{"opcode":"data_setvariableto","next":"ek","parent":"i`","inputs":{"VALUE":[3,"M-",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"M-":{"opcode":"data_itemoflist","next":null,"parent":"ej","inputs":{"INDEX":[3,"V@",[7,0]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"V@":{"opcode":"operator_add","next":null,"parent":"M-","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Qn":{"opcode":"data_deletealloflist","next":"M.","parent":"a_","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"M.":{"opcode":"data_setvariableto","next":"M/","parent":"Qn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M/":{"opcode":"data_setvariableto","next":"i{","parent":"M.","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"i{":{"opcode":"control_repeat_until","next":null,"parent":"M/","inputs":{"CONDITION":[2,"el"],"SUBSTACK":[2,"a`"]},"fields":{},"shadow":false,"topLevel":false},"el":{"opcode":"operator_or","next":null,"parent":"i{","inputs":{"OPERAND1":[2,"V["],"OPERAND2":[2,"V]"]},"fields":{},"shadow":false,"topLevel":false},"V[":{"opcode":"operator_equals","next":null,"parent":"el","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"V]":{"opcode":"operator_equals","next":null,"parent":"el","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"257"]]},"fields":{},"shadow":false,"topLevel":false},"a`":{"opcode":"control_if_else","next":null,"parent":"i{","inputs":{"CONDITION":[2,"i|"],"SUBSTACK":[2,"i}"],"SUBSTACK2":[2,"aqO"]},"fields":{},"shadow":false,"topLevel":false},"i|":{"opcode":"operator_and","next":null,"parent":"a`","inputs":{"OPERAND1":[2,"em"],"OPERAND2":[2,"en"]},"fields":{},"shadow":false,"topLevel":false},"em":{"opcode":"operator_lt","next":null,"parent":"i|","inputs":{"OPERAND1":[3,"V^",[10,""]],"OPERAND2":[3,"V_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"V^":{"opcode":"data_itemoflist","next":null,"parent":"em","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"V_":{"opcode":"operator_add","next":null,"parent":"em","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"en":{"opcode":"operator_gt","next":null,"parent":"i|","inputs":{"OPERAND1":[3,"V`",[10,""]],"OPERAND2":[3,"M:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"V`":{"opcode":"data_itemoflist","next":null,"parent":"en","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"M:":{"opcode":"operator_subtract","next":null,"parent":"en","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[3,"V{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"V{":{"opcode":"operator_multiply","next":null,"parent":"M:","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i}":{"opcode":"control_repeat","next":"V|","parent":"a`","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"("]},"fields":{},"shadow":false,"topLevel":false},"(":{"opcode":"control_if_else","next":"V}","parent":"i}","inputs":{"CONDITION":[2,"V~"],"SUBSTACK":[2,"M;"],"SUBSTACK2":[2,"M="]},"fields":{},"shadow":false,"topLevel":false},"V~":{"opcode":"operator_equals","next":null,"parent":"(","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"M;":{"opcode":"data_addtolist","next":null,"parent":"(","inputs":{"ITEM":[3,"M?",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"M?":{"opcode":"operator_add","next":null,"parent":"M;","inputs":{"NUM1":[3,"Wa",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Wa":{"opcode":"data_itemoflist","next":null,"parent":"M?","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"M=":{"opcode":"data_addtolist","next":null,"parent":"(","inputs":{"ITEM":[3,"Wb",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Wb":{"opcode":"data_itemoflist","next":null,"parent":"M=","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"V}":{"opcode":"data_changevariableby","next":null,"parent":"(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"V|":{"opcode":"data_changevariableby","next":null,"parent":"i}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aqO":{"opcode":"data_changevariableby","next":null,"parent":"a`","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Qm":{"opcode":"procedures_call","next":"M@","parent":"a]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","warp":"true"}},"M@":{"opcode":"data_changevariableby","next":"Wc","parent":"Qm","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wc":{"opcode":"control_stop","next":null,"parent":"M@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"d=":{"opcode":"control_if","next":"ch","parent":"i@","inputs":{"CONDITION":[2,"aqP"],"SUBSTACK":[2,"i~"]},"fields":{},"shadow":false,"topLevel":false},"aqP":{"opcode":"operator_equals","next":null,"parent":"d=","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"i~":{"opcode":"control_wait_until","next":"eo","parent":"d=","inputs":{"CONDITION":[2,"ep"]},"fields":{},"shadow":false,"topLevel":false},"ep":{"opcode":"operator_gt","next":null,"parent":"i~","inputs":{"OPERAND1":[3,"Wd",[10,""]],"OPERAND2":[3,"We",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Wd":{"opcode":"sensing_dayssince2000","next":null,"parent":"ep","inputs":{},"fields":{},"shadow":false,"topLevel":false},"We":{"opcode":"operator_add","next":null,"parent":"ep","inputs":{"NUM1":[3,[12,"@lastframe","n;0UExIQMoO!Lz=!vPek"],[4,0]],"NUM2":[1,[4,"0.0000001938"]]},"fields":{},"shadow":false,"topLevel":false},"eo":{"opcode":"data_setvariableto","next":"M[","parent":"i~","inputs":{"VALUE":[3,"Wf",[10,""]]},"fields":{"VARIABLE":["@lastframe","n;0UExIQMoO!Lz=!vPek"]},"shadow":false,"topLevel":false},"Wf":{"opcode":"sensing_dayssince2000","next":null,"parent":"eo","inputs":{},"fields":{},"shadow":false,"topLevel":false},"M[":{"opcode":"data_changevariableby","next":"Wg","parent":"eo","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wg":{"opcode":"control_stop","next":null,"parent":"M[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ch":{"opcode":"control_if","next":"ci","parent":"d=","inputs":{"CONDITION":[2,"aqQ"],"SUBSTACK":[2,"Qp"]},"fields":{},"shadow":false,"topLevel":false},"aqQ":{"opcode":"operator_equals","next":null,"parent":"ch","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"Qp":{"opcode":"data_setvariableto","next":"a{","parent":"ch","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"a{":{"opcode":"control_if","next":"M]","parent":"Qp","inputs":{"CONDITION":[2,"Wh"],"SUBSTACK":[2,"Wi"]},"fields":{},"shadow":false,"topLevel":false},"Wh":{"opcode":"operator_equals","next":null,"parent":"a{","inputs":{"OPERAND1":[3,[12,"@nmi_enabled","2j/RBbii5O{|d#5d)@hc"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Wi":{"opcode":"data_setvariableto","next":null,"parent":"a{","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"M]":{"opcode":"data_changevariableby","next":"Wj","parent":"a{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wj":{"opcode":"control_stop","next":null,"parent":"M]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ci":{"opcode":"control_if","next":"eq","parent":"ch","inputs":{"CONDITION":[2,"Wk"],"SUBSTACK":[2,"M^"]},"fields":{},"shadow":false,"topLevel":false},"Wk":{"opcode":"operator_lt","next":null,"parent":"ci","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"M^":{"opcode":"data_changevariableby","next":"Wl","parent":"ci","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wl":{"opcode":"control_stop","next":null,"parent":"M^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"eq":{"opcode":"control_if","next":null,"parent":"ci","inputs":{"CONDITION":[2,"Wm"],"SUBSTACK":[2,"M_"]},"fields":{},"shadow":false,"topLevel":false},"Wm":{"opcode":"operator_equals","next":null,"parent":"eq","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"M_":{"opcode":"data_changevariableby","next":"M`","parent":"eq","inputs":{"VALUE":[1,[4,"-262"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"M`":{"opcode":"data_setvariableto","next":"M{","parent":"M_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"M{":{"opcode":"data_setvariableto","next":"M|","parent":"M`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"]},"shadow":false,"topLevel":false},"M|":{"opcode":"data_setvariableto","next":"M}","parent":"M{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"M}":{"opcode":"data_setvariableto","next":"M~","parent":"M|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"M~":{"opcode":"data_changevariableby","next":"Na","parent":"M}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"Na":{"opcode":"data_deletealloflist","next":"Nb","parent":"M~","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Nb":{"opcode":"data_deletealloflist","next":"Wn","parent":"Na","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Wn":{"opcode":"control_stop","next":null,"parent":"Nb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqR":{"opcode":"procedures_definition","next":"aqS","parent":null,"inputs":{"custom_block":[1,"a[u"]},"fields":{},"shadow":false,"topLevel":true,"x":9236,"y":64},"a[u":{"opcode":"procedures_prototype","next":null,"parent":"aqR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqS":{"opcode":"procedures_call","next":"Nc","parent":"aqR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@cycle","argumentids":"[]","warp":"true"}},"Nc":{"opcode":"control_if","next":null,"parent":"aqS","inputs":{"CONDITION":[2,"a[v"],"SUBSTACK":[2,"aqT"]},"fields":{},"shadow":false,"topLevel":false},"a[v":{"opcode":"operator_equals","next":null,"parent":"Nc","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"aqT":{"opcode":"data_changevariableby","next":"Nd","parent":"Nc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"Nd":{"opcode":"control_if","next":null,"parent":"aqT","inputs":{"CONDITION":[2,"a[w"],"SUBSTACK":[2,"aqU"]},"fields":{},"shadow":false,"topLevel":false},"a[w":{"opcode":"operator_gt","next":null,"parent":"Nd","inputs":{"OPERAND1":[3,[12,"@frameskip","`oeC-QRVa|Hd.Tue!dpl"],[10,""]],"OPERAND2":[3,[12,"Frameskip","T*Lc1tcF[lxG@/W!jiQ0"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aqU":{"opcode":"data_setvariableto","next":"a[x","parent":"Nd","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"a[x":{"opcode":"event_broadcast","next":null,"parent":"aqU","inputs":{"BROADCAST_INPUT":[1,[11,"draw","a,=[Gay5*+98NY%7e1=p"]]},"fields":{},"shadow":false,"topLevel":false},"aqV":{"opcode":"procedures_definition","next":"Ne","parent":null,"inputs":{"custom_block":[1,"a[y"]},"fields":{},"shadow":false,"topLevel":true,"x":14155,"y":64},"a[y":{"opcode":"procedures_prototype","next":null,"parent":"aqV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Ne":{"opcode":"data_setvariableto","next":"xe","parent":"aqV","inputs":{"VALUE":[3,"aqW",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"aqW":{"opcode":"data_itemoflist","next":null,"parent":"Ne","inputs":{"INDEX":[3,"a[z",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a[z":{"opcode":"operator_add","next":null,"parent":"aqW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"xe":{"opcode":"control_if","next":"xf","parent":"Ne","inputs":{"CONDITION":[2,"aqX"],"SUBSTACK":[2,"Nf"]},"fields":{},"shadow":false,"topLevel":false},"aqX":{"opcode":"operator_equals","next":null,"parent":"xe","inputs":{"OPERAND1":[3,"a[A",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[A":{"opcode":"operator_mod","next":null,"parent":"aqX","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nf":{"opcode":"data_setvariableto","next":"xg","parent":"xe","inputs":{"VALUE":[3,"a[B",[10,""]]},"fields":{"VARIABLE":["@nmi_enabled","2j/RBbii5O{|d#5d)@hc"]},"shadow":false,"topLevel":false},"a[B":{"opcode":"operator_letter_of","next":null,"parent":"Nf","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xg":{"opcode":"control_if","next":"Ng","parent":"Nf","inputs":{"CONDITION":[2,"Nh"],"SUBSTACK":[2,"a[C"]},"fields":{},"shadow":false,"topLevel":false},"Nh":{"opcode":"operator_and","next":null,"parent":"xg","inputs":{"OPERAND1":[2,"a[D"],"OPERAND2":[2,"a[E"]},"fields":{},"shadow":false,"topLevel":false},"a[D":{"opcode":"operator_equals","next":null,"parent":"Nh","inputs":{"OPERAND1":[3,[12,"@nmi_enabled","2j/RBbii5O{|d#5d)@hc"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[E":{"opcode":"operator_equals","next":null,"parent":"Nh","inputs":{"OPERAND1":[3,[12,"@nmi_flag","]o%cE!~|lER;?d)!WgyR"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[C":{"opcode":"data_setvariableto","next":null,"parent":"xg","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"Ng":{"opcode":"data_setvariableto","next":"Ni","parent":"xg","inputs":{"VALUE":[3,"aqY",[10,""]]},"fields":{"VARIABLE":["@sprite_size","6-5_Tcd.JImB^+U#4bLB"]},"shadow":false,"topLevel":false},"aqY":{"opcode":"operator_add","next":null,"parent":"Ng","inputs":{"NUM1":[3,"a[F",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[F":{"opcode":"operator_letter_of","next":null,"parent":"aqY","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ni":{"opcode":"data_setvariableto","next":"Nj","parent":"Ng","inputs":{"VALUE":[3,"aqZ",[10,""]]},"fields":{"VARIABLE":["@bg_pattern","vTq-oq{gvgqfjW3L4iSt"]},"shadow":false,"topLevel":false},"aqZ":{"opcode":"operator_multiply","next":null,"parent":"Ni","inputs":{"NUM1":[3,"a[G",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a[G":{"opcode":"operator_letter_of","next":null,"parent":"aqZ","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nj":{"opcode":"data_setvariableto","next":"Nk","parent":"Ni","inputs":{"VALUE":[3,"aq0",[10,""]]},"fields":{"VARIABLE":["@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"]},"shadow":false,"topLevel":false},"aq0":{"opcode":"operator_multiply","next":null,"parent":"Nj","inputs":{"NUM1":[3,"a[H",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a[H":{"opcode":"operator_letter_of","next":null,"parent":"aq0","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nk":{"opcode":"data_setvariableto","next":"Nl","parent":"Nj","inputs":{"VALUE":[3,"a[I",[10,""]]},"fields":{"VARIABLE":["@vram_incr","|,-0zY+!?.Wa?z)q2;cN"]},"shadow":false,"topLevel":false},"a[I":{"opcode":"operator_letter_of","next":null,"parent":"Nk","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nl":{"opcode":"data_setvariableto","next":"Nm","parent":"Nk","inputs":{"VALUE":[3,"aq1",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aq1":{"opcode":"operator_mathop","next":null,"parent":"Nl","inputs":{"NUM":[3,"a[J",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a[J":{"opcode":"operator_divide","next":null,"parent":"aq1","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"Nm":{"opcode":"data_setvariableto","next":"Nn","parent":"Nl","inputs":{"VALUE":[3,"No",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"No":{"opcode":"operator_add","next":null,"parent":"Nm","inputs":{"NUM1":[3,"aq2",[4,0]],"NUM2":[3,"a[K",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aq2":{"opcode":"operator_subtract","next":null,"parent":"No","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[3,"a[L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[L":{"opcode":"operator_mod","next":null,"parent":"aq2","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a[K":{"opcode":"operator_mod","next":null,"parent":"No","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Nn":{"opcode":"data_setvariableto","next":"a[M","parent":"Nm","inputs":{"VALUE":[3,"Np",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"Np":{"opcode":"operator_add","next":null,"parent":"Nn","inputs":{"NUM1":[3,"a[N",[4,0]],"NUM2":[3,"a[O",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[N":{"opcode":"operator_mod","next":null,"parent":"Np","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a[O":{"opcode":"operator_multiply","next":null,"parent":"Np","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a[M":{"opcode":"control_stop","next":null,"parent":"Nn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xf":{"opcode":"control_if","next":"xh","parent":"xe","inputs":{"CONDITION":[2,"aq3"],"SUBSTACK":[2,"Nq"]},"fields":{},"shadow":false,"topLevel":false},"aq3":{"opcode":"operator_equals","next":null,"parent":"xf","inputs":{"OPERAND1":[3,"a[P",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[P":{"opcode":"operator_mod","next":null,"parent":"aq3","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nq":{"opcode":"data_setvariableto","next":"Nr","parent":"xf","inputs":{"VALUE":[3,"a[Q",[10,""]]},"fields":{"VARIABLE":["@render_sprite","xu#/+b%vNGX}5y8HCFJ#"]},"shadow":false,"topLevel":false},"a[Q":{"opcode":"operator_letter_of","next":null,"parent":"Nq","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nr":{"opcode":"data_setvariableto","next":"Ns","parent":"Nq","inputs":{"VALUE":[3,"a[R",[10,""]]},"fields":{"VARIABLE":["@render_bg","~C;tFyLG;WJlq~1ZPX1f"]},"shadow":false,"topLevel":false},"a[R":{"opcode":"operator_letter_of","next":null,"parent":"Nr","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ns":{"opcode":"data_setvariableto","next":"Nt","parent":"Nr","inputs":{"VALUE":[3,"aq4",[10,""]]},"fields":{"VARIABLE":["render_enabled","kG=l#K?vQ345t{T6HPPz"]},"shadow":false,"topLevel":false},"aq4":{"opcode":"operator_add","next":null,"parent":"Ns","inputs":{"NUM1":[3,"Nu",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Nu":{"opcode":"operator_or","next":null,"parent":"aq4","inputs":{"OPERAND1":[2,"a[S"],"OPERAND2":[2,"a[T"]},"fields":{},"shadow":false,"topLevel":false},"a[S":{"opcode":"operator_equals","next":null,"parent":"Nu","inputs":{"OPERAND1":[3,[12,"@render_bg","~C;tFyLG;WJlq~1ZPX1f"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[T":{"opcode":"operator_equals","next":null,"parent":"Nu","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nt":{"opcode":"data_setvariableto","next":"Nv","parent":"Ns","inputs":{"VALUE":[3,"a[U",[10,""]]},"fields":{"VARIABLE":["@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"]},"shadow":false,"topLevel":false},"a[U":{"opcode":"operator_letter_of","next":null,"parent":"Nt","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nv":{"opcode":"data_setvariableto","next":"a[V","parent":"Nt","inputs":{"VALUE":[3,"a[W",[10,""]]},"fields":{"VARIABLE":["@mask_bg","rp0u9foKc3@?]%7O5HRb"]},"shadow":false,"topLevel":false},"a[W":{"opcode":"operator_letter_of","next":null,"parent":"Nv","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a[V":{"opcode":"control_stop","next":null,"parent":"Nv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xh":{"opcode":"control_if","next":"xi","parent":"xf","inputs":{"CONDITION":[2,"aq5"],"SUBSTACK":[2,"Nw"]},"fields":{},"shadow":false,"topLevel":false},"aq5":{"opcode":"operator_equals","next":null,"parent":"xh","inputs":{"OPERAND1":[3,"a[X",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a[X":{"opcode":"operator_mod","next":null,"parent":"aq5","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nw":{"opcode":"data_setvariableto","next":"a[Y","parent":"xh","inputs":{"VALUE":[3,"a[Z",[10,""]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"a[Z":{"opcode":"operator_add","next":null,"parent":"Nw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[Y":{"opcode":"control_stop","next":null,"parent":"Nw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xi":{"opcode":"control_if","next":"xj","parent":"xh","inputs":{"CONDITION":[2,"aq6"],"SUBSTACK":[2,"aq7"]},"fields":{},"shadow":false,"topLevel":false},"aq6":{"opcode":"operator_equals","next":null,"parent":"xi","inputs":{"OPERAND1":[3,"a[0",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a[0":{"opcode":"operator_mod","next":null,"parent":"aq6","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aq7":{"opcode":"data_replaceitemoflist","next":"aq8","parent":"xi","inputs":{"INDEX":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"aq8":{"opcode":"data_changevariableby","next":"xk","parent":"aq7","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"xk":{"opcode":"control_if","next":"a[1","parent":"aq8","inputs":{"CONDITION":[2,"a[2"],"SUBSTACK":[2,"a[3"]},"fields":{},"shadow":false,"topLevel":false},"a[2":{"opcode":"operator_equals","next":null,"parent":"xk","inputs":{"OPERAND1":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[10,""]],"OPERAND2":[1,[10,"257"]]},"fields":{},"shadow":false,"topLevel":false},"a[3":{"opcode":"data_setvariableto","next":null,"parent":"xk","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"a[1":{"opcode":"control_stop","next":null,"parent":"xk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xj":{"opcode":"control_if","next":"xl","parent":"xi","inputs":{"CONDITION":[2,"aq9"],"SUBSTACK":[2,"ja"]},"fields":{},"shadow":false,"topLevel":false},"aq9":{"opcode":"operator_equals","next":null,"parent":"xj","inputs":{"OPERAND1":[3,"a[4",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a[4":{"opcode":"operator_mod","next":null,"parent":"aq9","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ja":{"opcode":"control_if_else","next":"a[5","parent":"xj","inputs":{"CONDITION":[2,"a[6"],"SUBSTACK":[2,"Nx"],"SUBSTACK2":[2,"Ny"]},"fields":{},"shadow":false,"topLevel":false},"a[6":{"opcode":"operator_equals","next":null,"parent":"ja","inputs":{"OPERAND1":[3,[12,"@write_toggle","5@CAuX+T_vc:]!OZM32!"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Nx":{"opcode":"data_setvariableto","next":"Nz","parent":"ja","inputs":{"VALUE":[3,"NA",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"NA":{"opcode":"operator_add","next":null,"parent":"Nx","inputs":{"NUM1":[3,"aq!",[4,0]],"NUM2":[3,"aq#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aq!":{"opcode":"operator_subtract","next":null,"parent":"NA","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[3,"a[7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[7":{"opcode":"operator_mod","next":null,"parent":"aq!","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aq#":{"opcode":"operator_mathop","next":null,"parent":"NA","inputs":{"NUM":[3,"a[8",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a[8":{"opcode":"operator_divide","next":null,"parent":"aq#","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nz":{"opcode":"data_setvariableto","next":"a[9","parent":"Nx","inputs":{"VALUE":[3,"a[!",[10,""]]},"fields":{"VARIABLE":["@fine_x","s2;D+jIwjcX@LdHBZp2L"]},"shadow":false,"topLevel":false},"a[!":{"opcode":"operator_mod","next":null,"parent":"Nz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a[9":{"opcode":"data_setvariableto","next":null,"parent":"Nz","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"Ny":{"opcode":"data_setvariableto","next":"NB","parent":"ja","inputs":{"VALUE":[3,"aq%",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aq%":{"opcode":"operator_mathop","next":null,"parent":"Ny","inputs":{"NUM":[3,"a[#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a[#":{"opcode":"operator_divide","next":null,"parent":"aq%","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"NB":{"opcode":"data_setvariableto","next":"NC","parent":"Ny","inputs":{"VALUE":[3,"a[%",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"a[%":{"opcode":"operator_mod","next":null,"parent":"NB","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"NC":{"opcode":"data_changevariableby","next":"ND","parent":"NB","inputs":{"VALUE":[3,"aq(",[4,0]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aq(":{"opcode":"operator_multiply","next":null,"parent":"NC","inputs":{"NUM1":[3,"aq)",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aq)":{"opcode":"operator_subtract","next":null,"parent":"aq(","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"a[(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[(":{"opcode":"operator_mod","next":null,"parent":"aq)","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ND":{"opcode":"data_setvariableto","next":"NE","parent":"NC","inputs":{"VALUE":[3,"NF",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"NF":{"opcode":"operator_add","next":null,"parent":"ND","inputs":{"NUM1":[3,"a[)",[4,0]],"NUM2":[3,"aq*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[)":{"opcode":"operator_mod","next":null,"parent":"NF","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aq*":{"opcode":"operator_multiply","next":null,"parent":"NF","inputs":{"NUM1":[3,"a[*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a[*":{"opcode":"operator_mod","next":null,"parent":"aq*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"NE":{"opcode":"data_changevariableby","next":"a[+","parent":"ND","inputs":{"VALUE":[3,"a[,",[4,0]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"a[,":{"opcode":"operator_multiply","next":null,"parent":"NE","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a[+":{"opcode":"data_setvariableto","next":null,"parent":"NE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"a[5":{"opcode":"control_stop","next":null,"parent":"ja","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xl":{"opcode":"control_if","next":"NG","parent":"xj","inputs":{"CONDITION":[2,"aq+"],"SUBSTACK":[2,"jb"]},"fields":{},"shadow":false,"topLevel":false},"aq+":{"opcode":"operator_equals","next":null,"parent":"xl","inputs":{"OPERAND1":[3,"a[-",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a[-":{"opcode":"operator_mod","next":null,"parent":"aq+","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jb":{"opcode":"control_if_else","next":"a[.","parent":"xl","inputs":{"CONDITION":[2,"a[/"],"SUBSTACK":[2,"NH"],"SUBSTACK2":[2,"NI"]},"fields":{},"shadow":false,"topLevel":false},"a[/":{"opcode":"operator_equals","next":null,"parent":"jb","inputs":{"OPERAND1":[3,[12,"@write_toggle","5@CAuX+T_vc:]!OZM32!"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"NH":{"opcode":"data_setvariableto","next":"NJ","parent":"jb","inputs":{"VALUE":[3,"a[:",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a[:":{"opcode":"operator_mod","next":null,"parent":"NH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"NJ":{"opcode":"data_setvariableto","next":"a[;","parent":"NH","inputs":{"VALUE":[3,"NK",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"NK":{"opcode":"operator_add","next":null,"parent":"NJ","inputs":{"NUM1":[3,"a[=",[4,0]],"NUM2":[3,"a[?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[=":{"opcode":"operator_mod","next":null,"parent":"NK","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a[?":{"opcode":"operator_multiply","next":null,"parent":"NK","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a[;":{"opcode":"data_setvariableto","next":null,"parent":"NJ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"NI":{"opcode":"data_setvariableto","next":"aq,","parent":"jb","inputs":{"VALUE":[3,"aq-",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aq-":{"opcode":"operator_subtract","next":null,"parent":"NI","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[3,"a[@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a[@":{"opcode":"operator_mod","next":null,"parent":"aq-","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aq,":{"opcode":"data_changevariableby","next":"aq.","parent":"NI","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aq.":{"opcode":"data_setvariableto","next":"a[[","parent":"aq,","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"a[[":{"opcode":"data_setvariableto","next":null,"parent":"aq.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"a[.":{"opcode":"control_stop","next":null,"parent":"jb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"NG":{"opcode":"control_if","next":null,"parent":"xl","inputs":{"CONDITION":[2,"aq/"],"SUBSTACK":[2,"jc"]},"fields":{},"shadow":false,"topLevel":false},"aq/":{"opcode":"operator_equals","next":null,"parent":"NG","inputs":{"OPERAND1":[3,"a[]",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a[]":{"opcode":"operator_mod","next":null,"parent":"aq/","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jc":{"opcode":"control_if_else","next":"xm","parent":"NG","inputs":{"CONDITION":[2,"a[^"],"SUBSTACK":[2,"xn"],"SUBSTACK2":[2,"jd"]},"fields":{},"shadow":false,"topLevel":false},"a[^":{"opcode":"operator_lt","next":null,"parent":"jc","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"16128"]]},"fields":{},"shadow":false,"topLevel":false},"xn":{"opcode":"control_if","next":"NL","parent":"jc","inputs":{"CONDITION":[2,"NM"],"SUBSTACK":[2,"NN"]},"fields":{},"shadow":false,"topLevel":false},"NM":{"opcode":"operator_and","next":null,"parent":"xn","inputs":{"OPERAND1":[2,"a[_"],"OPERAND2":[2,"a[`"]},"fields":{},"shadow":false,"topLevel":false},"a[_":{"opcode":"operator_lt","next":null,"parent":"NM","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a[`":{"opcode":"operator_equals","next":null,"parent":"NM","inputs":{"OPERAND1":[3,[12,"chr_ram","70;C?(`taL+qCsw6v*gi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"NN":{"opcode":"data_replaceitemoflist","next":"a[{","parent":"xn","inputs":{"INDEX":[3,"a[|",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"a[|":{"opcode":"operator_add","next":null,"parent":"NN","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a[{":{"opcode":"data_setvariableto","next":null,"parent":"NN","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"NL":{"opcode":"control_if","next":null,"parent":"xn","inputs":{"CONDITION":[2,"a[}"],"SUBSTACK":[2,"aq:"]},"fields":{},"shadow":false,"topLevel":false},"a[}":{"opcode":"operator_gt","next":null,"parent":"NL","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"aq:":{"opcode":"procedures_call","next":"NO","parent":"NL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write nt","argumentids":"[]","warp":"true"}},"NO":{"opcode":"control_if","next":null,"parent":"aq:","inputs":{"CONDITION":[2,"aq;"],"SUBSTACK":[2,"a[~"]},"fields":{},"shadow":false,"topLevel":false},"aq;":{"opcode":"operator_gt","next":null,"parent":"NO","inputs":{"OPERAND1":[3,"a]a",[10,""]],"OPERAND2":[1,[10,"959"]]},"fields":{},"shadow":false,"topLevel":false},"a]a":{"opcode":"operator_mod","next":null,"parent":"aq;","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a[~":{"opcode":"procedures_call","next":null,"parent":"NO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write at","argumentids":"[]","warp":"true"}},"jd":{"opcode":"control_if_else","next":"NP","parent":"jc","inputs":{"CONDITION":[2,"aq="],"SUBSTACK":[2,"NQ"],"SUBSTACK2":[2,"NR"]},"fields":{},"shadow":false,"topLevel":false},"aq=":{"opcode":"operator_lt","next":null,"parent":"jd","inputs":{"OPERAND1":[3,"a]b",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a]b":{"opcode":"operator_mod","next":null,"parent":"aq=","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"NQ":{"opcode":"data_replaceitemoflist","next":null,"parent":"jd","inputs":{"INDEX":[3,"aq?",[7,0]],"ITEM":[3,"aq@",[10,""]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aq?":{"opcode":"operator_add","next":null,"parent":"NQ","inputs":{"NUM1":[3,"a]c",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]c":{"opcode":"operator_mod","next":null,"parent":"aq?","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aq@":{"opcode":"data_itemoflist","next":null,"parent":"NQ","inputs":{"INDEX":[3,"aq[",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"aq[":{"opcode":"operator_add","next":null,"parent":"aq@","inputs":{"NUM1":[3,"a]d",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]d":{"opcode":"operator_mod","next":null,"parent":"aq[","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"NR":{"opcode":"data_replaceitemoflist","next":null,"parent":"jd","inputs":{"INDEX":[3,"aq]",[7,0]],"ITEM":[3,"aq^",[10,""]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aq]":{"opcode":"operator_add","next":null,"parent":"NR","inputs":{"NUM1":[3,"a]e",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]e":{"opcode":"operator_mod","next":null,"parent":"aq]","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aq^":{"opcode":"data_itemoflist","next":null,"parent":"NR","inputs":{"INDEX":[3,"aq_",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"aq_":{"opcode":"operator_add","next":null,"parent":"aq^","inputs":{"NUM1":[3,"a]f",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]f":{"opcode":"operator_mod","next":null,"parent":"aq_","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"NP":{"opcode":"control_if","next":null,"parent":"jd","inputs":{"CONDITION":[2,"aq`"],"SUBSTACK":[2,"aq{"]},"fields":{},"shadow":false,"topLevel":false},"aq`":{"opcode":"operator_equals","next":null,"parent":"NP","inputs":{"OPERAND1":[3,"a]g",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]g":{"opcode":"operator_mod","next":null,"parent":"aq`","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aq{":{"opcode":"data_setvariableto","next":null,"parent":"NP","inputs":{"VALUE":[3,"aq|",[10,""]]},"fields":{"VARIABLE":["bg_color","~s-a1kNvmHy%k|6}Y3^~"]},"shadow":false,"topLevel":false},"aq|":{"opcode":"data_itemoflist","next":null,"parent":"aq{","inputs":{"INDEX":[3,"aq}",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"aq}":{"opcode":"operator_add","next":null,"parent":"aq|","inputs":{"NUM1":[3,"a]h",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]h":{"opcode":"operator_mod","next":null,"parent":"aq}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"xm":{"opcode":"control_if","next":"NS","parent":"jc","inputs":{"CONDITION":[2,"a]i"],"SUBSTACK":[2,"aq~"]},"fields":{},"shadow":false,"topLevel":false},"a]i":{"opcode":"operator_equals","next":null,"parent":"xm","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aq~":{"opcode":"data_changevariableby","next":"a]j","parent":"xm","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"a]j":{"opcode":"control_stop","next":null,"parent":"aq~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"NS":{"opcode":"control_if","next":null,"parent":"xm","inputs":{"CONDITION":[2,"a]k"],"SUBSTACK":[2,"ara"]},"fields":{},"shadow":false,"topLevel":false},"a]k":{"opcode":"operator_equals","next":null,"parent":"NS","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ara":{"opcode":"data_changevariableby","next":"a]l","parent":"NS","inputs":{"VALUE":[1,[4,"32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"a]l":{"opcode":"control_stop","next":null,"parent":"ara","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"arb":{"opcode":"procedures_definition","next":"xo","parent":null,"inputs":{"custom_block":[1,"a]m"]},"fields":{},"shadow":false,"topLevel":true,"x":15328,"y":64},"a]m":{"opcode":"procedures_prototype","next":null,"parent":"arb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"xo":{"opcode":"control_if","next":"xp","parent":"arb","inputs":{"CONDITION":[2,"arc"],"SUBSTACK":[2,"NT"]},"fields":{},"shadow":false,"topLevel":false},"arc":{"opcode":"operator_equals","next":null,"parent":"xo","inputs":{"OPERAND1":[3,"a]n",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a]n":{"opcode":"operator_mod","next":null,"parent":"arc","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"NT":{"opcode":"data_setvariableto","next":"NU","parent":"xo","inputs":{"VALUE":[3,"NV",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"NV":{"opcode":"operator_join","next":null,"parent":"NT","inputs":{"STRING1":[3,"a]o",[10,""]],"STRING2":[3,"NW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]o":{"opcode":"operator_letter_of","next":null,"parent":"NV","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"NW":{"opcode":"operator_join","next":null,"parent":"NV","inputs":{"STRING1":[3,"a]p",[10,""]],"STRING2":[3,"NX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]p":{"opcode":"operator_letter_of","next":null,"parent":"NW","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"NX":{"opcode":"operator_join","next":null,"parent":"NW","inputs":{"STRING1":[3,"a]q",[10,""]],"STRING2":[3,"NY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]q":{"opcode":"operator_letter_of","next":null,"parent":"NX","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"NY":{"opcode":"operator_join","next":null,"parent":"NX","inputs":{"STRING1":[3,"a]r",[10,""]],"STRING2":[3,"a]s",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]r":{"opcode":"operator_letter_of","next":null,"parent":"NY","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]s":{"opcode":"operator_letter_of","next":null,"parent":"NY","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"NU":{"opcode":"data_setvariableto","next":"ard","parent":"NT","inputs":{"VALUE":[3,"NZ",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"NZ":{"opcode":"operator_join","next":null,"parent":"NU","inputs":{"STRING1":[3,"a]t",[10,""]],"STRING2":[3,"a]u",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]t":{"opcode":"operator_join","next":null,"parent":"NZ","inputs":{"STRING1":[3,[12,"@nmi_flag","]o%cE!~|lER;?d)!WgyR"],[10,""]],"STRING2":[3,[12,"@sprite_hit","Y5dm@[4]PzSED`#Df2W["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]u":{"opcode":"operator_join","next":null,"parent":"NZ","inputs":{"STRING1":[3,[12,"@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"],[10,""]],"STRING2":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ard":{"opcode":"data_setvariableto","next":"are","parent":"NU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"are":{"opcode":"data_setvariableto","next":"arf","parent":"ard","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"arf":{"opcode":"data_setvariableto","next":"N0","parent":"are","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"N0":{"opcode":"data_setvariableto","next":"a]v","parent":"arf","inputs":{"VALUE":[3,"arg",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"arg":{"opcode":"operator_add","next":null,"parent":"N0","inputs":{"NUM1":[3,"a]w",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a]w":{"opcode":"operator_join","next":null,"parent":"arg","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a]v":{"opcode":"control_stop","next":null,"parent":"N0","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xp":{"opcode":"control_if","next":"N1","parent":"xo","inputs":{"CONDITION":[2,"arh"],"SUBSTACK":[2,"N2"]},"fields":{},"shadow":false,"topLevel":false},"arh":{"opcode":"operator_equals","next":null,"parent":"xp","inputs":{"OPERAND1":[3,"a]x",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a]x":{"opcode":"operator_mod","next":null,"parent":"arh","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N2":{"opcode":"data_setvariableto","next":"a]y","parent":"xp","inputs":{"VALUE":[3,"a]z",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"a]z":{"opcode":"data_itemoflist","next":null,"parent":"N2","inputs":{"INDEX":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"a]y":{"opcode":"control_stop","next":null,"parent":"N2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"N1":{"opcode":"control_if","next":null,"parent":"xp","inputs":{"CONDITION":[2,"ari"],"SUBSTACK":[2,"arj"]},"fields":{},"shadow":false,"topLevel":false},"ari":{"opcode":"operator_equals","next":null,"parent":"N1","inputs":{"OPERAND1":[3,"a]A",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a]A":{"opcode":"operator_mod","next":null,"parent":"ari","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"arj":{"opcode":"data_setvariableto","next":"je","parent":"N1","inputs":{"VALUE":[3,[12,"@read_buffer","}Pgpy`,bfpd--EE?mgCu"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"je":{"opcode":"control_if_else","next":"xq","parent":"arj","inputs":{"CONDITION":[2,"a]B"],"SUBSTACK":[2,"ark"],"SUBSTACK2":[2,"arl"]},"fields":{},"shadow":false,"topLevel":false},"a]B":{"opcode":"operator_lt","next":null,"parent":"je","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"ark":{"opcode":"procedures_call","next":"a]C","parent":"je","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read chr","argumentids":"[]","warp":"true"}},"a]C":{"opcode":"data_setvariableto","next":null,"parent":"ark","inputs":{"VALUE":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"arl":{"opcode":"procedures_call","next":"a]D","parent":"je","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","warp":"true"}},"a]D":{"opcode":"data_setvariableto","next":null,"parent":"arl","inputs":{"VALUE":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[10,""]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"xq":{"opcode":"control_if","next":"N3","parent":"je","inputs":{"CONDITION":[2,"a]E"],"SUBSTACK":[2,"arm"]},"fields":{},"shadow":false,"topLevel":false},"a]E":{"opcode":"operator_equals","next":null,"parent":"xq","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arm":{"opcode":"data_changevariableby","next":"a]F","parent":"xq","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"a]F":{"opcode":"control_stop","next":null,"parent":"arm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"N3":{"opcode":"control_if","next":null,"parent":"xq","inputs":{"CONDITION":[2,"a]G"],"SUBSTACK":[2,"arn"]},"fields":{},"shadow":false,"topLevel":false},"a]G":{"opcode":"operator_equals","next":null,"parent":"N3","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"arn":{"opcode":"data_changevariableby","next":"a]H","parent":"N3","inputs":{"VALUE":[1,[4,"32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"a]H":{"opcode":"control_stop","next":null,"parent":"arn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a]I":{"opcode":"event_whenbroadcastreceived","next":"aro","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":17100,"y":64},"arp":{"opcode":"data_setvariableto","next":"arq","parent":"aro","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"arq":{"opcode":"data_setvariableto","next":"arr","parent":"arp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"arr":{"opcode":"data_setvariableto","next":"ars","parent":"arq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"ars":{"opcode":"data_setvariableto","next":"art","parent":"arr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"art":{"opcode":"data_setvariableto","next":"aru","parent":"ars","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_enabled","e..v2zd5D#2(~C2#;wE5"]},"shadow":false,"topLevel":false},"aru":{"opcode":"data_setvariableto","next":"arv","parent":"art","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"]},"shadow":false,"topLevel":false},"arv":{"opcode":"data_setvariableto","next":"arw","parent":"aru","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"]},"shadow":false,"topLevel":false},"arw":{"opcode":"data_setvariableto","next":"arx","parent":"arv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"]},"shadow":false,"topLevel":false},"arx":{"opcode":"data_setvariableto","next":"ary","parent":"arw","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"ary":{"opcode":"data_setvariableto","next":"arz","parent":"arx","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"arz":{"opcode":"data_setvariableto","next":"arA","parent":"ary","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"arA":{"opcode":"data_setvariableto","next":"arB","parent":"arz","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"arB":{"opcode":"data_setvariableto","next":"arC","parent":"arA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"]},"shadow":false,"topLevel":false},"arC":{"opcode":"data_setvariableto","next":"arD","parent":"arB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"]},"shadow":false,"topLevel":false},"arD":{"opcode":"data_setvariableto","next":"arE","parent":"arC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"]},"shadow":false,"topLevel":false},"arE":{"opcode":"data_setvariableto","next":"N4","parent":"arD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"]},"shadow":false,"topLevel":false},"arF":{"opcode":"data_replaceitemoflist","next":"arG","parent":"N4","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"arG":{"opcode":"data_replaceitemoflist","next":"arH","parent":"arF","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"arH":{"opcode":"data_replaceitemoflist","next":"a]J","parent":"arG","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a]J":{"opcode":"data_replaceitemoflist","next":null,"parent":"arH","inputs":{"INDEX":[1,[7,"10"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"arI":{"opcode":"procedures_definition","next":"jf","parent":null,"inputs":{"custom_block":[1,"a]K"]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":2776},"a]K":{"opcode":"procedures_prototype","next":null,"parent":"arI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"jf":{"opcode":"control_if_else","next":"jg","parent":"arI","inputs":{"CONDITION":[2,"a]L"],"SUBSTACK":[2,"arJ"],"SUBSTACK2":[2,"xr"]},"fields":{},"shadow":false,"topLevel":false},"a]L":{"opcode":"operator_equals","next":null,"parent":"jf","inputs":{"OPERAND1":[3,[12,"#sq0_start","#Av;W`BG=vl=H0s()-!="],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"arJ":{"opcode":"data_setvariableto","next":"arK","parent":"jf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_start","#Av;W`BG=vl=H0s()-!="]},"shadow":false,"topLevel":false},"arK":{"opcode":"data_setvariableto","next":"a]M","parent":"arJ","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#sq0_decay","[Gs~6]:p]neDG4uT.*8R"]},"shadow":false,"topLevel":false},"a]M":{"opcode":"data_setvariableto","next":null,"parent":"arK","inputs":{"VALUE":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[10,""]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"xr":{"opcode":"control_if_else","next":null,"parent":"jf","inputs":{"CONDITION":[2,"a]N"],"SUBSTACK":[2,"arL"],"SUBSTACK2":[2,"a]O"]},"fields":{},"shadow":false,"topLevel":false},"a]N":{"opcode":"operator_equals","next":null,"parent":"xr","inputs":{"OPERAND1":[3,[12,"#sq0_divider","NEk/F*0W|$g}k?V!YnQs"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arL":{"opcode":"data_setvariableto","next":"N5","parent":"xr","inputs":{"VALUE":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[10,""]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"N5":{"opcode":"control_if","next":null,"parent":"arL","inputs":{"CONDITION":[2,"a]P"],"SUBSTACK":[2,"a]Q"]},"fields":{},"shadow":false,"topLevel":false},"a]P":{"opcode":"operator_gt","next":null,"parent":"N5","inputs":{"OPERAND1":[3,[12,"#sq0_decay","[Gs~6]:p]neDG4uT.*8R"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]Q":{"opcode":"data_changevariableby","next":null,"parent":"N5","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_decay","[Gs~6]:p]neDG4uT.*8R"]},"shadow":false,"topLevel":false},"a]O":{"opcode":"data_changevariableby","next":null,"parent":"xr","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"jg":{"opcode":"control_if_else","next":"jh","parent":"jf","inputs":{"CONDITION":[2,"a]R"],"SUBSTACK":[2,"arM"],"SUBSTACK2":[2,"xs"]},"fields":{},"shadow":false,"topLevel":false},"a]R":{"opcode":"operator_equals","next":null,"parent":"jg","inputs":{"OPERAND1":[3,[12,"#sq1_start","@4/+@;`xIa1GD6lDn;es"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"arM":{"opcode":"data_setvariableto","next":"arN","parent":"jg","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_start","@4/+@;`xIa1GD6lDn;es"]},"shadow":false,"topLevel":false},"arN":{"opcode":"data_setvariableto","next":"a]S","parent":"arM","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#sq1_decay","N3TVGftA]FVjj5Akw]@K"]},"shadow":false,"topLevel":false},"a]S":{"opcode":"data_setvariableto","next":null,"parent":"arN","inputs":{"VALUE":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[10,""]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"xs":{"opcode":"control_if_else","next":null,"parent":"jg","inputs":{"CONDITION":[2,"a]T"],"SUBSTACK":[2,"arO"],"SUBSTACK2":[2,"a]U"]},"fields":{},"shadow":false,"topLevel":false},"a]T":{"opcode":"operator_equals","next":null,"parent":"xs","inputs":{"OPERAND1":[3,[12,"#sq1_divider","{;O=v5i=Jm,IZB/SItqV"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arO":{"opcode":"data_setvariableto","next":"N6","parent":"xs","inputs":{"VALUE":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[10,""]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"N6":{"opcode":"control_if","next":null,"parent":"arO","inputs":{"CONDITION":[2,"a]V"],"SUBSTACK":[2,"a]W"]},"fields":{},"shadow":false,"topLevel":false},"a]V":{"opcode":"operator_gt","next":null,"parent":"N6","inputs":{"OPERAND1":[3,[12,"#sq1_decay","N3TVGftA]FVjj5Akw]@K"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]W":{"opcode":"data_changevariableby","next":null,"parent":"N6","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_decay","N3TVGftA]FVjj5Akw]@K"]},"shadow":false,"topLevel":false},"a]U":{"opcode":"data_changevariableby","next":null,"parent":"xs","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"jh":{"opcode":"control_if_else","next":"xt","parent":"jg","inputs":{"CONDITION":[2,"a]X"],"SUBSTACK":[2,"a]Y"],"SUBSTACK2":[2,"N7"]},"fields":{},"shadow":false,"topLevel":false},"a]X":{"opcode":"operator_equals","next":null,"parent":"jh","inputs":{"OPERAND1":[3,[12,"#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]Y":{"opcode":"data_setvariableto","next":null,"parent":"jh","inputs":{"VALUE":[3,[12,"#tri_reload","|%-hP?i[P7T1dz/;qptT"],[10,""]]},"fields":{"VARIABLE":["#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"]},"shadow":false,"topLevel":false},"N7":{"opcode":"control_if","next":null,"parent":"jh","inputs":{"CONDITION":[2,"a]Z"],"SUBSTACK":[2,"a]0"]},"fields":{},"shadow":false,"topLevel":false},"a]Z":{"opcode":"operator_gt","next":null,"parent":"N7","inputs":{"OPERAND1":[3,[12,"#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]0":{"opcode":"data_changevariableby","next":null,"parent":"N7","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"]},"shadow":false,"topLevel":false},"xt":{"opcode":"control_if","next":"ji","parent":"jh","inputs":{"CONDITION":[2,"a]1"],"SUBSTACK":[2,"a]2"]},"fields":{},"shadow":false,"topLevel":false},"a]1":{"opcode":"operator_equals","next":null,"parent":"xt","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]2":{"opcode":"data_setvariableto","next":null,"parent":"xt","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"ji":{"opcode":"control_if_else","next":"N8","parent":"xt","inputs":{"CONDITION":[2,"a]3"],"SUBSTACK":[2,"arP"],"SUBSTACK2":[2,"xu"]},"fields":{},"shadow":false,"topLevel":false},"a]3":{"opcode":"operator_equals","next":null,"parent":"ji","inputs":{"OPERAND1":[3,[12,"#noise_start","wLUu:/;$@K16sJ?,vRSu"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"arP":{"opcode":"data_setvariableto","next":"arQ","parent":"ji","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_start","wLUu:/;$@K16sJ?,vRSu"]},"shadow":false,"topLevel":false},"arQ":{"opcode":"data_setvariableto","next":"a]4","parent":"arP","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#noise_decay","p,u2*;-v*L)r$MCvq%DP"]},"shadow":false,"topLevel":false},"a]4":{"opcode":"data_setvariableto","next":null,"parent":"arQ","inputs":{"VALUE":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[10,""]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"xu":{"opcode":"control_if_else","next":null,"parent":"ji","inputs":{"CONDITION":[2,"a]5"],"SUBSTACK":[2,"arR"],"SUBSTACK2":[2,"a]6"]},"fields":{},"shadow":false,"topLevel":false},"a]5":{"opcode":"operator_equals","next":null,"parent":"xu","inputs":{"OPERAND1":[3,[12,"#noise_divider","](XO5ySg.N?yyt`REZUa"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arR":{"opcode":"data_setvariableto","next":"N9","parent":"xu","inputs":{"VALUE":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[10,""]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"N9":{"opcode":"control_if","next":null,"parent":"arR","inputs":{"CONDITION":[2,"a]7"],"SUBSTACK":[2,"a]8"]},"fields":{},"shadow":false,"topLevel":false},"a]7":{"opcode":"operator_gt","next":null,"parent":"N9","inputs":{"OPERAND1":[3,[12,"#noise_decay","p,u2*;-v*L)r$MCvq%DP"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]8":{"opcode":"data_changevariableby","next":null,"parent":"N9","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_decay","p,u2*;-v*L)r$MCvq%DP"]},"shadow":false,"topLevel":false},"a]6":{"opcode":"data_changevariableby","next":null,"parent":"xu","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"N8":{"opcode":"control_if","next":null,"parent":"ji","inputs":{"CONDITION":[2,"a]9"],"SUBSTACK":[2,"a]!"]},"fields":{},"shadow":false,"topLevel":false},"a]9":{"opcode":"operator_equals","next":null,"parent":"N8","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]!":{"opcode":"procedures_call","next":null,"parent":"N8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu list","argumentids":"[]","warp":"true"}},"arS":{"opcode":"procedures_definition","next":"xv","parent":null,"inputs":{"custom_block":[1,"a]#"]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":5340},"a]#":{"opcode":"procedures_prototype","next":null,"parent":"arS","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"xv":{"opcode":"control_if","next":"arT","parent":"arS","inputs":{"CONDITION":[2,"N!"],"SUBSTACK":[2,"a]%"]},"fields":{},"shadow":false,"topLevel":false},"N!":{"opcode":"operator_and","next":null,"parent":"xv","inputs":{"OPERAND1":[2,"a]("],"OPERAND2":[2,"a])"]},"fields":{},"shadow":false,"topLevel":false},"a](":{"opcode":"operator_equals","next":null,"parent":"N!","inputs":{"OPERAND1":[3,[12,"#sq0_counter_halt","MHM3-iaaIPoFESXtQ;t5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a])":{"opcode":"operator_gt","next":null,"parent":"N!","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]%":{"opcode":"data_changevariableby","next":null,"parent":"xv","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"arT":{"opcode":"procedures_call","next":"xw","parent":"xv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"xw":{"opcode":"control_if","next":"jj","parent":"arT","inputs":{"CONDITION":[2,"N#"],"SUBSTACK":[2,"arU"]},"fields":{},"shadow":false,"topLevel":false},"N#":{"opcode":"operator_and","next":null,"parent":"xw","inputs":{"OPERAND1":[2,"N%"],"OPERAND2":[2,"arV"]},"fields":{},"shadow":false,"topLevel":false},"arV":{"opcode":"operator_not","next":null,"parent":"N#","inputs":{"OPERAND":[2,"N("]},"fields":{},"shadow":false,"topLevel":false},"N(":{"opcode":"operator_or","next":null,"parent":"arV","inputs":{"OPERAND1":[2,"a]*"],"OPERAND2":[2,"a]+"]},"fields":{},"shadow":false,"topLevel":false},"a]*":{"opcode":"operator_lt","next":null,"parent":"N(","inputs":{"OPERAND1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a]+":{"opcode":"operator_gt","next":null,"parent":"N(","inputs":{"OPERAND1":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"arU":{"opcode":"data_setvariableto","next":"a],","parent":"xw","inputs":{"VALUE":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"a],":{"opcode":"procedures_call","next":null,"parent":"arU","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"arW":{"opcode":"procedures_definition","next":"xx","parent":null,"inputs":{"custom_block":[1,"a]-"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":64},"a]-":{"opcode":"procedures_prototype","next":null,"parent":"arW","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"xx":{"opcode":"data_setvariableto","next":"xy","parent":"arW","inputs":{"VALUE":[3,"arX",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"arX":{"opcode":"operator_multiply","next":null,"parent":"xx","inputs":{"NUM1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"xy":{"opcode":"data_changevariableby","next":"xz","parent":"xx","inputs":{"VALUE":[3,"Qq",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"Qq":{"opcode":"operator_multiply","next":null,"parent":"xy","inputs":{"NUM1":[3,"Wo",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Wo":{"opcode":"operator_gt","next":null,"parent":"Qq","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xz":{"opcode":"data_changevariableby","next":"xA","parent":"xy","inputs":{"VALUE":[3,"Qr",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"Qr":{"opcode":"operator_multiply","next":null,"parent":"xz","inputs":{"NUM1":[3,"Wp",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Wp":{"opcode":"operator_gt","next":null,"parent":"Qr","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xA":{"opcode":"data_changevariableby","next":"xB","parent":"xz","inputs":{"VALUE":[3,"Qs",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"Qs":{"opcode":"operator_multiply","next":null,"parent":"xA","inputs":{"NUM1":[3,"Wq",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Wq":{"opcode":"operator_gt","next":null,"parent":"Qs","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xB":{"opcode":"data_changevariableby","next":"or","parent":"xA","inputs":{"VALUE":[3,"Qt",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"Qt":{"opcode":"operator_multiply","next":null,"parent":"xB","inputs":{"NUM1":[3,"Wr",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Wr":{"opcode":"operator_gt","next":null,"parent":"Qt","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"or":{"opcode":"control_if","next":null,"parent":"xB","inputs":{"CONDITION":[2,"arY"],"SUBSTACK":[2,"Qu"]},"fields":{},"shadow":false,"topLevel":false},"arY":{"opcode":"operator_equals","next":null,"parent":"or","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Qu":{"opcode":"data_changevariableby","next":"Ws","parent":"or","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Ws":{"opcode":"data_setvariableto","next":null,"parent":"Qu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"arZ":{"opcode":"procedures_definition","next":"os","parent":null,"inputs":{"custom_block":[1,"a]."]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":700},"a].":{"opcode":"procedures_prototype","next":null,"parent":"arZ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"os":{"opcode":"data_setvariableto","next":"er","parent":"arZ","inputs":{"VALUE":[3,"Qv",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Qv":{"opcode":"data_itemoflist","next":null,"parent":"os","inputs":{"INDEX":[3,"Wt",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"Wt":{"opcode":"operator_add","next":null,"parent":"Qv","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"er":{"opcode":"control_if","next":"cj","parent":"os","inputs":{"CONDITION":[2,"Wu"],"SUBSTACK":[2,"ot"]},"fields":{},"shadow":false,"topLevel":false},"Wu":{"opcode":"operator_equals","next":null,"parent":"er","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"ot":{"opcode":"data_setvariableto","next":"xC","parent":"er","inputs":{"VALUE":[3,"Qw",[10,""]]},"fields":{"VARIABLE":["#sq0_duty","dB0flbU!1%]JaiK.z7Y$"]},"shadow":false,"topLevel":false},"Qw":{"opcode":"operator_mathop","next":null,"parent":"ot","inputs":{"NUM":[3,"Wv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Wv":{"opcode":"operator_divide","next":null,"parent":"Qw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"xC":{"opcode":"data_setvariableto","next":"xD","parent":"ot","inputs":{"VALUE":[3,"ar0",[10,""]]},"fields":{"VARIABLE":["#sq0_counter_halt","MHM3-iaaIPoFESXtQ;t5"]},"shadow":false,"topLevel":false},"ar0":{"opcode":"operator_letter_of","next":null,"parent":"xC","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xD":{"opcode":"data_setvariableto","next":"ou","parent":"xC","inputs":{"VALUE":[3,"ar1",[10,""]]},"fields":{"VARIABLE":["#sq0_constant","wn(;l_KDki8)r5(ghAFC"]},"shadow":false,"topLevel":false},"ar1":{"opcode":"operator_letter_of","next":null,"parent":"xD","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ou":{"opcode":"data_setvariableto","next":"ar2","parent":"xD","inputs":{"VALUE":[3,"ar3",[10,""]]},"fields":{"VARIABLE":["#sq0_volume","A%!%qRtLZC]nW~p,)!i%"]},"shadow":false,"topLevel":false},"ar3":{"opcode":"operator_mod","next":null,"parent":"ou","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar2":{"opcode":"control_stop","next":null,"parent":"ou","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cj":{"opcode":"control_if","next":"ck","parent":"er","inputs":{"CONDITION":[2,"Ww"],"SUBSTACK":[2,"ov"]},"fields":{},"shadow":false,"topLevel":false},"Ww":{"opcode":"operator_equals","next":null,"parent":"cj","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16385"]]},"fields":{},"shadow":false,"topLevel":false},"ov":{"opcode":"data_setvariableto","next":"xE","parent":"cj","inputs":{"VALUE":[3,"Qx",[10,""]]},"fields":{"VARIABLE":["#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"]},"shadow":false,"topLevel":false},"Qx":{"opcode":"operator_add","next":null,"parent":"ov","inputs":{"NUM1":[3,"Wx",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Wx":{"opcode":"operator_gt","next":null,"parent":"Qx","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"xE":{"opcode":"data_setvariableto","next":"xF","parent":"ov","inputs":{"VALUE":[3,"Qy",[10,""]]},"fields":{"VARIABLE":["#sq0_swperiod","6ZtJprVet|52~YE]#e.R"]},"shadow":false,"topLevel":false},"Qy":{"opcode":"operator_mod","next":null,"parent":"xE","inputs":{"NUM1":[3,"N)",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N)":{"opcode":"operator_mathop","next":null,"parent":"Qy","inputs":{"NUM":[3,"Wy",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Wy":{"opcode":"operator_divide","next":null,"parent":"N)","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"xF":{"opcode":"data_setvariableto","next":"ow","parent":"xE","inputs":{"VALUE":[3,"Qz",[10,""]]},"fields":{"VARIABLE":["#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"]},"shadow":false,"topLevel":false},"Qz":{"opcode":"operator_add","next":null,"parent":"xF","inputs":{"NUM1":[3,"N*",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"N*":{"opcode":"operator_gt","next":null,"parent":"Qz","inputs":{"OPERAND1":[3,"Wz",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Wz":{"opcode":"operator_mod","next":null,"parent":"N*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ow":{"opcode":"data_setvariableto","next":"QA","parent":"xF","inputs":{"VALUE":[3,"ar4",[10,""]]},"fields":{"VARIABLE":["#sq0_swshift","x):Akro;B?IDs}?a(1S#"]},"shadow":false,"topLevel":false},"ar4":{"opcode":"operator_mod","next":null,"parent":"ow","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"QA":{"opcode":"data_setvariableto","next":"WA","parent":"ow","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"WA":{"opcode":"control_stop","next":null,"parent":"QA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ck":{"opcode":"control_if","next":"cl","parent":"cj","inputs":{"CONDITION":[2,"WB"],"SUBSTACK":[2,"jk"]},"fields":{},"shadow":false,"topLevel":false},"WB":{"opcode":"operator_equals","next":null,"parent":"ck","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16386"]]},"fields":{},"shadow":false,"topLevel":false},"jk":{"opcode":"data_setvariableto","next":"QB","parent":"ck","inputs":{"VALUE":[3,"QC",[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"QC":{"opcode":"operator_add","next":null,"parent":"jk","inputs":{"NUM1":[3,"N+",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"N+":{"opcode":"operator_subtract","next":null,"parent":"QC","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,"WC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"WC":{"opcode":"operator_mod","next":null,"parent":"N+","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QB":{"opcode":"procedures_call","next":"WD","parent":"jk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"WD":{"opcode":"control_stop","next":null,"parent":"QB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cl":{"opcode":"control_if","next":"cm","parent":"ck","inputs":{"CONDITION":[2,"WE"],"SUBSTACK":[2,"ox"]},"fields":{},"shadow":false,"topLevel":false},"WE":{"opcode":"operator_equals","next":null,"parent":"cl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16387"]]},"fields":{},"shadow":false,"topLevel":false},"ox":{"opcode":"data_setvariableto","next":"cn","parent":"cl","inputs":{"VALUE":[3,"oy",[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"oy":{"opcode":"operator_add","next":null,"parent":"ox","inputs":{"NUM1":[3,"ar5",[4,0]],"NUM2":[3,"QD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar5":{"opcode":"operator_mod","next":null,"parent":"oy","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QD":{"opcode":"operator_multiply","next":null,"parent":"oy","inputs":{"NUM1":[3,"WF",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"WF":{"opcode":"operator_mod","next":null,"parent":"QD","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"cn":{"opcode":"control_if","next":"N,","parent":"ox","inputs":{"CONDITION":[2,"WG"],"SUBSTACK":[2,"N-"]},"fields":{},"shadow":false,"topLevel":false},"WG":{"opcode":"operator_equals","next":null,"parent":"cn","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N-":{"opcode":"data_setvariableto","next":null,"parent":"cn","inputs":{"VALUE":[3,"N.",[10,""]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"N.":{"opcode":"data_itemoflist","next":null,"parent":"N-","inputs":{"INDEX":[3,"N/",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"N/":{"opcode":"operator_add","next":null,"parent":"N.","inputs":{"NUM1":[3,"N:",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N:":{"opcode":"operator_mathop","next":null,"parent":"N/","inputs":{"NUM":[3,"WH",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WH":{"opcode":"operator_divide","next":null,"parent":"N:","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N,":{"opcode":"data_setvariableto","next":"N;","parent":"cn","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_start","#Av;W`BG=vl=H0s()-!="]},"shadow":false,"topLevel":false},"N;":{"opcode":"procedures_call","next":"WI","parent":"N,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"WI":{"opcode":"control_stop","next":null,"parent":"N;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cm":{"opcode":"control_if","next":"co","parent":"cl","inputs":{"CONDITION":[2,"WJ"],"SUBSTACK":[2,"oz"]},"fields":{},"shadow":false,"topLevel":false},"WJ":{"opcode":"operator_equals","next":null,"parent":"cm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16388"]]},"fields":{},"shadow":false,"topLevel":false},"oz":{"opcode":"data_setvariableto","next":"xG","parent":"cm","inputs":{"VALUE":[3,"QE",[10,""]]},"fields":{"VARIABLE":["#sq1_duty","JFkRP]sBcRFZA#p%(s5["]},"shadow":false,"topLevel":false},"QE":{"opcode":"operator_mathop","next":null,"parent":"oz","inputs":{"NUM":[3,"WK",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WK":{"opcode":"operator_divide","next":null,"parent":"QE","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"xG":{"opcode":"data_setvariableto","next":"xH","parent":"oz","inputs":{"VALUE":[3,"ar6",[10,""]]},"fields":{"VARIABLE":["#sq1_counter_halt","a7zy6G,GluFays4z,XP7"]},"shadow":false,"topLevel":false},"ar6":{"opcode":"operator_letter_of","next":null,"parent":"xG","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xH":{"opcode":"data_setvariableto","next":"oA","parent":"xG","inputs":{"VALUE":[3,"ar7",[10,""]]},"fields":{"VARIABLE":["#sq1_constant","V5`gP*J*-[d%pHYl=WL."]},"shadow":false,"topLevel":false},"ar7":{"opcode":"operator_letter_of","next":null,"parent":"xH","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"oA":{"opcode":"data_setvariableto","next":"ar8","parent":"xH","inputs":{"VALUE":[3,"ar9",[10,""]]},"fields":{"VARIABLE":["#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"]},"shadow":false,"topLevel":false},"ar9":{"opcode":"operator_mod","next":null,"parent":"oA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar8":{"opcode":"control_stop","next":null,"parent":"oA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"co":{"opcode":"control_if","next":"cp","parent":"cm","inputs":{"CONDITION":[2,"WL"],"SUBSTACK":[2,"oB"]},"fields":{},"shadow":false,"topLevel":false},"WL":{"opcode":"operator_equals","next":null,"parent":"co","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16389"]]},"fields":{},"shadow":false,"topLevel":false},"oB":{"opcode":"data_setvariableto","next":"xI","parent":"co","inputs":{"VALUE":[3,"QF",[10,""]]},"fields":{"VARIABLE":["#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"]},"shadow":false,"topLevel":false},"QF":{"opcode":"operator_add","next":null,"parent":"oB","inputs":{"NUM1":[3,"WM",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"WM":{"opcode":"operator_gt","next":null,"parent":"QF","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"xI":{"opcode":"data_setvariableto","next":"xJ","parent":"oB","inputs":{"VALUE":[3,"QG",[10,""]]},"fields":{"VARIABLE":["#sq1_swperiod","8IbJ`L:k(VYE2y+AXNN`"]},"shadow":false,"topLevel":false},"QG":{"opcode":"operator_mod","next":null,"parent":"xI","inputs":{"NUM1":[3,"N=",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N=":{"opcode":"operator_mathop","next":null,"parent":"QG","inputs":{"NUM":[3,"WN",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WN":{"opcode":"operator_divide","next":null,"parent":"N=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"xJ":{"opcode":"data_setvariableto","next":"oC","parent":"xI","inputs":{"VALUE":[3,"QH",[10,""]]},"fields":{"VARIABLE":["#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"]},"shadow":false,"topLevel":false},"QH":{"opcode":"operator_add","next":null,"parent":"xJ","inputs":{"NUM1":[3,"N?",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"N?":{"opcode":"operator_gt","next":null,"parent":"QH","inputs":{"OPERAND1":[3,"WO",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"WO":{"opcode":"operator_mod","next":null,"parent":"N?","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"oC":{"opcode":"data_setvariableto","next":"QI","parent":"xJ","inputs":{"VALUE":[3,"ar!",[10,""]]},"fields":{"VARIABLE":["#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"]},"shadow":false,"topLevel":false},"ar!":{"opcode":"operator_mod","next":null,"parent":"oC","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"QI":{"opcode":"data_setvariableto","next":"WP","parent":"oC","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"WP":{"opcode":"control_stop","next":null,"parent":"QI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cp":{"opcode":"control_if","next":"cq","parent":"co","inputs":{"CONDITION":[2,"WQ"],"SUBSTACK":[2,"jl"]},"fields":{},"shadow":false,"topLevel":false},"WQ":{"opcode":"operator_equals","next":null,"parent":"cp","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16390"]]},"fields":{},"shadow":false,"topLevel":false},"jl":{"opcode":"data_setvariableto","next":"QJ","parent":"cp","inputs":{"VALUE":[3,"QK",[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"QK":{"opcode":"operator_add","next":null,"parent":"jl","inputs":{"NUM1":[3,"N@",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"N@":{"opcode":"operator_subtract","next":null,"parent":"QK","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,"WR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"WR":{"opcode":"operator_mod","next":null,"parent":"N@","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QJ":{"opcode":"procedures_call","next":"WS","parent":"jl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"WS":{"opcode":"control_stop","next":null,"parent":"QJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cq":{"opcode":"control_if","next":"cr","parent":"cp","inputs":{"CONDITION":[2,"WT"],"SUBSTACK":[2,"oD"]},"fields":{},"shadow":false,"topLevel":false},"WT":{"opcode":"operator_equals","next":null,"parent":"cq","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16391"]]},"fields":{},"shadow":false,"topLevel":false},"oD":{"opcode":"data_setvariableto","next":"cs","parent":"cq","inputs":{"VALUE":[3,"oE",[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"oE":{"opcode":"operator_add","next":null,"parent":"oD","inputs":{"NUM1":[3,"ar#",[4,0]],"NUM2":[3,"QL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar#":{"opcode":"operator_mod","next":null,"parent":"oE","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QL":{"opcode":"operator_multiply","next":null,"parent":"oE","inputs":{"NUM1":[3,"WU",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"WU":{"opcode":"operator_mod","next":null,"parent":"QL","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"cs":{"opcode":"control_if","next":"N[","parent":"oD","inputs":{"CONDITION":[2,"WV"],"SUBSTACK":[2,"N]"]},"fields":{},"shadow":false,"topLevel":false},"WV":{"opcode":"operator_equals","next":null,"parent":"cs","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N]":{"opcode":"data_setvariableto","next":null,"parent":"cs","inputs":{"VALUE":[3,"N^",[10,""]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"N^":{"opcode":"data_itemoflist","next":null,"parent":"N]","inputs":{"INDEX":[3,"N_",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"N_":{"opcode":"operator_add","next":null,"parent":"N^","inputs":{"NUM1":[3,"N`",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N`":{"opcode":"operator_mathop","next":null,"parent":"N_","inputs":{"NUM":[3,"WW",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WW":{"opcode":"operator_divide","next":null,"parent":"N`","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N[":{"opcode":"data_setvariableto","next":"N{","parent":"cs","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_start","@4/+@;`xIa1GD6lDn;es"]},"shadow":false,"topLevel":false},"N{":{"opcode":"procedures_call","next":"WX","parent":"N[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"WX":{"opcode":"control_stop","next":null,"parent":"N{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cr":{"opcode":"control_if","next":"ct","parent":"cq","inputs":{"CONDITION":[2,"WY"],"SUBSTACK":[2,"oF"]},"fields":{},"shadow":false,"topLevel":false},"WY":{"opcode":"operator_equals","next":null,"parent":"cr","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16392"]]},"fields":{},"shadow":false,"topLevel":false},"oF":{"opcode":"data_setvariableto","next":"oG","parent":"cr","inputs":{"VALUE":[3,"QM",[10,""]]},"fields":{"VARIABLE":["#tri_control",".BuyXV*dX#(v{Ybtg9SY"]},"shadow":false,"topLevel":false},"QM":{"opcode":"operator_add","next":null,"parent":"oF","inputs":{"NUM1":[3,"WZ",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"WZ":{"opcode":"operator_gt","next":null,"parent":"QM","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"oG":{"opcode":"data_setvariableto","next":"ar%","parent":"oF","inputs":{"VALUE":[3,"ar(",[10,""]]},"fields":{"VARIABLE":["#tri_reload","|%-hP?i[P7T1dz/;qptT"]},"shadow":false,"topLevel":false},"ar(":{"opcode":"operator_mod","next":null,"parent":"oG","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ar%":{"opcode":"control_stop","next":null,"parent":"oG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ct":{"opcode":"control_if","next":"cu","parent":"cr","inputs":{"CONDITION":[2,"W0"],"SUBSTACK":[2,"jm"]},"fields":{},"shadow":false,"topLevel":false},"W0":{"opcode":"operator_equals","next":null,"parent":"ct","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16394"]]},"fields":{},"shadow":false,"topLevel":false},"jm":{"opcode":"data_setvariableto","next":"ar)","parent":"ct","inputs":{"VALUE":[3,"QN",[10,""]]},"fields":{"VARIABLE":["#tri_period",":~1CFOUK_x[i{fP8hA[3"]},"shadow":false,"topLevel":false},"QN":{"opcode":"operator_add","next":null,"parent":"jm","inputs":{"NUM1":[3,"N|",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"N|":{"opcode":"operator_subtract","next":null,"parent":"QN","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[3,"W1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"W1":{"opcode":"operator_mod","next":null,"parent":"N|","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ar)":{"opcode":"control_stop","next":null,"parent":"jm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cu":{"opcode":"control_if","next":"cv","parent":"ct","inputs":{"CONDITION":[2,"W2"],"SUBSTACK":[2,"oH"]},"fields":{},"shadow":false,"topLevel":false},"W2":{"opcode":"operator_equals","next":null,"parent":"cu","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16395"]]},"fields":{},"shadow":false,"topLevel":false},"oH":{"opcode":"data_setvariableto","next":"jn","parent":"cu","inputs":{"VALUE":[3,"oI",[10,""]]},"fields":{"VARIABLE":["#tri_period",":~1CFOUK_x[i{fP8hA[3"]},"shadow":false,"topLevel":false},"oI":{"opcode":"operator_add","next":null,"parent":"oH","inputs":{"NUM1":[3,"ar*",[4,0]],"NUM2":[3,"QO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar*":{"opcode":"operator_mod","next":null,"parent":"oI","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QO":{"opcode":"operator_multiply","next":null,"parent":"oI","inputs":{"NUM1":[3,"W3",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"W3":{"opcode":"operator_mod","next":null,"parent":"QO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jn":{"opcode":"control_if","next":"N}","parent":"oH","inputs":{"CONDITION":[2,"W4"],"SUBSTACK":[2,"N~"]},"fields":{},"shadow":false,"topLevel":false},"W4":{"opcode":"operator_equals","next":null,"parent":"jn","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N~":{"opcode":"data_setvariableto","next":null,"parent":"jn","inputs":{"VALUE":[3,"Oa",[10,""]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"Oa":{"opcode":"data_itemoflist","next":null,"parent":"N~","inputs":{"INDEX":[3,"Ob",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"Ob":{"opcode":"operator_add","next":null,"parent":"Oa","inputs":{"NUM1":[3,"Oc",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oc":{"opcode":"operator_mathop","next":null,"parent":"Ob","inputs":{"NUM":[3,"W5",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"W5":{"opcode":"operator_divide","next":null,"parent":"Oc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N}":{"opcode":"data_setvariableto","next":"W6","parent":"jn","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"W6":{"opcode":"control_stop","next":null,"parent":"N}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cv":{"opcode":"control_if","next":"jo","parent":"cu","inputs":{"CONDITION":[2,"W7"],"SUBSTACK":[2,"oJ"]},"fields":{},"shadow":false,"topLevel":false},"W7":{"opcode":"operator_equals","next":null,"parent":"cv","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16396"]]},"fields":{},"shadow":false,"topLevel":false},"oJ":{"opcode":"data_setvariableto","next":"xK","parent":"cv","inputs":{"VALUE":[3,"ar+",[10,""]]},"fields":{"VARIABLE":["#noise_counter_halt","d#{}}5.jeOzt/68f8/23"]},"shadow":false,"topLevel":false},"ar+":{"opcode":"operator_letter_of","next":null,"parent":"oJ","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xK":{"opcode":"data_setvariableto","next":"oK","parent":"oJ","inputs":{"VALUE":[3,"ar,",[10,""]]},"fields":{"VARIABLE":["#noise_constant","9w#8ILSZ$^iPt|9!L6cw"]},"shadow":false,"topLevel":false},"ar,":{"opcode":"operator_letter_of","next":null,"parent":"xK","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"oK":{"opcode":"data_setvariableto","next":"ar-","parent":"xK","inputs":{"VALUE":[3,"ar.",[10,""]]},"fields":{"VARIABLE":["#noise_volume","vBuLse(~z3!bQ+oQeC{l"]},"shadow":false,"topLevel":false},"ar.":{"opcode":"operator_mod","next":null,"parent":"oK","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar-":{"opcode":"control_stop","next":null,"parent":"oK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"jo":{"opcode":"control_if","next":"es","parent":"cv","inputs":{"CONDITION":[2,"W8"],"SUBSTACK":[2,"oL"]},"fields":{},"shadow":false,"topLevel":false},"W8":{"opcode":"operator_equals","next":null,"parent":"jo","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16398"]]},"fields":{},"shadow":false,"topLevel":false},"oL":{"opcode":"data_setvariableto","next":"oM","parent":"jo","inputs":{"VALUE":[3,"QP",[10,""]]},"fields":{"VARIABLE":["#noise_mode","9]wlSTu+]*Y~:nsZ9z4n"]},"shadow":false,"topLevel":false},"QP":{"opcode":"operator_add","next":null,"parent":"oL","inputs":{"NUM1":[3,"W9",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"W9":{"opcode":"operator_gt","next":null,"parent":"QP","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"oM":{"opcode":"data_setvariableto","next":"ar/","parent":"oL","inputs":{"VALUE":[3,"ar:",[10,""]]},"fields":{"VARIABLE":["#noise_period","?A|Ii0235Jf)q]b{e^F;"]},"shadow":false,"topLevel":false},"ar:":{"opcode":"operator_mod","next":null,"parent":"oM","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar/":{"opcode":"control_stop","next":null,"parent":"oM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"es":{"opcode":"control_if","next":"cw","parent":"jo","inputs":{"CONDITION":[2,"W!"],"SUBSTACK":[2,"a|"]},"fields":{},"shadow":false,"topLevel":false},"W!":{"opcode":"operator_equals","next":null,"parent":"es","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16399"]]},"fields":{},"shadow":false,"topLevel":false},"a|":{"opcode":"control_if","next":"Od","parent":"es","inputs":{"CONDITION":[2,"W#"],"SUBSTACK":[2,"Oe"]},"fields":{},"shadow":false,"topLevel":false},"W#":{"opcode":"operator_equals","next":null,"parent":"a|","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oe":{"opcode":"data_setvariableto","next":null,"parent":"a|","inputs":{"VALUE":[3,"Of",[10,""]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"Of":{"opcode":"data_itemoflist","next":null,"parent":"Oe","inputs":{"INDEX":[3,"Og",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"Og":{"opcode":"operator_add","next":null,"parent":"Of","inputs":{"NUM1":[3,"Oh",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oh":{"opcode":"operator_mathop","next":null,"parent":"Og","inputs":{"NUM":[3,"W%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"W%":{"opcode":"operator_divide","next":null,"parent":"Oh","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Od":{"opcode":"data_setvariableto","next":"W(","parent":"a|","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#noise_start","wLUu:/;$@K16sJ?,vRSu"]},"shadow":false,"topLevel":false},"W(":{"opcode":"control_stop","next":null,"parent":"Od","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cw":{"opcode":"control_if","next":"et","parent":"es","inputs":{"CONDITION":[2,"W)"],"SUBSTACK":[2,"jp"]},"fields":{},"shadow":false,"topLevel":false},"W)":{"opcode":"operator_equals","next":null,"parent":"cw","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16400"]]},"fields":{},"shadow":false,"topLevel":false},"jp":{"opcode":"data_setvariableto","next":"ar;","parent":"cw","inputs":{"VALUE":[3,"ar=",[10,""]]},"fields":{"VARIABLE":["#dmc_rate","K:RgLhONccG8dn?:Gz`2"]},"shadow":false,"topLevel":false},"ar=":{"opcode":"operator_mod","next":null,"parent":"jp","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar;":{"opcode":"control_stop","next":null,"parent":"jp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"et":{"opcode":"control_if","next":"cx","parent":"cw","inputs":{"CONDITION":[2,"W*"],"SUBSTACK":[2,"W+"]},"fields":{},"shadow":false,"topLevel":false},"W*":{"opcode":"operator_equals","next":null,"parent":"et","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16401"]]},"fields":{},"shadow":false,"topLevel":false},"W+":{"opcode":"control_stop","next":null,"parent":"et","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cx":{"opcode":"control_if","next":"cy","parent":"et","inputs":{"CONDITION":[2,"W,"],"SUBSTACK":[2,"jq"]},"fields":{},"shadow":false,"topLevel":false},"W,":{"opcode":"operator_equals","next":null,"parent":"cx","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16402"]]},"fields":{},"shadow":false,"topLevel":false},"jq":{"opcode":"data_setvariableto","next":"ar?","parent":"cx","inputs":{"VALUE":[3,"QQ",[10,""]]},"fields":{"VARIABLE":["#dmc_address","gB~16fnQ{z]0?Ae}tWSd"]},"shadow":false,"topLevel":false},"QQ":{"opcode":"operator_add","next":null,"parent":"jq","inputs":{"NUM1":[1,[4,"49152"]],"NUM2":[3,"W-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"W-":{"opcode":"operator_multiply","next":null,"parent":"QQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ar?":{"opcode":"control_stop","next":null,"parent":"jq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cy":{"opcode":"control_if","next":"a}","parent":"cx","inputs":{"CONDITION":[2,"W."],"SUBSTACK":[2,"jr"]},"fields":{},"shadow":false,"topLevel":false},"W.":{"opcode":"operator_equals","next":null,"parent":"cy","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16403"]]},"fields":{},"shadow":false,"topLevel":false},"jr":{"opcode":"data_setvariableto","next":"ar@","parent":"cy","inputs":{"VALUE":[3,"QR",[10,""]]},"fields":{"VARIABLE":["#dmc_length","@|x/pnw9Y=K9[1rQ^9?."]},"shadow":false,"topLevel":false},"QR":{"opcode":"operator_add","next":null,"parent":"jr","inputs":{"NUM1":[3,"W/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"W/":{"opcode":"operator_multiply","next":null,"parent":"QR","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar@":{"opcode":"control_stop","next":null,"parent":"jr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a}":{"opcode":"control_if","next":"oN","parent":"cy","inputs":{"CONDITION":[2,"W:"],"SUBSTACK":[2,"oO"]},"fields":{},"shadow":false,"topLevel":false},"W:":{"opcode":"operator_equals","next":null,"parent":"a}","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"oO":{"opcode":"data_setvariableto","next":"js","parent":"a}","inputs":{"VALUE":[3,"W;",[10,""]]},"fields":{"VARIABLE":["#sq0_enabled","e..v2zd5D#2(~C2#;wE5"]},"shadow":false,"topLevel":false},"W;":{"opcode":"operator_letter_of","next":null,"parent":"oO","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"js":{"opcode":"data_setvariableto","next":"jt","parent":"oO","inputs":{"VALUE":[3,"W=",[10,""]]},"fields":{"VARIABLE":["#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"]},"shadow":false,"topLevel":false},"W=":{"opcode":"operator_letter_of","next":null,"parent":"js","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jt":{"opcode":"data_setvariableto","next":"ju","parent":"js","inputs":{"VALUE":[3,"W?",[10,""]]},"fields":{"VARIABLE":["#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"]},"shadow":false,"topLevel":false},"W?":{"opcode":"operator_letter_of","next":null,"parent":"jt","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ju":{"opcode":"data_setvariableto","next":"jv","parent":"jt","inputs":{"VALUE":[3,"W@",[10,""]]},"fields":{"VARIABLE":["#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"]},"shadow":false,"topLevel":false},"W@":{"opcode":"operator_letter_of","next":null,"parent":"ju","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jv":{"opcode":"data_setvariableto","next":"a~","parent":"ju","inputs":{"VALUE":[3,"W[",[10,""]]},"fields":{"VARIABLE":["#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"]},"shadow":false,"topLevel":false},"W[":{"opcode":"operator_letter_of","next":null,"parent":"jv","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~":{"opcode":"control_if","next":"ba","parent":"jv","inputs":{"CONDITION":[2,"W]"],"SUBSTACK":[2,"W^"]},"fields":{},"shadow":false,"topLevel":false},"W]":{"opcode":"operator_equals","next":null,"parent":"a~","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W^":{"opcode":"data_setvariableto","next":null,"parent":"a~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"ba":{"opcode":"control_if","next":"bb","parent":"a~","inputs":{"CONDITION":[2,"W_"],"SUBSTACK":[2,"W`"]},"fields":{},"shadow":false,"topLevel":false},"W_":{"opcode":"operator_equals","next":null,"parent":"ba","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W`":{"opcode":"data_setvariableto","next":null,"parent":"ba","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"bb":{"opcode":"control_if","next":"bc","parent":"ba","inputs":{"CONDITION":[2,"W{"],"SUBSTACK":[2,"W|"]},"fields":{},"shadow":false,"topLevel":false},"W{":{"opcode":"operator_equals","next":null,"parent":"bb","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W|":{"opcode":"data_setvariableto","next":null,"parent":"bb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"bc":{"opcode":"control_if","next":")","parent":"bb","inputs":{"CONDITION":[2,"W}"],"SUBSTACK":[2,"W~"]},"fields":{},"shadow":false,"topLevel":false},"W}":{"opcode":"operator_equals","next":null,"parent":"bc","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W~":{"opcode":"data_setvariableto","next":null,"parent":"bc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},")":{"opcode":"control_if_else","next":"Xa","parent":"bc","inputs":{"CONDITION":[2,"Xb"],"SUBSTACK":[2,"Xc"],"SUBSTACK2":[2,"Xd"]},"fields":{},"shadow":false,"topLevel":false},"Xb":{"opcode":"operator_equals","next":null,"parent":")","inputs":{"OPERAND1":[3,[12,"#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Xc":{"opcode":"event_broadcast","next":null,"parent":")","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_start","?5cnTm~BIOy)iiINw1|j"]]},"fields":{},"shadow":false,"topLevel":false},"Xd":{"opcode":"event_broadcast","next":null,"parent":")","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_stop","rKDIUs;/F{C6pMu5`JB^"]]},"fields":{},"shadow":false,"topLevel":false},"Xa":{"opcode":"control_stop","next":null,"parent":")","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oN":{"opcode":"control_if","next":null,"parent":"a}","inputs":{"CONDITION":[2,"Xe"],"SUBSTACK":[2,"Oi"]},"fields":{},"shadow":false,"topLevel":false},"Xe":{"opcode":"operator_equals","next":null,"parent":"oN","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"Oi":{"opcode":"data_setvariableto","next":"bd","parent":"oN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"bd":{"opcode":"control_if","next":"*","parent":"Oi","inputs":{"CONDITION":[2,"jw"],"SUBSTACK":[2,"Oj"]},"fields":{},"shadow":false,"topLevel":false},"jw":{"opcode":"operator_and","next":null,"parent":"bd","inputs":{"OPERAND1":[2,"Ok"],"OPERAND2":[2,"Xf"]},"fields":{},"shadow":false,"topLevel":false},"Ok":{"opcode":"operator_equals","next":null,"parent":"jw","inputs":{"OPERAND1":[3,"Xg",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Xg":{"opcode":"operator_letter_of","next":null,"parent":"Ok","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Xf":{"opcode":"operator_equals","next":null,"parent":"jw","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oj":{"opcode":"data_changevariableby","next":"Xh","parent":"bd","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Xh":{"opcode":"data_setvariableto","next":null,"parent":"Oj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"*":{"opcode":"control_if_else","next":"+","parent":"bd","inputs":{"CONDITION":[2,"Xi"],"SUBSTACK":[2,"Ol"],"SUBSTACK2":[2,"Xj"]},"fields":{},"shadow":false,"topLevel":false},"Xi":{"opcode":"operator_gt","next":null,"parent":"*","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ol":{"opcode":"data_setvariableto","next":"Om","parent":"*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"Om":{"opcode":"procedures_call","next":"Xk","parent":"Ol","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"Xk":{"opcode":"procedures_call","next":null,"parent":"Om","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"Xj":{"opcode":"data_setvariableto","next":null,"parent":"*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"+":{"opcode":"control_if_else","next":"Xl","parent":"*","inputs":{"CONDITION":[2,"On"],"SUBSTACK":[2,"Xm"],"SUBSTACK2":[2,"Xn"]},"fields":{},"shadow":false,"topLevel":false},"On":{"opcode":"operator_gt","next":null,"parent":"+","inputs":{"OPERAND1":[3,"Xo",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"Xo":{"opcode":"operator_mod","next":null,"parent":"On","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Xm":{"opcode":"data_setvariableto","next":null,"parent":"+","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"Xn":{"opcode":"data_setvariableto","next":null,"parent":"+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"Xl":{"opcode":"control_stop","next":null,"parent":"+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ar[":{"opcode":"procedures_definition","next":"ar]","parent":null,"inputs":{"custom_block":[1,"a]/"]},"fields":{},"shadow":false,"topLevel":true,"x":17148,"y":1184},"a]/":{"opcode":"procedures_prototype","next":null,"parent":"ar[","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ar]":{"opcode":"data_changevariableby","next":"xL","parent":"ar[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"xL":{"opcode":"control_if","next":"xM","parent":"ar]","inputs":{"CONDITION":[2,"a]:"],"SUBSTACK":[2,"ar^"]},"fields":{},"shadow":false,"topLevel":false},"a]:":{"opcode":"operator_equals","next":null,"parent":"xL","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ar^":{"opcode":"procedures_call","next":"a];","parent":"xL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"a];":{"opcode":"control_stop","next":null,"parent":"ar^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xM":{"opcode":"control_if","next":"xN","parent":"xL","inputs":{"CONDITION":[2,"a]="],"SUBSTACK":[2,"ar_"]},"fields":{},"shadow":false,"topLevel":false},"a]=":{"opcode":"operator_equals","next":null,"parent":"xM","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ar_":{"opcode":"procedures_call","next":"ar`","parent":"xM","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"ar`":{"opcode":"procedures_call","next":"a]?","parent":"ar_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"a]?":{"opcode":"control_stop","next":null,"parent":"ar`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xN":{"opcode":"control_if","next":"xO","parent":"xM","inputs":{"CONDITION":[2,"a]@"],"SUBSTACK":[2,"ar{"]},"fields":{},"shadow":false,"topLevel":false},"a]@":{"opcode":"operator_equals","next":null,"parent":"xN","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ar{":{"opcode":"procedures_call","next":"a][","parent":"xN","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"a][":{"opcode":"control_stop","next":null,"parent":"ar{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xO":{"opcode":"control_if","next":"QS","parent":"xN","inputs":{"CONDITION":[2,"a]]"],"SUBSTACK":[2,"xP"]},"fields":{},"shadow":false,"topLevel":false},"a]]":{"opcode":"operator_equals","next":null,"parent":"xO","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"xP":{"opcode":"control_if","next":"a]^","parent":"xO","inputs":{"CONDITION":[2,"a]_"],"SUBSTACK":[2,"ar|"]},"fields":{},"shadow":false,"topLevel":false},"a]_":{"opcode":"operator_equals","next":null,"parent":"xP","inputs":{"OPERAND1":[3,[12,"#frame_mode","^Wa,tZpWIEXY_cWgBvXd"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ar|":{"opcode":"procedures_call","next":"ar}","parent":"xP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"ar}":{"opcode":"procedures_call","next":"xQ","parent":"ar|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"xQ":{"opcode":"control_if","next":"a]`","parent":"ar}","inputs":{"CONDITION":[2,"QT"],"SUBSTACK":[2,"ar~"]},"fields":{},"shadow":false,"topLevel":false},"QT":{"opcode":"operator_and","next":null,"parent":"xQ","inputs":{"OPERAND1":[2,"a]{"],"OPERAND2":[2,"a]|"]},"fields":{},"shadow":false,"topLevel":false},"a]{":{"opcode":"operator_equals","next":null,"parent":"QT","inputs":{"OPERAND1":[3,[12,"#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]|":{"opcode":"operator_equals","next":null,"parent":"QT","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ar~":{"opcode":"data_changevariableby","next":"a]}","parent":"xQ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a]}":{"opcode":"data_setvariableto","next":null,"parent":"ar~","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"a]`":{"opcode":"data_setvariableto","next":null,"parent":"xQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"a]^":{"opcode":"control_stop","next":null,"parent":"xP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"QS":{"opcode":"control_if","next":null,"parent":"xO","inputs":{"CONDITION":[2,"a]~"],"SUBSTACK":[2,"asa"]},"fields":{},"shadow":false,"topLevel":false},"a]~":{"opcode":"operator_equals","next":null,"parent":"QS","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"asa":{"opcode":"procedures_call","next":"asb","parent":"QS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"asb":{"opcode":"procedures_call","next":"asc","parent":"asa","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"asc":{"opcode":"data_setvariableto","next":"a^a","parent":"asb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"a^a":{"opcode":"control_stop","next":null,"parent":"asc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"asd":{"opcode":"procedures_definition","next":"ase","parent":null,"inputs":{"custom_block":[1,"a^b"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":64},"a^b":{"opcode":"procedures_prototype","next":null,"parent":"asd","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ase":{"opcode":"data_replaceitemoflist","next":"asf","parent":"asd","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asf":{"opcode":"data_replaceitemoflist","next":"asg","parent":"ase","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asg":{"opcode":"data_replaceitemoflist","next":"a^c","parent":"asf","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a^c":{"opcode":"data_replaceitemoflist","next":null,"parent":"asg","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"ash":{"opcode":"procedures_definition","next":"asi","parent":null,"inputs":{"custom_block":[1,"a^d"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":396},"a^d":{"opcode":"procedures_prototype","next":null,"parent":"ash","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"asi":{"opcode":"data_replaceitemoflist","next":"asj","parent":"ash","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asj":{"opcode":"data_replaceitemoflist","next":"ask","parent":"asi","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"ask":{"opcode":"data_replaceitemoflist","next":"a^e","parent":"asj","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a^e":{"opcode":"data_replaceitemoflist","next":null,"parent":"ask","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asl":{"opcode":"procedures_definition","next":"asm","parent":null,"inputs":{"custom_block":[1,"a^f"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":728},"a^f":{"opcode":"procedures_prototype","next":null,"parent":"asl","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"asm":{"opcode":"data_replaceitemoflist","next":"asn","parent":"asl","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asn":{"opcode":"data_replaceitemoflist","next":"aso","parent":"asm","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aso":{"opcode":"data_replaceitemoflist","next":"a^g","parent":"asn","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a^g":{"opcode":"data_replaceitemoflist","next":null,"parent":"aso","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asp":{"opcode":"procedures_definition","next":"asq","parent":null,"inputs":{"custom_block":[1,"a^h"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1060},"a^h":{"opcode":"procedures_prototype","next":null,"parent":"asp","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"asq":{"opcode":"data_replaceitemoflist","next":"asr","parent":"asp","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"asr":{"opcode":"data_replaceitemoflist","next":"ass","parent":"asq","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"ass":{"opcode":"data_replaceitemoflist","next":"a^i","parent":"asr","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"a^i":{"opcode":"data_replaceitemoflist","next":null,"parent":"ass","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"ast":{"opcode":"procedures_definition","next":"QU","parent":null,"inputs":{"custom_block":[1,"a^j"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":64},"a^j":{"opcode":"procedures_prototype","next":null,"parent":"ast","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$unrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"QU":{"opcode":"data_setvariableto","next":"asu","parent":"ast","inputs":{"VALUE":[3,"a^k",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a^k":{"opcode":"operator_mod","next":null,"parent":"QU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"asu":{"opcode":"procedures_call","next":null,"parent":"QU","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"a^l",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"a^l":{"opcode":"operator_subtract","next":null,"parent":"asu","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"asv":{"opcode":"procedures_definition","next":"QV","parent":null,"inputs":{"custom_block":[1,"a^m"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":316},"a^m":{"opcode":"procedures_prototype","next":null,"parent":"asv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$cnrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"QV":{"opcode":"data_setvariableto","next":"a^n","parent":"asv","inputs":{"VALUE":[3,"a^o",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"a^o":{"opcode":"operator_mod","next":null,"parent":"QV","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^n":{"opcode":"procedures_call","next":null,"parent":"QV","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","warp":"true"}},"asw":{"opcode":"procedures_definition","next":"Xp","parent":null,"inputs":{"custom_block":[1,"a^p"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":560},"a^p":{"opcode":"procedures_prototype","next":null,"parent":"asw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$anrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Xp":{"opcode":"data_setvariableto","next":"jx","parent":"asw","inputs":{"VALUE":[3,"a^q",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a^q":{"opcode":"operator_mod","next":null,"parent":"Xp","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jx":{"opcode":"control_if_else","next":"a^r","parent":"Xp","inputs":{"CONDITION":[2,"asx"],"SUBSTACK":[2,"a^s"],"SUBSTACK2":[2,"a^t"]},"fields":{},"shadow":false,"topLevel":false},"asx":{"opcode":"operator_equals","next":null,"parent":"jx","inputs":{"OPERAND1":[3,"asy",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"asy":{"opcode":"operator_mod","next":null,"parent":"asx","inputs":{"NUM1":[3,"asz",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asz":{"opcode":"operator_mathop","next":null,"parent":"asy","inputs":{"NUM":[3,"a^u",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a^u":{"opcode":"operator_divide","next":null,"parent":"asz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^s":{"opcode":"procedures_call","next":null,"parent":"jx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"a^t":{"opcode":"procedures_call","next":null,"parent":"jx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"a^r":{"opcode":"procedures_call","next":null,"parent":"jx","inputs":{"La?#zJqoritu?9M,S2Y,":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","warp":"true"}},"asA":{"opcode":"procedures_definition","next":"xR","parent":null,"inputs":{"custom_block":[1,"a^v"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":1044},"a^v":{"opcode":"procedures_prototype","next":null,"parent":"asA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc1","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"xR":{"opcode":"control_if","next":"jy","parent":"asA","inputs":{"CONDITION":[2,"a^w"],"SUBSTACK":[2,"asB"]},"fields":{},"shadow":false,"topLevel":false},"a^w":{"opcode":"operator_gt","next":null,"parent":"xR","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"asB":{"opcode":"data_setvariableto","next":"asC","parent":"xR","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"asC":{"opcode":"data_setvariableto","next":"QW","parent":"asB","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"jy":{"opcode":"control_if_else","next":"xS","parent":"xR","inputs":{"CONDITION":[2,"asD"],"SUBSTACK":[2,"Xq"],"SUBSTACK2":[2,"Xr"]},"fields":{},"shadow":false,"topLevel":false},"asD":{"opcode":"operator_lt","next":null,"parent":"jy","inputs":{"OPERAND1":[3,"a^x",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^x":{"opcode":"operator_length","next":null,"parent":"asD","inputs":{"STRING":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Xq":{"opcode":"data_setvariableto","next":"a^y","parent":"jy","inputs":{"VALUE":[3,"asE",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"asE":{"opcode":"operator_join","next":null,"parent":"Xq","inputs":{"STRING1":[3,"a^z",[10,""]],"STRING2":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a^z":{"opcode":"operator_mod","next":null,"parent":"asE","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^y":{"opcode":"control_stop","next":null,"parent":"Xq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Xr":{"opcode":"data_setvariableto","next":"asF","parent":"jy","inputs":{"VALUE":[3,"asG",[10,""]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"asG":{"opcode":"operator_add","next":null,"parent":"Xr","inputs":{"NUM1":[3,"asH",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"asH":{"opcode":"operator_join","next":null,"parent":"asG","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"asI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"asI":{"opcode":"operator_join","next":null,"parent":"asH","inputs":{"STRING1":[3,"a^A",[10,""]],"STRING2":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a^A":{"opcode":"operator_mod","next":null,"parent":"asI","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asF":{"opcode":"data_setvariableto","next":"xT","parent":"Xr","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"xT":{"opcode":"control_if","next":"xU","parent":"asF","inputs":{"CONDITION":[2,"QX"],"SUBSTACK":[2,"xV"]},"fields":{},"shadow":false,"topLevel":false},"QX":{"opcode":"operator_and","next":null,"parent":"xT","inputs":{"OPERAND1":[2,"a^B"],"OPERAND2":[2,"a^C"]},"fields":{},"shadow":false,"topLevel":false},"a^B":{"opcode":"operator_gt","next":null,"parent":"QX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a^C":{"opcode":"operator_lt","next":null,"parent":"QX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"xV":{"opcode":"control_if","next":"xW","parent":"xT","inputs":{"CONDITION":[2,"asJ"],"SUBSTACK":[2,"a^D"]},"fields":{},"shadow":false,"topLevel":false},"asJ":{"opcode":"operator_equals","next":null,"parent":"xV","inputs":{"OPERAND1":[3,"a^E",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^E":{"opcode":"operator_mod","next":null,"parent":"asJ","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^D":{"opcode":"procedures_call","next":null,"parent":"xV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"xW":{"opcode":"control_if","next":"xX","parent":"xV","inputs":{"CONDITION":[2,"asK"],"SUBSTACK":[2,"a^F"]},"fields":{},"shadow":false,"topLevel":false},"asK":{"opcode":"operator_equals","next":null,"parent":"xW","inputs":{"OPERAND1":[3,"a^G",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a^G":{"opcode":"operator_mod","next":null,"parent":"asK","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^F":{"opcode":"procedures_call","next":null,"parent":"xW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"xX":{"opcode":"control_if","next":"xY","parent":"xW","inputs":{"CONDITION":[2,"asL"],"SUBSTACK":[2,"a^H"]},"fields":{},"shadow":false,"topLevel":false},"asL":{"opcode":"operator_equals","next":null,"parent":"xX","inputs":{"OPERAND1":[3,"a^I",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^I":{"opcode":"operator_mod","next":null,"parent":"asL","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^H":{"opcode":"procedures_call","next":null,"parent":"xX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"xY":{"opcode":"control_if","next":"QY","parent":"xX","inputs":{"CONDITION":[2,"asM"],"SUBSTACK":[2,"a^J"]},"fields":{},"shadow":false,"topLevel":false},"asM":{"opcode":"operator_equals","next":null,"parent":"xY","inputs":{"OPERAND1":[3,"a^K",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a^K":{"opcode":"operator_mod","next":null,"parent":"asM","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^J":{"opcode":"procedures_call","next":null,"parent":"xY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"QY":{"opcode":"data_setvariableto","next":"asN","parent":"xY","inputs":{"VALUE":[3,"asO",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"asO":{"opcode":"operator_mod","next":null,"parent":"QY","inputs":{"NUM1":[3,"asP",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"asP":{"opcode":"operator_mathop","next":null,"parent":"asO","inputs":{"NUM":[3,"a^L",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a^L":{"opcode":"operator_divide","next":null,"parent":"asP","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"asN":{"opcode":"data_setvariableto","next":null,"parent":"QY","inputs":{"VALUE":[3,"asQ",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"asQ":{"opcode":"operator_add","next":null,"parent":"asN","inputs":{"NUM1":[3,"a^M",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a^M":{"opcode":"operator_gt","next":null,"parent":"asQ","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"xU":{"opcode":"control_if","next":"xZ","parent":"xT","inputs":{"CONDITION":[2,"QZ"],"SUBSTACK":[2,"a^N"]},"fields":{},"shadow":false,"topLevel":false},"QZ":{"opcode":"operator_and","next":null,"parent":"xU","inputs":{"OPERAND1":[2,"a^O"],"OPERAND2":[2,"a^P"]},"fields":{},"shadow":false,"topLevel":false},"a^O":{"opcode":"operator_gt","next":null,"parent":"QZ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"a^P":{"opcode":"operator_lt","next":null,"parent":"QZ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"a^N":{"opcode":"data_setvariableto","next":null,"parent":"xU","inputs":{"VALUE":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"xZ":{"opcode":"control_if","next":"Q0","parent":"xU","inputs":{"CONDITION":[2,"Q1"],"SUBSTACK":[2,"a^Q"]},"fields":{},"shadow":false,"topLevel":false},"Q1":{"opcode":"operator_and","next":null,"parent":"xZ","inputs":{"OPERAND1":[2,"a^R"],"OPERAND2":[2,"a^S"]},"fields":{},"shadow":false,"topLevel":false},"a^R":{"opcode":"operator_gt","next":null,"parent":"Q1","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a^S":{"opcode":"operator_lt","next":null,"parent":"Q1","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"a^Q":{"opcode":"data_setvariableto","next":null,"parent":"xZ","inputs":{"VALUE":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"Q0":{"opcode":"control_if","next":null,"parent":"xZ","inputs":{"CONDITION":[2,"Q2"],"SUBSTACK":[2,"Q3"]},"fields":{},"shadow":false,"topLevel":false},"Q2":{"opcode":"operator_and","next":null,"parent":"Q0","inputs":{"OPERAND1":[2,"a^T"],"OPERAND2":[2,"a^U"]},"fields":{},"shadow":false,"topLevel":false},"a^T":{"opcode":"operator_gt","next":null,"parent":"Q2","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"a^U":{"opcode":"operator_lt","next":null,"parent":"Q2","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Q3":{"opcode":"data_setvariableto","next":"asR","parent":"Q0","inputs":{"VALUE":[3,"asS",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"asS":{"opcode":"operator_add","next":null,"parent":"Q3","inputs":{"NUM1":[3,"a^V",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a^V":{"opcode":"operator_lt","next":null,"parent":"asS","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asR":{"opcode":"data_setvariableto","next":null,"parent":"Q3","inputs":{"VALUE":[3,"a^W",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a^W":{"opcode":"operator_mod","next":null,"parent":"asR","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"xS":{"opcode":"control_if","next":"x0","parent":"jy","inputs":{"CONDITION":[2,"a^X"],"SUBSTACK":[2,"asT"]},"fields":{},"shadow":false,"topLevel":false},"a^X":{"opcode":"operator_lt","next":null,"parent":"xS","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asT":{"opcode":"procedures_call","next":null,"parent":"xS","inputs":{"La?#zJqoritu?9M,S2Y,":[3,"asU",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","warp":"true"}},"asU":{"opcode":"operator_subtract","next":null,"parent":"asT","inputs":{"NUM1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[4,0]],"NUM2":[3,"a^Y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a^Y":{"opcode":"operator_mod","next":null,"parent":"asU","inputs":{"NUM1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"x0":{"opcode":"control_if","next":"x1","parent":"xS","inputs":{"CONDITION":[2,"a^Z"],"SUBSTACK":[2,"a^0"]},"fields":{},"shadow":false,"topLevel":false},"a^Z":{"opcode":"operator_equals","next":null,"parent":"x0","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^0":{"opcode":"procedures_call","next":null,"parent":"x0","inputs":{"xw^iKl}Q9Utn5G${B3DL":[1,[10,"0"]],"-ka?M!q5i3ep8!$FNtaR":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"x1":{"opcode":"control_if","next":"x2","parent":"x0","inputs":{"CONDITION":[2,"a^1"],"SUBSTACK":[2,"asV"]},"fields":{},"shadow":false,"topLevel":false},"a^1":{"opcode":"operator_equals","next":null,"parent":"x1","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"asV":{"opcode":"procedures_call","next":null,"parent":"x1","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"a^2",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"a^2":{"opcode":"operator_subtract","next":null,"parent":"asV","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"x2":{"opcode":"control_if_else","next":null,"parent":"x1","inputs":{"CONDITION":[2,"a^3"],"SUBSTACK":[2,"a^4"],"SUBSTACK2":[2,"asW"]},"fields":{},"shadow":false,"topLevel":false},"a^3":{"opcode":"operator_equals","next":null,"parent":"x2","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a^4":{"opcode":"procedures_call","next":null,"parent":"x2","inputs":{"GVNB1CwSzA9:lV]`a$I$":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"WGS!dwukgOkU#8[iyU[X":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","warp":"true"}},"asW":{"opcode":"procedures_call","next":null,"parent":"x2","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[3,"asX",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","warp":"true"}},"asX":{"opcode":"operator_subtract","next":null,"parent":"asW","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[3,"a^5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a^5":{"opcode":"operator_mod","next":null,"parent":"asX","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asY":{"opcode":"procedures_definition","next":"x3","parent":null,"inputs":{"custom_block":[1,"a^6"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":3824},"a^6":{"opcode":"procedures_prototype","next":null,"parent":"asY","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc3","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"x3":{"opcode":"control_if","next":"x4","parent":"asY","inputs":{"CONDITION":[2,"Q4"],"SUBSTACK":[2,"x5"]},"fields":{},"shadow":false,"topLevel":false},"Q4":{"opcode":"operator_and","next":null,"parent":"x3","inputs":{"OPERAND1":[2,"a^7"],"OPERAND2":[2,"a^8"]},"fields":{},"shadow":false,"topLevel":false},"a^7":{"opcode":"operator_gt","next":null,"parent":"Q4","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a^8":{"opcode":"operator_lt","next":null,"parent":"Q4","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"x5":{"opcode":"control_if","next":"Q5","parent":"x3","inputs":{"CONDITION":[2,"asZ"],"SUBSTACK":[2,"Q6"]},"fields":{},"shadow":false,"topLevel":false},"asZ":{"opcode":"operator_equals","next":null,"parent":"x5","inputs":{"OPERAND1":[3,"a^9",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^9":{"opcode":"operator_mod","next":null,"parent":"asZ","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Q6":{"opcode":"data_setvariableto","next":"Q7","parent":"x5","inputs":{"VALUE":[3,"a^!",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"a^!":{"opcode":"operator_mod","next":null,"parent":"Q6","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Q7":{"opcode":"data_setvariableto","next":"as0","parent":"Q6","inputs":{"VALUE":[3,"as1",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"as1":{"opcode":"operator_add","next":null,"parent":"Q7","inputs":{"NUM1":[3,"as2",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"as2":{"opcode":"operator_gt","next":null,"parent":"as1","inputs":{"OPERAND1":[3,"a^#",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a^#":{"opcode":"operator_mod","next":null,"parent":"as2","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"as0":{"opcode":"data_setvariableto","next":null,"parent":"Q7","inputs":{"VALUE":[3,"as3",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"as3":{"opcode":"operator_add","next":null,"parent":"as0","inputs":{"NUM1":[3,"a^%",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a^%":{"opcode":"operator_gt","next":null,"parent":"as3","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Q5":{"opcode":"control_if","next":null,"parent":"x5","inputs":{"CONDITION":[2,"as4"],"SUBSTACK":[2,"x6"]},"fields":{},"shadow":false,"topLevel":false},"as4":{"opcode":"operator_equals","next":null,"parent":"Q5","inputs":{"OPERAND1":[3,"a^(",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a^(":{"opcode":"operator_mod","next":null,"parent":"as4","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"x6":{"opcode":"control_if","next":"x7","parent":"Q5","inputs":{"CONDITION":[2,"a^)"],"SUBSTACK":[2,"a^*"]},"fields":{},"shadow":false,"topLevel":false},"a^)":{"opcode":"operator_equals","next":null,"parent":"x6","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^*":{"opcode":"data_setvariableto","next":null,"parent":"x6","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"x7":{"opcode":"control_if","next":"x8","parent":"x6","inputs":{"CONDITION":[2,"a^+"],"SUBSTACK":[2,"a^,"]},"fields":{},"shadow":false,"topLevel":false},"a^+":{"opcode":"operator_equals","next":null,"parent":"x7","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a^,":{"opcode":"data_setvariableto","next":null,"parent":"x7","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"x8":{"opcode":"control_if","next":"x9","parent":"x7","inputs":{"CONDITION":[2,"a^-"],"SUBSTACK":[2,"a^."]},"fields":{},"shadow":false,"topLevel":false},"a^-":{"opcode":"operator_equals","next":null,"parent":"x8","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^.":{"opcode":"data_setvariableto","next":null,"parent":"x8","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"x9":{"opcode":"control_if","next":"x!","parent":"x8","inputs":{"CONDITION":[2,"a^/"],"SUBSTACK":[2,"a^:"]},"fields":{},"shadow":false,"topLevel":false},"a^/":{"opcode":"operator_equals","next":null,"parent":"x9","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a^:":{"opcode":"data_setvariableto","next":null,"parent":"x9","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"x!":{"opcode":"control_if","next":"x#","parent":"x9","inputs":{"CONDITION":[2,"a^;"],"SUBSTACK":[2,"a^="]},"fields":{},"shadow":false,"topLevel":false},"a^;":{"opcode":"operator_equals","next":null,"parent":"x!","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a^=":{"opcode":"data_setvariableto","next":null,"parent":"x!","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"x#":{"opcode":"control_if","next":"x%","parent":"x!","inputs":{"CONDITION":[2,"a^?"],"SUBSTACK":[2,"a^@"]},"fields":{},"shadow":false,"topLevel":false},"a^?":{"opcode":"operator_equals","next":null,"parent":"x#","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a^@":{"opcode":"data_setvariableto","next":null,"parent":"x#","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"x%":{"opcode":"control_if","next":"Q8","parent":"x#","inputs":{"CONDITION":[2,"a^["],"SUBSTACK":[2,"as5"]},"fields":{},"shadow":false,"topLevel":false},"a^[":{"opcode":"operator_equals","next":null,"parent":"x%","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"as5":{"opcode":"data_setvariableto","next":null,"parent":"x%","inputs":{"VALUE":[3,"a^]",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a^]":{"opcode":"operator_mod","next":null,"parent":"as5","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Q8":{"opcode":"control_if","next":null,"parent":"x%","inputs":{"CONDITION":[2,"a^^"],"SUBSTACK":[2,"as6"]},"fields":{},"shadow":false,"topLevel":false},"a^^":{"opcode":"operator_equals","next":null,"parent":"Q8","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"as6":{"opcode":"data_setvariableto","next":null,"parent":"Q8","inputs":{"VALUE":[3,"a^_",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"a^_":{"opcode":"operator_mod","next":null,"parent":"as6","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"x4":{"opcode":"control_if","next":"x(","parent":"x3","inputs":{"CONDITION":[2,"Q9"],"SUBSTACK":[2,"x)"]},"fields":{},"shadow":false,"topLevel":false},"Q9":{"opcode":"operator_and","next":null,"parent":"x4","inputs":{"OPERAND1":[2,"a^`"],"OPERAND2":[2,"a^{"]},"fields":{},"shadow":false,"topLevel":false},"a^`":{"opcode":"operator_gt","next":null,"parent":"Q9","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"a^{":{"opcode":"operator_lt","next":null,"parent":"Q9","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"x)":{"opcode":"control_if","next":"Q!","parent":"x4","inputs":{"CONDITION":[2,"as7"],"SUBSTACK":[2,"x*"]},"fields":{},"shadow":false,"topLevel":false},"as7":{"opcode":"operator_equals","next":null,"parent":"x)","inputs":{"OPERAND1":[3,"a^|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^|":{"opcode":"operator_mod","next":null,"parent":"as7","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"x*":{"opcode":"control_if_else","next":null,"parent":"x)","inputs":{"CONDITION":[2,"as8"],"SUBSTACK":[2,"a^}"],"SUBSTACK2":[2,"a^~"]},"fields":{},"shadow":false,"topLevel":false},"as8":{"opcode":"operator_equals","next":null,"parent":"x*","inputs":{"OPERAND1":[3,"a_a",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_a":{"opcode":"operator_mod","next":null,"parent":"as8","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^}":{"opcode":"procedures_call","next":null,"parent":"x*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"a^~":{"opcode":"procedures_call","next":null,"parent":"x*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"Q!":{"opcode":"control_if","next":null,"parent":"x)","inputs":{"CONDITION":[2,"as9"],"SUBSTACK":[2,"as!"]},"fields":{},"shadow":false,"topLevel":false},"as9":{"opcode":"operator_equals","next":null,"parent":"Q!","inputs":{"OPERAND1":[3,"a_b",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_b":{"opcode":"operator_mod","next":null,"parent":"as9","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as!":{"opcode":"data_setvariableto","next":null,"parent":"Q!","inputs":{"VALUE":[3,"as#",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"as#":{"opcode":"operator_add","next":null,"parent":"as!","inputs":{"NUM1":[3,"a_c",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a_c":{"opcode":"operator_gt","next":null,"parent":"as#","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"x(":{"opcode":"control_if","next":"x+","parent":"x4","inputs":{"CONDITION":[2,"Q#"],"SUBSTACK":[2,"x,"]},"fields":{},"shadow":false,"topLevel":false},"Q#":{"opcode":"operator_and","next":null,"parent":"x(","inputs":{"OPERAND1":[2,"a_d"],"OPERAND2":[2,"a_e"]},"fields":{},"shadow":false,"topLevel":false},"a_d":{"opcode":"operator_gt","next":null,"parent":"Q#","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a_e":{"opcode":"operator_lt","next":null,"parent":"Q#","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"x,":{"opcode":"control_if","next":"Q%","parent":"x(","inputs":{"CONDITION":[2,"as%"],"SUBSTACK":[2,"a_f"]},"fields":{},"shadow":false,"topLevel":false},"as%":{"opcode":"operator_equals","next":null,"parent":"x,","inputs":{"OPERAND1":[3,"a_g",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_g":{"opcode":"operator_mod","next":null,"parent":"as%","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_f":{"opcode":"data_setvariableto","next":null,"parent":"x,","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$irq_latch","MuVfO=YYlpa%T+H,NJnm"]},"shadow":false,"topLevel":false},"Q%":{"opcode":"control_if","next":null,"parent":"x,","inputs":{"CONDITION":[2,"as("],"SUBSTACK":[2,"a_h"]},"fields":{},"shadow":false,"topLevel":false},"as(":{"opcode":"operator_equals","next":null,"parent":"Q%","inputs":{"OPERAND1":[3,"a_i",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_i":{"opcode":"operator_mod","next":null,"parent":"as(","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_h":{"opcode":"data_setvariableto","next":null,"parent":"Q%","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"x+":{"opcode":"control_if","next":"jz","parent":"x(","inputs":{"CONDITION":[2,"Q("],"SUBSTACK":[2,"x-"]},"fields":{},"shadow":false,"topLevel":false},"Q(":{"opcode":"operator_and","next":null,"parent":"x+","inputs":{"OPERAND1":[2,"a_j"],"OPERAND2":[2,"a_k"]},"fields":{},"shadow":false,"topLevel":false},"a_j":{"opcode":"operator_gt","next":null,"parent":"Q(","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"a_k":{"opcode":"operator_lt","next":null,"parent":"Q(","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"x-":{"opcode":"control_if","next":"Q)","parent":"x+","inputs":{"CONDITION":[2,"as)"],"SUBSTACK":[2,"as*"]},"fields":{},"shadow":false,"topLevel":false},"as)":{"opcode":"operator_equals","next":null,"parent":"x-","inputs":{"OPERAND1":[3,"a_l",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_l":{"opcode":"operator_mod","next":null,"parent":"as)","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as*":{"opcode":"data_setvariableto","next":"Q*","parent":"x-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"Q*":{"opcode":"control_if","next":null,"parent":"as*","inputs":{"CONDITION":[2,"a_m"],"SUBSTACK":[2,"as+"]},"fields":{},"shadow":false,"topLevel":false},"a_m":{"opcode":"operator_equals","next":null,"parent":"Q*","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as+":{"opcode":"data_changevariableby","next":"a_n","parent":"Q*","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a_n":{"opcode":"data_setvariableto","next":null,"parent":"as+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"Q)":{"opcode":"control_if","next":null,"parent":"x-","inputs":{"CONDITION":[2,"as,"],"SUBSTACK":[2,"a_o"]},"fields":{},"shadow":false,"topLevel":false},"as,":{"opcode":"operator_equals","next":null,"parent":"Q)","inputs":{"OPERAND1":[3,"a_p",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_p":{"opcode":"operator_mod","next":null,"parent":"as,","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_o":{"opcode":"data_setvariableto","next":null,"parent":"Q)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"jz":{"opcode":"control_if_else","next":"x.","parent":"x+","inputs":{"CONDITION":[2,"a_q"],"SUBSTACK":[2,"as-"],"SUBSTACK2":[2,"as."]},"fields":{},"shadow":false,"topLevel":false},"a_q":{"opcode":"operator_equals","next":null,"parent":"jz","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"as-":{"opcode":"procedures_call","next":null,"parent":"jz","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,"a_r",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"a_r":{"opcode":"operator_subtract","next":null,"parent":"as-","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as.":{"opcode":"procedures_call","next":null,"parent":"jz","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,"a_s",[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"a_s":{"opcode":"operator_subtract","next":null,"parent":"as.","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"x.":{"opcode":"control_if_else","next":null,"parent":"jz","inputs":{"CONDITION":[2,"a_t"],"SUBSTACK":[2,"eu"],"SUBSTACK2":[2,"as/"]},"fields":{},"shadow":false,"topLevel":false},"a_t":{"opcode":"operator_equals","next":null,"parent":"x.","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"eu":{"opcode":"procedures_call","next":"a_u","parent":"x.","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,"as:",[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,"as;",[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,"as=",[10,""]],"M.aj{qup%g}995:UVZ[:":[3,"as?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"as:":{"opcode":"operator_subtract","next":null,"parent":"eu","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"a_v",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_v":{"opcode":"operator_mod","next":null,"parent":"as:","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as;":{"opcode":"operator_add","next":null,"parent":"eu","inputs":{"NUM1":[3,"as@",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as@":{"opcode":"operator_subtract","next":null,"parent":"as;","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"a_w",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_w":{"opcode":"operator_mod","next":null,"parent":"as@","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as=":{"opcode":"operator_subtract","next":null,"parent":"eu","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"a_x",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_x":{"opcode":"operator_mod","next":null,"parent":"as=","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as?":{"opcode":"operator_add","next":null,"parent":"eu","inputs":{"NUM1":[3,"as[",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as[":{"opcode":"operator_subtract","next":null,"parent":"as?","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"a_y",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_y":{"opcode":"operator_mod","next":null,"parent":"as[","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_u":{"opcode":"procedures_call","next":null,"parent":"eu","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"as/":{"opcode":"procedures_call","next":"jA","parent":"x.","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"jA":{"opcode":"procedures_call","next":null,"parent":"as/","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,"as]",[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,"as^",[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,"as_",[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,"as`",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"as]":{"opcode":"operator_subtract","next":null,"parent":"jA","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"a_z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_z":{"opcode":"operator_mod","next":null,"parent":"as]","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as^":{"opcode":"operator_add","next":null,"parent":"jA","inputs":{"NUM1":[3,"as{",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as{":{"opcode":"operator_subtract","next":null,"parent":"as^","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"a_A",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_A":{"opcode":"operator_mod","next":null,"parent":"as{","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as_":{"opcode":"operator_subtract","next":null,"parent":"jA","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"a_B",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_B":{"opcode":"operator_mod","next":null,"parent":"as_","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as`":{"opcode":"operator_add","next":null,"parent":"jA","inputs":{"NUM1":[3,"as|",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"as|":{"opcode":"operator_subtract","next":null,"parent":"as`","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"a_C",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_C":{"opcode":"operator_mod","next":null,"parent":"as|","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_D":{"opcode":"event_whenbroadcastreceived","next":"as}","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":19722,"y":64},"as}":{"opcode":"data_deletealloflist","next":"Q+","parent":"a_D","inputs":{},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"Q+":{"opcode":"data_addtolist","next":"Q,","parent":"as}","inputs":{"ITEM":[3,"as~",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"as~":{"opcode":"operator_mod","next":null,"parent":"Q+","inputs":{"NUM1":[3,"a_E",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_E":{"opcode":"operator_subtract","next":null,"parent":"as~","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"Q,":{"opcode":"data_addtolist","next":"Q-","parent":"Q+","inputs":{"ITEM":[3,"ata",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"ata":{"opcode":"operator_mod","next":null,"parent":"Q,","inputs":{"NUM1":[3,"a_F",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_F":{"opcode":"operator_subtract","next":null,"parent":"ata","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"24576"]]},"fields":{},"shadow":false,"topLevel":false},"Q-":{"opcode":"data_addtolist","next":"Q.","parent":"Q,","inputs":{"ITEM":[3,"atb",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"atb":{"opcode":"operator_mod","next":null,"parent":"Q-","inputs":{"NUM1":[3,"a_G",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_G":{"opcode":"operator_subtract","next":null,"parent":"atb","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"Q.":{"opcode":"data_addtolist","next":"atc","parent":"Q-","inputs":{"ITEM":[3,"atd",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"atd":{"opcode":"operator_mod","next":null,"parent":"Q.","inputs":{"NUM1":[3,"a_H",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_H":{"opcode":"operator_subtract","next":null,"parent":"atd","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"atc":{"opcode":"data_addtolist","next":"ate","parent":"Q.","inputs":{"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"ate":{"opcode":"data_deletealloflist","next":"Q/","parent":"atc","inputs":{},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"Q/":{"opcode":"data_addtolist","next":"Q:","parent":"ate","inputs":{"ITEM":[3,"atf",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atf":{"opcode":"operator_mod","next":null,"parent":"Q/","inputs":{"NUM1":[3,"a_I",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_I":{"opcode":"operator_subtract","next":null,"parent":"atf","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"Q:":{"opcode":"data_addtolist","next":"Q;","parent":"Q/","inputs":{"ITEM":[3,"atg",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atg":{"opcode":"operator_mod","next":null,"parent":"Q:","inputs":{"NUM1":[3,"a_J",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_J":{"opcode":"operator_subtract","next":null,"parent":"atg","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"Q;":{"opcode":"data_addtolist","next":"Q=","parent":"Q:","inputs":{"ITEM":[3,"ath",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"ath":{"opcode":"operator_mod","next":null,"parent":"Q;","inputs":{"NUM1":[3,"a_K",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_K":{"opcode":"operator_subtract","next":null,"parent":"ath","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"Q=":{"opcode":"data_addtolist","next":"Q?","parent":"Q;","inputs":{"ITEM":[3,"ati",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"ati":{"opcode":"operator_mod","next":null,"parent":"Q=","inputs":{"NUM1":[3,"a_L",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_L":{"opcode":"operator_subtract","next":null,"parent":"ati","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"Q?":{"opcode":"data_addtolist","next":"Q@","parent":"Q=","inputs":{"ITEM":[3,"atj",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atj":{"opcode":"operator_mod","next":null,"parent":"Q?","inputs":{"NUM1":[3,"a_M",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_M":{"opcode":"operator_subtract","next":null,"parent":"atj","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"Q@":{"opcode":"data_addtolist","next":"Q[","parent":"Q?","inputs":{"ITEM":[3,"atk",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atk":{"opcode":"operator_mod","next":null,"parent":"Q@","inputs":{"NUM1":[3,"a_N",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_N":{"opcode":"operator_subtract","next":null,"parent":"atk","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"Q[":{"opcode":"data_addtolist","next":"Q]","parent":"Q@","inputs":{"ITEM":[3,"atl",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atl":{"opcode":"operator_mod","next":null,"parent":"Q[","inputs":{"NUM1":[3,"a_O",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_O":{"opcode":"operator_subtract","next":null,"parent":"atl","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"Q]":{"opcode":"data_addtolist","next":"atm","parent":"Q[","inputs":{"ITEM":[3,"atn",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"atn":{"opcode":"operator_mod","next":null,"parent":"Q]","inputs":{"NUM1":[3,"a_P",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a_P":{"opcode":"operator_subtract","next":null,"parent":"atn","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"atm":{"opcode":"data_setvariableto","next":"ato","parent":"Q]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"ato":{"opcode":"data_setvariableto","next":"atp","parent":"atm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"atp":{"opcode":"data_setvariableto","next":"atq","parent":"ato","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"atq":{"opcode":"data_setvariableto","next":"atr","parent":"atp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"atr":{"opcode":"data_setvariableto","next":"ats","parent":"atq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"ats":{"opcode":"data_setvariableto","next":"att","parent":"atr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"att":{"opcode":"data_setvariableto","next":"atu","parent":"ats","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"atu":{"opcode":"data_setvariableto","next":"atv","parent":"att","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"atv":{"opcode":"data_setvariableto","next":"atw","parent":"atu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"atw":{"opcode":"data_setvariableto","next":"atx","parent":"atv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"atx":{"opcode":"data_setvariableto","next":"aty","parent":"atw","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"aty":{"opcode":"data_setvariableto","next":"atz","parent":"atx","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"atz":{"opcode":"data_setvariableto","next":"atA","parent":"aty","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"atA":{"opcode":"data_setvariableto","next":"atB","parent":"atz","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"atB":{"opcode":"data_setvariableto","next":"atC","parent":"atA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"atC":{"opcode":"data_setvariableto","next":"atD","parent":"atB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"atD":{"opcode":"data_setvariableto","next":"atE","parent":"atC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"atE":{"opcode":"data_setvariableto","next":"atF","parent":"atD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"atF":{"opcode":"data_setvariableto","next":"atG","parent":"atE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_latch","MuVfO=YYlpa%T+H,NJnm"]},"shadow":false,"topLevel":false},"atG":{"opcode":"data_setvariableto","next":"atH","parent":"atF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"atH":{"opcode":"data_setvariableto","next":"atI","parent":"atG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"atI":{"opcode":"data_setvariableto","next":"x/","parent":"atH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"x/":{"opcode":"control_if","next":"x:","parent":"atI","inputs":{"CONDITION":[2,"a_Q"],"SUBSTACK":[2,"atJ"]},"fields":{},"shadow":false,"topLevel":false},"a_Q":{"opcode":"operator_equals","next":null,"parent":"x/","inputs":{"OPERAND1":[3,[12,"chr_ram","70;C?(`taL+qCsw6v*gi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"atJ":{"opcode":"data_deletealloflist","next":"atK","parent":"x/","inputs":{},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"atK":{"opcode":"control_repeat","next":null,"parent":"atJ","inputs":{"TIMES":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[6,0]],"SUBSTACK":[2,"a_R"]},"fields":{},"shadow":false,"topLevel":false},"a_R":{"opcode":"data_addtolist","next":null,"parent":"atK","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"x:":{"opcode":"control_if","next":"x;","parent":"x/","inputs":{"CONDITION":[2,"a_S"],"SUBSTACK":[2,"atL"]},"fields":{},"shadow":false,"topLevel":false},"a_S":{"opcode":"operator_equals","next":null,"parent":"x:","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"atL":{"opcode":"data_setvariableto","next":"atM","parent":"x:","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"atM":{"opcode":"data_setvariableto","next":"atN","parent":"atL","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"atN":{"opcode":"data_setvariableto","next":null,"parent":"atM","inputs":{"VALUE":[3,"a_T",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_T":{"opcode":"operator_divide","next":null,"parent":"atN","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"x;":{"opcode":"control_if","next":"x=","parent":"x:","inputs":{"CONDITION":[2,"a_U"],"SUBSTACK":[2,"atO"]},"fields":{},"shadow":false,"topLevel":false},"a_U":{"opcode":"operator_equals","next":null,"parent":"x;","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"atO":{"opcode":"data_setvariableto","next":null,"parent":"x;","inputs":{"VALUE":[3,"a_V",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_V":{"opcode":"operator_divide","next":null,"parent":"atO","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"x=":{"opcode":"control_if","next":"x?","parent":"x;","inputs":{"CONDITION":[2,"a_W"],"SUBSTACK":[2,"atP"]},"fields":{},"shadow":false,"topLevel":false},"a_W":{"opcode":"operator_equals","next":null,"parent":"x=","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"atP":{"opcode":"data_setvariableto","next":null,"parent":"x=","inputs":{"VALUE":[3,"a_X",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_X":{"opcode":"operator_divide","next":null,"parent":"atP","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"x?":{"opcode":"control_if","next":"x@","parent":"x=","inputs":{"CONDITION":[2,"a_Y"],"SUBSTACK":[2,"atQ"]},"fields":{},"shadow":false,"topLevel":false},"a_Y":{"opcode":"operator_equals","next":null,"parent":"x?","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"atQ":{"opcode":"data_setvariableto","next":null,"parent":"x?","inputs":{"VALUE":[3,"a_Z",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_Z":{"opcode":"operator_divide","next":null,"parent":"atQ","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"x@":{"opcode":"control_if","next":"x[","parent":"x?","inputs":{"CONDITION":[2,"a_0"],"SUBSTACK":[2,"atR"]},"fields":{},"shadow":false,"topLevel":false},"a_0":{"opcode":"operator_equals","next":null,"parent":"x@","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"atR":{"opcode":"procedures_call","next":"atS","parent":"x@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"atS":{"opcode":"data_setvariableto","next":null,"parent":"atR","inputs":{"VALUE":[3,"a_1",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_1":{"opcode":"operator_divide","next":null,"parent":"atS","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"x[":{"opcode":"control_if","next":"x]","parent":"x@","inputs":{"CONDITION":[2,"a_2"],"SUBSTACK":[2,"atT"]},"fields":{},"shadow":false,"topLevel":false},"a_2":{"opcode":"operator_equals","next":null,"parent":"x[","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"atT":{"opcode":"data_setvariableto","next":"atU","parent":"x[","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$5b_command","+yZB}NV9!4)X~Jf@W14_"]},"shadow":false,"topLevel":false},"atU":{"opcode":"data_setvariableto","next":null,"parent":"atT","inputs":{"VALUE":[3,"a_3",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_3":{"opcode":"operator_divide","next":null,"parent":"atU","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"x]":{"opcode":"control_if","next":"x^","parent":"x[","inputs":{"CONDITION":[2,"a_4"],"SUBSTACK":[2,"atV"]},"fields":{},"shadow":false,"topLevel":false},"a_4":{"opcode":"operator_equals","next":null,"parent":"x]","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"atV":{"opcode":"data_setvariableto","next":null,"parent":"x]","inputs":{"VALUE":[3,"a_5",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_5":{"opcode":"operator_divide","next":null,"parent":"atV","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"x^":{"opcode":"control_if","next":"Q^","parent":"x]","inputs":{"CONDITION":[2,"a_6"],"SUBSTACK":[2,"atW"]},"fields":{},"shadow":false,"topLevel":false},"a_6":{"opcode":"operator_equals","next":null,"parent":"x^","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"atW":{"opcode":"data_setvariableto","next":"atX","parent":"x^","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"atX":{"opcode":"data_setvariableto","next":"atY","parent":"atW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"]},"shadow":false,"topLevel":false},"atY":{"opcode":"data_setvariableto","next":null,"parent":"atX","inputs":{"VALUE":[3,"a_7",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_7":{"opcode":"operator_divide","next":null,"parent":"atY","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"Q^":{"opcode":"control_if","next":null,"parent":"x^","inputs":{"CONDITION":[2,"a_8"],"SUBSTACK":[2,"atZ"]},"fields":{},"shadow":false,"topLevel":false},"a_8":{"opcode":"operator_equals","next":null,"parent":"Q^","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"206"]]},"fields":{},"shadow":false,"topLevel":false},"atZ":{"opcode":"data_setvariableto","next":null,"parent":"Q^","inputs":{"VALUE":[3,"a_9",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"a_9":{"opcode":"operator_divide","next":null,"parent":"atZ","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"at0":{"opcode":"procedures_definition","next":"x_","parent":null,"inputs":{"custom_block":[1,"a_!"]},"fields":{},"shadow":false,"topLevel":true,"x":20344,"y":64},"a_!":{"opcode":"procedures_prototype","next":null,"parent":"at0","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mapper write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"x_":{"opcode":"control_if","next":"x`","parent":"at0","inputs":{"CONDITION":[2,"a_#"],"SUBSTACK":[2,"a_%"]},"fields":{},"shadow":false,"topLevel":false},"a_#":{"opcode":"operator_equals","next":null,"parent":"x_","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_%":{"opcode":"control_stop","next":null,"parent":"x_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x`":{"opcode":"control_if","next":"x{","parent":"x_","inputs":{"CONDITION":[2,"a_("],"SUBSTACK":[2,"at1"]},"fields":{},"shadow":false,"topLevel":false},"a_(":{"opcode":"operator_equals","next":null,"parent":"x`","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"at1":{"opcode":"procedures_call","next":"a_)","parent":"x`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc1","argumentids":"[]","warp":"true"}},"a_)":{"opcode":"control_stop","next":null,"parent":"at1","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x{":{"opcode":"control_if","next":"x|","parent":"x`","inputs":{"CONDITION":[2,"a_*"],"SUBSTACK":[2,"at2"]},"fields":{},"shadow":false,"topLevel":false},"a_*":{"opcode":"operator_equals","next":null,"parent":"x{","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"at2":{"opcode":"procedures_call","next":"a_+","parent":"x{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$unrom","argumentids":"[]","warp":"true"}},"a_+":{"opcode":"control_stop","next":null,"parent":"at2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x|":{"opcode":"control_if","next":"x}","parent":"x{","inputs":{"CONDITION":[2,"a_,"],"SUBSTACK":[2,"at3"]},"fields":{},"shadow":false,"topLevel":false},"a_,":{"opcode":"operator_equals","next":null,"parent":"x|","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"at3":{"opcode":"procedures_call","next":"a_-","parent":"x|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$cnrom","argumentids":"[]","warp":"true"}},"a_-":{"opcode":"control_stop","next":null,"parent":"at3","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x}":{"opcode":"control_if","next":"x~","parent":"x|","inputs":{"CONDITION":[2,"a_."],"SUBSTACK":[2,"at4"]},"fields":{},"shadow":false,"topLevel":false},"a_.":{"opcode":"operator_equals","next":null,"parent":"x}","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"at4":{"opcode":"procedures_call","next":"a_/","parent":"x}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc3","argumentids":"[]","warp":"true"}},"a_/":{"opcode":"control_stop","next":null,"parent":"at4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x~":{"opcode":"control_if","next":"ya","parent":"x}","inputs":{"CONDITION":[2,"a_:"],"SUBSTACK":[2,"at5"]},"fields":{},"shadow":false,"topLevel":false},"a_:":{"opcode":"operator_equals","next":null,"parent":"x~","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"at5":{"opcode":"procedures_call","next":"a_;","parent":"x~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$anrom","argumentids":"[]","warp":"true"}},"a_;":{"opcode":"control_stop","next":null,"parent":"at5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ya":{"opcode":"control_if","next":"yb","parent":"x~","inputs":{"CONDITION":[2,"a_="],"SUBSTACK":[2,"at6"]},"fields":{},"shadow":false,"topLevel":false},"a_=":{"opcode":"operator_equals","next":null,"parent":"ya","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"at6":{"opcode":"procedures_call","next":"a_?","parent":"ya","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$fme7","argumentids":"[]","warp":"true"}},"a_?":{"opcode":"control_stop","next":null,"parent":"at6","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yb":{"opcode":"control_if","next":"yc","parent":"ya","inputs":{"CONDITION":[2,"a_@"],"SUBSTACK":[2,"at7"]},"fields":{},"shadow":false,"topLevel":false},"a_@":{"opcode":"operator_equals","next":null,"parent":"yb","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"at7":{"opcode":"procedures_call","next":"a_[","parent":"yb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$vrc1","argumentids":"[]","warp":"true"}},"a_[":{"opcode":"control_stop","next":null,"parent":"at7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yc":{"opcode":"control_if","next":"Q_","parent":"yb","inputs":{"CONDITION":[2,"a_]"],"SUBSTACK":[2,"at8"]},"fields":{},"shadow":false,"topLevel":false},"a_]":{"opcode":"operator_equals","next":null,"parent":"yc","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"at8":{"opcode":"procedures_call","next":"a_^","parent":"yc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$jy","argumentids":"[]","warp":"true"}},"a_^":{"opcode":"control_stop","next":null,"parent":"at8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Q_":{"opcode":"control_if","next":null,"parent":"yc","inputs":{"CONDITION":[2,"a__"],"SUBSTACK":[2,"at9"]},"fields":{},"shadow":false,"topLevel":false},"a__":{"opcode":"operator_equals","next":null,"parent":"Q_","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"206"]]},"fields":{},"shadow":false,"topLevel":false},"at9":{"opcode":"procedures_call","next":"a_`","parent":"Q_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$simple_mmc3","argumentids":"[]","warp":"true"}},"a_`":{"opcode":"control_stop","next":null,"parent":"at9","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"at!":{"opcode":"procedures_definition","next":"yd","parent":null,"inputs":{"custom_block":[1,"a_{"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":5216},"a_{":{"opcode":"procedures_prototype","next":null,"parent":"at!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"yd":{"opcode":"control_if","next":"Q`","parent":"at!","inputs":{"CONDITION":[2,"a_|"],"SUBSTACK":[2,"ye"]},"fields":{},"shadow":false,"topLevel":false},"a_|":{"opcode":"operator_equals","next":null,"parent":"yd","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ye":{"opcode":"control_if","next":"a_}","parent":"yd","inputs":{"CONDITION":[2,"a_~"],"SUBSTACK":[2,"jB"]},"fields":{},"shadow":false,"topLevel":false},"a_~":{"opcode":"operator_equals","next":null,"parent":"ye","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jB":{"opcode":"control_if_else","next":"Q{","parent":"ye","inputs":{"CONDITION":[2,"Q|"],"SUBSTACK":[2,"at#"],"SUBSTACK2":[2,"a`a"]},"fields":{},"shadow":false,"topLevel":false},"Q|":{"opcode":"operator_or","next":null,"parent":"jB","inputs":{"OPERAND1":[2,"a`b"],"OPERAND2":[2,"a`c"]},"fields":{},"shadow":false,"topLevel":false},"a`b":{"opcode":"operator_equals","next":null,"parent":"Q|","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`c":{"opcode":"operator_equals","next":null,"parent":"Q|","inputs":{"OPERAND1":[3,[12,"$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"at#":{"opcode":"data_setvariableto","next":"a`d","parent":"jB","inputs":{"VALUE":[3,[12,"$irq_latch","MuVfO=YYlpa%T+H,NJnm"],[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"a`d":{"opcode":"data_setvariableto","next":null,"parent":"at#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"a`a":{"opcode":"data_changevariableby","next":null,"parent":"jB","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"Q{":{"opcode":"control_if","next":null,"parent":"jB","inputs":{"CONDITION":[2,"Q}"],"SUBSTACK":[2,"at%"]},"fields":{},"shadow":false,"topLevel":false},"Q}":{"opcode":"operator_and","next":null,"parent":"Q{","inputs":{"OPERAND1":[2,"Q~"],"OPERAND2":[2,"a`e"]},"fields":{},"shadow":false,"topLevel":false},"Q~":{"opcode":"operator_and","next":null,"parent":"Q}","inputs":{"OPERAND1":[2,"a`f"],"OPERAND2":[2,"a`g"]},"fields":{},"shadow":false,"topLevel":false},"a`f":{"opcode":"operator_equals","next":null,"parent":"Q~","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`g":{"opcode":"operator_equals","next":null,"parent":"Q~","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`e":{"opcode":"operator_equals","next":null,"parent":"Q}","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"at%":{"opcode":"data_changevariableby","next":"a`h","parent":"Q{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a`h":{"opcode":"data_setvariableto","next":null,"parent":"at%","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"a_}":{"opcode":"control_stop","next":null,"parent":"ye","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Q`":{"opcode":"control_if","next":null,"parent":"yd","inputs":{"CONDITION":[2,"a`i"],"SUBSTACK":[2,"yf"]},"fields":{},"shadow":false,"topLevel":false},"a`i":{"opcode":"operator_equals","next":null,"parent":"Q`","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"yf":{"opcode":"control_if","next":"a`j","parent":"Q`","inputs":{"CONDITION":[2,"Ra"],"SUBSTACK":[2,"Rb"]},"fields":{},"shadow":false,"topLevel":false},"Ra":{"opcode":"operator_and","next":null,"parent":"yf","inputs":{"OPERAND1":[2,"a`k"],"OPERAND2":[2,"a`l"]},"fields":{},"shadow":false,"topLevel":false},"a`k":{"opcode":"operator_equals","next":null,"parent":"Ra","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`l":{"opcode":"operator_equals","next":null,"parent":"Ra","inputs":{"OPERAND1":[3,[12,"$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Rb":{"opcode":"data_setvariableto","next":"Rc","parent":"yf","inputs":{"VALUE":[3,"at(",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"at(":{"opcode":"operator_mod","next":null,"parent":"Rb","inputs":{"NUM1":[3,"a`m",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a`m":{"opcode":"operator_subtract","next":null,"parent":"at(","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Rc":{"opcode":"control_if","next":null,"parent":"Rb","inputs":{"CONDITION":[2,"Rd"],"SUBSTACK":[2,"at)"]},"fields":{},"shadow":false,"topLevel":false},"Rd":{"opcode":"operator_and","next":null,"parent":"Rc","inputs":{"OPERAND1":[2,"Xs"],"OPERAND2":[2,"a`n"]},"fields":{},"shadow":false,"topLevel":false},"Xs":{"opcode":"operator_and","next":null,"parent":"Rd","inputs":{"OPERAND1":[2,"a`o"],"OPERAND2":[2,"a`p"]},"fields":{},"shadow":false,"topLevel":false},"a`o":{"opcode":"operator_equals","next":null,"parent":"Xs","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"a`p":{"opcode":"operator_equals","next":null,"parent":"Xs","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`n":{"opcode":"operator_equals","next":null,"parent":"Rd","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"at)":{"opcode":"data_changevariableby","next":"a`q","parent":"Rc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a`q":{"opcode":"data_setvariableto","next":null,"parent":"at)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"a`j":{"opcode":"control_stop","next":null,"parent":"yf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"at*":{"opcode":"procedures_definition","next":"yg","parent":null,"inputs":{"custom_block":[1,"a`r"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":7668},"a`r":{"opcode":"procedures_prototype","next":null,"parent":"at*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$vrc1","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"yg":{"opcode":"control_if","next":"yh","parent":"at*","inputs":{"CONDITION":[2,"Xt"],"SUBSTACK":[2,"at+"]},"fields":{},"shadow":false,"topLevel":false},"Xt":{"opcode":"operator_and","next":null,"parent":"yg","inputs":{"OPERAND1":[2,"a`s"],"OPERAND2":[2,"a`t"]},"fields":{},"shadow":false,"topLevel":false},"a`s":{"opcode":"operator_gt","next":null,"parent":"Xt","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a`t":{"opcode":"operator_lt","next":null,"parent":"Xt","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36864"]]},"fields":{},"shadow":false,"topLevel":false},"at+":{"opcode":"data_setvariableto","next":null,"parent":"yg","inputs":{"VALUE":[3,"a`u",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a`u":{"opcode":"operator_mod","next":null,"parent":"at+","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yh":{"opcode":"control_if","next":"yi","parent":"yg","inputs":{"CONDITION":[2,"Xu"],"SUBSTACK":[2,"jC"]},"fields":{},"shadow":false,"topLevel":false},"Xu":{"opcode":"operator_and","next":null,"parent":"yh","inputs":{"OPERAND1":[2,"a`v"],"OPERAND2":[2,"a`w"]},"fields":{},"shadow":false,"topLevel":false},"a`v":{"opcode":"operator_gt","next":null,"parent":"Xu","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36863"]]},"fields":{},"shadow":false,"topLevel":false},"a`w":{"opcode":"operator_lt","next":null,"parent":"Xu","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"jC":{"opcode":"control_if_else","next":"Xv","parent":"yh","inputs":{"CONDITION":[2,"at,"],"SUBSTACK":[2,"a`x"],"SUBSTACK2":[2,"a`y"]},"fields":{},"shadow":false,"topLevel":false},"at,":{"opcode":"operator_equals","next":null,"parent":"jC","inputs":{"OPERAND1":[3,"a`z",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`z":{"opcode":"operator_mod","next":null,"parent":"at,","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a`x":{"opcode":"procedures_call","next":null,"parent":"jC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"a`y":{"opcode":"procedures_call","next":null,"parent":"jC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"Xv":{"opcode":"data_setvariableto","next":"at-","parent":"jC","inputs":{"VALUE":[3,"Xw",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"Xw":{"opcode":"operator_add","next":null,"parent":"Xv","inputs":{"NUM1":[3,"a`A",[4,0]],"NUM2":[3,"at.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`A":{"opcode":"operator_mod","next":null,"parent":"Xw","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at.":{"opcode":"operator_multiply","next":null,"parent":"Xw","inputs":{"NUM1":[3,"at/",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at/":{"opcode":"operator_mod","next":null,"parent":"at.","inputs":{"NUM1":[3,"at:",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"at:":{"opcode":"operator_mathop","next":null,"parent":"at/","inputs":{"NUM":[3,"a`B",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a`B":{"opcode":"operator_divide","next":null,"parent":"at:","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"at-":{"opcode":"data_setvariableto","next":null,"parent":"Xv","inputs":{"VALUE":[3,"Xx",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"Xx":{"opcode":"operator_add","next":null,"parent":"at-","inputs":{"NUM1":[3,"a`C",[4,0]],"NUM2":[3,"at;",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`C":{"opcode":"operator_mod","next":null,"parent":"Xx","inputs":{"NUM1":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at;":{"opcode":"operator_multiply","next":null,"parent":"Xx","inputs":{"NUM1":[3,"at=",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at=":{"opcode":"operator_mod","next":null,"parent":"at;","inputs":{"NUM1":[3,"at?",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"at?":{"opcode":"operator_mathop","next":null,"parent":"at=","inputs":{"NUM":[3,"a`D",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a`D":{"opcode":"operator_divide","next":null,"parent":"at?","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"yi":{"opcode":"control_if","next":"yj","parent":"yh","inputs":{"CONDITION":[2,"Xy"],"SUBSTACK":[2,"at@"]},"fields":{},"shadow":false,"topLevel":false},"Xy":{"opcode":"operator_and","next":null,"parent":"yi","inputs":{"OPERAND1":[2,"a`E"],"OPERAND2":[2,"a`F"]},"fields":{},"shadow":false,"topLevel":false},"a`E":{"opcode":"operator_gt","next":null,"parent":"Xy","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"a`F":{"opcode":"operator_lt","next":null,"parent":"Xy","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"45056"]]},"fields":{},"shadow":false,"topLevel":false},"at@":{"opcode":"data_setvariableto","next":null,"parent":"yi","inputs":{"VALUE":[3,"a`G",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"a`G":{"opcode":"operator_mod","next":null,"parent":"at@","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yj":{"opcode":"control_if","next":"yk","parent":"yi","inputs":{"CONDITION":[2,"Xz"],"SUBSTACK":[2,"at["]},"fields":{},"shadow":false,"topLevel":false},"Xz":{"opcode":"operator_and","next":null,"parent":"yj","inputs":{"OPERAND1":[2,"a`H"],"OPERAND2":[2,"a`I"]},"fields":{},"shadow":false,"topLevel":false},"a`H":{"opcode":"operator_gt","next":null,"parent":"Xz","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a`I":{"opcode":"operator_lt","next":null,"parent":"Xz","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53248"]]},"fields":{},"shadow":false,"topLevel":false},"at[":{"opcode":"data_setvariableto","next":null,"parent":"yj","inputs":{"VALUE":[3,"a`J",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"a`J":{"opcode":"operator_mod","next":null,"parent":"at[","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yk":{"opcode":"control_if","next":"yl","parent":"yj","inputs":{"CONDITION":[2,"XA"],"SUBSTACK":[2,"at]"]},"fields":{},"shadow":false,"topLevel":false},"XA":{"opcode":"operator_and","next":null,"parent":"yk","inputs":{"OPERAND1":[2,"a`K"],"OPERAND2":[2,"a`L"]},"fields":{},"shadow":false,"topLevel":false},"a`K":{"opcode":"operator_gt","next":null,"parent":"XA","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"a`L":{"opcode":"operator_lt","next":null,"parent":"XA","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"61440"]]},"fields":{},"shadow":false,"topLevel":false},"at]":{"opcode":"data_setvariableto","next":null,"parent":"yk","inputs":{"VALUE":[3,"XB",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"XB":{"opcode":"operator_add","next":null,"parent":"at]","inputs":{"NUM1":[3,"a`M",[4,0]],"NUM2":[3,"at^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`M":{"opcode":"operator_mod","next":null,"parent":"XB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at^":{"opcode":"operator_multiply","next":null,"parent":"XB","inputs":{"NUM1":[3,"at_",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at_":{"opcode":"operator_mathop","next":null,"parent":"at^","inputs":{"NUM":[3,"a`N",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a`N":{"opcode":"operator_divide","next":null,"parent":"at_","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yl":{"opcode":"control_if","next":"at`","parent":"yk","inputs":{"CONDITION":[2,"XC"],"SUBSTACK":[2,"at{"]},"fields":{},"shadow":false,"topLevel":false},"XC":{"opcode":"operator_and","next":null,"parent":"yl","inputs":{"OPERAND1":[2,"a`O"],"OPERAND2":[2,"a`P"]},"fields":{},"shadow":false,"topLevel":false},"a`O":{"opcode":"operator_gt","next":null,"parent":"XC","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"61439"]]},"fields":{},"shadow":false,"topLevel":false},"a`P":{"opcode":"operator_lt","next":null,"parent":"XC","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"at{":{"opcode":"data_setvariableto","next":null,"parent":"yl","inputs":{"VALUE":[3,"XD",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"XD":{"opcode":"operator_add","next":null,"parent":"at{","inputs":{"NUM1":[3,"a`Q",[4,0]],"NUM2":[3,"at|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`Q":{"opcode":"operator_mod","next":null,"parent":"XD","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at|":{"opcode":"operator_multiply","next":null,"parent":"XD","inputs":{"NUM1":[3,"at}",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at}":{"opcode":"operator_mathop","next":null,"parent":"at|","inputs":{"NUM":[3,"a`R",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a`R":{"opcode":"operator_divide","next":null,"parent":"at}","inputs":{"NUM1":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"at`":{"opcode":"procedures_call","next":"a`S","parent":"yl","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"a`S":{"opcode":"procedures_call","next":null,"parent":"at`","inputs":{"GVNB1CwSzA9:lV]`a$I$":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"WGS!dwukgOkU#8[iyU[X":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","warp":"true"}},"at~":{"opcode":"procedures_definition","next":"XE","parent":null,"inputs":{"custom_block":[1,"a`T"]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":7112},"a`T":{"opcode":"procedures_prototype","next":null,"parent":"at~","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu list","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"XE":{"opcode":"data_replaceitemoflist","next":"jD","parent":"at~","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aua",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aua":{"opcode":"operator_divide","next":null,"parent":"XE","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aub",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aub":{"opcode":"operator_multiply","next":null,"parent":"aua","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"a`U",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`U":{"opcode":"operator_add","next":null,"parent":"aub","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jD":{"opcode":"control_if_else","next":"auc","parent":"XE","inputs":{"CONDITION":[2,"XF"],"SUBSTACK":[2,"a`V"],"SUBSTACK2":[2,"ym"]},"fields":{},"shadow":false,"topLevel":false},"XF":{"opcode":"operator_or","next":null,"parent":"jD","inputs":{"OPERAND1":[2,"XG"],"OPERAND2":[2,"XH"]},"fields":{},"shadow":false,"topLevel":false},"XG":{"opcode":"operator_or","next":null,"parent":"XF","inputs":{"OPERAND1":[2,"a`W"],"OPERAND2":[2,"a`X"]},"fields":{},"shadow":false,"topLevel":false},"a`W":{"opcode":"operator_equals","next":null,"parent":"XG","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`X":{"opcode":"operator_equals","next":null,"parent":"XG","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XH":{"opcode":"operator_or","next":null,"parent":"XF","inputs":{"OPERAND1":[2,"a`Y"],"OPERAND2":[2,"a`Z"]},"fields":{},"shadow":false,"topLevel":false},"a`Y":{"opcode":"operator_lt","next":null,"parent":"XH","inputs":{"OPERAND1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a`Z":{"opcode":"operator_gt","next":null,"parent":"XH","inputs":{"OPERAND1":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"a`V":{"opcode":"data_replaceitemoflist","next":null,"parent":"jD","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"ym":{"opcode":"control_if_else","next":null,"parent":"jD","inputs":{"CONDITION":[2,"a`0"],"SUBSTACK":[2,"aud"],"SUBSTACK2":[2,"aue"]},"fields":{},"shadow":false,"topLevel":false},"a`0":{"opcode":"operator_equals","next":null,"parent":"ym","inputs":{"OPERAND1":[3,[12,"#sq0_constant","wn(;l_KDki8)r5(ghAFC"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aud":{"opcode":"data_replaceitemoflist","next":null,"parent":"ym","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"a`1",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`1":{"opcode":"operator_multiply","next":null,"parent":"aud","inputs":{"NUM1":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"aue":{"opcode":"data_replaceitemoflist","next":null,"parent":"ym","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"a`2",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`2":{"opcode":"operator_multiply","next":null,"parent":"aue","inputs":{"NUM1":[3,[12,"#sq0_decay","[Gs~6]:p]neDG4uT.*8R"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"auc":{"opcode":"data_replaceitemoflist","next":"XI","parent":"jD","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,[12,"#sq0_duty","dB0flbU!1%]JaiK.z7Y$"],[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"XI":{"opcode":"data_replaceitemoflist","next":"jE","parent":"auc","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"auf",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"auf":{"opcode":"operator_divide","next":null,"parent":"XI","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aug",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aug":{"opcode":"operator_multiply","next":null,"parent":"auf","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"a`3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`3":{"opcode":"operator_add","next":null,"parent":"aug","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jE":{"opcode":"control_if_else","next":"auh","parent":"XI","inputs":{"CONDITION":[2,"XJ"],"SUBSTACK":[2,"a`4"],"SUBSTACK2":[2,"yn"]},"fields":{},"shadow":false,"topLevel":false},"XJ":{"opcode":"operator_or","next":null,"parent":"jE","inputs":{"OPERAND1":[2,"XK"],"OPERAND2":[2,"XL"]},"fields":{},"shadow":false,"topLevel":false},"XK":{"opcode":"operator_or","next":null,"parent":"XJ","inputs":{"OPERAND1":[2,"a`5"],"OPERAND2":[2,"a`6"]},"fields":{},"shadow":false,"topLevel":false},"a`5":{"opcode":"operator_equals","next":null,"parent":"XK","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`6":{"opcode":"operator_equals","next":null,"parent":"XK","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XL":{"opcode":"operator_or","next":null,"parent":"XJ","inputs":{"OPERAND1":[2,"a`7"],"OPERAND2":[2,"a`8"]},"fields":{},"shadow":false,"topLevel":false},"a`7":{"opcode":"operator_lt","next":null,"parent":"XL","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a`8":{"opcode":"operator_gt","next":null,"parent":"XL","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"a`4":{"opcode":"data_replaceitemoflist","next":null,"parent":"jE","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"yn":{"opcode":"control_if_else","next":null,"parent":"jE","inputs":{"CONDITION":[2,"a`9"],"SUBSTACK":[2,"aui"],"SUBSTACK2":[2,"auj"]},"fields":{},"shadow":false,"topLevel":false},"a`9":{"opcode":"operator_equals","next":null,"parent":"yn","inputs":{"OPERAND1":[3,[12,"#sq1_constant","V5`gP*J*-[d%pHYl=WL."],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aui":{"opcode":"data_replaceitemoflist","next":null,"parent":"yn","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"a`!",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`!":{"opcode":"operator_multiply","next":null,"parent":"aui","inputs":{"NUM1":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"auj":{"opcode":"data_replaceitemoflist","next":null,"parent":"yn","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"a`#",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`#":{"opcode":"operator_multiply","next":null,"parent":"auj","inputs":{"NUM1":[3,[12,"#sq1_decay","N3TVGftA]FVjj5Akw]@K"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"auh":{"opcode":"data_replaceitemoflist","next":"XM","parent":"jE","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"#sq1_duty","JFkRP]sBcRFZA#p%(s5["],[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"XM":{"opcode":"data_replaceitemoflist","next":"jF","parent":"auh","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"auk",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"auk":{"opcode":"operator_divide","next":null,"parent":"XM","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aul",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aul":{"opcode":"operator_multiply","next":null,"parent":"auk","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"a`%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`%":{"opcode":"operator_add","next":null,"parent":"aul","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jF":{"opcode":"control_if_else","next":"XN","parent":"XM","inputs":{"CONDITION":[2,"XO"],"SUBSTACK":[2,"a`("],"SUBSTACK2":[2,"a`)"]},"fields":{},"shadow":false,"topLevel":false},"XO":{"opcode":"operator_or","next":null,"parent":"jF","inputs":{"OPERAND1":[2,"XP"],"OPERAND2":[2,"XQ"]},"fields":{},"shadow":false,"topLevel":false},"XP":{"opcode":"operator_or","next":null,"parent":"XO","inputs":{"OPERAND1":[2,"a`*"],"OPERAND2":[2,"a`+"]},"fields":{},"shadow":false,"topLevel":false},"a`*":{"opcode":"operator_equals","next":null,"parent":"XP","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`+":{"opcode":"operator_equals","next":null,"parent":"XP","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XQ":{"opcode":"operator_or","next":null,"parent":"XO","inputs":{"OPERAND1":[2,"a`,"],"OPERAND2":[2,"a`-"]},"fields":{},"shadow":false,"topLevel":false},"a`,":{"opcode":"operator_equals","next":null,"parent":"XQ","inputs":{"OPERAND1":[3,[12,"#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`-":{"opcode":"operator_lt","next":null,"parent":"XQ","inputs":{"OPERAND1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a`(":{"opcode":"data_replaceitemoflist","next":null,"parent":"jF","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`)":{"opcode":"data_replaceitemoflist","next":null,"parent":"jF","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"85"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"XN":{"opcode":"data_replaceitemoflist","next":"XR","parent":"jF","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[3,"aum",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aum":{"opcode":"operator_divide","next":null,"parent":"XN","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aun",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aun":{"opcode":"operator_add","next":null,"parent":"aum","inputs":{"NUM1":[3,"auo",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auo":{"opcode":"data_itemoflist","next":null,"parent":"aun","inputs":{"INDEX":[3,"a`.",[7,0]]},"fields":{"LIST":["#noise_period",".S|FktusGCQ:m9X)mIEJ"]},"shadow":false,"topLevel":false},"a`.":{"opcode":"operator_add","next":null,"parent":"auo","inputs":{"NUM1":[3,[12,"#noise_period","?A|Ii0235Jf)q]b{e^F;"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"XR":{"opcode":"data_replaceitemoflist","next":"yo","parent":"XN","inputs":{"INDEX":[1,[7,"10"]],"ITEM":[3,"aup",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aup":{"opcode":"operator_add","next":null,"parent":"XR","inputs":{"NUM1":[3,[12,"#noise_period","?A|Ii0235Jf)q]b{e^F;"],[4,0]],"NUM2":[3,"a`/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a`/":{"opcode":"operator_multiply","next":null,"parent":"aup","inputs":{"NUM1":[3,[12,"#noise_mode","9]wlSTu+]*Y~:nsZ9z4n"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yo":{"opcode":"control_if_else","next":null,"parent":"XR","inputs":{"CONDITION":[2,"XS"],"SUBSTACK":[2,"a`:"],"SUBSTACK2":[2,"yp"]},"fields":{},"shadow":false,"topLevel":false},"XS":{"opcode":"operator_or","next":null,"parent":"yo","inputs":{"OPERAND1":[2,"a`;"],"OPERAND2":[2,"a`="]},"fields":{},"shadow":false,"topLevel":false},"a`;":{"opcode":"operator_equals","next":null,"parent":"XS","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`=":{"opcode":"operator_equals","next":null,"parent":"XS","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`:":{"opcode":"data_replaceitemoflist","next":null,"parent":"yo","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"yp":{"opcode":"control_if_else","next":null,"parent":"yo","inputs":{"CONDITION":[2,"a`?"],"SUBSTACK":[2,"auq"],"SUBSTACK2":[2,"aur"]},"fields":{},"shadow":false,"topLevel":false},"a`?":{"opcode":"operator_equals","next":null,"parent":"yp","inputs":{"OPERAND1":[3,[12,"#noise_constant","9w#8ILSZ$^iPt|9!L6cw"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auq":{"opcode":"data_replaceitemoflist","next":null,"parent":"yp","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[3,"a`@",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`@":{"opcode":"operator_multiply","next":null,"parent":"auq","inputs":{"NUM1":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[4,0]],"NUM2":[1,[4,"5.6"]]},"fields":{},"shadow":false,"topLevel":false},"aur":{"opcode":"data_replaceitemoflist","next":null,"parent":"yp","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[3,"a`[",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"a`[":{"opcode":"operator_multiply","next":null,"parent":"aur","inputs":{"NUM1":[3,[12,"#noise_decay","p,u2*;-v*L)r$MCvq%DP"],[4,0]],"NUM2":[1,[4,"5.6"]]},"fields":{},"shadow":false,"topLevel":false},"aus":{"opcode":"procedures_definition","next":"aut","parent":null,"inputs":{"custom_block":[1,"a`]"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":8616},"a`]":{"opcode":"procedures_prototype","next":null,"parent":"aus","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aut":{"opcode":"data_setvariableto","next":"XT","parent":"aus","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"XT":{"opcode":"control_repeat","next":"XU","parent":"aut","inputs":{"TIMES":[3,[12,"#sq0_swshift","x):Akro;B?IDs}?a(1S#"],[6,0]],"SUBSTACK":[2,"a`^"]},"fields":{},"shadow":false,"topLevel":false},"a`^":{"opcode":"data_changevariableby","next":null,"parent":"XT","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"XU":{"opcode":"data_setvariableto","next":"yq","parent":"XT","inputs":{"VALUE":[3,"auu",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"auu":{"opcode":"operator_mathop","next":null,"parent":"XU","inputs":{"NUM":[3,"a`_",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a`_":{"opcode":"operator_divide","next":null,"parent":"auu","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yq":{"opcode":"control_if","next":"auv","parent":"XU","inputs":{"CONDITION":[2,"a``"],"SUBSTACK":[2,"auw"]},"fields":{},"shadow":false,"topLevel":false},"a``":{"opcode":"operator_equals","next":null,"parent":"yq","inputs":{"OPERAND1":[3,[12,"#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auw":{"opcode":"data_setvariableto","next":null,"parent":"yq","inputs":{"VALUE":[3,"aux",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aux":{"opcode":"operator_subtract","next":null,"parent":"auw","inputs":{"NUM1":[3,"a`{",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`{":{"opcode":"operator_multiply","next":null,"parent":"aux","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"auv":{"opcode":"data_setvariableto","next":null,"parent":"yq","inputs":{"VALUE":[3,"a`|",[10,""]]},"fields":{"VARIABLE":["#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"]},"shadow":false,"topLevel":false},"a`|":{"opcode":"operator_add","next":null,"parent":"auv","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auy":{"opcode":"procedures_definition","next":"auz","parent":null,"inputs":{"custom_block":[1,"a`}"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":9204},"a`}":{"opcode":"procedures_prototype","next":null,"parent":"auy","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"auz":{"opcode":"data_setvariableto","next":"XV","parent":"auy","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"XV":{"opcode":"control_repeat","next":"XW","parent":"auz","inputs":{"TIMES":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[6,0]],"SUBSTACK":[2,"a`~"]},"fields":{},"shadow":false,"topLevel":false},"a`~":{"opcode":"data_changevariableby","next":null,"parent":"XV","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"XW":{"opcode":"data_setvariableto","next":"yr","parent":"XV","inputs":{"VALUE":[3,"auA",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"auA":{"opcode":"operator_mathop","next":null,"parent":"XW","inputs":{"NUM":[3,"a{a",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a{a":{"opcode":"operator_divide","next":null,"parent":"auA","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yr":{"opcode":"control_if","next":"auB","parent":"XW","inputs":{"CONDITION":[2,"a{b"],"SUBSTACK":[2,"auC"]},"fields":{},"shadow":false,"topLevel":false},"a{b":{"opcode":"operator_equals","next":null,"parent":"yr","inputs":{"OPERAND1":[3,[12,"#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auC":{"opcode":"data_setvariableto","next":null,"parent":"yr","inputs":{"VALUE":[3,"a{c",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"a{c":{"opcode":"operator_multiply","next":null,"parent":"auC","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"auB":{"opcode":"data_setvariableto","next":null,"parent":"yr","inputs":{"VALUE":[3,"a{d",[10,""]]},"fields":{"VARIABLE":["#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"]},"shadow":false,"topLevel":false},"a{d":{"opcode":"operator_add","next":null,"parent":"auB","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{e":{"opcode":"event_whenkeypressed","next":"a{f","parent":null,"inputs":{},"fields":{"KEY_OPTION":["6",null]},"shadow":false,"topLevel":true,"x":8483,"y":2920},"a{f":{"opcode":"data_setvariableto","next":null,"parent":"a{e","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"auD":{"opcode":"procedures_definition","next":"ys","parent":null,"inputs":{"custom_block":[1,"a{g"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":7012},"a{g":{"opcode":"procedures_prototype","next":null,"parent":"auD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ys":{"opcode":"control_if","next":"yt","parent":"auD","inputs":{"CONDITION":[2,"a{h"],"SUBSTACK":[2,"XX"]},"fields":{},"shadow":false,"topLevel":false},"a{h":{"opcode":"operator_lt","next":null,"parent":"ys","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"512"]]},"fields":{},"shadow":false,"topLevel":false},"XX":{"opcode":"data_setvariableto","next":"a{i","parent":"ys","inputs":{"VALUE":[3,"auE",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auE":{"opcode":"data_itemoflist","next":null,"parent":"XX","inputs":{"INDEX":[3,"XY",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"XY":{"opcode":"operator_add","next":null,"parent":"auE","inputs":{"NUM1":[3,"a{j",[4,0]],"NUM2":[3,"auF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{j":{"opcode":"operator_add","next":null,"parent":"XY","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auF":{"opcode":"operator_divide","next":null,"parent":"XY","inputs":{"NUM1":[3,"a{k",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{k":{"opcode":"data_itemoflist","next":null,"parent":"auF","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{i":{"opcode":"control_stop","next":null,"parent":"XX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yt":{"opcode":"control_if","next":"yu","parent":"ys","inputs":{"CONDITION":[2,"a{l"],"SUBSTACK":[2,"XZ"]},"fields":{},"shadow":false,"topLevel":false},"a{l":{"opcode":"operator_lt","next":null,"parent":"yt","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"XZ":{"opcode":"data_setvariableto","next":"a{m","parent":"yt","inputs":{"VALUE":[3,"auG",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auG":{"opcode":"data_itemoflist","next":null,"parent":"XZ","inputs":{"INDEX":[3,"X0",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X0":{"opcode":"operator_add","next":null,"parent":"auG","inputs":{"NUM1":[3,"a{n",[4,0]],"NUM2":[3,"auH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{n":{"opcode":"operator_subtract","next":null,"parent":"X0","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"511"]]},"fields":{},"shadow":false,"topLevel":false},"auH":{"opcode":"operator_divide","next":null,"parent":"X0","inputs":{"NUM1":[3,"a{o",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{o":{"opcode":"data_itemoflist","next":null,"parent":"auH","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{m":{"opcode":"control_stop","next":null,"parent":"XZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yu":{"opcode":"control_if","next":"yv","parent":"yt","inputs":{"CONDITION":[2,"a{p"],"SUBSTACK":[2,"X1"]},"fields":{},"shadow":false,"topLevel":false},"a{p":{"opcode":"operator_lt","next":null,"parent":"yu","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"1536"]]},"fields":{},"shadow":false,"topLevel":false},"X1":{"opcode":"data_setvariableto","next":"a{q","parent":"yu","inputs":{"VALUE":[3,"auI",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auI":{"opcode":"data_itemoflist","next":null,"parent":"X1","inputs":{"INDEX":[3,"X2",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X2":{"opcode":"operator_add","next":null,"parent":"auI","inputs":{"NUM1":[3,"a{r",[4,0]],"NUM2":[3,"auJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{r":{"opcode":"operator_subtract","next":null,"parent":"X2","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1023"]]},"fields":{},"shadow":false,"topLevel":false},"auJ":{"opcode":"operator_divide","next":null,"parent":"X2","inputs":{"NUM1":[3,"a{s",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{s":{"opcode":"data_itemoflist","next":null,"parent":"auJ","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{q":{"opcode":"control_stop","next":null,"parent":"X1","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yv":{"opcode":"control_if","next":"yw","parent":"yu","inputs":{"CONDITION":[2,"a{t"],"SUBSTACK":[2,"X3"]},"fields":{},"shadow":false,"topLevel":false},"a{t":{"opcode":"operator_lt","next":null,"parent":"yv","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"X3":{"opcode":"data_setvariableto","next":"a{u","parent":"yv","inputs":{"VALUE":[3,"auK",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auK":{"opcode":"data_itemoflist","next":null,"parent":"X3","inputs":{"INDEX":[3,"X4",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X4":{"opcode":"operator_add","next":null,"parent":"auK","inputs":{"NUM1":[3,"a{v",[4,0]],"NUM2":[3,"auL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{v":{"opcode":"operator_subtract","next":null,"parent":"X4","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1535"]]},"fields":{},"shadow":false,"topLevel":false},"auL":{"opcode":"operator_divide","next":null,"parent":"X4","inputs":{"NUM1":[3,"a{w",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{w":{"opcode":"data_itemoflist","next":null,"parent":"auL","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{u":{"opcode":"control_stop","next":null,"parent":"X3","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yw":{"opcode":"control_if","next":"yx","parent":"yv","inputs":{"CONDITION":[2,"a{x"],"SUBSTACK":[2,"X5"]},"fields":{},"shadow":false,"topLevel":false},"a{x":{"opcode":"operator_lt","next":null,"parent":"yw","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"2560"]]},"fields":{},"shadow":false,"topLevel":false},"X5":{"opcode":"data_setvariableto","next":"a{y","parent":"yw","inputs":{"VALUE":[3,"auM",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auM":{"opcode":"data_itemoflist","next":null,"parent":"X5","inputs":{"INDEX":[3,"X6",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X6":{"opcode":"operator_add","next":null,"parent":"auM","inputs":{"NUM1":[3,"a{z",[4,0]],"NUM2":[3,"auN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{z":{"opcode":"operator_subtract","next":null,"parent":"X6","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"auN":{"opcode":"operator_divide","next":null,"parent":"X6","inputs":{"NUM1":[3,"a{A",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{A":{"opcode":"data_itemoflist","next":null,"parent":"auN","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{y":{"opcode":"control_stop","next":null,"parent":"X5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yx":{"opcode":"control_if","next":"yy","parent":"yw","inputs":{"CONDITION":[2,"a{B"],"SUBSTACK":[2,"X7"]},"fields":{},"shadow":false,"topLevel":false},"a{B":{"opcode":"operator_lt","next":null,"parent":"yx","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"X7":{"opcode":"data_setvariableto","next":"a{C","parent":"yx","inputs":{"VALUE":[3,"auO",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auO":{"opcode":"data_itemoflist","next":null,"parent":"X7","inputs":{"INDEX":[3,"X8",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X8":{"opcode":"operator_add","next":null,"parent":"auO","inputs":{"NUM1":[3,"a{D",[4,0]],"NUM2":[3,"auP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{D":{"opcode":"operator_subtract","next":null,"parent":"X8","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"2559"]]},"fields":{},"shadow":false,"topLevel":false},"auP":{"opcode":"operator_divide","next":null,"parent":"X8","inputs":{"NUM1":[3,"a{E",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{E":{"opcode":"data_itemoflist","next":null,"parent":"auP","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{C":{"opcode":"control_stop","next":null,"parent":"X7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yy":{"opcode":"control_if","next":"X9","parent":"yx","inputs":{"CONDITION":[2,"a{F"],"SUBSTACK":[2,"X!"]},"fields":{},"shadow":false,"topLevel":false},"a{F":{"opcode":"operator_lt","next":null,"parent":"yy","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"3584"]]},"fields":{},"shadow":false,"topLevel":false},"X!":{"opcode":"data_setvariableto","next":"a{G","parent":"yy","inputs":{"VALUE":[3,"auQ",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auQ":{"opcode":"data_itemoflist","next":null,"parent":"X!","inputs":{"INDEX":[3,"X#",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X#":{"opcode":"operator_add","next":null,"parent":"auQ","inputs":{"NUM1":[3,"a{H",[4,0]],"NUM2":[3,"auR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{H":{"opcode":"operator_subtract","next":null,"parent":"X#","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"3071"]]},"fields":{},"shadow":false,"topLevel":false},"auR":{"opcode":"operator_divide","next":null,"parent":"X#","inputs":{"NUM1":[3,"a{I",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{I":{"opcode":"data_itemoflist","next":null,"parent":"auR","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{G":{"opcode":"control_stop","next":null,"parent":"X!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X9":{"opcode":"control_if","next":null,"parent":"yy","inputs":{"CONDITION":[2,"a{J"],"SUBSTACK":[2,"X%"]},"fields":{},"shadow":false,"topLevel":false},"a{J":{"opcode":"operator_lt","next":null,"parent":"X9","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"X%":{"opcode":"data_setvariableto","next":"a{K","parent":"X9","inputs":{"VALUE":[3,"auS",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auS":{"opcode":"data_itemoflist","next":null,"parent":"X%","inputs":{"INDEX":[3,"X(",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"X(":{"opcode":"operator_add","next":null,"parent":"auS","inputs":{"NUM1":[3,"a{L",[4,0]],"NUM2":[3,"auT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{L":{"opcode":"operator_subtract","next":null,"parent":"X(","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"3583"]]},"fields":{},"shadow":false,"topLevel":false},"auT":{"opcode":"operator_divide","next":null,"parent":"X(","inputs":{"NUM1":[3,"a{M",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{M":{"opcode":"data_itemoflist","next":null,"parent":"auT","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{K":{"opcode":"control_stop","next":null,"parent":"X%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"auU":{"opcode":"procedures_definition","next":"yz","parent":null,"inputs":{"custom_block":[1,"a{N"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":8816},"a{N":{"opcode":"procedures_prototype","next":null,"parent":"auU","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read chr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"yz":{"opcode":"control_if","next":"yA","parent":"auU","inputs":{"CONDITION":[2,"a{O"],"SUBSTACK":[2,"X)"]},"fields":{},"shadow":false,"topLevel":false},"a{O":{"opcode":"operator_lt","next":null,"parent":"yz","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"X)":{"opcode":"data_setvariableto","next":"a{P","parent":"yz","inputs":{"VALUE":[3,"auV",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auV":{"opcode":"data_itemoflist","next":null,"parent":"X)","inputs":{"INDEX":[3,"X*",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X*":{"opcode":"operator_add","next":null,"parent":"auV","inputs":{"NUM1":[3,"a{Q",[4,0]],"NUM2":[3,"a{R",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{Q":{"opcode":"operator_add","next":null,"parent":"X*","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{R":{"opcode":"data_itemoflist","next":null,"parent":"X*","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{P":{"opcode":"control_stop","next":null,"parent":"X)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yA":{"opcode":"control_if","next":"yB","parent":"yz","inputs":{"CONDITION":[2,"a{S"],"SUBSTACK":[2,"X+"]},"fields":{},"shadow":false,"topLevel":false},"a{S":{"opcode":"operator_lt","next":null,"parent":"yA","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"X+":{"opcode":"data_setvariableto","next":"a{T","parent":"yA","inputs":{"VALUE":[3,"auW",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auW":{"opcode":"data_itemoflist","next":null,"parent":"X+","inputs":{"INDEX":[3,"X,",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X,":{"opcode":"operator_add","next":null,"parent":"auW","inputs":{"NUM1":[3,"a{U",[4,0]],"NUM2":[3,"a{V",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{U":{"opcode":"operator_subtract","next":null,"parent":"X,","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1023"]]},"fields":{},"shadow":false,"topLevel":false},"a{V":{"opcode":"data_itemoflist","next":null,"parent":"X,","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{T":{"opcode":"control_stop","next":null,"parent":"X+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yB":{"opcode":"control_if","next":"yC","parent":"yA","inputs":{"CONDITION":[2,"a{W"],"SUBSTACK":[2,"X-"]},"fields":{},"shadow":false,"topLevel":false},"a{W":{"opcode":"operator_lt","next":null,"parent":"yB","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"X-":{"opcode":"data_setvariableto","next":"a{X","parent":"yB","inputs":{"VALUE":[3,"auX",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auX":{"opcode":"data_itemoflist","next":null,"parent":"X-","inputs":{"INDEX":[3,"X.",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X.":{"opcode":"operator_add","next":null,"parent":"auX","inputs":{"NUM1":[3,"a{Y",[4,0]],"NUM2":[3,"a{Z",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{Y":{"opcode":"operator_subtract","next":null,"parent":"X.","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"a{Z":{"opcode":"data_itemoflist","next":null,"parent":"X.","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{X":{"opcode":"control_stop","next":null,"parent":"X-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yC":{"opcode":"control_if","next":"yD","parent":"yB","inputs":{"CONDITION":[2,"a{0"],"SUBSTACK":[2,"X/"]},"fields":{},"shadow":false,"topLevel":false},"a{0":{"opcode":"operator_lt","next":null,"parent":"yC","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"X/":{"opcode":"data_setvariableto","next":"a{1","parent":"yC","inputs":{"VALUE":[3,"auY",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auY":{"opcode":"data_itemoflist","next":null,"parent":"X/","inputs":{"INDEX":[3,"X:",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X:":{"opcode":"operator_add","next":null,"parent":"auY","inputs":{"NUM1":[3,"a{2",[4,0]],"NUM2":[3,"a{3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{2":{"opcode":"operator_subtract","next":null,"parent":"X:","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"3071"]]},"fields":{},"shadow":false,"topLevel":false},"a{3":{"opcode":"data_itemoflist","next":null,"parent":"X:","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{1":{"opcode":"control_stop","next":null,"parent":"X/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yD":{"opcode":"control_if","next":"yE","parent":"yC","inputs":{"CONDITION":[2,"a{4"],"SUBSTACK":[2,"X;"]},"fields":{},"shadow":false,"topLevel":false},"a{4":{"opcode":"operator_lt","next":null,"parent":"yD","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"X;":{"opcode":"data_setvariableto","next":"a{5","parent":"yD","inputs":{"VALUE":[3,"auZ",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"auZ":{"opcode":"data_itemoflist","next":null,"parent":"X;","inputs":{"INDEX":[3,"X=",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X=":{"opcode":"operator_add","next":null,"parent":"auZ","inputs":{"NUM1":[3,"a{6",[4,0]],"NUM2":[3,"a{7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{6":{"opcode":"operator_subtract","next":null,"parent":"X=","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4095"]]},"fields":{},"shadow":false,"topLevel":false},"a{7":{"opcode":"data_itemoflist","next":null,"parent":"X=","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{5":{"opcode":"control_stop","next":null,"parent":"X;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yE":{"opcode":"control_if","next":"yF","parent":"yD","inputs":{"CONDITION":[2,"a{8"],"SUBSTACK":[2,"X?"]},"fields":{},"shadow":false,"topLevel":false},"a{8":{"opcode":"operator_lt","next":null,"parent":"yE","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"X?":{"opcode":"data_setvariableto","next":"a{9","parent":"yE","inputs":{"VALUE":[3,"au0",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"au0":{"opcode":"data_itemoflist","next":null,"parent":"X?","inputs":{"INDEX":[3,"X@",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X@":{"opcode":"operator_add","next":null,"parent":"au0","inputs":{"NUM1":[3,"a{!",[4,0]],"NUM2":[3,"a{#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{!":{"opcode":"operator_subtract","next":null,"parent":"X@","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"5119"]]},"fields":{},"shadow":false,"topLevel":false},"a{#":{"opcode":"data_itemoflist","next":null,"parent":"X@","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{9":{"opcode":"control_stop","next":null,"parent":"X?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"yF":{"opcode":"control_if","next":"X[","parent":"yE","inputs":{"CONDITION":[2,"a{%"],"SUBSTACK":[2,"X]"]},"fields":{},"shadow":false,"topLevel":false},"a{%":{"opcode":"operator_lt","next":null,"parent":"yF","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"X]":{"opcode":"data_setvariableto","next":"a{(","parent":"yF","inputs":{"VALUE":[3,"au1",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"au1":{"opcode":"data_itemoflist","next":null,"parent":"X]","inputs":{"INDEX":[3,"X^",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X^":{"opcode":"operator_add","next":null,"parent":"au1","inputs":{"NUM1":[3,"a{)",[4,0]],"NUM2":[3,"a{*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{)":{"opcode":"operator_subtract","next":null,"parent":"X^","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"6143"]]},"fields":{},"shadow":false,"topLevel":false},"a{*":{"opcode":"data_itemoflist","next":null,"parent":"X^","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{(":{"opcode":"control_stop","next":null,"parent":"X]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X[":{"opcode":"control_if","next":null,"parent":"yF","inputs":{"CONDITION":[2,"a{+"],"SUBSTACK":[2,"X_"]},"fields":{},"shadow":false,"topLevel":false},"a{+":{"opcode":"operator_lt","next":null,"parent":"X[","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"X_":{"opcode":"data_setvariableto","next":"a{,","parent":"X[","inputs":{"VALUE":[3,"au2",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"au2":{"opcode":"data_itemoflist","next":null,"parent":"X_","inputs":{"INDEX":[3,"X`",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"X`":{"opcode":"operator_add","next":null,"parent":"au2","inputs":{"NUM1":[3,"a{-",[4,0]],"NUM2":[3,"a{.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a{-":{"opcode":"operator_subtract","next":null,"parent":"X`","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"7167"]]},"fields":{},"shadow":false,"topLevel":false},"a{.":{"opcode":"data_itemoflist","next":null,"parent":"X`","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"a{,":{"opcode":"control_stop","next":null,"parent":"X_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"au3":{"opcode":"procedures_definition","next":"X{","parent":null,"inputs":{"custom_block":[1,"au4"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":3016},"au4":{"opcode":"procedures_prototype","next":null,"parent":"au3","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[1,"a{/"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","argumentnames":"[\"bank0\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a{/":{"opcode":"argument_reporter_string_number","next":null,"parent":"au4","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"X{":{"opcode":"data_replaceitemoflist","next":"X|","parent":"au3","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"au5",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au5":{"opcode":"operator_mod","next":null,"parent":"X{","inputs":{"NUM1":[3,"au6",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au6":{"opcode":"operator_multiply","next":null,"parent":"au5","inputs":{"NUM1":[3,"a{:",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{:":{"opcode":"argument_reporter_string_number","next":null,"parent":"au6","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"X|":{"opcode":"data_replaceitemoflist","next":"X}","parent":"X{","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"au7",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au7":{"opcode":"operator_mod","next":null,"parent":"X|","inputs":{"NUM1":[3,"au8",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au8":{"opcode":"operator_add","next":null,"parent":"au7","inputs":{"NUM1":[3,"au9",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"au9":{"opcode":"operator_multiply","next":null,"parent":"au8","inputs":{"NUM1":[3,"a{;",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{;":{"opcode":"argument_reporter_string_number","next":null,"parent":"au9","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"X}":{"opcode":"data_replaceitemoflist","next":"X~","parent":"X|","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"au!",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au!":{"opcode":"operator_mod","next":null,"parent":"X}","inputs":{"NUM1":[3,"au#",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au#":{"opcode":"operator_add","next":null,"parent":"au!","inputs":{"NUM1":[3,"au%",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"au%":{"opcode":"operator_multiply","next":null,"parent":"au#","inputs":{"NUM1":[3,"a{=",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{=":{"opcode":"argument_reporter_string_number","next":null,"parent":"au%","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"X~":{"opcode":"data_replaceitemoflist","next":"Ya","parent":"X}","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"au(",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au(":{"opcode":"operator_mod","next":null,"parent":"X~","inputs":{"NUM1":[3,"au)",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au)":{"opcode":"operator_add","next":null,"parent":"au(","inputs":{"NUM1":[3,"au*",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"au*":{"opcode":"operator_multiply","next":null,"parent":"au)","inputs":{"NUM1":[3,"a{?",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{?":{"opcode":"argument_reporter_string_number","next":null,"parent":"au*","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Ya":{"opcode":"data_replaceitemoflist","next":"Yb","parent":"X~","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"au+",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au+":{"opcode":"operator_mod","next":null,"parent":"Ya","inputs":{"NUM1":[3,"au,",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au,":{"opcode":"operator_add","next":null,"parent":"au+","inputs":{"NUM1":[3,"au-",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"au-":{"opcode":"operator_multiply","next":null,"parent":"au,","inputs":{"NUM1":[3,"a{@",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{@":{"opcode":"argument_reporter_string_number","next":null,"parent":"au-","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yb":{"opcode":"data_replaceitemoflist","next":"Yc","parent":"Ya","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"au.",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au.":{"opcode":"operator_mod","next":null,"parent":"Yb","inputs":{"NUM1":[3,"au/",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au/":{"opcode":"operator_add","next":null,"parent":"au.","inputs":{"NUM1":[3,"au:",[4,0]],"NUM2":[1,[4,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"au:":{"opcode":"operator_multiply","next":null,"parent":"au/","inputs":{"NUM1":[3,"a{[",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{[":{"opcode":"argument_reporter_string_number","next":null,"parent":"au:","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yc":{"opcode":"data_replaceitemoflist","next":"au;","parent":"Yb","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"au=",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au=":{"opcode":"operator_mod","next":null,"parent":"Yc","inputs":{"NUM1":[3,"au?",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au?":{"opcode":"operator_add","next":null,"parent":"au=","inputs":{"NUM1":[3,"au@",[4,0]],"NUM2":[1,[4,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"au@":{"opcode":"operator_multiply","next":null,"parent":"au?","inputs":{"NUM1":[3,"a{]",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{]":{"opcode":"argument_reporter_string_number","next":null,"parent":"au@","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"au;":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yc","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"au[",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au[":{"opcode":"operator_mod","next":null,"parent":"au;","inputs":{"NUM1":[3,"au]",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au]":{"opcode":"operator_add","next":null,"parent":"au[","inputs":{"NUM1":[3,"au^",[4,0]],"NUM2":[1,[4,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"au^":{"opcode":"operator_multiply","next":null,"parent":"au]","inputs":{"NUM1":[3,"a{^",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a{^":{"opcode":"argument_reporter_string_number","next":null,"parent":"au^","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"au_":{"opcode":"procedures_definition","next":"Yd","parent":null,"inputs":{"custom_block":[1,"Ye"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":3724},"Ye":{"opcode":"procedures_prototype","next":null,"parent":"au_","inputs":{"GVNB1CwSzA9:lV]`a$I$":[1,"a{_"],"WGS!dwukgOkU#8[iyU[X":[1,"a{`"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","argumentnames":"[\"bank0\",\"bank1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a{_":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ye","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a{`":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ye","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"Yd":{"opcode":"data_replaceitemoflist","next":"Yf","parent":"au_","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"au`",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au`":{"opcode":"operator_mod","next":null,"parent":"Yd","inputs":{"NUM1":[3,"au{",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au{":{"opcode":"operator_multiply","next":null,"parent":"au`","inputs":{"NUM1":[3,"a{{",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a{{":{"opcode":"argument_reporter_string_number","next":null,"parent":"au{","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yf":{"opcode":"data_replaceitemoflist","next":"Yg","parent":"Yd","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"au|",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"au|":{"opcode":"operator_mod","next":null,"parent":"Yf","inputs":{"NUM1":[3,"au}",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au}":{"opcode":"operator_add","next":null,"parent":"au|","inputs":{"NUM1":[3,"au~",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"au~":{"opcode":"operator_multiply","next":null,"parent":"au}","inputs":{"NUM1":[3,"a{|",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a{|":{"opcode":"argument_reporter_string_number","next":null,"parent":"au~","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yg":{"opcode":"data_replaceitemoflist","next":"Yh","parent":"Yf","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"ava",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"ava":{"opcode":"operator_mod","next":null,"parent":"Yg","inputs":{"NUM1":[3,"avb",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avb":{"opcode":"operator_add","next":null,"parent":"ava","inputs":{"NUM1":[3,"avc",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"avc":{"opcode":"operator_multiply","next":null,"parent":"avb","inputs":{"NUM1":[3,"a{}",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a{}":{"opcode":"argument_reporter_string_number","next":null,"parent":"avc","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yh":{"opcode":"data_replaceitemoflist","next":"Yi","parent":"Yg","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"avd",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avd":{"opcode":"operator_mod","next":null,"parent":"Yh","inputs":{"NUM1":[3,"ave",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ave":{"opcode":"operator_add","next":null,"parent":"avd","inputs":{"NUM1":[3,"avf",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"avf":{"opcode":"operator_multiply","next":null,"parent":"ave","inputs":{"NUM1":[3,"a{~",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a{~":{"opcode":"argument_reporter_string_number","next":null,"parent":"avf","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yi":{"opcode":"data_replaceitemoflist","next":"Yj","parent":"Yh","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"avg",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avg":{"opcode":"operator_mod","next":null,"parent":"Yi","inputs":{"NUM1":[3,"avh",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avh":{"opcode":"operator_multiply","next":null,"parent":"avg","inputs":{"NUM1":[3,"a|a",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a|a":{"opcode":"argument_reporter_string_number","next":null,"parent":"avh","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"Yj":{"opcode":"data_replaceitemoflist","next":"Yk","parent":"Yi","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"avi",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avi":{"opcode":"operator_mod","next":null,"parent":"Yj","inputs":{"NUM1":[3,"avj",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avj":{"opcode":"operator_add","next":null,"parent":"avi","inputs":{"NUM1":[3,"avk",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"avk":{"opcode":"operator_multiply","next":null,"parent":"avj","inputs":{"NUM1":[3,"a|b",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a|b":{"opcode":"argument_reporter_string_number","next":null,"parent":"avk","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"Yk":{"opcode":"data_replaceitemoflist","next":"avl","parent":"Yj","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"avm",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avm":{"opcode":"operator_mod","next":null,"parent":"Yk","inputs":{"NUM1":[3,"avn",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avn":{"opcode":"operator_add","next":null,"parent":"avm","inputs":{"NUM1":[3,"avo",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"avo":{"opcode":"operator_multiply","next":null,"parent":"avn","inputs":{"NUM1":[3,"a|c",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a|c":{"opcode":"argument_reporter_string_number","next":null,"parent":"avo","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"avl":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yk","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"avp",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avp":{"opcode":"operator_mod","next":null,"parent":"avl","inputs":{"NUM1":[3,"avq",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avq":{"opcode":"operator_add","next":null,"parent":"avp","inputs":{"NUM1":[3,"avr",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"avr":{"opcode":"operator_multiply","next":null,"parent":"avq","inputs":{"NUM1":[3,"a|d",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"a|d":{"opcode":"argument_reporter_string_number","next":null,"parent":"avr","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"avs":{"opcode":"procedures_definition","next":"Yl","parent":null,"inputs":{"custom_block":[1,"avt"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1392},"avt":{"opcode":"procedures_prototype","next":null,"parent":"avs","inputs":{"La?#zJqoritu?9M,S2Y,":[1,"a|e"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","argumentnames":"[\"bank0\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a|e":{"opcode":"argument_reporter_string_number","next":null,"parent":"avt","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"Yl":{"opcode":"data_replaceitemoflist","next":"Ym","parent":"avs","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"avu",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"avu":{"opcode":"operator_mod","next":null,"parent":"Yl","inputs":{"NUM1":[3,"avv",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avv":{"opcode":"operator_multiply","next":null,"parent":"avu","inputs":{"NUM1":[3,"a|f",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"a|f":{"opcode":"argument_reporter_string_number","next":null,"parent":"avv","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Ym":{"opcode":"data_replaceitemoflist","next":"Yn","parent":"Yl","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"avw",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"avw":{"opcode":"operator_mod","next":null,"parent":"Ym","inputs":{"NUM1":[3,"avx",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avx":{"opcode":"operator_add","next":null,"parent":"avw","inputs":{"NUM1":[3,"avy",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"avy":{"opcode":"operator_multiply","next":null,"parent":"avx","inputs":{"NUM1":[3,"a|g",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"a|g":{"opcode":"argument_reporter_string_number","next":null,"parent":"avy","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yn":{"opcode":"data_replaceitemoflist","next":"avz","parent":"Ym","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"avA",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"avA":{"opcode":"operator_mod","next":null,"parent":"Yn","inputs":{"NUM1":[3,"avB",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avB":{"opcode":"operator_add","next":null,"parent":"avA","inputs":{"NUM1":[3,"avC",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"avC":{"opcode":"operator_multiply","next":null,"parent":"avB","inputs":{"NUM1":[3,"a|h",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"a|h":{"opcode":"argument_reporter_string_number","next":null,"parent":"avC","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"avz":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yn","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"avD",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"avD":{"opcode":"operator_mod","next":null,"parent":"avz","inputs":{"NUM1":[3,"avE",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avE":{"opcode":"operator_add","next":null,"parent":"avD","inputs":{"NUM1":[3,"avF",[4,0]],"NUM2":[1,[4,"24576"]]},"fields":{},"shadow":false,"topLevel":false},"avF":{"opcode":"operator_multiply","next":null,"parent":"avE","inputs":{"NUM1":[3,"a|i",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"a|i":{"opcode":"argument_reporter_string_number","next":null,"parent":"avF","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"avG":{"opcode":"procedures_definition","next":"Yo","parent":null,"inputs":{"custom_block":[1,"jG"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":4424},"jG":{"opcode":"procedures_prototype","next":null,"parent":"avG","inputs":{"R}(8Cn3#y*26i(xa@[-V":[1,"a|j"],"GnVS0M9v5Op0apg}.{0D":[1,"a|k"],"8~FF,T{(cQ{AS5[`OPn[":[1,"a|l"],"M.aj{qup%g}995:UVZ[:":[1,"a|m"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"a|j":{"opcode":"argument_reporter_string_number","next":null,"parent":"jG","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a|k":{"opcode":"argument_reporter_string_number","next":null,"parent":"jG","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"a|l":{"opcode":"argument_reporter_string_number","next":null,"parent":"jG","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"a|m":{"opcode":"argument_reporter_string_number","next":null,"parent":"jG","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"Yo":{"opcode":"data_replaceitemoflist","next":"Yp","parent":"avG","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"avH",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avH":{"opcode":"operator_mod","next":null,"parent":"Yo","inputs":{"NUM1":[3,"avI",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avI":{"opcode":"operator_multiply","next":null,"parent":"avH","inputs":{"NUM1":[3,"a|n",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|n":{"opcode":"argument_reporter_string_number","next":null,"parent":"avI","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yp":{"opcode":"data_replaceitemoflist","next":"Yq","parent":"Yo","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"avJ",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avJ":{"opcode":"operator_mod","next":null,"parent":"Yp","inputs":{"NUM1":[3,"avK",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avK":{"opcode":"operator_multiply","next":null,"parent":"avJ","inputs":{"NUM1":[3,"a|o",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|o":{"opcode":"argument_reporter_string_number","next":null,"parent":"avK","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"Yq":{"opcode":"data_replaceitemoflist","next":"avL","parent":"Yp","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"avM",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avM":{"opcode":"operator_mod","next":null,"parent":"Yq","inputs":{"NUM1":[3,"avN",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avN":{"opcode":"operator_multiply","next":null,"parent":"avM","inputs":{"NUM1":[3,"a|p",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|p":{"opcode":"argument_reporter_string_number","next":null,"parent":"avN","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"avL":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yq","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"avO",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avO":{"opcode":"operator_mod","next":null,"parent":"avL","inputs":{"NUM1":[3,"avP",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avP":{"opcode":"operator_multiply","next":null,"parent":"avO","inputs":{"NUM1":[3,"a|q",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|q":{"opcode":"argument_reporter_string_number","next":null,"parent":"avP","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"avQ":{"opcode":"procedures_definition","next":"Yr","parent":null,"inputs":{"custom_block":[1,"jH"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":4820},"jH":{"opcode":"procedures_prototype","next":null,"parent":"avQ","inputs":{"zEgKC2?ujRK=)j3:+.w(":[1,"a|r"],"V,g^(cH^?K.@xOHvuKtw":[1,"a|s"],"s;]r;$gJ248kPn|tZMEK":[1,"a|t"],"2}nHlcvfboZI~h.|r/{|":[1,"a|u"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"a|r":{"opcode":"argument_reporter_string_number","next":null,"parent":"jH","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a|s":{"opcode":"argument_reporter_string_number","next":null,"parent":"jH","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"a|t":{"opcode":"argument_reporter_string_number","next":null,"parent":"jH","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"a|u":{"opcode":"argument_reporter_string_number","next":null,"parent":"jH","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"Yr":{"opcode":"data_replaceitemoflist","next":"Ys","parent":"avQ","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"avR",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avR":{"opcode":"operator_mod","next":null,"parent":"Yr","inputs":{"NUM1":[3,"avS",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avS":{"opcode":"operator_multiply","next":null,"parent":"avR","inputs":{"NUM1":[3,"a|v",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|v":{"opcode":"argument_reporter_string_number","next":null,"parent":"avS","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Ys":{"opcode":"data_replaceitemoflist","next":"Yt","parent":"Yr","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"avT",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avT":{"opcode":"operator_mod","next":null,"parent":"Ys","inputs":{"NUM1":[3,"avU",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avU":{"opcode":"operator_multiply","next":null,"parent":"avT","inputs":{"NUM1":[3,"a|w",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|w":{"opcode":"argument_reporter_string_number","next":null,"parent":"avU","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"Yt":{"opcode":"data_replaceitemoflist","next":"avV","parent":"Ys","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"avW",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avW":{"opcode":"operator_mod","next":null,"parent":"Yt","inputs":{"NUM1":[3,"avX",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avX":{"opcode":"operator_multiply","next":null,"parent":"avW","inputs":{"NUM1":[3,"a|x",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|x":{"opcode":"argument_reporter_string_number","next":null,"parent":"avX","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"avV":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yt","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"avY",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"avY":{"opcode":"operator_mod","next":null,"parent":"avV","inputs":{"NUM1":[3,"avZ",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avZ":{"opcode":"operator_multiply","next":null,"parent":"avY","inputs":{"NUM1":[3,"a|y",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a|y":{"opcode":"argument_reporter_string_number","next":null,"parent":"avZ","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"av0":{"opcode":"procedures_definition","next":"Yu","parent":null,"inputs":{"custom_block":[1,"Yv"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1812},"Yv":{"opcode":"procedures_prototype","next":null,"parent":"av0","inputs":{"xw^iKl}Q9Utn5G${B3DL":[1,"a|z"],"-ka?M!q5i3ep8!$FNtaR":[1,"a|A"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","argumentnames":"[\"bank0\",\"bank1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a|z":{"opcode":"argument_reporter_string_number","next":null,"parent":"Yv","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a|A":{"opcode":"argument_reporter_string_number","next":null,"parent":"Yv","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"Yu":{"opcode":"data_replaceitemoflist","next":"Yw","parent":"av0","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"av1",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av1":{"opcode":"operator_mod","next":null,"parent":"Yu","inputs":{"NUM1":[3,"av2",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av2":{"opcode":"operator_multiply","next":null,"parent":"av1","inputs":{"NUM1":[3,"a|B",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"a|B":{"opcode":"argument_reporter_string_number","next":null,"parent":"av2","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yw":{"opcode":"data_replaceitemoflist","next":"Yx","parent":"Yu","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"av3",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av3":{"opcode":"operator_mod","next":null,"parent":"Yw","inputs":{"NUM1":[3,"av4",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av4":{"opcode":"operator_add","next":null,"parent":"av3","inputs":{"NUM1":[3,"av5",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"av5":{"opcode":"operator_multiply","next":null,"parent":"av4","inputs":{"NUM1":[3,"a|C",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"a|C":{"opcode":"argument_reporter_string_number","next":null,"parent":"av5","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yx":{"opcode":"data_replaceitemoflist","next":"av6","parent":"Yw","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"av7",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av7":{"opcode":"operator_mod","next":null,"parent":"Yx","inputs":{"NUM1":[3,"av8",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av8":{"opcode":"operator_multiply","next":null,"parent":"av7","inputs":{"NUM1":[3,"a|D",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"a|D":{"opcode":"argument_reporter_string_number","next":null,"parent":"av8","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"av6":{"opcode":"data_replaceitemoflist","next":null,"parent":"Yx","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"av9",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av9":{"opcode":"operator_mod","next":null,"parent":"av6","inputs":{"NUM1":[3,"av!",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av!":{"opcode":"operator_add","next":null,"parent":"av9","inputs":{"NUM1":[3,"av#",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"av#":{"opcode":"operator_multiply","next":null,"parent":"av!","inputs":{"NUM1":[3,"a|E",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"a|E":{"opcode":"argument_reporter_string_number","next":null,"parent":"av#","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"av%":{"opcode":"procedures_definition","next":"Yy","parent":null,"inputs":{"custom_block":[1,"yG"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":2224},"yG":{"opcode":"procedures_prototype","next":null,"parent":"av%","inputs":{"w#BC#Nq[j}#muQb6}dLa":[1,"a|F"],"@NOZG?i.@jcwoJi(*EQ=":[1,"a|G"],"/=1M^S?9BD*f%@MRoeZC":[1,"a|H"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a|F":{"opcode":"argument_reporter_string_number","next":null,"parent":"yG","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a|G":{"opcode":"argument_reporter_string_number","next":null,"parent":"yG","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"a|H":{"opcode":"argument_reporter_string_number","next":null,"parent":"yG","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"Yy":{"opcode":"data_replaceitemoflist","next":"Yz","parent":"av%","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"av(",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av(":{"opcode":"operator_mod","next":null,"parent":"Yy","inputs":{"NUM1":[3,"av)",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av)":{"opcode":"operator_multiply","next":null,"parent":"av(","inputs":{"NUM1":[3,"a|I",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a|I":{"opcode":"argument_reporter_string_number","next":null,"parent":"av)","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Yz":{"opcode":"data_replaceitemoflist","next":"YA","parent":"Yy","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"av*",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av*":{"opcode":"operator_mod","next":null,"parent":"Yz","inputs":{"NUM1":[3,"av+",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av+":{"opcode":"operator_multiply","next":null,"parent":"av*","inputs":{"NUM1":[3,"a|J",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a|J":{"opcode":"argument_reporter_string_number","next":null,"parent":"av+","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"YA":{"opcode":"data_replaceitemoflist","next":"av,","parent":"Yz","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"av-",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av-":{"opcode":"operator_mod","next":null,"parent":"YA","inputs":{"NUM1":[3,"av.",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av.":{"opcode":"operator_multiply","next":null,"parent":"av-","inputs":{"NUM1":[3,"a|K",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a|K":{"opcode":"argument_reporter_string_number","next":null,"parent":"av.","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"av,":{"opcode":"data_replaceitemoflist","next":null,"parent":"YA","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"av/",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"av/":{"opcode":"operator_mod","next":null,"parent":"av,","inputs":{"NUM1":[3,"a|L",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a|L":{"opcode":"operator_subtract","next":null,"parent":"av/","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"av:":{"opcode":"procedures_definition","next":"av;","parent":null,"inputs":{"custom_block":[1,"a|M"]},"fields":{},"shadow":false,"topLevel":true,"x":543,"y":5344},"a|M":{"opcode":"procedures_prototype","next":null,"parent":"av:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"av;":{"opcode":"data_setvariableto","next":"av=","parent":"av:","inputs":{"VALUE":[1,[10,"65532"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"av=":{"opcode":"procedures_call","next":"av?","parent":"av;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"av?":{"opcode":"data_setvariableto","next":"av@","parent":"av=","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"av@":{"opcode":"data_setvariableto","next":"av[","parent":"av?","inputs":{"VALUE":[1,[10,"65533"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"av[":{"opcode":"procedures_call","next":"YB","parent":"av@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"YB":{"opcode":"data_setvariableto","next":"av]","parent":"av[","inputs":{"VALUE":[3,"av^",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"av^":{"opcode":"operator_add","next":null,"parent":"YB","inputs":{"NUM1":[3,"a|N",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a|N":{"opcode":"operator_multiply","next":null,"parent":"av^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"av]":{"opcode":"data_setvariableto","next":"av_","parent":"YB","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"av_":{"opcode":"data_setvariableto","next":null,"parent":"av]","inputs":{"VALUE":[3,"av`",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"av`":{"opcode":"operator_mod","next":null,"parent":"av_","inputs":{"NUM1":[3,"a|O",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a|O":{"opcode":"operator_subtract","next":null,"parent":"av`","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"av{":{"opcode":"procedures_definition","next":"yH","parent":null,"inputs":{"custom_block":[1,"a|P"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":9208},"a|P":{"opcode":"procedures_prototype","next":null,"parent":"av{","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$jy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"yH":{"opcode":"control_if","next":"yI","parent":"av{","inputs":{"CONDITION":[2,"YC"],"SUBSTACK":[2,"yJ"]},"fields":{},"shadow":false,"topLevel":false},"YC":{"opcode":"operator_and","next":null,"parent":"yH","inputs":{"OPERAND1":[2,"a|Q"],"OPERAND2":[2,"a|R"]},"fields":{},"shadow":false,"topLevel":false},"a|Q":{"opcode":"operator_gt","next":null,"parent":"YC","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a|R":{"opcode":"operator_lt","next":null,"parent":"YC","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"34816"]]},"fields":{},"shadow":false,"topLevel":false},"yJ":{"opcode":"control_if","next":"yK","parent":"yH","inputs":{"CONDITION":[2,"av|"],"SUBSTACK":[2,"av}"]},"fields":{},"shadow":false,"topLevel":false},"av|":{"opcode":"operator_equals","next":null,"parent":"yJ","inputs":{"OPERAND1":[3,"a|S",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|S":{"opcode":"operator_mod","next":null,"parent":"av|","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"av}":{"opcode":"data_setvariableto","next":null,"parent":"yJ","inputs":{"VALUE":[3,"a|T",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a|T":{"opcode":"operator_mod","next":null,"parent":"av}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"yK":{"opcode":"control_if","next":"yL","parent":"yJ","inputs":{"CONDITION":[2,"av~"],"SUBSTACK":[2,"awa"]},"fields":{},"shadow":false,"topLevel":false},"av~":{"opcode":"operator_equals","next":null,"parent":"yK","inputs":{"OPERAND1":[3,"a|U",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|U":{"opcode":"operator_mod","next":null,"parent":"av~","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awa":{"opcode":"data_setvariableto","next":null,"parent":"yK","inputs":{"VALUE":[3,"a|V",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"a|V":{"opcode":"operator_mod","next":null,"parent":"awa","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"yL":{"opcode":"control_if","next":"YD","parent":"yK","inputs":{"CONDITION":[2,"awb"],"SUBSTACK":[2,"awc"]},"fields":{},"shadow":false,"topLevel":false},"awb":{"opcode":"operator_equals","next":null,"parent":"yL","inputs":{"OPERAND1":[3,"a|W",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|W":{"opcode":"operator_mod","next":null,"parent":"awb","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awc":{"opcode":"data_setvariableto","next":null,"parent":"yL","inputs":{"VALUE":[3,"a|X",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"a|X":{"opcode":"operator_mod","next":null,"parent":"awc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YD":{"opcode":"control_if","next":null,"parent":"yL","inputs":{"CONDITION":[2,"awd"],"SUBSTACK":[2,"awe"]},"fields":{},"shadow":false,"topLevel":false},"awd":{"opcode":"operator_equals","next":null,"parent":"YD","inputs":{"OPERAND1":[3,"a|Y",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a|Y":{"opcode":"operator_mod","next":null,"parent":"awd","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awe":{"opcode":"data_setvariableto","next":null,"parent":"YD","inputs":{"VALUE":[3,"a|Z",[10,""]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"a|Z":{"opcode":"operator_mod","next":null,"parent":"awe","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"yI":{"opcode":"control_if","next":"yM","parent":"yH","inputs":{"CONDITION":[2,"YE"],"SUBSTACK":[2,"yN"]},"fields":{},"shadow":false,"topLevel":false},"YE":{"opcode":"operator_and","next":null,"parent":"yI","inputs":{"OPERAND1":[2,"a|0"],"OPERAND2":[2,"a|1"]},"fields":{},"shadow":false,"topLevel":false},"a|0":{"opcode":"operator_gt","next":null,"parent":"YE","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36863"]]},"fields":{},"shadow":false,"topLevel":false},"a|1":{"opcode":"operator_lt","next":null,"parent":"YE","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"38912"]]},"fields":{},"shadow":false,"topLevel":false},"yN":{"opcode":"control_if","next":"yO","parent":"yI","inputs":{"CONDITION":[2,"awf"],"SUBSTACK":[2,"a|2"]},"fields":{},"shadow":false,"topLevel":false},"awf":{"opcode":"operator_equals","next":null,"parent":"yN","inputs":{"OPERAND1":[3,"a|3",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|3":{"opcode":"operator_mod","next":null,"parent":"awf","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|2":{"opcode":"data_setvariableto","next":null,"parent":"yN","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"yO":{"opcode":"control_if","next":"yP","parent":"yN","inputs":{"CONDITION":[2,"awg"],"SUBSTACK":[2,"a|4"]},"fields":{},"shadow":false,"topLevel":false},"awg":{"opcode":"operator_equals","next":null,"parent":"yO","inputs":{"OPERAND1":[3,"a|5",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|5":{"opcode":"operator_mod","next":null,"parent":"awg","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|4":{"opcode":"data_setvariableto","next":null,"parent":"yO","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"yP":{"opcode":"control_if","next":"yQ","parent":"yO","inputs":{"CONDITION":[2,"awh"],"SUBSTACK":[2,"a|6"]},"fields":{},"shadow":false,"topLevel":false},"awh":{"opcode":"operator_equals","next":null,"parent":"yP","inputs":{"OPERAND1":[3,"a|7",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|7":{"opcode":"operator_mod","next":null,"parent":"awh","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|6":{"opcode":"data_setvariableto","next":null,"parent":"yP","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"yQ":{"opcode":"control_if","next":"yR","parent":"yP","inputs":{"CONDITION":[2,"awi"],"SUBSTACK":[2,"a|8"]},"fields":{},"shadow":false,"topLevel":false},"awi":{"opcode":"operator_equals","next":null,"parent":"yQ","inputs":{"OPERAND1":[3,"a|9",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a|9":{"opcode":"operator_mod","next":null,"parent":"awi","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|8":{"opcode":"data_setvariableto","next":null,"parent":"yQ","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"yR":{"opcode":"control_if","next":"yS","parent":"yQ","inputs":{"CONDITION":[2,"awj"],"SUBSTACK":[2,"a|!"]},"fields":{},"shadow":false,"topLevel":false},"awj":{"opcode":"operator_equals","next":null,"parent":"yR","inputs":{"OPERAND1":[3,"a|#",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a|#":{"opcode":"operator_mod","next":null,"parent":"awj","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|!":{"opcode":"data_setvariableto","next":null,"parent":"yR","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"yS":{"opcode":"control_if","next":"yT","parent":"yR","inputs":{"CONDITION":[2,"awk"],"SUBSTACK":[2,"a|%"]},"fields":{},"shadow":false,"topLevel":false},"awk":{"opcode":"operator_equals","next":null,"parent":"yS","inputs":{"OPERAND1":[3,"a|(",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a|(":{"opcode":"operator_mod","next":null,"parent":"awk","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|%":{"opcode":"data_setvariableto","next":null,"parent":"yS","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"yT":{"opcode":"control_if","next":"YF","parent":"yS","inputs":{"CONDITION":[2,"awl"],"SUBSTACK":[2,"a|)"]},"fields":{},"shadow":false,"topLevel":false},"awl":{"opcode":"operator_equals","next":null,"parent":"yT","inputs":{"OPERAND1":[3,"a|*",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a|*":{"opcode":"operator_mod","next":null,"parent":"awl","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|)":{"opcode":"data_setvariableto","next":null,"parent":"yT","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"YF":{"opcode":"control_if","next":null,"parent":"yT","inputs":{"CONDITION":[2,"awm"],"SUBSTACK":[2,"a|+"]},"fields":{},"shadow":false,"topLevel":false},"awm":{"opcode":"operator_equals","next":null,"parent":"YF","inputs":{"OPERAND1":[3,"a|,",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a|,":{"opcode":"operator_mod","next":null,"parent":"awm","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|+":{"opcode":"data_setvariableto","next":null,"parent":"YF","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"yM":{"opcode":"control_if","next":"yU","parent":"yI","inputs":{"CONDITION":[2,"YG"],"SUBSTACK":[2,"yV"]},"fields":{},"shadow":false,"topLevel":false},"YG":{"opcode":"operator_and","next":null,"parent":"yM","inputs":{"OPERAND1":[2,"a|-"],"OPERAND2":[2,"a|."]},"fields":{},"shadow":false,"topLevel":false},"a|-":{"opcode":"operator_gt","next":null,"parent":"YG","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a|.":{"opcode":"operator_lt","next":null,"parent":"YG","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53248"]]},"fields":{},"shadow":false,"topLevel":false},"yV":{"opcode":"control_if","next":"yW","parent":"yM","inputs":{"CONDITION":[2,"awn"],"SUBSTACK":[2,"awo"]},"fields":{},"shadow":false,"topLevel":false},"awn":{"opcode":"operator_equals","next":null,"parent":"yV","inputs":{"OPERAND1":[3,"a|/",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|/":{"opcode":"operator_mod","next":null,"parent":"awn","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"awo":{"opcode":"data_setvariableto","next":null,"parent":"yV","inputs":{"VALUE":[3,"a|:",[10,""]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"a|:":{"opcode":"operator_mod","next":null,"parent":"awo","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"yW":{"opcode":"control_if","next":"yX","parent":"yV","inputs":{"CONDITION":[2,"awp"],"SUBSTACK":[2,"awq"]},"fields":{},"shadow":false,"topLevel":false},"awp":{"opcode":"operator_equals","next":null,"parent":"yW","inputs":{"OPERAND1":[3,"a|;",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|;":{"opcode":"operator_mod","next":null,"parent":"awp","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"awq":{"opcode":"data_setvariableto","next":"YH","parent":"yW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"YH":{"opcode":"control_if","next":null,"parent":"awq","inputs":{"CONDITION":[2,"a|="],"SUBSTACK":[2,"awr"]},"fields":{},"shadow":false,"topLevel":false},"a|=":{"opcode":"operator_equals","next":null,"parent":"YH","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awr":{"opcode":"data_changevariableby","next":"a|?","parent":"YH","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a|?":{"opcode":"data_setvariableto","next":null,"parent":"awr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"yX":{"opcode":"control_if","next":"YI","parent":"yW","inputs":{"CONDITION":[2,"aws"],"SUBSTACK":[2,"a|@"]},"fields":{},"shadow":false,"topLevel":false},"aws":{"opcode":"operator_equals","next":null,"parent":"yX","inputs":{"OPERAND1":[3,"a|[",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a|[":{"opcode":"operator_mod","next":null,"parent":"aws","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|@":{"opcode":"data_setvariableto","next":null,"parent":"yX","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"YI":{"opcode":"control_if","next":null,"parent":"yX","inputs":{"CONDITION":[2,"awt"],"SUBSTACK":[2,"a|]"]},"fields":{},"shadow":false,"topLevel":false},"awt":{"opcode":"operator_equals","next":null,"parent":"YI","inputs":{"OPERAND1":[3,"a|^",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a|^":{"opcode":"operator_mod","next":null,"parent":"awt","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a|]":{"opcode":"data_setvariableto","next":null,"parent":"YI","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"yU":{"opcode":"control_if","next":"yY","parent":"yM","inputs":{"CONDITION":[2,"YJ"],"SUBSTACK":[2,"YK"]},"fields":{},"shadow":false,"topLevel":false},"YJ":{"opcode":"operator_and","next":null,"parent":"yU","inputs":{"OPERAND1":[2,"a|_"],"OPERAND2":[2,"a|`"]},"fields":{},"shadow":false,"topLevel":false},"a|_":{"opcode":"operator_gt","next":null,"parent":"YJ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53247"]]},"fields":{},"shadow":false,"topLevel":false},"a|`":{"opcode":"operator_lt","next":null,"parent":"YJ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"55296"]]},"fields":{},"shadow":false,"topLevel":false},"YK":{"opcode":"control_if","next":null,"parent":"yU","inputs":{"CONDITION":[2,"awu"],"SUBSTACK":[2,"YL"]},"fields":{},"shadow":false,"topLevel":false},"awu":{"opcode":"operator_equals","next":null,"parent":"YK","inputs":{"OPERAND1":[3,"a|{",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|{":{"opcode":"operator_mod","next":null,"parent":"awu","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"YL":{"opcode":"data_setvariableto","next":"YM","parent":"YK","inputs":{"VALUE":[3,"a||",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"a||":{"opcode":"operator_mod","next":null,"parent":"YL","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"YM":{"opcode":"data_setvariableto","next":"awv","parent":"YL","inputs":{"VALUE":[3,"aww",[10,""]]},"fields":{"VARIABLE":["$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"]},"shadow":false,"topLevel":false},"aww":{"opcode":"operator_mod","next":null,"parent":"YM","inputs":{"NUM1":[3,"awx",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"awx":{"opcode":"operator_mathop","next":null,"parent":"aww","inputs":{"NUM":[3,"a|}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a|}":{"opcode":"operator_divide","next":null,"parent":"awx","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awv":{"opcode":"data_setvariableto","next":null,"parent":"YM","inputs":{"VALUE":[3,"awy",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"awy":{"opcode":"operator_mod","next":null,"parent":"awv","inputs":{"NUM1":[3,"awz",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awz":{"opcode":"operator_mathop","next":null,"parent":"awy","inputs":{"NUM":[3,"a|~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a|~":{"opcode":"operator_divide","next":null,"parent":"awz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"yY":{"opcode":"control_if","next":"YN","parent":"yU","inputs":{"CONDITION":[2,"a}a"],"SUBSTACK":[2,"yZ"]},"fields":{},"shadow":false,"topLevel":false},"a}a":{"opcode":"operator_equals","next":null,"parent":"yY","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"yZ":{"opcode":"control_if_else","next":null,"parent":"yY","inputs":{"CONDITION":[2,"a}b"],"SUBSTACK":[2,"a}c"],"SUBSTACK2":[2,"a}d"]},"fields":{},"shadow":false,"topLevel":false},"a}b":{"opcode":"operator_equals","next":null,"parent":"yZ","inputs":{"OPERAND1":[3,[12,"$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}c":{"opcode":"procedures_call","next":null,"parent":"yZ","inputs":{"w4Y/{/2!4#(-!Xv9#x|1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"4_=h1W.x?p]8pIme+4to":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"$q9;t|#EDp:4jRHOMaB)":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]],")bHR:Vs8O(F.Q5dylq?P":[3,[12,"$prg_bank3","IH-i^bTE9H)(~1qQP=%i"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k %s %s %s %s","argumentids":"[\"w4Y/{/2!4#(-!Xv9#x|1\",\"4_=h1W.x?p]8pIme+4to\",\"$q9;t|#EDp:4jRHOMaB)\",\")bHR:Vs8O(F.Q5dylq?P\"]","warp":"true"}},"a}d":{"opcode":"procedures_call","next":null,"parent":"yZ","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"YN":{"opcode":"control_if","next":null,"parent":"yY","inputs":{"CONDITION":[2,"a}e"],"SUBSTACK":[2,"awA"]},"fields":{},"shadow":false,"topLevel":false},"a}e":{"opcode":"operator_equals","next":null,"parent":"YN","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"awA":{"opcode":"procedures_call","next":"a}f","parent":"YN","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"a}f":{"opcode":"procedures_call","next":null,"parent":"awA","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank7","BG.CoXmh.n|7S`teB%Cz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"awB":{"opcode":"procedures_definition","next":"YO","parent":null,"inputs":{"custom_block":[1,"jI"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":2620},"jI":{"opcode":"procedures_prototype","next":null,"parent":"awB","inputs":{"w4Y/{/2!4#(-!Xv9#x|1":[1,"a}g"],"4_=h1W.x?p]8pIme+4to":[1,"a}h"],"$q9;t|#EDp:4jRHOMaB)":[1,"a}i"],")bHR:Vs8O(F.Q5dylq?P":[1,"a}j"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k %s %s %s %s","argumentids":"[\"w4Y/{/2!4#(-!Xv9#x|1\",\"4_=h1W.x?p]8pIme+4to\",\"$q9;t|#EDp:4jRHOMaB)\",\")bHR:Vs8O(F.Q5dylq?P\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"a}g":{"opcode":"argument_reporter_string_number","next":null,"parent":"jI","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"a}h":{"opcode":"argument_reporter_string_number","next":null,"parent":"jI","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"a}i":{"opcode":"argument_reporter_string_number","next":null,"parent":"jI","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"a}j":{"opcode":"argument_reporter_string_number","next":null,"parent":"jI","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"YO":{"opcode":"data_replaceitemoflist","next":"YP","parent":"awB","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"awC",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"awC":{"opcode":"operator_mod","next":null,"parent":"YO","inputs":{"NUM1":[3,"awD",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awD":{"opcode":"operator_multiply","next":null,"parent":"awC","inputs":{"NUM1":[3,"a}k",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a}k":{"opcode":"argument_reporter_string_number","next":null,"parent":"awD","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"YP":{"opcode":"data_replaceitemoflist","next":"YQ","parent":"YO","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"awE",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"awE":{"opcode":"operator_mod","next":null,"parent":"YP","inputs":{"NUM1":[3,"awF",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awF":{"opcode":"operator_multiply","next":null,"parent":"awE","inputs":{"NUM1":[3,"a}l",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a}l":{"opcode":"argument_reporter_string_number","next":null,"parent":"awF","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"YQ":{"opcode":"data_replaceitemoflist","next":"awG","parent":"YP","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"awH",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"awH":{"opcode":"operator_mod","next":null,"parent":"YQ","inputs":{"NUM1":[3,"awI",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awI":{"opcode":"operator_multiply","next":null,"parent":"awH","inputs":{"NUM1":[3,"a}m",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a}m":{"opcode":"argument_reporter_string_number","next":null,"parent":"awI","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"awG":{"opcode":"data_replaceitemoflist","next":null,"parent":"YQ","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"awJ",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"awJ":{"opcode":"operator_mod","next":null,"parent":"awG","inputs":{"NUM1":[3,"awK",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awK":{"opcode":"operator_multiply","next":null,"parent":"awJ","inputs":{"NUM1":[3,"a}n",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"a}n":{"opcode":"argument_reporter_string_number","next":null,"parent":"awK","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"awL":{"opcode":"procedures_definition","next":"y0","parent":null,"inputs":{"custom_block":[1,"a}o"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":13044},"a}o":{"opcode":"procedures_prototype","next":null,"parent":"awL","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$simple_mmc3","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"y0":{"opcode":"control_if","next":"YR","parent":"awL","inputs":{"CONDITION":[2,"YS"],"SUBSTACK":[2,"y1"]},"fields":{},"shadow":false,"topLevel":false},"YS":{"opcode":"operator_and","next":null,"parent":"y0","inputs":{"OPERAND1":[2,"a}p"],"OPERAND2":[2,"a}q"]},"fields":{},"shadow":false,"topLevel":false},"a}p":{"opcode":"operator_gt","next":null,"parent":"YS","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a}q":{"opcode":"operator_lt","next":null,"parent":"YS","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"y1":{"opcode":"control_if","next":"YT","parent":"y0","inputs":{"CONDITION":[2,"awM"],"SUBSTACK":[2,"YU"]},"fields":{},"shadow":false,"topLevel":false},"awM":{"opcode":"operator_equals","next":null,"parent":"y1","inputs":{"OPERAND1":[3,"a}r",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a}r":{"opcode":"operator_mod","next":null,"parent":"awM","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"YU":{"opcode":"data_setvariableto","next":"YV","parent":"y1","inputs":{"VALUE":[3,"a}s",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"a}s":{"opcode":"operator_mod","next":null,"parent":"YU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"YV":{"opcode":"data_setvariableto","next":"awN","parent":"YU","inputs":{"VALUE":[3,"awO",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"awO":{"opcode":"operator_add","next":null,"parent":"YV","inputs":{"NUM1":[3,"awP",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"awP":{"opcode":"operator_gt","next":null,"parent":"awO","inputs":{"OPERAND1":[3,"a}t",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a}t":{"opcode":"operator_mod","next":null,"parent":"awP","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"awN":{"opcode":"data_setvariableto","next":null,"parent":"YV","inputs":{"VALUE":[3,"awQ",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"awQ":{"opcode":"operator_add","next":null,"parent":"awN","inputs":{"NUM1":[3,"a}u",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a}u":{"opcode":"operator_gt","next":null,"parent":"awQ","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"YT":{"opcode":"control_if","next":null,"parent":"y1","inputs":{"CONDITION":[2,"awR"],"SUBSTACK":[2,"y2"]},"fields":{},"shadow":false,"topLevel":false},"awR":{"opcode":"operator_equals","next":null,"parent":"YT","inputs":{"OPERAND1":[3,"a}v",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}v":{"opcode":"operator_mod","next":null,"parent":"awR","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"y2":{"opcode":"control_if","next":"y3","parent":"YT","inputs":{"CONDITION":[2,"a}w"],"SUBSTACK":[2,"awS"]},"fields":{},"shadow":false,"topLevel":false},"a}w":{"opcode":"operator_equals","next":null,"parent":"y2","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"awS":{"opcode":"data_setvariableto","next":null,"parent":"y2","inputs":{"VALUE":[3,"a}x",[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"a}x":{"opcode":"operator_mod","next":null,"parent":"awS","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y3":{"opcode":"control_if","next":"y4","parent":"y2","inputs":{"CONDITION":[2,"a}y"],"SUBSTACK":[2,"awT"]},"fields":{},"shadow":false,"topLevel":false},"a}y":{"opcode":"operator_equals","next":null,"parent":"y3","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awT":{"opcode":"data_setvariableto","next":null,"parent":"y3","inputs":{"VALUE":[3,"a}z",[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"a}z":{"opcode":"operator_mod","next":null,"parent":"awT","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y4":{"opcode":"control_if","next":"y5","parent":"y3","inputs":{"CONDITION":[2,"a}A"],"SUBSTACK":[2,"awU"]},"fields":{},"shadow":false,"topLevel":false},"a}A":{"opcode":"operator_equals","next":null,"parent":"y4","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"awU":{"opcode":"data_setvariableto","next":null,"parent":"y4","inputs":{"VALUE":[3,"a}B",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"a}B":{"opcode":"operator_mod","next":null,"parent":"awU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y5":{"opcode":"control_if","next":"y6","parent":"y4","inputs":{"CONDITION":[2,"a}C"],"SUBSTACK":[2,"awV"]},"fields":{},"shadow":false,"topLevel":false},"a}C":{"opcode":"operator_equals","next":null,"parent":"y5","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"awV":{"opcode":"data_setvariableto","next":null,"parent":"y5","inputs":{"VALUE":[3,"a}D",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"a}D":{"opcode":"operator_mod","next":null,"parent":"awV","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y6":{"opcode":"control_if","next":"y7","parent":"y5","inputs":{"CONDITION":[2,"a}E"],"SUBSTACK":[2,"awW"]},"fields":{},"shadow":false,"topLevel":false},"a}E":{"opcode":"operator_equals","next":null,"parent":"y6","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awW":{"opcode":"data_setvariableto","next":null,"parent":"y6","inputs":{"VALUE":[3,"a}F",[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"a}F":{"opcode":"operator_mod","next":null,"parent":"awW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y7":{"opcode":"control_if","next":"y8","parent":"y6","inputs":{"CONDITION":[2,"a}G"],"SUBSTACK":[2,"awX"]},"fields":{},"shadow":false,"topLevel":false},"a}G":{"opcode":"operator_equals","next":null,"parent":"y7","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"awX":{"opcode":"data_setvariableto","next":null,"parent":"y7","inputs":{"VALUE":[3,"a}H",[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"a}H":{"opcode":"operator_mod","next":null,"parent":"awX","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y8":{"opcode":"control_if","next":"YW","parent":"y7","inputs":{"CONDITION":[2,"a}I"],"SUBSTACK":[2,"awY"]},"fields":{},"shadow":false,"topLevel":false},"a}I":{"opcode":"operator_equals","next":null,"parent":"y8","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"awY":{"opcode":"data_setvariableto","next":null,"parent":"y8","inputs":{"VALUE":[3,"a}J",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a}J":{"opcode":"operator_mod","next":null,"parent":"awY","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"YW":{"opcode":"control_if","next":null,"parent":"y8","inputs":{"CONDITION":[2,"a}K"],"SUBSTACK":[2,"awZ"]},"fields":{},"shadow":false,"topLevel":false},"a}K":{"opcode":"operator_equals","next":null,"parent":"YW","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"awZ":{"opcode":"data_setvariableto","next":null,"parent":"YW","inputs":{"VALUE":[3,"a}L",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"a}L":{"opcode":"operator_mod","next":null,"parent":"awZ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"YR":{"opcode":"procedures_call","next":"ev","parent":"y0","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,"a}M",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"a}M":{"opcode":"operator_subtract","next":null,"parent":"YR","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aw0":{"opcode":"procedures_definition","next":"y9","parent":null,"inputs":{"custom_block":[1,"a}N"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":7176},"a}N":{"opcode":"procedures_prototype","next":null,"parent":"aw0","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$fme7","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"y9":{"opcode":"control_if","next":"y!","parent":"aw0","inputs":{"CONDITION":[2,"YX"],"SUBSTACK":[2,"aw1"]},"fields":{},"shadow":false,"topLevel":false},"YX":{"opcode":"operator_and","next":null,"parent":"y9","inputs":{"OPERAND1":[2,"a}O"],"OPERAND2":[2,"a}P"]},"fields":{},"shadow":false,"topLevel":false},"a}O":{"opcode":"operator_gt","next":null,"parent":"YX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"a}P":{"opcode":"operator_lt","next":null,"parent":"YX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"aw1":{"opcode":"data_setvariableto","next":null,"parent":"y9","inputs":{"VALUE":[3,"a}Q",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"a}Q":{"opcode":"operator_mod","next":null,"parent":"aw1","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"y!":{"opcode":"control_if","next":"y#","parent":"y9","inputs":{"CONDITION":[2,"YY"],"SUBSTACK":[2,"y%"]},"fields":{},"shadow":false,"topLevel":false},"YY":{"opcode":"operator_and","next":null,"parent":"y!","inputs":{"OPERAND1":[2,"a}R"],"OPERAND2":[2,"a}S"]},"fields":{},"shadow":false,"topLevel":false},"a}R":{"opcode":"operator_gt","next":null,"parent":"YY","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"a}S":{"opcode":"operator_lt","next":null,"parent":"YY","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"y%":{"opcode":"control_if","next":"y(","parent":"y!","inputs":{"CONDITION":[2,"a}T"],"SUBSTACK":[2,"a}U"]},"fields":{},"shadow":false,"topLevel":false},"a}T":{"opcode":"operator_equals","next":null,"parent":"y%","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a}U":{"opcode":"data_setvariableto","next":null,"parent":"y%","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"y(":{"opcode":"control_if","next":"y)","parent":"y%","inputs":{"CONDITION":[2,"a}V"],"SUBSTACK":[2,"a}W"]},"fields":{},"shadow":false,"topLevel":false},"a}V":{"opcode":"operator_equals","next":null,"parent":"y(","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}W":{"opcode":"data_setvariableto","next":null,"parent":"y(","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"y)":{"opcode":"control_if","next":"Re","parent":"y(","inputs":{"CONDITION":[2,"a}X"],"SUBSTACK":[2,"a}Y"]},"fields":{},"shadow":false,"topLevel":false},"a}X":{"opcode":"operator_equals","next":null,"parent":"y)","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a}Y":{"opcode":"data_setvariableto","next":null,"parent":"y)","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"Re":{"opcode":"control_if","next":"Rf","parent":"y)","inputs":{"CONDITION":[2,"a}Z"],"SUBSTACK":[2,"a}0"]},"fields":{},"shadow":false,"topLevel":false},"a}Z":{"opcode":"operator_equals","next":null,"parent":"Re","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a}0":{"opcode":"data_setvariableto","next":null,"parent":"Re","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"Rf":{"opcode":"control_if","next":"Rg","parent":"Re","inputs":{"CONDITION":[2,"a}1"],"SUBSTACK":[2,"a}2"]},"fields":{},"shadow":false,"topLevel":false},"a}1":{"opcode":"operator_equals","next":null,"parent":"Rf","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}2":{"opcode":"data_setvariableto","next":null,"parent":"Rf","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"Rg":{"opcode":"control_if","next":"Rh","parent":"Rf","inputs":{"CONDITION":[2,"a}3"],"SUBSTACK":[2,"a}4"]},"fields":{},"shadow":false,"topLevel":false},"a}3":{"opcode":"operator_equals","next":null,"parent":"Rg","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"a}4":{"opcode":"data_setvariableto","next":null,"parent":"Rg","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"Rh":{"opcode":"control_if","next":"Ri","parent":"Rg","inputs":{"CONDITION":[2,"a}5"],"SUBSTACK":[2,"a}6"]},"fields":{},"shadow":false,"topLevel":false},"a}5":{"opcode":"operator_equals","next":null,"parent":"Rh","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a}6":{"opcode":"data_setvariableto","next":null,"parent":"Rh","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"Ri":{"opcode":"control_if","next":"Rj","parent":"Rh","inputs":{"CONDITION":[2,"a}7"],"SUBSTACK":[2,"a}8"]},"fields":{},"shadow":false,"topLevel":false},"a}7":{"opcode":"operator_equals","next":null,"parent":"Ri","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a}8":{"opcode":"data_setvariableto","next":null,"parent":"Ri","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"Rj":{"opcode":"control_if","next":"y*","parent":"Ri","inputs":{"CONDITION":[2,"a}9"],"SUBSTACK":[2,"YZ"]},"fields":{},"shadow":false,"topLevel":false},"a}9":{"opcode":"operator_equals","next":null,"parent":"Rj","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"YZ":{"opcode":"data_setvariableto","next":"Y0","parent":"Rj","inputs":{"VALUE":[3,"a}!",[10,""]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"a}!":{"opcode":"operator_mod","next":null,"parent":"YZ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Y0":{"opcode":"data_setvariableto","next":"aw2","parent":"YZ","inputs":{"VALUE":[3,"aw3",[10,""]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"aw3":{"opcode":"operator_add","next":null,"parent":"Y0","inputs":{"NUM1":[3,"aw4",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aw4":{"opcode":"operator_gt","next":null,"parent":"aw3","inputs":{"OPERAND1":[3,"a}#",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"a}#":{"opcode":"operator_mod","next":null,"parent":"aw4","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aw2":{"opcode":"data_setvariableto","next":null,"parent":"Y0","inputs":{"VALUE":[3,"aw5",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"aw5":{"opcode":"operator_add","next":null,"parent":"aw2","inputs":{"NUM1":[3,"a}%",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a}%":{"opcode":"operator_gt","next":null,"parent":"aw5","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"y*":{"opcode":"control_if","next":"y+","parent":"Rj","inputs":{"CONDITION":[2,"a}("],"SUBSTACK":[2,"aw6"]},"fields":{},"shadow":false,"topLevel":false},"a}(":{"opcode":"operator_equals","next":null,"parent":"y*","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aw6":{"opcode":"data_setvariableto","next":null,"parent":"y*","inputs":{"VALUE":[3,"a})",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"a})":{"opcode":"operator_mod","next":null,"parent":"aw6","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y+":{"opcode":"control_if","next":"y,","parent":"y*","inputs":{"CONDITION":[2,"a}*"],"SUBSTACK":[2,"aw7"]},"fields":{},"shadow":false,"topLevel":false},"a}*":{"opcode":"operator_equals","next":null,"parent":"y+","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aw7":{"opcode":"data_setvariableto","next":null,"parent":"y+","inputs":{"VALUE":[3,"a}+",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"a}+":{"opcode":"operator_mod","next":null,"parent":"aw7","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y,":{"opcode":"control_if","next":"y-","parent":"y+","inputs":{"CONDITION":[2,"a},"],"SUBSTACK":[2,"aw8"]},"fields":{},"shadow":false,"topLevel":false},"a},":{"opcode":"operator_equals","next":null,"parent":"y,","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aw8":{"opcode":"data_setvariableto","next":null,"parent":"y,","inputs":{"VALUE":[3,"a}-",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"a}-":{"opcode":"operator_mod","next":null,"parent":"aw8","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y-":{"opcode":"control_if","next":"y.","parent":"y,","inputs":{"CONDITION":[2,"a}."],"SUBSTACK":[2,"y/"]},"fields":{},"shadow":false,"topLevel":false},"a}.":{"opcode":"operator_equals","next":null,"parent":"y-","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"y/":{"opcode":"control_if","next":"y:","parent":"y-","inputs":{"CONDITION":[2,"aw9"],"SUBSTACK":[2,"a}/"]},"fields":{},"shadow":false,"topLevel":false},"aw9":{"opcode":"operator_equals","next":null,"parent":"y/","inputs":{"OPERAND1":[3,"a}:",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a}:":{"opcode":"operator_mod","next":null,"parent":"aw9","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}/":{"opcode":"procedures_call","next":null,"parent":"y/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"y:":{"opcode":"control_if","next":"y;","parent":"y/","inputs":{"CONDITION":[2,"aw!"],"SUBSTACK":[2,"a};"]},"fields":{},"shadow":false,"topLevel":false},"aw!":{"opcode":"operator_equals","next":null,"parent":"y:","inputs":{"OPERAND1":[3,"a}=",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}=":{"opcode":"operator_mod","next":null,"parent":"aw!","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a};":{"opcode":"procedures_call","next":null,"parent":"y:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"y;":{"opcode":"control_if","next":"Y1","parent":"y:","inputs":{"CONDITION":[2,"aw#"],"SUBSTACK":[2,"a}?"]},"fields":{},"shadow":false,"topLevel":false},"aw#":{"opcode":"operator_equals","next":null,"parent":"y;","inputs":{"OPERAND1":[3,"a}@",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a}@":{"opcode":"operator_mod","next":null,"parent":"aw#","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}?":{"opcode":"procedures_call","next":null,"parent":"y;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"Y1":{"opcode":"control_if","next":null,"parent":"y;","inputs":{"CONDITION":[2,"aw%"],"SUBSTACK":[2,"a}["]},"fields":{},"shadow":false,"topLevel":false},"aw%":{"opcode":"operator_equals","next":null,"parent":"Y1","inputs":{"OPERAND1":[3,"a}]",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a}]":{"opcode":"operator_mod","next":null,"parent":"aw%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}[":{"opcode":"procedures_call","next":null,"parent":"Y1","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"y.":{"opcode":"control_if","next":"y=","parent":"y-","inputs":{"CONDITION":[2,"a}^"],"SUBSTACK":[2,"Y2"]},"fields":{},"shadow":false,"topLevel":false},"a}^":{"opcode":"operator_equals","next":null,"parent":"y.","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"Y2":{"opcode":"data_setvariableto","next":"Y3","parent":"y.","inputs":{"VALUE":[3,"a}_",[10,""]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"a}_":{"opcode":"operator_mod","next":null,"parent":"Y2","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Y3":{"opcode":"data_setvariableto","next":"Y4","parent":"Y2","inputs":{"VALUE":[3,"aw(",[10,""]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"aw(":{"opcode":"operator_add","next":null,"parent":"Y3","inputs":{"NUM1":[3,"a}`",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a}`":{"opcode":"operator_gt","next":null,"parent":"aw(","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Y4":{"opcode":"control_if","next":null,"parent":"Y3","inputs":{"CONDITION":[2,"a}{"],"SUBSTACK":[2,"aw)"]},"fields":{},"shadow":false,"topLevel":false},"a}{":{"opcode":"operator_equals","next":null,"parent":"Y4","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aw)":{"opcode":"data_changevariableby","next":"a}|","parent":"Y4","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a}|":{"opcode":"data_setvariableto","next":null,"parent":"aw)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"y=":{"opcode":"control_if","next":"Y5","parent":"y.","inputs":{"CONDITION":[2,"a}}"],"SUBSTACK":[2,"aw*"]},"fields":{},"shadow":false,"topLevel":false},"a}}":{"opcode":"operator_equals","next":null,"parent":"y=","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aw*":{"opcode":"data_setvariableto","next":null,"parent":"y=","inputs":{"VALUE":[3,"aw+",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aw+":{"opcode":"operator_add","next":null,"parent":"aw*","inputs":{"NUM1":[3,"aw,",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aw,":{"opcode":"operator_subtract","next":null,"parent":"aw+","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[3,"a}~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a}~":{"opcode":"operator_mod","next":null,"parent":"aw,","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Y5":{"opcode":"control_if","next":null,"parent":"y=","inputs":{"CONDITION":[2,"a~a"],"SUBSTACK":[2,"aw-"]},"fields":{},"shadow":false,"topLevel":false},"a~a":{"opcode":"operator_equals","next":null,"parent":"Y5","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"aw-":{"opcode":"data_setvariableto","next":null,"parent":"Y5","inputs":{"VALUE":[3,"Y6",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"Y6":{"opcode":"operator_add","next":null,"parent":"aw-","inputs":{"NUM1":[3,"a~b",[4,0]],"NUM2":[3,"a~c",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a~b":{"opcode":"operator_mod","next":null,"parent":"Y6","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a~c":{"opcode":"operator_multiply","next":null,"parent":"Y6","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"y#":{"opcode":"control_if","next":"y?","parent":"y!","inputs":{"CONDITION":[2,"Y7"],"SUBSTACK":[2,"a~d"]},"fields":{},"shadow":false,"topLevel":false},"Y7":{"opcode":"operator_and","next":null,"parent":"y#","inputs":{"OPERAND1":[2,"a~e"],"OPERAND2":[2,"a~f"]},"fields":{},"shadow":false,"topLevel":false},"a~e":{"opcode":"operator_gt","next":null,"parent":"Y7","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"a~f":{"opcode":"operator_lt","next":null,"parent":"Y7","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"a~d":{"opcode":"data_setvariableto","next":null,"parent":"y#","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$5b_command","+yZB}NV9!4)X~Jf@W14_"]},"shadow":false,"topLevel":false},"y?":{"opcode":"control_if","next":"jJ","parent":"y#","inputs":{"CONDITION":[2,"Y8"],"SUBSTACK":[2,"a~g"]},"fields":{},"shadow":false,"topLevel":false},"Y8":{"opcode":"operator_and","next":null,"parent":"y?","inputs":{"OPERAND1":[2,"a~h"],"OPERAND2":[2,"a~i"]},"fields":{},"shadow":false,"topLevel":false},"a~h":{"opcode":"operator_gt","next":null,"parent":"Y8","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"a~i":{"opcode":"operator_lt","next":null,"parent":"Y8","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"a~g":{"opcode":"event_broadcastandwait","next":null,"parent":"y?","inputs":{"BROADCAST_INPUT":[1,[11,"5b","ET.1ru=%3YXJv8(/!(4S"]]},"fields":{},"shadow":false,"topLevel":false},"jJ":{"opcode":"control_if_else","next":"aw.","parent":"y?","inputs":{"CONDITION":[2,"a~j"],"SUBSTACK":[2,"a~k"],"SUBSTACK2":[2,"aw/"]},"fields":{},"shadow":false,"topLevel":false},"a~j":{"opcode":"operator_equals","next":null,"parent":"jJ","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~k":{"opcode":"data_replaceitemoflist","next":null,"parent":"jJ","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aw/":{"opcode":"data_replaceitemoflist","next":null,"parent":"jJ","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aw:",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aw:":{"opcode":"operator_mod","next":null,"parent":"aw/","inputs":{"NUM1":[3,"a~l",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a~l":{"opcode":"operator_multiply","next":null,"parent":"aw:","inputs":{"NUM1":[3,[12,"$prg_bank3","IH-i^bTE9H)(~1qQP=%i"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aw.":{"opcode":"procedures_call","next":"aw;","parent":"jJ","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"aw;":{"opcode":"procedures_call","next":"a~m","parent":"aw.","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"a~m":{"opcode":"procedures_call","next":null,"parent":"aw;","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank7","BG.CoXmh.n|7S`teB%Cz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"aw=":{"opcode":"procedures_definition","next":"Y9","parent":null,"inputs":{"custom_block":[1,"a~n"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":6548},"a~n":{"opcode":"procedures_prototype","next":null,"parent":"aw=","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Y9":{"opcode":"control_if","next":null,"parent":"aw=","inputs":{"CONDITION":[2,"a~o"],"SUBSTACK":[2,"y@"]},"fields":{},"shadow":false,"topLevel":false},"a~o":{"opcode":"operator_equals","next":null,"parent":"Y9","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"y@":{"opcode":"control_if","next":"a~p","parent":"Y9","inputs":{"CONDITION":[2,"a~q"],"SUBSTACK":[2,"Y!"]},"fields":{},"shadow":false,"topLevel":false},"a~q":{"opcode":"operator_equals","next":null,"parent":"y@","inputs":{"OPERAND1":[3,[12,"$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Y!":{"opcode":"data_setvariableto","next":"Y#","parent":"y@","inputs":{"VALUE":[3,"aw?",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aw?":{"opcode":"operator_mod","next":null,"parent":"Y!","inputs":{"NUM1":[3,"a~r",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"a~r":{"opcode":"operator_subtract","next":null,"parent":"aw?","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Y#":{"opcode":"control_if","next":null,"parent":"Y!","inputs":{"CONDITION":[2,"Y%"],"SUBSTACK":[2,"aw@"]},"fields":{},"shadow":false,"topLevel":false},"Y%":{"opcode":"operator_and","next":null,"parent":"Y#","inputs":{"OPERAND1":[2,"a~s"],"OPERAND2":[2,"Y("]},"fields":{},"shadow":false,"topLevel":false},"a~s":{"opcode":"operator_equals","next":null,"parent":"Y%","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"Y(":{"opcode":"operator_and","next":null,"parent":"Y%","inputs":{"OPERAND1":[2,"a~t"],"OPERAND2":[2,"a~u"]},"fields":{},"shadow":false,"topLevel":false},"a~t":{"opcode":"operator_equals","next":null,"parent":"Y(","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~u":{"opcode":"operator_equals","next":null,"parent":"Y(","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw@":{"opcode":"data_changevariableby","next":"a~v","parent":"Y#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"a~v":{"opcode":"data_setvariableto","next":null,"parent":"aw@","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"a~p":{"opcode":"control_stop","next":null,"parent":"y@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aro":{"opcode":"data_setvariableto","next":"arp","parent":"a]I","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Enable APU","ZU1H]fgUo{pr?8j#775;"]},"shadow":false,"topLevel":false},"a~w":{"opcode":"data_addtolist","next":null,"parent":"N4","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"N4":{"opcode":"control_repeat","next":"arF","parent":"arE","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"a~w"]},"fields":{},"shadow":false,"topLevel":false},"apB":{"opcode":"data_setvariableto","next":"a@4","parent":"apA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"]},"shadow":false,"topLevel":false},"oo":{"opcode":"control_if","next":"Oo","parent":"al]","inputs":{"CONDITION":[2,"a~x"],"SUBSTACK":[2,"a~y"]},"fields":{},"shadow":false,"topLevel":false},"a~x":{"opcode":"operator_equals","next":null,"parent":"oo","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a~y":{"opcode":"procedures_call","next":null,"parent":"oo","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Oo":{"opcode":"data_setvariableto","next":"a~z","parent":"oo","inputs":{"VALUE":[3,"aw[",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aw[":{"opcode":"data_itemoflist","next":null,"parent":"Oo","inputs":{"INDEX":[3,"aw]",[7,0]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aw]":{"opcode":"operator_add","next":null,"parent":"aw[","inputs":{"NUM1":[3,"aw^",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aw^":{"opcode":"operator_add","next":null,"parent":"aw]","inputs":{"NUM1":[3,"a~A",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a~A":{"opcode":"operator_multiply","next":null,"parent":"aw^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a~z":{"opcode":"procedures_call","next":null,"parent":"Oo","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"N%":{"opcode":"operator_and","next":null,"parent":"N#","inputs":{"OPERAND1":[2,"Op"],"OPERAND2":[2,"a~B"]},"fields":{},"shadow":false,"topLevel":false},"Op":{"opcode":"operator_and","next":null,"parent":"N%","inputs":{"OPERAND1":[2,"a~C"],"OPERAND2":[2,"a~D"]},"fields":{},"shadow":false,"topLevel":false},"a~C":{"opcode":"operator_equals","next":null,"parent":"Op","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a~D":{"opcode":"operator_equals","next":null,"parent":"Op","inputs":{"OPERAND1":[3,[12,"#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~B":{"opcode":"operator_gt","next":null,"parent":"N%","inputs":{"OPERAND1":[3,[12,"#sq0_swshift","x):Akro;B?IDs}?a(1S#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nD":{"opcode":"control_if","next":"Oq","parent":"nC","inputs":{"CONDITION":[2,"a~E"],"SUBSTACK":[2,"aw_"]},"fields":{},"shadow":false,"topLevel":false},"a~E":{"opcode":"operator_equals","next":null,"parent":"nD","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"aw_":{"opcode":"procedures_call","next":"a~F","parent":"nD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"iny","argumentids":"[]","warp":"false"}},"a~F":{"opcode":"control_stop","next":null,"parent":"aw_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Oq":{"opcode":"control_if","next":null,"parent":"nD","inputs":{"CONDITION":[2,"a~G"],"SUBSTACK":[2,"aw`"]},"fields":{},"shadow":false,"topLevel":false},"a~G":{"opcode":"operator_equals","next":null,"parent":"Oq","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"232"]]},"fields":{},"shadow":false,"topLevel":false},"aw`":{"opcode":"procedures_call","next":"a~H","parent":"Oq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inx","argumentids":"[]","warp":"false"}},"a~H":{"opcode":"control_stop","next":null,"parent":"aw`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nX":{"opcode":"control_if","next":"oP","parent":"nW","inputs":{"CONDITION":[2,"a~I"],"SUBSTACK":[2,"aw{"]},"fields":{},"shadow":false,"topLevel":false},"a~I":{"opcode":"operator_equals","next":null,"parent":"nX","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aw{":{"opcode":"procedures_call","next":"a~J","parent":"nX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rti","argumentids":"[]","warp":"false"}},"a~J":{"opcode":"control_stop","next":null,"parent":"aw{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oP":{"opcode":"control_if","next":"oQ","parent":"nX","inputs":{"CONDITION":[2,"a~K"],"SUBSTACK":[2,"aw|"]},"fields":{},"shadow":false,"topLevel":false},"a~K":{"opcode":"operator_equals","next":null,"parent":"oP","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aw|":{"opcode":"procedures_call","next":"a~L","parent":"oP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rts","argumentids":"[]","warp":"false"}},"a~L":{"opcode":"control_stop","next":null,"parent":"aw|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oQ":{"opcode":"control_if","next":"oR","parent":"oP","inputs":{"CONDITION":[2,"Or"],"SUBSTACK":[2,"aw}"]},"fields":{},"shadow":false,"topLevel":false},"Or":{"opcode":"operator_or","next":null,"parent":"oQ","inputs":{"OPERAND1":[2,"a~M"],"OPERAND2":[2,"a~N"]},"fields":{},"shadow":false,"topLevel":false},"a~M":{"opcode":"operator_equals","next":null,"parent":"Or","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"36"]]},"fields":{},"shadow":false,"topLevel":false},"a~N":{"opcode":"operator_equals","next":null,"parent":"Or","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"44"]]},"fields":{},"shadow":false,"topLevel":false},"aw}":{"opcode":"procedures_call","next":"a~O","parent":"oQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"bit","argumentids":"[]","warp":"false"}},"a~O":{"opcode":"control_stop","next":null,"parent":"aw}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oR":{"opcode":"control_if","next":"aw~","parent":"oQ","inputs":{"CONDITION":[2,"Os"],"SUBSTACK":[2,"axa"]},"fields":{},"shadow":false,"topLevel":false},"Os":{"opcode":"operator_or","next":null,"parent":"oR","inputs":{"OPERAND1":[2,"a~P"],"OPERAND2":[2,"a~Q"]},"fields":{},"shadow":false,"topLevel":false},"a~P":{"opcode":"operator_equals","next":null,"parent":"Os","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"76"]]},"fields":{},"shadow":false,"topLevel":false},"a~Q":{"opcode":"operator_equals","next":null,"parent":"Os","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"108"]]},"fields":{},"shadow":false,"topLevel":false},"axa":{"opcode":"procedures_call","next":"a~R","parent":"oR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jmp","argumentids":"[]","warp":"false"}},"a~R":{"opcode":"control_stop","next":null,"parent":"axa","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aw~":{"opcode":"procedures_call","next":"a~S","parent":"oR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"a~S":{"opcode":"control_stop","next":null,"parent":"aw~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n2":{"opcode":"control_if","next":"axb","parent":"n1","inputs":{"CONDITION":[2,"a~T"],"SUBSTACK":[2,"axc"]},"fields":{},"shadow":false,"topLevel":false},"a~T":{"opcode":"operator_gt","next":null,"parent":"n2","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"211"]]},"fields":{},"shadow":false,"topLevel":false},"axc":{"opcode":"procedures_call","next":"a~U","parent":"n2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"a~U":{"opcode":"control_stop","next":null,"parent":"axc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axb":{"opcode":"procedures_call","next":"a~V","parent":"n2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpy","argumentids":"[]","warp":"false"}},"a~V":{"opcode":"control_stop","next":null,"parent":"axb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n4":{"opcode":"control_if","next":"oS","parent":"nu","inputs":{"CONDITION":[2,"axd"],"SUBSTACK":[2,"oT"]},"fields":{},"shadow":false,"topLevel":false},"axd":{"opcode":"operator_equals","next":null,"parent":"n4","inputs":{"OPERAND1":[3,"a~W",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a~W":{"opcode":"operator_mod","next":null,"parent":"axd","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"oT":{"opcode":"control_if","next":"oU","parent":"n4","inputs":{"CONDITION":[2,"a~X"],"SUBSTACK":[2,"oV"]},"fields":{},"shadow":false,"topLevel":false},"a~X":{"opcode":"operator_lt","next":null,"parent":"oT","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"oV":{"opcode":"control_if","next":"oW","parent":"oT","inputs":{"CONDITION":[2,"axe"],"SUBSTACK":[2,"a~Y"]},"fields":{},"shadow":false,"topLevel":false},"axe":{"opcode":"operator_equals","next":null,"parent":"oV","inputs":{"OPERAND1":[3,"a~Z",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"a~Z":{"opcode":"operator_mod","next":null,"parent":"axe","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a~Y":{"opcode":"control_stop","next":null,"parent":"oV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oW":{"opcode":"control_if","next":"oX","parent":"oV","inputs":{"CONDITION":[2,"a~0"],"SUBSTACK":[2,"axf"]},"fields":{},"shadow":false,"topLevel":false},"a~0":{"opcode":"operator_lt","next":null,"parent":"oW","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"axf":{"opcode":"procedures_call","next":"a~1","parent":"oW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"asl","argumentids":"[]","warp":"false"}},"a~1":{"opcode":"control_stop","next":null,"parent":"axf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oX":{"opcode":"control_if","next":"oY","parent":"oW","inputs":{"CONDITION":[2,"a~2"],"SUBSTACK":[2,"axg"]},"fields":{},"shadow":false,"topLevel":false},"a~2":{"opcode":"operator_lt","next":null,"parent":"oX","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"axg":{"opcode":"procedures_call","next":"a~3","parent":"oX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rol","argumentids":"[]","warp":"false"}},"a~3":{"opcode":"control_stop","next":null,"parent":"axg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oY":{"opcode":"control_if","next":"Ot","parent":"oX","inputs":{"CONDITION":[2,"a~4"],"SUBSTACK":[2,"axh"]},"fields":{},"shadow":false,"topLevel":false},"a~4":{"opcode":"operator_lt","next":null,"parent":"oY","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"axh":{"opcode":"procedures_call","next":"a~5","parent":"oY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lsr","argumentids":"[]","warp":"false"}},"a~5":{"opcode":"control_stop","next":null,"parent":"axh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ot":{"opcode":"control_if","next":null,"parent":"oY","inputs":{"CONDITION":[2,"a~6"],"SUBSTACK":[2,"axi"]},"fields":{},"shadow":false,"topLevel":false},"a~6":{"opcode":"operator_lt","next":null,"parent":"Ot","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"axi":{"opcode":"procedures_call","next":"a~7","parent":"Ot","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror","argumentids":"[]","warp":"false"}},"a~7":{"opcode":"control_stop","next":null,"parent":"axi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oU":{"opcode":"control_if","next":"oZ","parent":"oT","inputs":{"CONDITION":[2,"axj"],"SUBSTACK":[2,"o0"]},"fields":{},"shadow":false,"topLevel":false},"axj":{"opcode":"operator_equals","next":null,"parent":"oU","inputs":{"OPERAND1":[3,"a~8",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a~8":{"opcode":"operator_mod","next":null,"parent":"axj","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"o0":{"opcode":"control_if","next":"o1","parent":"oU","inputs":{"CONDITION":[2,"a~9"],"SUBSTACK":[2,"axk"]},"fields":{},"shadow":false,"topLevel":false},"a~9":{"opcode":"operator_equals","next":null,"parent":"o0","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"138"]]},"fields":{},"shadow":false,"topLevel":false},"axk":{"opcode":"procedures_call","next":"a~!","parent":"o0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txa","argumentids":"[]","warp":"false"}},"a~!":{"opcode":"control_stop","next":null,"parent":"axk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o1":{"opcode":"control_if","next":"o2","parent":"o0","inputs":{"CONDITION":[2,"a~#"],"SUBSTACK":[2,"axl"]},"fields":{},"shadow":false,"topLevel":false},"a~#":{"opcode":"operator_equals","next":null,"parent":"o1","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"170"]]},"fields":{},"shadow":false,"topLevel":false},"axl":{"opcode":"procedures_call","next":"a~%","parent":"o1","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tax","argumentids":"[]","warp":"false"}},"a~%":{"opcode":"control_stop","next":null,"parent":"axl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o2":{"opcode":"control_if","next":"a~(","parent":"o1","inputs":{"CONDITION":[2,"a~)"],"SUBSTACK":[2,"axm"]},"fields":{},"shadow":false,"topLevel":false},"a~)":{"opcode":"operator_equals","next":null,"parent":"o2","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"202"]]},"fields":{},"shadow":false,"topLevel":false},"axm":{"opcode":"procedures_call","next":"a~*","parent":"o2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dex","argumentids":"[]","warp":"false"}},"a~*":{"opcode":"control_stop","next":null,"parent":"axm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a~(":{"opcode":"control_stop","next":null,"parent":"o2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oZ":{"opcode":"control_if","next":"o3","parent":"oU","inputs":{"CONDITION":[2,"axn"],"SUBSTACK":[2,"o4"]},"fields":{},"shadow":false,"topLevel":false},"axn":{"opcode":"operator_equals","next":null,"parent":"oZ","inputs":{"OPERAND1":[3,"a~+",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"a~+":{"opcode":"operator_mod","next":null,"parent":"axn","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"o4":{"opcode":"control_if","next":"o5","parent":"oZ","inputs":{"CONDITION":[2,"a~,"],"SUBSTACK":[2,"axo"]},"fields":{},"shadow":false,"topLevel":false},"a~,":{"opcode":"operator_equals","next":null,"parent":"o4","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"154"]]},"fields":{},"shadow":false,"topLevel":false},"axo":{"opcode":"procedures_call","next":"a~-","parent":"o4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txs","argumentids":"[]","warp":"false"}},"a~-":{"opcode":"control_stop","next":null,"parent":"axo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o5":{"opcode":"control_if","next":"a~.","parent":"o4","inputs":{"CONDITION":[2,"a~/"],"SUBSTACK":[2,"axp"]},"fields":{},"shadow":false,"topLevel":false},"a~/":{"opcode":"operator_equals","next":null,"parent":"o5","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"186"]]},"fields":{},"shadow":false,"topLevel":false},"axp":{"opcode":"procedures_call","next":"a~:","parent":"o5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tsx","argumentids":"[]","warp":"false"}},"a~:":{"opcode":"control_stop","next":null,"parent":"axp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a~.":{"opcode":"control_stop","next":null,"parent":"o5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o3":{"opcode":"control_if","next":"o6","parent":"oZ","inputs":{"CONDITION":[2,"a~;"],"SUBSTACK":[2,"o7"]},"fields":{},"shadow":false,"topLevel":false},"a~;":{"opcode":"operator_lt","next":null,"parent":"o3","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"o7":{"opcode":"control_if","next":"o8","parent":"o3","inputs":{"CONDITION":[2,"a~="],"SUBSTACK":[2,"a~?"]},"fields":{},"shadow":false,"topLevel":false},"a~=":{"opcode":"operator_equals","next":null,"parent":"o7","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"130"]]},"fields":{},"shadow":false,"topLevel":false},"a~?":{"opcode":"control_stop","next":null,"parent":"o7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o8":{"opcode":"control_if","next":"axq","parent":"o7","inputs":{"CONDITION":[2,"a~@"],"SUBSTACK":[2,"axr"]},"fields":{},"shadow":false,"topLevel":false},"a~@":{"opcode":"operator_equals","next":null,"parent":"o8","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"158"]]},"fields":{},"shadow":false,"topLevel":false},"axr":{"opcode":"procedures_call","next":"a~[","parent":"o8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shx","argumentids":"[]","warp":"false"}},"a~[":{"opcode":"control_stop","next":null,"parent":"axr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axq":{"opcode":"procedures_call","next":"a~]","parent":"o8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"stx","argumentids":"[]","warp":"false"}},"a~]":{"opcode":"control_stop","next":null,"parent":"axq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o6":{"opcode":"control_if","next":"o9","parent":"o3","inputs":{"CONDITION":[2,"a~^"],"SUBSTACK":[2,"axs"]},"fields":{},"shadow":false,"topLevel":false},"a~^":{"opcode":"operator_lt","next":null,"parent":"o6","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"axs":{"opcode":"procedures_call","next":"a~_","parent":"o6","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldx","argumentids":"[]","warp":"false"}},"a~_":{"opcode":"control_stop","next":null,"parent":"axs","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o9":{"opcode":"control_if","next":"Ou","parent":"o6","inputs":{"CONDITION":[2,"a~`"],"SUBSTACK":[2,"o!"]},"fields":{},"shadow":false,"topLevel":false},"a~`":{"opcode":"operator_lt","next":null,"parent":"o9","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"o!":{"opcode":"control_if","next":"axt","parent":"o9","inputs":{"CONDITION":[2,"a~{"],"SUBSTACK":[2,"a~|"]},"fields":{},"shadow":false,"topLevel":false},"a~{":{"opcode":"operator_equals","next":null,"parent":"o!","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"194"]]},"fields":{},"shadow":false,"topLevel":false},"a~|":{"opcode":"control_stop","next":null,"parent":"o!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axt":{"opcode":"procedures_call","next":"a~}","parent":"o!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dec","argumentids":"[]","warp":"false"}},"a~}":{"opcode":"control_stop","next":null,"parent":"axt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ou":{"opcode":"control_if","next":null,"parent":"o9","inputs":{"CONDITION":[2,"a~~"],"SUBSTACK":[2,"o#"]},"fields":{},"shadow":false,"topLevel":false},"a~~":{"opcode":"operator_lt","next":null,"parent":"Ou","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"o#":{"opcode":"control_if","next":"axu","parent":"Ou","inputs":{"CONDITION":[2,"baa"],"SUBSTACK":[2,"bab"]},"fields":{},"shadow":false,"topLevel":false},"baa":{"opcode":"operator_equals","next":null,"parent":"o#","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"226"]]},"fields":{},"shadow":false,"topLevel":false},"bab":{"opcode":"control_stop","next":null,"parent":"o#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axu":{"opcode":"procedures_call","next":"bac","parent":"o#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inc","argumentids":"[]","warp":"false"}},"bac":{"opcode":"control_stop","next":null,"parent":"axu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oS":{"opcode":"control_if","next":"axv","parent":"n4","inputs":{"CONDITION":[2,"axw"],"SUBSTACK":[2,"o%"]},"fields":{},"shadow":false,"topLevel":false},"axw":{"opcode":"operator_equals","next":null,"parent":"oS","inputs":{"OPERAND1":[3,"bad",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bad":{"opcode":"operator_mod","next":null,"parent":"axw","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"o%":{"opcode":"control_if","next":"o(","parent":"oS","inputs":{"CONDITION":[2,"axx"],"SUBSTACK":[2,"o)"]},"fields":{},"shadow":false,"topLevel":false},"axx":{"opcode":"operator_equals","next":null,"parent":"o%","inputs":{"OPERAND1":[3,"bae",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"bae":{"opcode":"operator_mod","next":null,"parent":"axx","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"o)":{"opcode":"control_if","next":"o*","parent":"o%","inputs":{"CONDITION":[2,"baf"],"SUBSTACK":[2,"axy"]},"fields":{},"shadow":false,"topLevel":false},"baf":{"opcode":"operator_lt","next":null,"parent":"o)","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"44"]]},"fields":{},"shadow":false,"topLevel":false},"axy":{"opcode":"procedures_call","next":"bag","parent":"o)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"anc","argumentids":"[]","warp":"true"}},"bag":{"opcode":"control_stop","next":null,"parent":"axy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o*":{"opcode":"control_if","next":"o+","parent":"o)","inputs":{"CONDITION":[2,"bah"],"SUBSTACK":[2,"axz"]},"fields":{},"shadow":false,"topLevel":false},"bah":{"opcode":"operator_equals","next":null,"parent":"o*","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"axz":{"opcode":"procedures_call","next":"bai","parent":"o*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"alr","argumentids":"[]","warp":"false"}},"bai":{"opcode":"control_stop","next":null,"parent":"axz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o+":{"opcode":"control_if","next":"o,","parent":"o*","inputs":{"CONDITION":[2,"baj"],"SUBSTACK":[2,"axA"]},"fields":{},"shadow":false,"topLevel":false},"baj":{"opcode":"operator_equals","next":null,"parent":"o+","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"107"]]},"fields":{},"shadow":false,"topLevel":false},"axA":{"opcode":"procedures_call","next":"bak","parent":"o+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arr","argumentids":"[]","warp":"false"}},"bak":{"opcode":"control_stop","next":null,"parent":"axA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o,":{"opcode":"control_if","next":"o-","parent":"o+","inputs":{"CONDITION":[2,"bal"],"SUBSTACK":[2,"axB"]},"fields":{},"shadow":false,"topLevel":false},"bal":{"opcode":"operator_equals","next":null,"parent":"o,","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"139"]]},"fields":{},"shadow":false,"topLevel":false},"axB":{"opcode":"procedures_call","next":"bam","parent":"o,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"xaa","argumentids":"[]","warp":"false"}},"bam":{"opcode":"control_stop","next":null,"parent":"axB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o-":{"opcode":"control_if","next":"o.","parent":"o,","inputs":{"CONDITION":[2,"ban"],"SUBSTACK":[2,"axC"]},"fields":{},"shadow":false,"topLevel":false},"ban":{"opcode":"operator_equals","next":null,"parent":"o-","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"171"]]},"fields":{},"shadow":false,"topLevel":false},"axC":{"opcode":"procedures_call","next":"bao","parent":"o-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","warp":"false"}},"bao":{"opcode":"control_stop","next":null,"parent":"axC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o.":{"opcode":"control_if","next":"Ov","parent":"o-","inputs":{"CONDITION":[2,"bap"],"SUBSTACK":[2,"axD"]},"fields":{},"shadow":false,"topLevel":false},"bap":{"opcode":"operator_equals","next":null,"parent":"o.","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"203"]]},"fields":{},"shadow":false,"topLevel":false},"axD":{"opcode":"procedures_call","next":"baq","parent":"o.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"axs","argumentids":"[]","warp":"false"}},"baq":{"opcode":"control_stop","next":null,"parent":"axD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ov":{"opcode":"control_if","next":null,"parent":"o.","inputs":{"CONDITION":[2,"bar"],"SUBSTACK":[2,"axE"]},"fields":{},"shadow":false,"topLevel":false},"bar":{"opcode":"operator_equals","next":null,"parent":"Ov","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"235"]]},"fields":{},"shadow":false,"topLevel":false},"axE":{"opcode":"procedures_call","next":"bas","parent":"Ov","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","warp":"false"}},"bas":{"opcode":"control_stop","next":null,"parent":"axE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o(":{"opcode":"control_if","next":"o/","parent":"o%","inputs":{"CONDITION":[2,"bat"],"SUBSTACK":[2,"axF"]},"fields":{},"shadow":false,"topLevel":false},"bat":{"opcode":"operator_lt","next":null,"parent":"o(","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"axF":{"opcode":"procedures_call","next":"bau","parent":"o(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"slo","argumentids":"[]","warp":"false"}},"bau":{"opcode":"control_stop","next":null,"parent":"axF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o/":{"opcode":"control_if","next":"o:","parent":"o(","inputs":{"CONDITION":[2,"bav"],"SUBSTACK":[2,"axG"]},"fields":{},"shadow":false,"topLevel":false},"bav":{"opcode":"operator_lt","next":null,"parent":"o/","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"axG":{"opcode":"procedures_call","next":"baw","parent":"o/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rla","argumentids":"[]","warp":"false"}},"baw":{"opcode":"control_stop","next":null,"parent":"axG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o:":{"opcode":"control_if","next":"o;","parent":"o/","inputs":{"CONDITION":[2,"bax"],"SUBSTACK":[2,"axH"]},"fields":{},"shadow":false,"topLevel":false},"bax":{"opcode":"operator_lt","next":null,"parent":"o:","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"axH":{"opcode":"procedures_call","next":"bay","parent":"o:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sre","argumentids":"[]","warp":"false"}},"bay":{"opcode":"control_stop","next":null,"parent":"axH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o;":{"opcode":"control_if","next":"o=","parent":"o:","inputs":{"CONDITION":[2,"baz"],"SUBSTACK":[2,"axI"]},"fields":{},"shadow":false,"topLevel":false},"baz":{"opcode":"operator_lt","next":null,"parent":"o;","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"axI":{"opcode":"procedures_call","next":"baA","parent":"o;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rra","argumentids":"[]","warp":"false"}},"baA":{"opcode":"control_stop","next":null,"parent":"axI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o=":{"opcode":"control_if","next":"o?","parent":"o;","inputs":{"CONDITION":[2,"baB"],"SUBSTACK":[2,"axJ"]},"fields":{},"shadow":false,"topLevel":false},"baB":{"opcode":"operator_lt","next":null,"parent":"o=","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"axJ":{"opcode":"procedures_call","next":"baC","parent":"o=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sax","argumentids":"[]","warp":"false"}},"baC":{"opcode":"control_stop","next":null,"parent":"axJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o?":{"opcode":"control_if","next":"o@","parent":"o=","inputs":{"CONDITION":[2,"baD"],"SUBSTACK":[2,"axK"]},"fields":{},"shadow":false,"topLevel":false},"baD":{"opcode":"operator_lt","next":null,"parent":"o?","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"axK":{"opcode":"procedures_call","next":"baE","parent":"o?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","warp":"false"}},"baE":{"opcode":"control_stop","next":null,"parent":"axK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o@":{"opcode":"control_if","next":"Ow","parent":"o?","inputs":{"CONDITION":[2,"baF"],"SUBSTACK":[2,"axL"]},"fields":{},"shadow":false,"topLevel":false},"baF":{"opcode":"operator_lt","next":null,"parent":"o@","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"axL":{"opcode":"procedures_call","next":"baG","parent":"o@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dcp","argumentids":"[]","warp":"false"}},"baG":{"opcode":"control_stop","next":null,"parent":"axL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ow":{"opcode":"control_if","next":null,"parent":"o@","inputs":{"CONDITION":[2,"baH"],"SUBSTACK":[2,"axM"]},"fields":{},"shadow":false,"topLevel":false},"baH":{"opcode":"operator_lt","next":null,"parent":"Ow","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"axM":{"opcode":"procedures_call","next":"baI","parent":"Ow","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"isc","argumentids":"[]","warp":"false"}},"baI":{"opcode":"control_stop","next":null,"parent":"axM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axv":{"opcode":"sensing_askandwait","next":"baJ","parent":"oS","inputs":{"QUESTION":[1,[10,"How did you get this message?"]]},"fields":{},"shadow":false,"topLevel":false},"baJ":{"opcode":"control_stop","next":null,"parent":"axv","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iH":{"opcode":"control_if_else","next":"baK","parent":"n`","inputs":{"CONDITION":[2,"axN"],"SUBSTACK":[2,"axO"],"SUBSTACK2":[2,"baL"]},"fields":{},"shadow":false,"topLevel":false},"axN":{"opcode":"operator_equals","next":null,"parent":"iH","inputs":{"OPERAND1":[3,"baM",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"baM":{"opcode":"operator_mod","next":null,"parent":"axN","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"axO":{"opcode":"data_setvariableto","next":"axP","parent":"iH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"axP":{"opcode":"data_setvariableto","next":"baN","parent":"axO","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"baN":{"opcode":"data_setvariableto","next":null,"parent":"axP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"baL":{"opcode":"data_setvariableto","next":null,"parent":"iH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"baK":{"opcode":"control_stop","next":null,"parent":"iH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"d5":{"opcode":"control_repeat","next":"o[","parent":"i.","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"ew"]},"fields":{},"shadow":false,"topLevel":false},"ew":{"opcode":"data_replaceitemoflist","next":"Y)","parent":"d5","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Ox",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Ox":{"opcode":"operator_multiply","next":null,"parent":"ew","inputs":{"NUM1":[3,"Y*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y*":{"opcode":"operator_mod","next":null,"parent":"Ox","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y)":{"opcode":"data_changevariableby","next":null,"parent":"ew","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"o[":{"opcode":"control_repeat","next":"Y+","parent":"d5","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"ex"]},"fields":{},"shadow":false,"topLevel":false},"ex":{"opcode":"data_replaceitemoflist","next":"Y,","parent":"o[","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"Oy",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Oy":{"opcode":"operator_multiply","next":null,"parent":"ex","inputs":{"NUM1":[3,"Oz",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Oz":{"opcode":"operator_mod","next":null,"parent":"Oy","inputs":{"NUM1":[3,"OA",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"OA":{"opcode":"operator_mathop","next":null,"parent":"Oz","inputs":{"NUM":[3,"Y-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Y-":{"opcode":"operator_divide","next":null,"parent":"OA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y,":{"opcode":"data_changevariableby","next":null,"parent":"ex","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Y+":{"opcode":"data_changevariableby","next":null,"parent":"o[","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"ek":{"opcode":"data_setvariableto","next":"ey","parent":"ej","inputs":{"VALUE":[3,"OB",[10,""]]},"fields":{"VARIABLE":["@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"]},"shadow":false,"topLevel":false},"OB":{"opcode":"data_itemoflist","next":null,"parent":"ek","inputs":{"INDEX":[3,"Y.",[7,0]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Y.":{"opcode":"operator_add","next":null,"parent":"OB","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ey":{"opcode":"data_setvariableto","next":",","parent":"ek","inputs":{"VALUE":[3,"OC",[10,""]]},"fields":{"VARIABLE":["@sprite_x","*`+18/=FU3Ni:/*T,!l("]},"shadow":false,"topLevel":false},"OC":{"opcode":"data_itemoflist","next":null,"parent":"ey","inputs":{"INDEX":[3,"Y/",[7,0]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Y/":{"opcode":"operator_add","next":null,"parent":"OC","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},",":{"opcode":"control_if_else","next":"ez","parent":"ey","inputs":{"CONDITION":[2,"Y:"],"SUBSTACK":[2,"OD"],"SUBSTACK2":[2,"Y;"]},"fields":{},"shadow":false,"topLevel":false},"Y:":{"opcode":"operator_equals","next":null,"parent":",","inputs":{"OPERAND1":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"OD":{"opcode":"data_setvariableto","next":null,"parent":",","inputs":{"VALUE":[3,"eA",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"eA":{"opcode":"operator_add","next":null,"parent":"OD","inputs":{"NUM1":[3,"OE",[4,0]],"NUM2":[3,"OF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"OE":{"opcode":"operator_subtract","next":null,"parent":"eA","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[3,"Y=",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Y=":{"opcode":"operator_mod","next":null,"parent":"OE","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"OF":{"opcode":"operator_multiply","next":null,"parent":"eA","inputs":{"NUM1":[3,"Y?",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Y?":{"opcode":"operator_mod","next":null,"parent":"OF","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Y;":{"opcode":"data_changevariableby","next":null,"parent":",","inputs":{"VALUE":[3,[12,"@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"],[4,0]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"ez":{"opcode":"data_setvariableto","next":"eB","parent":",","inputs":{"VALUE":[3,"OG",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"OG":{"opcode":"operator_add","next":null,"parent":"ez","inputs":{"NUM1":[3,"OH",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"OH":{"opcode":"operator_multiply","next":null,"parent":"OG","inputs":{"NUM1":[3,"Y@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y@":{"opcode":"operator_mod","next":null,"parent":"OH","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"eB":{"opcode":"data_setvariableto","next":"eC","parent":"ez","inputs":{"VALUE":[3,"OI",[10,""]]},"fields":{"VARIABLE":["@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"]},"shadow":false,"topLevel":false},"OI":{"opcode":"operator_add","next":null,"parent":"eB","inputs":{"NUM1":[3,"OJ",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OJ":{"opcode":"operator_gt","next":null,"parent":"OI","inputs":{"OPERAND1":[3,"Y[",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Y[":{"opcode":"operator_mod","next":null,"parent":"OJ","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"eC":{"opcode":"data_setvariableto","next":"eD","parent":"eB","inputs":{"VALUE":[3,"OK",[10,""]]},"fields":{"VARIABLE":["@sprite_priority","q:J@[.C#brGXD1scwWlL"]},"shadow":false,"topLevel":false},"OK":{"opcode":"operator_add","next":null,"parent":"eC","inputs":{"NUM1":[3,"OL",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OL":{"opcode":"operator_lt","next":null,"parent":"OK","inputs":{"OPERAND1":[3,"Y]",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"Y]":{"opcode":"operator_mod","next":null,"parent":"OL","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"eD":{"opcode":"data_setvariableto","next":"OM","parent":"eC","inputs":{"VALUE":[3,"ON",[10,""]]},"fields":{"VARIABLE":["@hflip","O-XGEJrBMMOorrV6rRfY"]},"shadow":false,"topLevel":false},"ON":{"opcode":"operator_add","next":null,"parent":"eD","inputs":{"NUM1":[3,"OO",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OO":{"opcode":"operator_gt","next":null,"parent":"ON","inputs":{"OPERAND1":[3,"Y^",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"Y^":{"opcode":"operator_mod","next":null,"parent":"OO","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"OM":{"opcode":"procedures_call","next":"Y_","parent":"eD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw sprite line","argumentids":"[]","warp":"true"}},"Y_":{"opcode":"data_changevariableby","next":null,"parent":"OM","inputs":{"VALUE":[1,[4,"-4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"jj":{"opcode":"control_if_else","next":"y[","parent":"xw","inputs":{"CONDITION":[2,"o]"],"SUBSTACK":[2,"axQ"],"SUBSTACK2":[2,"baO"]},"fields":{},"shadow":false,"topLevel":false},"o]":{"opcode":"operator_or","next":null,"parent":"jj","inputs":{"OPERAND1":[2,"axR"],"OPERAND2":[2,"axS"]},"fields":{},"shadow":false,"topLevel":false},"axR":{"opcode":"operator_equals","next":null,"parent":"o]","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axS":{"opcode":"operator_equals","next":null,"parent":"o]","inputs":{"OPERAND1":[3,[12,"#sq0_swreload","elV@:}M3MreZKq22A%3?"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"axQ":{"opcode":"data_setvariableto","next":"baP","parent":"jj","inputs":{"VALUE":[3,[12,"#sq0_swperiod","6ZtJprVet|52~YE]#e.R"],[10,""]]},"fields":{"VARIABLE":["#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"]},"shadow":false,"topLevel":false},"baP":{"opcode":"data_setvariableto","next":null,"parent":"axQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"baO":{"opcode":"data_changevariableby","next":null,"parent":"jj","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"]},"shadow":false,"topLevel":false},"y[":{"opcode":"control_if","next":"axT","parent":"jj","inputs":{"CONDITION":[2,"o^"],"SUBSTACK":[2,"baQ"]},"fields":{},"shadow":false,"topLevel":false},"o^":{"opcode":"operator_and","next":null,"parent":"y[","inputs":{"OPERAND1":[2,"axU"],"OPERAND2":[2,"axV"]},"fields":{},"shadow":false,"topLevel":false},"axU":{"opcode":"operator_equals","next":null,"parent":"o^","inputs":{"OPERAND1":[3,[12,"#sq1_counter_halt","a7zy6G,GluFays4z,XP7"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axV":{"opcode":"operator_gt","next":null,"parent":"o^","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baQ":{"opcode":"data_changevariableby","next":null,"parent":"y[","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"axT":{"opcode":"procedures_call","next":"y]","parent":"y[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"y]":{"opcode":"control_if","next":"jK","parent":"axT","inputs":{"CONDITION":[2,"y^"],"SUBSTACK":[2,"axW"]},"fields":{},"shadow":false,"topLevel":false},"y^":{"opcode":"operator_and","next":null,"parent":"y]","inputs":{"OPERAND1":[2,"y_"],"OPERAND2":[2,"Y`"]},"fields":{},"shadow":false,"topLevel":false},"y_":{"opcode":"operator_and","next":null,"parent":"y^","inputs":{"OPERAND1":[2,"o_"],"OPERAND2":[2,"axX"]},"fields":{},"shadow":false,"topLevel":false},"o_":{"opcode":"operator_and","next":null,"parent":"y_","inputs":{"OPERAND1":[2,"axY"],"OPERAND2":[2,"axZ"]},"fields":{},"shadow":false,"topLevel":false},"axY":{"opcode":"operator_equals","next":null,"parent":"o_","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axZ":{"opcode":"operator_equals","next":null,"parent":"o_","inputs":{"OPERAND1":[3,[12,"#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"axX":{"opcode":"operator_gt","next":null,"parent":"y_","inputs":{"OPERAND1":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Y`":{"opcode":"operator_not","next":null,"parent":"y^","inputs":{"OPERAND":[2,"jL"]},"fields":{},"shadow":false,"topLevel":false},"jL":{"opcode":"operator_or","next":null,"parent":"Y`","inputs":{"OPERAND1":[2,"ax0"],"OPERAND2":[2,"ax1"]},"fields":{},"shadow":false,"topLevel":false},"ax0":{"opcode":"operator_lt","next":null,"parent":"jL","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ax1":{"opcode":"operator_gt","next":null,"parent":"jL","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"axW":{"opcode":"data_setvariableto","next":"baR","parent":"y]","inputs":{"VALUE":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"baR":{"opcode":"procedures_call","next":null,"parent":"axW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"jK":{"opcode":"control_if_else","next":"y`","parent":"y]","inputs":{"CONDITION":[2,"o`"],"SUBSTACK":[2,"ax2"],"SUBSTACK2":[2,"baS"]},"fields":{},"shadow":false,"topLevel":false},"o`":{"opcode":"operator_or","next":null,"parent":"jK","inputs":{"OPERAND1":[2,"ax3"],"OPERAND2":[2,"ax4"]},"fields":{},"shadow":false,"topLevel":false},"ax3":{"opcode":"operator_equals","next":null,"parent":"o`","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax4":{"opcode":"operator_equals","next":null,"parent":"o`","inputs":{"OPERAND1":[3,[12,"#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax2":{"opcode":"data_setvariableto","next":"baT","parent":"jK","inputs":{"VALUE":[3,[12,"#sq1_swperiod","8IbJ`L:k(VYE2y+AXNN`"],[10,""]]},"fields":{"VARIABLE":["#sq1_swcounter","*esvLM8NOPIYxzMcC4])"]},"shadow":false,"topLevel":false},"baT":{"opcode":"data_setvariableto","next":null,"parent":"ax2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"baS":{"opcode":"data_changevariableby","next":null,"parent":"jK","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_swcounter","*esvLM8NOPIYxzMcC4])"]},"shadow":false,"topLevel":false},"y`":{"opcode":"control_if","next":"y{","parent":"jK","inputs":{"CONDITION":[2,"o{"],"SUBSTACK":[2,"baU"]},"fields":{},"shadow":false,"topLevel":false},"o{":{"opcode":"operator_and","next":null,"parent":"y`","inputs":{"OPERAND1":[2,"ax5"],"OPERAND2":[2,"ax6"]},"fields":{},"shadow":false,"topLevel":false},"ax5":{"opcode":"operator_equals","next":null,"parent":"o{","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax6":{"opcode":"operator_gt","next":null,"parent":"o{","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baU":{"opcode":"data_changevariableby","next":null,"parent":"y`","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"y{":{"opcode":"control_if","next":null,"parent":"y`","inputs":{"CONDITION":[2,"o|"],"SUBSTACK":[2,"ax7"]},"fields":{},"shadow":false,"topLevel":false},"o|":{"opcode":"operator_and","next":null,"parent":"y{","inputs":{"OPERAND1":[2,"ax8"],"OPERAND2":[2,"ax9"]},"fields":{},"shadow":false,"topLevel":false},"ax8":{"opcode":"operator_equals","next":null,"parent":"o|","inputs":{"OPERAND1":[3,[12,"#noise_counter_halt","d#{}}5.jeOzt/68f8/23"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax9":{"opcode":"operator_gt","next":null,"parent":"o|","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax7":{"opcode":"data_changevariableby","next":null,"parent":"y{","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"QW":{"opcode":"procedures_call","next":"baV","parent":"asC","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"ax!",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"ax!":{"opcode":"operator_subtract","next":null,"parent":"QW","inputs":{"NUM1":[3,"baW",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"baW":{"opcode":"operator_divide","next":null,"parent":"ax!","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"baV":{"opcode":"control_stop","next":null,"parent":"QW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ev":{"opcode":"procedures_call","next":"baX","parent":"YR","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,"ax#",[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,"ax%",[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,"ax(",[10,""]],"M.aj{qup%g}995:UVZ[:":[3,"ax)",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"ax#":{"opcode":"operator_subtract","next":null,"parent":"ev","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"baY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"baY":{"opcode":"operator_mod","next":null,"parent":"ax#","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ax%":{"opcode":"operator_add","next":null,"parent":"ev","inputs":{"NUM1":[3,"ax*",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax*":{"opcode":"operator_subtract","next":null,"parent":"ax%","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"baZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"baZ":{"opcode":"operator_mod","next":null,"parent":"ax*","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ax(":{"opcode":"operator_subtract","next":null,"parent":"ev","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"ba0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ba0":{"opcode":"operator_mod","next":null,"parent":"ax(","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ax)":{"opcode":"operator_add","next":null,"parent":"ev","inputs":{"NUM1":[3,"ax+",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax+":{"opcode":"operator_subtract","next":null,"parent":"ax)","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"ba1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ba1":{"opcode":"operator_mod","next":null,"parent":"ax+","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"baX":{"opcode":"procedures_call","next":null,"parent":"ev","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}}},"comments":{"bu?":{"blockId":"bu@","x":3578.798807144165,"y":2100,"width":159.378662109375,"height":133.5286865234375,"minimized":false,"text":"Oh come on, don't be such a meanie! Who doesn't love speed hacks?"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":2,"dataFormat":"png","assetId":"106a066f859acd4c5e5728e8f4d861ae","md5ext":"106a066f859acd4c5e5728e8f4d861ae.png","rotationCenterX":16,"rotationCenterY":16}],"sounds":[],"volume":36,"layerOrder":18,"visible":false,"x":0,"y":0,"size":250,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"SI8080","variables":{"Sx;#S`yw8}4Z[VDB*X~[":["8080.cycles",2007],"mZ)9?(KkB8T|Agp7]MZ9":["8080.readreturn",0],"M}(6FQ$ph-O-oCmv%Unj":["8080.shift register offset","0"],"yuzMq0ho]TXgzPWJIl=#":["8080.RAM mirror",65536]},"lists":{")yF+1`NW6;S!1GicT2N]":["_flags",["0","0","1","0","1","0","1","0"]]},"broadcasts":{},"blocks":{"10":{"opcode":"operator_join","next":null,"parent":"1Y","inputs":{"STRING1":[3,"aH]",[10,""]],"STRING2":[3,"aH^",[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"11":{"opcode":"sensing_keypressed","next":null,"parent":"aH@","inputs":{"KEY_OPTION":[3,"bi^","bi_"]},"fields":{},"shadow":false,"topLevel":false},"12":{"opcode":"sensing_keypressed","next":null,"parent":"aH[","inputs":{"KEY_OPTION":[3,"bi`","bi{"]},"fields":{},"shadow":false,"topLevel":false},"13":{"opcode":"sensing_keypressed","next":null,"parent":"aH]","inputs":{"KEY_OPTION":[3,"bi|","bi}"]},"fields":{},"shadow":false,"topLevel":false},"14":{"opcode":"sensing_keypressed","next":null,"parent":"aH_","inputs":{"KEY_OPTION":[3,"bi~","bja"]},"fields":{},"shadow":false,"topLevel":false},"15":{"opcode":"looks_say","next":"18","parent":"RY","inputs":{"MESSAGE":[3,"aIb",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"16":{"opcode":"data_setvariableto","next":"bjc","parent":"RY","inputs":{"VALUE":[3,"aH{",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"17":{"opcode":"operator_divide","next":null,"parent":"aH|","inputs":{"NUM1":[3,"bjd",[4,""]],"NUM2":[3,"aH}",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"18":{"opcode":"control_wait_until","next":"bjg","parent":"15","inputs":{"CONDITION":[2,"bjh"]},"fields":{},"shadow":false,"topLevel":false},"19":{"opcode":"control_if","next":null,"parent":"aIc","inputs":{"CONDITION":[2,"bjj"],"SUBSTACK":[2,"aIe"]},"fields":{},"shadow":false,"topLevel":false},"ba2":{"opcode":"event_whenbroadcastreceived","next":"ax,","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["8080","5F;%8N/Qr^Di?+)(*eE."]},"shadow":false,"topLevel":true,"x":926,"y":716},"ax,":{"opcode":"procedures_call","next":"ax-","parent":"ba2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"initialize","argumentids":"[]","warp":"true"}},"ax-":{"opcode":"looks_say","next":"ax.","parent":"ax,","inputs":{"MESSAGE":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ax.":{"opcode":"control_forever","next":null,"parent":"ax-","inputs":{"SUBSTACK":[2,"ax/"]},"fields":{},"shadow":false,"topLevel":false},"ax/":{"opcode":"procedures_call","next":"ax:","parent":"ax.","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,[10,"16666"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","warp":"false"}},"Y{":{"opcode":"control_if","next":null,"parent":"ax;","inputs":{"CONDITION":[2,"ba3"],"SUBSTACK":[2,"ba4"]},"fields":{},"shadow":false,"topLevel":false},"ba3":{"opcode":"operator_equals","next":null,"parent":"Y{","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ba4":{"opcode":"procedures_call","next":null,"parent":"Y{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.sideways","argumentids":"[]","warp":"true"}},"ba5":{"opcode":"event_whenbroadcastreceived","next":"ax=","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":913,"y":6},"ax=":{"opcode":"control_stop","next":"ax?","parent":"ba5","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"ax?":{"opcode":"data_hidevariable","next":"ax@","parent":"ax=","inputs":{},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"ax@":{"opcode":"data_hidelist","next":"ax[","parent":"ax?","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"ax[":{"opcode":"data_hidevariable","next":"ax]","parent":"ax@","inputs":{},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"ax]":{"opcode":"data_hidelist","next":"ax^","parent":"ax[","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"ax^":{"opcode":"data_hidevariable","next":"ax_","parent":"ax]","inputs":{},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"ax_":{"opcode":"data_hidevariable","next":"ax`","parent":"ax^","inputs":{},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"ax{":{"opcode":"procedures_definition","next":"ax|","parent":null,"inputs":{"custom_block":[1,"ax}"]},"fields":{},"shadow":false,"topLevel":true,"x":1804,"y":1140},"ax}":{"opcode":"procedures_prototype","next":null,"parent":"ax{","inputs":{"qQ}-I6z8x}.R[rfw~o}T":[1,"ba6"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"qQ}-I6z8x}.R[rfw~o}T\"]","argumentnames":"[\"op1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ba6":{"opcode":"argument_reporter_string_number","next":null,"parent":"ax}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":true,"topLevel":false},"ax|":{"opcode":"data_changevariableby","next":"y|","parent":"ax{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"y|":{"opcode":"control_if","next":"y}","parent":"ax|","inputs":{"CONDITION":[2,"ax~"],"SUBSTACK":[2,"o}"]},"fields":{},"shadow":false,"topLevel":false},"ax~":{"opcode":"operator_lt","next":null,"parent":"y|","inputs":{"OPERAND1":[3,"ba7",[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"ba7":{"opcode":"argument_reporter_string_number","next":null,"parent":"ax~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"o}":{"opcode":"control_if_else","next":"ba8","parent":"y|","inputs":{"CONDITION":[2,"aya"],"SUBSTACK":[2,"o~"],"SUBSTACK2":[2,"y~"]},"fields":{},"shadow":false,"topLevel":false},"aya":{"opcode":"operator_lt","next":null,"parent":"o}","inputs":{"OPERAND1":[3,"ayb",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ayb":{"opcode":"operator_mod","next":null,"parent":"aya","inputs":{"NUM1":[3,"ba9",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba9":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"o~":{"opcode":"control_if_else","next":"ba!","parent":"o}","inputs":{"CONDITION":[2,"ayc"],"SUBSTACK":[2,"za"],"SUBSTACK2":[2,"zb"]},"fields":{},"shadow":false,"topLevel":false},"ayc":{"opcode":"operator_lt","next":null,"parent":"o~","inputs":{"OPERAND1":[3,"ayd",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ayd":{"opcode":"operator_mod","next":null,"parent":"ayc","inputs":{"NUM1":[3,"ba#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba#":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayd","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"za":{"opcode":"control_if","next":"zc","parent":"o~","inputs":{"CONDITION":[2,"aye"],"SUBSTACK":[2,"ayf"]},"fields":{},"shadow":false,"topLevel":false},"aye":{"opcode":"operator_equals","next":null,"parent":"za","inputs":{"OPERAND1":[3,"ayg",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ayg":{"opcode":"operator_mod","next":null,"parent":"aye","inputs":{"NUM1":[3,"ba%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba%":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayf":{"opcode":"procedures_call","next":"ba(","parent":"za","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"ba(":{"opcode":"control_stop","next":null,"parent":"ayf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zc":{"opcode":"control_if","next":"zd","parent":"za","inputs":{"CONDITION":[2,"ayh"],"SUBSTACK":[2,"ayi"]},"fields":{},"shadow":false,"topLevel":false},"ayh":{"opcode":"operator_equals","next":null,"parent":"zc","inputs":{"OPERAND1":[3,"ayj",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ayj":{"opcode":"operator_mod","next":null,"parent":"ayh","inputs":{"NUM1":[3,"ba)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba)":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayi":{"opcode":"procedures_call","next":"ba*","parent":"zc","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,[10,"7"]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"ba*":{"opcode":"control_stop","next":null,"parent":"ayi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zd":{"opcode":"control_if","next":"ayk","parent":"zc","inputs":{"CONDITION":[2,"ayl"],"SUBSTACK":[2,"aym"]},"fields":{},"shadow":false,"topLevel":false},"ayl":{"opcode":"operator_equals","next":null,"parent":"zd","inputs":{"OPERAND1":[3,"ayn",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ayn":{"opcode":"operator_mod","next":null,"parent":"ayl","inputs":{"NUM1":[3,"ba+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba+":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayn","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aym":{"opcode":"procedures_call","next":"ba,","parent":"zd","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"1"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"ba,":{"opcode":"control_stop","next":null,"parent":"aym","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayk":{"opcode":"data_changevariableby","next":"ba-","parent":"zd","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"ba-":{"opcode":"control_stop","next":null,"parent":"ayk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zb":{"opcode":"control_if","next":"ze","parent":"o~","inputs":{"CONDITION":[2,"ayo"],"SUBSTACK":[2,"ayp"]},"fields":{},"shadow":false,"topLevel":false},"ayo":{"opcode":"operator_equals","next":null,"parent":"zb","inputs":{"OPERAND1":[3,"ayq",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ayq":{"opcode":"operator_mod","next":null,"parent":"ayo","inputs":{"NUM1":[3,"ba.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba.":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayp":{"opcode":"procedures_call","next":"ba/","parent":"zb","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"0"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"ba/":{"opcode":"control_stop","next":null,"parent":"ayp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ze":{"opcode":"control_if","next":"zf","parent":"zb","inputs":{"CONDITION":[2,"ayr"],"SUBSTACK":[2,"ays"]},"fields":{},"shadow":false,"topLevel":false},"ayr":{"opcode":"operator_equals","next":null,"parent":"ze","inputs":{"OPERAND1":[3,"ayt",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ayt":{"opcode":"operator_mod","next":null,"parent":"ayr","inputs":{"NUM1":[3,"ba:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba:":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayt","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ays":{"opcode":"procedures_call","next":"ba;","parent":"ze","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"0"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"ba;":{"opcode":"control_stop","next":null,"parent":"ays","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zf":{"opcode":"control_if","next":"ba=","parent":"ze","inputs":{"CONDITION":[2,"ayu"],"SUBSTACK":[2,"ayv"]},"fields":{},"shadow":false,"topLevel":false},"ayu":{"opcode":"operator_equals","next":null,"parent":"zf","inputs":{"OPERAND1":[3,"ayw",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ayw":{"opcode":"operator_mod","next":null,"parent":"ayu","inputs":{"NUM1":[3,"ba?",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba?":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayw","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayv":{"opcode":"procedures_call","next":"ba@","parent":"zf","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"ba@":{"opcode":"control_stop","next":null,"parent":"ayv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ba=":{"opcode":"procedures_call","next":null,"parent":"zf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","warp":"true"}},"ba!":{"opcode":"control_stop","next":null,"parent":"o~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"y~":{"opcode":"control_if_else","next":null,"parent":"o}","inputs":{"CONDITION":[2,"ayx"],"SUBSTACK":[2,"zg"],"SUBSTACK2":[2,"zh"]},"fields":{},"shadow":false,"topLevel":false},"ayx":{"opcode":"operator_lt","next":null,"parent":"y~","inputs":{"OPERAND1":[3,"ayy",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ayy":{"opcode":"operator_mod","next":null,"parent":"ayx","inputs":{"NUM1":[3,"ba[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayy","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zg":{"opcode":"control_if","next":"zi","parent":"y~","inputs":{"CONDITION":[2,"ayz"],"SUBSTACK":[2,"ayA"]},"fields":{},"shadow":false,"topLevel":false},"ayz":{"opcode":"operator_equals","next":null,"parent":"zg","inputs":{"OPERAND1":[3,"ayB",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ayB":{"opcode":"operator_mod","next":null,"parent":"ayz","inputs":{"NUM1":[3,"ba]",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayA":{"opcode":"procedures_call","next":"ba^","parent":"zg","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"ba^":{"opcode":"control_stop","next":null,"parent":"ayA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zi":{"opcode":"control_if","next":"zj","parent":"zg","inputs":{"CONDITION":[2,"ayC"],"SUBSTACK":[2,"ayD"]},"fields":{},"shadow":false,"topLevel":false},"ayC":{"opcode":"operator_equals","next":null,"parent":"zi","inputs":{"OPERAND1":[3,"ayE",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ayE":{"opcode":"operator_mod","next":null,"parent":"ayC","inputs":{"NUM1":[3,"ba_",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba_":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayE","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayD":{"opcode":"procedures_call","next":"ba`","parent":"zi","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","warp":"true"}},"ba`":{"opcode":"control_stop","next":null,"parent":"ayD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zj":{"opcode":"control_if","next":"ayF","parent":"zi","inputs":{"CONDITION":[2,"ayG"],"SUBSTACK":[2,"ayH"]},"fields":{},"shadow":false,"topLevel":false},"ayG":{"opcode":"operator_equals","next":null,"parent":"zj","inputs":{"OPERAND1":[3,"ayI",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"ayI":{"opcode":"operator_mod","next":null,"parent":"ayG","inputs":{"NUM1":[3,"ba{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba{":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayH":{"opcode":"procedures_call","next":"ba|","parent":"zj","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"1"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"ba|":{"opcode":"control_stop","next":null,"parent":"ayH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayF":{"opcode":"data_changevariableby","next":"ba}","parent":"zj","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"ba}":{"opcode":"control_stop","next":null,"parent":"ayF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zh":{"opcode":"control_if","next":"zk","parent":"y~","inputs":{"CONDITION":[2,"ayJ"],"SUBSTACK":[2,"ayK"]},"fields":{},"shadow":false,"topLevel":false},"ayJ":{"opcode":"operator_equals","next":null,"parent":"zh","inputs":{"OPERAND1":[3,"ayL",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ayL":{"opcode":"operator_mod","next":null,"parent":"ayJ","inputs":{"NUM1":[3,"ba~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ba~":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayK":{"opcode":"procedures_call","next":"bba","parent":"zh","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"1"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bba":{"opcode":"control_stop","next":null,"parent":"ayK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zk":{"opcode":"control_if","next":"zl","parent":"zh","inputs":{"CONDITION":[2,"ayM"],"SUBSTACK":[2,"ayN"]},"fields":{},"shadow":false,"topLevel":false},"ayM":{"opcode":"operator_equals","next":null,"parent":"zk","inputs":{"OPERAND1":[3,"ayO",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ayO":{"opcode":"operator_mod","next":null,"parent":"ayM","inputs":{"NUM1":[3,"bbb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbb":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayO","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayN":{"opcode":"procedures_call","next":"bbc","parent":"zk","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"1"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bbc":{"opcode":"control_stop","next":null,"parent":"ayN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zl":{"opcode":"control_if","next":"bbd","parent":"zk","inputs":{"CONDITION":[2,"ayP"],"SUBSTACK":[2,"ayQ"]},"fields":{},"shadow":false,"topLevel":false},"ayP":{"opcode":"operator_equals","next":null,"parent":"zl","inputs":{"OPERAND1":[3,"ayR",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"ayR":{"opcode":"operator_mod","next":null,"parent":"ayP","inputs":{"NUM1":[3,"bbe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbe":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayR","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayQ":{"opcode":"procedures_call","next":"bbf","parent":"zl","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bbf":{"opcode":"control_stop","next":null,"parent":"ayQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bbd":{"opcode":"procedures_call","next":null,"parent":"zl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","warp":"true"}},"ba8":{"opcode":"control_stop","next":null,"parent":"o}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"y}":{"opcode":"control_if","next":"zm","parent":"y|","inputs":{"CONDITION":[2,"ayS"],"SUBSTACK":[2,"pa"]},"fields":{},"shadow":false,"topLevel":false},"ayS":{"opcode":"operator_lt","next":null,"parent":"y}","inputs":{"OPERAND1":[3,"bbg",[10,""]],"OPERAND2":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false},"bbg":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pa":{"opcode":"control_if_else","next":"bbh","parent":"y}","inputs":{"CONDITION":[2,"ayT"],"SUBSTACK":[2,"pb"],"SUBSTACK2":[2,"zn"]},"fields":{},"shadow":false,"topLevel":false},"ayT":{"opcode":"operator_lt","next":null,"parent":"pa","inputs":{"OPERAND1":[3,"ayU",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ayU":{"opcode":"operator_mod","next":null,"parent":"ayT","inputs":{"NUM1":[3,"bbi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbi":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayU","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pb":{"opcode":"control_if_else","next":"bbj","parent":"pa","inputs":{"CONDITION":[2,"ayV"],"SUBSTACK":[2,"zo"],"SUBSTACK2":[2,"zp"]},"fields":{},"shadow":false,"topLevel":false},"ayV":{"opcode":"operator_lt","next":null,"parent":"pb","inputs":{"OPERAND1":[3,"ayW",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ayW":{"opcode":"operator_mod","next":null,"parent":"ayV","inputs":{"NUM1":[3,"bbk",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbk":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayW","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zo":{"opcode":"control_if","next":"zq","parent":"pb","inputs":{"CONDITION":[2,"ayX"],"SUBSTACK":[2,"ayY"]},"fields":{},"shadow":false,"topLevel":false},"ayX":{"opcode":"operator_equals","next":null,"parent":"zo","inputs":{"OPERAND1":[3,"ayZ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ayZ":{"opcode":"operator_mod","next":null,"parent":"ayX","inputs":{"NUM1":[3,"bbl",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbl":{"opcode":"argument_reporter_string_number","next":null,"parent":"ayZ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ayY":{"opcode":"procedures_call","next":"bbm","parent":"zo","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"bbm":{"opcode":"control_stop","next":null,"parent":"ayY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zq":{"opcode":"control_if","next":"zr","parent":"zo","inputs":{"CONDITION":[2,"ay0"],"SUBSTACK":[2,"ay1"]},"fields":{},"shadow":false,"topLevel":false},"ay0":{"opcode":"operator_equals","next":null,"parent":"zq","inputs":{"OPERAND1":[3,"ay2",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ay2":{"opcode":"operator_mod","next":null,"parent":"ay0","inputs":{"NUM1":[3,"bbn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbn":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay2","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay1":{"opcode":"procedures_call","next":"bbo","parent":"zq","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,[10,"7"]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"bbo":{"opcode":"control_stop","next":null,"parent":"ay1","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zr":{"opcode":"control_if","next":"ay3","parent":"zq","inputs":{"CONDITION":[2,"ay4"],"SUBSTACK":[2,"ay5"]},"fields":{},"shadow":false,"topLevel":false},"ay4":{"opcode":"operator_equals","next":null,"parent":"zr","inputs":{"OPERAND1":[3,"ay6",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ay6":{"opcode":"operator_mod","next":null,"parent":"ay4","inputs":{"NUM1":[3,"bbp",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbp":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay6","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay5":{"opcode":"procedures_call","next":"bbq","parent":"zr","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"3"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bbq":{"opcode":"control_stop","next":null,"parent":"ay5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ay3":{"opcode":"data_changevariableby","next":"bbr","parent":"zr","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bbr":{"opcode":"control_stop","next":null,"parent":"ay3","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zp":{"opcode":"control_if","next":"zs","parent":"pb","inputs":{"CONDITION":[2,"ay7"],"SUBSTACK":[2,"ay8"]},"fields":{},"shadow":false,"topLevel":false},"ay7":{"opcode":"operator_equals","next":null,"parent":"zp","inputs":{"OPERAND1":[3,"ay9",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ay9":{"opcode":"operator_mod","next":null,"parent":"ay7","inputs":{"NUM1":[3,"bbs",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbs":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay9","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay8":{"opcode":"procedures_call","next":"bbt","parent":"zp","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"2"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bbt":{"opcode":"control_stop","next":null,"parent":"ay8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zs":{"opcode":"control_if","next":"zt","parent":"zp","inputs":{"CONDITION":[2,"ay!"],"SUBSTACK":[2,"ay#"]},"fields":{},"shadow":false,"topLevel":false},"ay!":{"opcode":"operator_equals","next":null,"parent":"zs","inputs":{"OPERAND1":[3,"ay%",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ay%":{"opcode":"operator_mod","next":null,"parent":"ay!","inputs":{"NUM1":[3,"bbu",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbu":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay#":{"opcode":"procedures_call","next":"bbv","parent":"zs","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"2"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bbv":{"opcode":"control_stop","next":null,"parent":"ay#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zt":{"opcode":"control_if","next":"ay(","parent":"zs","inputs":{"CONDITION":[2,"ay)"],"SUBSTACK":[2,"ay*"]},"fields":{},"shadow":false,"topLevel":false},"ay)":{"opcode":"operator_equals","next":null,"parent":"zt","inputs":{"OPERAND1":[3,"ay+",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ay+":{"opcode":"operator_mod","next":null,"parent":"ay)","inputs":{"NUM1":[3,"bbw",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbw":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay+","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay*":{"opcode":"procedures_call","next":"bbx","parent":"zt","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bbx":{"opcode":"control_stop","next":null,"parent":"ay*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ay(":{"opcode":"procedures_call","next":null,"parent":"zt","inputs":{"lyJ3dc5LleeV*f/MqhBH":[2,"bby"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","warp":"true"}},"bby":{"opcode":"operator_not","next":null,"parent":"ay(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bbj":{"opcode":"control_stop","next":null,"parent":"pb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zn":{"opcode":"control_if_else","next":null,"parent":"pa","inputs":{"CONDITION":[2,"ay,"],"SUBSTACK":[2,"zu"],"SUBSTACK2":[2,"zv"]},"fields":{},"shadow":false,"topLevel":false},"ay,":{"opcode":"operator_lt","next":null,"parent":"zn","inputs":{"OPERAND1":[3,"ay-",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ay-":{"opcode":"operator_mod","next":null,"parent":"ay,","inputs":{"NUM1":[3,"bbz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbz":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zu":{"opcode":"control_if","next":"zw","parent":"zn","inputs":{"CONDITION":[2,"ay."],"SUBSTACK":[2,"ay/"]},"fields":{},"shadow":false,"topLevel":false},"ay.":{"opcode":"operator_equals","next":null,"parent":"zu","inputs":{"OPERAND1":[3,"ay:",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ay:":{"opcode":"operator_mod","next":null,"parent":"ay.","inputs":{"NUM1":[3,"bbA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbA":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay:","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay/":{"opcode":"procedures_call","next":"bbB","parent":"zu","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"bbB":{"opcode":"control_stop","next":null,"parent":"ay/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zw":{"opcode":"control_if","next":"zx","parent":"zu","inputs":{"CONDITION":[2,"ay;"],"SUBSTACK":[2,"ay="]},"fields":{},"shadow":false,"topLevel":false},"ay;":{"opcode":"operator_equals","next":null,"parent":"zw","inputs":{"OPERAND1":[3,"ay?",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ay?":{"opcode":"operator_mod","next":null,"parent":"ay;","inputs":{"NUM1":[3,"bbC",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbC":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay=":{"opcode":"procedures_call","next":"bbD","parent":"zw","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","warp":"true"}},"bbD":{"opcode":"control_stop","next":null,"parent":"ay=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zx":{"opcode":"control_if","next":"ay@","parent":"zw","inputs":{"CONDITION":[2,"ay["],"SUBSTACK":[2,"ay]"]},"fields":{},"shadow":false,"topLevel":false},"ay[":{"opcode":"operator_equals","next":null,"parent":"zx","inputs":{"OPERAND1":[3,"ay^",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"ay^":{"opcode":"operator_mod","next":null,"parent":"ay[","inputs":{"NUM1":[3,"bbE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbE":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay]":{"opcode":"procedures_call","next":"bbF","parent":"zx","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"3"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bbF":{"opcode":"control_stop","next":null,"parent":"ay]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ay@":{"opcode":"data_changevariableby","next":"bbG","parent":"zx","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bbG":{"opcode":"control_stop","next":null,"parent":"ay@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zv":{"opcode":"control_if","next":"zy","parent":"zn","inputs":{"CONDITION":[2,"ay_"],"SUBSTACK":[2,"ay`"]},"fields":{},"shadow":false,"topLevel":false},"ay_":{"opcode":"operator_equals","next":null,"parent":"zv","inputs":{"OPERAND1":[3,"ay{",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ay{":{"opcode":"operator_mod","next":null,"parent":"ay_","inputs":{"NUM1":[3,"bbH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbH":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay{","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay`":{"opcode":"procedures_call","next":"bbI","parent":"zv","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"3"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bbI":{"opcode":"control_stop","next":null,"parent":"ay`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zy":{"opcode":"control_if","next":"zz","parent":"zv","inputs":{"CONDITION":[2,"ay|"],"SUBSTACK":[2,"ay}"]},"fields":{},"shadow":false,"topLevel":false},"ay|":{"opcode":"operator_equals","next":null,"parent":"zy","inputs":{"OPERAND1":[3,"ay~",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ay~":{"opcode":"operator_mod","next":null,"parent":"ay|","inputs":{"NUM1":[3,"bbJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"ay~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ay}":{"opcode":"procedures_call","next":"bbK","parent":"zy","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"3"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bbK":{"opcode":"control_stop","next":null,"parent":"ay}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zz":{"opcode":"control_if","next":"aza","parent":"zy","inputs":{"CONDITION":[2,"azb"],"SUBSTACK":[2,"azc"]},"fields":{},"shadow":false,"topLevel":false},"azb":{"opcode":"operator_equals","next":null,"parent":"zz","inputs":{"OPERAND1":[3,"azd",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"azd":{"opcode":"operator_mod","next":null,"parent":"azb","inputs":{"NUM1":[3,"bbL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbL":{"opcode":"argument_reporter_string_number","next":null,"parent":"azd","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azc":{"opcode":"procedures_call","next":"bbM","parent":"zz","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bbM":{"opcode":"control_stop","next":null,"parent":"azc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aza":{"opcode":"procedures_call","next":null,"parent":"zz","inputs":{"f%{;w~N|GRSB$;Wt6u{t":[2,"bbN"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","warp":"true"}},"bbN":{"opcode":"operator_not","next":null,"parent":"aza","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bbh":{"opcode":"control_stop","next":null,"parent":"pa","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zm":{"opcode":"control_if","next":"zA","parent":"y}","inputs":{"CONDITION":[2,"aze"],"SUBSTACK":[2,"pc"]},"fields":{},"shadow":false,"topLevel":false},"aze":{"opcode":"operator_lt","next":null,"parent":"zm","inputs":{"OPERAND1":[3,"bbO",[10,""]],"OPERAND2":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"bbO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aze","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pc":{"opcode":"control_if_else","next":"bbP","parent":"zm","inputs":{"CONDITION":[2,"azf"],"SUBSTACK":[2,"pd"],"SUBSTACK2":[2,"zB"]},"fields":{},"shadow":false,"topLevel":false},"azf":{"opcode":"operator_lt","next":null,"parent":"pc","inputs":{"OPERAND1":[3,"azg",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"azg":{"opcode":"operator_mod","next":null,"parent":"azf","inputs":{"NUM1":[3,"bbQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"azg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pd":{"opcode":"control_if_else","next":"bbR","parent":"pc","inputs":{"CONDITION":[2,"azh"],"SUBSTACK":[2,"zC"],"SUBSTACK2":[2,"zD"]},"fields":{},"shadow":false,"topLevel":false},"azh":{"opcode":"operator_lt","next":null,"parent":"pd","inputs":{"OPERAND1":[3,"azi",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"azi":{"opcode":"operator_mod","next":null,"parent":"azh","inputs":{"NUM1":[3,"bbS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbS":{"opcode":"argument_reporter_string_number","next":null,"parent":"azi","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zC":{"opcode":"control_if","next":"zE","parent":"pd","inputs":{"CONDITION":[2,"azj"],"SUBSTACK":[2,"azk"]},"fields":{},"shadow":false,"topLevel":false},"azj":{"opcode":"operator_equals","next":null,"parent":"zC","inputs":{"OPERAND1":[3,"azl",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"azl":{"opcode":"operator_mod","next":null,"parent":"azj","inputs":{"NUM1":[3,"bbT",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbT":{"opcode":"argument_reporter_string_number","next":null,"parent":"azl","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azk":{"opcode":"procedures_call","next":"bbU","parent":"zC","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"bbU":{"opcode":"control_stop","next":null,"parent":"azk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zE":{"opcode":"control_if","next":"zF","parent":"zC","inputs":{"CONDITION":[2,"azm"],"SUBSTACK":[2,"azn"]},"fields":{},"shadow":false,"topLevel":false},"azm":{"opcode":"operator_equals","next":null,"parent":"zE","inputs":{"OPERAND1":[3,"azo",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"azo":{"opcode":"operator_mod","next":null,"parent":"azm","inputs":{"NUM1":[3,"bbV",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbV":{"opcode":"argument_reporter_string_number","next":null,"parent":"azo","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azn":{"opcode":"procedures_call","next":"bbW","parent":"zE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SHLD","argumentids":"[]","warp":"true"}},"bbW":{"opcode":"control_stop","next":null,"parent":"azn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zF":{"opcode":"control_if","next":"azp","parent":"zE","inputs":{"CONDITION":[2,"azq"],"SUBSTACK":[2,"azr"]},"fields":{},"shadow":false,"topLevel":false},"azq":{"opcode":"operator_equals","next":null,"parent":"zF","inputs":{"OPERAND1":[3,"azs",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"azs":{"opcode":"operator_mod","next":null,"parent":"azq","inputs":{"NUM1":[3,"bbX",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bbX":{"opcode":"argument_reporter_string_number","next":null,"parent":"azs","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azr":{"opcode":"procedures_call","next":"bbY","parent":"zF","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"5"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bbY":{"opcode":"control_stop","next":null,"parent":"azr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"azp":{"opcode":"data_changevariableby","next":"bbZ","parent":"zF","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bbZ":{"opcode":"control_stop","next":null,"parent":"azp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zD":{"opcode":"control_if","next":"zG","parent":"pd","inputs":{"CONDITION":[2,"azt"],"SUBSTACK":[2,"azu"]},"fields":{},"shadow":false,"topLevel":false},"azt":{"opcode":"operator_equals","next":null,"parent":"zD","inputs":{"OPERAND1":[3,"azv",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"azv":{"opcode":"operator_mod","next":null,"parent":"azt","inputs":{"NUM1":[3,"bb0",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb0":{"opcode":"argument_reporter_string_number","next":null,"parent":"azv","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azu":{"opcode":"procedures_call","next":"bb1","parent":"zD","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"4"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bb1":{"opcode":"control_stop","next":null,"parent":"azu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zG":{"opcode":"control_if","next":"zH","parent":"zD","inputs":{"CONDITION":[2,"azw"],"SUBSTACK":[2,"azx"]},"fields":{},"shadow":false,"topLevel":false},"azw":{"opcode":"operator_equals","next":null,"parent":"zG","inputs":{"OPERAND1":[3,"azy",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"azy":{"opcode":"operator_mod","next":null,"parent":"azw","inputs":{"NUM1":[3,"bb2",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb2":{"opcode":"argument_reporter_string_number","next":null,"parent":"azy","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azx":{"opcode":"procedures_call","next":"bb3","parent":"zG","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"4"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bb3":{"opcode":"control_stop","next":null,"parent":"azx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zH":{"opcode":"control_if","next":"bb4","parent":"zG","inputs":{"CONDITION":[2,"azz"],"SUBSTACK":[2,"azA"]},"fields":{},"shadow":false,"topLevel":false},"azz":{"opcode":"operator_equals","next":null,"parent":"zH","inputs":{"OPERAND1":[3,"azB",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"azB":{"opcode":"operator_mod","next":null,"parent":"azz","inputs":{"NUM1":[3,"bb5",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb5":{"opcode":"argument_reporter_string_number","next":null,"parent":"azB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azA":{"opcode":"procedures_call","next":"bb6","parent":"zH","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bb6":{"opcode":"control_stop","next":null,"parent":"azA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bb4":{"opcode":"procedures_call","next":null,"parent":"zH","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAA","argumentids":"[]","warp":"true"}},"bbR":{"opcode":"control_stop","next":null,"parent":"pd","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zB":{"opcode":"control_if_else","next":null,"parent":"pc","inputs":{"CONDITION":[2,"azC"],"SUBSTACK":[2,"zI"],"SUBSTACK2":[2,"zJ"]},"fields":{},"shadow":false,"topLevel":false},"azC":{"opcode":"operator_lt","next":null,"parent":"zB","inputs":{"OPERAND1":[3,"azD",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"azD":{"opcode":"operator_mod","next":null,"parent":"azC","inputs":{"NUM1":[3,"bb7",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb7":{"opcode":"argument_reporter_string_number","next":null,"parent":"azD","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zI":{"opcode":"control_if","next":"zK","parent":"zB","inputs":{"CONDITION":[2,"azE"],"SUBSTACK":[2,"azF"]},"fields":{},"shadow":false,"topLevel":false},"azE":{"opcode":"operator_equals","next":null,"parent":"zI","inputs":{"OPERAND1":[3,"azG",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"azG":{"opcode":"operator_mod","next":null,"parent":"azE","inputs":{"NUM1":[3,"bb8",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb8":{"opcode":"argument_reporter_string_number","next":null,"parent":"azG","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azF":{"opcode":"procedures_call","next":"bb9","parent":"zI","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"bb9":{"opcode":"control_stop","next":null,"parent":"azF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zK":{"opcode":"control_if","next":"zL","parent":"zI","inputs":{"CONDITION":[2,"azH"],"SUBSTACK":[2,"azI"]},"fields":{},"shadow":false,"topLevel":false},"azH":{"opcode":"operator_equals","next":null,"parent":"zK","inputs":{"OPERAND1":[3,"azJ",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"azJ":{"opcode":"operator_mod","next":null,"parent":"azH","inputs":{"NUM1":[3,"bb!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb!":{"opcode":"argument_reporter_string_number","next":null,"parent":"azJ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azI":{"opcode":"procedures_call","next":"bb#","parent":"zK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LHLD","argumentids":"[]","warp":"true"}},"bb#":{"opcode":"control_stop","next":null,"parent":"azI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zL":{"opcode":"control_if","next":"azK","parent":"zK","inputs":{"CONDITION":[2,"azL"],"SUBSTACK":[2,"azM"]},"fields":{},"shadow":false,"topLevel":false},"azL":{"opcode":"operator_equals","next":null,"parent":"zL","inputs":{"OPERAND1":[3,"azN",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"azN":{"opcode":"operator_mod","next":null,"parent":"azL","inputs":{"NUM1":[3,"bb%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb%":{"opcode":"argument_reporter_string_number","next":null,"parent":"azN","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azM":{"opcode":"procedures_call","next":"bb(","parent":"zL","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"5"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bb(":{"opcode":"control_stop","next":null,"parent":"azM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"azK":{"opcode":"data_changevariableby","next":"bb)","parent":"zL","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bb)":{"opcode":"control_stop","next":null,"parent":"azK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zJ":{"opcode":"control_if","next":"zM","parent":"zB","inputs":{"CONDITION":[2,"azO"],"SUBSTACK":[2,"azP"]},"fields":{},"shadow":false,"topLevel":false},"azO":{"opcode":"operator_equals","next":null,"parent":"zJ","inputs":{"OPERAND1":[3,"azQ",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"azQ":{"opcode":"operator_mod","next":null,"parent":"azO","inputs":{"NUM1":[3,"bb*",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb*":{"opcode":"argument_reporter_string_number","next":null,"parent":"azQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azP":{"opcode":"procedures_call","next":"bb+","parent":"zJ","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"5"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bb+":{"opcode":"control_stop","next":null,"parent":"azP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zM":{"opcode":"control_if","next":"zN","parent":"zJ","inputs":{"CONDITION":[2,"azR"],"SUBSTACK":[2,"azS"]},"fields":{},"shadow":false,"topLevel":false},"azR":{"opcode":"operator_equals","next":null,"parent":"zM","inputs":{"OPERAND1":[3,"azT",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"azT":{"opcode":"operator_mod","next":null,"parent":"azR","inputs":{"NUM1":[3,"bb,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb,":{"opcode":"argument_reporter_string_number","next":null,"parent":"azT","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azS":{"opcode":"procedures_call","next":"bb-","parent":"zM","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"5"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bb-":{"opcode":"control_stop","next":null,"parent":"azS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zN":{"opcode":"control_if","next":"Y|","parent":"zM","inputs":{"CONDITION":[2,"azU"],"SUBSTACK":[2,"azV"]},"fields":{},"shadow":false,"topLevel":false},"azU":{"opcode":"operator_equals","next":null,"parent":"zN","inputs":{"OPERAND1":[3,"azW",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"azW":{"opcode":"operator_mod","next":null,"parent":"azU","inputs":{"NUM1":[3,"bb.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb.":{"opcode":"argument_reporter_string_number","next":null,"parent":"azW","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"azV":{"opcode":"procedures_call","next":"bb/","parent":"zN","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bb/":{"opcode":"control_stop","next":null,"parent":"azV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y|":{"opcode":"data_replaceitemoflist","next":"bb:","parent":"zN","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"azX",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"azX":{"opcode":"data_itemoflist","next":null,"parent":"Y|","inputs":{"INDEX":[3,"azY",[7,"0"]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"azY":{"opcode":"operator_add","next":null,"parent":"azX","inputs":{"NUM1":[1,[4,"65281"]],"NUM2":[3,"bb;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bb;":{"opcode":"data_itemoflist","next":null,"parent":"azY","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bb:":{"opcode":"data_changevariableby","next":null,"parent":"Y|","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bbP":{"opcode":"control_stop","next":null,"parent":"pc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zA":{"opcode":"control_if","next":"zO","parent":"zm","inputs":{"CONDITION":[2,"azZ"],"SUBSTACK":[2,"pe"]},"fields":{},"shadow":false,"topLevel":false},"azZ":{"opcode":"operator_lt","next":null,"parent":"zA","inputs":{"OPERAND1":[3,"bb=",[10,""]],"OPERAND2":[1,[10,"0x40"]]},"fields":{},"shadow":false,"topLevel":false},"bb=":{"opcode":"argument_reporter_string_number","next":null,"parent":"azZ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pe":{"opcode":"control_if_else","next":"Y}","parent":"zA","inputs":{"CONDITION":[2,"az0"],"SUBSTACK":[2,"Rk"],"SUBSTACK2":[2,"zP"]},"fields":{},"shadow":false,"topLevel":false},"az0":{"opcode":"operator_lt","next":null,"parent":"pe","inputs":{"OPERAND1":[3,"az1",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"az1":{"opcode":"operator_mod","next":null,"parent":"az0","inputs":{"NUM1":[3,"bb?",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb?":{"opcode":"argument_reporter_string_number","next":null,"parent":"az1","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Rk":{"opcode":"control_if","next":"zQ","parent":"pe","inputs":{"CONDITION":[2,"az2"],"SUBSTACK":[2,"zR"]},"fields":{},"shadow":false,"topLevel":false},"az2":{"opcode":"operator_lt","next":null,"parent":"Rk","inputs":{"OPERAND1":[3,"az3",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"az3":{"opcode":"operator_mod","next":null,"parent":"az2","inputs":{"NUM1":[3,"bb@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb@":{"opcode":"argument_reporter_string_number","next":null,"parent":"az3","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zR":{"opcode":"control_if","next":"zS","parent":"Rk","inputs":{"CONDITION":[2,"az4"],"SUBSTACK":[2,"az5"]},"fields":{},"shadow":false,"topLevel":false},"az4":{"opcode":"operator_equals","next":null,"parent":"zR","inputs":{"OPERAND1":[3,"az6",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"az6":{"opcode":"operator_mod","next":null,"parent":"az4","inputs":{"NUM1":[3,"bb[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb[":{"opcode":"argument_reporter_string_number","next":null,"parent":"az6","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az5":{"opcode":"procedures_call","next":"bb]","parent":"zR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI SP","argumentids":"[]","warp":"true"}},"bb]":{"opcode":"control_stop","next":null,"parent":"az5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zS":{"opcode":"control_if","next":"zT","parent":"zR","inputs":{"CONDITION":[2,"az7"],"SUBSTACK":[2,"az8"]},"fields":{},"shadow":false,"topLevel":false},"az7":{"opcode":"operator_equals","next":null,"parent":"zS","inputs":{"OPERAND1":[3,"az9",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"az9":{"opcode":"operator_mod","next":null,"parent":"az7","inputs":{"NUM1":[3,"bb^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb^":{"opcode":"argument_reporter_string_number","next":null,"parent":"az9","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az8":{"opcode":"procedures_call","next":"bb_","parent":"zS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"STA","argumentids":"[]","warp":"true"}},"bb_":{"opcode":"control_stop","next":null,"parent":"az8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zT":{"opcode":"control_if","next":"az!","parent":"zS","inputs":{"CONDITION":[2,"az#"],"SUBSTACK":[2,"Y~"]},"fields":{},"shadow":false,"topLevel":false},"az#":{"opcode":"operator_equals","next":null,"parent":"zT","inputs":{"OPERAND1":[3,"az%",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"az%":{"opcode":"operator_mod","next":null,"parent":"az#","inputs":{"NUM1":[3,"bb`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb`":{"opcode":"argument_reporter_string_number","next":null,"parent":"az%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Y~":{"opcode":"data_setvariableto","next":"az(","parent":"zT","inputs":{"VALUE":[3,"az)",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"az)":{"opcode":"operator_mod","next":null,"parent":"Y~","inputs":{"NUM1":[3,"bb{",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bb{":{"opcode":"operator_add","next":null,"parent":"az)","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"az(":{"opcode":"data_changevariableby","next":"bb|","parent":"Y~","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bb|":{"opcode":"control_stop","next":null,"parent":"az(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"az!":{"opcode":"data_changevariableby","next":"bb}","parent":"zT","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bb}":{"opcode":"control_stop","next":null,"parent":"az!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zQ":{"opcode":"control_if","next":"zU","parent":"Rk","inputs":{"CONDITION":[2,"az*"],"SUBSTACK":[2,"az+"]},"fields":{},"shadow":false,"topLevel":false},"az*":{"opcode":"operator_equals","next":null,"parent":"zQ","inputs":{"OPERAND1":[3,"az,",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"az,":{"opcode":"operator_mod","next":null,"parent":"az*","inputs":{"NUM1":[3,"bb~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bb~":{"opcode":"argument_reporter_string_number","next":null,"parent":"az,","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az+":{"opcode":"procedures_call","next":"bca","parent":"zQ","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"6"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bca":{"opcode":"control_stop","next":null,"parent":"az+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zU":{"opcode":"control_if","next":"zV","parent":"zQ","inputs":{"CONDITION":[2,"az-"],"SUBSTACK":[2,"az."]},"fields":{},"shadow":false,"topLevel":false},"az-":{"opcode":"operator_equals","next":null,"parent":"zU","inputs":{"OPERAND1":[3,"az/",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"az/":{"opcode":"operator_mod","next":null,"parent":"az-","inputs":{"NUM1":[3,"bcb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcb":{"opcode":"argument_reporter_string_number","next":null,"parent":"az/","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az.":{"opcode":"procedures_call","next":"bcc","parent":"zU","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"6"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bcc":{"opcode":"control_stop","next":null,"parent":"az.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zV":{"opcode":"control_if","next":"az:","parent":"zU","inputs":{"CONDITION":[2,"az;"],"SUBSTACK":[2,"az="]},"fields":{},"shadow":false,"topLevel":false},"az;":{"opcode":"operator_equals","next":null,"parent":"zV","inputs":{"OPERAND1":[3,"az?",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"az?":{"opcode":"operator_mod","next":null,"parent":"az;","inputs":{"NUM1":[3,"bcd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcd":{"opcode":"argument_reporter_string_number","next":null,"parent":"az?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az=":{"opcode":"procedures_call","next":"bce","parent":"zV","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bce":{"opcode":"control_stop","next":null,"parent":"az=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"az:":{"opcode":"data_replaceitemoflist","next":"az@","parent":"zV","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"az@":{"opcode":"data_changevariableby","next":"bcf","parent":"az:","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bcf":{"opcode":"control_stop","next":null,"parent":"az@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zP":{"opcode":"control_if_else","next":null,"parent":"pe","inputs":{"CONDITION":[2,"az["],"SUBSTACK":[2,"zW"],"SUBSTACK2":[2,"zX"]},"fields":{},"shadow":false,"topLevel":false},"az[":{"opcode":"operator_lt","next":null,"parent":"zP","inputs":{"OPERAND1":[3,"az]",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"az]":{"opcode":"operator_mod","next":null,"parent":"az[","inputs":{"NUM1":[3,"bcg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcg":{"opcode":"argument_reporter_string_number","next":null,"parent":"az]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"zW":{"opcode":"control_if","next":"zY","parent":"zP","inputs":{"CONDITION":[2,"az^"],"SUBSTACK":[2,"az_"]},"fields":{},"shadow":false,"topLevel":false},"az^":{"opcode":"operator_equals","next":null,"parent":"zW","inputs":{"OPERAND1":[3,"az`",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"az`":{"opcode":"operator_mod","next":null,"parent":"az^","inputs":{"NUM1":[3,"bch",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bch":{"opcode":"argument_reporter_string_number","next":null,"parent":"az`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az_":{"opcode":"procedures_call","next":"bci","parent":"zW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD SP","argumentids":"[]","warp":"true"}},"bci":{"opcode":"control_stop","next":null,"parent":"az_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zY":{"opcode":"control_if","next":"zZ","parent":"zW","inputs":{"CONDITION":[2,"az{"],"SUBSTACK":[2,"az|"]},"fields":{},"shadow":false,"topLevel":false},"az{":{"opcode":"operator_equals","next":null,"parent":"zY","inputs":{"OPERAND1":[3,"az}",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"az}":{"opcode":"operator_mod","next":null,"parent":"az{","inputs":{"NUM1":[3,"bcj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcj":{"opcode":"argument_reporter_string_number","next":null,"parent":"az}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"az|":{"opcode":"procedures_call","next":"bck","parent":"zY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDA","argumentids":"[]","warp":"true"}},"bck":{"opcode":"control_stop","next":null,"parent":"az|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zZ":{"opcode":"control_if","next":"az~","parent":"zY","inputs":{"CONDITION":[2,"aAa"],"SUBSTACK":[2,"Za"]},"fields":{},"shadow":false,"topLevel":false},"aAa":{"opcode":"operator_equals","next":null,"parent":"zZ","inputs":{"OPERAND1":[3,"aAb",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aAb":{"opcode":"operator_mod","next":null,"parent":"aAa","inputs":{"NUM1":[3,"bcl",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcl":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Za":{"opcode":"data_setvariableto","next":"aAc","parent":"zZ","inputs":{"VALUE":[3,"aAd",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aAd":{"opcode":"operator_mod","next":null,"parent":"Za","inputs":{"NUM1":[3,"bcm",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bcm":{"opcode":"operator_subtract","next":null,"parent":"aAd","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAc":{"opcode":"data_changevariableby","next":"bcn","parent":"Za","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bcn":{"opcode":"control_stop","next":null,"parent":"aAc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"az~":{"opcode":"data_changevariableby","next":"bco","parent":"zZ","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bco":{"opcode":"control_stop","next":null,"parent":"az~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zX":{"opcode":"control_if","next":"z0","parent":"zP","inputs":{"CONDITION":[2,"aAe"],"SUBSTACK":[2,"aAf"]},"fields":{},"shadow":false,"topLevel":false},"aAe":{"opcode":"operator_equals","next":null,"parent":"zX","inputs":{"OPERAND1":[3,"aAg",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aAg":{"opcode":"operator_mod","next":null,"parent":"aAe","inputs":{"NUM1":[3,"bcp",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcp":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAf":{"opcode":"procedures_call","next":"bcq","parent":"zX","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"7"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bcq":{"opcode":"control_stop","next":null,"parent":"aAf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z0":{"opcode":"control_if","next":"OP","parent":"zX","inputs":{"CONDITION":[2,"aAh"],"SUBSTACK":[2,"aAi"]},"fields":{},"shadow":false,"topLevel":false},"aAh":{"opcode":"operator_equals","next":null,"parent":"z0","inputs":{"OPERAND1":[3,"aAj",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aAj":{"opcode":"operator_mod","next":null,"parent":"aAh","inputs":{"NUM1":[3,"bcr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAi":{"opcode":"procedures_call","next":"bcs","parent":"z0","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"7"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bcs":{"opcode":"control_stop","next":null,"parent":"aAi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"OP":{"opcode":"control_if","next":null,"parent":"z0","inputs":{"CONDITION":[2,"aAk"],"SUBSTACK":[2,"aAl"]},"fields":{},"shadow":false,"topLevel":false},"aAk":{"opcode":"operator_equals","next":null,"parent":"OP","inputs":{"OPERAND1":[3,"aAm",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aAm":{"opcode":"operator_mod","next":null,"parent":"aAk","inputs":{"NUM1":[3,"bct",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bct":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAm","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAl":{"opcode":"procedures_call","next":"bcu","parent":"OP","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bcu":{"opcode":"control_stop","next":null,"parent":"aAl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y}":{"opcode":"data_replaceitemoflist","next":"aAn","parent":"pe","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aAo",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aAo":{"opcode":"operator_add","next":null,"parent":"Y}","inputs":{"NUM1":[3,"aAp",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aAp":{"opcode":"operator_equals","next":null,"parent":"aAo","inputs":{"OPERAND1":[3,"bcv",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcv":{"opcode":"data_itemoflist","next":null,"parent":"aAp","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aAn":{"opcode":"data_changevariableby","next":"bcw","parent":"Y}","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bcw":{"opcode":"control_stop","next":null,"parent":"aAn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"zO":{"opcode":"control_if","next":"z1","parent":"zA","inputs":{"CONDITION":[2,"aAq"],"SUBSTACK":[2,"OQ"]},"fields":{},"shadow":false,"topLevel":false},"aAq":{"opcode":"operator_lt","next":null,"parent":"zO","inputs":{"OPERAND1":[3,"bcx",[10,""]],"OPERAND2":[1,[10,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"bcx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"OQ":{"opcode":"control_if_else","next":"bcy","parent":"zO","inputs":{"CONDITION":[2,"aAr"],"SUBSTACK":[2,"aAs"],"SUBSTACK2":[2,"aAt"]},"fields":{},"shadow":false,"topLevel":false},"aAr":{"opcode":"operator_equals","next":null,"parent":"OQ","inputs":{"OPERAND1":[3,"bcz",[10,""]],"OPERAND2":[1,[10,"0x76"]]},"fields":{},"shadow":false,"topLevel":false},"bcz":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAr","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAs":{"opcode":"data_changevariableby","next":"aAu","parent":"OQ","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aAu":{"opcode":"control_stop","next":"aAv","parent":"aAs","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aAv":{"opcode":"sensing_askandwait","next":"bcA","parent":"aAu","inputs":{"QUESTION":[1,[10,"HALT 0x76"]]},"fields":{},"shadow":false,"topLevel":false},"bcA":{"opcode":"event_broadcast","next":null,"parent":"aAv","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aAt":{"opcode":"procedures_call","next":null,"parent":"OQ","inputs":{":/}9?76_i(ESE2kcL]C}":[3,"aAw",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV %s","argumentids":"[\":/}9?76_i(ESE2kcL]C}\"]","warp":"true"}},"aAw":{"opcode":"operator_subtract","next":null,"parent":"aAt","inputs":{"NUM1":[3,"bcB",[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bcB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAw","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bcy":{"opcode":"control_stop","next":null,"parent":"OQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z1":{"opcode":"control_if","next":"z2","parent":"zO","inputs":{"CONDITION":[2,"aAx"],"SUBSTACK":[2,"pf"]},"fields":{},"shadow":false,"topLevel":false},"aAx":{"opcode":"operator_lt","next":null,"parent":"z1","inputs":{"OPERAND1":[3,"bcC",[10,""]],"OPERAND2":[1,[10,"0x90"]]},"fields":{},"shadow":false,"topLevel":false},"bcC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAx","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pf":{"opcode":"control_if_else","next":"bcD","parent":"z1","inputs":{"CONDITION":[2,"aAy"],"SUBSTACK":[2,"aAz"],"SUBSTACK2":[2,"aAA"]},"fields":{},"shadow":false,"topLevel":false},"aAy":{"opcode":"operator_lt","next":null,"parent":"pf","inputs":{"OPERAND1":[3,"aAB",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aAB":{"opcode":"operator_mod","next":null,"parent":"aAy","inputs":{"NUM1":[3,"bcE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAz":{"opcode":"procedures_call","next":null,"parent":"pf","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[3,"aAC",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","warp":"true"}},"aAC":{"opcode":"operator_mod","next":null,"parent":"aAz","inputs":{"NUM1":[3,"bcF",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAA":{"opcode":"procedures_call","next":null,"parent":"pf","inputs":{"g~W%j(pxt{obs8]2L|in":[3,"aAD",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","warp":"true"}},"aAD":{"opcode":"operator_mod","next":null,"parent":"aAA","inputs":{"NUM1":[3,"bcG",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAD","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bcD":{"opcode":"control_stop","next":null,"parent":"pf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z2":{"opcode":"control_if","next":"z3","parent":"z1","inputs":{"CONDITION":[2,"aAE"],"SUBSTACK":[2,"OR"]},"fields":{},"shadow":false,"topLevel":false},"aAE":{"opcode":"operator_lt","next":null,"parent":"z2","inputs":{"OPERAND1":[3,"bcH",[10,""]],"OPERAND2":[1,[10,"0xA0"]]},"fields":{},"shadow":false,"topLevel":false},"bcH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAE","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"OR":{"opcode":"control_if_else","next":"bcI","parent":"z2","inputs":{"CONDITION":[2,"aAF"],"SUBSTACK":[2,"aAG"],"SUBSTACK2":[2,"aAH"]},"fields":{},"shadow":false,"topLevel":false},"aAF":{"opcode":"operator_lt","next":null,"parent":"OR","inputs":{"OPERAND1":[3,"aAI",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aAI":{"opcode":"operator_mod","next":null,"parent":"aAF","inputs":{"NUM1":[3,"bcJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAG":{"opcode":"procedures_call","next":null,"parent":"OR","inputs":{"69W4N%[To:QDj1jXCPU7":[3,"aAJ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","warp":"true"}},"aAJ":{"opcode":"operator_mod","next":null,"parent":"aAG","inputs":{"NUM1":[3,"bcK",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAJ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAH":{"opcode":"procedures_call","next":null,"parent":"OR","inputs":{"R2;pFT-x31=s{}dTh^dR":[3,"aAK",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","warp":"true"}},"aAK":{"opcode":"operator_mod","next":null,"parent":"aAH","inputs":{"NUM1":[3,"bcL",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAK","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bcI":{"opcode":"control_stop","next":null,"parent":"OR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z3":{"opcode":"control_if","next":"z4","parent":"z2","inputs":{"CONDITION":[2,"aAL"],"SUBSTACK":[2,"OS"]},"fields":{},"shadow":false,"topLevel":false},"aAL":{"opcode":"operator_lt","next":null,"parent":"z3","inputs":{"OPERAND1":[3,"bcM",[10,""]],"OPERAND2":[1,[10,"0xB0"]]},"fields":{},"shadow":false,"topLevel":false},"bcM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"OS":{"opcode":"control_if_else","next":"bcN","parent":"z3","inputs":{"CONDITION":[2,"aAM"],"SUBSTACK":[2,"aAN"],"SUBSTACK2":[2,"aAO"]},"fields":{},"shadow":false,"topLevel":false},"aAM":{"opcode":"operator_lt","next":null,"parent":"OS","inputs":{"OPERAND1":[3,"aAP",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aAP":{"opcode":"operator_mod","next":null,"parent":"aAM","inputs":{"NUM1":[3,"bcO",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAP","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAN":{"opcode":"procedures_call","next":null,"parent":"OS","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[3,"aAQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","warp":"true"}},"aAQ":{"opcode":"operator_mod","next":null,"parent":"aAN","inputs":{"NUM1":[3,"bcP",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAO":{"opcode":"procedures_call","next":null,"parent":"OS","inputs":{"t}uDb?K/qpdRG{z:HKi0":[3,"aAR",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","warp":"true"}},"aAR":{"opcode":"operator_mod","next":null,"parent":"aAO","inputs":{"NUM1":[3,"bcQ",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAR","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bcN":{"opcode":"control_stop","next":null,"parent":"OS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z4":{"opcode":"control_if","next":"z5","parent":"z3","inputs":{"CONDITION":[2,"aAS"],"SUBSTACK":[2,"OT"]},"fields":{},"shadow":false,"topLevel":false},"aAS":{"opcode":"operator_lt","next":null,"parent":"z4","inputs":{"OPERAND1":[3,"bcR",[10,""]],"OPERAND2":[1,[10,"0xC0"]]},"fields":{},"shadow":false,"topLevel":false},"bcR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"OT":{"opcode":"control_if_else","next":"bcS","parent":"z4","inputs":{"CONDITION":[2,"aAT"],"SUBSTACK":[2,"aAU"],"SUBSTACK2":[2,"aAV"]},"fields":{},"shadow":false,"topLevel":false},"aAT":{"opcode":"operator_lt","next":null,"parent":"OT","inputs":{"OPERAND1":[3,"aAW",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aAW":{"opcode":"operator_mod","next":null,"parent":"aAT","inputs":{"NUM1":[3,"bcT",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAW","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAU":{"opcode":"procedures_call","next":null,"parent":"OT","inputs":{"HEES%ES}pzo}h9}$1(jb":[3,"aAX",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","warp":"true"}},"aAX":{"opcode":"operator_mod","next":null,"parent":"aAU","inputs":{"NUM1":[3,"bcU",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAX","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aAV":{"opcode":"procedures_call","next":null,"parent":"OT","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[3,"aAY",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","warp":"true"}},"aAY":{"opcode":"operator_mod","next":null,"parent":"aAV","inputs":{"NUM1":[3,"bcV",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bcV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAY","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bcS":{"opcode":"control_stop","next":null,"parent":"OT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z5":{"opcode":"control_if","next":"z6","parent":"z4","inputs":{"CONDITION":[2,"aAZ"],"SUBSTACK":[2,"pg"]},"fields":{},"shadow":false,"topLevel":false},"aAZ":{"opcode":"operator_lt","next":null,"parent":"z5","inputs":{"OPERAND1":[3,"bcW",[10,""]],"OPERAND2":[1,[10,"0xD0"]]},"fields":{},"shadow":false,"topLevel":false},"bcW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aAZ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pg":{"opcode":"control_if_else","next":"bcX","parent":"z5","inputs":{"CONDITION":[2,"aA0"],"SUBSTACK":[2,"ph"],"SUBSTACK2":[2,"z7"]},"fields":{},"shadow":false,"topLevel":false},"aA0":{"opcode":"operator_lt","next":null,"parent":"pg","inputs":{"OPERAND1":[3,"aA1",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aA1":{"opcode":"operator_mod","next":null,"parent":"aA0","inputs":{"NUM1":[3,"bcY",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA1","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ph":{"opcode":"control_if_else","next":"aA2","parent":"pg","inputs":{"CONDITION":[2,"aA3"],"SUBSTACK":[2,"z8"],"SUBSTACK2":[2,"z9"]},"fields":{},"shadow":false,"topLevel":false},"aA3":{"opcode":"operator_lt","next":null,"parent":"ph","inputs":{"OPERAND1":[3,"aA4",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aA4":{"opcode":"operator_mod","next":null,"parent":"aA3","inputs":{"NUM1":[3,"bcZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bcZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA4","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"z8":{"opcode":"control_if","next":"z!","parent":"ph","inputs":{"CONDITION":[2,"aA5"],"SUBSTACK":[2,"aA6"]},"fields":{},"shadow":false,"topLevel":false},"aA5":{"opcode":"operator_equals","next":null,"parent":"z8","inputs":{"OPERAND1":[3,"aA7",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aA7":{"opcode":"operator_mod","next":null,"parent":"aA5","inputs":{"NUM1":[3,"bc0",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc0":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA7","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aA6":{"opcode":"procedures_call","next":"bc1","parent":"z8","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bc1":{"opcode":"control_stop","next":null,"parent":"aA6","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z!":{"opcode":"control_if","next":"z#","parent":"z8","inputs":{"CONDITION":[2,"aA8"],"SUBSTACK":[2,"Zb"]},"fields":{},"shadow":false,"topLevel":false},"aA8":{"opcode":"operator_equals","next":null,"parent":"z!","inputs":{"OPERAND1":[3,"aA9",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aA9":{"opcode":"operator_mod","next":null,"parent":"aA8","inputs":{"NUM1":[3,"bc2",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc2":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA9","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zb":{"opcode":"procedures_call","next":"bc3","parent":"z!","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aA!"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aA!":{"opcode":"operator_equals","next":null,"parent":"Zb","inputs":{"OPERAND1":[3,"bc4",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc4":{"opcode":"data_itemoflist","next":null,"parent":"aA!","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc3":{"opcode":"control_stop","next":null,"parent":"Zb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z#":{"opcode":"control_if","next":"Zc","parent":"z!","inputs":{"CONDITION":[2,"aA#"],"SUBSTACK":[2,"Zd"]},"fields":{},"shadow":false,"topLevel":false},"aA#":{"opcode":"operator_equals","next":null,"parent":"z#","inputs":{"OPERAND1":[3,"aA%",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aA%":{"opcode":"operator_mod","next":null,"parent":"aA#","inputs":{"NUM1":[3,"bc5",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc5":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zd":{"opcode":"procedures_call","next":"bc6","parent":"z#","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"bc7"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"bc7":{"opcode":"operator_not","next":null,"parent":"Zd","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bc6":{"opcode":"control_stop","next":null,"parent":"Zd","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Zc":{"opcode":"procedures_call","next":"bc8","parent":"z#","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aA("]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aA(":{"opcode":"operator_equals","next":null,"parent":"Zc","inputs":{"OPERAND1":[3,"bc9",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc9":{"opcode":"data_itemoflist","next":null,"parent":"aA(","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc8":{"opcode":"control_stop","next":null,"parent":"Zc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z9":{"opcode":"control_if","next":"z%","parent":"ph","inputs":{"CONDITION":[2,"aA)"],"SUBSTACK":[2,"Ze"]},"fields":{},"shadow":false,"topLevel":false},"aA)":{"opcode":"operator_equals","next":null,"parent":"z9","inputs":{"OPERAND1":[3,"aA*",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aA*":{"opcode":"operator_mod","next":null,"parent":"aA)","inputs":{"NUM1":[3,"bc!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ze":{"opcode":"procedures_call","next":"bc#","parent":"z9","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aA+"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aA+":{"opcode":"operator_equals","next":null,"parent":"Ze","inputs":{"OPERAND1":[3,"bc%",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc%":{"opcode":"data_itemoflist","next":null,"parent":"aA+","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc#":{"opcode":"control_stop","next":null,"parent":"Ze","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z%":{"opcode":"control_if","next":"OU","parent":"z9","inputs":{"CONDITION":[2,"aA,"],"SUBSTACK":[2,"aA-"]},"fields":{},"shadow":false,"topLevel":false},"aA,":{"opcode":"operator_equals","next":null,"parent":"z%","inputs":{"OPERAND1":[3,"aA.",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aA.":{"opcode":"operator_mod","next":null,"parent":"aA,","inputs":{"NUM1":[3,"bc(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aA-":{"opcode":"procedures_call","next":"bc)","parent":"z%","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bc)":{"opcode":"control_stop","next":null,"parent":"aA-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"OU":{"opcode":"control_if","next":null,"parent":"z%","inputs":{"CONDITION":[2,"aA/"],"SUBSTACK":[2,"aA:"]},"fields":{},"shadow":false,"topLevel":false},"aA/":{"opcode":"operator_equals","next":null,"parent":"OU","inputs":{"OPERAND1":[3,"aA;",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aA;":{"opcode":"operator_mod","next":null,"parent":"aA/","inputs":{"NUM1":[3,"bc*",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc*":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aA:":{"opcode":"procedures_call","next":"bc+","parent":"OU","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","warp":"true"}},"bc+":{"opcode":"control_stop","next":null,"parent":"aA:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aA2":{"opcode":"procedures_call","next":"bc,","parent":"ph","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bc,":{"opcode":"control_stop","next":null,"parent":"aA2","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z7":{"opcode":"control_if_else","next":null,"parent":"pg","inputs":{"CONDITION":[2,"aA="],"SUBSTACK":[2,"z("],"SUBSTACK2":[2,"z)"]},"fields":{},"shadow":false,"topLevel":false},"aA=":{"opcode":"operator_lt","next":null,"parent":"z7","inputs":{"OPERAND1":[3,"aA?",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aA?":{"opcode":"operator_mod","next":null,"parent":"aA=","inputs":{"NUM1":[3,"bc-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"z(":{"opcode":"control_if","next":"z*","parent":"z7","inputs":{"CONDITION":[2,"aA@"],"SUBSTACK":[2,"Zf"]},"fields":{},"shadow":false,"topLevel":false},"aA@":{"opcode":"operator_equals","next":null,"parent":"z(","inputs":{"OPERAND1":[3,"aA[",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aA[":{"opcode":"operator_mod","next":null,"parent":"aA@","inputs":{"NUM1":[3,"bc.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA[","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zf":{"opcode":"procedures_call","next":"bc/","parent":"z(","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aA]"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aA]":{"opcode":"operator_equals","next":null,"parent":"Zf","inputs":{"OPERAND1":[3,"bc:",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bc:":{"opcode":"data_itemoflist","next":null,"parent":"aA]","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc/":{"opcode":"control_stop","next":null,"parent":"Zf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z*":{"opcode":"control_if","next":"z+","parent":"z(","inputs":{"CONDITION":[2,"aA^"],"SUBSTACK":[2,"Zg"]},"fields":{},"shadow":false,"topLevel":false},"aA^":{"opcode":"operator_equals","next":null,"parent":"z*","inputs":{"OPERAND1":[3,"aA_",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aA_":{"opcode":"operator_mod","next":null,"parent":"aA^","inputs":{"NUM1":[3,"bc;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA_","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zg":{"opcode":"procedures_call","next":"aA`","parent":"z*","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"bc="]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"bc=":{"opcode":"operator_not","next":null,"parent":"Zg","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aA`":{"opcode":"data_changevariableby","next":"bc?","parent":"Zg","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bc?":{"opcode":"control_stop","next":null,"parent":"aA`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z+":{"opcode":"control_if","next":"Zh","parent":"z*","inputs":{"CONDITION":[2,"aA{"],"SUBSTACK":[2,"Zi"]},"fields":{},"shadow":false,"topLevel":false},"aA{":{"opcode":"operator_equals","next":null,"parent":"z+","inputs":{"OPERAND1":[3,"aA|",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aA|":{"opcode":"operator_mod","next":null,"parent":"aA{","inputs":{"NUM1":[3,"bc@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA|","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zi":{"opcode":"procedures_call","next":"bc[","parent":"z+","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aA}"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aA}":{"opcode":"operator_equals","next":null,"parent":"Zi","inputs":{"OPERAND1":[3,"bc]",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bc]":{"opcode":"data_itemoflist","next":null,"parent":"aA}","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc[":{"opcode":"control_stop","next":null,"parent":"Zi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Zh":{"opcode":"procedures_call","next":"bc^","parent":"z+","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"bc_"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"bc_":{"opcode":"operator_not","next":null,"parent":"Zh","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bc^":{"opcode":"control_stop","next":null,"parent":"Zh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z)":{"opcode":"control_if","next":"z,","parent":"z7","inputs":{"CONDITION":[2,"aA~"],"SUBSTACK":[2,"Zj"]},"fields":{},"shadow":false,"topLevel":false},"aA~":{"opcode":"operator_equals","next":null,"parent":"z)","inputs":{"OPERAND1":[3,"aBa",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aBa":{"opcode":"operator_mod","next":null,"parent":"aA~","inputs":{"NUM1":[3,"bc`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBa","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zj":{"opcode":"procedures_call","next":"bc{","parent":"z)","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aBb"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aBb":{"opcode":"operator_equals","next":null,"parent":"Zj","inputs":{"OPERAND1":[3,"bc|",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bc|":{"opcode":"data_itemoflist","next":null,"parent":"aBb","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bc{":{"opcode":"control_stop","next":null,"parent":"Zj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z,":{"opcode":"control_if","next":"z-","parent":"z)","inputs":{"CONDITION":[2,"aBc"],"SUBSTACK":[2,"Zk"]},"fields":{},"shadow":false,"topLevel":false},"aBc":{"opcode":"operator_equals","next":null,"parent":"z,","inputs":{"OPERAND1":[3,"aBd",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aBd":{"opcode":"operator_mod","next":null,"parent":"aBc","inputs":{"NUM1":[3,"bc}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bc}":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBd","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zk":{"opcode":"procedures_call","next":"bc~","parent":"z,","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bda"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bda":{"opcode":"operator_not","next":null,"parent":"Zk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bc~":{"opcode":"control_stop","next":null,"parent":"Zk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z-":{"opcode":"control_if","next":"bdb","parent":"z,","inputs":{"CONDITION":[2,"aBe"],"SUBSTACK":[2,"aBf"]},"fields":{},"shadow":false,"topLevel":false},"aBe":{"opcode":"operator_equals","next":null,"parent":"z-","inputs":{"OPERAND1":[3,"aBg",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aBg":{"opcode":"operator_mod","next":null,"parent":"aBe","inputs":{"NUM1":[3,"bdc",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdc":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBf":{"opcode":"procedures_call","next":"bdd","parent":"z-","inputs":{"g~W%j(pxt{obs8]2L|in":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","warp":"true"}},"bdd":{"opcode":"control_stop","next":null,"parent":"aBf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bdb":{"opcode":"procedures_call","next":null,"parent":"z-","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bcX":{"opcode":"control_stop","next":null,"parent":"pg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z6":{"opcode":"control_if","next":"z.","parent":"z5","inputs":{"CONDITION":[2,"aBh"],"SUBSTACK":[2,"pi"]},"fields":{},"shadow":false,"topLevel":false},"aBh":{"opcode":"operator_lt","next":null,"parent":"z6","inputs":{"OPERAND1":[3,"bde",[10,""]],"OPERAND2":[1,[10,"0xE0"]]},"fields":{},"shadow":false,"topLevel":false},"bde":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBh","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pi":{"opcode":"control_if_else","next":"bdf","parent":"z6","inputs":{"CONDITION":[2,"aBi"],"SUBSTACK":[2,"pj"],"SUBSTACK2":[2,"z/"]},"fields":{},"shadow":false,"topLevel":false},"aBi":{"opcode":"operator_lt","next":null,"parent":"pi","inputs":{"OPERAND1":[3,"aBj",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aBj":{"opcode":"operator_mod","next":null,"parent":"aBi","inputs":{"NUM1":[3,"bdg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdg":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pj":{"opcode":"control_if_else","next":"bdh","parent":"pi","inputs":{"CONDITION":[2,"aBk"],"SUBSTACK":[2,"z:"],"SUBSTACK2":[2,"z;"]},"fields":{},"shadow":false,"topLevel":false},"aBk":{"opcode":"operator_lt","next":null,"parent":"pj","inputs":{"OPERAND1":[3,"aBl",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aBl":{"opcode":"operator_mod","next":null,"parent":"aBk","inputs":{"NUM1":[3,"bdi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBl","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"z:":{"opcode":"control_if","next":"z=","parent":"pj","inputs":{"CONDITION":[2,"aBm"],"SUBSTACK":[2,"aBn"]},"fields":{},"shadow":false,"topLevel":false},"aBm":{"opcode":"operator_equals","next":null,"parent":"z:","inputs":{"OPERAND1":[3,"aBo",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aBo":{"opcode":"operator_mod","next":null,"parent":"aBm","inputs":{"NUM1":[3,"bdj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdj":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBo","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBn":{"opcode":"procedures_call","next":"bdk","parent":"z:","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bdk":{"opcode":"control_stop","next":null,"parent":"aBn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z=":{"opcode":"control_if","next":"z?","parent":"z:","inputs":{"CONDITION":[2,"aBp"],"SUBSTACK":[2,"Zl"]},"fields":{},"shadow":false,"topLevel":false},"aBp":{"opcode":"operator_equals","next":null,"parent":"z=","inputs":{"OPERAND1":[3,"aBq",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aBq":{"opcode":"operator_mod","next":null,"parent":"aBp","inputs":{"NUM1":[3,"bdl",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdl":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zl":{"opcode":"procedures_call","next":"bdm","parent":"z=","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aBr"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aBr":{"opcode":"operator_equals","next":null,"parent":"Zl","inputs":{"OPERAND1":[3,"bdn",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdn":{"opcode":"data_itemoflist","next":null,"parent":"aBr","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdm":{"opcode":"control_stop","next":null,"parent":"Zl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z?":{"opcode":"control_if","next":"Zm","parent":"z=","inputs":{"CONDITION":[2,"aBs"],"SUBSTACK":[2,"aBt"]},"fields":{},"shadow":false,"topLevel":false},"aBs":{"opcode":"operator_equals","next":null,"parent":"z?","inputs":{"OPERAND1":[3,"aBu",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aBu":{"opcode":"operator_mod","next":null,"parent":"aBs","inputs":{"NUM1":[3,"bdo",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdo":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBu","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBt":{"opcode":"procedures_call","next":"bdp","parent":"z?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"OUT","argumentids":"[]","warp":"true"}},"bdp":{"opcode":"control_stop","next":null,"parent":"aBt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Zm":{"opcode":"procedures_call","next":"bdq","parent":"z?","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aBv"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aBv":{"opcode":"operator_equals","next":null,"parent":"Zm","inputs":{"OPERAND1":[3,"bdr",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdr":{"opcode":"data_itemoflist","next":null,"parent":"aBv","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdq":{"opcode":"control_stop","next":null,"parent":"Zm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z;":{"opcode":"control_if","next":"z@","parent":"pj","inputs":{"CONDITION":[2,"aBw"],"SUBSTACK":[2,"Zn"]},"fields":{},"shadow":false,"topLevel":false},"aBw":{"opcode":"operator_equals","next":null,"parent":"z;","inputs":{"OPERAND1":[3,"aBx",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aBx":{"opcode":"operator_mod","next":null,"parent":"aBw","inputs":{"NUM1":[3,"bds",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bds":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBx","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zn":{"opcode":"procedures_call","next":"bdt","parent":"z;","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aBy"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aBy":{"opcode":"operator_equals","next":null,"parent":"Zn","inputs":{"OPERAND1":[3,"bdu",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdu":{"opcode":"data_itemoflist","next":null,"parent":"aBy","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdt":{"opcode":"control_stop","next":null,"parent":"Zn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z@":{"opcode":"control_if","next":"z[","parent":"z;","inputs":{"CONDITION":[2,"aBz"],"SUBSTACK":[2,"aBA"]},"fields":{},"shadow":false,"topLevel":false},"aBz":{"opcode":"operator_equals","next":null,"parent":"z@","inputs":{"OPERAND1":[3,"aBB",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aBB":{"opcode":"operator_mod","next":null,"parent":"aBz","inputs":{"NUM1":[3,"bdv",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBA":{"opcode":"procedures_call","next":"bdw","parent":"z@","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bdw":{"opcode":"control_stop","next":null,"parent":"aBA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z[":{"opcode":"control_if","next":"bdx","parent":"z@","inputs":{"CONDITION":[2,"aBC"],"SUBSTACK":[2,"aBD"]},"fields":{},"shadow":false,"topLevel":false},"aBC":{"opcode":"operator_equals","next":null,"parent":"z[","inputs":{"OPERAND1":[3,"aBE",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aBE":{"opcode":"operator_mod","next":null,"parent":"aBC","inputs":{"NUM1":[3,"bdy",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdy":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBE","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBD":{"opcode":"procedures_call","next":"bdz","parent":"z[","inputs":{"69W4N%[To:QDj1jXCPU7":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","warp":"true"}},"bdz":{"opcode":"control_stop","next":null,"parent":"aBD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bdx":{"opcode":"procedures_call","next":null,"parent":"z[","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bdh":{"opcode":"control_stop","next":null,"parent":"pj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z/":{"opcode":"control_if_else","next":null,"parent":"pi","inputs":{"CONDITION":[2,"aBF"],"SUBSTACK":[2,"z]"],"SUBSTACK2":[2,"z^"]},"fields":{},"shadow":false,"topLevel":false},"aBF":{"opcode":"operator_lt","next":null,"parent":"z/","inputs":{"OPERAND1":[3,"aBG",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aBG":{"opcode":"operator_mod","next":null,"parent":"aBF","inputs":{"NUM1":[3,"bdA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBG","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"z]":{"opcode":"control_if","next":"z_","parent":"z/","inputs":{"CONDITION":[2,"aBH"],"SUBSTACK":[2,"Zo"]},"fields":{},"shadow":false,"topLevel":false},"aBH":{"opcode":"operator_equals","next":null,"parent":"z]","inputs":{"OPERAND1":[3,"aBI",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aBI":{"opcode":"operator_mod","next":null,"parent":"aBH","inputs":{"NUM1":[3,"bdB",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zo":{"opcode":"procedures_call","next":"bdC","parent":"z]","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aBJ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aBJ":{"opcode":"operator_equals","next":null,"parent":"Zo","inputs":{"OPERAND1":[3,"bdD",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bdD":{"opcode":"data_itemoflist","next":null,"parent":"aBJ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdC":{"opcode":"control_stop","next":null,"parent":"Zo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z_":{"opcode":"control_if","next":"z`","parent":"z]","inputs":{"CONDITION":[2,"aBK"],"SUBSTACK":[2,"Zp"]},"fields":{},"shadow":false,"topLevel":false},"aBK":{"opcode":"operator_equals","next":null,"parent":"z_","inputs":{"OPERAND1":[3,"aBL",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aBL":{"opcode":"operator_mod","next":null,"parent":"aBK","inputs":{"NUM1":[3,"bdE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zp":{"opcode":"procedures_call","next":"aBM","parent":"z_","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"bdF"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"bdF":{"opcode":"operator_not","next":null,"parent":"Zp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aBM":{"opcode":"data_changevariableby","next":"bdG","parent":"Zp","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bdG":{"opcode":"control_stop","next":null,"parent":"aBM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z`":{"opcode":"control_if","next":"aBN","parent":"z_","inputs":{"CONDITION":[2,"aBO"],"SUBSTACK":[2,"Zq"]},"fields":{},"shadow":false,"topLevel":false},"aBO":{"opcode":"operator_equals","next":null,"parent":"z`","inputs":{"OPERAND1":[3,"aBP",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aBP":{"opcode":"operator_mod","next":null,"parent":"aBO","inputs":{"NUM1":[3,"bdH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBP","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zq":{"opcode":"procedures_call","next":"bdI","parent":"z`","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aBQ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aBQ":{"opcode":"operator_equals","next":null,"parent":"Zq","inputs":{"OPERAND1":[3,"bdJ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bdJ":{"opcode":"data_itemoflist","next":null,"parent":"aBQ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdI":{"opcode":"control_stop","next":null,"parent":"Zq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aBN":{"opcode":"procedures_call","next":"bdK","parent":"z`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"IN","argumentids":"[]","warp":"true"}},"bdK":{"opcode":"control_stop","next":null,"parent":"aBN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z^":{"opcode":"control_if","next":"z{","parent":"z/","inputs":{"CONDITION":[2,"aBR"],"SUBSTACK":[2,"Zr"]},"fields":{},"shadow":false,"topLevel":false},"aBR":{"opcode":"operator_equals","next":null,"parent":"z^","inputs":{"OPERAND1":[3,"aBS",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aBS":{"opcode":"operator_mod","next":null,"parent":"aBR","inputs":{"NUM1":[3,"bdL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zr":{"opcode":"procedures_call","next":"bdM","parent":"z^","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aBT"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aBT":{"opcode":"operator_equals","next":null,"parent":"Zr","inputs":{"OPERAND1":[3,"bdN",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bdN":{"opcode":"data_itemoflist","next":null,"parent":"aBT","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bdM":{"opcode":"control_stop","next":null,"parent":"Zr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z{":{"opcode":"control_if","next":"z|","parent":"z^","inputs":{"CONDITION":[2,"aBU"],"SUBSTACK":[2,"Zs"]},"fields":{},"shadow":false,"topLevel":false},"aBU":{"opcode":"operator_equals","next":null,"parent":"z{","inputs":{"OPERAND1":[3,"aBV",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aBV":{"opcode":"operator_mod","next":null,"parent":"aBU","inputs":{"NUM1":[3,"bdO",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBV","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zs":{"opcode":"procedures_call","next":"bdP","parent":"z{","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bdQ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bdQ":{"opcode":"operator_not","next":null,"parent":"Zs","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bdP":{"opcode":"control_stop","next":null,"parent":"Zs","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z|":{"opcode":"control_if","next":"bdR","parent":"z{","inputs":{"CONDITION":[2,"aBW"],"SUBSTACK":[2,"aBX"]},"fields":{},"shadow":false,"topLevel":false},"aBW":{"opcode":"operator_equals","next":null,"parent":"z|","inputs":{"OPERAND1":[3,"aBY",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aBY":{"opcode":"operator_mod","next":null,"parent":"aBW","inputs":{"NUM1":[3,"bdS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBY","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aBX":{"opcode":"procedures_call","next":"bdT","parent":"z|","inputs":{"R2;pFT-x31=s{}dTh^dR":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","warp":"true"}},"bdT":{"opcode":"control_stop","next":null,"parent":"aBX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bdR":{"opcode":"procedures_call","next":null,"parent":"z|","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bdf":{"opcode":"control_stop","next":null,"parent":"pi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z.":{"opcode":"control_if","next":"z}","parent":"z6","inputs":{"CONDITION":[2,"aBZ"],"SUBSTACK":[2,"pk"]},"fields":{},"shadow":false,"topLevel":false},"aBZ":{"opcode":"operator_lt","next":null,"parent":"z.","inputs":{"OPERAND1":[3,"bdU",[10,""]],"OPERAND2":[1,[10,"0xF0"]]},"fields":{},"shadow":false,"topLevel":false},"bdU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBZ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pk":{"opcode":"control_if_else","next":"bdV","parent":"z.","inputs":{"CONDITION":[2,"aB0"],"SUBSTACK":[2,"pl"],"SUBSTACK2":[2,"z~"]},"fields":{},"shadow":false,"topLevel":false},"aB0":{"opcode":"operator_lt","next":null,"parent":"pk","inputs":{"OPERAND1":[3,"aB1",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aB1":{"opcode":"operator_mod","next":null,"parent":"aB0","inputs":{"NUM1":[3,"bdW",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB1","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pl":{"opcode":"control_if_else","next":"bdX","parent":"pk","inputs":{"CONDITION":[2,"aB2"],"SUBSTACK":[2,"Aa"],"SUBSTACK2":[2,"Ab"]},"fields":{},"shadow":false,"topLevel":false},"aB2":{"opcode":"operator_lt","next":null,"parent":"pl","inputs":{"OPERAND1":[3,"aB3",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aB3":{"opcode":"operator_mod","next":null,"parent":"aB2","inputs":{"NUM1":[3,"bdY",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB3","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Aa":{"opcode":"control_if","next":"Ac","parent":"pl","inputs":{"CONDITION":[2,"aB4"],"SUBSTACK":[2,"aB5"]},"fields":{},"shadow":false,"topLevel":false},"aB4":{"opcode":"operator_equals","next":null,"parent":"Aa","inputs":{"OPERAND1":[3,"aB6",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aB6":{"opcode":"operator_mod","next":null,"parent":"aB4","inputs":{"NUM1":[3,"bdZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bdZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB6","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aB5":{"opcode":"procedures_call","next":"bd0","parent":"Aa","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bd0":{"opcode":"control_stop","next":null,"parent":"aB5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ac":{"opcode":"control_if","next":"Ad","parent":"Aa","inputs":{"CONDITION":[2,"aB7"],"SUBSTACK":[2,"Zt"]},"fields":{},"shadow":false,"topLevel":false},"aB7":{"opcode":"operator_equals","next":null,"parent":"Ac","inputs":{"OPERAND1":[3,"aB8",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aB8":{"opcode":"operator_mod","next":null,"parent":"aB7","inputs":{"NUM1":[3,"bd1",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd1":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB8","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zt":{"opcode":"procedures_call","next":"bd2","parent":"Ac","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aB9"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aB9":{"opcode":"operator_equals","next":null,"parent":"Zt","inputs":{"OPERAND1":[3,"bd3",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd3":{"opcode":"data_itemoflist","next":null,"parent":"aB9","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd2":{"opcode":"control_stop","next":null,"parent":"Zt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ad":{"opcode":"control_if","next":"Zu","parent":"Ac","inputs":{"CONDITION":[2,"aB!"],"SUBSTACK":[2,"aB#"]},"fields":{},"shadow":false,"topLevel":false},"aB!":{"opcode":"operator_equals","next":null,"parent":"Ad","inputs":{"OPERAND1":[3,"aB%",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aB%":{"opcode":"operator_mod","next":null,"parent":"aB!","inputs":{"NUM1":[3,"bd4",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd4":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aB#":{"opcode":"procedures_call","next":"bd5","parent":"Ad","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XTHL","argumentids":"[]","warp":"true"}},"bd5":{"opcode":"control_stop","next":null,"parent":"aB#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Zu":{"opcode":"procedures_call","next":"bd6","parent":"Ad","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aB("]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aB(":{"opcode":"operator_equals","next":null,"parent":"Zu","inputs":{"OPERAND1":[3,"bd7",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd7":{"opcode":"data_itemoflist","next":null,"parent":"aB(","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd6":{"opcode":"control_stop","next":null,"parent":"Zu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ab":{"opcode":"control_if","next":"Ae","parent":"pl","inputs":{"CONDITION":[2,"aB)"],"SUBSTACK":[2,"Zv"]},"fields":{},"shadow":false,"topLevel":false},"aB)":{"opcode":"operator_equals","next":null,"parent":"Ab","inputs":{"OPERAND1":[3,"aB*",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aB*":{"opcode":"operator_mod","next":null,"parent":"aB)","inputs":{"NUM1":[3,"bd8",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd8":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zv":{"opcode":"procedures_call","next":"bd9","parent":"Ab","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aB+"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aB+":{"opcode":"operator_equals","next":null,"parent":"Zv","inputs":{"OPERAND1":[3,"bd!",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd!":{"opcode":"data_itemoflist","next":null,"parent":"aB+","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd9":{"opcode":"control_stop","next":null,"parent":"Zv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ae":{"opcode":"control_if","next":"Af","parent":"Ab","inputs":{"CONDITION":[2,"aB,"],"SUBSTACK":[2,"aB-"]},"fields":{},"shadow":false,"topLevel":false},"aB,":{"opcode":"operator_equals","next":null,"parent":"Ae","inputs":{"OPERAND1":[3,"aB.",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aB.":{"opcode":"operator_mod","next":null,"parent":"aB,","inputs":{"NUM1":[3,"bd#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aB-":{"opcode":"procedures_call","next":"bd%","parent":"Ae","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bd%":{"opcode":"control_stop","next":null,"parent":"aB-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Af":{"opcode":"control_if","next":"bd(","parent":"Ae","inputs":{"CONDITION":[2,"aB/"],"SUBSTACK":[2,"aB:"]},"fields":{},"shadow":false,"topLevel":false},"aB/":{"opcode":"operator_equals","next":null,"parent":"Af","inputs":{"OPERAND1":[3,"aB;",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aB;":{"opcode":"operator_mod","next":null,"parent":"aB/","inputs":{"NUM1":[3,"bd)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd)":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aB:":{"opcode":"procedures_call","next":"bd*","parent":"Af","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","warp":"true"}},"bd*":{"opcode":"control_stop","next":null,"parent":"aB:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bd(":{"opcode":"procedures_call","next":null,"parent":"Af","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bdX":{"opcode":"control_stop","next":null,"parent":"pl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z~":{"opcode":"control_if_else","next":null,"parent":"pk","inputs":{"CONDITION":[2,"aB="],"SUBSTACK":[2,"Ag"],"SUBSTACK2":[2,"Ah"]},"fields":{},"shadow":false,"topLevel":false},"aB=":{"opcode":"operator_lt","next":null,"parent":"z~","inputs":{"OPERAND1":[3,"aB?",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aB?":{"opcode":"operator_mod","next":null,"parent":"aB=","inputs":{"NUM1":[3,"bd+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ag":{"opcode":"control_if","next":"Ai","parent":"z~","inputs":{"CONDITION":[2,"aB@"],"SUBSTACK":[2,"Zw"]},"fields":{},"shadow":false,"topLevel":false},"aB@":{"opcode":"operator_equals","next":null,"parent":"Ag","inputs":{"OPERAND1":[3,"aB[",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aB[":{"opcode":"operator_mod","next":null,"parent":"aB@","inputs":{"NUM1":[3,"bd,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd,":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB[","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zw":{"opcode":"procedures_call","next":"bd-","parent":"Ag","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aB]"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aB]":{"opcode":"operator_equals","next":null,"parent":"Zw","inputs":{"OPERAND1":[3,"bd.",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bd.":{"opcode":"data_itemoflist","next":null,"parent":"aB]","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd-":{"opcode":"control_stop","next":null,"parent":"Zw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ai":{"opcode":"control_if","next":"Aj","parent":"Ag","inputs":{"CONDITION":[2,"aB^"],"SUBSTACK":[2,"aB_"]},"fields":{},"shadow":false,"topLevel":false},"aB^":{"opcode":"operator_equals","next":null,"parent":"Ai","inputs":{"OPERAND1":[3,"aB`",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aB`":{"opcode":"operator_mod","next":null,"parent":"aB^","inputs":{"NUM1":[3,"bd/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd/":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aB_":{"opcode":"procedures_call","next":"bd:","parent":"Ai","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PCHL","argumentids":"[]","warp":"true"}},"bd:":{"opcode":"control_stop","next":null,"parent":"aB_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Aj":{"opcode":"control_if","next":"aB{","parent":"Ai","inputs":{"CONDITION":[2,"aB|"],"SUBSTACK":[2,"Zx"]},"fields":{},"shadow":false,"topLevel":false},"aB|":{"opcode":"operator_equals","next":null,"parent":"Aj","inputs":{"OPERAND1":[3,"aB}",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aB}":{"opcode":"operator_mod","next":null,"parent":"aB|","inputs":{"NUM1":[3,"bd;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aB}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zx":{"opcode":"procedures_call","next":"bd=","parent":"Aj","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aB~"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aB~":{"opcode":"operator_equals","next":null,"parent":"Zx","inputs":{"OPERAND1":[3,"bd?",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bd?":{"opcode":"data_itemoflist","next":null,"parent":"aB~","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd=":{"opcode":"control_stop","next":null,"parent":"Zx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aB{":{"opcode":"procedures_call","next":"bd@","parent":"Aj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XCHG","argumentids":"[]","warp":"true"}},"bd@":{"opcode":"control_stop","next":null,"parent":"aB{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ah":{"opcode":"control_if","next":"Ak","parent":"z~","inputs":{"CONDITION":[2,"aCa"],"SUBSTACK":[2,"Zy"]},"fields":{},"shadow":false,"topLevel":false},"aCa":{"opcode":"operator_equals","next":null,"parent":"Ah","inputs":{"OPERAND1":[3,"aCb",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aCb":{"opcode":"operator_mod","next":null,"parent":"aCa","inputs":{"NUM1":[3,"bd[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd[":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zy":{"opcode":"procedures_call","next":"bd]","parent":"Ah","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aCc"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aCc":{"opcode":"operator_equals","next":null,"parent":"Zy","inputs":{"OPERAND1":[3,"bd^",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bd^":{"opcode":"data_itemoflist","next":null,"parent":"aCc","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bd]":{"opcode":"control_stop","next":null,"parent":"Zy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ak":{"opcode":"control_if","next":"Al","parent":"Ah","inputs":{"CONDITION":[2,"aCd"],"SUBSTACK":[2,"Zz"]},"fields":{},"shadow":false,"topLevel":false},"aCd":{"opcode":"operator_equals","next":null,"parent":"Ak","inputs":{"OPERAND1":[3,"aCe",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aCe":{"opcode":"operator_mod","next":null,"parent":"aCd","inputs":{"NUM1":[3,"bd_",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd_":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCe","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zz":{"opcode":"procedures_call","next":"bd`","parent":"Ak","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bd{"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bd{":{"opcode":"operator_not","next":null,"parent":"Zz","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bd`":{"opcode":"control_stop","next":null,"parent":"Zz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Al":{"opcode":"control_if","next":"bd|","parent":"Ak","inputs":{"CONDITION":[2,"aCf"],"SUBSTACK":[2,"aCg"]},"fields":{},"shadow":false,"topLevel":false},"aCf":{"opcode":"operator_equals","next":null,"parent":"Al","inputs":{"OPERAND1":[3,"aCh",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aCh":{"opcode":"operator_mod","next":null,"parent":"aCf","inputs":{"NUM1":[3,"bd}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bd}":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCh","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCg":{"opcode":"procedures_call","next":"bd~","parent":"Al","inputs":{"t}uDb?K/qpdRG{z:HKi0":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","warp":"true"}},"bd~":{"opcode":"control_stop","next":null,"parent":"aCg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bd|":{"opcode":"procedures_call","next":null,"parent":"Al","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bdV":{"opcode":"control_stop","next":null,"parent":"pk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"z}":{"opcode":"control_if_else","next":null,"parent":"z.","inputs":{"CONDITION":[2,"aCi"],"SUBSTACK":[2,"pm"],"SUBSTACK2":[2,"Am"]},"fields":{},"shadow":false,"topLevel":false},"aCi":{"opcode":"operator_lt","next":null,"parent":"z}","inputs":{"OPERAND1":[3,"aCj",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aCj":{"opcode":"operator_mod","next":null,"parent":"aCi","inputs":{"NUM1":[3,"bea",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bea":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"pm":{"opcode":"control_if_else","next":"beb","parent":"z}","inputs":{"CONDITION":[2,"aCk"],"SUBSTACK":[2,"An"],"SUBSTACK2":[2,"Ao"]},"fields":{},"shadow":false,"topLevel":false},"aCk":{"opcode":"operator_lt","next":null,"parent":"pm","inputs":{"OPERAND1":[3,"aCl",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aCl":{"opcode":"operator_mod","next":null,"parent":"aCk","inputs":{"NUM1":[3,"bec",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bec":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCl","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"An":{"opcode":"control_if","next":"Ap","parent":"pm","inputs":{"CONDITION":[2,"aCm"],"SUBSTACK":[2,"aCn"]},"fields":{},"shadow":false,"topLevel":false},"aCm":{"opcode":"operator_equals","next":null,"parent":"An","inputs":{"OPERAND1":[3,"aCo",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aCo":{"opcode":"operator_mod","next":null,"parent":"aCm","inputs":{"NUM1":[3,"bed",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bed":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCo","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCn":{"opcode":"procedures_call","next":"bee","parent":"An","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP PSW","argumentids":"[]","warp":"true"}},"bee":{"opcode":"control_stop","next":null,"parent":"aCn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ap":{"opcode":"control_if","next":"Aq","parent":"An","inputs":{"CONDITION":[2,"aCp"],"SUBSTACK":[2,"ZA"]},"fields":{},"shadow":false,"topLevel":false},"aCp":{"opcode":"operator_equals","next":null,"parent":"Ap","inputs":{"OPERAND1":[3,"aCq",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aCq":{"opcode":"operator_mod","next":null,"parent":"aCp","inputs":{"NUM1":[3,"bef",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bef":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZA":{"opcode":"procedures_call","next":"beg","parent":"Ap","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aCr"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aCr":{"opcode":"operator_equals","next":null,"parent":"ZA","inputs":{"OPERAND1":[3,"beh",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"beh":{"opcode":"data_itemoflist","next":null,"parent":"aCr","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"beg":{"opcode":"control_stop","next":null,"parent":"ZA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Aq":{"opcode":"control_if","next":"ZB","parent":"Ap","inputs":{"CONDITION":[2,"aCs"],"SUBSTACK":[2,"aCt"]},"fields":{},"shadow":false,"topLevel":false},"aCs":{"opcode":"operator_equals","next":null,"parent":"Aq","inputs":{"OPERAND1":[3,"aCu",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aCu":{"opcode":"operator_mod","next":null,"parent":"aCs","inputs":{"NUM1":[3,"bei",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bei":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCu","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCt":{"opcode":"data_setvariableto","next":"aCv","parent":"Aq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aCv":{"opcode":"data_changevariableby","next":"bej","parent":"aCt","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bej":{"opcode":"control_stop","next":null,"parent":"aCv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ZB":{"opcode":"procedures_call","next":"bek","parent":"Aq","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aCw"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aCw":{"opcode":"operator_equals","next":null,"parent":"ZB","inputs":{"OPERAND1":[3,"bel",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bel":{"opcode":"data_itemoflist","next":null,"parent":"aCw","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bek":{"opcode":"control_stop","next":null,"parent":"ZB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ao":{"opcode":"control_if","next":"Ar","parent":"pm","inputs":{"CONDITION":[2,"aCx"],"SUBSTACK":[2,"ZC"]},"fields":{},"shadow":false,"topLevel":false},"aCx":{"opcode":"operator_equals","next":null,"parent":"Ao","inputs":{"OPERAND1":[3,"aCy",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aCy":{"opcode":"operator_mod","next":null,"parent":"aCx","inputs":{"NUM1":[3,"bem",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bem":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCy","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZC":{"opcode":"procedures_call","next":"ben","parent":"Ao","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aCz"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aCz":{"opcode":"operator_equals","next":null,"parent":"ZC","inputs":{"OPERAND1":[3,"beo",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"beo":{"opcode":"data_itemoflist","next":null,"parent":"aCz","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"ben":{"opcode":"control_stop","next":null,"parent":"ZC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ar":{"opcode":"control_if","next":"As","parent":"Ao","inputs":{"CONDITION":[2,"aCA"],"SUBSTACK":[2,"aCB"]},"fields":{},"shadow":false,"topLevel":false},"aCA":{"opcode":"operator_equals","next":null,"parent":"Ar","inputs":{"OPERAND1":[3,"aCC",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aCC":{"opcode":"operator_mod","next":null,"parent":"aCA","inputs":{"NUM1":[3,"bep",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bep":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCB":{"opcode":"procedures_call","next":"beq","parent":"Ar","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH PSW","argumentids":"[]","warp":"true"}},"beq":{"opcode":"control_stop","next":null,"parent":"aCB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"As":{"opcode":"control_if","next":"ber","parent":"Ar","inputs":{"CONDITION":[2,"aCD"],"SUBSTACK":[2,"aCE"]},"fields":{},"shadow":false,"topLevel":false},"aCD":{"opcode":"operator_equals","next":null,"parent":"As","inputs":{"OPERAND1":[3,"aCF",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aCF":{"opcode":"operator_mod","next":null,"parent":"aCD","inputs":{"NUM1":[3,"bes",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bes":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCE":{"opcode":"procedures_call","next":"bet","parent":"As","inputs":{"HEES%ES}pzo}h9}$1(jb":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","warp":"true"}},"bet":{"opcode":"control_stop","next":null,"parent":"aCE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ber":{"opcode":"procedures_call","next":null,"parent":"As","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"beb":{"opcode":"control_stop","next":null,"parent":"pm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Am":{"opcode":"control_if_else","next":null,"parent":"z}","inputs":{"CONDITION":[2,"aCG"],"SUBSTACK":[2,"At"],"SUBSTACK2":[2,"Au"]},"fields":{},"shadow":false,"topLevel":false},"aCG":{"opcode":"operator_lt","next":null,"parent":"Am","inputs":{"OPERAND1":[3,"aCH",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aCH":{"opcode":"operator_mod","next":null,"parent":"aCG","inputs":{"NUM1":[3,"beu",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"beu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCH","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"At":{"opcode":"control_if","next":"Av","parent":"Am","inputs":{"CONDITION":[2,"aCI"],"SUBSTACK":[2,"ZD"]},"fields":{},"shadow":false,"topLevel":false},"aCI":{"opcode":"operator_equals","next":null,"parent":"At","inputs":{"OPERAND1":[3,"aCJ",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aCJ":{"opcode":"operator_mod","next":null,"parent":"aCI","inputs":{"NUM1":[3,"bev",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bev":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCJ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZD":{"opcode":"procedures_call","next":"bew","parent":"At","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aCK"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aCK":{"opcode":"operator_equals","next":null,"parent":"ZD","inputs":{"OPERAND1":[3,"bex",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bex":{"opcode":"data_itemoflist","next":null,"parent":"aCK","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bew":{"opcode":"control_stop","next":null,"parent":"ZD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Av":{"opcode":"control_if","next":"Aw","parent":"At","inputs":{"CONDITION":[2,"aCL"],"SUBSTACK":[2,"aCM"]},"fields":{},"shadow":false,"topLevel":false},"aCL":{"opcode":"operator_equals","next":null,"parent":"Av","inputs":{"OPERAND1":[3,"aCN",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aCN":{"opcode":"operator_mod","next":null,"parent":"aCL","inputs":{"NUM1":[3,"bey",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bey":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCN","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCM":{"opcode":"procedures_call","next":"bez","parent":"Av","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SPHL","argumentids":"[]","warp":"true"}},"bez":{"opcode":"control_stop","next":null,"parent":"aCM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Aw":{"opcode":"control_if","next":"aCO","parent":"Av","inputs":{"CONDITION":[2,"aCP"],"SUBSTACK":[2,"ZE"]},"fields":{},"shadow":false,"topLevel":false},"aCP":{"opcode":"operator_equals","next":null,"parent":"Aw","inputs":{"OPERAND1":[3,"aCQ",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aCQ":{"opcode":"operator_mod","next":null,"parent":"aCP","inputs":{"NUM1":[3,"beA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"beA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZE":{"opcode":"procedures_call","next":"beB","parent":"Aw","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aCR"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aCR":{"opcode":"operator_equals","next":null,"parent":"ZE","inputs":{"OPERAND1":[3,"beC",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"beC":{"opcode":"data_itemoflist","next":null,"parent":"aCR","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"beB":{"opcode":"control_stop","next":null,"parent":"ZE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aCO":{"opcode":"data_setvariableto","next":"aCS","parent":"Aw","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aCS":{"opcode":"data_changevariableby","next":"beD","parent":"aCO","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"beD":{"opcode":"control_stop","next":null,"parent":"aCS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Au":{"opcode":"control_if","next":"Ax","parent":"Am","inputs":{"CONDITION":[2,"aCT"],"SUBSTACK":[2,"ZF"]},"fields":{},"shadow":false,"topLevel":false},"aCT":{"opcode":"operator_equals","next":null,"parent":"Au","inputs":{"OPERAND1":[3,"aCU",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aCU":{"opcode":"operator_mod","next":null,"parent":"aCT","inputs":{"NUM1":[3,"beE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"beE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCU","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZF":{"opcode":"procedures_call","next":"beF","parent":"Au","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aCV"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aCV":{"opcode":"operator_equals","next":null,"parent":"ZF","inputs":{"OPERAND1":[3,"beG",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"beG":{"opcode":"data_itemoflist","next":null,"parent":"aCV","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"beF":{"opcode":"control_stop","next":null,"parent":"ZF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ax":{"opcode":"control_if","next":"Ay","parent":"Au","inputs":{"CONDITION":[2,"aCW"],"SUBSTACK":[2,"ZG"]},"fields":{},"shadow":false,"topLevel":false},"aCW":{"opcode":"operator_equals","next":null,"parent":"Ax","inputs":{"OPERAND1":[3,"aCX",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aCX":{"opcode":"operator_mod","next":null,"parent":"aCW","inputs":{"NUM1":[3,"beH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"beH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aCX","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZG":{"opcode":"procedures_call","next":"beI","parent":"Ax","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"beJ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"beJ":{"opcode":"operator_not","next":null,"parent":"ZG","inputs":{},"fields":{},"shadow":false,"topLevel":false},"beI":{"opcode":"control_stop","next":null,"parent":"ZG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ay":{"opcode":"control_if","next":"beK","parent":"Ax","inputs":{"CONDITION":[2,"aCY"],"SUBSTACK":[2,"aCZ"]},"fields":{},"shadow":false,"topLevel":false},"aCY":{"opcode":"operator_equals","next":null,"parent":"Ay","inputs":{"OPERAND1":[3,"aC0",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aC0":{"opcode":"operator_mod","next":null,"parent":"aCY","inputs":{"NUM1":[3,"beL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"beL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aC0","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aCZ":{"opcode":"procedures_call","next":"beM","parent":"Ay","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","warp":"true"}},"beM":{"opcode":"control_stop","next":null,"parent":"aCZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"beK":{"opcode":"procedures_call","next":null,"parent":"Ay","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"aC1":{"opcode":"procedures_definition","next":"aC2","parent":null,"inputs":{"custom_block":[1,"beN"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"beN":{"opcode":"procedures_prototype","next":null,"parent":"aC1","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"initialize","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aC2":{"opcode":"pen_clear","next":"aC3","parent":"aC1","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aC3":{"opcode":"pen_penUp","next":"aC4","parent":"aC2","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aC4":{"opcode":"data_setvariableto","next":"aC5","parent":"aC3","inputs":{"VALUE":[1,[10,"61440"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aC5":{"opcode":"data_setvariableto","next":"aC6","parent":"aC4","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aC6":{"opcode":"pen_setPenSizeTo","next":"aC7","parent":"aC5","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aC7":{"opcode":"data_deletealloflist","next":"pn","parent":"aC6","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"pn":{"opcode":"control_repeat","next":"aC8","parent":"aC7","inputs":{"TIMES":[1,[6,"9"]],"SUBSTACK":[2,"beO"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ZH"},"beO":{"opcode":"data_addtolist","next":null,"parent":"pn","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aC8":{"opcode":"data_deletealloflist","next":"OV","parent":"pn","inputs":{},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"OV":{"opcode":"control_repeat","next":"aC9","parent":"aC8","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"beP"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aC!"},"beP":{"opcode":"data_addtolist","next":null,"parent":"OV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aC9":{"opcode":"data_replaceitemoflist","next":"aC#","parent":"OV","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aC#":{"opcode":"data_deletealloflist","next":"ZI","parent":"aC9","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"ZI":{"opcode":"control_repeat","next":"aC%","parent":"aC#","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"beQ"]},"fields":{},"shadow":false,"topLevel":false},"beQ":{"opcode":"data_addtolist","next":null,"parent":"ZI","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aC(":{"opcode":"sensing_askandwait","next":"ZJ","parent":"aC)","inputs":{"QUESTION":[1,[10,"Where should the ROM be loaded in memory?"]]},"fields":{},"shadow":false,"topLevel":false},"ZJ":{"opcode":"data_setvariableto","next":"ZK","parent":"aC(","inputs":{"VALUE":[3,"beR",[10,""]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"beR":{"opcode":"sensing_answer","next":null,"parent":"ZJ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ZK":{"opcode":"data_setvariableto","next":"aC*","parent":"ZJ","inputs":{"VALUE":[3,"beS",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"beS":{"opcode":"sensing_answer","next":null,"parent":"ZK","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aC*":{"opcode":"sensing_askandwait","next":"ZL","parent":"ZK","inputs":{"QUESTION":[1,[10,"What mode should be used? (0=Space Invaders, 1=CP/M HLE)"]]},"fields":{},"shadow":false,"topLevel":false},"ZL":{"opcode":"data_setvariableto","next":"OW","parent":"aC*","inputs":{"VALUE":[3,"aC+",[10,""]]},"fields":{"VARIABLE":["8080.mode","m]ROHZvewvW*HDY)ha@)"]},"shadow":false,"topLevel":false},"aC+":{"opcode":"operator_round","next":null,"parent":"ZL","inputs":{"NUM":[3,"beT",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"beT":{"opcode":"sensing_answer","next":null,"parent":"aC+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"beU":{"opcode":"operator_equals","next":null,"parent":"OW","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"beV":{"opcode":"data_replaceitemoflist","next":null,"parent":"aC,","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0xC9"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aC-":{"opcode":"data_setvariableto","next":"aC.","parent":"OW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"]},"shadow":false,"topLevel":false},"aC.":{"opcode":"control_clear_counter","next":"Rl","parent":"aC-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Rl":{"opcode":"control_repeat","next":"aC/","parent":"aC.","inputs":{"TIMES":[3,"aC:",[6,"0"]],"SUBSTACK":[2,"Az"]},"fields":{},"shadow":false,"topLevel":false},"aC:":{"opcode":"operator_add","next":null,"parent":"Rl","inputs":{"NUM1":[3,"beW",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"beW":{"opcode":"data_lengthoflist","next":null,"parent":"aC:","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"Az":{"opcode":"data_replaceitemoflist","next":"aC;","parent":"Rl","inputs":{"INDEX":[3,"beX",[7,"0"]],"ITEM":[3,"aC=",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"beX":{"opcode":"operator_add","next":null,"parent":"Az","inputs":{"NUM1":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aC=":{"opcode":"data_itemoflist","next":null,"parent":"Az","inputs":{"INDEX":[3,"aC?",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aC?":{"opcode":"operator_add","next":null,"parent":"aC=","inputs":{"NUM1":[3,"beY",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"beY":{"opcode":"control_get_counter","next":null,"parent":"aC?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aC;":{"opcode":"data_changevariableby","next":"beZ","parent":"Az","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"beZ":{"opcode":"control_incr_counter","next":null,"parent":"aC;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aC/":{"opcode":"data_setvariableto","next":"aC@","parent":"Rl","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aC@":{"opcode":"data_showvariable","next":"aC[","parent":"aC/","inputs":{},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aC[":{"opcode":"data_showlist","next":"aC]","parent":"aC@","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aC]":{"opcode":"data_showvariable","next":"aC^","parent":"aC[","inputs":{},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aC^":{"opcode":"data_showvariable","next":"aC_","parent":"aC]","inputs":{},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aC`":{"opcode":"procedures_definition","next":"Rm","parent":null,"inputs":{"custom_block":[1,"aC{"]},"fields":{},"shadow":false,"topLevel":true,"x":1245,"y":69},"aC{":{"opcode":"procedures_prototype","next":null,"parent":"aC`","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,"be0"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","argumentnames":"[\"cycles\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"false"}},"be0":{"opcode":"argument_reporter_string_number","next":null,"parent":"aC{","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":true,"topLevel":false},"Rm":{"opcode":"control_repeat_until","next":"be1","parent":"aC`","inputs":{"CONDITION":[2,"ZM"],"SUBSTACK":[2,"ZN"]},"fields":{},"shadow":false,"topLevel":false},"ZM":{"opcode":"operator_or","next":null,"parent":"Rm","inputs":{"OPERAND1":[2,"aC|"],"OPERAND2":[2,"aC}"]},"fields":{},"shadow":false,"topLevel":false},"aC|":{"opcode":"operator_equals","next":null,"parent":"ZM","inputs":{"OPERAND1":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[10,""]],"OPERAND2":[3,"be2",[10,"17066"]]},"fields":{},"shadow":false,"topLevel":false},"be2":{"opcode":"argument_reporter_string_number","next":null,"parent":"aC|","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"aC}":{"opcode":"operator_lt","next":null,"parent":"ZM","inputs":{"OPERAND1":[3,"be3",[10,""]],"OPERAND2":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"be3":{"opcode":"argument_reporter_string_number","next":null,"parent":"aC}","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"ZO":{"opcode":"procedures_call","next":"ZP","parent":"ZN","inputs":{"qQ}-I6z8x}.R[rfw~o}T":[3,"aC~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"qQ}-I6z8x}.R[rfw~o}T\"]","warp":"true"}},"aC~":{"opcode":"data_itemoflist","next":null,"parent":"ZO","inputs":{"INDEX":[3,"be4",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"be4":{"opcode":"operator_add","next":null,"parent":"aC~","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ZP":{"opcode":"control_if","next":null,"parent":"ZO","inputs":{"CONDITION":[2,"be5"],"SUBSTACK":[2,"Rn"]},"fields":{},"shadow":false,"topLevel":false},"be5":{"opcode":"operator_equals","next":null,"parent":"ZP","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be6":{"opcode":"operator_equals","next":null,"parent":"ZQ","inputs":{"OPERAND1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"be7":{"opcode":"event_broadcastandwait","next":null,"parent":"ZQ","inputs":{"BROADCAST_INPUT":[1,[11,"CP/M Call","Hl=mTBLxLS*0,~TGH|OS"]]},"fields":{},"shadow":false,"topLevel":false},"be1":{"opcode":"data_setvariableto","next":null,"parent":"Rm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"be8":{"opcode":"event_whenbroadcastreceived","next":"be9","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":1690,"y":21},"be9":{"opcode":"data_deletealloflist","next":null,"parent":"be8","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aDa":{"opcode":"procedures_definition","next":"aDb","parent":null,"inputs":{"custom_block":[1,"aDc"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":64},"aDc":{"opcode":"procedures_prototype","next":null,"parent":"aDa","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,"be!"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"be!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDc","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"aDb":{"opcode":"procedures_call","next":"ZR","parent":"aDa","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"ZR":{"opcode":"data_replaceitemoflist","next":"ZS","parent":"aDb","inputs":{"INDEX":[3,"aDd",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDd":{"opcode":"operator_add","next":null,"parent":"ZR","inputs":{"NUM1":[3,"be#",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDd","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ZS":{"opcode":"procedures_call","next":"ZT","parent":"ZR","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"be%",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"be%":{"opcode":"operator_add","next":null,"parent":"ZS","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ZT":{"opcode":"data_replaceitemoflist","next":"aDe","parent":"ZS","inputs":{"INDEX":[3,"be(",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"be(":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZT","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aDe":{"opcode":"data_changevariableby","next":"be)","parent":"ZT","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"be)":{"opcode":"data_changevariableby","next":null,"parent":"aDe","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aDf":{"opcode":"procedures_definition","next":"aDg","parent":null,"inputs":{"custom_block":[1,"be*"]},"fields":{},"shadow":false,"topLevel":true,"x":12758,"y":11},"be*":{"opcode":"procedures_prototype","next":null,"parent":"aDf","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.sideways","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aDg":{"opcode":"motion_setx","next":"aDh","parent":"aDf","inputs":{"X":[1,[4,"-130"]]},"fields":{},"shadow":false,"topLevel":false},"aDh":{"opcode":"data_setvariableto","next":"aDi","parent":"aDg","inputs":{"VALUE":[1,[10,"9216"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aDi":{"opcode":"control_repeat","next":null,"parent":"aDh","inputs":{"TIMES":[1,[6,"224"]],"SUBSTACK":[2,"aDj"]},"fields":{},"shadow":false,"topLevel":false},"aDj":{"opcode":"data_deletealloflist","next":"ZU","parent":"aDi","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"ZU":{"opcode":"control_repeat","next":"aDk","parent":"aDj","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"aDl"]},"fields":{},"shadow":false,"topLevel":false},"aDl":{"opcode":"data_changevariableby","next":"ZV","parent":"ZU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ZV":{"opcode":"data_setvariableto","next":"aDm","parent":"aDl","inputs":{"VALUE":[3,"aDn",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aDn":{"opcode":"data_itemoflist","next":null,"parent":"ZV","inputs":{"INDEX":[3,"aDo",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aDo":{"opcode":"operator_add","next":null,"parent":"aDn","inputs":{"NUM1":[3,"be+",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be+":{"opcode":"data_itemoflist","next":null,"parent":"aDo","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aDm":{"opcode":"control_clear_counter","next":"aDp","parent":"ZV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aDp":{"opcode":"control_repeat","next":null,"parent":"aDm","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aDq"]},"fields":{},"shadow":false,"topLevel":false},"aDq":{"opcode":"control_incr_counter","next":"aDr","parent":"aDp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aDr":{"opcode":"data_addtolist","next":null,"parent":"aDq","inputs":{"ITEM":[3,"aDs",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aDs":{"opcode":"operator_letter_of","next":null,"parent":"aDr","inputs":{"LETTER":[3,"be,",[6,"0"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"be,":{"opcode":"control_get_counter","next":null,"parent":"aDs","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aDk":{"opcode":"motion_sety","next":"aDt","parent":"ZU","inputs":{"Y":[1,[4,"-150"]]},"fields":{},"shadow":false,"topLevel":false},"aDt":{"opcode":"data_setvariableto","next":"ZW","parent":"aDk","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"ZW":{"opcode":"pen_setPenColorToColor","next":"aDu","parent":"aDt","inputs":{"COLOR":[3,"aDv",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aDv":{"opcode":"data_itemoflist","next":null,"parent":"ZW","inputs":{"INDEX":[3,"aDw",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aDw":{"opcode":"operator_add","next":null,"parent":"aDv","inputs":{"NUM1":[3,"be-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be-":{"opcode":"data_itemoflist","next":null,"parent":"aDw","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aDu":{"opcode":"pen_penDown","next":"ZX","parent":"ZW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ZX":{"opcode":"control_repeat","next":"aDx","parent":"aDu","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"aDy"]},"fields":{},"shadow":false,"topLevel":false},"aDy":{"opcode":"data_changevariableby","next":"aDz","parent":"ZX","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aDz":{"opcode":"motion_changeyby","next":"aDA","parent":"aDy","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aDA":{"opcode":"pen_setPenColorToColor","next":null,"parent":"aDz","inputs":{"COLOR":[3,"aDB",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aDB":{"opcode":"data_itemoflist","next":null,"parent":"aDA","inputs":{"INDEX":[3,"aDC",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aDC":{"opcode":"operator_add","next":null,"parent":"aDB","inputs":{"NUM1":[3,"be.",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be.":{"opcode":"data_itemoflist","next":null,"parent":"aDC","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"aDx":{"opcode":"pen_penUp","next":"be/","parent":"ZX","inputs":{},"fields":{},"shadow":false,"topLevel":false},"be/":{"opcode":"motion_changexby","next":null,"parent":"aDx","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aDD":{"opcode":"procedures_definition","next":"Ro","parent":null,"inputs":{"custom_block":[1,"ZY"]},"fields":{},"shadow":false,"topLevel":true,"x":3060,"y":1436},"ZY":{"opcode":"procedures_prototype","next":null,"parent":"aDD","inputs":{".~B;B3z;6mw4k`-6G7vz":[1,"be:"],"mawvJqmV!*RQKDRv}H7p":[1,"be;"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to reg %s","argumentids":"[\".~B;B3z;6mw4k`-6G7vz\",\"mawvJqmV!*RQKDRv}H7p\"]","argumentnames":"[\"origin\",\"destination\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"be:":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZY","inputs":{},"fields":{"VALUE":["origin",null]},"shadow":true,"topLevel":false},"be;":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZY","inputs":{},"fields":{"VALUE":["destination",null]},"shadow":true,"topLevel":false},"Ro":{"opcode":"data_replaceitemoflist","next":"be=","parent":"aDD","inputs":{"INDEX":[3,"aDE",[7,"0"]],"ITEM":[3,"aDF",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDE":{"opcode":"operator_add","next":null,"parent":"Ro","inputs":{"NUM1":[3,"be?",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be?":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDE","inputs":{},"fields":{"VALUE":["destination",null]},"shadow":false,"topLevel":false},"aDF":{"opcode":"data_itemoflist","next":null,"parent":"Ro","inputs":{"INDEX":[3,"aDG",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDG":{"opcode":"operator_add","next":null,"parent":"aDF","inputs":{"NUM1":[3,"be@",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDG","inputs":{},"fields":{"VALUE":["origin",null]},"shadow":false,"topLevel":false},"be=":{"opcode":"data_changevariableby","next":null,"parent":"Ro","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aDH":{"opcode":"procedures_definition","next":"Rp","parent":null,"inputs":{"custom_block":[1,"ZZ"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":1672},"ZZ":{"opcode":"procedures_prototype","next":null,"parent":"aDH","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,"be["],",V2y.8EtZ4qvOo?AVZTV":[1,"be]"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","argumentnames":"[\"register\",\"pair\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"be[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZZ","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"be]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZZ","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":true,"topLevel":false},"Rp":{"opcode":"procedures_call","next":"be^","parent":"aDH","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"Z0",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aDI",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"Z0":{"opcode":"operator_add","next":null,"parent":"Rp","inputs":{"NUM1":[3,"aDJ",[4,"0"]],"NUM2":[3,"aDK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aDJ":{"opcode":"operator_multiply","next":null,"parent":"Z0","inputs":{"NUM1":[3,"aDL",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aDL":{"opcode":"data_itemoflist","next":null,"parent":"aDJ","inputs":{"INDEX":[3,"be_",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"be_":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDL","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":false,"topLevel":false},"aDK":{"opcode":"data_itemoflist","next":null,"parent":"Z0","inputs":{"INDEX":[3,"aDM",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDM":{"opcode":"operator_add","next":null,"parent":"aDK","inputs":{"NUM1":[3,"be`",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDM","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":false,"topLevel":false},"aDI":{"opcode":"data_itemoflist","next":null,"parent":"Rp","inputs":{"INDEX":[3,"aDN",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDN":{"opcode":"operator_add","next":null,"parent":"aDI","inputs":{"NUM1":[3,"be{",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be{":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDN","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"be^":{"opcode":"data_changevariableby","next":null,"parent":"Rp","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aDO":{"opcode":"procedures_definition","next":"Z1","parent":null,"inputs":{"custom_block":[1,"aDP"]},"fields":{},"shadow":false,"topLevel":true,"x":2876,"y":1115},"aDP":{"opcode":"procedures_prototype","next":null,"parent":"aDO","inputs":{"]Wzru)MF=*sjN!BHvZ{V":[1,"be|"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV RAM to reg %s","argumentids":"[\"]Wzru)MF=*sjN!BHvZ{V\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"be|":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDP","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"Z2":{"opcode":"procedures_call","next":"Z3","parent":"Z1","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"Z4",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"Z4":{"opcode":"operator_add","next":null,"parent":"Z2","inputs":{"NUM1":[3,"aDQ",[4,"0"]],"NUM2":[3,"be}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aDQ":{"opcode":"operator_multiply","next":null,"parent":"Z4","inputs":{"NUM1":[3,"be~",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"be~":{"opcode":"data_itemoflist","next":null,"parent":"aDQ","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"be}":{"opcode":"data_itemoflist","next":null,"parent":"Z4","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"Z3":{"opcode":"data_replaceitemoflist","next":"bfa","parent":"Z2","inputs":{"INDEX":[3,"aDR",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aDR":{"opcode":"operator_add","next":null,"parent":"Z3","inputs":{"NUM1":[3,"bfb",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bfb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDR","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bfa":{"opcode":"data_changevariableby","next":null,"parent":"Z3","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aDS":{"opcode":"procedures_definition","next":"Rq","parent":null,"inputs":{"custom_block":[1,"aDT"]},"fields":{},"shadow":false,"topLevel":true,"x":3299,"y":514},"aDT":{"opcode":"procedures_prototype","next":null,"parent":"aDS","inputs":{":/}9?76_i(ESE2kcL]C}":[1,"bfc"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV %s","argumentids":"[\":/}9?76_i(ESE2kcL]C}\"]","argumentnames":"[\"op\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bfc":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDT","inputs":{},"fields":{"VALUE":["op",null]},"shadow":true,"topLevel":false},"Rq":{"opcode":"control_if_else","next":null,"parent":"aDS","inputs":{"CONDITION":[2,"aDU"],"SUBSTACK":[2,"aDV"],"SUBSTACK2":[2,"Rr"]},"fields":{},"shadow":false,"topLevel":false},"aDU":{"opcode":"operator_equals","next":null,"parent":"Rq","inputs":{"OPERAND1":[3,"aDW",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aDW":{"opcode":"operator_mod","next":null,"parent":"aDU","inputs":{"NUM1":[3,"bfd",[4,"0xE"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bfd":{"opcode":"argument_reporter_string_number","next":null,"parent":"aDW","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aDX":{"opcode":"procedures_call","next":null,"parent":"aDV","inputs":{"]Wzru)MF=*sjN!BHvZ{V":[3,"Z5",[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV RAM to reg %s","argumentids":"[\"]Wzru)MF=*sjN!BHvZ{V\"]","warp":"true"}},"Z5":{"opcode":"operator_add","next":null,"parent":"aDX","inputs":{"NUM1":[3,"aDY",[4,""]],"NUM2":[3,"aDZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aDY":{"opcode":"operator_multiply","next":null,"parent":"Z5","inputs":{"NUM1":[3,"aD0",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aD0":{"opcode":"operator_subtract","next":null,"parent":"aDY","inputs":{"NUM1":[3,"aD1",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aD1":{"opcode":"operator_mathop","next":null,"parent":"aD0","inputs":{"NUM":[3,"aD2",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aD2":{"opcode":"operator_divide","next":null,"parent":"aD1","inputs":{"NUM1":[3,"aD3",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aDZ":{"opcode":"operator_equals","next":null,"parent":"Z5","inputs":{"OPERAND1":[3,"aD4",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aD4":{"opcode":"operator_mod","next":null,"parent":"aDZ","inputs":{"NUM1":[3,"aD5",[4,"0x7E"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Rr":{"opcode":"control_if_else","next":null,"parent":"Rq","inputs":{"CONDITION":[2,"aD6"],"SUBSTACK":[2,"aD7"],"SUBSTACK2":[2,"aD8"]},"fields":{},"shadow":false,"topLevel":false},"aD6":{"opcode":"operator_equals","next":null,"parent":"Rr","inputs":{"OPERAND1":[3,"aD9",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aD9":{"opcode":"operator_mathop","next":null,"parent":"aD6","inputs":{"NUM":[3,"aD!",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aD!":{"opcode":"operator_divide","next":null,"parent":"aD9","inputs":{"NUM1":[3,"bfe",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bfe":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD!","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aD#":{"opcode":"procedures_call","next":null,"parent":"aD7","inputs":{"HO$UTfGk/*71}{qc6sgr":[3,"aD%",[10,""]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"aD%":{"opcode":"operator_mod","next":null,"parent":"aD#","inputs":{"NUM1":[3,"bff",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bff":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD%","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"Z6":{"opcode":"procedures_call","next":null,"parent":"aD8","inputs":{".~B;B3z;6mw4k`-6G7vz":[3,"aD(",[10,""]],"mawvJqmV!*RQKDRv}H7p":[3,"aD)",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to reg %s","argumentids":"[\".~B;B3z;6mw4k`-6G7vz\",\"mawvJqmV!*RQKDRv}H7p\"]","warp":"true"}},"aD(":{"opcode":"operator_mod","next":null,"parent":"Z6","inputs":{"NUM1":[3,"bfg",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bfg":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD(","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aD)":{"opcode":"operator_mathop","next":null,"parent":"Z6","inputs":{"NUM":[3,"aD*",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aD*":{"opcode":"operator_divide","next":null,"parent":"aD)","inputs":{"NUM1":[3,"bfh",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bfh":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD*","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aD+":{"opcode":"procedures_definition","next":"aD,","parent":null,"inputs":{"custom_block":[1,"bfi"]},"fields":{},"shadow":false,"topLevel":true,"x":8188,"y":64},"bfi":{"opcode":"procedures_prototype","next":null,"parent":"aD+","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI SP","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aD,":{"opcode":"procedures_call","next":"aD-","parent":"aD+","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aD-":{"opcode":"data_setvariableto","next":"aD.","parent":"aD,","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aD.":{"opcode":"data_changevariableby","next":"bfj","parent":"aD-","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bfj":{"opcode":"data_changevariableby","next":null,"parent":"aD.","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aD/":{"opcode":"procedures_definition","next":"OX","parent":null,"inputs":{"custom_block":[1,"aD:"]},"fields":{},"shadow":false,"topLevel":true,"x":3056,"y":1926},"aD:":{"opcode":"procedures_prototype","next":null,"parent":"aD/","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[1,"bfk"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"\",\"false\"]","warp":"true"}},"bfk":{"opcode":"argument_reporter_boolean","next":null,"parent":"aD:","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"OX":{"opcode":"control_if_else","next":"bfl","parent":"aD/","inputs":{"CONDITION":[2,"bfm"],"SUBSTACK":[2,"aD;"],"SUBSTACK2":[2,"bfn"]},"fields":{},"shadow":false,"topLevel":false},"bfm":{"opcode":"argument_reporter_boolean","next":null,"parent":"OX","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aD;":{"opcode":"procedures_call","next":"bfo","parent":"OX","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bfo":{"opcode":"data_setvariableto","next":null,"parent":"aD;","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bfn":{"opcode":"data_changevariableby","next":null,"parent":"OX","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bfl":{"opcode":"data_changevariableby","next":null,"parent":"OX","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aD=":{"opcode":"procedures_definition","next":"Rs","parent":null,"inputs":{"custom_block":[1,"Z7"]},"fields":{},"shadow":false,"topLevel":true,"x":12541,"y":1440},"Z7":{"opcode":"procedures_prototype","next":null,"parent":"aD=","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[1,"bfp"],"vOp?}/Jc:6!H:))h4`(3":[1,"bfq"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","argumentnames":"[\"address\",\"byte\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bfp":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z7","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"bfq":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z7","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"Z8":{"opcode":"control_if","next":null,"parent":"Rs","inputs":{"CONDITION":[2,"aD?"],"SUBSTACK":[2,"Z9"]},"fields":{},"shadow":false,"topLevel":false},"aD?":{"opcode":"operator_lt","next":null,"parent":"Z8","inputs":{"OPERAND1":[3,"aD@",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"bfr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD@","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bfs":{"opcode":"operator_equals","next":null,"parent":"Rs","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z9":{"opcode":"data_replaceitemoflist","next":null,"parent":"Z8","inputs":{"INDEX":[3,"aD[",[7,"0"]],"ITEM":[3,"bft",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aD[":{"opcode":"operator_add","next":null,"parent":"Z9","inputs":{"NUM1":[3,"aD]",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bfu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD]","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bft":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z9","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"aD^":{"opcode":"procedures_definition","next":"Z!","parent":null,"inputs":{"custom_block":[1,"bfv"]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":64},"bfv":{"opcode":"procedures_prototype","next":null,"parent":"aD^","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SPHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Z!":{"opcode":"data_setvariableto","next":"bfw","parent":"aD^","inputs":{"VALUE":[3,"Z#",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"Z#":{"opcode":"operator_add","next":null,"parent":"Z!","inputs":{"NUM1":[3,"aD_",[4,"0"]],"NUM2":[3,"bfx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aD_":{"opcode":"operator_multiply","next":null,"parent":"Z#","inputs":{"NUM1":[3,"bfy",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bfy":{"opcode":"data_itemoflist","next":null,"parent":"aD_","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfx":{"opcode":"data_itemoflist","next":null,"parent":"Z#","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfw":{"opcode":"data_changevariableby","next":null,"parent":"Z!","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aD`":{"opcode":"procedures_definition","next":"OY","parent":null,"inputs":{"custom_block":[1,"aD{"]},"fields":{},"shadow":false,"topLevel":true,"x":8188,"y":408},"aD{":{"opcode":"procedures_prototype","next":null,"parent":"aD`","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[1,"bfz"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bfz":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD{","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"OY":{"opcode":"control_if_else","next":"Z%","parent":"aD`","inputs":{"CONDITION":[2,"aD|"],"SUBSTACK":[2,"Rt"],"SUBSTACK2":[2,"aD}"]},"fields":{},"shadow":false,"topLevel":false},"aD|":{"opcode":"operator_lt","next":null,"parent":"OY","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bfA",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bfA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD|","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Rt":{"opcode":"control_if_else","next":null,"parent":"OY","inputs":{"CONDITION":[2,"aD~"],"SUBSTACK":[2,"Z("],"SUBSTACK2":[2,"Z)"]},"fields":{},"shadow":false,"topLevel":false},"aD~":{"opcode":"operator_equals","next":null,"parent":"Rt","inputs":{"OPERAND1":[3,"bfB",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bfB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD~","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Z(":{"opcode":"procedures_call","next":"bfC","parent":"Rt","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"Z*",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"Z*":{"opcode":"operator_add","next":null,"parent":"Z(","inputs":{"NUM1":[3,"aEa",[4,"0"]],"NUM2":[3,"bfD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEa":{"opcode":"operator_multiply","next":null,"parent":"Z*","inputs":{"NUM1":[3,"bfE",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bfE":{"opcode":"data_itemoflist","next":null,"parent":"aEa","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfD":{"opcode":"data_itemoflist","next":null,"parent":"Z*","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfC":{"opcode":"data_changevariableby","next":null,"parent":"Z(","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"Z)":{"opcode":"data_setvariableto","next":"bfF","parent":"Rt","inputs":{"VALUE":[3,"aEb",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aEb":{"opcode":"data_itemoflist","next":null,"parent":"Z)","inputs":{"INDEX":[3,"aEc",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aEc":{"opcode":"operator_add","next":null,"parent":"aEb","inputs":{"NUM1":[3,"bfG",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bfG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEc","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bfF":{"opcode":"data_changevariableby","next":null,"parent":"Z)","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aD}":{"opcode":"procedures_call","next":"aEd","parent":"OY","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aEd":{"opcode":"data_changevariableby","next":"bfH","parent":"aD}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bfH":{"opcode":"data_changevariableby","next":null,"parent":"aEd","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"Z%":{"opcode":"data_setvariableto","next":"Z+","parent":"OY","inputs":{"VALUE":[3,"aEe",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aEe":{"opcode":"operator_add","next":null,"parent":"Z%","inputs":{"NUM1":[3,"bfI",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bfI":{"opcode":"data_itemoflist","next":null,"parent":"aEe","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"Z+":{"opcode":"data_replaceitemoflist","next":"Z,","parent":"Z%","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aEf",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEf":{"opcode":"operator_add","next":null,"parent":"Z+","inputs":{"NUM1":[3,"bfJ",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bfJ":{"opcode":"operator_gt","next":null,"parent":"aEf","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Z,":{"opcode":"data_replaceitemoflist","next":"Z-","parent":"Z+","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aEg",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEg":{"opcode":"operator_mod","next":null,"parent":"Z,","inputs":{"NUM1":[3,"aEh",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aEh":{"opcode":"operator_add","next":null,"parent":"aEg","inputs":{"NUM1":[3,"bfK",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bfK":{"opcode":"operator_mod","next":null,"parent":"aEh","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Z.":{"opcode":"data_replaceitemoflist","next":"Z/","parent":"Z-","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aEi",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEi":{"opcode":"operator_add","next":null,"parent":"Z.","inputs":{"NUM1":[3,"aEj",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEj":{"opcode":"operator_equals","next":null,"parent":"aEi","inputs":{"OPERAND1":[3,"bfL",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bfL":{"opcode":"operator_mod","next":null,"parent":"aEj","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Z/":{"opcode":"data_replaceitemoflist","next":"aEk","parent":"Z.","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aEl",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEl":{"opcode":"operator_add","next":null,"parent":"Z/","inputs":{"NUM1":[3,"aEm",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEm":{"opcode":"operator_gt","next":null,"parent":"aEl","inputs":{"OPERAND1":[3,"bfM",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Z-":{"opcode":"data_replaceitemoflist","next":"Z.","parent":"Z,","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aEn",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEn":{"opcode":"operator_add","next":null,"parent":"Z-","inputs":{"NUM1":[3,"aEo",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEo":{"opcode":"operator_gt","next":null,"parent":"aEn","inputs":{"OPERAND1":[3,"Z:",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Z:":{"opcode":"operator_add","next":null,"parent":"aEo","inputs":{"NUM1":[3,"aEp",[4,"0"]],"NUM2":[3,"bfN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEp":{"opcode":"operator_mod","next":null,"parent":"Z:","inputs":{"NUM1":[3,"bfO",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bfO":{"opcode":"data_itemoflist","next":null,"parent":"aEp","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfN":{"opcode":"operator_mod","next":null,"parent":"Z:","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aEk":{"opcode":"data_replaceitemoflist","next":null,"parent":"Z/","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bfP",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfP":{"opcode":"operator_mod","next":null,"parent":"aEk","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEq":{"opcode":"procedures_definition","next":"OZ","parent":null,"inputs":{"custom_block":[1,"aEr"]},"fields":{},"shadow":false,"topLevel":true,"x":10271,"y":224},"aEr":{"opcode":"procedures_prototype","next":null,"parent":"aEq","inputs":{"g~W%j(pxt{obs8]2L|in":[1,"bfQ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bfQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEr","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"OZ":{"opcode":"control_if_else","next":"Z;","parent":"aEq","inputs":{"CONDITION":[2,"aEs"],"SUBSTACK":[2,"Ru"],"SUBSTACK2":[2,"aEt"]},"fields":{},"shadow":false,"topLevel":false},"aEs":{"opcode":"operator_lt","next":null,"parent":"OZ","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bfR",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bfR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEs","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Ru":{"opcode":"control_if_else","next":null,"parent":"OZ","inputs":{"CONDITION":[2,"aEu"],"SUBSTACK":[2,"Z="],"SUBSTACK2":[2,"Z?"]},"fields":{},"shadow":false,"topLevel":false},"aEu":{"opcode":"operator_equals","next":null,"parent":"Ru","inputs":{"OPERAND1":[3,"bfS",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bfS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEu","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Z=":{"opcode":"procedures_call","next":"bfT","parent":"Ru","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"Z@",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"Z@":{"opcode":"operator_add","next":null,"parent":"Z=","inputs":{"NUM1":[3,"aEv",[4,"0"]],"NUM2":[3,"bfU",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEv":{"opcode":"operator_multiply","next":null,"parent":"Z@","inputs":{"NUM1":[3,"bfV",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bfV":{"opcode":"data_itemoflist","next":null,"parent":"aEv","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfU":{"opcode":"data_itemoflist","next":null,"parent":"Z@","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bfT":{"opcode":"data_changevariableby","next":null,"parent":"Z=","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"Z?":{"opcode":"data_setvariableto","next":"bfW","parent":"Ru","inputs":{"VALUE":[3,"aEw",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aEw":{"opcode":"data_itemoflist","next":null,"parent":"Z?","inputs":{"INDEX":[3,"aEx",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aEx":{"opcode":"operator_add","next":null,"parent":"aEw","inputs":{"NUM1":[3,"bfX",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bfX":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEx","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bfW":{"opcode":"data_changevariableby","next":null,"parent":"Z?","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aEt":{"opcode":"procedures_call","next":"aEy","parent":"OZ","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aEy":{"opcode":"data_changevariableby","next":"bfY","parent":"aEt","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bfY":{"opcode":"data_changevariableby","next":null,"parent":"aEy","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"Z;":{"opcode":"data_setvariableto","next":"Z[","parent":"OZ","inputs":{"VALUE":[3,"Z]",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Z]":{"opcode":"operator_add","next":null,"parent":"Z;","inputs":{"NUM1":[3,"bfZ",[4,"0"]],"NUM2":[3,"aEz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bfZ":{"opcode":"data_itemoflist","next":null,"parent":"Z]","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aEz":{"opcode":"operator_add","next":null,"parent":"Z]","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bf0",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bf0":{"opcode":"data_itemoflist","next":null,"parent":"aEz","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"Z[":{"opcode":"data_replaceitemoflist","next":"Z^","parent":"Z;","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aEA",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEA":{"opcode":"operator_add","next":null,"parent":"Z[","inputs":{"NUM1":[3,"bf1",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bf1":{"opcode":"operator_gt","next":null,"parent":"aEA","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Z^":{"opcode":"data_replaceitemoflist","next":"Z_","parent":"Z[","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aEB",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEB":{"opcode":"operator_mod","next":null,"parent":"Z^","inputs":{"NUM1":[3,"aEC",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aEC":{"opcode":"operator_add","next":null,"parent":"aEB","inputs":{"NUM1":[3,"bf2",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bf2":{"opcode":"operator_mod","next":null,"parent":"aEC","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Z`":{"opcode":"data_replaceitemoflist","next":"Z{","parent":"Z_","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aED",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aED":{"opcode":"operator_add","next":null,"parent":"Z`","inputs":{"NUM1":[3,"aEE",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEE":{"opcode":"operator_equals","next":null,"parent":"aED","inputs":{"OPERAND1":[3,"bf3",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bf3":{"opcode":"operator_mod","next":null,"parent":"aEE","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Z{":{"opcode":"data_replaceitemoflist","next":"aEF","parent":"Z`","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aEG",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aEG":{"opcode":"operator_add","next":null,"parent":"Z{","inputs":{"NUM1":[3,"aEH",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEH":{"opcode":"operator_gt","next":null,"parent":"aEG","inputs":{"OPERAND1":[3,"bf4",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aEF":{"opcode":"data_replaceitemoflist","next":null,"parent":"Z{","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bf5",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf5":{"opcode":"operator_mod","next":null,"parent":"aEF","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEI":{"opcode":"procedures_definition","next":"Z|","parent":null,"inputs":{"custom_block":[1,"Z}"]},"fields":{},"shadow":false,"topLevel":true,"x":12825,"y":1919},"Z}":{"opcode":"procedures_prototype","next":null,"parent":"aEI","inputs":{"mDrFT4#uiurg4Fi]*G%T":[1,"bf6"],"!#ctWtPPjI+B?Uc*1(`?":[1,"bf7"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","argumentnames":"[\"address\",\"extrabytes\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bf6":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z}","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"bf7":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z}","inputs":{},"fields":{"VALUE":["extrabytes",null]},"shadow":true,"topLevel":false},"Z|":{"opcode":"data_setvariableto","next":"Z~","parent":"aEI","inputs":{"VALUE":[3,"aEJ",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aEJ":{"opcode":"data_itemoflist","next":null,"parent":"Z|","inputs":{"INDEX":[3,"aEK",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aEK":{"opcode":"operator_add","next":null,"parent":"aEJ","inputs":{"NUM1":[3,"aEL",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bf8":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEL","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"Z~":{"opcode":"control_if","next":null,"parent":"Z|","inputs":{"CONDITION":[2,"aEM"],"SUBSTACK":[2,"aEN"]},"fields":{},"shadow":false,"topLevel":false},"aEM":{"opcode":"operator_equals","next":null,"parent":"Z~","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"bf9",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bf9":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEM","inputs":{},"fields":{"VALUE":["extrabytes",null]},"shadow":false,"topLevel":false},"aEN":{"opcode":"data_changevariableby","next":null,"parent":"Z~","inputs":{"VALUE":[3,"aEO",[4,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aEO":{"opcode":"operator_multiply","next":null,"parent":"aEN","inputs":{"NUM1":[3,"aEP",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEP":{"opcode":"data_itemoflist","next":null,"parent":"aEO","inputs":{"INDEX":[3,"aEQ",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aEQ":{"opcode":"operator_add","next":null,"parent":"aEP","inputs":{"NUM1":[3,"aER",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bf!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aER","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"aES":{"opcode":"procedures_definition","next":"O0","parent":null,"inputs":{"custom_block":[1,"aET"]},"fields":{},"shadow":false,"topLevel":true,"x":9398,"y":64},"aET":{"opcode":"procedures_prototype","next":null,"parent":"aES","inputs":{"69W4N%[To:QDj1jXCPU7":[1,"bf#"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bf#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aET","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O0":{"opcode":"control_if_else","next":"0a","parent":"aES","inputs":{"CONDITION":[2,"aEU"],"SUBSTACK":[2,"Rv"],"SUBSTACK2":[2,"aEV"]},"fields":{},"shadow":false,"topLevel":false},"aEU":{"opcode":"operator_lt","next":null,"parent":"O0","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bf%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bf%":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEU","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Rv":{"opcode":"control_if_else","next":null,"parent":"O0","inputs":{"CONDITION":[2,"aEW"],"SUBSTACK":[2,"0b"],"SUBSTACK2":[2,"0c"]},"fields":{},"shadow":false,"topLevel":false},"aEW":{"opcode":"operator_equals","next":null,"parent":"Rv","inputs":{"OPERAND1":[3,"bf(",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bf(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEW","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0b":{"opcode":"procedures_call","next":"bf)","parent":"Rv","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0d",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0d":{"opcode":"operator_add","next":null,"parent":"0b","inputs":{"NUM1":[3,"aEX",[4,"0"]],"NUM2":[3,"bf*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEX":{"opcode":"operator_multiply","next":null,"parent":"0d","inputs":{"NUM1":[3,"bf+",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bf+":{"opcode":"data_itemoflist","next":null,"parent":"aEX","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf*":{"opcode":"data_itemoflist","next":null,"parent":"0d","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf)":{"opcode":"data_changevariableby","next":null,"parent":"0b","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0c":{"opcode":"data_setvariableto","next":"bf,","parent":"Rv","inputs":{"VALUE":[3,"aEY",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aEY":{"opcode":"data_itemoflist","next":null,"parent":"0c","inputs":{"INDEX":[3,"aEZ",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aEZ":{"opcode":"operator_add","next":null,"parent":"aEY","inputs":{"NUM1":[3,"bf-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bf-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aEZ","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bf,":{"opcode":"data_changevariableby","next":null,"parent":"0c","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aEV":{"opcode":"procedures_call","next":"aE0","parent":"O0","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aE0":{"opcode":"data_changevariableby","next":"bf.","parent":"aEV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bf.":{"opcode":"data_changevariableby","next":null,"parent":"aE0","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0a":{"opcode":"data_setvariableto","next":"0e","parent":"O0","inputs":{"VALUE":[3,"aE1",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aE1":{"opcode":"operator_mod","next":null,"parent":"0a","inputs":{"NUM1":[3,"aE2",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aE2":{"opcode":"operator_subtract","next":null,"parent":"aE1","inputs":{"NUM1":[3,"bf/",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bf/":{"opcode":"data_itemoflist","next":null,"parent":"aE2","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0e":{"opcode":"data_replaceitemoflist","next":"0f","parent":"0a","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aE3",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE3":{"opcode":"operator_add","next":null,"parent":"0e","inputs":{"NUM1":[3,"bf:",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bf:":{"opcode":"operator_gt","next":null,"parent":"aE3","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"0f":{"opcode":"data_replaceitemoflist","next":"0g","parent":"0e","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aE4",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE4":{"opcode":"operator_mod","next":null,"parent":"0f","inputs":{"NUM1":[3,"aE5",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aE5":{"opcode":"operator_add","next":null,"parent":"aE4","inputs":{"NUM1":[3,"bf;",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bf;":{"opcode":"operator_mod","next":null,"parent":"aE5","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0h":{"opcode":"data_replaceitemoflist","next":"0i","parent":"0g","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aE6",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE6":{"opcode":"operator_add","next":null,"parent":"0h","inputs":{"NUM1":[3,"aE7",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aE7":{"opcode":"operator_equals","next":null,"parent":"aE6","inputs":{"OPERAND1":[3,"bf=",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bf=":{"opcode":"operator_mod","next":null,"parent":"aE7","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"0i":{"opcode":"data_replaceitemoflist","next":"aE8","parent":"0h","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aE9",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE9":{"opcode":"operator_add","next":null,"parent":"0i","inputs":{"NUM1":[3,"aE!",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aE!":{"opcode":"operator_gt","next":null,"parent":"aE9","inputs":{"OPERAND1":[3,"bf?",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aE8":{"opcode":"data_replaceitemoflist","next":null,"parent":"0i","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bf@",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf@":{"opcode":"operator_mod","next":null,"parent":"aE8","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aE#":{"opcode":"procedures_definition","next":"O1","parent":null,"inputs":{"custom_block":[1,"aE%"]},"fields":{},"shadow":false,"topLevel":true,"x":10271,"y":1368},"aE%":{"opcode":"procedures_prototype","next":null,"parent":"aE#","inputs":{"R2;pFT-x31=s{}dTh^dR":[1,"bf["]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bf[":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE%","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O1":{"opcode":"control_if_else","next":"0j","parent":"aE#","inputs":{"CONDITION":[2,"aE("],"SUBSTACK":[2,"Rw"],"SUBSTACK2":[2,"aE)"]},"fields":{},"shadow":false,"topLevel":false},"aE(":{"opcode":"operator_lt","next":null,"parent":"O1","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bf]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bf]":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE(","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Rw":{"opcode":"control_if_else","next":null,"parent":"O1","inputs":{"CONDITION":[2,"aE*"],"SUBSTACK":[2,"0k"],"SUBSTACK2":[2,"0l"]},"fields":{},"shadow":false,"topLevel":false},"aE*":{"opcode":"operator_equals","next":null,"parent":"Rw","inputs":{"OPERAND1":[3,"bf^",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bf^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE*","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0k":{"opcode":"procedures_call","next":"bf_","parent":"Rw","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0m",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0m":{"opcode":"operator_add","next":null,"parent":"0k","inputs":{"NUM1":[3,"aE+",[4,"0"]],"NUM2":[3,"bf`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aE+":{"opcode":"operator_multiply","next":null,"parent":"0m","inputs":{"NUM1":[3,"bf{",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bf{":{"opcode":"data_itemoflist","next":null,"parent":"aE+","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf`":{"opcode":"data_itemoflist","next":null,"parent":"0m","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bf_":{"opcode":"data_changevariableby","next":null,"parent":"0k","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0l":{"opcode":"data_setvariableto","next":"bf|","parent":"Rw","inputs":{"VALUE":[3,"aE,",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aE,":{"opcode":"data_itemoflist","next":null,"parent":"0l","inputs":{"INDEX":[3,"aE-",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aE-":{"opcode":"operator_add","next":null,"parent":"aE,","inputs":{"NUM1":[3,"bf}",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bf}":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE-","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bf|":{"opcode":"data_changevariableby","next":null,"parent":"0l","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aE)":{"opcode":"procedures_call","next":"aE.","parent":"O1","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aE.":{"opcode":"data_changevariableby","next":"bf~","parent":"aE)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bf~":{"opcode":"data_changevariableby","next":null,"parent":"aE.","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0j":{"opcode":"data_setvariableto","next":"0n","parent":"O1","inputs":{"VALUE":[3,"aE/",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aE/":{"opcode":"operator_mod","next":null,"parent":"0j","inputs":{"NUM1":[3,"0o",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"0o":{"opcode":"operator_subtract","next":null,"parent":"aE/","inputs":{"NUM1":[3,"bga",[4,"0"]],"NUM2":[3,"aE:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bga":{"opcode":"data_itemoflist","next":null,"parent":"0o","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aE:":{"opcode":"operator_add","next":null,"parent":"0o","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bgb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bgb":{"opcode":"data_itemoflist","next":null,"parent":"aE:","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0n":{"opcode":"data_replaceitemoflist","next":"0p","parent":"0j","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aE;",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE;":{"opcode":"operator_add","next":null,"parent":"0n","inputs":{"NUM1":[3,"bgc",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgc":{"opcode":"operator_gt","next":null,"parent":"aE;","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"0p":{"opcode":"data_replaceitemoflist","next":"0q","parent":"0n","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aE=",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE=":{"opcode":"operator_mod","next":null,"parent":"0p","inputs":{"NUM1":[3,"aE?",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aE?":{"opcode":"operator_add","next":null,"parent":"aE=","inputs":{"NUM1":[3,"bgd",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgd":{"opcode":"operator_mod","next":null,"parent":"aE?","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0r":{"opcode":"data_replaceitemoflist","next":"0s","parent":"0q","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aE@",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE@":{"opcode":"operator_add","next":null,"parent":"0r","inputs":{"NUM1":[3,"aE[",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aE[":{"opcode":"operator_equals","next":null,"parent":"aE@","inputs":{"OPERAND1":[3,"bge",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bge":{"opcode":"operator_mod","next":null,"parent":"aE[","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"0s":{"opcode":"data_replaceitemoflist","next":"aE]","parent":"0r","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aE^",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aE^":{"opcode":"operator_add","next":null,"parent":"0s","inputs":{"NUM1":[3,"aE_",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aE_":{"opcode":"operator_gt","next":null,"parent":"aE^","inputs":{"OPERAND1":[3,"bgf",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aE]":{"opcode":"data_replaceitemoflist","next":null,"parent":"0s","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bgg",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgg":{"opcode":"operator_mod","next":null,"parent":"aE]","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aE`":{"opcode":"procedures_definition","next":"O2","parent":null,"inputs":{"custom_block":[1,"aE{"]},"fields":{},"shadow":false,"topLevel":true,"x":11481,"y":64},"aE{":{"opcode":"procedures_prototype","next":null,"parent":"aE`","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[1,"bgh"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bgh":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE{","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O2":{"opcode":"control_if_else","next":"0t","parent":"aE`","inputs":{"CONDITION":[2,"aE|"],"SUBSTACK":[2,"Rx"],"SUBSTACK2":[2,"aE}"]},"fields":{},"shadow":false,"topLevel":false},"aE|":{"opcode":"operator_lt","next":null,"parent":"O2","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bgi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bgi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE|","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Rx":{"opcode":"control_if_else","next":null,"parent":"O2","inputs":{"CONDITION":[2,"aE~"],"SUBSTACK":[2,"0u"],"SUBSTACK2":[2,"0v"]},"fields":{},"shadow":false,"topLevel":false},"aE~":{"opcode":"operator_equals","next":null,"parent":"Rx","inputs":{"OPERAND1":[3,"bgj",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bgj":{"opcode":"argument_reporter_string_number","next":null,"parent":"aE~","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0u":{"opcode":"procedures_call","next":"bgk","parent":"Rx","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0w",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0w":{"opcode":"operator_add","next":null,"parent":"0u","inputs":{"NUM1":[3,"aFa",[4,"0"]],"NUM2":[3,"bgl",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFa":{"opcode":"operator_multiply","next":null,"parent":"0w","inputs":{"NUM1":[3,"bgm",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgm":{"opcode":"data_itemoflist","next":null,"parent":"aFa","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgl":{"opcode":"data_itemoflist","next":null,"parent":"0w","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgk":{"opcode":"data_changevariableby","next":null,"parent":"0u","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0v":{"opcode":"data_setvariableto","next":"bgn","parent":"Rx","inputs":{"VALUE":[3,"aFb",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aFb":{"opcode":"data_itemoflist","next":null,"parent":"0v","inputs":{"INDEX":[3,"aFc",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFc":{"opcode":"operator_add","next":null,"parent":"aFb","inputs":{"NUM1":[3,"bgo",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgo":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFc","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bgn":{"opcode":"data_changevariableby","next":null,"parent":"0v","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aE}":{"opcode":"procedures_call","next":"aFd","parent":"O2","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aFd":{"opcode":"data_changevariableby","next":"bgp","parent":"aE}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bgp":{"opcode":"data_changevariableby","next":null,"parent":"aFd","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0t":{"opcode":"data_setvariableto","next":"aFe","parent":"O2","inputs":{"VALUE":[3,"aFf",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aFf":{"opcode":"data_itemoflist","next":null,"parent":"0t","inputs":{"INDEX":[3,"aFg",[7,"0"]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aFg":{"opcode":"operator_add","next":null,"parent":"aFf","inputs":{"NUM1":[3,"aFh",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFh":{"opcode":"operator_add","next":null,"parent":"aFg","inputs":{"NUM1":[3,"aFi",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFi":{"opcode":"operator_multiply","next":null,"parent":"aFh","inputs":{"NUM1":[3,"bgq",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgq":{"opcode":"data_itemoflist","next":null,"parent":"aFi","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFe":{"opcode":"data_replaceitemoflist","next":"0x","parent":"0t","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0x":{"opcode":"data_replaceitemoflist","next":"0y","parent":"aFe","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aFj",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFj":{"opcode":"operator_mod","next":null,"parent":"0x","inputs":{"NUM1":[3,"aFk",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aFk":{"opcode":"operator_add","next":null,"parent":"aFj","inputs":{"NUM1":[3,"bgr",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgr":{"opcode":"operator_mod","next":null,"parent":"aFk","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0z":{"opcode":"data_replaceitemoflist","next":"0A","parent":"0y","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aFl",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFl":{"opcode":"operator_add","next":null,"parent":"0z","inputs":{"NUM1":[3,"bgs",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgs":{"opcode":"operator_equals","next":null,"parent":"aFl","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"0A":{"opcode":"data_replaceitemoflist","next":"bgt","parent":"0z","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aFm",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFm":{"opcode":"operator_add","next":null,"parent":"0A","inputs":{"NUM1":[3,"bgu",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgu":{"opcode":"operator_gt","next":null,"parent":"aFm","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bgt":{"opcode":"data_replaceitemoflist","next":null,"parent":"0A","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFn":{"opcode":"procedures_definition","next":"O3","parent":null,"inputs":{"custom_block":[1,"aFo"]},"fields":{},"shadow":false,"topLevel":true,"x":11529,"y":1200},"aFo":{"opcode":"procedures_prototype","next":null,"parent":"aFn","inputs":{"t}uDb?K/qpdRG{z:HKi0":[1,"bgv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bgv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFo","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O3":{"opcode":"control_if_else","next":"0B","parent":"aFn","inputs":{"CONDITION":[2,"aFp"],"SUBSTACK":[2,"Ry"],"SUBSTACK2":[2,"aFq"]},"fields":{},"shadow":false,"topLevel":false},"aFp":{"opcode":"operator_lt","next":null,"parent":"O3","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bgw",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bgw":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFp","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Ry":{"opcode":"control_if_else","next":null,"parent":"O3","inputs":{"CONDITION":[2,"aFr"],"SUBSTACK":[2,"0C"],"SUBSTACK2":[2,"0D"]},"fields":{},"shadow":false,"topLevel":false},"aFr":{"opcode":"operator_equals","next":null,"parent":"Ry","inputs":{"OPERAND1":[3,"bgx",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bgx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFr","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0C":{"opcode":"procedures_call","next":"bgy","parent":"Ry","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0E",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0E":{"opcode":"operator_add","next":null,"parent":"0C","inputs":{"NUM1":[3,"aFs",[4,"0"]],"NUM2":[3,"bgz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFs":{"opcode":"operator_multiply","next":null,"parent":"0E","inputs":{"NUM1":[3,"bgA",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgA":{"opcode":"data_itemoflist","next":null,"parent":"aFs","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgz":{"opcode":"data_itemoflist","next":null,"parent":"0E","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgy":{"opcode":"data_changevariableby","next":null,"parent":"0C","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0D":{"opcode":"data_setvariableto","next":"bgB","parent":"Ry","inputs":{"VALUE":[3,"aFt",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aFt":{"opcode":"data_itemoflist","next":null,"parent":"0D","inputs":{"INDEX":[3,"aFu",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFu":{"opcode":"operator_add","next":null,"parent":"aFt","inputs":{"NUM1":[3,"bgC",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFu","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bgB":{"opcode":"data_changevariableby","next":null,"parent":"0D","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aFq":{"opcode":"procedures_call","next":"aFv","parent":"O3","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aFv":{"opcode":"data_changevariableby","next":"bgD","parent":"aFq","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bgD":{"opcode":"data_changevariableby","next":null,"parent":"aFv","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0B":{"opcode":"data_setvariableto","next":"aFw","parent":"O3","inputs":{"VALUE":[3,"aFx",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aFx":{"opcode":"data_itemoflist","next":null,"parent":"0B","inputs":{"INDEX":[3,"aFy",[7,"0"]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aFy":{"opcode":"operator_add","next":null,"parent":"aFx","inputs":{"NUM1":[3,"aFz",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFz":{"opcode":"operator_add","next":null,"parent":"aFy","inputs":{"NUM1":[3,"aFA",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFA":{"opcode":"operator_multiply","next":null,"parent":"aFz","inputs":{"NUM1":[3,"bgE",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgE":{"opcode":"data_itemoflist","next":null,"parent":"aFA","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFw":{"opcode":"data_replaceitemoflist","next":"aFB","parent":"0B","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0F":{"opcode":"data_replaceitemoflist","next":"0G","parent":"aFB","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aFC",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFC":{"opcode":"operator_mod","next":null,"parent":"0F","inputs":{"NUM1":[3,"aFD",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aFD":{"opcode":"operator_add","next":null,"parent":"aFC","inputs":{"NUM1":[3,"bgF",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgF":{"opcode":"operator_mod","next":null,"parent":"aFD","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0G":{"opcode":"data_replaceitemoflist","next":"0H","parent":"0F","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aFE",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFE":{"opcode":"operator_add","next":null,"parent":"0G","inputs":{"NUM1":[3,"bgG",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgG":{"opcode":"operator_equals","next":null,"parent":"aFE","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"0H":{"opcode":"data_replaceitemoflist","next":"bgH","parent":"0G","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aFF",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFF":{"opcode":"operator_add","next":null,"parent":"0H","inputs":{"NUM1":[3,"bgI",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgI":{"opcode":"operator_gt","next":null,"parent":"aFF","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bgH":{"opcode":"data_replaceitemoflist","next":null,"parent":"0H","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFG":{"opcode":"procedures_definition","next":"O4","parent":null,"inputs":{"custom_block":[1,"aFH"]},"fields":{},"shadow":false,"topLevel":true,"x":8243,"y":1694},"aFH":{"opcode":"procedures_prototype","next":null,"parent":"aFG","inputs":{"HEES%ES}pzo}h9}$1(jb":[1,"bgJ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bgJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFH","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O4":{"opcode":"control_if_else","next":"0I","parent":"aFG","inputs":{"CONDITION":[2,"aFI"],"SUBSTACK":[2,"Rz"],"SUBSTACK2":[2,"aFJ"]},"fields":{},"shadow":false,"topLevel":false},"aFI":{"opcode":"operator_lt","next":null,"parent":"O4","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bgK",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bgK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFI","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Rz":{"opcode":"control_if_else","next":null,"parent":"O4","inputs":{"CONDITION":[2,"aFK"],"SUBSTACK":[2,"0J"],"SUBSTACK2":[2,"0K"]},"fields":{},"shadow":false,"topLevel":false},"aFK":{"opcode":"operator_equals","next":null,"parent":"Rz","inputs":{"OPERAND1":[3,"bgL",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bgL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFK","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0J":{"opcode":"procedures_call","next":"bgM","parent":"Rz","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0L",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0L":{"opcode":"operator_add","next":null,"parent":"0J","inputs":{"NUM1":[3,"aFL",[4,"0"]],"NUM2":[3,"bgN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFL":{"opcode":"operator_multiply","next":null,"parent":"0L","inputs":{"NUM1":[3,"bgO",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgO":{"opcode":"data_itemoflist","next":null,"parent":"aFL","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgN":{"opcode":"data_itemoflist","next":null,"parent":"0L","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bgM":{"opcode":"data_changevariableby","next":null,"parent":"0J","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0K":{"opcode":"data_setvariableto","next":"bgP","parent":"Rz","inputs":{"VALUE":[3,"aFM",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aFM":{"opcode":"data_itemoflist","next":null,"parent":"0K","inputs":{"INDEX":[3,"aFN",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFN":{"opcode":"operator_add","next":null,"parent":"aFM","inputs":{"NUM1":[3,"bgQ",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aFN","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bgP":{"opcode":"data_changevariableby","next":null,"parent":"0K","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aFJ":{"opcode":"procedures_call","next":"aFO","parent":"O4","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aFO":{"opcode":"data_changevariableby","next":"bgR","parent":"aFJ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bgR":{"opcode":"data_changevariableby","next":null,"parent":"aFO","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0I":{"opcode":"data_setvariableto","next":"aFP","parent":"O4","inputs":{"VALUE":[3,"aFQ",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aFQ":{"opcode":"data_itemoflist","next":null,"parent":"0I","inputs":{"INDEX":[3,"aFR",[7,"0"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aFR":{"opcode":"operator_add","next":null,"parent":"aFQ","inputs":{"NUM1":[3,"aFS",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFS":{"opcode":"operator_add","next":null,"parent":"aFR","inputs":{"NUM1":[3,"aFT",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFT":{"opcode":"operator_multiply","next":null,"parent":"aFS","inputs":{"NUM1":[3,"bgS",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgS":{"opcode":"data_itemoflist","next":null,"parent":"aFT","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFP":{"opcode":"data_replaceitemoflist","next":"aFU","parent":"0I","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0M":{"opcode":"data_replaceitemoflist","next":"0N","parent":"aFU","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aFV",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFV":{"opcode":"operator_mod","next":null,"parent":"0M","inputs":{"NUM1":[3,"aFW",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aFW":{"opcode":"operator_add","next":null,"parent":"aFV","inputs":{"NUM1":[3,"bgT",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bgT":{"opcode":"operator_mod","next":null,"parent":"aFW","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0N":{"opcode":"data_replaceitemoflist","next":"0O","parent":"0M","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aFX",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFX":{"opcode":"operator_add","next":null,"parent":"0N","inputs":{"NUM1":[3,"bgU",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgU":{"opcode":"operator_equals","next":null,"parent":"aFX","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"0O":{"opcode":"data_replaceitemoflist","next":"bgV","parent":"0N","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aFY",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFY":{"opcode":"operator_add","next":null,"parent":"0O","inputs":{"NUM1":[3,"bgW",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bgW":{"opcode":"operator_gt","next":null,"parent":"aFY","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bgV":{"opcode":"data_replaceitemoflist","next":null,"parent":"0O","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aFZ":{"opcode":"procedures_definition","next":"O5","parent":null,"inputs":{"custom_block":[1,"aF0"]},"fields":{},"shadow":false,"topLevel":true,"x":10271,"y":2520},"aF0":{"opcode":"procedures_prototype","next":null,"parent":"aFZ","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[1,"bgX"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bgX":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF0","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"O5":{"opcode":"control_if_else","next":"0P","parent":"aFZ","inputs":{"CONDITION":[2,"aF1"],"SUBSTACK":[2,"RA"],"SUBSTACK2":[2,"aF2"]},"fields":{},"shadow":false,"topLevel":false},"aF1":{"opcode":"operator_lt","next":null,"parent":"O5","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bgY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bgY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF1","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"RA":{"opcode":"control_if_else","next":null,"parent":"O5","inputs":{"CONDITION":[2,"aF3"],"SUBSTACK":[2,"0Q"],"SUBSTACK2":[2,"0R"]},"fields":{},"shadow":false,"topLevel":false},"aF3":{"opcode":"operator_equals","next":null,"parent":"RA","inputs":{"OPERAND1":[3,"bgZ",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bgZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF3","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0Q":{"opcode":"procedures_call","next":"bg0","parent":"RA","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"0S",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"0S":{"opcode":"operator_add","next":null,"parent":"0Q","inputs":{"NUM1":[3,"aF4",[4,"0"]],"NUM2":[3,"bg1",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF4":{"opcode":"operator_multiply","next":null,"parent":"0S","inputs":{"NUM1":[3,"bg2",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg2":{"opcode":"data_itemoflist","next":null,"parent":"aF4","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg1":{"opcode":"data_itemoflist","next":null,"parent":"0S","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg0":{"opcode":"data_changevariableby","next":null,"parent":"0Q","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0R":{"opcode":"data_setvariableto","next":"bg3","parent":"RA","inputs":{"VALUE":[3,"aF5",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aF5":{"opcode":"data_itemoflist","next":null,"parent":"0R","inputs":{"INDEX":[3,"aF6",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aF6":{"opcode":"operator_add","next":null,"parent":"aF5","inputs":{"NUM1":[3,"bg4",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bg4":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF6","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bg3":{"opcode":"data_changevariableby","next":null,"parent":"0R","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aF2":{"opcode":"procedures_call","next":"aF7","parent":"O5","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aF7":{"opcode":"data_changevariableby","next":"bg5","parent":"aF2","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bg5":{"opcode":"data_changevariableby","next":null,"parent":"aF7","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0P":{"opcode":"data_setvariableto","next":"0T","parent":"O5","inputs":{"VALUE":[3,"aF8",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aF8":{"opcode":"operator_mod","next":null,"parent":"0P","inputs":{"NUM1":[3,"aF9",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aF9":{"opcode":"operator_subtract","next":null,"parent":"aF8","inputs":{"NUM1":[3,"bg6",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bg6":{"opcode":"data_itemoflist","next":null,"parent":"aF9","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0T":{"opcode":"data_replaceitemoflist","next":"0U","parent":"0P","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aF!",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF!":{"opcode":"operator_add","next":null,"parent":"0T","inputs":{"NUM1":[3,"bg7",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bg7":{"opcode":"operator_gt","next":null,"parent":"aF!","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"0U":{"opcode":"data_replaceitemoflist","next":"0V","parent":"0T","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aF#",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF#":{"opcode":"operator_mod","next":null,"parent":"0U","inputs":{"NUM1":[3,"aF%",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aF%":{"opcode":"operator_add","next":null,"parent":"aF#","inputs":{"NUM1":[3,"bg8",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bg8":{"opcode":"operator_mod","next":null,"parent":"aF%","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"0W":{"opcode":"data_replaceitemoflist","next":"aF(","parent":"0V","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aF)",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF)":{"opcode":"operator_add","next":null,"parent":"0W","inputs":{"NUM1":[3,"aF*",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aF*":{"opcode":"operator_equals","next":null,"parent":"aF)","inputs":{"OPERAND1":[3,"bg9",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bg9":{"opcode":"operator_mod","next":null,"parent":"aF*","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aF(":{"opcode":"data_replaceitemoflist","next":null,"parent":"0W","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aF+",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF+":{"opcode":"operator_add","next":null,"parent":"aF(","inputs":{"NUM1":[3,"aF,",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aF,":{"opcode":"operator_gt","next":null,"parent":"aF+","inputs":{"OPERAND1":[3,"bg!",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aF-":{"opcode":"procedures_definition","next":"O6","parent":null,"inputs":{"custom_block":[1,"0X"]},"fields":{},"shadow":false,"topLevel":true,"x":11517,"y":2344},"0X":{"opcode":"procedures_prototype","next":null,"parent":"aF-","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,"bg#"],"Z+wi](,vdi;*E;ha|R)J":[1,"bg%"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","argumentnames":"[\"register\",\"amount\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bg#":{"opcode":"argument_reporter_string_number","next":null,"parent":"0X","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"bg%":{"opcode":"argument_reporter_string_number","next":null,"parent":"0X","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":true,"topLevel":false},"O6":{"opcode":"control_if_else","next":"0Y","parent":"aF-","inputs":{"CONDITION":[2,"aF."],"SUBSTACK":[2,"0Z"],"SUBSTACK2":[2,"00"]},"fields":{},"shadow":false,"topLevel":false},"aF.":{"opcode":"operator_equals","next":null,"parent":"O6","inputs":{"OPERAND1":[3,"bg(",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bg(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF.","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0Z":{"opcode":"procedures_call","next":"bg)","parent":"O6","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"01",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"01":{"opcode":"operator_add","next":null,"parent":"0Z","inputs":{"NUM1":[3,"aF/",[4,"0"]],"NUM2":[3,"bg*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF/":{"opcode":"operator_multiply","next":null,"parent":"01","inputs":{"NUM1":[3,"bg+",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg+":{"opcode":"data_itemoflist","next":null,"parent":"aF/","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg*":{"opcode":"data_itemoflist","next":null,"parent":"01","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg)":{"opcode":"data_changevariableby","next":null,"parent":"0Z","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"00":{"opcode":"data_setvariableto","next":"bg,","parent":"O6","inputs":{"VALUE":[3,"aF:",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aF:":{"opcode":"data_itemoflist","next":null,"parent":"00","inputs":{"INDEX":[3,"aF;",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aF;":{"opcode":"operator_add","next":null,"parent":"aF:","inputs":{"NUM1":[3,"bg-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bg-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF;","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bg,":{"opcode":"data_changevariableby","next":null,"parent":"00","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"0Y":{"opcode":"data_setvariableto","next":"02","parent":"O6","inputs":{"VALUE":[3,"aF=",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aF=":{"opcode":"operator_mod","next":null,"parent":"0Y","inputs":{"NUM1":[3,"aF?",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aF?":{"opcode":"operator_add","next":null,"parent":"aF=","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bg.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bg.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF?","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"02":{"opcode":"data_replaceitemoflist","next":"O7","parent":"0Y","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aF@",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF@":{"opcode":"operator_mod","next":null,"parent":"02","inputs":{"NUM1":[3,"aF[",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aF[":{"opcode":"operator_add","next":null,"parent":"aF@","inputs":{"NUM1":[3,"bg/",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bg/":{"opcode":"operator_mod","next":null,"parent":"aF[","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"03":{"opcode":"data_replaceitemoflist","next":"04","parent":"O7","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aF]",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF]":{"opcode":"operator_add","next":null,"parent":"03","inputs":{"NUM1":[3,"aF^",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aF^":{"opcode":"operator_equals","next":null,"parent":"aF]","inputs":{"OPERAND1":[3,"bg:",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bg:":{"opcode":"operator_mod","next":null,"parent":"aF^","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"04":{"opcode":"data_replaceitemoflist","next":"RB","parent":"03","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aF_",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aF_":{"opcode":"operator_add","next":null,"parent":"04","inputs":{"NUM1":[3,"aF`",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aF`":{"opcode":"operator_gt","next":null,"parent":"aF_","inputs":{"OPERAND1":[3,"bg;",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"RB":{"opcode":"control_if_else","next":null,"parent":"04","inputs":{"CONDITION":[2,"aF{"],"SUBSTACK":[2,"05"],"SUBSTACK2":[2,"06"]},"fields":{},"shadow":false,"topLevel":false},"aF{":{"opcode":"operator_equals","next":null,"parent":"RB","inputs":{"OPERAND1":[3,"bg=",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bg=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF{","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"05":{"opcode":"procedures_call","next":null,"parent":"RB","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"07",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bg?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"07":{"opcode":"operator_add","next":null,"parent":"05","inputs":{"NUM1":[3,"aF|",[4,"0"]],"NUM2":[3,"bg@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF|":{"opcode":"operator_multiply","next":null,"parent":"07","inputs":{"NUM1":[3,"bg[",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg[":{"opcode":"data_itemoflist","next":null,"parent":"aF|","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg@":{"opcode":"data_itemoflist","next":null,"parent":"07","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg?":{"opcode":"operator_mod","next":null,"parent":"05","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"06":{"opcode":"data_replaceitemoflist","next":null,"parent":"RB","inputs":{"INDEX":[3,"aF}",[7,"0"]],"ITEM":[3,"bg]",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aF}":{"opcode":"operator_add","next":null,"parent":"06","inputs":{"NUM1":[3,"bg^",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bg^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aF}","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bg]":{"opcode":"operator_mod","next":null,"parent":"06","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg_":{"opcode":"data_replaceitemoflist","next":null,"parent":null,"inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aF~",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":true,"x":10271,"y":64},"aF~":{"opcode":"operator_add","next":null,"parent":"bg_","inputs":{"NUM1":[3,"aGa",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aGa":{"opcode":"operator_gt","next":null,"parent":"aF~","inputs":{"OPERAND1":[3,"08",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"08":{"opcode":"operator_add","next":null,"parent":"aGa","inputs":{"NUM1":[3,"aGb",[4,"0"]],"NUM2":[3,"bg`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGb":{"opcode":"operator_mod","next":null,"parent":"08","inputs":{"NUM1":[3,"bg{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bg{":{"opcode":"data_itemoflist","next":null,"parent":"aGb","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg`":{"opcode":"operator_mod","next":null,"parent":"08","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aGc":{"opcode":"procedures_definition","next":"09","parent":null,"inputs":{"custom_block":[1,"bg|"]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":320},"bg|":{"opcode":"procedures_prototype","next":null,"parent":"aGc","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PCHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"09":{"opcode":"data_setvariableto","next":"bg}","parent":"aGc","inputs":{"VALUE":[3,"aGd",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aGd":{"opcode":"operator_add","next":null,"parent":"09","inputs":{"NUM1":[3,"0!",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"0!":{"opcode":"operator_add","next":null,"parent":"aGd","inputs":{"NUM1":[3,"aGe",[4,"0"]],"NUM2":[3,"bg~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGe":{"opcode":"operator_multiply","next":null,"parent":"0!","inputs":{"NUM1":[3,"bha",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bha":{"opcode":"data_itemoflist","next":null,"parent":"aGe","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg~":{"opcode":"data_itemoflist","next":null,"parent":"0!","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bg}":{"opcode":"data_changevariableby","next":null,"parent":"09","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGf":{"opcode":"procedures_definition","next":"0#","parent":null,"inputs":{"custom_block":[1,"bhb"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":2384},"bhb":{"opcode":"procedures_prototype","next":null,"parent":"aGf","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XCHG","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"0#":{"opcode":"data_setvariableto","next":"0%","parent":"aGf","inputs":{"VALUE":[3,"bhc",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bhc":{"opcode":"data_itemoflist","next":null,"parent":"0#","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0%":{"opcode":"data_setvariableto","next":"0(","parent":"0#","inputs":{"VALUE":[3,"bhd",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bhd":{"opcode":"data_itemoflist","next":null,"parent":"0%","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0(":{"opcode":"data_replaceitemoflist","next":"0)","parent":"0%","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"bhe",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhe":{"opcode":"data_itemoflist","next":null,"parent":"0(","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0)":{"opcode":"data_replaceitemoflist","next":"aGg","parent":"0(","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"bhf",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhf":{"opcode":"data_itemoflist","next":null,"parent":"0)","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGg":{"opcode":"data_replaceitemoflist","next":"aGh","parent":"0)","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGh":{"opcode":"data_replaceitemoflist","next":"bhg","parent":"aGg","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhg":{"opcode":"data_changevariableby","next":null,"parent":"aGh","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGi":{"opcode":"procedures_definition","next":"aGj","parent":null,"inputs":{"custom_block":[1,"aGk"]},"fields":{},"shadow":false,"topLevel":true,"x":7511,"y":64},"aGk":{"opcode":"procedures_prototype","next":null,"parent":"aGi","inputs":{"58~^|2E$I`?oic[jwf+C":[1,"bhh"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bhh":{"opcode":"argument_reporter_boolean","next":null,"parent":"aGk","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"aGj":{"opcode":"data_changevariableby","next":"RC","parent":"aGi","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"RC":{"opcode":"control_if","next":"bhi","parent":"aGj","inputs":{"CONDITION":[2,"bhj"],"SUBSTACK":[2,"aGl"]},"fields":{},"shadow":false,"topLevel":false},"bhj":{"opcode":"argument_reporter_boolean","next":null,"parent":"RC","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aGl":{"opcode":"data_changevariableby","next":"0*","parent":"RC","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"0*":{"opcode":"procedures_call","next":"RD","parent":"aGl","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bhk",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bhk":{"opcode":"operator_mod","next":null,"parent":"0*","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"RD":{"opcode":"procedures_call","next":"0+","parent":"0*","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bhl",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aGm",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bhl":{"opcode":"operator_add","next":null,"parent":"RD","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGm":{"opcode":"operator_mathop","next":null,"parent":"RD","inputs":{"NUM":[3,"bhm",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhm":{"opcode":"operator_divide","next":null,"parent":"aGm","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"0+":{"opcode":"procedures_call","next":"aGn","parent":"RD","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bhn",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bhn":{"opcode":"operator_subtract","next":null,"parent":"0+","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aGn":{"opcode":"data_setvariableto","next":"bho","parent":"0+","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bho":{"opcode":"data_changevariableby","next":null,"parent":"aGn","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bhi":{"opcode":"data_changevariableby","next":null,"parent":"RC","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGo":{"opcode":"procedures_definition","next":"RE","parent":null,"inputs":{"custom_block":[1,"aGp"]},"fields":{},"shadow":false,"topLevel":true,"x":4667,"y":64},"aGp":{"opcode":"procedures_prototype","next":null,"parent":"aGo","inputs":{"81jPTca|qI_$x~T9K=;g":[1,"bhp"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bhp":{"opcode":"argument_reporter_boolean","next":null,"parent":"aGp","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"RE":{"opcode":"control_if","next":"bhq","parent":"aGo","inputs":{"CONDITION":[2,"bhr"],"SUBSTACK":[2,"aGq"]},"fields":{},"shadow":false,"topLevel":false},"bhr":{"opcode":"argument_reporter_boolean","next":null,"parent":"RE","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aGq":{"opcode":"procedures_call","next":"aGr","parent":"RE","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aGr":{"opcode":"data_setvariableto","next":"aGs","parent":"aGq","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aGs":{"opcode":"data_changevariableby","next":"bhs","parent":"aGr","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"bhs":{"opcode":"data_changevariableby","next":null,"parent":"aGs","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bhq":{"opcode":"data_changevariableby","next":null,"parent":"RE","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGt":{"opcode":"procedures_definition","next":"aGu","parent":null,"inputs":{"custom_block":[1,"aGv"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":1272},"aGv":{"opcode":"procedures_prototype","next":null,"parent":"aGt","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,"bht"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bht":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGv","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"aGu":{"opcode":"procedures_call","next":"O8","parent":"aGt","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"O8":{"opcode":"control_if_else","next":"aGw","parent":"aGu","inputs":{"CONDITION":[2,"aGx"],"SUBSTACK":[2,"0,"],"SUBSTACK2":[2,"aGy"]},"fields":{},"shadow":false,"topLevel":false},"aGx":{"opcode":"operator_equals","next":null,"parent":"O8","inputs":{"OPERAND1":[3,"bhu",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bhu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGx","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"0,":{"opcode":"procedures_call","next":"bhv","parent":"O8","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"0-",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"0-":{"opcode":"operator_add","next":null,"parent":"0,","inputs":{"NUM1":[3,"aGz",[4,"0"]],"NUM2":[3,"bhw",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGz":{"opcode":"operator_multiply","next":null,"parent":"0-","inputs":{"NUM1":[3,"bhx",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhx":{"opcode":"data_itemoflist","next":null,"parent":"aGz","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhw":{"opcode":"data_itemoflist","next":null,"parent":"0-","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhv":{"opcode":"data_changevariableby","next":null,"parent":"0,","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGy":{"opcode":"data_replaceitemoflist","next":null,"parent":"O8","inputs":{"INDEX":[3,"aGA",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGA":{"opcode":"operator_add","next":null,"parent":"aGy","inputs":{"NUM1":[3,"bhy",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bhy":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGA","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aGw":{"opcode":"data_changevariableby","next":"bhz","parent":"O8","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bhz":{"opcode":"data_changevariableby","next":null,"parent":"aGw","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aGB":{"opcode":"procedures_definition","next":"0.","parent":null,"inputs":{"custom_block":[1,"aGC"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":64},"aGC":{"opcode":"procedures_prototype","next":null,"parent":"aGB","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,"bhA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","argumentnames":"[\"address\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bhA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGC","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"0.":{"opcode":"data_setvariableto","next":"aGD","parent":"aGB","inputs":{"VALUE":[3,"aGE",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aGE":{"opcode":"operator_multiply","next":null,"parent":"0.","inputs":{"NUM1":[3,"bhB",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bhB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGE","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"aGD":{"opcode":"data_changevariableby","next":"0/","parent":"0.","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"0/":{"opcode":"procedures_call","next":"RF","parent":"aGD","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bhC",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bhC":{"opcode":"operator_mod","next":null,"parent":"0/","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"RF":{"opcode":"procedures_call","next":"bhD","parent":"0/","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bhE",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aGF",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bhE":{"opcode":"operator_add","next":null,"parent":"RF","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGF":{"opcode":"operator_mathop","next":null,"parent":"RF","inputs":{"NUM":[3,"bhF",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhF":{"opcode":"operator_divide","next":null,"parent":"aGF","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhD":{"opcode":"data_changevariableby","next":null,"parent":"RF","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGG":{"opcode":"procedures_definition","next":"0:","parent":null,"inputs":{"custom_block":[1,"aGH"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":2864},"aGH":{"opcode":"procedures_prototype","next":null,"parent":"aGG","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,"bhG"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","argumentnames":"[\"regpair\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bhG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGH","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"0:":{"opcode":"data_setvariableto","next":"0;","parent":"aGG","inputs":{"VALUE":[3,"0=",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"0=":{"opcode":"operator_add","next":null,"parent":"0:","inputs":{"NUM1":[3,"0?",[4,"0"]],"NUM2":[3,"0@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"0?":{"opcode":"operator_add","next":null,"parent":"0=","inputs":{"NUM1":[3,"aGI",[4,"0"]],"NUM2":[3,"aGJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGI":{"opcode":"operator_multiply","next":null,"parent":"0?","inputs":{"NUM1":[3,"aGK",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aGK":{"opcode":"data_itemoflist","next":null,"parent":"aGI","inputs":{"INDEX":[3,"bhH",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGK","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aGJ":{"opcode":"data_itemoflist","next":null,"parent":"0?","inputs":{"INDEX":[3,"aGL",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGL":{"opcode":"operator_add","next":null,"parent":"aGJ","inputs":{"NUM1":[3,"bhI",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bhI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aGL","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"0@":{"opcode":"operator_add","next":null,"parent":"0=","inputs":{"NUM1":[3,"aGM",[4,"0"]],"NUM2":[3,"bhJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGM":{"opcode":"operator_multiply","next":null,"parent":"0@","inputs":{"NUM1":[3,"bhK",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhK":{"opcode":"data_itemoflist","next":null,"parent":"aGM","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bhJ":{"opcode":"data_itemoflist","next":null,"parent":"0@","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0;":{"opcode":"data_replaceitemoflist","next":"0[","parent":"0:","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aGN",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aGN":{"opcode":"operator_add","next":null,"parent":"0;","inputs":{"NUM1":[3,"bhL",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bhL":{"opcode":"operator_gt","next":null,"parent":"aGN","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"0[":{"opcode":"data_replaceitemoflist","next":"0]","parent":"0;","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aGO",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGO":{"opcode":"operator_mathop","next":null,"parent":"0[","inputs":{"NUM":[3,"aGP",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aGP":{"opcode":"operator_divide","next":null,"parent":"aGO","inputs":{"NUM1":[3,"bhM",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhM":{"opcode":"operator_mod","next":null,"parent":"aGP","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"0]":{"opcode":"data_replaceitemoflist","next":"bhN","parent":"0[","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"aGQ",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGQ":{"opcode":"operator_mod","next":null,"parent":"0]","inputs":{"NUM1":[3,"bhO",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhO":{"opcode":"operator_mod","next":null,"parent":"aGQ","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bhN":{"opcode":"data_changevariableby","next":null,"parent":"0]","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aGR":{"opcode":"procedures_definition","next":"0^","parent":null,"inputs":{"custom_block":[1,"aGS"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":480},"aGS":{"opcode":"procedures_prototype","next":null,"parent":"aGR","inputs":{"lyJ3dc5LleeV*f/MqhBH":[1,"bhP"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","argumentnames":"[\"using carry\"]","argumentdefaults":"[\"\",\"false\"]","warp":"true"}},"bhP":{"opcode":"argument_reporter_boolean","next":null,"parent":"aGS","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":true,"topLevel":false},"0^":{"opcode":"data_setvariableto","next":"RG","parent":"aGR","inputs":{"VALUE":[3,"0_",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"0_":{"opcode":"operator_add","next":null,"parent":"0^","inputs":{"NUM1":[3,"aGT",[4,"0"]],"NUM2":[3,"aGU",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGT":{"opcode":"operator_multiply","next":null,"parent":"0_","inputs":{"NUM1":[3,"bhQ",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bhQ":{"opcode":"data_itemoflist","next":null,"parent":"aGT","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aGU":{"opcode":"operator_mathop","next":null,"parent":"0_","inputs":{"NUM":[3,"aGV",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aGV":{"opcode":"operator_divide","next":null,"parent":"aGU","inputs":{"NUM1":[3,"bhR",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"bhR":{"opcode":"data_itemoflist","next":null,"parent":"aGV","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"RG":{"opcode":"control_if","next":"0`","parent":"0^","inputs":{"CONDITION":[2,"bhS"],"SUBSTACK":[2,"0{"]},"fields":{},"shadow":false,"topLevel":false},"bhS":{"opcode":"argument_reporter_boolean","next":null,"parent":"RG","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":false,"topLevel":false},"0{":{"opcode":"control_if","next":null,"parent":"RG","inputs":{"CONDITION":[2,"aGW"],"SUBSTACK":[2,"RH"]},"fields":{},"shadow":false,"topLevel":false},"aGW":{"opcode":"operator_not","next":null,"parent":"0{","inputs":{"OPERAND":[2,"0|"]},"fields":{},"shadow":false,"topLevel":false},"0|":{"opcode":"operator_equals","next":null,"parent":"aGW","inputs":{"OPERAND1":[3,"bhT",[10,""]],"OPERAND2":[3,"bhU",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bhT":{"opcode":"operator_mod","next":null,"parent":"0|","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bhU":{"opcode":"data_itemoflist","next":null,"parent":"0|","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"RH":{"opcode":"control_if_else","next":null,"parent":"0{","inputs":{"CONDITION":[2,"aGX"],"SUBSTACK":[2,"bhV"],"SUBSTACK2":[2,"bhW"]},"fields":{},"shadow":false,"topLevel":false},"aGX":{"opcode":"operator_equals","next":null,"parent":"RH","inputs":{"OPERAND1":[3,"bhX",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bhX":{"opcode":"operator_mod","next":null,"parent":"aGX","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bhV":{"opcode":"data_changevariableby","next":null,"parent":"RH","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bhW":{"opcode":"data_changevariableby","next":null,"parent":"RH","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"0`":{"opcode":"data_replaceitemoflist","next":"0}","parent":"RG","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aGY",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aGY":{"opcode":"operator_add","next":null,"parent":"0`","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"aGZ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGZ":{"opcode":"operator_gt","next":null,"parent":"aGY","inputs":{"OPERAND1":[3,"bhY",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bhY":{"opcode":"data_itemoflist","next":null,"parent":"aGZ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"0}":{"opcode":"data_replaceitemoflist","next":"bhZ","parent":"0`","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bh0",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh0":{"opcode":"operator_mod","next":null,"parent":"0}","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bhZ":{"opcode":"data_changevariableby","next":null,"parent":"0}","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG0":{"opcode":"procedures_definition","next":"0~","parent":null,"inputs":{"custom_block":[1,"aG1"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":2232},"aG1":{"opcode":"procedures_prototype","next":null,"parent":"aG0","inputs":{"f%{;w~N|GRSB$;Wt6u{t":[1,"bh1"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","argumentnames":"[\"using carry\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bh1":{"opcode":"argument_reporter_boolean","next":null,"parent":"aG1","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":true,"topLevel":false},"0~":{"opcode":"data_setvariableto","next":"RI","parent":"aG0","inputs":{"VALUE":[3,"aG2",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aG2":{"opcode":"operator_mod","next":null,"parent":"0~","inputs":{"NUM1":[3,"1a",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"1a":{"opcode":"operator_add","next":null,"parent":"aG2","inputs":{"NUM1":[3,"aG3",[4,"0"]],"NUM2":[3,"aG4",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aG3":{"opcode":"operator_mathop","next":null,"parent":"1a","inputs":{"NUM":[3,"aG5",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aG5":{"opcode":"operator_divide","next":null,"parent":"aG3","inputs":{"NUM1":[3,"bh2",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bh2":{"opcode":"data_itemoflist","next":null,"parent":"aG5","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aG4":{"opcode":"operator_multiply","next":null,"parent":"1a","inputs":{"NUM1":[3,"aG6",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aG6":{"opcode":"operator_mod","next":null,"parent":"aG4","inputs":{"NUM1":[3,"bh3",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bh3":{"opcode":"data_itemoflist","next":null,"parent":"aG6","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"RI":{"opcode":"control_if","next":"1b","parent":"0~","inputs":{"CONDITION":[2,"bh4"],"SUBSTACK":[2,"1c"]},"fields":{},"shadow":false,"topLevel":false},"bh4":{"opcode":"argument_reporter_boolean","next":null,"parent":"RI","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":false,"topLevel":false},"1c":{"opcode":"control_if","next":null,"parent":"RI","inputs":{"CONDITION":[2,"aG7"],"SUBSTACK":[2,"RJ"]},"fields":{},"shadow":false,"topLevel":false},"aG7":{"opcode":"operator_not","next":null,"parent":"1c","inputs":{"OPERAND":[2,"1d"]},"fields":{},"shadow":false,"topLevel":false},"1d":{"opcode":"operator_equals","next":null,"parent":"aG7","inputs":{"OPERAND1":[3,"aG8",[10,""]],"OPERAND2":[3,"bh5",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aG8":{"opcode":"operator_add","next":null,"parent":"1d","inputs":{"NUM1":[3,"bh6",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bh6":{"opcode":"operator_gt","next":null,"parent":"aG8","inputs":{"OPERAND1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bh5":{"opcode":"data_itemoflist","next":null,"parent":"1d","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"RJ":{"opcode":"control_if_else","next":null,"parent":"1c","inputs":{"CONDITION":[2,"bh7"],"SUBSTACK":[2,"bh8"],"SUBSTACK2":[2,"bh9"]},"fields":{},"shadow":false,"topLevel":false},"bh7":{"opcode":"operator_gt","next":null,"parent":"RJ","inputs":{"OPERAND1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bh8":{"opcode":"data_changevariableby","next":null,"parent":"RJ","inputs":{"VALUE":[1,[4,"-128"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bh9":{"opcode":"data_changevariableby","next":null,"parent":"RJ","inputs":{"VALUE":[1,[4,"128"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"1b":{"opcode":"data_replaceitemoflist","next":"1e","parent":"RI","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aG9",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aG9":{"opcode":"operator_mod","next":null,"parent":"1b","inputs":{"NUM1":[3,"bh!",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bh!":{"opcode":"data_itemoflist","next":null,"parent":"aG9","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1e":{"opcode":"data_replaceitemoflist","next":"bh#","parent":"1b","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bh%",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh%":{"opcode":"operator_mod","next":null,"parent":"1e","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bh#":{"opcode":"data_changevariableby","next":null,"parent":"1e","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG!":{"opcode":"procedures_definition","next":"1f","parent":null,"inputs":{"custom_block":[1,"bh("]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":3336},"bh(":{"opcode":"procedures_prototype","next":null,"parent":"aG!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD SP","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"1f":{"opcode":"data_setvariableto","next":"1g","parent":"aG!","inputs":{"VALUE":[3,"aG#",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aG#":{"opcode":"operator_mod","next":null,"parent":"1f","inputs":{"NUM1":[3,"aG%",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aG%":{"opcode":"operator_add","next":null,"parent":"aG#","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[3,"1h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"1h":{"opcode":"operator_add","next":null,"parent":"aG%","inputs":{"NUM1":[3,"aG(",[4,"0"]],"NUM2":[3,"bh)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aG(":{"opcode":"operator_multiply","next":null,"parent":"1h","inputs":{"NUM1":[3,"bh*",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bh*":{"opcode":"data_itemoflist","next":null,"parent":"aG(","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh)":{"opcode":"data_itemoflist","next":null,"parent":"1h","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1g":{"opcode":"data_replaceitemoflist","next":"1i","parent":"1f","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aG)",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aG)":{"opcode":"operator_add","next":null,"parent":"1g","inputs":{"NUM1":[3,"bh+",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bh+":{"opcode":"operator_gt","next":null,"parent":"aG)","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"1i":{"opcode":"data_replaceitemoflist","next":"1j","parent":"1g","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aG*",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aG*":{"opcode":"operator_mathop","next":null,"parent":"1i","inputs":{"NUM":[3,"bh,",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bh,":{"opcode":"operator_divide","next":null,"parent":"aG*","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"1j":{"opcode":"data_replaceitemoflist","next":"bh-","parent":"1i","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"bh.",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh.":{"opcode":"operator_mod","next":null,"parent":"1j","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bh-":{"opcode":"data_changevariableby","next":null,"parent":"1j","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG+":{"opcode":"procedures_definition","next":"aG,","parent":null,"inputs":{"custom_block":[1,"aG-"]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":584},"aG-":{"opcode":"procedures_prototype","next":null,"parent":"aG+","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,"bh/"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bh/":{"opcode":"argument_reporter_string_number","next":null,"parent":"aG-","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"aG,":{"opcode":"procedures_call","next":"1k","parent":"aG+","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"1k":{"opcode":"data_replaceitemoflist","next":"1l","parent":"aG,","inputs":{"INDEX":[3,"aG.",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aG.":{"opcode":"operator_add","next":null,"parent":"1k","inputs":{"NUM1":[3,"bh:",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bh:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aG.","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"1l":{"opcode":"procedures_call","next":"1m","parent":"1k","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bh;",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bh;":{"opcode":"operator_add","next":null,"parent":"1l","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"1m":{"opcode":"data_replaceitemoflist","next":"aG/","parent":"1l","inputs":{"INDEX":[3,"bh=",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh=":{"opcode":"argument_reporter_string_number","next":null,"parent":"1m","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aG/":{"opcode":"data_changevariableby","next":"bh?","parent":"1m","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"bh?":{"opcode":"data_changevariableby","next":null,"parent":"aG/","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG:":{"opcode":"procedures_definition","next":"aG;","parent":null,"inputs":{"custom_block":[1,"bh@"]},"fields":{},"shadow":false,"topLevel":true,"x":6484,"y":982},"bh@":{"opcode":"procedures_prototype","next":null,"parent":"aG:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP PSW","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aG;":{"opcode":"data_changevariableby","next":"1n","parent":"aG:","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"1o":{"opcode":"procedures_call","next":"aG?","parent":"aG=","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bh[",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bh[":{"opcode":"operator_subtract","next":null,"parent":"1o","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aG?":{"opcode":"control_clear_counter","next":"1p","parent":"1o","inputs":{},"fields":{},"shadow":false,"topLevel":false},"1p":{"opcode":"control_repeat","next":"bh]","parent":"aG?","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aG@"]},"fields":{},"shadow":false,"topLevel":false},"aG@":{"opcode":"control_incr_counter","next":"1q","parent":"1p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"1q":{"opcode":"data_replaceitemoflist","next":null,"parent":"aG@","inputs":{"INDEX":[3,"bh^",[7,"0"]],"ITEM":[3,"1r",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bh^":{"opcode":"control_get_counter","next":null,"parent":"1q","inputs":{},"fields":{},"shadow":false,"topLevel":false},"1r":{"opcode":"operator_letter_of","next":null,"parent":"1q","inputs":{"LETTER":[3,"bh_",[6,"0"]],"STRING":[3,"aG[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bh_":{"opcode":"control_get_counter","next":null,"parent":"1r","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aG[":{"opcode":"data_itemoflist","next":null,"parent":"1r","inputs":{"INDEX":[3,"bh`",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bh`":{"opcode":"operator_add","next":null,"parent":"aG[","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bh]":{"opcode":"data_changevariableby","next":null,"parent":"1p","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG]":{"opcode":"procedures_definition","next":"RK","parent":null,"inputs":{"custom_block":[1,"aG^"]},"fields":{},"shadow":false,"topLevel":true,"x":7511,"y":720},"aG^":{"opcode":"procedures_prototype","next":null,"parent":"aG]","inputs":{"WcF;@0._c|op{:JV~Utq":[1,"bh{"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bh{":{"opcode":"argument_reporter_string_number","next":null,"parent":"aG^","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"RK":{"opcode":"procedures_call","next":"RL","parent":"aG]","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bh|",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aG_",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bh|":{"opcode":"operator_subtract","next":null,"parent":"RK","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG_":{"opcode":"data_itemoflist","next":null,"parent":"RK","inputs":{"INDEX":[3,"bh}",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bh}":{"opcode":"argument_reporter_string_number","next":null,"parent":"aG_","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"RL":{"opcode":"procedures_call","next":"aG`","parent":"RK","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bh~",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aG{",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bh~":{"opcode":"operator_subtract","next":null,"parent":"RL","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aG{":{"opcode":"data_itemoflist","next":null,"parent":"RL","inputs":{"INDEX":[3,"aG|",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aG|":{"opcode":"operator_add","next":null,"parent":"aG{","inputs":{"NUM1":[3,"bia",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bia":{"opcode":"argument_reporter_string_number","next":null,"parent":"aG|","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aG`":{"opcode":"data_changevariableby","next":"bib","parent":"RL","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"bib":{"opcode":"data_changevariableby","next":null,"parent":"aG`","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aG}":{"opcode":"procedures_definition","next":"RM","parent":null,"inputs":{"custom_block":[1,"bic"]},"fields":{},"shadow":false,"topLevel":true,"x":7511,"y":1080},"bic":{"opcode":"procedures_prototype","next":null,"parent":"aG}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH PSW","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aG~":{"opcode":"operator_add","next":null,"parent":"RN","inputs":{"NUM1":[3,"bid",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bid":{"opcode":"operator_join","next":null,"parent":"aG~","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,[13,"_flags",")yF+1`NW6;S!1GicT2N]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bie":{"opcode":"data_changevariableby","next":null,"parent":"aHa","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHb":{"opcode":"procedures_definition","next":"aHc","parent":null,"inputs":{"custom_block":[1,"bif"]},"fields":{},"shadow":false,"topLevel":true,"x":4667,"y":536},"bif":{"opcode":"procedures_prototype","next":null,"parent":"aHb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"STA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"aHc":{"opcode":"procedures_call","next":"1s","parent":"aHb","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"1s":{"opcode":"procedures_call","next":"aHd","parent":"aHc","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"big",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"big":{"opcode":"data_itemoflist","next":null,"parent":"1s","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHd":{"opcode":"data_changevariableby","next":"bih","parent":"1s","inputs":{"VALUE":[1,[4,"13"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bih":{"opcode":"data_changevariableby","next":null,"parent":"aHd","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aHe":{"opcode":"procedures_definition","next":"1t","parent":null,"inputs":{"custom_block":[1,"aHf"]},"fields":{},"shadow":false,"topLevel":true,"x":6523,"y":1584},"aHf":{"opcode":"procedures_prototype","next":null,"parent":"aHe","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,"bii"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","argumentnames":"[\"regpair\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bii":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHf","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"1t":{"opcode":"procedures_call","next":"aHg","parent":"aHe","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"1u",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"1u":{"opcode":"operator_add","next":null,"parent":"1t","inputs":{"NUM1":[3,"aHh",[4,"0"]],"NUM2":[3,"aHi",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aHh":{"opcode":"operator_multiply","next":null,"parent":"1u","inputs":{"NUM1":[3,"aHj",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aHj":{"opcode":"data_itemoflist","next":null,"parent":"aHh","inputs":{"INDEX":[3,"bij",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bij":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHj","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aHi":{"opcode":"data_itemoflist","next":null,"parent":"1u","inputs":{"INDEX":[3,"aHk",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHk":{"opcode":"operator_add","next":null,"parent":"aHi","inputs":{"NUM1":[3,"bik",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bik":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHk","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aHg":{"opcode":"data_replaceitemoflist","next":"bil","parent":"1t","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bil":{"opcode":"data_changevariableby","next":null,"parent":"aHg","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHl":{"opcode":"procedures_definition","next":"aHm","parent":null,"inputs":{"custom_block":[1,"bim"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":1848},"bim":{"opcode":"procedures_prototype","next":null,"parent":"aHl","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"aHm":{"opcode":"procedures_call","next":"aHn","parent":"aHl","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHn":{"opcode":"procedures_call","next":"aHo","parent":"aHm","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHo":{"opcode":"data_replaceitemoflist","next":"aHp","parent":"aHn","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHp":{"opcode":"data_changevariableby","next":"bin","parent":"aHo","inputs":{"VALUE":[1,[4,"13"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bin":{"opcode":"data_changevariableby","next":null,"parent":"aHp","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aHq":{"opcode":"procedures_definition","next":"aHr","parent":null,"inputs":{"custom_block":[1,"bio"]},"fields":{},"shadow":false,"topLevel":true,"x":4600,"y":896},"bio":{"opcode":"procedures_prototype","next":null,"parent":"aHq","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SHLD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHr":{"opcode":"procedures_call","next":"1v","parent":"aHq","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"1v":{"opcode":"procedures_call","next":"RO","parent":"aHr","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bip",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bip":{"opcode":"data_itemoflist","next":null,"parent":"1v","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"RO":{"opcode":"procedures_call","next":"aHs","parent":"1v","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"biq",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bir",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"biq":{"opcode":"operator_add","next":null,"parent":"RO","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bir":{"opcode":"data_itemoflist","next":null,"parent":"RO","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHs":{"opcode":"data_changevariableby","next":"bis","parent":"RO","inputs":{"VALUE":[1,[4,"16"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bis":{"opcode":"data_changevariableby","next":null,"parent":"aHs","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aHt":{"opcode":"procedures_definition","next":"aHu","parent":null,"inputs":{"custom_block":[1,"bit"]},"fields":{},"shadow":false,"topLevel":true,"x":5802,"y":1736},"bit":{"opcode":"procedures_prototype","next":null,"parent":"aHt","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LHLD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHu":{"opcode":"procedures_call","next":"aHv","parent":"aHt","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHv":{"opcode":"data_setvariableto","next":"aHw","parent":"aHu","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aHw":{"opcode":"procedures_call","next":"aHx","parent":"aHv","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHx":{"opcode":"data_replaceitemoflist","next":"1w","parent":"aHw","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1w":{"opcode":"procedures_call","next":"aHy","parent":"aHx","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"biu",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"biu":{"opcode":"operator_add","next":null,"parent":"1w","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aHy":{"opcode":"data_replaceitemoflist","next":"aHz","parent":"1w","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHz":{"opcode":"data_changevariableby","next":"biv","parent":"aHy","inputs":{"VALUE":[1,[4,"16"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"biv":{"opcode":"data_changevariableby","next":null,"parent":"aHz","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aHA":{"opcode":"procedures_definition","next":"aHB","parent":null,"inputs":{"custom_block":[1,"biw"]},"fields":{},"shadow":false,"topLevel":true,"x":7503,"y":1428},"biw":{"opcode":"procedures_prototype","next":null,"parent":"aHA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XTHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHB":{"opcode":"procedures_call","next":"1x","parent":"aHA","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"1x":{"opcode":"procedures_call","next":"aHC","parent":"aHB","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bix",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bix":{"opcode":"data_itemoflist","next":null,"parent":"1x","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHC":{"opcode":"data_replaceitemoflist","next":"1y","parent":"1x","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1y":{"opcode":"procedures_call","next":"RP","parent":"aHC","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"biy",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"biy":{"opcode":"operator_add","next":null,"parent":"1y","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"RP":{"opcode":"procedures_call","next":"aHD","parent":"1y","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"biz",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"biA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"biz":{"opcode":"operator_add","next":null,"parent":"RP","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"biA":{"opcode":"data_itemoflist","next":null,"parent":"RP","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHD":{"opcode":"data_replaceitemoflist","next":"biB","parent":"RP","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"biB":{"opcode":"data_changevariableby","next":null,"parent":"aHD","inputs":{"VALUE":[1,[4,"18"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHE":{"opcode":"procedures_definition","next":"1z","parent":null,"inputs":{"custom_block":[1,"1A"]},"fields":{},"shadow":false,"topLevel":true,"x":12421,"y":2345},"1A":{"opcode":"procedures_prototype","next":null,"parent":"aHE","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,"biC"],"Yu^K(g7gNtyUc!zhhe]]":[1,"biD"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","argumentnames":"[\"regpair\",\"amount\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"biC":{"opcode":"argument_reporter_string_number","next":null,"parent":"1A","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"biD":{"opcode":"argument_reporter_string_number","next":null,"parent":"1A","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":true,"topLevel":false},"1z":{"opcode":"data_setvariableto","next":"RQ","parent":"aHE","inputs":{"VALUE":[3,"aHF",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aHF":{"opcode":"operator_mod","next":null,"parent":"1z","inputs":{"NUM1":[3,"1B",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"1B":{"opcode":"operator_add","next":null,"parent":"aHF","inputs":{"NUM1":[3,"1C",[4,"0"]],"NUM2":[3,"biE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"1C":{"opcode":"operator_add","next":null,"parent":"1B","inputs":{"NUM1":[3,"aHG",[4,"0"]],"NUM2":[3,"aHH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aHG":{"opcode":"operator_multiply","next":null,"parent":"1C","inputs":{"NUM1":[3,"aHI",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aHI":{"opcode":"data_itemoflist","next":null,"parent":"aHG","inputs":{"INDEX":[3,"biF",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"biF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHI","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aHH":{"opcode":"data_itemoflist","next":null,"parent":"1C","inputs":{"INDEX":[3,"aHJ",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHJ":{"opcode":"operator_add","next":null,"parent":"aHH","inputs":{"NUM1":[3,"biG",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"biG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHJ","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"biE":{"opcode":"argument_reporter_string_number","next":null,"parent":"1B","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"RQ":{"opcode":"data_replaceitemoflist","next":"RR","parent":"1z","inputs":{"INDEX":[3,"biH",[7,"0"]],"ITEM":[3,"aHK",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"biH":{"opcode":"argument_reporter_string_number","next":null,"parent":"RQ","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aHK":{"opcode":"operator_mathop","next":null,"parent":"RQ","inputs":{"NUM":[3,"biI",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"biI":{"opcode":"operator_divide","next":null,"parent":"aHK","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"RR":{"opcode":"data_replaceitemoflist","next":"biJ","parent":"RQ","inputs":{"INDEX":[3,"aHL",[7,"0"]],"ITEM":[3,"biK",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHL":{"opcode":"operator_add","next":null,"parent":"RR","inputs":{"NUM1":[3,"biL",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"biL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHL","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"biK":{"opcode":"operator_mod","next":null,"parent":"RR","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"biJ":{"opcode":"data_changevariableby","next":null,"parent":"RR","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHM":{"opcode":"procedures_definition","next":"1D","parent":null,"inputs":{"custom_block":[1,"biM"]},"fields":{},"shadow":false,"topLevel":true,"x":3842,"y":3759},"biM":{"opcode":"procedures_prototype","next":null,"parent":"aHM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHN":{"opcode":"procedures_definition","next":"aHO","parent":null,"inputs":{"custom_block":[1,"biN"]},"fields":{},"shadow":false,"topLevel":true,"x":2745,"y":18782},"biN":{"opcode":"procedures_prototype","next":null,"parent":"aHN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"OUT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHO":{"opcode":"procedures_call","next":"aHP","parent":"aHN","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHP":{"opcode":"procedures_call","next":"aHQ","parent":"aHO","inputs":{"?m0*7}nDXhu}OGKM3[9Y":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Output to device # %s","argumentids":"[\"?m0*7}nDXhu}OGKM3[9Y\"]","warp":"true"}},"aHQ":{"opcode":"data_changevariableby","next":"biO","parent":"aHP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"biO":{"opcode":"data_changevariableby","next":null,"parent":"aHQ","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHR":{"opcode":"procedures_definition","next":"aHS","parent":null,"inputs":{"custom_block":[1,"biP"]},"fields":{},"shadow":false,"topLevel":true,"x":2581,"y":19852},"biP":{"opcode":"procedures_prototype","next":null,"parent":"aHR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"IN","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHS":{"opcode":"procedures_call","next":"aHT","parent":"aHR","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aHT":{"opcode":"procedures_call","next":"aHU","parent":"aHS","inputs":{"Cm37E1C1p#dUX!wzAtMJ":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read from device # %s","argumentids":"[\"Cm37E1C1p#dUX!wzAtMJ\"]","warp":"true"}},"aHU":{"opcode":"data_replaceitemoflist","next":"aHV","parent":"aHT","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aHV":{"opcode":"data_changevariableby","next":"biQ","parent":"aHU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"biQ":{"opcode":"data_changevariableby","next":null,"parent":"aHV","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aHW":{"opcode":"procedures_definition","next":"1E","parent":null,"inputs":{"custom_block":[1,"aHX"]},"fields":{},"shadow":false,"topLevel":true,"x":8967,"y":3789},"aHX":{"opcode":"procedures_prototype","next":null,"parent":"aHW","inputs":{"?m0*7}nDXhu}OGKM3[9Y":[1,"biR"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Output to device # %s","argumentids":"[\"?m0*7}nDXhu}OGKM3[9Y\"]","argumentnames":"[\"device\"]","argumentdefaults":"[\"\"]","warp":"true"}},"biR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHX","inputs":{},"fields":{"VALUE":["device",null]},"shadow":true,"topLevel":false},"1E":{"opcode":"control_if","next":null,"parent":"aHW","inputs":{"CONDITION":[2,"biS"],"SUBSTACK":[2,"RS"]},"fields":{},"shadow":false,"topLevel":false},"biS":{"opcode":"operator_equals","next":null,"parent":"1E","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RS":{"opcode":"control_if","next":"RT","parent":"1E","inputs":{"CONDITION":[2,"aHY"],"SUBSTACK":[2,"1F"]},"fields":{},"shadow":false,"topLevel":false},"aHY":{"opcode":"operator_equals","next":null,"parent":"RS","inputs":{"OPERAND1":[3,"biT",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"biT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aHY","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"1F":{"opcode":"data_setvariableto","next":"biU","parent":"RS","inputs":{"VALUE":[3,"aHZ",[10,"0"]]},"fields":{"VARIABLE":["8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"]},"shadow":false,"topLevel":false},"aHZ":{"opcode":"operator_mod","next":null,"parent":"1F","inputs":{"NUM1":[3,"biV",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"biV":{"opcode":"data_itemoflist","next":null,"parent":"aHZ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"biU":{"opcode":"control_stop","next":null,"parent":"1F","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RT":{"opcode":"control_if","next":"RU","parent":"RS","inputs":{"CONDITION":[2,"aH0"],"SUBSTACK":[2,"biW"]},"fields":{},"shadow":false,"topLevel":false},"aH0":{"opcode":"operator_equals","next":null,"parent":"RT","inputs":{"OPERAND1":[3,"biX",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"biX":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH0","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"biW":{"opcode":"control_stop","next":null,"parent":"RT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RU":{"opcode":"control_if","next":"RV","parent":"RT","inputs":{"CONDITION":[2,"aH1"],"SUBSTACK":[2,"1G"]},"fields":{},"shadow":false,"topLevel":false},"aH1":{"opcode":"operator_equals","next":null,"parent":"RU","inputs":{"OPERAND1":[3,"biY",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"biY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH1","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"1G":{"opcode":"data_replaceitemoflist","next":"biZ","parent":"RU","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[3,"1H",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1H":{"opcode":"operator_add","next":null,"parent":"1G","inputs":{"NUM1":[3,"aH2",[4,""]],"NUM2":[3,"aH3",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH2":{"opcode":"operator_multiply","next":null,"parent":"1H","inputs":{"NUM1":[3,"bi0",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bi0":{"opcode":"data_itemoflist","next":null,"parent":"aH2","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aH3":{"opcode":"operator_mod","next":null,"parent":"1H","inputs":{"NUM1":[3,"aH4",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aH4":{"opcode":"operator_mathop","next":null,"parent":"aH3","inputs":{"NUM":[3,"aH5",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aH5":{"opcode":"operator_divide","next":null,"parent":"aH4","inputs":{"NUM1":[3,"bi1",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bi1":{"opcode":"data_itemoflist","next":null,"parent":"aH5","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"biZ":{"opcode":"control_stop","next":null,"parent":"1G","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RV":{"opcode":"control_if","next":"RW","parent":"RU","inputs":{"CONDITION":[2,"aH6"],"SUBSTACK":[2,"bi2"]},"fields":{},"shadow":false,"topLevel":false},"aH6":{"opcode":"operator_equals","next":null,"parent":"RV","inputs":{"OPERAND1":[3,"bi3",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bi3":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH6","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"bi2":{"opcode":"control_stop","next":null,"parent":"RV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RW":{"opcode":"control_if","next":"1I","parent":"RV","inputs":{"CONDITION":[2,"aH7"],"SUBSTACK":[2,"bi4"]},"fields":{},"shadow":false,"topLevel":false},"aH7":{"opcode":"operator_equals","next":null,"parent":"RW","inputs":{"OPERAND1":[3,"bi5",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bi5":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH7","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"bi4":{"opcode":"control_stop","next":null,"parent":"RW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"1I":{"opcode":"looks_say","next":"1J","parent":"RW","inputs":{"MESSAGE":[3,"aH8",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH8":{"opcode":"operator_join","next":null,"parent":"1I","inputs":{"STRING1":[1,[10,"Invalid OUT device ID # "]],"STRING2":[3,"bi6",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bi6":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH8","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"1J":{"opcode":"control_wait_until","next":"bi7","parent":"1I","inputs":{"CONDITION":[2,"bi8"]},"fields":{},"shadow":false,"topLevel":false},"bi8":{"opcode":"sensing_mousedown","next":null,"parent":"1J","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bi7":{"opcode":"control_stop","next":null,"parent":"1J","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aH9":{"opcode":"procedures_definition","next":"1K","parent":null,"inputs":{"custom_block":[1,"aH!"]},"fields":{},"shadow":false,"topLevel":true,"x":4969,"y":3695},"aH!":{"opcode":"procedures_prototype","next":null,"parent":"aH9","inputs":{"Cm37E1C1p#dUX!wzAtMJ":[1,"bi9"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read from device # %s","argumentids":"[\"Cm37E1C1p#dUX!wzAtMJ\"]","argumentnames":"[\"device\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bi9":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH!","inputs":{},"fields":{"VALUE":["device",null]},"shadow":true,"topLevel":false},"1K":{"opcode":"control_if","next":null,"parent":"aH9","inputs":{"CONDITION":[2,"bi!"],"SUBSTACK":[2,"O9"]},"fields":{},"shadow":false,"topLevel":false},"bi!":{"opcode":"operator_equals","next":null,"parent":"1K","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"O9":{"opcode":"control_if","next":"RX","parent":"1K","inputs":{"CONDITION":[2,"aH#"],"SUBSTACK":[2,"1L"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bi#"},"aH#":{"opcode":"operator_equals","next":null,"parent":"O9","inputs":{"OPERAND1":[3,"bi%",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bi%":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH#","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"1L":{"opcode":"data_setvariableto","next":"bi(","parent":"O9","inputs":{"VALUE":[3,"aH%",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aH%":{"opcode":"operator_add","next":null,"parent":"1L","inputs":{"NUM1":[3,"aH(",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH(":{"opcode":"operator_join","next":null,"parent":"aH%","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"1M",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1M":{"opcode":"operator_join","next":null,"parent":"aH(","inputs":{"STRING1":[3,"1N",[10,""]],"STRING2":[3,"1O",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1N":{"opcode":"operator_join","next":null,"parent":"1M","inputs":{"STRING1":[3,"aH)",[10,""]],"STRING2":[3,"aH*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH)":{"opcode":"operator_join","next":null,"parent":"1N","inputs":{"STRING1":[1,[10,"0"]],"STRING2":[3,"aH+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH+":{"opcode":"operator_add","next":null,"parent":"aH)","inputs":{"NUM1":[3,"1P",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1P":{"opcode":"sensing_keypressed","next":null,"parent":"aH+","inputs":{"KEY_OPTION":[3,"bi)","bi*"]},"fields":{},"shadow":false,"topLevel":false},"bi)":{"opcode":"data_itemoflist","next":null,"parent":"1P","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi*":{"opcode":"sensing_keyoptions","next":null,"parent":"1P","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH*":{"opcode":"operator_join","next":null,"parent":"1N","inputs":{"STRING1":[3,"aH,",[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aH,":{"opcode":"operator_add","next":null,"parent":"aH*","inputs":{"NUM1":[3,"1Q",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1Q":{"opcode":"sensing_keypressed","next":null,"parent":"aH,","inputs":{"KEY_OPTION":[3,"bi+","bi,"]},"fields":{},"shadow":false,"topLevel":false},"bi+":{"opcode":"data_itemoflist","next":null,"parent":"1Q","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi,":{"opcode":"sensing_keyoptions","next":null,"parent":"1Q","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"1O":{"opcode":"operator_join","next":null,"parent":"1M","inputs":{"STRING1":[3,"1R",[10,""]],"STRING2":[3,"aH-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1R":{"opcode":"operator_join","next":null,"parent":"1O","inputs":{"STRING1":[3,"aH.",[10,""]],"STRING2":[3,"aH/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH.":{"opcode":"operator_add","next":null,"parent":"1R","inputs":{"NUM1":[3,"1S",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1S":{"opcode":"sensing_keypressed","next":null,"parent":"aH.","inputs":{"KEY_OPTION":[3,"bi-","bi."]},"fields":{},"shadow":false,"topLevel":false},"bi-":{"opcode":"data_itemoflist","next":null,"parent":"1S","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi.":{"opcode":"sensing_keyoptions","next":null,"parent":"1S","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH/":{"opcode":"operator_add","next":null,"parent":"1R","inputs":{"NUM1":[3,"1T",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1T":{"opcode":"sensing_keypressed","next":null,"parent":"aH/","inputs":{"KEY_OPTION":[3,"bi/","bi:"]},"fields":{},"shadow":false,"topLevel":false},"bi/":{"opcode":"data_itemoflist","next":null,"parent":"1T","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi:":{"opcode":"sensing_keyoptions","next":null,"parent":"1T","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH-":{"opcode":"operator_join","next":null,"parent":"1O","inputs":{"STRING1":[3,"aH:",[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aH:":{"opcode":"operator_add","next":null,"parent":"aH-","inputs":{"NUM1":[3,"1U",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1U":{"opcode":"sensing_keypressed","next":null,"parent":"aH:","inputs":{"KEY_OPTION":[3,"bi;","bi="]},"fields":{},"shadow":false,"topLevel":false},"bi;":{"opcode":"data_itemoflist","next":null,"parent":"1U","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi=":{"opcode":"sensing_keyoptions","next":null,"parent":"1U","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bi(":{"opcode":"control_stop","next":null,"parent":"1L","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RX":{"opcode":"control_if","next":"RY","parent":"O9","inputs":{"CONDITION":[2,"aH;"],"SUBSTACK":[2,"1V"]},"fields":{},"shadow":false,"topLevel":false},"aH;":{"opcode":"operator_equals","next":null,"parent":"RX","inputs":{"OPERAND1":[3,"bi?",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bi?":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH;","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"1V":{"opcode":"data_setvariableto","next":"bi@","parent":"RX","inputs":{"VALUE":[3,"aH=",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aH=":{"opcode":"operator_add","next":null,"parent":"1V","inputs":{"NUM1":[3,"aH?",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH?":{"opcode":"operator_join","next":null,"parent":"aH=","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"1W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1W":{"opcode":"operator_join","next":null,"parent":"aH?","inputs":{"STRING1":[3,"1X",[10,""]],"STRING2":[3,"1Y",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1X":{"opcode":"operator_join","next":null,"parent":"1W","inputs":{"STRING1":[3,"bi[",[10,""]],"STRING2":[3,"bi]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bi[":{"opcode":"operator_join","next":null,"parent":"1X","inputs":{"STRING1":[1,[10,"1"]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bi]":{"opcode":"operator_join","next":null,"parent":"1X","inputs":{"STRING1":[1,[10,"0"]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"1Y":{"opcode":"operator_join","next":null,"parent":"1W","inputs":{"STRING1":[3,"1Z",[10,""]],"STRING2":[3,"10",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1Z":{"opcode":"operator_join","next":null,"parent":"1Y","inputs":{"STRING1":[3,"aH@",[10,""]],"STRING2":[3,"aH[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH@":{"opcode":"operator_add","next":null,"parent":"1Z","inputs":{"NUM1":[3,"11",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bi^":{"opcode":"data_itemoflist","next":null,"parent":"11","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi_":{"opcode":"sensing_keyoptions","next":null,"parent":"11","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH[":{"opcode":"operator_add","next":null,"parent":"1Z","inputs":{"NUM1":[3,"12",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bi`":{"opcode":"data_itemoflist","next":null,"parent":"12","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi{":{"opcode":"sensing_keyoptions","next":null,"parent":"12","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH]":{"opcode":"operator_add","next":null,"parent":"10","inputs":{"NUM1":[3,"13",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bi|":{"opcode":"data_itemoflist","next":null,"parent":"13","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bi}":{"opcode":"sensing_keyoptions","next":null,"parent":"13","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"aH^":{"opcode":"operator_add","next":null,"parent":"10","inputs":{"NUM1":[3,"aH_",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH_":{"opcode":"operator_not","next":null,"parent":"aH^","inputs":{"OPERAND":[2,"14"]},"fields":{},"shadow":false,"topLevel":false},"bi~":{"opcode":"data_itemoflist","next":null,"parent":"14","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bja":{"opcode":"sensing_keyoptions","next":null,"parent":"14","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bi@":{"opcode":"control_stop","next":null,"parent":"1V","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"RY":{"opcode":"control_if","next":"15","parent":"RX","inputs":{"CONDITION":[2,"aH`"],"SUBSTACK":[2,"16"]},"fields":{},"shadow":false,"topLevel":false},"aH`":{"opcode":"operator_equals","next":null,"parent":"RY","inputs":{"OPERAND1":[3,"bjb",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bjb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aH`","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"aH{":{"opcode":"operator_mod","next":null,"parent":"16","inputs":{"NUM1":[3,"aH|",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aH|":{"opcode":"operator_mathop","next":null,"parent":"aH{","inputs":{"NUM":[3,"17",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bjd":{"opcode":"data_itemoflist","next":null,"parent":"17","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aH}":{"opcode":"operator_mathop","next":null,"parent":"17","inputs":{"NUM":[3,"aH~",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aH~":{"opcode":"operator_mathop","next":null,"parent":"aH}","inputs":{"NUM":[3,"aIa",[4,""]]},"fields":{"OPERATOR":["10 ^",null]},"shadow":false,"topLevel":false},"aIa":{"opcode":"operator_multiply","next":null,"parent":"aH~","inputs":{"NUM1":[3,"bje",[4,""]],"NUM2":[3,[12,"8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bje":{"opcode":"operator_mathop","next":null,"parent":"aIa","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bjc":{"opcode":"control_stop","next":null,"parent":"16","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aIb":{"opcode":"operator_join","next":null,"parent":"15","inputs":{"STRING1":[1,[10,"Invalid IN device ID # "]],"STRING2":[3,"bjf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bjf":{"opcode":"argument_reporter_string_number","next":null,"parent":"aIb","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"bjh":{"opcode":"sensing_mousedown","next":null,"parent":"18","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bjg":{"opcode":"control_stop","next":null,"parent":"18","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aIc":{"opcode":"procedures_definition","next":"19","parent":null,"inputs":{"custom_block":[1,"aId"]},"fields":{},"shadow":false,"topLevel":true,"x":1563,"y":791},"aId":{"opcode":"procedures_prototype","next":null,"parent":"aIc","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,"bji"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","argumentnames":"[\"interrupt #\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bji":{"opcode":"argument_reporter_string_number","next":null,"parent":"aId","inputs":{},"fields":{"VALUE":["interrupt #",null]},"shadow":true,"topLevel":false},"bjj":{"opcode":"operator_equals","next":null,"parent":"19","inputs":{"OPERAND1":[3,[12,"8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIe":{"opcode":"procedures_call","next":null,"parent":"19","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[3,"bjk",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bjk":{"opcode":"argument_reporter_string_number","next":null,"parent":"aIe","inputs":{},"fields":{"VALUE":["interrupt #",null]},"shadow":false,"topLevel":false},"ax:":{"opcode":"procedures_call","next":"aIf","parent":"ax/","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","warp":"true"}},"aIf":{"opcode":"procedures_call","next":"ax;","parent":"ax:","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,[10,"16666"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","warp":"false"}},"ax;":{"opcode":"procedures_call","next":"Y{","parent":"aIf","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","warp":"true"}},"aC%":{"opcode":"data_deletealloflist","next":"aC)","parent":"ZI","inputs":{},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aC)":{"opcode":"data_addtolist","next":"aC(","parent":"aC%","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aC_":{"opcode":"data_showlist","next":"aIg","parent":"aC^","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bjl":{"opcode":"data_deletealloflist","next":null,"parent":"aIg","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"ZN":{"opcode":"data_addtolist","next":"ZO","parent":"Rm","inputs":{"ITEM":[3,"1!",[10,""]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aIh":{"opcode":"data_itemoflist","next":null,"parent":"1!","inputs":{"INDEX":[3,"bjm",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bjm":{"opcode":"operator_add","next":null,"parent":"aIh","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"1!":{"opcode":"operator_join","next":null,"parent":"ZN","inputs":{"STRING1":[3,"aIh",[10,""]],"STRING2":[3,"1#",[10," "]]},"fields":{},"shadow":false,"topLevel":false},"bjn":{"opcode":"operator_join","next":null,"parent":"1#","inputs":{"STRING1":[1,[10," PC: "]],"STRING2":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"RM":{"opcode":"procedures_call","next":"RN","parent":"aG}","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bjo",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bjp",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bjo":{"opcode":"operator_subtract","next":null,"parent":"RM","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bjp":{"opcode":"data_itemoflist","next":null,"parent":"RM","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"RN":{"opcode":"procedures_call","next":"aHa","parent":"RM","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bjq",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aG~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bjq":{"opcode":"operator_subtract","next":null,"parent":"RN","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aHa":{"opcode":"data_changevariableby","next":"bie","parent":"RN","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"1n":{"opcode":"procedures_call","next":"aG=","parent":"aG;","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bjr",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bjr":{"opcode":"operator_subtract","next":null,"parent":"1n","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG=":{"opcode":"data_replaceitemoflist","next":"1o","parent":"1n","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"ax`":{"opcode":"data_deletealloflist","next":"aIi","parent":"ax_","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"Rn":{"opcode":"control_if","next":"ZQ","parent":"ZP","inputs":{"CONDITION":[2,"bjs"],"SUBSTACK":[2,"aIj"]},"fields":{},"shadow":false,"topLevel":false},"bjs":{"opcode":"operator_equals","next":null,"parent":"Rn","inputs":{"OPERAND1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIj":{"opcode":"control_stop","next":"aIk","parent":"Rn","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"ZQ":{"opcode":"control_if","next":null,"parent":"Rn","inputs":{"SUBSTACK":[2,"be7"],"CONDITION":[2,"be6"]},"fields":{},"shadow":false,"topLevel":false},"bjt":{"opcode":"control_stop","next":null,"parent":"aIl","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aIm":{"opcode":"operator_mod","next":null,"parent":"aIn","inputs":{"NUM1":[3,"bju",[4,""]],"NUM2":[3,[12,"8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"],[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aD]":{"opcode":"operator_mod","next":null,"parent":"aD[","inputs":{"NUM1":[3,"bfu",[4,""]],"NUM2":[3,[12,"8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"],[4,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"Rs":{"opcode":"control_if_else","next":null,"parent":"aD=","inputs":{"CONDITION":[2,"bfs"],"SUBSTACK":[2,"Z8"],"SUBSTACK2":[2,"1%"]},"fields":{},"shadow":false,"topLevel":false},"aD@":{"opcode":"operator_mod","next":null,"parent":"aD?","inputs":{"NUM1":[3,"bfr",[4,""]],"NUM2":[3,[12,"8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"],[4,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"1%":{"opcode":"data_replaceitemoflist","next":null,"parent":"Rs","inputs":{"INDEX":[3,"aIn",[7,"0"]],"ITEM":[3,"bjv",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aIn":{"opcode":"operator_add","next":null,"parent":"1%","inputs":{"NUM1":[3,"aIm",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bju":{"opcode":"argument_reporter_string_number","next":null,"parent":"aIm","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bjv":{"opcode":"argument_reporter_string_number","next":null,"parent":"1%","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"OW":{"opcode":"control_if_else","next":"aC-","parent":"ZL","inputs":{"CONDITION":[2,"beU"],"SUBSTACK2":[2,"aC,"],"SUBSTACK":[2,"bjw"]},"fields":{},"shadow":false,"topLevel":false},"aC,":{"opcode":"data_setvariableto","next":"beV","parent":"OW","inputs":{"VALUE":[1,[10,"65536"]]},"fields":{"VARIABLE":["8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"]},"shadow":false,"topLevel":false},"bjw":{"opcode":"data_setvariableto","next":null,"parent":"OW","inputs":{"VALUE":[1,[10,"0x4000"]]},"fields":{"VARIABLE":["8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"]},"shadow":false,"topLevel":false},"aER":{"opcode":"operator_mod","next":null,"parent":"aEQ","inputs":{"NUM1":[3,"bf!",[4,""]],"NUM2":[3,[12,"8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aEL":{"opcode":"operator_mod","next":null,"parent":"aEK","inputs":{"NUM1":[3,"bf8",[4,""]],"NUM2":[3,[12,"8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1(":{"opcode":"operator_add","next":null,"parent":"aIo","inputs":{"NUM1":[3,"aIp",[4,"0"]],"NUM2":[3,"aIq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjx":{"opcode":"data_itemoflist","next":null,"parent":"aIp","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aIr":{"opcode":"operator_add","next":null,"parent":"aIq","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bjy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjy":{"opcode":"data_itemoflist","next":null,"parent":"aIr","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"Z_":{"opcode":"data_replaceitemoflist","next":"Z`","parent":"Z^","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIo",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIq":{"opcode":"operator_mod","next":null,"parent":"1(","inputs":{"NUM1":[3,"aIr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aIp":{"opcode":"operator_mod","next":null,"parent":"1(","inputs":{"NUM1":[3,"bjx",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aIo":{"opcode":"operator_gt","next":null,"parent":"Z_","inputs":{"OPERAND1":[3,"1(",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"0g":{"opcode":"data_replaceitemoflist","next":"0h","parent":"0f","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIs",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bjz":{"opcode":"operator_mod","next":null,"parent":"1)","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aIs":{"opcode":"operator_add","next":null,"parent":"0g","inputs":{"NUM1":[3,"aIt",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIu":{"opcode":"operator_mod","next":null,"parent":"1)","inputs":{"NUM1":[3,"bjA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjA":{"opcode":"data_itemoflist","next":null,"parent":"aIu","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1)":{"opcode":"operator_subtract","next":null,"parent":"aIt","inputs":{"NUM1":[3,"aIu",[4,""]],"NUM2":[3,"bjz",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aIt":{"opcode":"operator_lt","next":null,"parent":"aIs","inputs":{"OPERAND1":[3,"1)",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"0q":{"opcode":"data_replaceitemoflist","next":"0r","parent":"0p","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIv",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIv":{"opcode":"operator_add","next":null,"parent":"0q","inputs":{"NUM1":[3,"aIw",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIw":{"opcode":"operator_lt","next":null,"parent":"aIv","inputs":{"OPERAND1":[3,"1*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"1*":{"opcode":"operator_subtract","next":null,"parent":"aIw","inputs":{"NUM1":[3,"aIx",[4,""]],"NUM2":[3,"aIy",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aIx":{"opcode":"operator_mod","next":null,"parent":"1*","inputs":{"NUM1":[3,"bjB",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjB":{"opcode":"data_itemoflist","next":null,"parent":"aIx","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aIy":{"opcode":"operator_mod","next":null,"parent":"1*","inputs":{"NUM1":[3,"aIz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aIz":{"opcode":"operator_add","next":null,"parent":"aIy","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bjC",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjC":{"opcode":"data_itemoflist","next":null,"parent":"aIz","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0y":{"opcode":"data_replaceitemoflist","next":"0z","parent":"0x","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIA",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIB":{"opcode":"data_itemoflist","next":null,"parent":"aIC","inputs":{"INDEX":[3,"aID",[7,"0"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aID":{"opcode":"operator_add","next":null,"parent":"aIB","inputs":{"NUM1":[3,"aIE",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIE":{"opcode":"operator_add","next":null,"parent":"aID","inputs":{"NUM1":[3,"aIF",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aIF":{"opcode":"operator_multiply","next":null,"parent":"aIE","inputs":{"NUM1":[3,"bjD",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aIG":{"opcode":"operator_gt","next":null,"parent":"aIA","inputs":{"OPERAND1":[3,"aIC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjD":{"opcode":"data_itemoflist","next":null,"parent":"aIF","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aIA":{"opcode":"operator_add","next":null,"parent":"0y","inputs":{"NUM1":[3,"aIG",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aIC":{"opcode":"operator_mod","next":null,"parent":"aIG","inputs":{"NUM1":[3,"aIB",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aIH":{"opcode":"data_replaceitemoflist","next":null,"parent":"O7","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aII",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aII":{"opcode":"operator_add","next":null,"parent":"aIH","inputs":{"NUM1":[3,"aIJ",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIJ":{"opcode":"operator_equals","next":null,"parent":"aII","inputs":{"OPERAND1":[3,"bjE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjE":{"opcode":"operator_mod","next":null,"parent":"aIJ","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"O7":{"opcode":"control_if_else","next":"03","parent":"02","inputs":{"SUBSTACK2":[2,"aIH"],"SUBSTACK":[2,"aIK"],"CONDITION":[2,"aIL"]},"fields":{},"shadow":false,"topLevel":false},"aIK":{"opcode":"data_replaceitemoflist","next":null,"parent":"O7","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIM",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIM":{"opcode":"operator_add","next":null,"parent":"aIK","inputs":{"NUM1":[3,"aIN",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIO":{"opcode":"operator_equals","next":null,"parent":"aIN","inputs":{"OPERAND1":[3,"aIP",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"aIP":{"opcode":"operator_mod","next":null,"parent":"aIO","inputs":{"NUM1":[3,"bjF",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aIL","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"bjF":{"opcode":"operator_subtract","next":null,"parent":"aIP","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIN":{"opcode":"operator_not","next":null,"parent":"aIM","inputs":{"OPERAND":[2,"aIO"]},"fields":{},"shadow":false,"topLevel":false},"aIL":{"opcode":"operator_equals","next":null,"parent":"O7","inputs":{"OPERAND1":[3,"bjG",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"aFU":{"opcode":"data_replaceitemoflist","next":"0M","parent":"aFP","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aFB":{"opcode":"data_replaceitemoflist","next":"0F","parent":"aFw","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"0V":{"opcode":"data_replaceitemoflist","next":"0W","parent":"0U","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIQ",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIQ":{"opcode":"operator_add","next":null,"parent":"0V","inputs":{"NUM1":[3,"aIR",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIR":{"opcode":"operator_lt","next":null,"parent":"aIQ","inputs":{"OPERAND1":[3,"1+",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"1+":{"opcode":"operator_subtract","next":null,"parent":"aIR","inputs":{"NUM1":[3,"aIS",[4,""]],"NUM2":[3,"bjH",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aIS":{"opcode":"operator_mod","next":null,"parent":"1+","inputs":{"NUM1":[3,"bjI",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjI":{"opcode":"data_itemoflist","next":null,"parent":"aIS","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bjH":{"opcode":"operator_mod","next":null,"parent":"1+","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjJ":{"opcode":"data_changevariableby","next":null,"parent":"1,","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"RZ":{"opcode":"control_if","next":"1-","parent":"1D","inputs":{"CONDITION":[2,"1."],"SUBSTACK":[2,"aIT"]},"fields":{},"shadow":false,"topLevel":false},"aIU":{"opcode":"operator_gt","next":null,"parent":"1.","inputs":{"OPERAND1":[3,"bjK",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"1.":{"opcode":"operator_or","next":null,"parent":"RZ","inputs":{"OPERAND2":[2,"aIV"],"OPERAND1":[2,"aIU"]},"fields":{},"shadow":false,"topLevel":false},"aIV":{"opcode":"operator_equals","next":null,"parent":"1.","inputs":{"OPERAND1":[3,"bjL",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bjL":{"opcode":"data_itemoflist","next":null,"parent":"aIV","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"1,":{"opcode":"data_replaceitemoflist","next":"bjJ","parent":"1/","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bjM",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bjN":{"opcode":"operator_add","next":null,"parent":"aIW","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bjK":{"opcode":"operator_mod","next":null,"parent":"aIU","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bjO":{"opcode":"data_itemoflist","next":null,"parent":"1D","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"1D":{"opcode":"data_setvariableto","next":"RZ","parent":"aHM","inputs":{"VALUE":[3,"bjO",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"1-":{"opcode":"data_replaceitemoflist","next":"R0","parent":"RZ","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aIX",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIT":{"opcode":"data_setvariableto","next":null,"parent":"RZ","inputs":{"VALUE":[3,"aIW",[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bjP":{"opcode":"data_itemoflist","next":null,"parent":"aIY","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"R0":{"opcode":"control_if","next":"1:","parent":"1-","inputs":{"CONDITION":[2,"1;"],"SUBSTACK":[2,"aIZ"]},"fields":{},"shadow":false,"topLevel":false},"1;":{"opcode":"operator_or","next":null,"parent":"R0","inputs":{"OPERAND1":[2,"aI0"],"OPERAND2":[2,"aI1"]},"fields":{},"shadow":false,"topLevel":false},"aI0":{"opcode":"operator_gt","next":null,"parent":"1;","inputs":{"OPERAND1":[3,"aI2",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aI1":{"opcode":"operator_equals","next":null,"parent":"1;","inputs":{"OPERAND1":[3,"bjQ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bjQ":{"opcode":"data_itemoflist","next":null,"parent":"aI1","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIZ":{"opcode":"data_setvariableto","next":null,"parent":"R0","inputs":{"VALUE":[3,"bjR",[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bjR":{"opcode":"operator_add","next":null,"parent":"aIZ","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bjS":{"opcode":"operator_divide","next":null,"parent":"aI2","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aI2":{"opcode":"operator_mathop","next":null,"parent":"aI0","inputs":{"NUM":[3,"bjS",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aIW":{"opcode":"operator_mod","next":null,"parent":"aIT","inputs":{"NUM1":[3,"bjN",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bjM":{"opcode":"operator_mod","next":null,"parent":"1,","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aIY":{"opcode":"operator_mod","next":null,"parent":"aI3","inputs":{"NUM1":[3,"bjP",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aIX":{"opcode":"operator_add","next":null,"parent":"1-","inputs":{"NUM1":[3,"aI3",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aI3":{"opcode":"operator_gt","next":null,"parent":"aIX","inputs":{"OPERAND1":[3,"aIY",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"1:":{"opcode":"data_replaceitemoflist","next":"1=","parent":"R0","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aI4",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bjT":{"opcode":"operator_gt","next":null,"parent":"aI4","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"aI4":{"opcode":"operator_add","next":null,"parent":"1:","inputs":{"NUM1":[3,"bjT",[4,""]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"1=":{"opcode":"data_replaceitemoflist","next":"1?","parent":"1:","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aI5",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aI5":{"opcode":"operator_mod","next":null,"parent":"1=","inputs":{"NUM1":[3,"aI6",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aI6":{"opcode":"operator_add","next":null,"parent":"aI5","inputs":{"NUM1":[3,"bjU",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bjU":{"opcode":"operator_mod","next":null,"parent":"aI6","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"1?":{"opcode":"data_replaceitemoflist","next":"1/","parent":"1=","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aI7",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aI7":{"opcode":"operator_add","next":null,"parent":"1?","inputs":{"NUM1":[3,"aI8",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aI8":{"opcode":"operator_equals","next":null,"parent":"aI7","inputs":{"OPERAND1":[3,"bjV",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bjV":{"opcode":"operator_mod","next":null,"parent":"aI8","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"1/":{"opcode":"data_replaceitemoflist","next":"1,","parent":"1?","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aI9",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aI9":{"opcode":"operator_add","next":null,"parent":"1/","inputs":{"NUM1":[3,"aI!",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aI!":{"opcode":"operator_gt","next":null,"parent":"aI9","inputs":{"OPERAND1":[3,"bjW",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bjW":{"opcode":"operator_mod","next":null,"parent":"aI!","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bfM":{"opcode":"operator_mod","next":null,"parent":"aEm","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bf?":{"opcode":"operator_mod","next":null,"parent":"aE!","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bgf":{"opcode":"operator_mod","next":null,"parent":"aE_","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg!":{"opcode":"operator_mod","next":null,"parent":"aF,","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg;":{"opcode":"operator_mod","next":null,"parent":"aF`","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bf4":{"opcode":"operator_mod","next":null,"parent":"aEH","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aIi":{"opcode":"data_hidelist","next":"bjX","parent":"ax`","inputs":{},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIg":{"opcode":"data_showlist","next":"bjl","parent":"aC_","inputs":{},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aIk":{"opcode":"data_addtolist","next":"aIl","parent":"aIj","inputs":{"ITEM":[1,[10,"Jump to 0: CP/M reboot"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aIl":{"opcode":"data_showlist","next":"bjt","parent":"aIk","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bjX":{"opcode":"data_hidelist","next":null,"parent":"aIi","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bjY":{"opcode":"operator_join","next":null,"parent":"1#","inputs":{"STRING1":[1,[10," Regs: "]],"STRING2":[3,[13,"_registers","E$.ShehU4wuDtCF}{|rY"],[10," "]]},"fields":{},"shadow":false,"topLevel":false},"1#":{"opcode":"operator_join","next":null,"parent":"1!","inputs":{"STRING1":[3,"bjn",[10,""]],"STRING2":[3,"bjY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bu[":{"opcode":"procedures_call","next":null,"parent":null,"inputs":{"~aXH:%i,o85|#)yL(Rns":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":true,"x":662,"y":990,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","warp":"false"}},"aDV":{"opcode":"data_addtolist","next":"aDX","parent":"Rq","inputs":{"ITEM":[1,[10,"MOV M to reg"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aD7":{"opcode":"data_addtolist","next":"aD#","parent":"Rr","inputs":{"ITEM":[1,[10,"MOV reg to M"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aD8":{"opcode":"data_addtolist","next":"Z6","parent":"Rr","inputs":{"ITEM":[1,[10,"MOV reg to reg"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"Z1":{"opcode":"data_addtolist","next":"Z2","parent":"aDO","inputs":{"ITEM":[3,"aI#",[10,""]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aI#":{"opcode":"operator_join","next":null,"parent":"Z1","inputs":{"STRING1":[1,[10,"RAM to reg "]],"STRING2":[3,"aI%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aI%":{"opcode":"operator_join","next":null,"parent":"aI#","inputs":{"STRING1":[3,"aI(",[10,""]],"STRING2":[1,[10," initiated"]]},"fields":{},"shadow":false,"topLevel":false},"bjZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aI(","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bj0":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD3","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aD3":{"opcode":"operator_add","next":null,"parent":"aD2","inputs":{"NUM1":[3,"bj0",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aD5":{"opcode":"operator_add","next":null,"parent":"aD4","inputs":{"NUM1":[3,"bj1",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bj1":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD5","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aI(":{"opcode":"operator_add","next":null,"parent":"aI%","inputs":{"NUM1":[3,"bjZ",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bu]":[12,"_S","!@vTj4c1The8*{(^_*O."],"bu^":[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],"bu_":[12,".GBC?","za5df3dC6Lq85;3lun8/"],"bu`":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bu{":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bu|":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bu}":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bu~":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bva":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bvb":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bvc":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bvd":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bve":[12,",c","Crf*ltOpxTp[zPgDlY{T"],"bvf":[12,",joypad","W/n=I{ySVA3XJEP{k?=["],"bvg":[12,"_T","|Cl^=?C:,/{Epnf![x2:"],"bvh":[12,"T9","ecaYd9sPeo:%`_LsAsJD"],"bvi":[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],"bvj":[12,"_IF","qOvY4@JXH3Z=q*#gP*-="],"bvk":[12,"_IF","qOvY4@JXH3Z=q*#gP*-="],"bvl":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bvm":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bvn":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bvo":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"bvp":[12,"render","b#%5IA`afs~P-ErWHe%`"],"bvq":[12,"i","*r-MV7B^PL30%%8PQz%`"],"bvr":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvs":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvt":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvu":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvv":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvw":[12,"_S","!@vTj4c1The8*{(^_*O."],"bvx":[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],"bvy":[12,".IME","Yyq0n/?:tZ-1R{!(9E,I"],"bvz":[12,"_HALT","F_}DPF^fI%3NP^P]}FKY"],"bvA":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvB":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvC":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvD":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvE":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvF":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvG":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvH":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvI":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvJ":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvK":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvL":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvM":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvN":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvO":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvP":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvQ":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvR":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvS":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvT":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvU":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvV":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bvW":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvX":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvY":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bvZ":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv0":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv1":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv2":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bv3":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bv4":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv5":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv6":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv7":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv8":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv9":[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],"bv!":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv#":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],"bv%":[12,".instr","ujAlu]pJm2~uaC1iJUQ]"]},"comments":{"ZH":{"blockId":"pn","x":239,"y":448,"width":200,"height":200,"minimized":false,"text":"Register list entries in terms of what registers each one refers to\n1 = B\n2 = C\n3 = D\n4 = E\n5 = H\n6 = L\n7= \"M\" (anything writing here goes to RAM)\n8 = A\n9 = 16-bit Shift register"},"aC!":{"blockId":"OV","x":434.0000000000001,"y":624,"width":217.066650390625,"height":208.53335571289062,"minimized":false,"text":"Flag list\n1 = C (Carry)\n2 = 1 (always 1)\n3 = P (Parity)\n4 = 0\n5 = AC (Auxiliary Carry)\n6 = 0\n7 = Z (Zero)\n8 = S (Sign)"},"bi#":{"blockId":"O9","x":5901.2960332799985,"y":3434.0052454399975,"width":406.933349609375,"height":449.5999755859375,"minimized":false,"text":"Space Invaders:\nRead 1 \n BIT 0 coin (0 when active) \n 1 P2 start button \n 2 P1 start button \n 3 ? \n 4 P1 shoot button \n 5 P1 joystick left \n 6 P1 joystick right \n 7 ? \n\n Read 2 \n BIT 0,1 dipswitch number of lives (0:3,1:4,2:5,3:6) \n 2 tilt 'button' \n 3 dipswitch bonus life at 1:1000,0:1500 \n 4 P2 shoot button \n 5 P2 joystick left \n 6 P2 joystick right \n 7 dipswitch coin info 1:off,0:on \n\n Read 3 shift register result"},"bv(":{"blockId":null,"x":278,"y":-230,"width":200,"height":200,"minimized":false,"text":"SI8080 V0.4.0 by @oxiti8\n\nEmulates the Intel 8080, targets Space Invaders but is configured to allow to run other 8080 software"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"0","assetId":"556fdf9ffd8636d71f539453dd1d0b4c","dataFormat":"wav","rate":48000,"sampleCount":8216,"md5ext":"556fdf9ffd8636d71f539453dd1d0b4c.wav"},{"name":"1","assetId":"46e27d03072f73e0d740947fb6d7404a","dataFormat":"wav","rate":48000,"sampleCount":16640,"md5ext":"46e27d03072f73e0d740947fb6d7404a.wav"},{"name":"2","assetId":"0eb46490f15bb45d6c4ca56a816413df","dataFormat":"wav","rate":48000,"sampleCount":63676,"md5ext":"0eb46490f15bb45d6c4ca56a816413df.wav"},{"name":"4","assetId":"d1b64909ae0058fa4f9224b2d3de3f11","dataFormat":"wav","rate":48000,"sampleCount":3522,"md5ext":"d1b64909ae0058fa4f9224b2d3de3f11.wav"},{"name":"3","assetId":"873c6cbad1469071639b44267c67bcae","dataFormat":"wav","rate":48000,"sampleCount":22022,"md5ext":"873c6cbad1469071639b44267c67bcae.wav"},{"name":"5","assetId":"8782f8cf697e7e453dcbd70840ff2754","dataFormat":"wav","rate":48000,"sampleCount":3156,"md5ext":"8782f8cf697e7e453dcbd70840ff2754.wav"},{"name":"6","assetId":"de7adc40e0d68c50cf3ce271a25c2061","dataFormat":"wav","rate":48000,"sampleCount":3321,"md5ext":"de7adc40e0d68c50cf3ce271a25c2061.wav"},{"name":"7","assetId":"55f391146f484430b9b40ef46678eef6","dataFormat":"wav","rate":48000,"sampleCount":3561,"md5ext":"55f391146f484430b9b40ef46678eef6.wav"},{"name":"8","assetId":"637f5684934d6ab3a4699597d9bd590b","dataFormat":"wav","rate":48000,"sampleCount":105960,"md5ext":"637f5684934d6ab3a4699597d9bd590b.wav"},{"name":"11","assetId":"3877e31352403f8f1a47cc7560c9f83a","dataFormat":"wav","rate":48000,"sampleCount":7211,"md5ext":"3877e31352403f8f1a47cc7560c9f83a.wav"},{"name":"12","assetId":"102e69c7f60049f528435fd7ada2a664","dataFormat":"wav","rate":48000,"sampleCount":58527,"md5ext":"102e69c7f60049f528435fd7ada2a664.wav"},{"name":"9","assetId":"69c3b0149b0858d59e2426127dbc62e4","dataFormat":"wav","rate":48000,"sampleCount":91024,"md5ext":"69c3b0149b0858d59e2426127dbc62e4.wav"},{"name":"13","assetId":"691a426d57c18e0117a102290a75c6fe","dataFormat":"wav","rate":48000,"sampleCount":15256,"md5ext":"691a426d57c18e0117a102290a75c6fe.wav"},{"name":"14","assetId":"211bd32d691ba9cf0e3e13a4e91cfa0a","dataFormat":"wav","rate":48000,"sampleCount":3522,"md5ext":"211bd32d691ba9cf0e3e13a4e91cfa0a.wav"},{"name":"15","assetId":"5e48a0c509f4922f8a8d8600d3b1ea1f","dataFormat":"wav","rate":48000,"sampleCount":3156,"md5ext":"5e48a0c509f4922f8a8d8600d3b1ea1f.wav"},{"name":"16","assetId":"b3e71b5b08fe921af659b174eaac15ee","dataFormat":"wav","rate":48000,"sampleCount":3321,"md5ext":"b3e71b5b08fe921af659b174eaac15ee.wav"},{"name":"17","assetId":"63a1b7d4c3522687d3576ee40b52a1cf","dataFormat":"wav","rate":48000,"sampleCount":3561,"md5ext":"63a1b7d4c3522687d3576ee40b52a1cf.wav"},{"name":"18","assetId":"687fd3739dba42bd60fc2c29f8f9284b","dataFormat":"wav","rate":48000,"sampleCount":52371,"md5ext":"687fd3739dba42bd60fc2c29f8f9284b.wav"}],"volume":100,"layerOrder":19,"visible":true,"x":94,"y":106,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Game Boy","variables":{";E?SYI/y0cz0le)X4#4l":["_R",2],"io(,(TfDAEBRM2iX1c}h":["loop",65312],"!@vTj4c1The8*{(^_*O.":["_S",0],"T`~F4~2,O!/[8pu)xO1,":["T1","0b00000000"],"pI+E2RUGrnC0}Oxj[fQD":["g",0],"*r-MV7B^PL30%%8PQz%`":["i",256],"Yyq0n/?:tZ-1R{!(9E,I":[".IME",1],"R93(y;ezBDFNxz;R$.9{":["-LY",57],"]j0JoR^IRmZ%Dqa1U-3t":["-wx",89],"[P*KHQ#6Rk9]Ox;1v%3A":["-LYC",15],"FL2h%|upY.J#$}=ul8?a":[".spritesize",8],"0pKRpVmta7bZeii6{wYz":["-scx",208],"j%_uw7vcE;vljqGCEt;-":["-LCDC","11000011"],".yqIokTgw8-|]3$}O%wt":["-STATUS","2"],"hX1J)AVg^t88ELGv:hb%":["T2",56],"RJLtSXRx71$[%`nwOBtM":["@PIX",0],"Xa^xc{EoyO7r}@UX9*==":["h",2],"Tj+w!/(PV_!`zhKO@qb%":["@PAL","0"],"Z]?-Im_0pF^!OOi!AX81":["-WLY",0],"dyPQEg`wlO+1vws5/HRV":["-windowWasDrawn?","0"],":D[mPTcd3;]Yf==]Wvx`":["_X","0"],"DmmVyMpO/ebSRU2g=Wc:":["T3",2],"7D2+hT#2qu+P*=`t{Hlz":["_current bank",2],"v.3%0+x.An^dc%ycqc,h":["*OAMDMAS",49152],"w]/Z*A/dznMc;~79B@Ap":["*OAMDMA#",160],"WhM=KlgvY@V6x|(`!06Q":["T5",16609],"xwd)j4SY4qa||w7J0yBP":["T6",0],"FJEs/3`VRSW|=4S_cI}F":["_frames",0.6000000000000476],"%Z}6^@{`zI6YV~G_?)Jj":["_frameskip",2.4],"O*.$-nBOGKoJ7i+^Qwg2":["time1","0"],"ZnIX}4]R}DE8HyQ,rg57":[".instrID",2],"ujAlu]pJm2~uaC1iJUQ]":[".instr","B6HALT"],"|Cl^=?C:,/{Epnf![x2:":["_T",0],"d{oa^`AGe`;eIR$H[7uf":["T7",-1],"4`Ni_=/i=RIJ0%Y?]=Fn":["_RE",143.62368343770407],"VR1C#;_dshr98xN-P9L|":["T8",7],"+rwgUY7_t16|rsI3)wfC":["_lineCyc",56],"o~PUUkHtM;d|0cL72}R,":["_STATcond1",0],"{}%R*l;pt#ssSJM}}m?-":["_STATcond2",0],"%H5F/uE0-oBcg#Ueg1HX":["-LCDS","00000100"],"$bOgKA@,Cg7J(#lntKuz":["_YSHIFT",144],"7ge_EoziNOcpkF[hyyvb":["_XSHIFT",160],"951ss`PQmd4:$N48_hl;":[".soundEnable","1"],"jQVk|kz76jS8DHck5*?e":["_rom size",4],"i{fSr|$u)-tpEX+a*y{]":["_SIZE","2"],"za5df3dC6Lq85;3lun8/":[".GBC?",0],"l5]S3A7BUTfQhoeX1QMo":["_Z",195],"dOLNCNdWP`.36j7uacOp":[".windowflag","0"],"*$a?01}j0xiTOD04my^,":["T10",16582],"s18i.M`CVzl`g@kEVPGN":[".DIVCYCLES",60500],"TyNKP)!4YD91CXr;Ofr%":[".TAC1",0],".C8gJ;d]=.XH;$5E8oB2":[".TAC2",0],"dK3?LB9A%FG6.YYddD?(":[".TACFLAG","0"],"AX4IlWqKU({GdZ7:.?*!":[".spriteattributes","00000000"],"ecaYd9sPeo:%`_LsAsJD":["T9",16609],"W/n=I{ySVA3XJEP{k?=[":[",joypad","0"],"(BHg(FiW6n7},,p-%q%%":["T4",37568],"wJ{KQ$v8^;+Hlh@.7tJv":["_MBCnumber","1"],"Crf*ltOpxTp[zPgDlY{T":[",c",0],"k_tzmxwQ^5),Egn!0L:3":["FPS",10.567544034792292],"!#:owuhU@|TD~fX?SQd0":["-SCXMOD8",0],"F-[0c$U5I;6bxPbW?^5C":[".vbank","0"],"|:KA#88+TR_ky=lPP5oN":[".spriteCpal",0],"a^B*+PC_g3)^{A!L}XWv":[".tileB","0x9000"],";.CEwXh;.U;z^iL6kY}4":[".Mpri","1"],";gzI_,?`HaxU*b,C$z,M":[".Spri","0"],"QwG!GB*-SvenHq{bU0[6":["-LYmask",57],"b#%5IA`afs~P-ErWHe%`":["render","1"],";{(|I#5z)oz:*|%#$atp":["_IEindex",16800],"qOvY4@JXH3Z=q*#gP*-=":["_IFindex",16560],"]/R0=fD8X3ukr[?)_:vL":["i",0],"$:(/kN7.}P:lAp]`:oC)":[".timenable",1],"MzjtR%U}q{vlM~,lxGYF":[".SPEED","1"],"q3];|lI;X@QP63GyUdgC":[".DMAstart",16960],"gb)yqT91dr(YhxH_!$oK":[".DMAend",33024],")y?/_!@Q{wFz2FZBZ)YR":[".DMAlength",0],"kk18ewt7HpVOvYWizQ?E":[".DMAenable","0"],"0NzoLpmy^eZ1=JjkzYGg":[".DMAtype","0"],"qXl$(oh,s-`,(d=7TISu":[".DIV2","0"],")$_1A%[u4h%@g;$35$Xj":["time2",8457.688957569444],"j1eKKgYTu[qSVFb2,O.#":[".HDMAenable","0"],"QGqvJ2ss)hMY|{h/*HlZ":["_INTRdest",72],"[THklOWON,rz#pznmehC":["_A",192],"jh2$j7v[s~2Jkx.#Z1+z":["_B",1],"tGe/Wd:o59i4QQ9}C^)o":["T11",1],"hpXj8g4|ZHczy1?w+*u`":["T4.1",15],"P6r1PrSf,aWdOUXT8nij":["T4.2",15],"_CW|-^_^`N}DL:?%3bn.":["-keyRandom",8],"AfAG@-SCQv_v!Pd(!ksr":["_PIXEL#",9120],"(T;tOv.x|5[_=^tcd?s+":["_STATindex",16610],"r-%xXbKR}U_Ukw8g(6?9":["lines",185385],"-^88*(Y:JZOEd{YAhXza":["lock","0"],"lTmVP1QU2X.8`:dRKK^u":["sound",0],"9]b,=u?R90w=tux{E^:8":["delta",0],"^O3jJx+xp(vzy`j-Qc^G":["s",0],"#_MF{}THpD}[S5u5NqvJ":[".t",0]},"lists":{"I`5okbJQFT`oYf*Pv4E]":["Flag bits",[1,"0","1","0"]],"#,HpQY,,NMZpTP#Z/$7a":["byteStack",[118]],"M;Zg}Clnv_jRTTiVfz1x":["*OAMidx",[]],"`#n=K.W21Z+b9,1$DjCs":["$A",[]],"Ztb;SoN#-D4mbjS9_?T|":["$B",[]],"*2nK}A?8F`?ufZ@yn-PQ":["$C",[4,3]],"`b}E$,6@R122(5y)._3=":["2^x",["1",2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768]],"rt`J2N?0$d]K9j?Ynj$f":["*palette",["#eef2ae","#7eb97a","#38786f","#19394d","#eef2ae","#7eb97a","#38786f","#19394d","#eef2ae","#7eb97a","#7eb97a","#7eb97a"]],"Gxeo^a7r|uEHj#R[%7jG":["*OAMx",[]],"lN|dA_r%+dH9fhnepMn$":["*OAMy",[]],"[~q6:p[Kks?m0Rapk7eD":["_REGISTERS",[0,0,8,0,16,112,192,206,2]],"`Nny$[X*@z~ce_9oE{M!":[".addr2ptr",[]],".7fdK[:S64[eA_H7p=d0":[".pointerStart",[0,0,0,8192,8192,12288,16384,16544,16544,16672]],"pi,4q[J]J/T2U|O`6bdM":[".ptr",[0,32768,0,1000000,8192,12288,16384,16544,16544,16672]],"iA7(P88z*!*iQtK8@cy1":[".ptr index",[]],"WYIpZLO@uiw_pjT%Sf.j":["_cartridge stuff",[0,1,4,"0"]],"`KBp;:YVz$LYqY:-@q%C":["_instrParam",["~","J23","K023","L+23","M+2","M-2","A2U","V0","B0SP","D23","K123","L-23","M+3","M-3","A3U","V1","B1STOP","J45","K045","L+45","M+4","M-4","A4U","W0","N0","D45","K145","L-45","M+5","M-5","A5U","W1","N110","J78","K078+","L+78","M+7","M-7","A7U","B2DAA","N111","D78","K178+","L-78","M+8","M-8","A8U","B3CPL","N140","JSP","K078-","L+SP","M+9","M-9","A9U","B4SCF","N141","DSP","K178-","L-SP","M+1","M-1","A1U","B5CCF","A22","A23","A24","A25","A27","A28","A29","A21","A32","A33","A34","A35","A37","A38","A39","A31","A42","A43","A44","A45","A47","A48","A49","A41","A52","A53","A54","A55","A57","A58","A59","A51","A72","A73","A74","A75","A77","A78","A79","A71","A82","A83","A84","A85","A87","A88","A89","A81","A92","A93","A94","A95","A97","A98","B6HALT","A91","A12","A13","A14","A15","A17","A18","A19","A11","E02","E03","E04","E05","E07","E08","E09","E01","E12","E13","E14","E15","E17","E18","E19","E11","F02","F03","F04","F05","F07","F08","F09","F01","F12","F13","F14","F15","F17","F18","F19","F11","G02","G03","G04","G05","G07","G08","G09","G01","H02","H03","H04","H05","H07","H08","H09","H01","I02","I03","I04","I05","I07","I08","I09","I01","F22","F23","F24","F25","F27","F28","F29","F21","O110","R23","P110","P000","Q110","S23","E0U","T0","O111","O000","P111","B7CB","Q111","Q000","E1U","T1","O140","R45","P140","-","Q140","S45","F0U","T2","O141","O200","P141","-","Q141","-","F1U","T3","X0U","R78","X03","-","-","S78","G0U","T4","Y0","U0","Z0","-","-","-","H0U","T5","X1U","R16","X13","C0","-","S16","I0U","T6","Y1","U1","Z1","C1","-","-","F2U","T7"]],"OsR*`-9=L4[RoZqDaF|B":["_instrIDs",[0,10,11,12,13,13,1,22,2,4,11,12,13,13,1,22,2,10,11,12,13,13,1,23,14,4,11,12,13,13,1,23,14,10,11,12,13,13,1,2,14,4,11,12,13,13,1,2,14,10,11,12,13,13,1,2,14,4,11,12,13,13,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,15,18,16,16,17,19,5,20,15,15,16,2,17,17,5,20,15,18,16,0,17,19,6,20,15,15,16,0,17,0,6,20,24,18,24,0,0,19,7,20,25,21,26,0,0,0,8,20,24,18,24,3,0,19,9,20,25,21,26,3,0,0,6,20]],"u16r)vc%h8n1*rIQ+.aj":["_RAM",[]],"?d7S^.xq^5}3hEAhxJ.u":["_ROM",[195,133,1,255,255,255,0,0,195,133,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,135,225,95,22,0,25,94,35,86,213,225,233,255,255,255,255,255,255,255,255,255,255,255,255,195,96,0,255,255,255,255,255,195,149,0,255,255,255,255,255,245,62,3,234,0,32,205,240,127,240,253,234,0,32,241,217,245,197,213,229,205,79,34,205,125,27,205,42,28,205,182,255,205,36,63,205,97,61,205,248,35,33,172,255,52,240,179,254,58,32,5,33,64,255,203,238,175,224,67,224,66,60,224,133,225,209,193,241,217,245,229,240,65,230,3,32,250,250,165,192,167,32,44,240,164,224,67,250,222,192,167,40,5,250,223,192,224,66,240,179,254,58,32,20,33,74,255,126,254,64,40,30,53,254,135,48,7,198,8,224,69,234,165,192,225,241,217,33,64,255,203,174,62,15,224,69,175,234,165,192,24,238,245,240,251,167,40,6,61,224,251,241,24,219,62,255,234,173,192,24,246,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,195,80,1,206,237,102,102,204,13,0,11,3,115,0,131,0,12,0,13,0,8,17,31,136,137,0,14,220,204,110,230,221,221,217,153,187,187,103,99,110,14,236,204,221,220,153,159,187,185,51,62,83,85,80,69,82,32,77,65,82,73,79,76,65,78,68,0,0,0,0,1,1,0,0,1,0,158,65,107,195,133,1,205,209,62,240,65,230,3,32,250,70,240,65,230,3,32,250,126,160,201,240,159,167,192,123,33,160,192,134,39,34,122,142,39,34,62,0,142,39,119,62,1,224,177,208,62,153,50,50,119,201,62,3,243,224,15,224,255,62,64,224,65,175,224,66,224,67,224,164,62,128,224,64,240,68,254,148,32,250,62,3,224,64,62,228,224,71,224,72,62,84,224,73,33,38,255,62,128,50,62,255,50,54,119,49,255,207,175,33,255,223,14,64,6,0,50,5,32,252,13,32,249,33,255,159,14,32,175,6,0,50,5,32,252,13,32,249,33,255,254,6,0,50,5,32,252,33,254,255,6,128,50,5,32,252,14,182,6,12,33,125,63,42,226,12,5,32,250,175,224,228,62,17,224,180,234,168,192,62,2,234,220,192,62,14,224,179,62,3,234,0,32,234,164,192,62,0,234,225,192,224,154,205,243,127,62,2,234,0,32,224,253,250,29,218,254,3,32,11,62,255,234,29,218,205,232,9,205,45,23,240,253,224,225,62,3,224,253,234,0,32,205,242,71,240,225,224,253,234,0,32,240,159,167,32,8,205,195,7,240,178,167,32,60,33,166,255,6,2,126,167,40,1,53,44,5,32,247,240,159,167,40,38,240,128,203,95,32,16,240,172,230,15,32,26,33,215,192,126,167,40,3,53,24,16,240,179,167,32,11,62,2,234,0,32,224,253,62,14,224,179,205,163,2,118,240,133,167,40,250,175,224,133,24,133,24,254,240,179,239,16,6,165,6,197,6,132,11,205,11,106,12,194,12,55,12,64,13,18,22,38,22,99,22,209,22,109,35,34,3,195,4,183,5,95,5,142,61,206,61,50,88,53,88,158,62,56,88,59,88,62,88,65,88,240,13,12,14,40,14,84,14,141,14,160,14,196,14,9,15,42,15,97,15,244,15,76,16,144,16,160,14,13,17,92,17,139,17,199,17,18,18,75,18,152,18,185,18,232,18,133,19,231,19,56,20,81,20,93,20,127,20,211,20,115,28,223,28,231,28,20,29,164,6,175,224,64,243,224,164,33,0,192,6,159,34,5,32,252,224,153,234,165,192,234,173,192,33,216,192,34,34,34,250,225,192,224,154,33,26,121,17,0,147,1,0,5,205,199,5,33,26,126,17,0,136,1,112,1,205,199,5,33,98,72,240,154,254,1,56,3,33,114,78,17,192,138,1,16,0,205,199,5,33,50,80,17,0,144,1,192,2,205,199,5,33,50,80,17,0,128,1,160,2,205,199,5,205,184,5,175,224,229,240,228,245,62,12,224,228,205,240,7,241,224,228,62,60,33,0,152,205,88,5,33,4,152,54,148,33,34,152,54,149,44,54,150,44,54,140,33,47,152,54,63,44,54,76,44,54,77,33,162,192,17,194,192,6,3,26,150,56,9,32,21,29,45,5,32,245,24,14,33,162,192,17,194,192,6,3,58,18,29,5,32,250,17,194,192,33,105,153,205,56,63,33,4,192,54,120,250,166,192,167,40,41,240,154,254,2,56,2,24,33,33,70,4,17,198,153,6,10,42,18,28,5,32,250,33,0,192,54,128,44,54,136,44,250,166,192,119,44,54,0,44,54,128,44,54,40,44,54,172,175,224,15,62,195,224,64,251,62,15,224,179,175,224,249,62,40,234,215,192,224,159,33,220,192,52,126,254,3,192,54,0,201,12,24,23,29,18,23,30,14,44,43,250,4,192,254,120,40,75,250,166,192,61,234,166,192,250,168,192,224,180,30,0,254,17,40,51,28,254,18,40,46,28,254,19,40,41,28,254,33,40,36,28,254,34,40,31,28,254,35,40,26,28,254,49,40,21,28,254,50,40,16,28,254,51,40,11,28,254,65,40,6,28,254,66,40,1,28,123,224,228,195,61,5,175,234,166,192,240,154,254,2,210,61,5,62,17,224,180,175,24,233,250,166,192,167,40,20,33,4,192,126,238,248,119,24,11,240,129,71,203,88,32,134,203,80,32,230,240,154,254,2,56,69,203,64,40,29,240,180,60,71,230,15,254,4,120,32,2,198,13,224,180,240,228,60,254,12,32,5,62,17,224,180,175,224,228,33,8,192,240,180,6,120,79,230,240,203,55,112,44,54,120,44,34,44,121,230,15,112,44,54,136,44,34,44,112,44,54,128,44,54,41,250,215,192,167,192,250,220,192,203,39,95,22,0,33,82,5,25,42,224,180,126,224,228,62,80,234,215,192,62,17,224,179,175,224,154,201,62,17,224,179,175,224,15,224,159,234,164,192,61,234,232,223,62,7,224,255,201,17,0,18,1,51,8,6,20,34,5,32,252,201,175,224,64,243,240,159,167,32,12,175,234,160,192,234,161,192,234,162,192,224,250,205,208,5,205,184,5,33,0,156,6,95,62,44,34,5,32,252,205,248,5,62,15,224,69,62,7,224,7,33,74,255,54,133,44,54,96,175,224,6,224,15,61,224,167,224,177,62,91,224,233,205,57,36,205,17,61,205,18,28,205,77,28,240,180,205,100,13,201,33,255,155,1,0,4,62,44,50,11,120,177,32,248,201,42,18,19,11,120,177,32,248,201,33,50,80,17,0,144,1,0,8,205,199,5,33,50,64,17,0,128,1,0,16,205,199,5,33,3,86,17,0,198,6,8,42,18,35,19,5,32,249,201,33,135,63,17,0,152,6,2,42,18,28,123,230,31,254,20,32,246,30,32,5,32,241,201,205,143,33,205,55,8,240,253,224,225,62,3,224,253,234,0,32,205,252,72,1,8,194,33,100,33,205,13,73,1,24,194,33,100,33,205,13,73,1,40,194,33,100,33,205,13,73,1,56,194,33,100,33,205,13,73,1,72,194,33,100,33,205,13,73,205,148,74,205,139,73,205,234,74,205,60,75,205,111,75,205,138,75,205,181,75,240,225,224,253,234,0,32,205,36,31,205,136,36,240,253,224,225,62,2,224,253,234,0,32,205,68,88,240,225,224,253,234,0,32,205,131,25,205,236,22,205,179,23,205,225,10,205,36,10,205,250,30,33,206,192,126,167,200,53,205,10,33,201,33,166,255,126,167,192,33,0,209,17,16,0,6,10,54,255,25,5,32,250,175,224,153,61,234,163,192,62,2,224,179,201,243,62,0,224,64,205,203,30,205,85,22,33,229,255,240,249,167,40,8,175,224,249,240,245,60,24,1,126,254,3,40,1,61,1,12,3,254,7,56,31,1,52,7,254,11,56,24,1,92,11,254,15,56,17,1,132,15,254,19,56,10,1,172,19,254,23,56,3,1,212,23,112,44,54,0,121,234,171,192,205,240,7,33,43,152,54,44,44,240,180,71,230,240,203,55,34,120,230,15,44,119,33,0,156,17,131,7,6,9,26,34,19,5,32,250,175,224,179,234,211,192,62,195,224,64,205,140,7,175,224,15,224,164,234,210,192,224,238,234,29,218,224,6,33,1,218,34,54,4,62,40,234,0,218,62,91,224,233,240,228,14,10,254,5,40,6,14,12,254,11,32,13,62,13,224,179,250,3,194,230,240,177,234,3,194,205,83,36,251,201,44,132,25,10,30,28,14,132,44,250,211,192,167,192,62,3,234,0,32,205,243,127,240,253,234,0,32,240,244,167,32,14,240,228,33,183,7,95,22,0,25,126,234,232,223,201,62,4,234,232,223,201,7,7,3,8,8,5,7,3,3,6,6,5,240,128,230,15,254,15,32,3,195,133,1,240,129,203,95,200,240,179,254,14,208,33,64,255,240,178,238,1,224,178,40,7,203,238,62,1,224,223,201,203,174,62,2,24,247,33,20,33,17,0,194,6,81,42,18,19,5,32,250,240,153,167,40,5,62,16,234,3,194,33,230,255,175,6,6,34,5,32,252,224,163,234,170,192,62,64,224,233,6,20,240,179,254,10,40,8,240,228,254,12,40,2,6,27,197,205,168,33,205,79,34,193,5,32,245,201,240,156,167,40,3,61,224,156,17,240,255,6,10,33,144,209,126,254,255,32,5,25,5,32,247,201,224,251,125,224,252,197,229,1,10,0,9,78,44,44,126,224,155,250,1,194,71,240,153,254,2,32,11,250,3,194,254,24,40,4,62,254,128,71,120,224,160,250,1,194,198,6,224,161,250,2,194,71,214,3,224,162,62,2,128,224,143,225,229,205,166,10,167,202,88,9,240,252,254,144,202,106,9,240,251,254,51,202,206,9,240,179,254,13,40,6,250,211,192,167,40,4,45,195,57,9,250,2,194,198,6,78,45,145,56,122,250,2,194,214,6,144,48,114,70,5,5,5,250,1,194,144,48,104,45,45,229,1,10,0,9,203,126,225,32,120,205,7,10,205,248,41,167,40,111,33,10,194,54,0,45,45,54,13,45,54,1,33,3,194,126,230,240,246,4,119,62,3,234,224,223,250,2,194,198,252,224,235,250,1,194,214,16,224,236,240,158,224,237,240,156,167,40,29,240,157,254,3,40,3,60,224,157,71,240,237,254,80,40,13,203,39,5,32,251,224,237,62,50,224,156,24,33,175,224,157,24,245,45,45,250,211,192,167,32,33,240,153,254,3,48,14,205,59,42,167,40,8,240,153,167,32,11,205,232,9,225,193,201,225,193,195,76,8,205,215,9,24,243,205,253,42,167,40,237,24,145,240,251,254,41,40,50,254,52,40,62,254,43,40,70,254,46,32,217,240,153,254,2,32,38,224,181,62,4,234,224,223,62,16,224,237,250,2,194,198,252,224,235,250,1,194,214,16,224,236,45,45,45,54,255,24,179,240,153,254,2,40,225,62,1,224,153,62,80,224,166,24,210,62,248,234,211,192,62,12,234,232,223,24,203,62,255,224,237,62,8,234,224,223,62,1,234,163,192,24,191,224,254,62,5,234,224,223,24,196,62,3,224,153,175,224,181,62,80,224,166,62,6,234,224,223,201,250,7,208,167,192,62,3,224,179,175,224,181,224,6,62,2,234,232,223,62,128,234,0,194,250,1,194,234,221,192,201,229,213,240,155,230,192,203,55,203,63,203,63,95,22,0,33,32,10,25,126,224,158,209,225,201,1,4,8,80,240,238,167,200,254,192,200,17,16,0,6,10,33,0,209,126,254,255,32,5,25,5,32,247,201,197,229,1,10,0,9,203,126,32,90,78,44,44,126,224,155,225,229,44,44,70,250,1,194,144,56,73,71,62,20,144,56,67,254,7,48,63,44,121,230,112,203,55,79,126,198,8,13,32,251,79,70,250,2,194,214,6,145,48,40,250,2,194,198,6,144,56,32,45,45,45,213,205,7,10,205,26,42,209,167,40,18,250,2,194,198,252,224,235,250,1,194,214,16,224,236,240,158,224,237,225,193,195,56,10,44,44,126,198,8,71,240,160,144,48,46,121,230,15,71,126,5,40,4,214,8,24,249,71,240,161,144,56,28,44,240,143,70,144,56,21,121,230,112,203,55,71,126,198,8,5,32,251,71,240,162,144,48,3,62,1,201,175,201,250,7,194,254,1,200,17,16,0,6,10,33,0,209,126,254,255,32,5,25,5,32,247,201,197,229,1,10,0,9,203,126,202,127,11,126,230,15,224,160,1,248,255,9,240,160,71,126,5,40,4,214,8,24,249,79,224,160,250,1,194,198,6,71,121,144,254,7,48,88,44,250,2,194,71,126,144,56,4,254,3,48,75,229,44,44,44,44,44,44,44,126,230,112,203,55,71,225,126,198,8,5,32,251,71,250,2,194,144,56,4,254,3,48,43,45,240,160,214,10,234,1,194,229,45,45,205,248,41,225,1,9,0,9,54,1,175,33,7,194,34,34,34,54,1,33,12,194,126,254,7,56,2,54,6,225,193,201,225,193,195,244,10,33,12,192,250,221,192,79,214,8,87,119,44,250,2,194,198,248,71,34,54,15,44,54,0,44,113,44,112,44,54,31,44,54,0,44,114,44,120,198,8,71,34,54,15,44,54,32,44,113,44,112,44,54,31,44,54,32,62,4,224,179,175,234,172,192,224,153,224,244,205,203,30,201,250,172,192,95,60,234,172,192,22,0,33,16,12,25,70,120,254,127,32,9,250,172,192,61,234,172,192,6,2,33,12,192,17,4,0,14,4,120,134,119,25,13,32,249,254,180,216,250,29,218,254,255,32,4,62,59,24,6,62,144,224,166,62,1,224,179,201,254,254,254,255,255,255,255,255,255,255,255,255,255,255,255,255,0,255,0,0,255,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,1,127,33,166,255,126,167,40,4,205,45,23,201,250,7,208,167,32,4,62,64,224,166,62,5,224,179,175,234,29,218,224,6,240,180,230,15,254,3,192,205,33,43,240,180,254,67,192,62,6,224,179,201,240,180,230,15,254,3,32,7,175,234,171,192,205,136,36,240,166,167,192,33,1,218,42,70,176,40,52,62,1,234,0,218,240,253,224,225,62,2,224,253,234,0,32,205,68,88,240,225,224,253,234,0,32,17,16,0,205,102,1,62,1,224,166,175,234,29,218,250,1,218,230,1,192,62,10,234,224,223,201,62,6,224,179,62,38,224,166,201,240,166,167,192,175,234,29,218,224,6,240,180,230,15,254,3,62,28,40,27,250,1,194,254,96,56,8,254,160,48,4,62,8,24,9,62,2,224,253,234,0,32,62,18,224,179,201,224,179,62,3,234,0,32,224,253,33,228,255,126,224,251,54,12,44,175,34,34,224,163,44,44,126,224,224,62,6,224,166,240,180,230,240,254,64,192,175,224,251,62,1,234,222,192,62,191,224,252,62,255,224,166,62,39,224,179,205,243,127,201,243,121,234,0,32,224,253,175,224,64,205,208,5,195,202,13,33,166,255,126,167,192,250,249,223,167,192,240,228,60,254,12,32,1,175,224,228,240,180,60,71,230,15,254,4,120,32,2,198,13,224,180,230,240,203,55,254,1,14,2,40,194,254,2,14,1,40,8,254,3,14,3,40,2,14,1,71,243,121,234,0,32,224,253,175,224,64,120,61,61,203,39,22,0,95,33,228,13,213,25,94,35,86,33,0,138,26,34,19,229,1,48,114,9,225,48,245,209,33,234,13,25,94,35,86,213,33,16,147,26,34,19,124,254,151,32,248,225,17,193,2,25,17,0,198,6,8,42,18,35,19,5,32,249,175,224,15,62,195,224,64,251,62,3,224,229,175,234,210,192,224,249,62,2,224,179,205,57,36,201,50,64,50,64,242,71,2,68,2,68,194,75,243,175,224,64,205,248,5,205,18,28,205,77,28,175,224,15,62,195,224,64,251,62,8,224,179,224,177,201,240,166,167,40,14,205,168,33,175,234,171,192,205,136,36,205,45,23,201,62,64,224,166,33,179,255,52,201,175,234,171,192,205,136,36,240,166,167,192,240,224,214,2,254,64,48,2,198,32,111,38,152,17,32,1,25,125,224,224,62,5,224,252,62,8,224,166,33,179,255,52,201,240,166,167,192,240,252,61,40,29,224,252,240,224,111,38,153,214,32,224,224,240,65,230,3,32,250,54,44,62,8,224,166,62,11,234,224,223,201,62,16,224,166,62,3,224,253,234,0,32,205,243,127,33,179,255,52,201,240,166,167,192,175,234,210,192,234,7,194,60,224,249,33,179,255,52,201,205,178,14,250,2,194,254,192,216,62,32,224,166,33,179,255,52,201,62,16,224,128,250,3,194,230,15,254,10,220,179,23,205,236,22,201,240,166,167,192,205,222,14,175,224,234,224,163,62,161,224,166,62,15,234,232,223,33,179,255,52,201,33,1,194,54,126,44,54,176,44,126,230,240,119,33,16,194,17,20,33,6,16,26,34,19,5,32,250,33,17,194,54,126,44,54,0,44,54,34,44,44,54,32,201,240,166,167,40,19,33,164,255,52,205,143,33,33,2,194,53,33,18,194,53,205,45,23,201,240,251,224,228,33,179,255,52,201,62,16,224,128,205,179,23,205,236,22,250,2,194,254,76,216,250,3,194,230,240,234,3,194,240,224,214,64,198,4,71,230,240,254,192,120,32,2,214,32,224,227,62,152,224,226,175,224,251,33,179,255,52,24,188,33,216,15,205,129,15,254,255,192,33,179,255,52,62,128,234,16,194,62,8,224,166,62,8,224,251,62,18,234,232,223,201,240,166,167,192,240,251,95,22,0,25,126,71,254,254,40,52,254,255,200,240,226,103,240,227,111,240,65,230,3,32,250,240,65,230,3,32,250,112,35,124,224,226,125,230,15,32,18,203,101,32,14,125,214,32,224,227,28,123,224,251,62,12,224,166,201,125,24,242,35,42,79,6,0,126,245,240,226,103,240,227,111,9,193,19,19,24,194,29,17,10,23,20,44,34,24,30,44,22,10,27,18,24,35,254,115,24,17,40,44,13,10,18,28,34,255,240,166,167,192,240,251,61,40,25,224,251,230,1,33,44,16,32,8,33,60,16,62,3,234,248,223,205,32,16,62,8,224,166,201,33,16,194,54,0,33,179,255,52,201,17,28,192,6,16,42,18,28,5,32,250,201,120,88,6,0,120,96,6,32,128,88,6,64,128,96,6,96,120,88,7,0,120,96,7,32,128,88,7,64,128,96,7,96,240,166,167,192,33,19,194,54,32,1,24,194,33,100,33,197,205,13,73,225,45,126,167,32,11,54,1,33,19,194,54,33,62,64,224,166,240,172,230,1,32,9,33,18,194,52,126,254,208,48,4,205,45,23,201,33,179,255,54,18,62,2,224,253,234,0,32,201,240,167,167,32,9,62,1,234,248,223,62,32,224,167,175,234,171,192,205,136,36,240,166,79,230,3,32,19,240,251,238,1,224,251,6,252,40,2,6,4,250,223,192,128,234,223,192,121,254,128,208,230,31,192,33,208,141,1,32,2,240,252,87,240,65,230,3,32,250,126,162,95,240,65,230,3,32,250,115,35,124,254,143,32,3,33,144,150,203,10,11,121,176,32,224,240,252,203,39,40,9,203,55,224,252,62,63,224,166,201,175,234,223,192,234,210,192,60,224,249,33,179,255,52,201,243,175,224,64,224,249,33,0,156,1,0,1,205,190,5,205,8,8,205,222,14,33,2,194,54,56,44,54,16,33,18,194,54,120,175,224,15,224,164,234,223,192,224,251,33,0,192,6,12,34,5,32,252,205,45,23,62,152,224,226,62,165,224,227,62,15,234,232,223,62,195,224,64,251,33,179,255,52,201,33,122,17,205,129,15,254,255,192,175,224,251,62,153,224,226,62,2,224,227,62,35,234,19,194,33,179,255,52,201,24,17,40,44,13,10,18,28,34,254,27,13,10,18,28,34,255,33,182,17,205,129,15,240,172,230,3,192,33,18,194,126,254,68,56,5,53,205,45,23,201,33,179,255,52,33,48,192,54,112,44,54,58,44,54,132,44,54,0,201,29,17,10,23,20,44,34,24,30,44,22,10,27,18,24,35,255,240,172,230,1,192,33,48,192,53,42,254,32,56,20,240,251,167,126,32,7,53,254,48,208,224,251,201,52,254,80,216,175,24,246,54,240,6,109,33,165,152,240,65,230,3,32,250,240,65,230,3,32,250,54,44,35,5,32,238,175,224,251,62,153,224,226,62,0,224,227,33,179,255,52,201,33,54,18,205,129,15,254,255,192,33,19,194,54,36,44,44,54,0,33,65,194,54,126,44,44,54,40,44,44,54,0,33,179,255,52,201,41,34,24,30,27,44,26,30,14,28,29,44,18,28,44,24,31,14,27,41,255,240,172,230,3,32,7,33,19,194,126,238,1,119,33,64,194,126,167,32,32,44,44,53,126,254,80,32,7,62,128,234,0,194,24,17,254,64,32,13,62,128,234,16,194,62,64,224,166,33,179,255,52,205,178,14,205,143,33,240,229,254,3,192,240,230,167,192,33,64,194,54,0,44,44,54,192,201,240,166,167,192,33,64,194,17,0,194,6,6,42,18,28,5,32,250,33,3,194,54,38,33,65,194,54,240,33,179,255,52,201,205,45,23,240,172,71,230,1,192,33,64,194,54,255,33,1,194,53,42,254,88,40,4,205,221,18,201,33,179,255,52,62,4,224,251,201,240,172,230,3,192,44,126,238,1,119,201,205,5,19,205,143,33,240,164,60,204,15,19,60,204,15,19,224,164,250,233,223,167,192,62,17,234,232,223,201,33,2,194,205,221,18,205,45,23,201,245,240,251,61,224,251,32,44,224,69,62,33,224,251,62,84,224,233,205,69,19,33,16,194,17,118,19,205,109,19,33,32,194,17,123,19,205,109,19,33,48,194,17,128,19,205,109,19,33,179,255,52,241,201,33,176,192,6,16,62,44,34,5,32,252,62,1,224,234,6,2,240,233,214,32,111,38,152,240,65,230,3,32,250,54,44,125,214,32,111,5,32,241,201,6,5,26,34,19,5,32,250,201,0,48,208,41,128,128,112,16,42,128,128,64,112,41,128,205,71,21,240,164,60,60,224,164,230,8,71,240,163,184,192,238,8,224,163,205,69,19,240,251,61,224,251,192,175,224,164,62,96,224,69,33,78,21,124,224,226,125,224,227,62,240,224,166,33,179,255,52,201,33,18,194,17,16,0,6,3,53,126,254,1,32,4,54,254,24,21,254,224,32,17,229,240,4,45,134,230,127,254,104,48,2,230,63,50,54,0,225,25,5,32,221,201,205,71,21,240,166,167,192,240,226,103,240,227,111,17,66,154,126,254,254,40,28,35,71,240,65,230,3,32,250,240,65,230,3,32,250,120,18,19,123,254,84,40,10,254,147,40,12,24,223,6,44,24,226,17,135,154,35,24,213,35,126,254,255,32,5,62,255,234,222,192,124,224,226,125,224,227,33,179,255,52,201,205,71,21,240,172,230,3,192,33,223,192,52,126,254,32,192,33,179,255,52,62,80,224,166,201,205,71,21,240,166,167,192,33,179,255,52,201,205,71,21,240,172,230,3,192,33,223,192,52,126,254,80,192,175,234,223,192,250,222,192,254,255,62,51,32,2,62,55,224,179,201,205,71,21,33,2,194,52,126,254,208,192,45,54,240,229,205,45,23,225,45,54,255,33,112,192,17,187,20,6,24,26,34,19,5,32,250,6,24,175,34,5,32,252,62,144,224,166,240,154,60,224,154,234,225,192,33,179,255,52,201,78,204,82,0,78,212,83,0,78,220,84,0,78,236,84,0,78,244,85,0,78,252,86,0,205,71,21,240,166,167,192,33,113,192,126,254,60,40,4,53,53,53,201,33,117,192,126,254,68,32,244,33,121,192,126,254,76,32,236,33,125,192,126,254,92,32,228,33,129,192,126,254,100,32,220,33,133,192,126,254,108,32,212,205,32,21,175,224,228,224,153,224,181,234,166,192,62,17,224,180,201,240,129,167,200,205,243,127,62,2,224,253,234,0,32,234,220,192,234,164,192,175,234,0,218,234,165,192,234,173,192,62,3,224,255,62,14,224,179,201,205,5,19,205,187,19,201,25,27,24,13,30,12,14,27,254,16,35,34,24,20,24,18,254,13,18,27,14,12,29,24,27,254,28,35,24,20,10,13,10,254,25,27,24,16,27,10,22,22,14,27,254,22,35,34,10,22,10,22,24,29,24,254,25,27,24,16,27,10,22,22,14,27,254,29,35,17,10,27,10,13,10,254,13,14,28,18,16,23,254,17,35,22,10,29,28,30,24,20,10,254,28,24,30,23,13,254,17,35,29,10,23,10,20,10,254,10,22,18,13,10,254,22,35,34,10,22,10,23,10,20,10,254,13,14,28,18,16,23,254,22,10,28,17,18,22,24,254,28,25,14,12,18,10,21,44,29,17,10,23,20,28,44,29,24,37,254,29,10,20,18,254,18,39,30,28,17,18,254,23,10,16,10,29,10,254,20,10,23,24,17,254,23,18,28,17,18,39,10,32,10,254,255,33,1,194,240,248,190,40,5,52,205,236,22,201,62,10,224,179,224,249,201,243,175,224,64,224,230,205,203,30,205,85,22,240,244,224,229,205,240,7,205,83,36,33,1,194,54,32,44,54,29,44,44,54,0,175,224,15,224,179,224,164,62,195,224,64,251,201,33,63,202,1,64,2,175,50,11,120,177,32,249,201,240,172,230,1,200,33,2,194,240,248,190,56,9,52,33,11,194,52,205,236,22,201,243,240,245,224,229,175,224,64,224,230,205,85,22,33,244,255,34,34,240,247,87,240,246,95,213,205,240,7,209,62,128,234,4,194,33,1,194,122,34,214,18,224,248,123,119,240,229,214,4,71,7,7,7,128,128,198,12,234,171,192,175,224,15,224,164,62,91,224,233,205,83,36,205,203,30,62,195,224,64,62,12,224,179,205,140,7,251,201,240,172,230,1,200,33,1,194,240,248,190,40,5,53,205,236,22,201,175,224,179,234,4,194,224,249,201,205,45,23,250,10,194,167,40,46,250,3,194,230,15,254,10,48,37,33,11,194,250,14,194,254,35,126,40,30,230,3,32,22,33,3,194,126,254,24,40,14,52,126,230,15,254,4,56,6,126,230,240,246,1,119,205,29,29,201,230,1,32,248,24,224,62,12,224,142,33,0,194,62,192,224,141,62,5,224,143,240,253,224,225,62,3,224,253,234,0,32,205,35,72,240,225,224,253,234,0,32,201,240,179,254,14,210,21,24,195,60,27,240,128,203,127,202,84,24,1,224,255,124,224,176,125,224,175,124,198,48,103,17,244,255,126,167,202,84,24,18,28,9,126,18,28,9,126,18,28,9,126,18,28,213,205,254,62,209,33,1,194,42,198,16,18,240,164,71,240,174,144,198,8,34,44,54,128,62,9,224,179,250,211,192,167,32,5,62,4,234,232,223,205,203,30,195,84,24,33,7,194,126,254,1,200,33,1,194,42,198,11,224,173,240,164,71,126,128,198,254,224,174,205,83,1,254,112,40,138,254,225,202,82,23,254,96,48,58,250,14,194,6,4,254,4,32,8,250,7,194,167,32,2,6,8,240,174,128,224,174,205,83,1,254,96,48,29,33,7,194,126,254,2,200,33,1,194,52,52,52,33,10,194,54,0,250,14,194,167,192,62,2,234,14,194,201,254,237,245,32,31,250,211,192,167,32,25,240,153,167,40,14,254,4,40,16,254,2,32,12,241,205,215,9,24,33,241,205,232,9,24,27,241,254,244,32,22,229,209,33,238,255,126,167,32,177,54,192,44,114,44,115,62,5,234,224,223,24,164,33,1,194,126,61,61,230,252,246,6,119,175,33,7,194,34,34,34,54,1,33,12,194,126,254,7,216,54,6,201,240,238,167,192,229,124,198,48,103,126,225,167,200,240,238,167,192,229,124,198,48,103,126,225,167,202,216,25,254,240,40,37,254,192,32,40,62,255,234,206,192,240,238,167,192,62,5,234,224,223,250,1,194,214,16,224,236,62,192,224,237,224,254,250,206,192,167,32,99,62,128,234,46,192,24,112,224,160,62,128,234,46,192,62,7,234,224,223,229,209,33,238,255,126,167,192,54,2,44,114,44,115,122,224,176,123,224,175,122,198,48,87,26,224,160,205,254,62,33,44,192,250,1,194,214,11,34,224,194,224,241,240,164,71,240,174,224,242,144,34,224,195,44,54,0,240,160,254,240,200,254,40,32,10,240,153,254,2,62,40,32,2,62,45,205,68,37,201,240,238,167,192,62,130,234,46,192,250,224,223,167,32,5,62,7,234,224,223,229,209,33,238,255,54,2,44,114,44,115,122,224,176,123,224,175,205,254,62,33,44,192,250,1,194,214,11,34,224,241,240,164,71,240,174,79,224,242,144,34,44,54,0,224,235,201,240,238,167,192,229,124,198,48,103,126,225,167,194,146,24,62,5,234,224,223,62,129,234,46,192,250,1,194,214,16,224,236,62,192,224,237,24,171,250,7,194,254,1,192,33,1,194,42,198,253,224,173,240,164,70,128,198,2,224,174,205,83,1,254,95,202,114,24,254,96,48,17,240,174,198,252,224,174,205,83,1,254,95,202,114,24,254,96,216,205,98,26,167,200,254,130,40,25,254,244,202,78,26,254,129,40,149,254,128,202,127,24,62,2,234,7,194,62,7,234,224,223,201,229,124,198,48,103,126,225,254,192,202,155,24,240,153,254,2,194,26,25,229,209,33,238,255,126,167,192,54,1,44,114,44,115,33,16,194,17,16,0,6,4,229,54,0,44,250,1,194,198,243,119,44,250,2,194,198,2,119,44,44,44,44,44,54,1,44,54,7,225,25,5,32,224,33,34,194,126,214,4,119,33,66,194,126,214,4,119,33,56,194,54,11,33,72,194,54,11,240,164,224,243,62,2,234,248,223,17,80,0,205,102,1,62,2,234,7,194,201,229,209,33,238,255,126,167,192,54,192,44,114,44,115,62,5,234,224,223,201,229,245,71,240,180,230,240,203,55,61,203,39,95,22,0,33,138,26,25,94,35,86,26,254,253,40,6,184,40,6,19,24,245,241,225,201,241,225,175,201,148,26,153,26,158,26,160,26,162,26,104,105,106,124,253,96,97,99,124,253,124,253,124,253,124,253,240,179,254,14,48,89,17,1,7,240,153,254,2,32,10,250,3,194,254,24,40,3,17,2,7,33,1,194,42,130,224,173,250,5,194,70,14,250,167,32,2,14,6,121,128,71,240,164,128,224,174,213,205,83,1,205,98,26,209,167,40,28,254,96,56,24,254,244,40,27,254,119,40,44,254,242,40,74,33,11,194,52,62,2,234,14,194,62,255,201,22,252,29,32,186,175,201,229,209,33,238,255,126,167,192,54,192,44,114,44,115,62,5,234,224,223,175,201,240,249,167,40,211,62,11,224,179,62,128,234,4,194,33,2,194,58,198,24,224,248,126,230,248,198,6,119,205,203,30,62,255,201,240,153,254,2,6,255,40,5,6,15,175,224,153,250,3,194,160,234,3,194,71,230,15,254,10,48,6,120,230,240,234,3,194,62,7,224,179,250,7,208,167,32,9,62,1,234,232,223,62,240,224,166,205,203,30,175,234,0,194,234,29,218,224,6,201,175,234,226,192,240,254,167,196,246,27,33,238,255,126,254,1,40,34,254,2,202,238,27,254,192,40,25,254,4,192,54,0,44,86,44,94,250,46,192,254,130,40,7,254,129,204,246,27,62,127,18,201,70,54,0,44,86,44,94,62,44,18,120,254,192,40,50,33,224,255,25,126,254,244,192,54,44,62,5,234,224,223,124,224,176,125,224,175,205,254,62,240,164,71,240,174,144,224,235,240,173,198,20,224,236,62,192,224,237,205,246,27,201,54,3,24,194,205,246,27,201,240,159,167,192,213,229,17,0,1,205,102,1,225,209,240,250,198,1,39,224,250,167,32,4,60,234,163,192,240,250,71,230,15,234,42,152,120,230,240,203,55,234,41,152,175,224,254,60,234,226,192,201,240,159,167,192,250,163,192,183,200,254,255,250,21,218,40,50,254,153,40,32,245,62,8,234,224,223,224,211,241,198,1,39,234,21,218,250,21,218,71,230,15,234,7,152,120,230,240,203,55,234,6,152,175,234,163,192,201,62,57,224,179,234,164,192,24,242,167,40,244,214,1,24,214,33,0,156,17,206,28,6,17,26,79,240,65,230,3,32,250,240,65,230,3,32,250,113,44,19,5,32,236,62,16,234,232,223,240,180,234,168,192,250,162,192,230,240,203,55,71,250,166,192,128,254,10,56,2,62,9,234,166,192,33,0,192,175,6,160,34,5,32,252,234,29,218,224,6,33,74,255,54,143,35,54,7,62,255,224,251,33,179,255,52,201,44,44,44,44,44,16,10,22,14,44,44,24,31,14,27,44,44,250,173,192,167,196,39,21,201,33,0,156,17,11,29,14,9,26,71,240,65,230,3,32,250,112,44,19,13,32,242,33,64,255,203,238,62,160,224,166,33,179,255,52,201,44,29,18,22,14,44,30,25,44,240,166,167,192,62,1,224,179,201,33,13,194,126,254,1,32,12,45,126,167,32,5,44,54,0,24,57,53,201,33,12,194,42,254,6,32,7,44,126,167,32,2,54,2,17,7,194,240,128,203,127,32,53,203,103,32,86,203,111,194,55,30,33,12,194,126,167,40,9,175,234,14,194,53,44,126,24,231,44,54,0,26,167,192,250,7,194,167,192,33,3,194,126,230,240,119,62,1,234,11,194,175,234,14,194,201,245,240,153,254,2,32,21,26,167,32,17,62,24,234,3,194,240,128,230,48,32,9,250,12,194,167,40,3,241,24,172,175,234,12,194,241,201,33,13,194,126,254,32,32,3,195,63,30,33,5,194,54,0,205,164,26,167,192,240,128,203,103,40,29,250,3,194,254,24,32,10,250,3,194,230,240,246,1,234,3,194,33,12,194,126,254,6,40,4,52,44,54,16,33,2,194,240,249,167,32,53,250,210,192,254,7,56,6,240,164,230,12,40,40,62,80,190,48,35,205,171,30,71,33,164,255,134,119,205,155,30,205,150,44,33,1,192,17,4,0,14,3,126,144,119,25,13,32,249,33,11,194,52,201,205,171,30,134,119,240,179,254,13,40,240,250,210,192,167,40,234,240,164,230,252,224,164,126,254,160,56,223,195,60,27,33,13,194,126,254,16,32,25,54,1,45,54,8,250,7,194,167,192,33,3,194,126,230,240,246,5,119,62,1,234,11,194,201,33,5,194,54,32,205,164,26,167,192,33,2,194,126,254,15,56,44,229,240,128,203,111,40,29,250,3,194,254,24,32,10,250,3,194,230,240,246,1,234,3,194,33,12,194,126,254,6,40,4,52,44,54,32,225,205,171,30,47,60,134,119,33,11,194,53,201,33,49,192,17,4,0,14,8,126,144,119,25,13,32,249,201,213,229,33,197,30,250,14,194,95,22,0,250,15,194,238,1,234,15,194,131,95,25,126,225,209,201,0,1,1,1,1,2,229,197,213,33,28,192,6,52,175,34,5,32,252,33,0,192,6,11,34,5,32,252,224,169,224,170,224,171,33,16,194,17,16,0,6,4,62,128,119,25,5,32,251,209,193,225,201,240,172,230,3,192,250,211,192,167,200,254,1,40,17,61,234,211,192,250,0,194,238,128,234,0,194,250,233,223,167,192,175,234,211,192,234,0,194,205,140,7,201,6,1,33,169,255,17,1,192,42,167,32,8,28,28,28,28,5,32,245,201,229,213,197,45,250,169,192,167,40,16,61,234,169,192,203,70,40,98,26,60,60,18,254,162,56,7,175,203,131,18,119,24,48,198,3,245,29,26,224,173,241,205,201,31,56,6,126,230,252,246,2,119,203,86,40,33,26,61,61,18,254,16,56,218,214,1,224,173,28,26,205,201,31,56,6,126,230,243,246,8,119,193,209,225,205,1,32,24,159,26,60,60,18,254,168,48,185,198,4,224,173,28,26,205,201,31,56,229,126,230,243,246,4,119,24,221,26,61,61,18,254,4,56,158,214,2,245,29,26,224,173,241,205,201,31,56,171,126,230,252,246,1,119,24,163,71,240,164,128,224,174,213,229,205,83,1,254,244,32,26,240,179,254,13,40,30,229,209,33,238,255,126,167,32,21,54,192,44,114,44,115,62,5,234,224,223,254,130,204,142,32,254,128,204,142,32,225,209,254,96,201,229,213,197,6,10,33,0,209,126,254,255,32,18,213,17,16,0,25,209,5,32,242,193,209,225,201,225,209,193,24,238,197,213,229,1,10,0,9,203,126,32,240,78,44,44,126,224,155,26,224,162,198,4,224,143,29,26,224,160,26,198,3,224,161,225,229,205,166,10,167,40,210,45,45,45,205,7,10,213,240,179,254,13,32,5,205,164,42,24,3,205,95,42,209,167,40,185,245,26,214,8,224,236,28,26,224,235,241,254,255,32,9,62,3,234,224,223,240,158,224,237,175,18,29,18,33,171,255,203,91,32,6,45,203,83,32,1,45,119,24,141,229,197,213,245,240,179,254,13,32,109,229,209,33,238,255,126,167,32,100,54,1,44,114,44,115,241,245,254,128,32,11,122,198,48,87,26,167,40,3,205,68,37,33,16,194,17,16,0,6,4,229,54,0,44,240,173,198,0,119,44,240,161,198,0,119,44,44,44,44,44,54,1,44,54,7,225,25,5,32,226,33,34,194,126,214,4,119,33,66,194,126,214,4,119,33,56,194,54,11,33,72,194,54,11,240,164,224,243,17,80,0,205,102,1,62,2,234,248,223,241,209,193,225,201,240,159,167,200,250,219,192,224,128,201,0,134,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,0,32,0,0,0,0,0,0,0,0,0,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,0,32,0,0,0,0,0,0,0,0,0,0,4,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,0,0,127,62,3,224,234,240,164,71,250,170,192,184,200,175,224,234,201,240,234,167,32,235,240,164,230,8,33,163,255,190,192,126,238,8,119,167,32,4,33,171,192,52,6,16,33,176,192,62,44,34,5,32,252,240,230,167,40,8,240,231,103,240,232,111,24,31,33,0,64,240,228,135,95,22,0,25,94,35,86,213,225,240,229,135,95,22,0,25,42,254,255,40,71,95,86,213,225,42,254,254,40,67,17,176,192,71,230,240,203,55,131,95,120,230,15,32,2,62,16,71,42,254,253,40,74,18,254,112,32,5,205,160,34,24,23,254,128,32,5,205,24,35,24,14,254,95,32,5,205,24,35,24,5,254,129,204,24,35,28,5,32,214,24,189,33,210,192,52,201,124,224,231,125,224,232,240,230,60,254,20,32,5,33,229,255,52,175,224,230,240,164,234,170,192,62,1,224,234,201,126,18,28,5,32,251,35,195,223,33,240,234,254,1,192,240,233,111,60,254,96,32,2,62,64,224,233,38,152,17,176,192,6,16,229,124,198,48,103,54,0,225,26,119,254,112,32,5,205,244,34,24,23,254,128,32,5,205,90,35,24,14,254,95,32,5,205,90,35,24,5,254,129,204,90,35,28,213,17,32,0,25,209,5,32,204,62,2,224,234,201,229,213,197,240,249,167,32,72,240,253,224,225,62,3,224,253,234,0,32,240,228,135,95,22,0,33,28,101,25,94,35,86,213,225,240,229,190,40,13,126,254,255,40,29,35,35,35,35,35,35,24,238,240,230,35,190,32,243,35,17,244,255,42,18,28,42,18,28,42,18,28,126,18,240,225,224,253,234,0,32,193,209,225,201,240,244,167,200,229,213,17,224,255,245,124,198,48,103,241,119,240,245,25,119,240,246,25,119,240,247,25,119,175,224,244,224,245,209,225,201,229,213,197,240,253,224,225,62,3,224,253,234,0,32,240,228,135,95,22,0,33,54,101,25,94,35,86,213,225,240,229,190,40,10,126,254,255,40,16,35,35,35,24,241,240,230,35,190,32,246,35,126,234,205,192,240,225,224,253,234,0,32,193,209,225,201,250,205,192,167,200,229,245,124,198,48,103,241,119,175,234,205,192,225,201,240,178,167,192,205,143,33,205,178,79,250,7,208,167,196,60,27,205,55,8,205,236,79,205,24,81,240,253,224,225,62,3,224,253,234,0,32,205,139,73,1,24,194,33,100,33,205,13,73,1,40,194,33,100,33,205,13,73,1,56,194,33,100,33,205,13,73,1,72,194,33,100,33,205,13,73,205,234,74,205,138,75,205,181,75,240,225,224,253,234,0,32,205,136,36,240,253,224,225,62,2,224,253,234,0,32,205,68,88,240,225,224,253,234,0,32,205,45,23,205,94,81,205,250,30,240,172,230,3,192,250,3,194,238,1,234,3,194,201,250,20,208,167,200,240,179,254,13,208,240,172,230,7,192,240,172,203,95,40,5,33,0,198,24,14,33,175,63,240,180,230,240,214,16,15,22,0,95,25,17,209,149,6,8,42,18,19,19,5,32,249,201,0,0,1,1,1,0,0,1,1,0,1,0,62,12,234,171,192,205,83,36,175,234,7,208,33,45,36,240,228,22,0,95,25,126,234,20,208,201,33,26,64,240,228,7,22,0,95,25,42,95,126,87,98,107,250,171,192,71,126,184,48,5,35,35,35,24,247,125,234,16,208,124,234,17,208,33,0,209,17,16,0,54,255,25,125,254,160,194,126,36,201,205,146,36,205,63,38,205,95,37,201,250,16,208,111,250,17,208,103,126,71,250,171,192,144,200,216,79,203,49,229,35,126,230,31,7,7,7,198,16,224,194,42,230,192,203,55,198,208,145,224,195,205,230,36,225,17,3,0,25,125,234,16,208,124,234,17,208,24,197,250,3,208,224,192,254,255,200,22,0,95,7,131,203,18,95,33,108,51,25,42,224,199,24,28,240,154,167,32,3,203,126,192,126,230,127,224,192,22,0,95,7,131,203,18,95,33,108,51,25,126,224,199,175,224,196,224,197,224,200,224,201,224,203,240,192,22,0,95,7,131,203,18,95,33,108,51,25,35,42,224,202,126,224,204,254,192,56,5,62,11,234,232,223,17,16,0,6,0,33,0,209,126,60,40,8,4,25,125,254,144,32,245,201,120,205,238,44,201,33,144,209,119,240,194,230,248,198,7,234,146,209,240,195,234,147,209,205,178,44,62,11,234,224,223,201,175,234,19,208,14,0,250,19,208,254,20,208,197,121,203,55,33,0,209,111,126,60,40,29,121,205,220,44,240,195,254,224,56,10,62,255,224,192,121,205,238,44,24,9,240,194,254,192,48,240,205,183,37,193,12,121,254,10,32,202,33,80,192,250,19,208,7,7,22,0,95,25,125,254,160,210,182,37,62,180,119,35,35,35,35,24,241,201,175,234,0,208,33,80,192,250,19,208,7,7,22,0,95,25,68,77,33,217,47,240,197,230,1,32,3,33,171,48,240,198,7,22,0,95,25,42,95,126,87,98,107,250,19,208,254,20,208,126,254,255,200,203,127,32,53,7,203,167,234,0,208,126,203,95,40,7,240,194,214,8,224,194,126,203,87,40,7,240,194,198,8,224,194,126,203,79,40,7,240,195,214,8,224,195,126,203,71,40,6,240,195,198,8,224,195,35,24,195,240,194,2,3,240,195,2,3,126,2,3,250,0,208,2,3,35,250,19,208,60,234,19,208,24,163,33,0,209,126,60,40,29,229,205,226,44,33,149,52,240,192,7,22,0,95,25,42,95,126,87,98,107,205,109,38,225,229,205,244,44,225,125,198,16,111,254,160,194,66,38,201,240,200,167,40,58,240,199,203,79,40,17,205,178,43,48,6,240,194,60,224,194,201,240,194,230,248,224,194,240,201,230,240,203,55,71,240,201,230,15,184,40,7,4,203,48,176,224,201,201,240,201,230,15,224,201,240,200,61,224,200,195,112,40,229,22,0,240,196,95,25,126,234,2,208,254,255,32,6,175,224,196,225,24,235,240,196,60,224,196,250,2,208,230,240,254,240,40,32,250,2,208,230,224,254,224,32,10,250,2,208,230,15,224,200,225,24,139,250,2,208,224,193,62,1,224,200,225,195,109,38,240,196,60,224,196,35,126,234,3,208,250,2,208,254,248,32,8,250,3,208,224,198,225,24,164,254,240,32,120,250,3,208,230,192,40,56,203,127,40,19,240,197,230,253,71,250,1,194,79,240,194,145,23,7,230,2,176,224,197,250,3,208,203,119,40,26,250,2,194,79,240,195,71,240,202,230,112,15,15,128,145,23,230,1,71,240,197,230,254,176,224,197,250,3,208,230,12,40,8,31,31,71,240,197,168,224,197,250,3,208,203,111,40,12,230,2,246,253,71,240,197,203,207,160,224,197,250,3,208,203,103,40,12,230,1,246,254,71,240,197,203,199,160,224,197,225,195,172,38,254,241,32,17,62,10,205,238,44,205,205,36,62,10,205,220,44,225,195,172,38,254,242,32,9,250,3,208,224,199,225,195,172,38,254,243,32,36,250,3,208,224,192,254,255,202,110,40,33,192,255,205,178,44,225,33,149,52,240,192,7,22,0,95,25,42,95,126,87,98,107,195,172,38,254,244,32,9,250,3,208,224,201,225,195,172,38,254,245,32,12,240,4,230,3,62,241,40,157,225,195,172,38,254,246,32,32,250,2,194,71,240,195,144,198,20,254,32,250,3,208,61,40,1,63,56,8,240,196,61,61,224,196,225,201,225,195,172,38,254,247,32,5,205,33,43,225,201,254,249,32,8,250,3,208,234,248,223,225,201,254,250,32,8,250,3,208,234,224,223,225,201,254,251,32,25,250,3,208,79,250,2,194,71,240,195,144,185,56,7,175,224,196,225,195,172,38,225,195,172,38,254,252,32,13,250,3,208,224,194,62,112,224,195,225,195,172,38,254,253,32,8,250,3,208,234,232,223,225,201,225,195,172,38,225,201,240,193,230,15,202,108,41,240,197,203,71,32,106,205,123,43,48,67,240,199,203,71,40,5,205,219,43,56,68,240,193,230,15,71,240,195,144,224,195,240,203,167,202,108,41,250,5,194,79,197,62,32,234,5,194,205,164,26,193,167,32,16,250,2,194,144,234,2,194,254,15,48,5,62,15,234,2,194,121,234,5,194,195,108,41,240,199,230,12,254,0,40,192,254,4,32,9,240,197,203,199,224,197,195,108,41,254,12,194,108,41,175,224,196,224,200,195,108,41,205,145,43,48,99,240,199,203,71,40,5,205,245,43,56,100,240,193,230,15,71,240,195,128,224,195,240,203,167,40,102,250,5,194,79,197,175,234,5,194,205,164,26,193,167,32,37,250,2,194,128,234,2,194,254,81,56,26,250,210,192,254,7,48,25,250,2,194,214,80,71,62,80,234,2,194,240,164,128,224,164,205,150,44,121,234,5,194,24,43,240,164,230,12,32,225,240,164,230,252,224,164,24,236,240,199,230,12,254,0,40,160,254,4,32,8,240,197,203,135,224,197,24,9,254,12,32,5,175,224,196,224,200,240,193,230,240,202,244,41,240,197,203,79,32,63,205,24,44,48,26,240,193,230,240,203,55,71,240,194,144,224,194,240,203,167,40,101,250,1,194,144,234,1,194,24,92,240,199,230,192,254,0,40,222,254,64,194,173,41,240,197,203,207,224,197,24,71,254,192,32,67,175,224,196,224,200,24,60,205,178,43,48,26,240,193,230,240,203,55,71,240,194,128,224,194,240,203,167,40,38,250,1,194,128,234,1,194,24,29,240,199,230,48,254,0,40,222,254,16,32,8,240,197,203,143,224,197,24,9,254,48,32,5,175,224,196,224,200,175,224,203,201,229,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,126,225,167,200,229,119,205,178,44,62,255,225,201,229,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,35,126,225,167,200,119,205,178,44,62,255,201,229,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,35,35,126,225,254,255,200,167,200,119,205,178,44,175,201,229,125,198,12,111,126,230,63,40,23,126,61,119,225,126,254,50,40,6,254,8,40,2,24,5,62,1,234,240,223,62,254,201,225,229,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,35,35,35,126,225,167,200,119,205,178,44,62,255,201,229,125,198,12,111,126,230,63,40,34,126,61,119,225,126,254,26,40,17,254,97,40,13,254,96,40,2,24,12,62,1,234,248,223,24,5,62,1,234,240,223,62,254,201,225,229,126,254,96,32,3,234,7,208,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,35,35,35,35,126,225,167,200,119,205,178,44,62,255,201,229,126,95,22,0,111,38,0,203,35,203,18,203,35,203,18,25,17,125,49,25,35,35,35,35,126,225,167,200,119,205,178,44,62,255,201,33,0,209,126,254,255,40,21,229,54,39,35,35,35,35,54,0,35,35,35,35,35,54,0,35,35,54,0,225,125,198,16,111,254,160,56,222,62,39,224,192,175,224,196,224,199,60,234,248,223,201,240,195,79,240,164,129,198,4,224,174,79,240,197,203,71,24,8,240,202,230,112,15,129,224,174,240,194,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,224,174,240,194,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,8,79,240,202,230,112,15,129,214,8,224,174,240,194,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,4,224,174,79,240,197,203,71,24,8,240,202,230,112,15,129,224,174,240,194,198,8,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,3,224,174,240,194,198,8,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,5,79,240,202,230,112,15,129,214,8,224,174,240,194,198,8,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,4,224,174,79,240,197,203,71,24,8,240,202,230,112,15,129,224,174,240,202,230,7,61,203,55,15,79,240,194,145,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,3,224,174,240,202,230,7,61,203,55,15,79,240,194,145,224,173,205,83,1,254,95,216,254,240,63,201,240,195,79,240,164,129,198,5,79,240,202,230,112,15,145,214,8,224,174,240,202,230,7,61,203,55,15,79,240,194,145,224,173,205,83,1,254,95,216,254,240,63,201,120,167,200,240,195,144,224,195,229,213,33,3,209,17,16,0,126,144,119,25,125,254,160,56,247,209,225,201,229,126,22,0,95,7,131,203,18,95,33,108,51,25,42,71,42,87,126,225,35,35,35,35,54,0,35,35,35,112,35,54,0,35,54,0,35,114,35,35,119,201,203,55,33,0,209,111,17,192,255,6,13,42,18,19,5,32,250,201,203,55,33,0,209,111,17,192,255,6,13,26,34,19,5,32,250,201,144,255,16,144,255,145,255,32,144,255,64,147,72,146,255,64,149,72,148,255,151,8,150,255,153,8,152,255,16,151,24,150,255,16,153,24,152,255,154,255,32,150,40,151,255,16,137,17,136,24,135,255,16,140,17,139,24,138,255,136,1,137,10,135,255,139,1,140,10,138,255,16,156,17,141,255,141,1,156,255,32,141,33,156,255,155,255,157,17,157,255,158,17,158,255,239,1,239,1,239,255,221,1,222,255,32,157,49,157,10,157,17,157,255,32,158,49,158,10,158,17,158,255,131,255,132,255,133,255,134,255,64,224,255,229,255,64,246,255,64,247,255,64,248,255,254,255,223,255,64,238,255,239,1,239,255,176,1,177,10,160,1,161,255,16,177,17,176,26,161,17,160,255,48,195,49,194,58,211,49,210,255,178,1,179,10,162,1,163,255,16,179,17,178,26,163,17,162,255,180,1,181,10,164,1,165,255,16,181,17,180,26,165,17,164,255,182,1,183,10,166,1,167,255,16,183,17,182,26,167,17,166,255,168,1,169,255,16,169,17,168,255,32,168,33,169,255,184,1,185,255,16,185,17,184,255,32,184,33,185,255,208,1,209,10,192,1,193,255,16,209,17,208,26,193,17,192,255,210,1,211,10,194,1,195,255,16,211,17,210,26,195,17,194,255,212,1,213,10,196,1,197,255,16,213,17,212,26,197,17,196,255,214,1,215,10,198,1,199,255,16,215,17,214,26,199,17,198,255,200,1,201,255,16,201,17,200,255,32,200,33,201,255,216,1,217,255,16,217,17,216,255,32,216,33,217,255,172,255,174,255,175,255,189,1,190,1,191,255,16,191,17,190,17,189,255,186,255,187,255,198,1,199,255,32,198,33,199,255,214,1,215,255,32,214,33,215,255,64,208,72,192,255,64,209,72,193,255,188,8,172,255,226,255,227,255,196,1,197,255,212,1,213,255,159,255,170,255,173,255,216,255,217,255,186,1,187,10,170,1,171,255,64,230,255,187,10,170,1,171,17,170,255,187,10,186,1,171,17,186,255,187,10,172,1,171,17,172,255,172,1,173,17,172,255,32,172,33,173,49,172,255,218,1,219,1,220,10,2,202,1,203,1,204,1,186,10,2,2,205,1,206,255,187,1,214,1,215,10,2,171,1,198,1,199,1,170,10,2,2,205,1,206,255,32,170,49,170,10,170,17,170,255,32,171,49,171,10,171,17,171,255,188,1,189,10,206,1,207,10,190,1,191,10,174,1,175,255,204,1,205,10,218,1,219,10,202,1,203,10,186,1,187,255,64,136,72,135,255,249,1,251,255,249,1,250,255,16,249,18,251,255,16,249,18,250,255,206,1,207,10,190,1,191,10,174,1,175,255,202,1,203,10,204,1,205,10,188,1,189,255,208,17,208,10,192,17,192,255,209,17,209,10,193,17,193,255,186,1,187,1,188,10,171,255,189,1,190,1,191,10,174,255,96,147,100,146,255,96,149,100,148,255,64,204,65,205,65,206,65,207,74,66,66,188,65,189,65,190,65,191,74,66,66,172,65,173,65,174,65,175,74,203,255,64,242,65,243,74,240,65,241,255,140,1,141,1,156,10,2,137,1,138,1,139,255,218,1,200,1,201,10,2,202,1,219,1,220,255,0,45,2,45,5,45,7,45,10,45,15,45,28,45,33,45,38,45,40,45,45,45,52,45,71,45,80,45,85,45,87,45,91,45,95,45,95,45,101,45,105,45,114,45,123,45,125,45,127,45,129,45,131,45,134,45,136,45,139,45,142,45,145,45,147,45,149,45,152,45,189,46,197,46,205,46,213,46,219,46,164,45,190,45,207,45,224,45,237,45,242,45,251,45,0,46,13,46,30,46,47,46,64,46,77,46,82,46,91,46,96,46,101,46,103,46,105,46,113,46,120,46,122,46,124,46,128,46,133,46,137,46,142,46,147,46,152,46,156,46,158,46,173,45,226,46,247,46,160,46,164,46,12,47,21,47,30,47,46,47,168,46,62,47,75,47,80,47,85,47,97,47,109,47,117,47,145,45,105,46,170,46,101,46,172,46,125,47,133,47,141,47,146,47,174,46,176,46,151,47,178,46,182,47,191,47,204,47,186,46,0,45,2,45,5,45,7,45,10,45,15,45,20,45,24,45,38,45,40,45,59,45,65,45,76,45,80,45,85,45,87,45,91,45,95,45,95,45,101,45,105,45,114,45,123,45,125,45,127,45,129,45,131,45,134,45,136,45,139,45,142,45,145,45,147,45,149,45,152,45,189,46,197,46,205,46,213,46,219,46,156,45,182,45,199,45,216,45,233,45,242,45,247,45,0,46,5,46,22,46,39,46,56,46,73,46,82,46,87,46,96,46,101,46,103,46,105,46,107,46,120,46,122,46,124,46,128,46,133,46,137,46,142,46,147,46,152,46,156,46,158,46,173,45,226,46,247,46,160,46,164,46,12,47,21,47,30,47,46,47,168,46,62,47,67,47,71,47,85,47,97,47,109,47,117,47,145,45,105,46,170,46,101,46,172,46,125,47,133,47,141,47,146,47,174,46,176,46,151,47,178,46,182,47,191,47,204,47,186,46,1,17,255,17,17,0,0,0,0,0,0,0,255,255,255,0,0,0,0,0,5,18,255,18,18,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,79,79,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,15,21,255,21,21,0,0,0,0,0,255,0,255,0,39,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,25,255,25,25,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,255,0,79,0,0,0,0,0,0,0,0,0,0,0,0,255,0,39,0,0,255,0,0,0,0,255,0,0,255,0,255,33,33,0,0,0,0,0,0,0,255,0,0,0,0,255,0,0,255,0,255,0,39,28,25,255,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,39,39,0,0,255,39,39,64,65,255,65,65,0,0,255,79,79,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,62,255,62,62,0,0,0,0,0,0,0,0,0,0,64,65,255,65,65,0,0,0,0,0,0,0,0,0,0,67,68,255,68,68,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,13,13,255,0,13,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,255,255,255,255,39,255,255,255,255,39,0,0,255,0,0,0,0,255,255,255,87,21,255,21,21,0,0,0,0,0,0,0,255,0,0,255,255,255,255,39,0,0,255,0,0,0,0,0,0,0,0,0,255,0,255,0,0,255,0,255,0,0,255,0,255,0,0,255,0,255,0,0,255,0,79,0,0,255,0,98,0,0,0,0,0,6,17,0,2,17,0,1,17,0,0,17,0,7,17,0,2,17,0,0,34,0,0,145,0,9,51,196,7,34,129,0,177,0,0,177,0,0,161,0,0,0,0,52,34,65,2,33,0,0,18,0,0,17,0,0,17,0,0,145,0,8,145,0,0,33,0,7,34,64,0,33,0,0,33,0,0,34,0,80,36,211,0,33,0,2,33,0,0,34,65,0,33,0,0,17,0,0,34,130,0,34,0,0,17,0,0,17,0,0,34,65,224,34,65,0,17,0,0,34,0,36,17,0,6,17,0,36,17,0,6,17,0,4,17,0,0,17,0,0,17,0,0,33,0,0,33,0,6,34,64,0,35,201,0,162,0,12,17,0,0,145,0,0,145,0,0,145,0,0,177,0,0,177,0,0,161,0,0,161,0,48,18,130,2,17,0,0,17,0,0,34,128,2,33,0,0,33,0,0,34,128,2,33,0,0,33,0,0,18,0,0,34,0,52,162,0,84,34,255,0,146,0,0,17,0,0,17,64,0,145,0,0,145,0,0,145,0,0,34,0,0,17,0,0,17,0,0,34,64,0,34,64,0,17,0,0,17,64,180,34,129,2,33,0,0,17,0,0,17,137,0,17,0,0,67,192,0,17,50,0,17,2,0,17,5,0,17,2,0,67,216,84,50,211,84,34,0,91,53,101,53,109,53,148,53,161,53,171,53,202,53,218,53,228,53,2,54,47,54,65,54,83,54,107,54,138,54,192,54,200,54,242,54,246,54,250,54,255,54,17,55,23,55,50,55,79,55,92,55,98,55,114,55,122,55,132,55,144,55,152,55,161,55,173,55,196,55,206,55,226,55,20,56,101,56,103,56,118,56,145,56,152,56,179,56,186,56,196,56,209,56,217,56,238,56,48,57,57,57,82,57,91,57,122,57,144,57,148,57,168,57,185,57,202,57,220,57,238,57,47,58,55,58,61,58,84,58,92,58,98,58,134,58,142,58,148,58,155,58,193,58,232,58,242,58,15,59,25,59,33,59,37,59,53,59,60,59,72,59,78,59,103,59,122,59,188,59,215,59,254,59,42,60,53,60,61,60,90,60,100,60,120,60,145,60,166,60,186,60,207,60,228,60,252,60,248,0,244,2,1,226,248,1,227,255,248,2,0,239,239,239,243,255,240,32,248,4,0,239,246,0,16,239,0,239,248,5,239,248,4,239,248,5,239,248,4,239,248,5,239,248,4,239,240,34,16,239,0,239,239,239,255,248,31,244,2,0,239,239,241,71,239,239,239,255,244,2,248,6,1,226,248,7,227,255,248,8,0,239,239,248,14,228,248,8,228,248,14,228,248,8,228,248,14,228,248,8,228,248,14,228,248,8,228,243,70,248,101,240,34,244,1,16,239,240,32,16,239,0,239,232,255,248,104,244,1,240,32,16,226,243,19,240,48,244,1,248,72,0,239,248,73,0,239,249,4,241,27,232,16,239,228,249,4,241,27,240,34,16,239,228,255,244,3,248,86,1,226,248,87,226,248,86,226,248,87,226,248,86,226,248,87,226,248,86,226,248,87,226,248,86,226,248,87,226,248,86,0,232,248,87,249,4,241,81,232,255,248,18,244,1,240,34,16,238,239,239,239,240,32,239,239,239,239,255,248,18,244,1,240,16,1,238,239,239,232,240,17,239,239,239,232,255,248,19,240,34,244,15,0,234,244,0,16,239,239,239,239,239,239,239,239,239,239,239,239,255,240,100,17,229,1,17,1,17,1,1,240,34,1,1,17,1,17,1,17,229,32,239,239,239,239,239,239,239,239,239,255,248,40,240,96,244,2,0,228,248,41,228,248,40,228,248,41,228,248,40,240,96,66,66,34,34,248,41,18,18,18,2,240,34,248,40,2,18,18,18,248,41,34,34,66,66,248,40,65,239,239,239,239,239,255,248,44,0,239,239,239,243,21,248,66,240,32,32,238,248,67,239,248,66,239,248,67,232,16,231,0,227,248,66,240,34,0,227,16,231,32,231,248,67,239,248,66,239,248,67,239,0,239,239,255,248,3,243,13,248,9,243,13,248,104,0,239,255,248,104,240,32,244,1,16,238,239,239,239,232,244,15,0,239,243,255,249,3,248,45,243,13,244,2,240,64,248,50,1,232,248,51,233,248,50,233,248,51,233,248,50,233,248,51,233,241,23,243,24,248,62,112,240,32,16,238,232,240,64,17,238,1,238,240,34,17,238,16,231,240,4,17,238,1,238,239,243,255,248,64,0,239,239,239,239,239,239,239,239,243,22,249,3,248,55,243,13,248,79,16,239,239,232,248,78,0,232,249,4,241,31,239,255,240,48,248,31,55,68,243,30,244,1,248,54,0,239,239,239,243,25,248,42,240,144,244,2,18,231,248,43,232,255,248,74,1,231,248,75,232,255,248,31,240,48,112,112,64,243,88,248,40,240,8,244,2,16,227,248,41,228,255,240,34,64,241,34,240,32,80,80,96,241,34,248,20,0,239,248,21,239,248,31,243,255,248,69,244,1,1,227,248,70,228,255,248,69,240,192,244,1,18,239,239,239,239,239,239,239,239,239,239,239,243,255,248,42,240,96,32,238,248,43,239,248,42,240,96,239,248,43,232,16,231,0,227,248,42,240,98,249,4,241,35,0,227,16,231,32,231,248,43,239,248,42,240,64,239,248,43,239,0,239,239,255,248,50,240,34,0,239,239,244,0,246,1,16,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,240,32,244,1,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,248,50,232,248,51,232,255,243,255,248,20,0,231,248,21,232,248,20,232,248,21,232,243,255,244,1,248,22,240,49,112,17,229,1,17,1,17,1,1,240,34,1,1,17,1,17,1,17,229,243,41,248,22,244,1,1,239,255,244,1,248,23,240,49,112,17,229,1,17,1,17,1,1,240,34,1,1,17,1,17,1,17,229,243,43,248,23,244,1,1,239,255,244,1,248,25,240,49,64,64,243,52,244,2,240,32,248,26,16,227,248,27,227,243,46,248,26,0,232,248,27,232,255,248,44,240,145,244,1,1,239,65,241,48,1,239,65,241,48,1,239,65,243,48,240,16,248,44,1,238,248,46,239,248,44,239,248,46,239,248,44,239,248,46,239,248,44,239,248,46,232,240,128,248,44,16,239,240,17,248,46,16,239,248,44,2,238,248,46,239,248,44,239,248,46,239,248,44,239,248,46,239,248,44,239,248,46,239,243,255,244,4,248,42,6,248,43,6,255,248,84,244,1,241,51,240,4,0,231,248,85,7,5,0,239,239,239,240,64,248,84,7,5,255,248,31,240,48,114,114,66,243,71,248,25,244,2,240,32,49,33,228,17,228,1,17,1,240,34,1,17,1,17,228,33,228,49,48,239,239,239,239,239,255,248,32,240,34,244,1,246,1,16,239,239,239,239,239,239,239,239,239,239,239,239,255,248,33,0,255,248,33,240,34,0,231,16,239,239,239,239,239,239,239,239,239,239,239,239,255,248,18,240,50,244,2,17,238,239,232,240,49,17,238,239,232,255,248,18,240,48,244,2,17,238,239,232,240,51,17,238,239,232,255,248,34,244,1,240,34,16,238,239,239,239,240,32,239,239,239,239,255,248,34,244,1,240,16,1,238,239,239,232,240,17,239,239,239,232,255,248,35,244,1,240,96,49,33,226,248,36,228,248,37,226,17,225,248,36,228,17,248,35,0,17,0,17,248,36,0,1,240,34,1,0,248,37,17,0,17,0,248,36,17,227,248,35,227,33,248,36,228,248,37,228,248,36,49,64,239,239,239,239,239,255,248,38,0,239,239,239,243,62,249,3,248,39,243,13,248,42,240,64,0,239,239,239,239,240,64,239,239,248,43,249,4,241,35,239,239,239,255,248,46,0,239,239,239,243,65,249,3,248,47,243,13,248,48,240,16,1,232,248,49,232,248,48,232,248,49,232,248,48,232,248,49,0,232,248,48,232,248,49,241,69,232,248,48,232,248,49,255,248,52,0,239,239,239,243,68,249,3,248,53,243,13,240,34,248,68,16,239,255,240,16,4,249,1,248,15,0,228,248,16,228,248,15,228,248,16,228,248,15,228,248,16,228,248,15,228,248,16,228,248,15,228,248,16,228,243,255,248,49,240,32,244,2,66,66,34,34,248,71,18,18,18,2,240,34,248,49,2,18,18,18,248,71,34,34,66,66,248,49,65,239,239,239,239,239,255,244,1,248,76,17,238,248,77,239,255,248,81,240,32,0,239,16,239,0,239,239,239,239,239,250,9,241,74,239,239,240,34,16,239,0,239,239,239,255,248,31,240,48,112,48,240,64,243,75,248,82,1,231,248,83,232,255,248,33,0,255,248,33,240,32,0,231,16,238,239,239,239,239,239,239,243,78,248,33,240,17,2,239,255,249,1,248,20,0,239,248,21,239,249,1,247,248,31,240,145,243,90,248,70,240,49,116,244,0,32,239,232,16,239,240,34,16,239,32,239,239,239,239,239,239,239,255,248,49,240,16,244,1,2,239,239,228,240,144,34,234,250,9,241,80,255,248,51,240,144,244,1,2,227,248,50,228,251,32,248,50,65,65,65,49,248,51,49,49,17,33,248,50,17,17,17,248,51,17,1,1,240,8,248,50,1,1,17,248,51,17,17,17,248,50,33,17,49,49,248,51,49,65,65,65,2,239,239,239,239,239,255,248,69,244,3,65,65,65,67,51,35,36,20,4,240,8,20,20,20,52,51,50,66,65,64,240,4,255,248,95,240,34,248,95,0,239,16,239,0,239,248,96,239,248,95,239,248,96,239,248,95,239,248,96,239,248,95,239,240,32,16,239,0,239,239,239,255,248,40,240,96,244,2,0,226,248,41,226,248,40,226,248,41,226,248,40,240,96,66,50,50,34,18,18,240,34,18,34,34,50,50,66,248,40,65,239,239,239,239,239,255,244,2,248,44,0,239,239,239,239,243,86,248,69,1,227,248,70,228,255,240,8,244,2,248,97,16,248,98,16,248,97,16,248,98,16,248,97,16,248,98,16,248,97,16,248,98,16,255,244,1,248,82,18,231,248,83,232,255,253,19,248,31,244,15,0,239,248,99,240,32,244,2,16,239,239,239,243,96,248,31,240,16,4,248,100,240,32,244,1,1,232,244,0,248,31,241,95,64,241,94,64,243,93,248,69,240,48,244,1,33,234,244,0,232,2,232,239,239,239,239,239,239,239,255,248,69,240,48,244,1,1,234,244,0,232,2,239,239,239,239,239,239,239,255,248,69,240,50,244,1,33,234,244,0,232,2,232,239,239,239,239,239,239,239,255,248,99,241,92,240,144,16,239,239,1,239,241,92,240,145,16,239,232,1,239,255,244,1,248,102,17,227,248,103,228,248,102,228,248,103,228,248,102,228,248,103,228,241,83,255,249,1,248,20,0,231,248,21,232,248,20,232,248,21,232,248,31,252,168,243,91,33,48,192,6,32,175,34,5,32,252,33,0,218,62,40,34,175,34,62,4,34,205,117,61,62,32,34,34,34,34,62,246,34,34,34,34,62,48,34,175,6,9,34,5,32,252,62,2,34,61,34,175,34,34,34,34,62,64,34,175,34,34,34,62,64,34,175,6,8,34,5,32,252,62,4,34,62,17,119,201,250,164,192,167,192,240,179,254,18,208,250,0,218,254,40,192,205,117,61,201,17,51,152,250,1,218,71,230,15,18,29,120,230,240,203,55,18,29,250,2,218,230,15,18,201,33,232,223,62,9,119,175,224,64,224,164,33,0,192,6,160,34,5,32,252,33,0,152,6,255,14,3,62,44,34,5,32,252,6,255,13,32,247,17,139,152,250,21,218,71,230,15,18,29,120,230,240,203,55,18,62,131,224,64,62,19,224,179,201,175,224,64,33,0,152,62,245,34,6,18,62,159,34,5,32,252,62,252,119,17,32,0,107,6,16,14,2,62,248,119,25,5,32,251,46,51,37,37,6,16,13,32,242,33,32,154,62,255,34,6,18,62,159,34,5,32,252,62,233,119,33,69,152,62,11,34,62,24,34,61,34,62,30,34,62,28,34,44,62,16,34,62,10,34,62,22,34,62,14,119,33,135,152,62,228,34,44,62,43,119,46,225,62,45,6,18,34,5,32,252,46,209,62,43,34,46,65,36,62,45,6,18,34,5,32,252,46,49,62,43,34,46,161,62,45,6,18,34,5,32,252,46,145,62,43,34,46,1,36,62,45,6,18,34,5,32,252,46,241,37,62,43,34,0,1,2,229,3,1,2,229,17,114,62,240,4,230,3,60,19,61,32,252,33,210,152,1,96,0,26,119,19,9,125,254,82,32,247,62,131,224,64,62,20,224,179,201,1,32,0,17,35,218,250,24,218,103,250,25,218,111,26,119,19,9,250,40,218,61,234,40,218,32,243,62,4,234,40,218,250,41,218,61,234,41,218,32,218,62,17,234,41,218,62,21,224,179,201,240,173,214,16,203,63,203,63,203,63,17,0,0,95,33,0,152,6,32,25,5,32,252,240,174,214,8,203,63,203,63,203,63,17,0,0,95,25,124,224,176,125,224,175,201,240,176,87,240,175,95,6,4,203,26,203,27,5,32,249,123,214,132,230,254,7,7,198,8,224,173,240,175,230,31,23,23,23,198,8,224,174,201,240,177,167,200,250,226,192,167,192,240,234,254,2,200,17,162,192,33,32,152,175,224,177,14,3,26,71,203,55,230,15,32,40,240,177,167,62,0,32,2,62,44,34,120,230,15,32,33,240,177,167,62,0,32,9,62,1,185,62,0,40,2,62,44,34,29,13,32,212,175,224,177,201,245,62,1,224,177,241,24,217,245,62,1,224,177,241,24,231,62,192,224,70,62,40,61,32,253,201,22,10,27,18,24,43,44,44,44,44,32,24,27,21,13,44,29,18,22,14,44,44,44,44,44,44,44,42,43,44,44,44,1,41,1,44,44,0,0,0,0,0,0,16,56,56,40,16,0,224,177,91,255,255,255,255,126,60,24,0,0,129,66,165,0,225,51,222,255,231,219,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,187,85,226,85,5,86,187,85,226,85,5,86,187,85,226,85,5,86,48,86,101,86,148,86,187,85,17,83,5,84,213,84,121,81,34,82,155,82,17,83,5,84,213,84,17,83,5,84,213,84,15,15,31,24,59,48,55,32,63,39,58,42,57,41,63,38,240,240,216,56,236,28,244,12,244,236,84,92,148,156,244,108,0,0,15,15,63,56,123,96,119,64,127,71,122,74,121,73,0,0,240,240,252,28,246,14,250,6,250,230,90,86,154,150,0,0,3,3,7,7,12,12,18,30,60,60,227,255,67,67,0,0,248,248,128,192,224,224,134,230,235,233,29,241,125,97,1,1,3,3,6,6,11,15,30,30,113,127,38,38,15,8,252,252,192,224,112,112,64,112,120,120,172,228,244,196,116,68,31,31,50,51,122,91,243,146,255,140,124,112,112,64,63,63,198,198,46,234,126,250,190,162,186,162,122,122,106,106,134,134,0,0,7,7,24,31,39,56,47,48,92,96,88,96,88,96,0,0,0,0,3,3,12,15,19,28,23,24,46,48,44,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,2,7,7,8,8,13,13,31,31,255,240,191,128,248,248,224,32,248,152,240,144,248,136,240,48,224,32,240,48,31,16,15,9,31,17,23,28,29,31,31,21,29,23,15,13,200,56,208,176,248,136,248,56,184,232,232,184,184,232,240,176,63,38,31,16,127,97,223,184,251,183,188,244,126,90,36,36,244,108,232,24,254,134,251,29,223,237,61,47,126,90,36,36,3,2,3,2,3,2,1,1,8,8,12,12,4,7,3,3,191,33,190,62,176,48,248,120,128,248,248,248,0,240,192,192,15,8,15,8,15,8,7,4,35,35,49,49,24,31,15,15,124,68,120,120,112,112,240,112,128,240,240,240,0,224,192,192,63,63,121,105,253,141,121,105,31,22,15,8,28,16,127,127,224,224,27,251,47,237,207,73,205,77,43,43,56,56,192,192,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,6,0,0,63,63,126,70,127,121,142,138,223,217,254,246,252,4,0,0,0,0,1,1,1,1,2,2,15,12,183,177,126,126,252,196,248,136,120,8,240,16,224,32,192,64,128,128,0,0,95,79,241,241,14,14,25,24,16,16,16,16,25,24,7,6,246,246,253,173,245,23,253,15,234,30,234,30,203,63,155,127,4,4,142,138,142,138,223,209,255,175,245,149,177,145,191,143,24,24,124,100,254,162,254,174,181,149,177,145,159,143,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,9,14,26,28,38,36,46,44,38,36,63,63,0,0,224,224,144,112,88,56,100,36,116,52,100,36,252,252,7,7,9,14,26,28,38,36,46,44,38,36,63,63,0,0,224,224,144,112,88,56,100,36,116,52,100,36,252,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,28,23,17,10,10,12,12,3,3,13,12,17,16,33,32,254,6,251,139,177,209,169,225,91,193,121,199,185,135,242,142,32,32,32,32,49,49,57,57,63,38,31,16,15,15,0,0,188,132,252,196,188,132,252,204,120,8,240,112,192,192,0,0,7,7,1,1,1,1,1,1,0,0,0,0,0,0,0,0,253,255,121,63,113,63,102,122,238,242,142,242,94,98,126,70,126,126,16,16,124,124,16,16,124,124,56,56,68,68,124,124,16,16,124,124,16,16,124,124,16,16,40,40,68,68,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,60,114,92,210,188,178,252,223,223,20,28,116,108,84,108,76,60,78,58,75,61,77,63,251,251,40,56,46,54,42,54,223,223,242,188,178,220,82,124,63,63,10,14,58,54,42,54,251,251,79,61,77,59,74,62,252,252,80,112,92,108,84,108,7,7,25,30,42,44,63,63,182,216,255,255,20,28,84,108,224,224,152,120,84,52,252,252,109,27,255,255,40,56,42,54,39,32,47,32,63,32,62,33,60,51,24,31,15,15,3,3,196,188,248,248,112,240,48,240,112,240,216,232,156,228,60,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,5,0,9,0,1,0,3,0,5,0,9,0,255,60,255,126,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,1,1,7,6,14,8,31,31,28,16,31,31,60,60,86,78,255,255,57,7,124,3,255,255,252,3,255,255,0,0,0,0,128,128,224,224,112,240,248,248,56,248,248,248,30,22,25,25,25,25,30,22,28,16,28,16,63,63,221,204,126,25,102,37,102,37,126,25,126,1,126,1,255,255,239,99,120,248,152,152,152,152,120,248,56,248,56,248,252,252,31,255,3,3,7,4,15,8,31,16,30,16,60,32,63,63,32,32,255,255,195,0,135,0,15,0,15,0,31,0,255,255,0,0,255,255,193,63,224,31,240,15,248,7,252,3,255,255,0,0,192,192,224,224,112,240,56,248,56,248,28,252,252,252,28,124,64,127,127,127,128,128,128,255,255,255,16,16,12,12,3,3,0,255,255,255,0,0,0,255,255,255,8,56,48,240,192,192,0,255,255,255,0,0,0,255,255,255,16,16,12,12,3,3,14,254,254,254,7,63,7,255,255,255,8,56,48,240,192,192,255,255,255,0,255,0,255,0,255,0,255,0,255,255,0,0,0,0,0,0,3,3,12,12,16,16,32,32,32,32,64,64,0,0,0,0,128,128,64,64,36,36,26,26,1,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,64,64,1,1,2,2,4,4,15,8,7,4,3,2,1,1,0,0,128,128,0,0,193,0,247,0,255,0,255,64,255,227,62,62,19,0,153,0,193,0,227,0,255,0,255,128,127,65,62,62,64,64,160,32,224,32,192,64,192,64,128,128,0,0,0,0,0,0,0,0,0,16,0,40,0,16,0,0,0,0,0,0,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,0,0,255,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,16,0,32,0,82,0,82,0,76,0,255,0,0,0,0,0,0,0,0,0,74,0,74,0,50,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,48,0,8,0,4,0,64,0,64,0,63,0,64,0,63,0,16,0,8,0,7,0,0,0,0,0,255,0,0,0,255,0,72,0,132,0,3,0,0,0,0,0,255,0,0,0,255,0,18,0,33,0,192,0,2,0,2,0,252,0,2,0,252,0,8,0,16,0,224,0,1,0,2,0,15,0,16,0,63,0,64,0,127,0,76,0,128,0,64,0,240,0,8,0,252,0,2,0,254,0,50,253,251,253,251,253,251,253,251,253,251,253,251,253,251,253,3,0,0,0,0,0,24,0,36,0,36,0,24,0,0,0,0,0,255,255,255,0,0,0,255,255,255,0,0,231,24,0,0,231,24,0,0,231,24,0,0,231,24,0,0,231,24,0,0,128,0,128,0,128,0,128,0,128,0,128,0,128,0,128,0,0,32,0,80,0,144,0,160,0,144,0,144,0,74,0,77,0,85,0,73,0,41,0,42,0,42,0,20,0,20,0,12,0,131,0,198,0,109,0,255,0,255,0,255,0,255,0,255,0,247,0,227,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,127,127,255,255,255,255,255,255,153,153,153,153,230,230,255,255,255,255,255,255,255,255,255,255,153,153,153,153,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,248,254,254,255,255,255,255,255,255,153,153,153,153,103,103,238,238,238,238,238,238,238,238,238,238,238,238,0,0,0,0,127,127,192,192,160,160,159,159,152,152,148,148,255,255,255,255,254,254,3,3,7,7,251,251,27,27,59,59,255,255,255,255,127,127,192,192,160,160,159,159,152,152,148,148,147,147,146,146,254,254,3,3,7,7,251,251,27,27,59,59,219,219,219,219,147,147,147,147,148,148,159,159,159,159,160,160,255,255,127,127,219,219,219,219,59,59,251,251,251,251,7,7,255,255,254,254,0,131,0,198,0,109,0,255,0,255,0,255,0,255,0,255,60,60,127,103,255,204,255,144,255,144,255,132,255,255,255,255,124,124,254,158,255,51,255,39,255,3,255,151,255,255,255,255,255,201,255,157,255,255,255,223,255,28,255,112,255,231,255,255,126,126,255,131,255,201,255,129,255,165,255,131,255,255,255,255,7,7,3,3,3,0,7,1,3,0,3,0,57,25,127,31,192,192,48,48,240,112,240,48,240,16,232,8,196,228,224,240,0,0,3,3,1,1,1,0,3,0,1,0,1,0,0,0,0,0,224,224,152,152,248,56,249,153,254,14,240,0,224,240,0,0,63,63,64,68,179,247,247,179,255,128,255,128,255,255,0,0,128,128,64,64,32,96,32,96,160,96,160,96,160,96,63,63,127,64,255,187,255,128,255,191,207,207,7,7,7,7,128,128,64,192,160,224,160,96,224,32,224,160,224,160,226,162,0,0,3,3,3,3,7,1,3,0,127,31,67,1,15,15,0,0,226,226,50,50,252,60,224,0,240,240,248,248,252,252,0,0,7,7,28,31,55,56,44,48,120,96,88,96,89,96,0,0,224,224,56,248,156,124,204,60,206,62,206,62,206,62,3,3,12,12,16,16,36,32,40,32,40,32,41,33,33,33,253,253,7,3,3,1,1,0,125,124,255,254,63,58,191,178,125,3,251,7,255,132,252,180,220,204,223,204,220,207,223,207,0,0,96,96,248,184,188,164,164,164,252,164,184,248,96,96,71,7,1,0,1,1,1,1,0,0,0,0,0,0,0,0,224,240,240,224,248,184,252,156,224,0,192,192,96,96,64,64,31,15,63,15,32,0,0,0,0,0,0,0,0,0,0,0,240,248,240,248,248,112,248,216,248,216,248,152,96,96,224,224,127,64,63,63,64,65,255,255,129,131,255,255,64,64,63,63,64,192,65,193,131,131,133,135,219,221,102,250,252,12,248,248,207,207,255,191,127,64,63,63,16,16,31,31,8,8,7,7,227,35,195,67,199,197,107,237,119,251,206,242,28,44,240,240,63,63,126,65,127,64,255,158,255,128,255,252,255,128,127,127,0,0,129,129,67,195,243,115,205,127,219,77,239,235,158,158,95,96,79,112,111,112,32,63,48,63,31,31,7,7,0,0,206,62,142,126,30,254,28,252,124,252,248,248,224,224,0,0,35,35,17,17,15,15,231,228,247,180,251,155,158,148,151,151,55,50,253,253,255,255,15,0,63,60,255,255,198,69,190,141,255,255,207,190,191,113,113,225,113,225,225,255,49,255,111,254,227,227,247,21,29,29,29,21,255,21,23,253,29,255,253,31,7,7,15,10,31,17,63,34,63,36,63,40,63,40,63,40,0,0,0,0,48,48,113,81,246,151,248,159,251,143,255,132,15,15,19,19,27,27,19,19,63,63,72,72,191,136,255,137,195,195,229,229,235,233,255,241,255,255,49,49,253,29,255,255,0,0,60,60,126,126,78,78,110,110,79,75,191,176,143,137,0,0,0,0,0,0,0,0,240,240,152,248,238,30,254,18,0,0,0,0,60,60,126,126,78,78,110,110,79,75,191,177,0,0,112,112,88,120,232,216,232,152,232,152,200,56,222,62,0,0,0,0,0,0,0,0,31,0,207,63,240,240,0,0,10,6,10,6,18,14,116,12,196,60,8,248,240,240,0,0,0,0,7,7,31,24,56,32,48,32,96,64,96,64,96,64,0,0,0,0,7,7,9,9,21,19,45,35,93,67,189,131,244,148,255,148,247,159,149,253,153,249,144,240,224,224,0,0,126,77,254,121,156,131,155,7,179,14,231,159,126,124,7,7,219,135,219,135,219,135,255,255,49,15,255,255,113,14,255,255,231,229,195,67,192,192,128,128,128,128,192,192,192,192,192,192,31,24,143,136,199,199,253,253,121,121,3,3,6,6,4,4,255,136,127,72,63,48,15,15,121,121,241,241,195,195,159,159,158,234,137,255,72,127,63,63,7,7,9,9,15,15,7,7,7,5,194,194,60,252,224,224,208,208,240,240,240,240,208,208,191,187,201,207,124,127,7,7,0,0,0,0,0,0,0,0,122,14,188,156,240,240,224,224,0,0,0,0,0,0,0,0,143,136,191,184,201,206,124,127,7,7,0,0,0,0,0,0,158,122,178,126,236,28,16,240,224,224,0,0,0,0,0,0,153,153,126,102,102,66,195,129,195,129,102,66,126,102,153,153,24,24,60,60,126,126,255,255,255,255,126,126,60,60,24,24,96,64,96,64,112,64,62,32,17,30,14,15,1,1,0,0,0,0,127,127,255,128,128,0,0,0,65,65,65,65,0,0,0,0,0,0,240,240,248,8,28,4,12,4,10,6,10,6,0,0,0,255,0,129,0,189,0,165,0,181,0,133,0,253,0,0,0,126,0,66,0,90,0,74,0,122,0,2,0,254,0,129,0,129,0,129,0,129,0,129,0,129,0,129,0,94,0,0,0,2,0,70,0,38,0,20,0,8,0,8,0,8,0,4,0,2,0,98,0,29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,24,0,24,0,9,0,9,0,6,0,8,0,16,0,44,0,71,0,192,0,128,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,20,0,20,0,42,0,38,0,85,0,73,0,81,0,99,0,85,0,1,0,3,0,5,0,9,0,17,0,33,0,65,0,94,255,255,255,255,0,255,255,255,255,255,0,255,255,255,255,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,0,0,30,0,33,0,64,0,64,0,160,0,168,0,128,0,0,0,0,0,0,0,128,0,128,0,64,0,32,0,32,0,1,0,2,0,2,0,4,0,4,0,4,0,8,0,8,0,16,0,16,0,16,0,17,0,17,0,10,0,10,0,12,0,0,0,0,0,224,0,16,0,8,0,4,0,4,0,4,0,8,0,8,0,16,0,20,0,37,0,36,0,64,0,128,0,8,0,4,0,20,0,84,0,4,0,2,0,0,0,0,0,132,0,130,0,34,0,2,0,1,0,1,0,8,0,0,0,16,0,16,0,16,0,16,0,16,0,8,0,8,0,8,0,22,0,41,0,64,4,128,93,128,62,65,12,50,0,12,0,104,0,150,0,1,132,0,213,0,255,0,52,203,0,52,0,0,0,192,0,32,128,16,128,96,0,128,0,0,0,0,0,0,0,255,0,255,255,0,0,0,255,0,0,0,255,0,0,1,0,1,0,2,0,2,0,2,0,4,0,4,0,8,0,7,0,8,0,16,0,16,0,32,0,64,0,64,0,64,0,128,0,64,0,32,0,16,0,16,0,8,0,8,0,8,0,0,0,0,0,0,0,0,0,1,0,1,0,2,0,2,0,64,0,64,0,144,0,148,0,0,0,0,0,0,0,0,0,4,0,18,0,18,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,251,253,251,253,251,253,251,253,251,253,251,253,251,253,3,0,0,0,31,0,32,0,64,0,128,64,128,64,128,32,64,0,0,0,7,0,232,0,16,0,8,0,8,0,0,0,0,0,0,0,143,0,80,0,32,0,32,0,0,0,0,0,0,0,0,0,128,0,88,0,36,0,34,0,1,0,1,2,1,32,64,48,64,16,32,28,32,7,24,0,7,0,0,0,0,0,0,8,0,8,4,118,8,227,20,0,227,0,0,0,0,0,0,16,0,48,0,105,16,223,32,0,223,0,0,0,0,2,1,134,1,172,66,176,76,0,176,0,0,0,0,0,0,0,0,16,0,16,0,254,0,124,0,56,0,124,0,198,0,255,255,0,255,255,0,0,0,255,0,0,0,255,0,0,0,0,0,255,0,0,0,255,0,0,0,255,0,0,255,255,255,0,0,0,60,0,102,0,219,0,255,0,252,0,123,0,255,6,2,8,8,54,34,222,202,62,42,14,10,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,199,239,104,255,51,252,135,248,255,0,255,0,255,131,124,243,243,255,60,255,137,254,227,60,255,0,255,2,253,143,112,126,126,255,131,255,187,255,163,255,163,255,135,255,255,126,126,224,224,252,60,254,138,127,231,29,255,1,255,3,253,143,113,255,1,254,2,254,6,252,4,252,4,254,6,255,3,255,1,15,15,63,48,127,71,249,207,240,255,128,255,128,255,199,184,255,128,255,192,127,64,127,64,127,96,63,32,63,32,127,96,126,126,187,137,187,137,255,255,183,145,183,145,183,145,255,255,126,126,143,129,191,129,191,131,255,255,126,126,0,0,0,0,127,127,192,192,191,191,191,191,191,191,191,191,128,255,255,255,254,254,3,3,253,255,253,255,253,255,253,255,3,255,255,255,127,64,127,64,255,255,255,128,255,128,255,128,255,128,255,255,230,30,230,30,255,255,199,63,199,63,199,63,199,63,255,255,127,64,127,64,127,64,63,63,127,64,127,64,127,64,127,64,230,30,230,30,230,30,252,252,230,30,230,30,230,30,230,30,255,255,255,129,199,133,223,157,223,157,255,189,255,129,255,255,240,172,230,1,192,250,210,192,254,7,56,13,240,164,230,12,32,7,240,164,230,252,224,164,201,240,164,60,224,164,6,1,205,155,30,205,150,44,33,2,194,53,126,167,32,2,54,240,14,8,205,204,80,33,2,194,52,201,240,128,203,119,32,66,203,127,32,44,240,128,203,103,32,24,203,111,200,14,250,205,204,80,33,2,194,126,254,16,216,53,250,210,192,254,7,208,53,201,14,8,205,204,80,33,2,194,126,254,160,208,52,201,205,137,80,254,255,40,205,33,1,194,126,254,148,48,197,52,24,194,205,70,80,254,255,40,187,33,1,194,126,254,48,56,179,53,24,176,33,1,194,240,153,6,253,167,40,2,6,252,42,128,224,173,240,164,70,128,198,2,224,174,205,83,1,254,96,48,12,240,174,198,250,224,174,205,83,1,254,96,216,254,244,40,3,62,255,201,229,209,33,238,255,54,192,44,114,44,115,62,5,234,224,223,201,33,1,194,42,198,10,224,173,240,164,71,126,128,198,254,224,174,205,83,1,254,96,48,19,240,174,198,4,224,174,205,83,1,254,225,202,60,27,254,96,48,1,201,254,244,32,17,229,209,33,238,255,54,192,44,114,44,115,62,5,234,224,223,201,62,255,201,17,2,5,240,153,254,2,40,3,17,1,5,33,1,194,42,130,224,173,70,121,128,71,240,164,128,224,174,213,205,83,1,209,254,96,56,16,254,244,40,18,254,225,202,60,27,254,131,202,60,27,225,201,22,253,29,32,210,201,229,209,33,238,255,54,192,44,114,44,115,62,5,234,224,223,201,6,3,33,169,255,17,1,192,42,167,32,8,28,28,28,28,5,32,245,201,229,213,197,45,26,60,60,18,224,161,224,195,254,169,56,7,175,203,131,18,119,24,19,198,2,245,29,26,224,194,198,6,224,173,241,205,201,31,56,2,24,230,193,209,225,205,1,32,24,198,250,2,194,254,1,56,3,254,240,216,175,224,153,224,181,60,224,179,60,234,232,223,62,144,224,166,201,14,19,16,16,19,16,17,13,132,18,4,132,23,11,132,26,147,16,27,5,132,28,147,16,33,9,11,37,6,11,42,15,132,45,12,132,46,19,0,47,5,132,52,19,16,55,19,16,58,19,16,61,19,16,64,19,16,65,8,4,67,19,16,71,147,16,73,147,16,76,19,164,78,19,16,81,7,0,82,7,0,87,4,0,88,4,0,89,4,0,92,147,16,94,147,16,96,147,16,98,147,16,102,147,16,104,147,16,106,147,36,108,147,144,111,78,2,113,15,132,120,7,0,121,7,0,125,11,132,125,135,132,127,4,0,128,4,128,132,19,144,135,19,36,136,8,132,139,147,36,142,15,132,144,8,10,152,8,10,153,16,132,156,5,54,156,133,54,255,12,12,22,18,12,132,22,11,0,23,7,4,29,11,4,34,7,11,35,19,164,39,7,11,42,13,4,49,9,22,54,9,4,55,14,0,58,9,128,62,9,22,65,14,0,68,9,128,70,9,4,72,9,22,75,14,0,87,143,4,88,14,132,89,12,0,91,19,36,96,143,22,101,133,10,107,10,11,112,13,4,113,19,164,115,19,36,119,75,2,120,9,132,121,139,0,122,201,2,125,5,4,127,5,132,131,19,164,135,133,54,136,3,11,136,137,54,137,141,54,255,15,5,175,25,14,47,27,83,16,35,14,157,37,11,29,39,8,157,41,5,29,45,8,47,47,83,16,57,83,16,59,5,29,62,5,157,64,13,29,67,13,157,67,19,16,73,7,29,77,19,16,78,7,47,84,8,32,87,8,29,95,9,32,105,7,32,105,13,32,115,7,47,117,19,36,120,12,29,127,19,36,133,10,32,136,12,47,137,19,164,142,15,29,146,15,157,155,13,32,156,15,157,165,7,160,168,15,29,174,11,72,175,10,200,176,12,26,255,15,204,85,17,209,2,25,81,2,26,11,214,27,15,132,28,15,86,31,137,10,36,135,11,44,15,132,45,81,73,47,15,86,55,14,132,57,142,4,58,14,86,64,14,86,65,14,4,67,142,4,74,15,86,75,81,2,77,11,86,77,15,132,81,81,130,83,81,2,84,79,2,85,205,73,91,78,2,94,10,86,94,138,4,98,77,2,99,78,201,103,14,57,107,10,56,111,207,2,113,204,85,115,204,85,117,209,2,121,207,73,123,204,85,124,15,128,125,204,85,126,15,0,127,209,2,131,207,73,133,204,85,135,204,85,136,15,132,137,209,2,138,134,12,142,141,11,146,6,56,149,133,54,150,5,54,152,5,54,152,133,54,154,6,54,154,134,54,157,6,10,161,81,130,162,81,73,163,81,130,164,79,130,165,205,201,167,137,86,174,14,86,175,14,4,177,142,4,178,14,86,180,9,10,194,209,73,196,207,73,197,138,4,198,201,73,207,5,86,207,8,86,207,14,86,212,144,54,213,16,54,215,209,73,216,207,73,217,204,73,222,136,57,255,15,11,4,17,9,137,21,15,4,25,11,4,27,15,9,31,80,73,32,15,132,35,13,4,39,11,9,41,80,73,42,15,132,45,141,191,48,11,63,52,205,85,55,9,4,55,205,85,58,204,85,62,205,85,64,80,201,65,205,85,67,80,73,68,204,85,71,9,4,72,15,0,75,12,191,77,14,9,83,15,84,84,76,2,86,7,84,89,15,84,90,15,0,93,15,84,96,7,84,99,15,84,104,12,84,106,15,4,108,13,84,112,143,212,114,142,11,118,140,11,122,15,4,124,12,84,126,15,4,128,13,84,132,143,212,134,142,11,138,140,11,139,135,212,143,15,4,145,12,63,148,138,4,149,135,84,153,15,84,156,7,84,157,141,4,159,15,84,163,15,63,165,12,4,167,141,191,168,138,4,169,135,84,177,15,203,181,76,85,183,6,58,188,6,54,191,14,54,191,139,54,192,8,54,192,134,54,255,16,6,83,17,15,211,19,8,83,20,13,83,23,10,83,25,6,83,26,15,211,28,12,83,29,9,83,35,6,83,36,8,211,37,10,83,39,14,83,40,12,211,41,10,83,43,6,83,44,5,82,46,5,210,48,5,82,52,15,82,54,15,210,56,15,82,60,5,82,61,10,210,62,15,82,66,6,82,67,13,82,76,5,83,77,139,89,78,6,211,78,12,82,80,133,89,82,15,82,82,6,83,86,6,89,87,14,83,88,143,89,90,6,82,90,14,210,92,15,83,93,9,89,95,8,83,96,13,89,99,5,83,99,10,82,101,14,83,103,9,89,104,9,83,105,14,210,107,9,89,108,8,83,113,138,89,114,7,83,115,10,82,117,12,82,118,143,89,120,8,82,122,10,83,123,14,89,125,7,83,126,13,83,128,140,89,133,5,83,135,14,83,137,14,210,142,10,82,144,7,82,147,13,83,147,6,82,207,138,84,217,135,212,219,12,84,220,13,134,224,8,6,225,8,6,236,138,97,255,255,205,86,187,90,72,96,205,86,74,87,235,87,50,93,111,88,254,88,254,88,110,89,74,87,235,87,235,87,111,88,74,87,254,88,238,89,95,90,255,205,86,187,90,72,96,163,91,34,92,166,92,50,93,138,93,50,94,50,94,50,94,68,95,68,95,50,93,173,95,166,92,95,90,255,205,86,39,99,39,99,0,97,184,97,114,98,184,97,0,97,0,97,114,98,114,98,184,97,39,99,39,99,114,98,114,98,0,97,13,100,39,99,39,99,13,101,255,129,108,129,108,219,109,211,101,161,102,191,103,130,104,191,103,28,105,28,105,191,103,226,105,211,101,130,104,161,102,161,102,161,102,130,104,130,104,226,105,28,105,160,106,81,107,28,105,81,107,27,108,255,129,108,129,108,219,109,166,110,96,111,96,111,166,110,166,110,56,112,56,112,96,111,35,113,35,113,252,113,188,114,252,113,188,114,121,115,35,113,121,115,66,116,124,117,27,108,255,129,108,129,108,219,109,79,118,79,118,79,118,79,118,210,118,210,118,210,118,79,118,79,118,79,118,210,118,210,118,79,118,90,119,90,119,189,119,233,121,26,121,26,121,233,121,178,122,95,123,14,124,1,125,255,0,0,241,93,254,241,93,254,226,96,93,254,114,57,61,226,97,93,254,84,51,54,58,62,226,97,93,254,91,52,55,65,88,89,89,89,89,89,97,93,254,84,53,56,59,63,226,97,93,254,114,60,64,226,97,93,254,226,97,93,254,226,97,93,254,226,97,93,254,226,97,93,254,196,96,90,97,93,254,193,97,226,99,93,254,193,97,241,93,254,133,96,90,90,90,97,241,93,254,129,97,196,99,49,49,93,254,129,97,241,93,254,129,97,241,93,254,136,99,49,49,49,49,49,49,93,254,106,96,90,90,90,90,90,90,90,90,93,254,97,97,241,93,254,33,129,97,97,241,93,254,33,130,97,97,226,96,93,254,33,129,97,97,226,97,93,254,106,99,49,49,49,49,49,49,49,97,93,254,226,97,93,254,226,97,93,254,226,97,93,254,166,96,90,90,90,97,93,254,161,97,226,99,93,254,106,96,90,90,90,99,49,49,49,49,93,254,61,96,90,90,99,49,49,49,49,49,49,49,49,93,254,34,244,97,241,93,254,49,97,129,95,196,96,90,90,93,254,34,244,97,193,97,241,93,254,49,97,196,99,49,49,93,254,34,244,97,241,93,254,61,99,49,49,49,49,49,49,49,49,49,49,49,93,254,241,93,254,241,93,254,196,96,90,90,93,254,193,97,241,93,254,196,99,49,49,93,254,241,93,254,241,93,254,166,96,90,90,90,90,93,254,161,97,241,93,254,166,99,49,49,49,49,93,254,241,93,254,121,96,90,90,90,90,90,90,90,93,254,113,97,241,93,254,121,99,49,49,49,49,49,49,49,93,254,241,93,254,76,96,90,90,90,90,90,90,90,90,90,90,93,254,65,97,241,93,254,76,99,49,49,49,49,96,90,90,90,90,90,93,254,145,97,241,93,254,145,97,241,93,254,151,99,49,49,49,49,49,93,254,226,96,93,254,226,97,93,254,181,112,114,114,97,93,254,181,113,115,115,97,93,254,226,97,93,254,226,97,93,254,226,97,93,254,181,96,90,90,97,93,254,177,97,226,97,93,254,49,129,117,96,90,90,90,97,226,97,93,254,117,99,49,49,49,97,226,99,93,254,177,97,241,93,254,72,96,90,90,90,90,90,90,97,241,93,254,50,244,97,177,97,241,93,254,50,244,97,136,244,96,90,99,49,49,49,93,254,70,99,49,49,49,49,97,241,93,254,130,244,97,241,93,254,145,97,241,93,254,130,244,97,241,93,254,151,99,49,49,49,49,49,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,81,244,113,100,241,93,254,81,244,113,100,241,93,254,81,244,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,81,244,113,100,241,93,254,81,244,113,100,241,93,254,81,244,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,113,100,241,93,254,49,244,241,93,254,49,244,241,93,254,241,93,254,121,96,90,90,90,90,90,90,90,93,254,121,99,49,49,49,49,49,49,49,93,254,177,127,241,93,254,177,127,241,93,254,181,96,90,90,90,93,254,181,99,49,49,49,93,254,241,93,254,241,93,254,151,96,90,90,90,90,90,93,254,151,99,49,49,49,49,49,93,254,145,127,241,93,254,145,127,241,93,254,145,127,241,93,254,145,127,241,93,254,145,127,241,93,254,145,127,241,93,254,145,127,241,93,254,136,96,90,90,90,90,90,90,93,254,136,99,49,49,49,49,49,49,93,254,49,69,241,93,254,34,66,70,241,93,254,34,67,71,226,100,93,254,34,68,72,226,100,93,254,226,100,93,254,226,100,93,254,241,93,254,241,93,254,34,129,130,241,93,254,241,93,254,241,93,254,49,130,177,127,241,93,254,53,130,244,244,244,130,241,93,254,68,244,244,244,130,241,93,254,53,130,244,244,244,130,241,93,254,17,69,53,253,130,241,93,254,2,66,70,241,93,254,2,67,71,241,93,254,2,68,72,241,93,254,241,93,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,33,142,241,143,254,0,19,36,143,142,142,142,142,142,142,142,142,142,142,19,36,142,254,0,33,86,142,143,143,143,143,143,143,143,143,143,143,33,86,143,254,0,253,127,254,161,95,241,127,254,241,127,254,241,127,254,5,253,127,241,127,254,5,127,244,244,244,127,241,127,254,5,127,244,244,244,127,226,253,127,254,5,127,244,244,244,127,161,130,226,253,127,254,5,127,244,244,244,130,113,130,161,127,226,253,127,254,6,127,244,244,244,127,127,145,128,226,253,127,254,6,127,244,244,244,244,127,151,253,127,254,6,127,244,244,244,244,127,166,244,244,244,127,127,127,254,6,127,244,244,244,244,127,151,127,244,244,244,244,244,127,254,6,127,244,244,244,244,127,151,127,244,244,244,244,244,127,254,8,127,244,244,244,244,127,127,127,151,130,130,130,244,244,244,127,254,6,127,244,244,244,244,127,181,130,244,244,244,127,254,6,127,244,244,244,244,127,181,127,244,244,244,127,254,6,127,244,244,127,127,127,151,116,119,127,244,244,244,127,254,5,127,244,244,244,244,151,117,120,127,244,244,244,127,254,0,114,114,114,114,114,114,114,114,114,118,121,127,127,127,127,127,254,241,93,254,241,93,254,226,101,93,254,66,57,61,226,102,93,254,36,51,54,58,62,226,101,93,254,46,52,55,65,88,89,89,89,89,89,89,89,89,102,93,254,36,53,56,59,63,226,101,93,254,66,60,64,226,102,93,254,226,101,93,254,226,102,93,254,226,101,93,254,226,102,93,254,226,101,93,254,33,69,226,102,93,254,18,66,70,226,101,93,254,18,67,71,226,102,93,254,18,68,72,181,103,105,103,105,93,254,181,104,106,104,106,93,254,178,103,105,241,93,254,178,104,106,241,93,254,178,103,105,241,93,254,178,104,106,241,93,254,178,103,105,241,93,254,49,69,178,104,106,241,93,254,34,66,70,178,103,105,241,93,254,34,67,71,178,104,106,241,93,254,34,68,72,241,93,254,177,127,241,93,254,241,93,254,177,127,241,93,254,241,93,254,177,127,241,93,254,17,69,241,93,254,2,66,70,178,103,105,241,93,254,2,67,71,178,104,106,241,93,254,2,66,70,178,103,105,241,93,254,2,67,71,97,129,178,104,106,241,93,254,2,68,72,178,103,105,241,93,254,178,104,106,241,93,254,241,93,254,132,103,105,103,105,241,93,254,132,104,106,104,106,241,93,254,162,103,105,241,93,254,97,129,162,104,106,226,127,93,254,162,103,105,226,127,93,254,17,244,102,112,114,114,114,104,106,226,127,93,254,17,244,102,113,115,115,115,103,105,226,127,93,254,162,104,106,226,127,93,254,226,127,93,254,226,127,93,254,66,103,105,241,93,254,66,104,106,241,93,254,241,93,254,130,103,105,241,93,254,132,104,106,103,105,241,93,254,162,104,106,241,93,254,162,103,105,241,93,254,162,104,106,241,93,254,162,103,105,241,93,254,97,129,162,104,106,241,93,254,241,93,254,241,93,254,17,69,241,93,254,2,66,70,241,93,254,2,67,71,241,93,254,2,66,70,241,93,254,2,67,71,241,93,254,2,68,72,241,93,254,241,93,254,241,93,254,241,93,254,241,93,254,241,93,254,33,69,241,93,254,18,66,70,241,93,254,18,67,71,241,93,254,18,68,72,241,93,254,241,93,254,241,93,254,241,93,254,241,93,254,241,93,254,211,112,114,93,254,211,113,115,93,254,8,253,244,226,101,93,254,226,102,93,254,241,93,254,241,93,254,17,69,226,98,93,254,2,66,70,193,127,226,98,93,254,2,67,71,193,127,226,98,93,254,2,68,72,163,103,105,127,226,98,93,254,133,103,105,104,106,127,226,98,93,254,130,104,106,226,98,93,254,2,103,105,130,103,105,226,98,93,254,0,104,106,90,90,90,90,90,90,104,106,90,90,90,127,90,93,254,0,103,105,49,49,49,49,49,49,103,105,49,49,49,127,49,93,254,2,104,106,130,104,106,209,127,241,93,254,2,103,105,132,103,105,103,105,209,127,241,93,254,2,104,106,132,104,106,104,106,209,127,241,93,254,2,103,105,65,130,132,103,105,103,105,226,127,93,254,2,104,106,65,130,132,104,106,104,106,226,127,93,254,2,103,105,65,130,130,103,105,226,127,93,254,2,104,106,65,130,130,104,106,194,244,127,241,93,254,2,103,105,65,130,130,103,105,194,244,127,241,93,254,2,104,106,65,130,130,104,106,194,244,127,241,93,254,2,103,105,65,130,130,103,105,194,244,127,241,93,254,2,104,106,65,130,130,104,106,194,244,127,241,93,254,2,103,105,65,130,134,103,105,103,105,244,127,241,93,254,2,104,106,65,130,134,104,106,104,106,244,127,241,93,254,2,103,105,65,130,129,130,226,127,93,254,2,104,106,65,130,129,130,177,128,226,127,93,254,2,103,105,65,130,133,103,105,103,105,127,226,127,93,254,2,104,106,65,130,133,104,106,104,106,127,226,127,93,254,2,103,105,65,130,130,103,105,226,127,93,254,2,104,106,65,128,130,104,106,226,127,93,254,0,103,105,90,90,90,90,90,90,103,105,90,90,90,90,127,93,254,0,104,106,49,49,49,49,49,49,104,106,49,49,49,49,127,93,254,2,103,105,129,130,177,127,226,127,93,254,2,104,106,129,130,226,127,93,254,209,127,241,93,254,209,127,241,93,254,241,93,254,241,93,254,33,69,226,101,93,254,18,66,70,226,102,93,254,18,67,71,226,101,93,254,18,66,70,226,102,93,254,18,67,71,226,101,93,254,18,68,72,226,102,93,254,226,101,93,254,226,102,93,254,226,101,93,254,226,102,93,254,226,101,93,254,226,102,93,254,211,103,105,93,254,211,104,106,93,254,181,103,105,103,105,93,254,181,104,106,104,106,93,254,181,103,105,103,105,93,254,181,104,106,104,106,93,254,193,127,241,93,254,193,127,241,93,254,17,69,129,129,193,127,241,93,254,2,66,70,65,129,129,129,193,127,241,93,254,2,67,71,129,129,193,127,241,93,254,2,66,70,193,127,241,93,254,2,67,71,178,103,105,241,93,254,2,68,72,178,104,106,241,93,254,241,93,254,241,93,254,151,103,105,103,105,103,105,93,254,151,104,106,104,106,104,106,93,254,104,103,105,103,105,103,105,103,105,241,93,254,104,104,106,104,106,104,106,104,106,241,93,254,241,93,254,241,93,254,134,112,114,114,114,103,105,241,93,254,134,113,115,115,115,104,106,241,93,254,0,253,127,254,241,127,254,226,244,127,254,8,253,127,241,127,254,1,127,177,95,226,244,127,254,1,127,113,127,241,127,254,1,127,34,244,127,98,244,127,226,244,127,254,1,127,49,127,113,127,241,127,254,1,127,34,244,127,97,244,226,244,127,254,1,127,49,127,113,127,241,127,254,1,127,34,244,127,97,244,226,244,127,254,1,127,49,127,113,127,241,127,254,1,127,34,244,127,97,244,226,244,127,254,1,127,49,127,113,127,241,127,254,1,127,34,244,127,97,244,226,244,127,254,1,127,49,127,113,127,241,127,254,4,127,116,119,128,98,244,127,226,244,127,254,4,127,117,120,130,113,127,241,127,254,4,114,118,121,127,177,95,226,244,127,254,0,115,115,115,127,127,127,127,127,127,127,127,127,127,127,127,127,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,161,73,196,91,92,108,110,254,3,93,74,94,113,87,226,109,110,254,3,93,74,94,193,73,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,145,87,226,108,110,254,3,93,74,94,81,87,181,73,76,80,109,110,254,3,93,74,94,129,87,181,84,77,81,108,110,254,3,93,74,94,181,85,78,82,109,110,254,3,93,74,94,196,79,83,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,254,3,93,74,94,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,70,253,244,226,108,110,254,3,93,74,94,81,244,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,113,87,177,73,226,108,110,254,3,93,74,94,161,87,196,91,92,109,110,254,3,93,74,94,65,244,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,65,244,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,196,130,130,109,110,254,3,93,74,94,196,128,130,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,193,244,226,109,110,254,3,93,74,94,66,253,130,226,108,110,254,3,93,74,94,66,128,130,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,193,244,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,196,76,80,108,110,254,3,93,74,94,181,84,77,81,109,110,254,3,93,74,94,145,87,181,85,78,82,108,110,254,3,93,74,94,181,73,79,83,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,145,108,226,108,110,254,3,93,74,94,145,109,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,3,93,74,94,254,3,93,74,94,145,87,254,3,93,74,94,113,108,177,73,226,108,110,254,3,93,74,94,113,109,196,91,92,109,110,254,3,93,74,94,226,108,110,254,3,93,74,94,226,109,110,254,9,93,74,108,108,130,130,130,130,130,166,130,130,130,130,108,110,254,9,93,74,109,109,130,130,130,130,130,166,130,130,130,130,109,110,254,9,93,74,108,108,130,130,130,130,130,166,128,130,130,130,108,110,254,4,93,74,109,109,226,109,110,254,3,93,74,108,226,108,110,254,3,93,74,109,161,244,226,109,110,254,3,93,74,108,161,244,226,108,110,254,3,93,74,109,226,109,110,254,3,93,74,108,226,108,110,254,3,93,74,109,226,109,110,254,3,93,74,108,81,244,226,108,110,254,3,93,74,109,81,244,226,109,110,254,3,93,74,108,226,108,110,254,3,93,74,109,226,109,110,254,4,93,74,108,108,226,108,110,254,7,93,74,109,109,130,130,130,136,130,130,130,130,130,130,109,110,254,7,93,74,108,108,130,130,130,136,130,130,130,130,130,130,108,110,254,7,93,74,109,109,130,130,130,136,128,130,130,130,130,130,109,110,254,3,93,74,108,226,108,110,254,3,93,74,109,226,109,110,254,3,93,74,94,97,244,196,76,80,108,110,254,3,93,74,94,81,244,181,84,77,81,109,110,254,3,93,74,94,70,253,244,181,85,78,82,108,110,254,3,93,74,94,196,79,83,109,110,254,3,93,74,94,85,253,244,226,108,110,254,3,93,74,94,65,244,113,244,196,76,80,109,110,254,3,93,74,94,65,244,113,244,181,84,77,81,108,110,254,3,93,74,94,85,253,244,181,85,78,82,109,110,254,3,93,74,94,196,79,83,108,110,254,3,93,74,94,70,253,244,226,109,110,254,3,93,74,94,65,244,97,244,196,76,80,108,110,254,3,93,74,94,65,244,98,253,244,181,84,77,81,109,110,254,3,93,74,94,82,253,244,130,253,244,181,85,78,82,108,110,254,3,93,74,94,196,79,83,109,110,254,3,93,74,94,70,253,244,226,108,110,254,3,93,74,94,196,76,80,109,110,254,3,93,74,94,84,253,244,181,84,77,81,108,110,254,3,93,74,94,65,244,145,244,181,85,78,82,109,110,254,3,93,74,94,65,244,145,244,196,79,83,108,110,254,3,93,74,94,84,253,244,226,109,110,254,13,93,108,95,95,95,95,95,95,95,95,95,95,95,226,108,110,254,2,93,109,226,109,110,254,2,93,108,226,108,110,254,2,93,109,226,109,110,254,2,93,108,226,108,110,254,2,93,109,226,109,110,254,2,93,108,226,108,110,254,2,93,109,226,109,110,254,2,93,108,226,108,110,254,2,93,109,226,109,110,254,3,93,108,108,211,108,108,110,254,3,93,109,109,211,109,109,110,254,3,93,108,108,241,110,254,3,93,109,109,241,110,254,0,93,108,108,108,127,127,127,127,127,127,127,127,127,130,130,110,254,4,93,109,109,109,211,130,130,110,254,4,93,108,108,108,211,130,130,110,254,4,93,109,109,109,151,225,127,127,127,127,127,110,254,0,93,108,108,108,127,127,236,236,236,236,127,127,127,127,127,110,254,6,93,109,109,109,127,127,166,127,127,127,127,127,110,254,2,49,128,226,101,102,254,2,50,130,226,97,232,254,2,49,130,181,112,114,114,97,232,254,2,50,130,181,113,115,115,97,232,254,2,49,130,50,52,53,226,96,232,254,0,50,130,51,51,51,51,51,51,51,51,51,51,51,51,97,232,254,2,49,130,82,54,55,196,56,57,97,232,254,2,50,130,226,97,232,254,2,49,130,145,129,226,96,232,254,2,50,127,145,129,226,96,232,254,2,49,127,145,129,226,97,232,254,2,50,127,226,97,232,254,2,49,127,76,58,51,51,51,51,51,51,51,51,51,97,232,254,2,50,127,98,54,55,226,97,232,254,2,49,127,196,112,114,96,232,254,2,50,127,196,113,115,97,232,254,2,49,127,97,128,166,112,114,114,114,96,232,254,2,50,127,97,130,166,113,115,115,115,97,232,254,2,49,127,181,112,114,114,96,232,254,2,50,127,181,113,115,115,99,100,254,4,49,127,127,127,82,52,53,226,101,102,254,0,50,127,127,127,51,51,51,51,51,51,51,51,51,51,97,232,254,4,49,127,127,127,81,55,226,99,100,254,4,50,127,127,127,196,112,114,114,114,254,4,49,127,127,127,196,113,115,115,115,254,4,50,127,127,127,226,101,102,254,8,49,127,127,127,127,127,127,127,226,97,232,254,12,50,127,127,127,127,127,127,109,109,109,109,107,226,97,232,254,12,49,127,127,127,127,127,127,110,110,110,110,108,226,96,232,254,8,50,127,127,127,127,127,127,127,226,96,232,254,8,49,127,127,127,127,127,127,127,226,97,232,254,12,50,127,127,127,127,127,127,109,109,109,109,107,226,97,232,254,12,49,127,127,127,127,127,127,110,110,110,110,108,226,97,232,254,11,50,127,127,127,127,127,127,127,127,127,130,226,97,232,254,11,49,127,127,127,127,127,127,127,127,127,130,226,99,100,254,11,50,127,127,127,127,127,127,127,127,127,130,226,112,114,254,11,49,127,127,127,127,127,127,127,127,127,130,226,113,115,254,4,50,127,127,127,81,53,161,128,226,101,102,254,0,49,127,127,127,51,51,51,51,51,51,51,51,51,51,97,232,254,4,50,127,127,127,82,54,55,226,99,100,254,2,49,73,254,2,50,73,254,2,49,73,226,101,102,254,2,50,73,49,53,114,52,53,226,97,232,254,0,49,73,51,51,51,51,51,51,51,51,51,51,51,51,96,232,254,2,50,73,81,55,196,56,57,97,232,254,2,49,73,161,129,226,96,232,254,2,50,73,161,129,226,97,232,254,2,49,73,193,53,226,96,232,254,2,50,73,61,58,51,51,51,51,51,51,51,51,51,51,99,100,254,2,49,73,98,54,55,226,112,114,254,2,50,73,226,113,115,254,2,49,73,226,101,102,254,2,50,73,226,97,232,254,2,49,73,161,129,226,96,232,254,2,50,73,161,129,226,97,232,254,2,49,73,65,53,196,56,57,96,232,254,0,50,73,51,51,51,51,51,51,51,51,51,51,51,51,96,232,254,4,49,73,54,55,226,97,232,254,2,50,73,226,99,100,254,2,49,73,254,2,50,73,49,70,178,52,53,254,2,49,73,49,71,181,58,51,51,51,51,254,2,50,73,49,72,225,55,254,2,49,73,254,2,50,73,254,2,49,73,65,53,130,52,53,254,0,50,73,51,51,51,51,51,51,51,51,51,51,51,51,51,51,254,2,49,73,97,55,146,54,55,254,2,50,73,162,63,66,254,2,49,73,145,61,254,2,50,73,147,62,64,67,254,2,49,73,147,70,65,68,254,2,50,73,145,71,254,2,49,73,145,72,254,2,50,73,254,2,49,73,254,2,50,73,178,52,53,254,2,49,73,106,58,51,51,51,51,51,51,51,51,51,254,2,50,73,129,55,254,2,49,73,254,2,50,73,254,2,49,73,226,101,102,254,2,50,73,196,56,57,97,232,254,4,49,73,52,53,97,53,226,96,232,254,0,50,73,51,51,51,51,51,51,51,51,51,51,51,51,97,232,254,2,49,73,49,55,226,96,232,254,2,50,73,226,97,232,254,2,49,73,145,130,211,127,96,232,254,2,50,73,81,129,145,130,211,127,97,232,254,2,49,73,145,130,211,127,96,232,254,2,50,73,211,127,97,232,254,2,49,73,121,58,51,51,51,51,51,127,96,232,254,2,50,73,130,54,55,211,127,97,232,254,2,49,73,81,53,211,127,96,232,254,2,50,73,61,58,51,51,51,51,51,51,51,51,51,127,97,232,254,2,49,73,65,55,181,56,57,127,96,232,254,2,50,73,211,127,96,232,254,2,49,73,211,127,96,232,254,2,50,73,211,127,99,100,254,2,49,73,254,2,50,73,254,2,49,73,146,63,66,226,112,114,254,2,50,73,114,70,61,226,113,115,254,2,49,73,116,71,62,64,67,226,112,114,254,2,50,73,113,72,146,65,68,226,113,115,254,2,49,73,130,63,66,226,112,114,254,2,50,73,113,61,226,113,115,254,2,49,73,100,70,62,69,67,196,112,114,114,114,254,2,50,73,97,71,196,113,115,115,115,254,2,49,73,97,72,254,2,50,73,166,112,114,114,114,114,114,254,2,49,73,166,113,115,115,115,115,115,254,2,50,73,166,112,114,114,114,114,114,254,2,49,73,166,113,115,115,115,115,115,254,2,50,73,136,112,114,114,114,114,114,114,114,254,2,49,73,136,113,115,115,115,115,115,115,115,254,2,50,73,254,2,49,73,226,112,114,254,2,50,73,226,113,115,254,2,49,73,254,2,50,73,254,2,49,73,254,3,50,73,95,65,244,97,244,129,244,161,244,193,244,254,6,49,73,127,127,127,127,165,253,127,254,2,50,73,81,127,161,127,254,6,49,73,244,244,244,127,161,127,254,6,50,73,244,244,244,127,161,127,254,6,49,73,244,244,244,127,161,127,254,6,50,73,244,244,244,127,161,127,254,6,49,73,244,244,244,127,161,127,210,63,66,254,2,50,73,161,127,193,61,254,2,49,73,195,62,64,67,254,2,50,73,129,127,195,70,65,68,254,2,49,73,129,127,193,71,254,2,50,73,129,127,178,63,72,254,2,49,73,129,127,161,61,254,2,50,73,129,127,164,62,69,68,70,254,2,49,73,129,127,209,71,254,2,50,73,129,127,209,72,254,2,49,73,254,2,50,73,65,53,130,52,53,254,0,49,73,51,51,51,51,51,51,51,51,51,51,51,51,51,51,254,4,50,73,54,55,113,55,254,2,49,73,226,253,127,254,2,50,73,151,58,51,51,51,51,127,127,254,2,49,73,177,55,226,253,127,254,2,50,73,226,112,114,254,2,49,73,146,63,66,226,113,115,254,2,50,73,129,61,226,112,114,254,2,49,73,131,62,64,67,226,113,115,254,2,50,73,131,70,65,68,226,112,114,254,2,49,73,129,71,226,113,115,254,2,50,73,129,72,196,112,114,114,114,254,2,49,73,196,113,115,115,115,254,2,50,73,151,112,114,114,114,114,114,114,254,2,49,73,151,113,115,115,115,115,115,115,254,2,50,73,106,112,114,114,114,114,114,114,114,114,114,254,2,49,73,106,113,115,115,115,115,115,115,115,115,115,254,2,50,73,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,33,127,241,143,254,241,142,254,33,127,241,143,254,241,142,254,33,127,241,143,254,241,142,254,33,127,241,143,254,241,142,254,33,127,241,143,254,241,142,254,33,142,241,143,254,0,19,36,143,142,142,142,142,142,142,142,142,142,142,19,36,142,254,0,33,81,142,143,143,143,143,143,143,143,143,143,143,33,81,143,254,0,253,127,254,0,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,244,244,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,116,119,127,254,0,127,244,244,244,244,244,244,244,244,244,244,244,244,117,120,127,254,0,114,114,114,114,114,114,114,114,114,114,114,114,114,118,121,127,254,0,253,127,254,241,127,254,241,127,254,1,127,241,127,254,1,127,133,253,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,1,127,133,244,244,244,244,127,241,127,254,13,127,127,127,127,127,127,127,127,244,244,244,244,127,241,127,254,1,127,118,127,244,244,244,244,127,241,127,254,1,127,118,127,244,244,244,244,127,241,127,254,1,127,49,127,118,127,244,244,244,244,127,241,127,254,1,127,49,127,118,253,127,241,127,254,4,127,116,119,127,113,127,241,127,254,4,127,117,120,127,177,127,241,127,254,0,114,118,121,127,127,127,127,127,127,127,127,127,127,127,127,127,254,2,49,73,194,63,66,241,93,254,2,50,73,129,70,177,61,241,93,254,2,49,73,129,71,181,62,64,112,114,103,254,2,50,73,131,72,63,66,196,65,113,115,103,254,2,49,73,129,61,193,74,226,253,103,254,2,50,73,130,62,69,177,61,226,253,103,254,2,49,73,178,62,69,226,253,103,254,2,50,73,226,253,103,254,2,49,73,241,93,254,2,50,73,241,93,254,2,49,73,193,104,241,93,254,2,50,73,193,104,241,93,254,2,49,73,196,104,74,66,93,254,2,50,73,178,63,66,241,93,254,2,49,73,161,61,241,93,254,2,50,73,164,62,69,67,74,241,93,254,2,49,73,161,104,193,61,241,93,254,2,50,73,161,104,194,62,69,241,93,254,2,49,73,161,104,241,93,254,2,50,73,161,104,241,93,254,2,49,73,226,253,103,254,2,50,73,49,70,129,103,196,63,66,103,103,254,2,49,73,49,71,129,103,177,61,226,253,103,254,2,50,73,49,72,129,103,181,62,64,66,103,103,254,2,49,73,129,103,181,70,65,67,103,103,254,2,50,73,129,103,177,71,226,253,103,254,2,49,73,177,72,226,253,103,254,2,50,73,211,77,103,103,254,2,49,73,181,103,75,78,103,103,254,2,50,73,113,129,181,103,76,79,103,103,254,2,49,73,113,129,177,103,226,253,103,254,2,50,73,177,103,226,253,103,254,2,49,73,162,63,66,226,253,103,254,2,50,73,130,103,61,211,63,103,103,254,2,49,73,133,103,62,69,67,61,226,253,103,254,2,50,73,129,103,196,62,64,103,103,254,2,49,73,81,70,129,103,181,63,66,65,103,103,254,2,50,73,81,71,161,61,226,253,103,254,2,49,73,81,72,162,62,69,241,93,254,2,50,73,241,93,254,2,49,103,166,253,103,254,8,50,103,103,103,130,130,130,130,166,253,103,254,2,49,103,113,103,241,103,254,2,50,103,113,103,241,103,254,2,49,103,114,253,103,241,103,254,2,50,103,65,130,118,244,103,109,109,109,107,241,103,254,2,49,103,65,129,133,103,110,110,110,108,241,103,254,2,50,103,65,128,114,244,103,241,103,254,2,49,103,65,129,129,103,211,112,114,103,254,2,50,103,65,130,114,244,103,211,113,115,103,254,2,49,103,65,129,129,103,241,103,254,2,50,103,65,128,118,244,103,109,109,109,107,241,103,254,2,49,103,65,129,133,103,110,110,110,108,241,103,254,2,50,103,65,130,114,244,103,241,103,254,2,49,103,65,129,129,103,211,112,109,103,254,2,50,103,65,130,114,244,103,211,113,110,103,254,2,49,103,65,129,129,103,226,253,103,254,2,50,103,65,130,117,103,103,109,109,107,226,253,103,254,2,49,103,65,129,117,103,103,110,110,108,226,253,103,254,2,50,103,65,130,226,253,103,254,5,49,127,105,127,105,226,105,127,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,211,111,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,196,112,114,105,106,254,5,50,105,106,105,106,196,113,115,106,105,254,5,49,106,105,106,105,151,112,114,114,114,114,105,106,254,6,50,105,106,105,106,111,151,113,115,115,115,115,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,211,111,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,127,106,127,106,226,106,127,254,5,49,127,105,127,105,241,93,254,5,50,105,106,105,106,241,93,254,4,49,106,105,106,226,105,93,254,4,50,105,106,105,226,106,105,254,4,49,106,105,106,226,105,106,254,4,50,105,106,105,161,129,226,106,105,254,4,49,106,105,106,226,105,106,254,4,50,105,106,105,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,4,49,106,105,106,226,105,106,254,4,50,105,106,105,177,111,226,106,105,254,4,49,106,105,106,226,105,106,254,4,50,105,106,105,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,105,106,105,106,226,106,105,254,5,49,106,105,106,105,226,105,106,254,5,50,127,106,127,106,226,106,127,254,5,49,127,105,127,105,209,127,241,93,254,5,50,105,106,105,106,209,127,241,93,254,5,49,106,105,106,105,209,111,241,93,254,5,50,105,106,105,106,209,127,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,6,49,106,105,106,105,111,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,127,106,127,106,241,93,254,5,49,127,105,127,105,113,95,196,253,105,254,5,50,105,106,105,106,196,253,106,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,226,253,105,254,5,50,105,106,105,106,226,253,106,254,5,49,106,105,106,105,226,253,105,254,5,50,105,106,105,106,226,253,106,254,5,49,106,105,106,105,226,253,105,254,5,50,105,106,105,106,226,253,106,254,5,49,106,105,106,105,113,244,181,253,105,254,5,50,105,106,105,106,113,244,181,253,106,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,241,93,254,5,49,106,105,106,105,241,93,254,5,50,105,106,105,106,196,253,105,254,6,49,106,105,106,105,111,196,253,106,254,5,50,105,106,105,106,151,253,105,254,5,49,106,105,106,105,151,253,106,254,5,50,127,106,127,106,241,93,254,11,49,127,105,127,105,127,105,127,105,127,105,226,253,105,254,11,50,105,106,105,106,105,106,105,106,105,106,226,253,106,254,11,49,106,105,106,105,106,105,106,105,106,105,226,253,105,254,11,50,105,106,105,106,105,106,105,106,105,106,226,253,106,254,11,49,106,105,106,105,106,105,106,105,106,105,226,253,105,254,11,50,105,106,105,106,105,106,105,106,105,106,226,253,106,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,127,93,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,127,93,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,127,93,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,127,93,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,127,93,254,11,49,106,105,106,105,106,105,106,105,106,105,241,93,254,11,50,105,106,105,106,105,106,105,106,105,106,226,105,93,254,11,49,106,105,106,105,106,105,106,105,106,105,226,106,105,254,11,50,127,106,127,106,127,106,127,106,127,106,226,105,106,254,11,49,127,105,127,105,127,105,127,105,127,105,226,106,105,254,11,50,105,106,105,106,105,106,105,106,105,106,226,105,106,254,12,49,106,105,106,105,106,105,106,105,106,109,107,226,106,105,254,12,50,105,106,105,106,105,106,105,106,105,110,108,226,105,106,254,11,49,106,127,106,127,106,127,106,127,106,127,226,106,105,254,2,50,105,226,127,106,254,2,49,106,241,93,254,2,50,105,241,93,254,2,49,106,65,105,241,93,254,2,50,105,65,106,241,93,254,2,49,106,65,105,241,93,254,2,50,105,65,106,241,93,254,2,49,106,65,105,241,93,254,2,50,105,65,106,241,93,254,2,49,106,65,105,241,93,254,2,50,105,76,106,127,127,127,127,127,127,127,127,127,127,127,254,2,49,106,254,11,50,105,105,105,105,105,105,105,105,105,105,254,11,49,106,106,106,106,106,106,106,106,106,106,241,105,254,1,50,241,106,254,2,82,86,241,82,254,2,83,87,241,83,254,3,84,82,86,211,82,86,84,254,3,85,83,87,211,83,87,85,254,18,85,89,66,82,86,210,84,88,254,2,82,86,66,85,89,211,85,89,82,254,2,83,87,241,83,254,2,84,88,241,84,254,2,85,89,226,82,85,254,226,83,87,254,18,82,86,226,85,89,254,18,84,88,254,3,82,85,89,194,82,86,254,2,83,87,194,85,89,254,2,84,88,49,128,241,82,254,2,85,89,241,83,254,18,82,86,241,84,254,18,84,88,241,85,254,18,85,89,254,254,254,18,82,86,254,18,84,87,130,128,130,241,82,254,3,82,85,89,65,244,241,84,254,2,83,87,241,85,254,2,84,88,65,244,194,82,86,254,2,85,89,196,85,89,82,86,254,226,83,87,254,18,82,86,226,84,88,254,18,85,89,177,244,226,85,89,254,50,130,128,254,177,244,226,82,86,254,2,82,86,226,83,87,254,2,83,87,226,85,82,254,3,85,82,86,241,83,254,18,83,87,178,253,130,241,84,254,18,84,88,66,82,86,241,85,254,18,85,89,66,85,89,226,82,86,254,129,244,226,84,87,254,226,85,89,254,5,253,111,181,253,111,254,177,111,254,2,82,86,177,111,254,2,83,87,177,111,241,82,254,3,84,88,86,177,111,241,83,254,3,85,89,87,177,111,241,84,254,18,85,89,102,253,111,241,85,254,254,254,254,226,82,86,254,2,82,86,226,85,89,254,2,83,87,254,8,253,111,254,2,85,89,254,226,82,86,254,211,82,83,87,254,211,83,85,89,254,210,84,88,254,210,85,89,254,7,253,111,166,253,111,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,3,59,91,111,65,244,97,244,129,244,161,244,193,244,226,111,59,254,4,59,91,111,244,81,244,113,244,145,244,177,244,211,244,111,59,254,0,59,91,111,111,111,111,111,111,111,111,111,111,130,130,111,59,254,3,59,91,86,177,111,226,111,59,254,3,59,91,87,177,111,226,111,59,254,3,59,91,89,65,90,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,145,90,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,9,253,111,177,111,226,111,59,254,2,111,91,129,111,177,111,226,111,59,254,2,111,91,132,253,111,226,111,59,254,2,111,91,51,253,111,226,111,59,254,2,111,91,49,111,81,111,226,111,59,254,2,111,91,49,111,91,111,111,111,111,111,111,111,111,111,111,59,254,2,111,91,49,111,226,92,59,254,2,111,91,61,111,111,111,111,111,111,111,111,111,111,111,111,59,254,2,111,91,226,111,59,254,2,111,91,226,111,59,254,12,253,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,129,90,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,81,90,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,3,59,91,86,177,111,226,111,59,254,3,59,91,87,177,111,226,111,59,254,3,59,91,88,145,90,177,111,226,111,59,254,3,59,91,89,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,82,82,86,177,111,226,111,59,254,2,59,91,82,83,87,177,111,226,111,59,254,2,59,91,49,90,82,85,89,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,113,90,177,111,226,111,59,254,2,59,91,177,111,226,111,59,254,2,59,91,162,94,111,226,111,59,254,2,59,91,147,94,111,111,226,111,59,254,2,59,91,49,90,131,94,111,111,226,111,59,254,2,59,91,115,94,111,111,226,111,59,254,2,59,91,99,94,111,111,226,111,59,254,2,59,91,83,94,111,111,226,111,59,254,2,59,91,67,94,111,111,226,111,59,254,2,59,91,51,94,111,111,226,111,59,254,5,59,91,94,111,111,226,111,59,254,4,59,91,111,111,226,253,111,254,3,59,111,111,226,105,111,254,2,253,111,226,106,111,254,1,111,129,111,226,105,111,254,1,111,226,106,111,254,1,111,226,105,111,254,1,111,226,106,111,254,1,111,226,105,111,254,1,111,226,106,111,254,1,111,226,105,111,254,1,111,226,106,111,254,6,111,105,105,105,105,105,181,105,105,105,105,111,254,0,111,106,106,106,106,106,128,130,130,130,130,106,106,106,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,100,253,221,226,105,111,254,2,111,106,76,128,130,222,222,222,222,130,130,130,130,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,81,111,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,161,111,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,12,111,105,109,109,109,109,109,109,109,109,109,107,226,105,111,254,12,111,106,110,110,110,110,110,110,110,110,110,108,226,106,111,254,2,111,105,115,253,244,226,105,111,254,2,111,106,115,253,244,226,106,111,254,2,111,105,115,253,244,226,105,111,254,2,111,106,115,253,244,226,106,111,254,2,111,105,115,253,244,226,105,111,254,2,111,106,115,253,244,226,106,111,254,7,111,105,109,109,109,109,107,166,105,105,105,105,105,111,254,7,111,106,110,110,110,110,108,166,106,106,106,106,106,111,254,7,111,105,109,109,109,109,107,166,105,105,105,105,105,111,254,7,111,106,110,110,110,110,108,166,106,106,106,106,106,111,254,7,111,105,105,105,105,105,105,166,105,105,105,105,105,111,254,7,111,106,106,106,106,106,106,166,106,106,106,106,106,111,254,0,111,105,111,111,111,111,111,130,130,130,111,111,111,111,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,0,111,105,95,95,95,95,95,95,95,95,95,95,95,95,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,2,111,105,226,105,111,254,2,111,106,226,106,111,254,0,111,105,105,105,105,105,105,105,105,105,105,105,105,105,105,111,254,0,111,106,106,106,106,106,106,106,106,106,106,106,106,106,106,111,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,146,97,183,97,218,97,146,97,183,97,218,97,146,97,183,97,218,97,146,97,183,97,218,97,144,97,2,96,115,96,254,96,2,96,115,96,254,96,2,96,115,96,254,96,2,96,115,96,254,96,0,0,0,0,0,0,0,0,3,3,7,7,15,14,31,27,0,0,0,0,0,0,0,0,128,128,240,240,224,64,240,0,0,0,0,0,0,0,1,1,3,3,7,7,15,13,15,12,0,0,0,0,0,0,192,192,248,248,240,32,248,128,248,48,0,0,0,0,0,0,3,3,7,7,15,14,31,27,31,24,0,0,0,0,0,0,128,128,240,240,224,64,240,0,240,96,0,0,0,0,0,0,2,2,15,9,13,0,24,16,12,8,3,3,60,63,67,124,156,224,176,192,160,192,144,224,80,96,0,0,0,0,0,0,0,0,3,3,7,7,15,14,31,27,0,0,0,0,0,0,14,0,142,128,252,252,236,76,252,12,0,0,0,0,0,0,3,3,31,31,15,4,31,2,15,12,0,0,0,0,0,0,128,128,224,224,240,240,248,160,248,32,7,7,15,15,15,15,31,31,31,30,63,62,63,62,63,63,224,224,240,240,240,208,224,0,240,64,224,0,224,0,192,64,0,0,0,0,0,0,0,0,0,0,28,28,62,62,127,127,0,0,0,0,0,0,3,3,23,7,63,10,63,28,31,27,31,24,7,0,13,15,29,31,28,5,24,7,6,6,14,14,240,96,224,0,128,192,176,240,56,176,24,224,96,96,112,112,3,0,15,15,63,15,55,7,0,15,16,31,24,28,14,14,240,0,64,192,124,224,60,112,8,200,24,248,24,120,0,0,7,0,14,15,30,31,30,24,4,27,0,15,7,7,7,7,224,0,128,128,192,192,0,160,0,224,192,192,224,224,128,128,31,24,7,0,15,15,31,15,48,15,16,31,49,61,33,33,240,96,224,0,88,192,248,192,0,224,0,192,128,128,192,192,31,24,7,0,29,31,124,63,96,14,80,31,56,63,32,38,248,120,240,16,160,224,196,228,12,220,12,252,0,192,0,0,31,24,31,31,31,31,14,15,1,3,1,3,0,0,0,0,0,224,192,48,128,112,224,240,192,224,168,232,120,248,112,112,60,63,59,60,18,17,3,4,1,14,1,30,0,63,0,127,64,160,0,224,0,192,0,224,128,96,128,112,0,240,0,240,255,255,127,127,62,62,28,28,0,0,0,0,0,0,0,0,15,8,13,14,33,47,56,61,56,63,0,7,0,0,0,0,7,7,15,15,15,12,31,22,63,48,63,48,15,8,11,15,192,192,240,240,224,128,248,0,248,64,240,240,224,0,128,192,0,0,3,3,7,7,7,6,15,11,31,24,31,24,7,4,0,0,224,224,248,248,240,64,252,0,252,32,248,120,240,0,7,7,15,15,15,12,31,22,63,48,63,48,15,8,31,31,192,192,240,240,224,128,248,0,248,64,240,240,224,0,64,192,0,0,0,0,0,0,0,0,0,0,28,28,34,62,73,115,177,193,89,99,34,62,28,28,0,0,0,0,0,0,0,0,0,0,7,7,15,15,15,12,31,22,63,48,63,48,15,12,14,0,222,200,254,240,254,158,254,6,252,68,252,252,248,24,7,7,31,31,15,2,31,0,63,6,63,12,15,1,29,31,128,128,248,240,252,96,204,176,192,32,192,240,224,56,224,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,143,136,216,208,120,120,110,238,251,227,255,96,0,0,3,3,7,7,15,15,31,31,31,30,63,62,63,62,0,0,224,224,240,240,240,208,224,0,240,64,224,0,224,0,27,31,59,63,56,59,56,7,24,7,0,30,28,28,60,60,160,224,176,240,56,184,56,192,48,192,0,240,112,112,120,120,11,15,19,31,3,31,48,63,48,63,48,60,32,32,0,0,0,192,216,192,252,224,252,224,128,224,0,224,112,112,120,120,23,31,7,31,0,31,0,15,1,15,5,7,14,14,7,7,192,128,224,128,96,128,0,224,128,224,192,192,64,64,0,0,15,15,31,31,56,7,48,7,24,31,24,31,24,24,12,12,92,224,92,224,8,104,56,248,56,248,56,184,0,0,0,0,62,63,62,55,60,35,28,7,102,127,99,127,96,126,64,64,176,240,160,240,2,114,6,254,6,254,134,254,0,0,0,0,31,31,30,31,8,15,0,7,0,3,0,0,0,0,0,0,192,48,96,224,120,248,248,200,242,130,78,190,60,124,56,56,191,169,235,191,188,252,255,255,207,203,31,16,31,17,30,30,0,255,0,0,15,15,248,255,254,255,255,127,131,131,0,0,127,127,120,123,1,2,1,2,0,7,0,15,0,31,0,63,192,64,64,160,0,224,176,64,240,0,0,224,0,224,0,240,0,0,0,0,0,0,0,0,0,0,7,7,15,15,15,12,0,0,0,0,0,0,0,0,0,0,192,192,240,240,224,128,31,22,31,16,31,24,55,56,59,51,56,39,28,31,60,60,248,0,248,64,240,240,248,24,184,168,24,224,56,248,60,60,0,0,7,7,15,15,15,12,31,22,63,48,63,48,15,9,0,0,192,192,240,240,224,128,248,0,248,64,254,240,252,240,11,15,1,15,0,31,0,31,96,127,96,126,96,108,64,64,224,224,128,192,0,192,64,224,128,224,0,224,112,112,120,120,7,7,15,15,31,31,31,28,63,61,63,60,127,124,127,127,192,192,224,224,240,112,240,16,240,80,240,16,224,128,192,64,121,122,48,55,6,1,7,8,0,31,0,63,0,127,0,255,196,32,28,224,48,192,192,0,0,192,0,224,0,224,0,224,0,0,224,224,240,144,136,136,132,132,140,140,250,250,253,17,61,209,125,83,249,151,19,255,30,254,252,252,240,240,0,0,7,7,15,15,15,15,31,28,31,29,63,60,63,60,63,63,30,30,17,17,30,16,31,19,28,20,204,207,255,191,175,168,61,62,56,63,30,25,3,4,1,14,0,31,0,63,0,127,192,32,0,240,48,192,96,128,192,32,0,240,0,240,0,240,254,254,254,130,254,238,56,40,56,40,56,40,56,40,56,56,238,238,238,170,254,186,254,130,254,186,238,170,238,170,238,238,254,254,254,130,254,190,252,132,252,188,254,190,254,130,254,254,246,246,254,154,254,154,254,170,254,162,254,178,238,170,238,238,252,252,254,134,254,178,238,170,238,170,254,178,254,134,252,252,0,0,34,34,85,85,85,85,85,85,85,85,34,34,0,0,0,0,32,32,80,80,80,80,80,80,80,80,32,32,0,0,0,0,18,18,53,53,21,21,21,21,21,21,18,18,0,0,0,0,34,34,85,85,21,21,37,37,69,69,114,114,0,0,0,0,162,162,165,165,165,165,245,245,37,37,34,34,0,0,0,0,114,114,69,69,101,101,21,21,21,21,98,98,0,0,0,0,98,98,149,149,101,101,181,181,149,149,98,98,0,0,0,0,110,110,238,238,110,110,110,110,111,111,103,103,0,0,0,0,190,190,185,185,185,185,190,190,184,184,56,56,0,0,0,0,60,60,102,102,94,94,94,94,126,126,60,60,0,0,0,0,0,0,3,3,12,12,16,16,32,32,32,32,64,64,0,0,0,0,24,24,60,36,122,86,60,12,8,24,0,0,0,0,0,0,0,0,0,0,3,3,7,7,100,100,84,85,0,0,0,0,0,0,0,0,224,224,240,240,240,160,248,128,119,87,123,120,79,79,124,124,56,56,31,31,7,7,1,1,248,48,240,0,248,248,28,20,127,125,204,252,25,249,241,241,248,48,241,1,249,249,28,20,127,125,204,252,24,248,240,240,0,0,7,7,15,15,201,201,169,171,239,175,231,167,243,144,0,0,224,224,240,240,240,64,252,0,252,32,248,120,240,0,255,255,143,143,248,248,224,224,111,127,60,63,15,15,3,3,252,252,247,245,31,21,252,252,139,251,27,251,243,240,195,195,0,0,224,224,240,240,240,64,255,3,255,32,251,123,243,3,252,252,247,245,31,21,252,252,136,248,24,248,240,240,192,192,0,0,60,60,110,110,94,94,94,94,126,126,60,60,0,0,0,0,0,0,128,128,64,64,36,36,26,26,1,1,6,0,0,0,0,0,0,0,3,3,4,4,9,9,11,11,15,14,0,0,0,0,0,0,252,252,226,226,253,253,249,145,253,193,15,14,9,8,15,15,103,100,100,100,20,23,3,3,0,0,253,25,249,1,249,249,214,86,127,63,125,249,249,253,254,254,15,14,9,8,15,15,7,4,4,4,20,23,99,99,96,96,15,15,19,19,39,39,39,38,47,43,63,56,63,56,39,36,252,252,226,226,249,249,241,65,253,1,253,33,249,121,241,1,63,63,223,212,212,212,212,223,52,63,31,31,15,15,3,3,249,249,174,174,255,127,125,241,241,253,254,254,254,254,252,252,63,63,31,20,20,20,20,31,52,63,223,223,207,207,195,195,0,0,0,0,30,30,115,115,255,255,127,127,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,64,64,1,1,2,2,4,4,15,8,7,4,3,2,1,1,0,0,128,128,0,0,193,0,247,0,255,0,255,64,255,227,62,62,19,0,153,0,193,0,227,0,255,0,255,128,127,65,62,62,64,64,160,32,224,32,192,64,192,64,128,128,0,0,0,0,126,126,255,131,255,187,255,163,255,163,255,135,255,255,126,126,126,126,153,153,165,165,141,141,153,153,129,129,153,153,126,126,126,126,255,131,255,187,255,163,255,163,255,135,255,255,126,126,60,60,126,66,255,129,255,129,255,255,66,66,66,66,60,60,0,0,110,110,191,147,191,131,255,131,126,70,60,44,24,24,0,0,16,0,16,0,254,0,124,0,56,0,124,0,198,0,0,0,16,16,16,16,254,254,124,124,56,56,124,124,198,198,195,195,61,61,195,195,255,255,255,255,239,231,255,255,219,219,60,60,32,78,255,255,255,189,255,255,255,255,255,189,255,255,15,15,31,16,56,48,112,64,96,64,192,128,192,128,192,128,191,191,255,64,64,0,0,0,0,0,65,65,65,65,0,0,128,128,248,120,60,4,12,4,14,2,6,2,5,3,5,3,192,128,192,128,224,128,112,64,62,32,35,60,29,30,3,3,0,0,0,0,0,0,0,0,0,0,63,0,156,127,227,227,255,255,128,128,191,128,175,136,191,152,191,128,255,255,255,255,255,255,3,3,255,3,239,11,255,27,255,3,255,255,255,255,60,60,126,126,219,219,219,219,255,255,60,0,126,98,54,54,0,0,0,0,0,0,60,60,126,126,219,219,60,0,195,195,24,24,60,36,126,82,126,66,255,193,255,133,255,129,255,163,255,129,255,195,126,102,60,60,153,153,219,219,126,126,60,60,129,129,129,129,195,195,195,195,231,165,231,165,231,165,231,165,255,189,255,153,126,66,60,60,153,153,219,219,126,126,60,60,0,0,0,0,0,0,0,0,0,0,96,96,144,144,208,208,208,208,144,144,232,224,126,110,61,45,31,15,31,6,63,57,0,0,0,0,0,0,0,0,96,96,144,144,208,208,208,208,144,144,232,224,62,46,61,45,127,111,31,6,30,16,55,55,0,0,0,0,60,60,110,110,94,94,94,94,126,126,60,60,0,0,0,0,60,0,110,0,94,0,94,0,126,0,60,0,5,3,13,3,9,7,10,6,50,14,228,28,8,248,240,240,0,0,0,0,2,2,0,0,17,17,5,4,3,1,46,42,6,6,8,8,39,36,44,40,27,17,148,128,89,73,51,35,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,48,48,72,72,68,68,117,69,119,102,57,57,0,0,0,0,12,12,18,18,34,34,174,162,238,102,156,156,0,0,0,0,0,0,0,0,0,0,97,97,151,150,137,137,0,0,0,0,0,0,0,0,0,0,134,134,233,105,145,145,63,63,109,112,127,127,142,139,175,171,254,251,255,131,254,135,128,128,64,192,224,224,176,16,240,240,176,16,240,240,64,192,31,31,54,56,63,63,71,69,87,85,127,125,55,53,7,5,192,192,160,96,240,240,88,136,248,248,88,136,248,248,32,224,1,1,7,6,15,8,63,56,79,72,143,142,191,136,247,247,128,128,96,224,144,112,220,60,210,50,241,113,221,49,239,239,1,1,3,3,7,7,15,15,15,15,62,62,224,224,0,0,255,157,119,117,39,37,7,5,63,59,62,34,159,159,250,250,0,0,56,56,56,40,56,40,56,40,56,40,56,40,56,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,207,207,233,233,57,57,7,7,3,2,63,62,113,113,208,80,243,243,87,87,92,92,224,224,192,64,252,124,142,142,235,138,127,127,10,10,58,58,119,119,3,2,15,15,28,28,215,81,254,254,144,144,156,156,238,238,192,64,240,240,56,56,127,124,31,24,47,32,95,67,93,68,223,207,251,136,127,127,120,248,140,124,242,14,251,135,253,3,253,131,251,7,254,254,7,5,63,61,63,34,31,29,46,34,95,71,93,68,63,63,184,120,196,60,250,6,251,199,253,3,253,131,251,7,254,254,63,63,108,99,127,127,254,130,255,187,254,130,255,131,127,127,56,56,238,222,242,206,189,99,253,227,189,99,253,227,254,254,28,28,62,62,47,47,39,39,103,103,193,193,128,128,0,0,115,115,6,6,25,24,39,32,126,65,125,71,126,86,120,120,56,40,56,40,56,40,254,254,130,130,68,68,40,40,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,71,69,230,165,230,165,254,153,253,195,28,28,38,38,66,66,70,66,158,130,190,134,188,188,96,96,0,0,62,62,71,69,230,165,230,165,254,153,253,227,31,23,0,0,0,0,0,0,128,128,190,190,193,193,1,1,251,195,0,0,62,62,127,127,255,231,255,193,255,231,127,127,62,62,0,0,0,0,128,128,224,224,248,248,224,224,192,192,0,0,255,255,69,131,255,255,77,131,255,254,195,127,220,228,187,200,0,0,0,0,224,224,56,56,236,12,244,132,119,15,244,12,63,63,127,65,254,129,254,177,252,179,249,135,255,135,121,121,0,0,128,128,128,128,128,128,254,254,1,109,1,109,254,254,255,129,127,125,127,65,63,33,159,159,250,250,115,115,2,2,255,255,69,131,255,255,77,131,254,254,227,124,223,225,190,130,0,0,0,0,0,0,192,192,48,48,233,9,247,231,19,31,127,127,78,112,127,127,63,61,87,85,87,84,255,248,255,128,248,248,36,28,252,252,26,6,254,254,237,35,255,191,229,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,135,123,123,3,3,37,37,104,104,159,159,104,104,32,32,252,252,6,46,2,106,130,202,252,252,255,255,132,132,0,0,127,127,3,3,5,5,40,40,104,104,159,159,104,104,32,32,60,60,2,106,130,202,252,252,66,66,255,255,66,66,0,0,0,0,124,124,251,199,132,131,130,129,121,71,62,62,0,0,0,0,0,0,224,224,62,254,48,240,192,192,0,0,0,0,187,136,127,4,219,55,166,126,120,248,129,129,1,1,1,1,244,12,246,78,250,198,122,70,246,158,252,76,240,48,224,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,1,2,2,61,60,99,64,254,129,253,171,254,254,189,132,125,4,223,52,166,123,111,255,191,176,31,21,31,31,250,14,250,6,250,6,250,6,126,130,253,3,249,7,254,254,63,63,127,127,255,200,255,129,255,144,255,196,255,255,255,255,252,252,254,254,255,39,255,3,255,19,255,71,255,255,255,255,254,218,255,137,255,205,119,87,114,82,98,98,32,32,32,32,62,62,99,99,127,127,62,62,8,8,107,107,62,62,28,28,60,60,106,70,66,126,60,60,24,24,255,255,217,135,217,135,60,60,66,126,153,231,165,195,165,195,153,231,66,126,60,60,0,0,60,60,102,102,90,90,90,90,102,102,60,60,0,0,0,0,56,56,127,127,254,228,255,176,255,134,126,0,0,0,0,62,28,93,0,65,0,62,0,8,0,107,0,62,0,28,126,126,165,195,255,255,165,195,255,255,165,195,90,102,60,60,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,24,24,24,24,56,56,248,248,240,240,0,0,0,0,0,0,126,126,129,255,129,255,129,255,129,255,129,255,129,255,126,126,255,255,17,17,17,17,17,17,17,17,255,17,17,255,255,255,255,255,255,195,255,195,126,126,255,255,255,195,255,195,126,126,16,16,16,16,40,40,40,40,68,68,124,68,124,68,124,124,126,126,159,159,255,255,110,66,110,66,255,255,159,159,126,126,126,126,255,131,255,131,255,135,126,126,0,0,0,0,0,0,15,15,11,8,11,8,11,8,27,24,55,48,47,32,47,39,240,240,176,112,176,112,176,112,152,120,220,60,204,60,228,28,46,33,36,35,41,41,47,38,54,49,17,19,14,14,0,0,132,252,244,252,252,92,124,212,220,180,36,108,216,216,0,0,56,56,124,68,238,130,206,138,206,138,254,146,124,68,56,56,0,0,0,0,0,0,15,15,31,31,28,28,24,24,24,24,60,60,102,102,78,78,78,78,78,78,78,78,102,102,60,60,24,24,60,4,60,4,60,4,60,4,60,4,60,4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,62,62,72,73,174,175,254,255,126,127,62,62,0,0,0,0,128,128,24,24,188,188,152,152,128,128,128,128,0,0,0,0,140,140,18,18,137,137,146,146,140,140,128,128,0,0,0,0,0,0,240,240,248,248,56,56,24,24,24,24,195,36,0,66,0,129,0,0,0,0,24,0,60,0,102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,28,28,31,31,15,15,0,0,0,0,0,0,0,0,60,60,102,102,102,102,102,102,102,102,60,60,0,0,0,0,24,24,56,56,24,24,24,24,24,24,60,60,0,0,0,0,60,60,78,78,14,14,60,60,112,112,126,126,0,0,0,0,124,124,14,14,60,60,14,14,14,14,124,124,0,0,0,0,60,60,108,108,76,76,78,78,126,126,12,12,0,0,0,0,124,124,96,96,124,124,14,14,78,78,60,60,0,0,0,0,60,60,96,96,124,124,102,102,102,102,60,60,0,0,0,0,126,126,6,6,12,12,24,24,56,56,56,56,0,0,0,0,60,60,78,78,60,60,78,78,78,78,60,60,0,0,0,0,60,60,78,78,78,78,62,62,14,14,60,60,0,0,0,0,60,60,78,78,78,78,126,126,78,78,78,78,0,0,0,0,124,124,102,102,124,124,102,102,102,102,124,124,0,0,0,0,60,60,102,102,96,96,96,96,102,102,60,60,0,0,0,0,124,124,78,78,78,78,78,78,78,78,124,124,0,0,0,0,126,126,96,96,124,124,96,96,96,96,126,126,0,0,0,0,126,126,96,96,96,96,124,124,96,96,96,96,0,0,0,0,60,60,102,102,96,96,110,110,102,102,62,62,0,0,0,0,70,70,70,70,126,126,70,70,70,70,70,70,0,0,0,0,60,60,24,24,24,24,24,24,24,24,60,60,0,0,255,255,224,224,207,192,152,135,183,143,175,159,175,159,175,159,0,0,102,102,108,108,120,120,120,120,108,108,102,102,0,0,0,0,96,96,96,96,96,96,96,96,96,96,126,126,0,0,0,0,70,70,110,110,126,126,86,86,70,70,70,70,0,0,0,0,70,70,102,102,118,118,94,94,78,78,70,70,0,0,0,0,60,60,102,102,102,102,102,102,102,102,60,60,0,0,0,0,124,124,102,102,102,102,124,124,96,96,96,96,0,0,0,0,60,60,98,98,98,98,106,106,100,100,58,58,0,0,0,0,124,124,102,102,102,102,124,124,104,104,102,102,0,0,0,0,60,60,96,96,60,60,14,14,78,78,60,60,0,0,0,0,126,126,24,24,24,24,24,24,24,24,24,24,0,0,0,0,70,70,70,70,70,70,70,70,78,78,60,60,0,0,0,0,70,70,70,70,70,70,70,70,44,44,24,24,0,0,0,0,70,70,70,70,86,86,126,126,110,110,70,70,0,0,255,255,7,15,251,7,13,243,253,251,253,251,253,251,253,251,0,0,102,102,102,102,60,60,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,0,0,175,159,175,159,175,159,175,159,175,159,175,159,175,159,191,128,0,0,0,0,48,48,48,48,0,0,48,48,48,48,0,0,0,0,0,0,0,0,0,0,48,48,48,48,16,16,32,32,0,0,126,126,14,14,28,28,56,56,112,112,126,126,0,0,0,0,28,28,28,28,28,28,28,28,0,0,28,28,0,0,0,0,0,0,0,0,60,60,60,60,0,0,0,0,0,0,56,56,124,68,238,130,206,138,206,138,254,146,124,68,56,56,0,0,0,0,68,68,40,40,16,16,40,40,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,239,16,16,16,247,16,247,255,255,255,255,0,0,0,0,126,124,255,254,255,130,195,130,255,254,255,254,195,130,195,130,255,254,255,254,195,130,195,130,255,254,255,254,195,130,195,130,239,239,16,16,16,247,16,247,255,255,255,255,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,28,28,34,34,79,79,75,75,17,17,17,17,1,1,1,1,112,112,136,136,196,196,36,36,16,16,16,16,0,0,0,0,1,1,3,3,5,5,9,9,17,17,33,33,65,65,129,129,0,124,0,68,0,84,0,40,0,40,0,40,0,56,0,0,1,1,2,2,4,4,8,8,16,16,32,32,64,64,128,128,0,126,56,199,124,131,124,131,124,131,124,131,56,199,0,126,0,0,16,16,56,56,124,124,0,0,16,16,56,56,124,124,253,251,253,251,253,251,253,251,253,251,253,251,253,251,253,3,1,1,6,6,10,10,12,12,48,48,80,80,96,96,128,128,0,0,0,0,8,0,24,0,36,0,68,0,146,0,57,0,129,129,65,65,33,33,17,17,9,9,5,5,3,3,1,1,255,255,1,1,1,1,1,1,1,1,1,1,1,1,1,1,128,128,128,128,128,128,128,128,128,128,128,128,128,128,255,255,63,63,127,127,255,200,255,129,255,144,255,196,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,0,0,0,0,3,3,12,12,16,16,32,32,32,32,64,64,0,0,0,0,128,128,64,64,36,36,26,26,1,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,64,64,1,1,2,2,4,4,15,8,7,4,3,2,1,1,0,0,128,128,0,0,193,0,247,0,255,0,255,64,255,227,62,62,19,0,153,0,193,0,227,0,255,0,255,128,127,65,62,62,64,64,160,32,224,32,192,64,192,64,128,128,0,0,0,0,15,15,18,18,62,62,34,34,91,91,65,65,97,97,35,35,192,192,96,96,32,32,48,48,16,16,16,16,16,16,240,240,62,62,4,4,14,14,16,16,62,62,192,192,168,168,255,255,8,8,7,7,0,0,0,0,7,7,24,24,18,18,255,255,0,0,240,240,12,12,2,2,129,129,1,1,65,65,254,254,255,255,255,255,255,200,255,129,255,144,255,196,255,255,255,255,255,255,255,255,255,39,255,3,255,19,255,71,255,255,255,255,255,255,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,252,252,254,254,255,39,255,3,255,19,255,71,255,255,255,255,0,0,24,24,36,36,90,90,90,90,36,36,24,24,0,0,0,0,255,255,129,129,66,66,60,60,0,0,170,170,85,85,98,98,159,159,98,98,0,0,126,126,129,129,126,126,0,0,246,246,149,149,246,246,0,0,124,124,178,178,183,183,124,124,0,0,67,67,69,69,79,79,73,73,65,65,127,127,95,95,0,0,226,226,18,18,151,151,149,149,245,245,37,37,167,167,66,66,66,66,66,66,67,67,65,65,65,65,65,65,67,67,32,32,32,32,111,111,233,233,70,70,70,70,73,73,207,207,0,0,0,16,0,56,0,56,0,124,0,108,0,108,0,56,128,128,64,64,32,32,16,16,8,8,4,4,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,255,255,255,255,255,255,255,8,255,64,255,17,255,0,255,0,255,255,0,255,255,255,0,255,255,255,255,255,126,126,255,131,255,187,255,163,255,163,255,135,255,255,126,126,126,126,131,131,159,159,159,159,159,159,255,255,255,255,126,126,255,255,255,34,255,34,255,34,255,255,255,136,255,136,255,136,63,63,127,127,255,200,255,129,255,144,255,196,255,255,255,255,252,252,254,254,255,39,255,3,255,19,255,71,255,255,255,255,62,62,99,99,193,193,129,129,131,131,131,131,239,239,127,127,63,63,127,127,255,255,255,255,247,247,213,213,85,85,81,81,255,255,255,255,255,255,255,255,119,119,85,85,85,85,17,17,252,252,254,254,255,255,255,255,119,119,85,85,85,85,20,20,255,255,255,153,255,153,255,153,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,200,255,129,255,144,255,196,255,255,255,255,255,255,255,255,255,39,255,3,255,19,255,71,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,128,255,128,255,128,255,128,255,255,127,64,127,64,255,255,199,63,199,63,199,63,199,63,255,255,230,30,230,30,127,64,127,64,127,64,127,64,63,63,127,64,127,64,127,64,230,30,230,30,230,30,230,30,252,252,230,30,230,30,230,30,253,253,255,134,255,132,255,132,255,132,255,132,255,132,255,132,247,247,255,8,255,8,255,8,255,8,255,8,255,8,255,8,255,192,255,96,255,48,255,16,255,31,255,24,255,24,255,24,255,132,255,132,255,132,135,252,132,255,252,255,255,255,253,253,255,8,255,8,255,8,255,8,8,255,8,255,255,255,247,247,255,24,255,24,255,24,255,24,63,255,127,240,255,224,255,192,191,191,255,97,255,33,255,33,255,33,255,33,255,33,255,33,255,33,255,33,255,33,225,63,33,255,63,255,255,255,191,191,102,102,255,153,255,153,255,153,255,153,255,153,255,153,102,102,255,255,0,0,255,255,255,0,0,255,255,255,255,255,255,255,255,255,17,17,17,17,17,17,17,17,255,17,17,255,255,255,126,126,129,255,129,255,129,255,129,255,129,255,129,255,126,126,195,114,90,195,187,90,195,101,91,195,235,91,195,68,92,195,222,92,205,75,88,205,146,88,201,250,29,218,254,3,200,33,0,218,126,61,119,192,62,40,119,35,42,78,43,214,1,39,34,254,153,32,4,13,121,119,201,33,29,218,254,80,40,9,167,192,177,32,15,62,3,119,201,121,167,192,62,2,119,62,80,224,6,201,121,254,1,192,62,1,119,62,48,224,6,201,240,237,71,167,202,165,89,250,11,218,111,38,192,17,8,0,229,25,125,234,11,218,254,80,32,5,62,48,234,11,218,225,14,32,22,246,125,254,48,32,18,121,234,3,218,122,234,7,218,120,254,192,32,65,234,12,218,24,60,254,56,32,18,121,234,4,218,122,234,8,218,120,254,192,32,43,234,13,218,24,38,254,64,32,18,121,234,5,218,122,234,9,218,120,254,192,32,21,234,14,218,24,16,121,234,6,218,122,234,10,218,120,254,192,32,3,234,15,218,240,236,34,240,235,34,120,17,88,89,254,1,40,57,20,254,2,40,52,20,254,4,40,47,20,254,5,40,42,20,254,8,40,37,22,89,29,254,16,40,30,20,254,32,40,25,20,254,64,40,20,20,254,80,40,15,20,254,128,40,10,20,30,95,254,255,40,3,17,254,246,122,34,35,240,236,34,240,235,198,8,34,123,119,175,224,237,224,236,224,235,120,17,0,1,254,1,40,54,20,254,2,40,49,20,20,254,4,40,43,20,254,5,40,38,22,8,254,8,40,32,22,16,254,16,40,26,22,32,254,32,40,20,22,64,254,64,40,14,22,80,254,80,40,8,22,128,254,128,40,2,24,3,205,102,1,33,48,192,229,126,167,202,102,90,125,1,6,218,17,10,218,33,19,218,254,72,40,73,13,29,45,254,64,40,48,13,29,45,254,56,40,22,13,29,45,250,12,218,254,192,40,65,126,60,119,254,2,194,102,90,175,119,24,53,250,13,218,254,192,40,46,126,60,119,254,2,194,102,90,175,119,24,34,250,14,218,254,192,40,27,126,60,119,254,2,32,101,175,119,24,16,250,15,218,254,192,40,9,126,60,119,254,2,32,83,175,119,225,229,53,44,44,44,44,53,45,45,126,254,246,56,19,26,60,18,119,254,249,56,11,61,61,119,254,247,40,4,61,61,18,119,10,61,2,32,42,62,32,2,62,246,18,175,50,50,34,44,44,44,34,34,119,125,33,12,218,1,4,0,254,54,40,11,44,254,62,40,6,44,254,70,40,1,44,175,119,9,119,225,17,8,0,25,125,254,80,194,168,89,201,33,48,192,240,4,230,3,60,71,62,32,198,24,5,32,251,71,34,62,16,79,34,175,87,240,153,254,2,32,3,62,32,87,122,34,44,120,34,121,198,8,34,122,60,34,44,120,198,8,71,34,121,34,122,198,16,87,34,44,120,34,121,198,8,34,20,122,119,62,21,224,179,201,250,39,218,203,71,40,7,240,128,203,71,194,86,91,33,34,218,126,60,119,254,3,192,175,119,250,39,218,203,71,40,44,33,48,192,6,4,126,254,128,40,12,62,24,134,34,44,44,44,5,32,246,24,22,6,2,62,56,34,44,44,44,5,32,249,6,2,62,64,34,44,44,44,5,32,249,33,234,152,1,96,0,17,39,218,26,60,18,254,3,56,16,9,254,5,56,11,9,254,7,56,6,33,234,152,175,60,18,124,234,24,218,125,234,25,218,33,35,218,26,203,71,40,14,62,46,34,62,47,34,62,47,34,62,48,119,24,12,62,45,34,62,44,34,62,44,34,62,45,119,62,22,224,179,201,175,234,34,218,234,39,218,234,26,218,62,23,224,179,201,33,28,218,126,167,32,7,52,33,232,223,62,10,119,33,49,192,17,157,92,6,4,250,20,218,167,40,4,19,61,32,252,52,44,26,79,254,255,32,9,17,157,92,175,234,20,218,26,79,240,153,254,2,32,4,121,198,32,79,121,34,19,44,44,5,32,221,250,20,218,198,4,234,20,218,33,49,192,58,254,128,48,42,198,4,224,174,126,198,16,224,173,1,22,218,10,61,2,192,62,1,2,205,83,1,126,254,46,40,5,254,48,40,6,201,62,24,224,179,201,62,25,224,179,201,175,234,28,218,62,26,224,179,201,33,48,192,6,4,17,157,92,250,20,218,167,40,5,79,19,13,32,252,52,44,44,26,79,254,255,32,9,17,157,92,175,234,20,218,26,79,240,153,254,2,32,4,121,198,32,79,121,34,19,44,5,32,221,250,20,218,198,4,234,20,218,33,48,192,126,254,80,40,9,254,104,40,5,254,128,40,1,201,62,8,234,22,218,62,23,224,179,201,33,48,192,6,4,17,157,92,250,20,218,167,40,5,79,19,13,32,252,53,44,44,26,79,254,255,32,9,17,157,92,175,234,20,218,26,79,240,153,254,2,32,4,121,198,32,79,121,34,19,44,5,32,221,250,20,218,198,4,234,20,218,33,48,192,126,254,56,40,9,254,80,40,5,254,104,40,1,201,62,8,234,22,218,62,23,224,179,201,2,3,18,19,2,3,18,19,2,3,18,19,2,3,18,19,4,5,20,21,4,5,20,21,4,5,20,21,4,5,20,21,0,1,22,23,0,1,22,23,0,1,22,23,0,1,22,23,4,5,20,21,4,5,20,21,4,5,20,21,4,5,20,21,255,250,23,218,167,194,105,93,14,2,33,209,152,17,96,0,250,48,192,71,254,56,40,4,62,44,34,50,25,120,254,80,40,4,62,44,34,50,25,120,254,104,40,4,62,44,34,50,25,120,254,128,40,4,62,44,34,119,13,32,205,33,49,192,58,198,24,224,174,126,198,8,224,173,205,83,1,126,254,3,40,27,254,229,40,30,254,2,40,12,62,2,234,23,218,33,232,223,62,13,119,201,62,3,234,23,218,24,242,62,4,234,23,218,24,235,240,181,167,40,12,33,232,223,62,14,119,62,1,234,23,218,201,62,16,234,23,218,24,211,250,23,218,254,16,48,48,254,2,210,2,94,250,27,218,61,234,27,218,192,62,64,234,27,218,175,234,23,218,234,20,218,234,28,218,234,30,218,234,32,218,60,234,22,218,62,64,234,31,218,62,27,224,179,201,250,31,218,61,234,31,218,192,62,3,234,31,218,250,23,218,60,234,23,218,254,40,40,63,250,28,218,167,32,16,60,234,28,218,33,224,223,62,4,119,240,153,254,2,40,41,33,50,192,6,4,250,30,218,167,32,15,60,234,30,218,126,198,32,34,44,44,44,5,32,246,201,61,234,30,218,126,214,32,34,44,44,44,5,32,246,201,62,1,234,23,218,60,224,153,224,181,201,250,31,218,61,234,31,218,192,62,4,234,31,218,250,32,218,167,32,42,33,48,192,62,56,71,34,62,88,79,34,44,44,120,34,121,198,8,34,44,44,120,198,8,71,34,121,34,44,44,120,34,121,198,8,34,175,60,234,32,218,201,33,48,192,250,33,218,254,2,202,218,94,167,32,101,126,61,34,44,62,8,71,240,153,254,2,32,4,120,198,32,71,120,34,44,126,61,34,44,120,60,34,44,126,61,34,44,120,198,16,71,34,44,126,61,34,44,120,60,119,250,32,218,60,234,32,218,254,6,192,33,224,223,62,8,119,250,21,218,167,254,153,48,23,198,1,39,234,21,218,17,139,152,250,21,218,71,230,15,18,29,120,230,240,203,55,18,62,1,234,32,218,234,33,218,201,126,60,34,44,44,44,126,60,34,44,44,44,126,60,34,44,44,44,126,60,119,250,32,218,60,234,32,218,254,5,192,33,224,223,62,2,234,33,218,201,126,60,34,44,175,71,240,153,254,2,32,4,120,198,32,71,120,34,44,126,60,34,44,120,60,34,44,126,60,34,44,120,198,16,71,34,44,126,60,34,44,120,60,119,175,234,32,218,234,33,218,250,23,218,61,234,23,218,201,114,138,61,254,9,48,144,130,130,130,147,111,139,61,254,2,141,145,54,80,96,112,128,137,61,254,2,142,65,54,81,97,113,128,138,61,254,2,143,65,54,82,98,114,128,139,61,225,62,254,7,49,51,67,83,99,115,128,130,61,29,225,1,254,7,49,52,68,84,100,116,128,130,61,24,177,28,225,9,254,7,49,53,69,85,101,117,128,130,61,25,177,29,225,8,254,10,132,54,70,86,102,118,136,130,61,41,177,10,225,9,254,7,133,55,71,87,103,119,128,129,61,177,27,254,7,133,56,72,88,104,120,128,129,61,177,29,225,78,254,9,134,57,73,89,105,121,135,131,61,225,79,254,7,49,58,74,90,106,122,128,129,61,225,92,254,7,49,59,75,91,107,123,128,129,61,225,93,254,2,49,65,67,108,124,128,129,61,225,94,254,2,49,65,67,109,125,128,129,61,225,95,254,2,49,65,67,110,126,128,129,61,254,2,49,146,82,127,128,129,61,254,9,50,66,131,131,131,131,129,137,61,254,114,138,61,254,12,15,0,15,15,128,19,12,132,33,12,0,37,12,132,40,4,0,41,4,0,42,6,132,45,139,142,50,15,132,59,15,4,60,15,132,61,15,132,64,3,142,66,15,142,70,141,132,79,15,0,82,4,142,82,143,14,83,141,132,85,15,0,87,12,132,93,12,0,94,140,128,96,12,128,98,12,0,100,15,0,105,15,0,109,15,132,117,15,14,120,15,132,122,15,14,128,12,132,129,8,191,137,3,142,142,135,10,146,132,11,255,255,14,12,132,16,10,132,17,5,194,19,8,0,21,6,194,23,8,66,24,8,132,26,7,194,28,5,66,30,8,194,34,12,4,36,10,4,39,8,132,47,4,4,47,8,132,48,8,0,52,133,10,55,138,10,57,4,194,62,8,132,63,8,194,66,7,194,68,6,66,71,6,66,73,4,194,75,8,132,76,7,194,78,5,66,80,8,66,83,15,132,88,12,0,89,137,0,93,136,10,96,4,10,98,137,10,103,4,194,104,139,4,107,4,66,108,8,132,116,10,11,126,12,132,127,10,66,129,6,66,132,7,10,135,133,54,136,5,54,255,13,77,2,15,10,132,19,15,132,27,6,12,28,6,12,29,79,2,31,13,128,36,79,2,39,79,130,40,6,140,40,77,2,42,15,132,47,8,140,48,8,12,49,8,140,50,206,2,53,11,132,55,76,2,57,205,2,64,4,12,65,4,12,66,141,191,74,11,191,76,141,63,81,4,140,82,4,140,84,68,130,85,133,140,94,12,4,94,14,128,97,132,140,98,132,140,101,132,12,102,132,12,103,132,12,105,16,132,111,10,191,117,141,54,118,13,54,118,141,54,119,13,54,119,141,54,125,142,63,128,13,191,135,142,191,138,13,63,141,5,140,146,13,8,255,255,21,95,190,98,23,104,199,104,190,98,0,98,190,98,129,99,95,100,190,98,13,101,190,98,0,98,129,99,0,98,190,98,222,101,181,102,187,103,255,190,98,23,104,199,104,166,105,97,106,35,107,97,106,245,107,171,108,35,107,35,107,41,109,173,109,245,107,171,108,166,105,187,103,255,190,98,202,118,159,119,47,110,33,111,242,111,242,111,253,112,33,111,47,110,47,110,83,114,242,114,224,115,200,116,135,113,135,113,198,117,255,0,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,145,129,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,196,112,114,96,97,254,2,83,64,196,113,115,96,97,254,2,83,64,193,54,226,96,97,254,2,83,64,151,50,82,52,82,82,96,97,254,2,83,64,146,51,54,226,96,97,254,2,83,64,145,54,226,96,97,254,2,83,64,129,54,226,96,97,254,2,83,64,97,129,129,94,181,99,99,99,96,97,254,2,83,64,145,94,181,99,99,99,96,97,254,2,83,64,65,68,161,94,226,96,97,254,2,83,64,50,65,69,177,94,226,96,97,254,2,83,64,50,66,70,193,94,226,96,97,254,2,83,64,50,67,71,211,94,96,97,254,2,83,64,211,54,96,97,254,2,83,64,196,112,114,96,97,254,2,83,64,181,54,113,115,96,97,254,2,83,64,177,94,226,96,97,254,2,83,64,178,54,94,226,96,97,254,2,83,64,146,129,54,211,94,96,97,254,2,83,64,145,54,226,96,97,254,2,83,64,129,54,196,50,49,96,97,254,2,83,64,113,54,193,51,226,96,97,254,2,83,64,113,94,181,50,49,49,96,97,254,2,83,64,129,94,177,51,226,96,97,254,2,83,64,49,68,145,94,226,96,97,254,4,83,64,65,69,161,94,226,96,97,254,4,83,64,66,70,177,94,226,96,97,254,4,83,64,65,69,193,94,226,96,97,254,4,83,64,66,70,211,94,96,97,254,4,83,64,67,71,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,181,82,82,82,96,97,254,2,83,64,166,54,96,232,232,232,97,254,2,83,64,166,94,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,166,54,96,232,232,232,97,254,2,83,64,166,94,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,113,129,181,96,232,232,232,97,254,2,83,64,113,130,181,96,232,232,232,97,254,2,83,64,113,129,181,96,232,232,232,97,254,2,83,64,113,130,181,96,232,232,232,97,254,2,83,64,113,129,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,181,96,232,232,232,97,254,2,83,64,121,112,114,114,114,96,232,232,232,97,254,2,83,64,121,113,115,115,115,96,232,232,232,97,254,2,83,64,81,130,226,96,97,254,2,83,64,81,130,196,50,49,96,97,254,2,83,64,81,130,161,129,193,51,226,96,97,254,2,83,64,81,128,181,50,49,49,96,97,254,2,83,64,81,130,177,51,226,96,97,254,2,83,64,81,130,226,96,97,254,2,83,64,226,96,97,254,2,83,64,55,253,244,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,253,80,254,2,83,64,226,253,82,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,161,130,226,96,97,254,2,83,64,97,129,161,130,226,96,97,254,2,83,64,161,130,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,211,54,96,97,254,2,83,64,193,54,226,96,97,254,2,83,64,177,54,226,96,97,254,2,83,64,161,54,226,96,97,254,2,83,64,146,54,127,226,96,97,254,2,83,64,129,54,161,127,226,96,97,254,2,83,64,98,129,54,161,127,226,96,97,254,2,83,64,97,129,161,127,226,96,97,254,3,83,64,129,82,54,129,161,127,226,96,97,254,3,83,64,129,82,94,129,161,127,226,96,97,254,2,83,64,97,129,161,127,226,96,97,254,2,83,64,98,129,94,161,127,226,96,97,254,2,83,64,129,94,161,127,226,96,97,254,2,83,64,146,94,127,226,96,97,254,2,83,64,161,94,196,50,49,96,97,254,2,83,64,178,94,51,226,96,97,254,2,83,64,49,68,181,50,60,49,96,97,254,4,83,64,65,69,177,51,211,94,96,97,254,4,83,64,66,70,226,253,80,254,4,83,64,67,71,254,2,83,64,181,50,49,49,96,97,254,2,83,64,177,51,211,54,96,97,254,2,83,64,166,50,49,52,49,96,97,254,2,83,64,162,51,54,226,96,97,254,2,83,64,177,94,226,96,97,254,2,83,64,178,54,94,226,96,97,254,2,83,64,161,54,211,94,96,97,254,2,83,64,145,54,226,253,80,254,2,83,64,129,54,254,2,83,64,113,54,226,253,82,254,2,83,64,97,54,166,72,74,99,99,96,97,254,2,83,64,81,54,166,73,75,99,99,96,97,254,2,83,64,81,94,181,76,99,99,96,97,254,2,83,64,97,94,196,99,99,96,97,254,2,83,64,113,94,196,99,99,96,97,254,2,83,64,129,94,181,99,99,99,96,97,254,2,83,64,145,94,181,99,99,99,96,97,254,2,83,64,113,130,166,94,99,99,99,96,97,254,2,83,64,113,130,181,99,99,99,96,97,254,2,83,64,113,128,181,99,99,99,96,97,254,2,83,64,49,68,181,99,99,99,96,97,254,4,83,64,65,69,177,54,226,253,80,254,4,83,64,66,70,161,54,226,253,82,254,4,83,64,67,71,145,54,211,99,96,97,254,2,83,64,129,54,196,99,99,96,97,254,2,83,64,113,54,196,99,99,96,97,254,2,83,64,97,54,166,99,244,99,99,96,97,254,2,83,64,81,54,146,253,99,196,99,99,96,97,254,2,83,64,81,94,151,99,99,244,99,99,96,97,254,2,83,64,98,94,99,146,253,99,196,99,99,96,97,254,2,83,64,106,99,99,244,99,99,244,99,99,96,97,254,2,83,64,91,99,99,99,94,99,99,99,99,99,96,97,254,2,83,64,76,99,99,99,99,244,99,99,99,99,99,96,97,254,2,83,64,53,253,99,151,99,99,99,99,99,96,97,254,0,83,64,99,99,99,99,99,99,244,99,99,99,99,99,96,97,254,8,83,64,99,99,99,99,99,99,151,99,99,99,99,99,96,97,254,2,83,64,211,94,96,97,254,2,83,64,49,244,81,244,113,244,145,244,177,244,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,33,142,241,143,254,0,19,36,143,142,142,142,142,142,142,142,142,142,142,19,36,142,254,0,33,57,142,143,143,143,143,143,143,143,143,143,143,33,57,143,254,0,253,127,254,226,253,127,254,226,253,127,254,226,253,127,254,1,127,226,253,127,254,1,127,196,253,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,113,244,145,244,181,244,127,127,127,127,254,1,127,196,253,127,254,1,127,226,253,127,254,1,127,226,253,127,254,226,253,127,254,196,116,119,127,127,254,196,117,120,127,127,254,0,114,114,114,114,114,114,114,114,114,114,114,114,118,121,127,127,254,0,115,115,115,115,115,115,115,115,115,115,115,115,115,115,127,127,254,0,253,127,254,226,253,127,254,193,244,226,253,127,254,226,253,127,254,8,253,127,193,244,226,253,127,254,1,127,49,244,116,253,127,226,253,127,254,1,127,129,244,161,127,193,244,226,253,127,254,1,127,49,244,81,127,161,127,226,253,127,254,1,127,81,127,129,244,161,127,193,244,226,253,127,254,1,127,49,244,81,127,161,127,226,253,127,254,1,127,81,127,129,244,161,127,193,244,226,253,127,254,1,127,49,244,81,127,161,127,226,253,127,254,1,127,81,127,129,244,161,127,193,244,226,253,127,254,1,127,49,244,81,127,161,127,226,253,127,254,1,127,81,127,129,244,161,127,193,244,226,253,127,254,1,127,49,244,81,127,161,127,226,253,127,254,1,127,51,116,119,127,129,244,161,127,193,244,226,253,127,254,1,127,51,117,120,127,226,253,127,254,6,114,114,114,118,121,127,193,244,226,253,127,254,0,115,115,115,115,115,127,127,127,127,127,127,127,127,127,127,127,254,2,83,64,254,2,83,64,226,253,82,254,2,83,64,65,68,181,50,49,49,96,97,254,2,83,64,50,65,69,177,51,226,96,97,254,2,83,64,50,66,70,136,50,49,49,49,49,49,96,97,254,2,83,64,50,67,71,136,51,50,49,49,49,49,96,97,254,2,83,64,145,51,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,96,97,254,2,83,64,226,253,80,254,2,83,64,177,104,254,2,83,64,177,105,254,2,83,64,49,68,181,105,55,55,55,55,254,4,83,64,65,69,181,105,55,55,55,55,254,4,83,64,66,70,177,105,254,4,83,64,67,71,113,104,177,106,254,2,83,64,81,244,113,105,254,2,83,64,121,105,55,55,55,55,55,55,55,55,254,2,83,64,81,244,113,105,254,2,83,64,113,106,254,2,83,64,49,244,113,104,254,2,83,64,49,129,121,105,55,55,55,55,55,55,55,55,254,2,83,64,49,244,113,106,241,54,254,2,83,64,177,104,225,54,254,2,83,64,177,105,225,94,254,2,83,64,177,105,226,54,94,254,2,83,64,181,105,55,55,55,55,254,2,83,64,178,105,54,254,2,83,64,178,105,94,254,2,83,64,65,68,177,106,209,94,254,2,83,64,50,65,69,145,104,225,94,254,2,83,64,50,66,70,145,105,241,94,254,2,83,64,50,67,71,145,105,254,2,83,64,81,244,151,105,55,55,55,55,55,55,254,2,83,64,145,105,241,54,254,2,83,64,145,105,225,54,254,2,83,64,145,106,209,54,254,2,83,64,113,104,209,94,254,2,83,64,49,244,121,105,55,55,55,55,55,55,55,55,254,2,83,64,113,106,241,94,254,2,83,64,113,104,254,2,83,64,113,105,254,2,83,64,113,105,254,2,83,64,113,105,254,2,83,64,113,105,226,50,49,254,2,83,64,113,105,225,51,254,2,83,64,113,105,254,2,83,64,121,105,55,55,55,55,55,55,55,55,254,2,83,64,121,105,55,55,55,55,55,55,55,55,254,2,83,64,121,105,55,55,55,55,55,55,55,55,254,2,83,64,49,68,121,105,55,55,55,55,55,55,55,55,254,4,83,64,65,69,121,105,55,55,55,55,55,55,55,55,254,4,83,64,66,70,121,105,55,55,55,55,55,55,55,55,254,4,83,64,65,69,113,105,225,54,254,4,83,64,66,70,113,105,225,94,254,4,83,64,67,71,113,105,226,54,94,254,2,83,64,113,105,209,54,241,50,254,2,83,64,113,105,209,94,241,51,254,2,83,64,113,105,181,50,49,49,60,49,254,2,83,64,113,106,177,51,241,94,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,81,244,113,244,145,244,225,104,254,2,83,64,225,105,254,2,83,64,226,105,55,254,2,83,64,225,105,254,2,83,64,161,104,225,106,254,2,83,64,161,105,254,2,83,64,166,105,55,55,55,55,55,254,2,83,64,113,104,161,105,241,54,254,2,83,64,113,105,161,106,225,54,254,2,83,64,49,129,113,105,225,94,254,2,83,64,49,130,113,105,226,54,94,254,2,83,64,49,129,121,105,55,55,55,55,55,55,55,55,254,2,83,64,49,130,113,105,178,95,54,225,104,254,2,83,64,49,129,113,105,166,50,82,60,82,105,82,254,2,83,64,113,105,161,51,211,94,105,55,254,2,83,64,113,106,225,105,254,2,83,64,177,129,226,106,94,254,2,83,64,113,104,254,2,83,64,49,68,121,105,55,55,55,55,55,55,55,55,254,4,83,64,65,69,113,106,254,4,83,64,66,70,254,4,83,64,67,71,254,2,83,64,196,50,49,49,49,254,2,83,64,193,51,254,2,83,64,226,50,49,254,2,83,64,225,51,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,65,244,254,2,83,64,65,244,254,2,83,64,65,244,254,2,83,64,129,127,254,2,83,64,129,127,254,2,83,64,129,127,254,2,83,64,49,244,254,2,83,64,254,2,83,64,49,244,225,104,254,2,83,64,225,105,254,2,83,64,225,105,254,2,83,64,226,105,55,254,2,83,64,225,105,254,2,83,64,225,105,254,2,83,64,225,106,254,2,83,64,49,68,254,4,83,64,65,69,254,4,83,64,66,70,254,4,83,64,67,71,241,99,254,2,83,64,226,253,99,254,2,83,64,211,253,99,254,2,83,64,196,253,99,254,2,83,64,181,253,99,254,2,83,64,166,253,99,254,2,83,64,151,253,99,254,2,83,64,81,129,151,253,99,254,2,83,64,151,253,99,254,2,83,64,49,68,166,253,99,254,4,83,64,65,69,181,253,99,254,4,83,64,66,70,241,54,254,4,83,64,65,69,211,253,99,254,4,83,64,66,70,211,54,99,99,254,4,83,64,67,71,193,54,241,99,254,2,83,64,193,94,254,2,83,64,209,94,254,2,83,64,225,94,254,2,83,64,241,94,254,2,83,64,254,2,83,64,226,50,49,254,2,83,64,226,51,50,254,2,83,64,241,51,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,254,2,83,64,254,11,101,110,109,110,109,101,101,101,101,101,101,226,101,110,254,11,102,109,110,109,110,102,102,102,102,102,102,226,102,109,254,6,101,110,109,110,89,91,145,95,226,101,110,254,6,102,109,110,109,90,92,226,102,109,254,5,101,110,109,102,85,226,101,110,254,3,102,109,110,65,86,98,93,53,226,102,109,254,3,101,110,109,65,87,226,101,110,254,3,102,109,102,66,88,43,161,129,226,102,109,254,2,101,110,66,89,91,161,130,226,101,110,254,2,102,109,66,90,92,161,129,226,102,109,254,2,101,110,66,87,85,146,95,130,226,101,110,254,2,102,109,161,129,226,102,109,254,2,101,110,66,86,87,226,101,110,254,2,110,109,65,43,196,101,101,110,109,254,2,109,110,65,85,98,93,53,196,102,102,109,110,254,2,102,109,65,87,226,102,109,254,3,101,110,101,66,56,43,226,101,110,254,6,102,109,110,101,56,85,226,102,109,254,9,101,110,109,110,101,101,101,101,101,226,101,110,254,9,102,109,110,109,102,102,102,102,102,226,102,109,254,4,101,110,109,102,81,87,226,101,78,254,3,102,109,110,81,85,181,112,114,114,110,109,254,3,101,110,109,81,85,181,113,115,115,109,110,254,3,102,109,110,81,88,226,102,109,254,3,101,110,109,67,43,43,86,226,101,110,254,3,102,109,110,81,37,226,102,109,254,3,101,110,109,81,87,166,112,114,114,114,114,114,254,3,102,109,110,166,113,115,115,115,115,115,254,3,101,110,109,254,3,102,109,110,254,3,101,110,109,151,112,114,114,114,114,114,114,254,3,102,109,110,151,113,115,115,115,115,115,115,254,3,101,110,109,254,3,102,109,110,81,87,254,3,101,110,109,81,88,225,101,254,3,102,109,110,166,112,114,114,114,110,101,254,3,101,110,109,81,85,166,113,115,115,115,109,110,254,3,102,109,110,81,86,226,102,109,254,3,101,110,109,81,87,226,101,110,254,4,102,109,110,101,81,88,226,102,109,254,6,101,110,109,110,109,86,196,101,101,109,110,254,6,102,109,110,109,110,88,196,102,110,110,109,254,5,101,110,109,110,109,98,93,53,196,101,109,109,110,254,6,102,109,110,109,110,86,196,102,110,110,109,254,22,110,109,110,109,89,91,196,101,109,109,110,254,7,244,109,110,109,110,90,92,196,102,110,110,109,254,6,244,110,109,110,109,43,196,101,109,109,110,254,6,244,109,110,109,110,41,196,102,110,110,109,254,7,244,110,109,110,109,85,56,196,101,109,109,110,254,7,244,109,110,109,110,87,56,196,102,110,110,109,254,7,244,110,109,110,109,85,86,196,101,109,109,110,254,6,244,101,110,109,110,85,196,102,110,110,109,254,6,244,102,109,110,109,87,196,112,114,109,110,254,6,244,101,110,109,110,43,196,113,115,110,109,254,5,244,102,109,110,109,196,101,109,109,110,254,5,244,101,110,109,110,98,93,53,196,102,110,110,109,254,6,244,102,109,110,109,85,196,101,109,109,110,254,6,244,101,110,109,110,88,196,102,110,110,109,254,7,244,102,109,110,109,86,56,196,112,114,109,110,254,21,101,110,109,110,85,196,113,115,110,109,254,17,102,49,102,166,112,114,114,114,109,110,254,34,89,91,166,113,115,115,115,110,109,254,34,90,92,226,101,110,254,226,102,109,254,49,56,226,101,110,254,49,85,82,93,53,226,102,109,254,50,86,85,226,101,102,254,50,87,43,225,102,254,50,88,43,254,50,87,56,254,50,86,56,254,254,49,86,82,93,53,225,101,254,49,85,226,102,101,254,49,86,226,101,110,254,49,87,226,102,109,254,35,89,91,56,226,101,110,254,20,101,90,92,85,226,102,77,254,2,101,110,66,253,56,226,101,78,254,2,102,109,50,101,86,226,102,77,254,4,100,100,81,85,181,253,100,254,4,100,100,81,86,181,253,100,254,4,100,100,81,87,226,59,83,254,6,100,100,81,85,93,53,226,59,83,254,3,100,100,81,226,253,100,254,5,100,100,81,89,91,226,253,100,254,5,100,100,81,90,92,226,253,100,254,5,100,100,81,85,86,226,253,100,254,4,100,100,81,43,226,59,83,254,4,100,100,81,85,211,127,59,83,254,5,100,100,81,87,86,211,127,59,83,254,5,100,100,81,89,91,211,127,59,83,254,5,100,100,81,90,92,211,127,59,83,254,3,100,100,81,211,127,59,83,254,6,100,100,61,82,93,53,196,58,127,59,83,254,6,100,100,100,100,81,86,196,253,100,254,6,100,100,100,100,81,43,196,253,100,254,6,100,100,100,100,81,87,196,253,100,254,4,100,100,79,80,81,85,196,253,100,254,3,100,100,81,81,88,196,253,100,254,19,102,109,110,241,102,254,34,102,109,254,34,101,110,254,34,102,109,254,34,101,110,82,93,53,225,101,254,34,102,109,226,102,101,254,34,101,110,226,101,110,254,34,102,109,226,102,109,254,19,112,114,110,226,101,110,254,19,113,115,109,211,99,110,109,254,49,102,196,99,99,109,110,254,181,99,99,99,110,109,254,166,99,99,99,99,109,110,254,19,89,91,85,151,99,99,99,99,99,110,109,254,19,90,92,86,166,99,99,99,99,109,110,254,49,87,181,99,99,99,110,109,254,17,43,49,88,196,99,99,109,110,254,17,86,82,93,53,211,99,110,109,254,17,85,49,86,226,101,110,254,17,87,49,85,226,102,100,254,241,100,254,241,100,254,209,127,241,100,254,1,101,33,101,65,101,101,101,129,130,130,130,209,127,241,100,254,11,102,101,110,101,102,101,102,129,130,130,130,209,127,241,100,254,4,101,110,109,102,81,102,177,107,209,107,241,100,254,4,102,109,102,85,162,244,107,209,107,241,100,254,2,101,110,66,93,53,179,107,244,107,241,100,254,2,102,109,50,89,91,162,244,107,209,107,241,100,254,2,101,110,50,90,92,179,107,244,107,241,100,254,2,102,109,49,88,162,244,107,209,107,241,100,254,2,101,110,49,86,119,82,82,82,82,107,244,107,241,100,254,2,102,109,49,87,117,100,100,100,100,107,209,107,241,100,254,2,101,110,49,88,114,100,95,209,107,241,100,254,2,102,109,113,100,209,107,241,100,254,2,101,110,49,85,113,100,209,107,241,100,254,2,102,109,49,87,113,100,209,107,241,100,254,2,101,110,49,86,113,80,209,107,241,100,254,2,102,109,49,87,209,107,241,100,254,3,101,110,101,66,93,53,209,107,241,100,254,4,102,109,110,87,194,99,107,241,100,254,4,101,110,109,85,179,99,244,244,241,100,254,3,102,109,102,166,99,244,244,244,82,100,254,2,101,110,151,99,244,244,244,244,100,100,254,2,102,109,129,99,166,244,244,244,244,80,100,254,2,101,110,113,99,164,253,244,241,100,254,2,102,109,49,86,97,99,164,244,129,244,244,241,100,254,2,101,110,49,85,113,99,164,253,244,241,100,254,2,102,109,129,99,164,253,244,241,100,254,2,101,110,49,86,149,99,244,244,244,244,241,100,254,2,102,109,50,87,43,164,130,244,244,244,241,100,254,2,101,110,50,85,43,179,130,244,244,241,100,254,2,102,109,50,89,91,194,99,244,241,100,254,2,101,110,50,90,92,209,99,254,2,102,109,49,86,211,253,100,254,2,101,110,51,87,93,53,211,253,100,254,2,102,109,49,85,166,82,82,82,100,100,100,254,2,100,110,166,253,100,254,5,100,100,81,89,91,166,253,100,254,5,100,100,81,90,92,166,253,100,254,4,100,100,81,43,166,253,80,254,4,100,100,81,87,151,253,82,254,4,100,100,81,37,151,253,100,254,3,100,100,81,66,93,53,151,253,100,254,3,100,100,81,151,80,80,100,100,100,100,100,254,5,100,100,61,82,82,181,253,100,254,6,100,100,100,100,100,81,114,253,130,181,253,100,254,6,100,100,100,100,100,81,121,130,130,72,74,100,100,100,100,100,254,6,100,100,100,100,100,81,121,130,130,73,75,100,100,100,100,100,254,6,100,100,100,100,100,81,114,253,130,166,76,100,100,100,100,100,254,6,100,100,100,100,100,81,114,253,130,181,253,100,254,6,100,100,100,100,100,81,121,128,130,72,74,100,100,100,100,100,254,6,100,100,100,100,100,81,121,130,130,73,75,100,100,100,100,100,254,6,100,100,100,100,100,81,114,253,130,166,76,100,100,100,100,100,254,5,100,100,79,80,80,181,253,100,254,6,100,100,81,88,93,53,181,253,100,254,5,100,100,81,89,91,181,253,80,254,5,100,100,81,90,92,254,9,100,100,81,85,86,87,85,86,85,254,3,100,100,81,181,253,82,254,3,100,100,81,81,85,196,253,100,254,4,100,100,61,82,81,86,196,253,100,254,6,100,100,100,100,81,87,193,127,226,59,83,254,6,100,100,100,100,81,88,193,127,226,59,83,254,6,100,100,100,100,81,87,193,127,226,59,83,254,6,100,100,100,100,81,43,193,127,226,59,83,254,6,100,100,100,100,81,85,193,127,226,59,83,254,6,100,100,100,100,81,86,193,127,226,59,83,254,6,100,100,100,100,81,87,193,127,226,59,83,254,6,100,100,100,100,81,37,193,127,226,59,83,254,6,100,100,100,100,81,86,193,127,226,59,83,254,6,100,100,100,100,81,85,193,127,226,59,83,254,6,100,100,100,100,81,86,193,127,226,59,83,254,5,100,100,100,100,81,193,127,226,59,83,254,7,100,100,100,100,81,93,53,193,127,226,59,83,254,5,100,100,100,100,81,178,58,127,226,59,83,254,7,100,100,100,100,81,93,53,161,58,193,127,226,59,83,254,6,100,100,100,100,61,82,151,225,100,100,100,100,100,100,254,0,100,100,100,100,100,100,236,236,236,236,100,100,100,100,100,100,254,6,253,100,166,253,100,254,0,253,127,254,226,253,127,254,226,253,127,254,226,253,127,254,226,253,127,254,1,127,56,253,130,226,253,127,254,1,127,161,130,211,244,127,127,254,1,127,49,244,81,244,113,244,146,244,130,226,253,127,254,1,127,49,244,81,244,113,244,146,244,130,211,244,127,127,254,1,127,49,244,81,244,113,244,146,244,130,226,253,127,254,1,127,49,244,81,244,113,244,146,244,130,211,244,127,127,254,1,127,49,244,81,244,113,244,146,244,130,226,253,127,254,1,127,49,244,81,244,113,244,146,244,130,211,244,127,127,254,1,127,161,130,226,253,127,254,1,127,56,128,130,130,130,130,130,130,130,211,244,127,127,254,226,253,127,254,114,253,244,196,116,119,127,127,254,114,253,244,196,117,120,127,127,254,0,114,114,114,114,114,114,114,114,114,114,114,114,118,121,127,127,254,0,115,115,115,115,115,115,115,115,115,115,115,115,115,115,127,127,254,0,253,127,254,241,127,254,241,127,254,12,253,127,241,127,254,1,127,49,127,162,244,127,241,127,254,1,127,34,244,127,98,244,127,177,130,241,127,254,1,127,49,128,113,130,162,244,127,241,127,254,1,127,34,244,127,98,244,127,177,130,241,127,254,1,127,49,130,113,128,162,244,127,241,127,254,1,127,34,244,127,98,244,127,177,130,241,127,254,1,127,49,130,113,127,162,244,127,241,127,254,1,127,34,244,127,98,244,127,177,130,241,127,254,1,127,113,127,162,244,127,241,127,254,1,127,98,244,130,177,130,241,127,254,1,127,49,127,113,127,162,244,127,241,127,254,1,127,49,127,98,244,127,177,128,241,127,254,4,127,116,119,127,113,127,162,244,127,241,127,254,4,127,117,120,127,98,244,127,177,130,241,127,254,4,114,118,121,127,113,127,241,127,254,0,115,115,115,127,127,127,127,127,127,127,127,127,127,127,127,127,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,248,255,0,0,0,255,255,0,0,0,0,1,1,1,1,3,3,255,0,0,0,255,255,0,0,127,127,192,192,63,0,255,0,255,0,0,0,255,255,0,0,240,240,16,16,247,23,244,20,255,0,0,0,255,255,0,0,0,0,0,0,223,223,80,80,255,0,0,0,255,255,0,0,0,0,0,0,191,191,160,160,255,0,0,0,255,255,0,0,0,0,0,0,241,241,25,25,255,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,255,0,0,0,255,255,0,0,0,0,0,0,191,191,160,160,255,0,0,0,255,255,0,0,0,0,0,0,240,240,24,24,255,255,255,255,0,255,0,0,255,0,0,0,255,0,0,0,255,255,255,255,85,85,170,170,85,85,0,0,0,0,0,0,28,28,34,34,93,93,81,81,93,93,34,34,28,28,0,0,0,22,0,41,0,64,4,128,93,128,62,65,12,50,0,12,63,32,112,80,111,79,104,72,104,72,104,72,104,72,104,72,255,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,252,28,46,62,238,222,110,94,110,94,110,94,110,94,110,94,3,2,3,2,3,2,3,3,1,1,1,1,0,0,0,0,255,0,255,7,252,12,247,7,249,1,254,192,127,112,27,24,247,20,247,244,7,4,7,4,199,196,103,100,183,52,215,20,223,80,223,80,223,80,223,80,223,80,223,80,223,80,255,112,191,160,191,163,190,162,190,162,190,162,190,162,190,162,191,163,237,13,245,133,253,133,253,133,253,133,253,133,253,133,253,133,255,0,255,31,240,16,255,31,240,0,255,0,255,31,240,16,191,160,191,163,62,34,190,162,190,162,190,162,191,163,60,32,236,12,244,132,252,132,252,132,252,132,252,132,252,140,120,24,0,104,0,150,0,1,132,0,213,0,255,0,52,203,0,52,0,0,0,192,0,32,128,16,128,96,0,128,0,0,0,0,198,198,230,230,230,230,214,214,214,214,206,206,206,206,198,198,192,192,192,192,0,0,219,219,221,221,217,217,217,217,217,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,253,253,135,135,0,0,0,0,0,0,0,0,0,0,0,0,252,252,6,6,127,127,64,64,127,64,127,64,127,64,127,127,0,0,0,0,251,248,15,0,255,0,255,0,255,0,255,255,0,0,0,0,247,20,247,20,247,20,247,54,227,227,129,129,0,0,0,0,143,0,255,0,255,0,255,1,255,3,254,254,0,0,0,0,188,160,191,160,191,163,190,162,62,34,62,62,0,0,0,0,125,13,249,25,241,241,1,1,1,1,1,1,0,0,0,0,255,31,240,0,255,0,255,0,255,0,255,255,0,0,0,0,191,160,191,163,190,162,190,162,190,162,190,190,0,0,0,0,240,48,216,152,236,140,246,134,250,130,254,254,0,0,0,0,0,0,48,48,120,120,51,51,182,182,183,183,182,182,179,179,0,0,0,0,0,0,205,205,110,110,236,236,12,12,236,236,1,1,1,1,1,1,143,143,217,217,217,217,217,217,207,207,128,128,128,128,128,128,158,158,179,179,179,179,179,179,158,158,3,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,251,2,255,0,255,0,255,56,239,40,239,40,239,40,239,40,251,3,253,1,255,1,255,225,191,161,191,161,191,161,191,161,31,31,48,48,127,96,127,71,125,69,125,69,125,69,125,69,227,227,50,50,219,26,235,10,251,10,251,10,251,10,251,10,255,255,1,1,254,0,255,56,239,40,239,40,239,40,239,40,31,31,145,145,223,209,95,81,223,81,223,81,223,81,223,81,31,31,48,48,127,96,127,71,125,69,125,69,125,69,125,69,225,225,49,49,217,25,233,9,249,9,249,9,249,9,249,9,240,240,16,16,240,16,240,16,240,16,240,16,240,16,240,16,15,15,24,24,63,48,63,35,62,34,62,34,62,34,62,34,241,241,25,25,237,13,245,133,253,133,253,133,253,133,253,133,255,255,0,0,255,0,255,28,247,20,247,20,247,20,247,20,143,143,200,200,111,104,175,40,239,40,239,40,239,40,239,40,252,252,6,6,251,3,253,225,191,161,191,161,191,161,191,161,104,72,111,79,127,80,96,127,127,127,63,63,31,31,0,0,3,2,3,2,3,2,3,2,3,2,131,130,131,130,131,131,239,40,239,40,239,40,239,40,239,40,239,40,239,40,239,239,191,161,191,161,191,161,191,161,191,161,191,161,191,161,191,191,127,71,120,64,127,64,127,71,125,69,125,69,125,69,125,125,251,10,251,10,251,10,251,10,251,10,251,10,251,10,251,251,255,56,199,0,255,1,255,56,239,40,239,40,239,40,239,239,223,81,223,209,159,145,223,209,223,81,223,81,223,81,223,223,125,69,125,69,127,71,120,64,127,64,127,96,63,48,31,31,249,9,249,9,249,9,249,9,249,9,249,25,241,49,225,225,240,16,240,16,255,31,240,0,255,0,255,0,255,0,255,255,63,35,60,32,191,160,191,163,190,162,190,162,190,162,190,190,253,133,125,5,253,5,253,133,253,133,253,133,253,133,253,253,247,20,247,20,247,20,247,20,247,20,247,20,247,20,247,247,239,40,239,40,239,40,239,40,239,40,239,40,239,40,239,239,191,161,191,161,255,225,31,1,255,1,255,3,254,6,252,252,0,0,0,0,0,0,0,0,0,0,7,1,7,1,7,7,0,0,255,255,255,0,0,255,255,255,255,255,255,255,0,0,110,94,238,222,238,62,30,254,254,254,252,252,248,248,0,0,104,72,104,72,104,72,104,72,104,72,104,72,104,72,104,72,110,94,110,94,110,94,110,94,110,94,110,94,110,94,110,94,0,0,31,31,63,32,112,80,111,79,104,72,104,72,255,255,0,0,255,255,255,0,0,0,255,255,0,0,0,0,255,255,0,0,248,248,252,28,46,62,238,222,110,94,110,94,255,255,0,0,255,255,255,0,0,255,255,255,255,255,255,255,110,94,0,0,255,255,255,0,0,255,255,255,255,255,255,255,104,72,0,0,1,1,6,6,8,8,16,16,32,32,69,64,128,128,0,0,192,192,48,48,8,8,85,5,2,2,1,1,0,0,0,0,0,0,0,0,224,224,24,24,4,4,2,2,129,129,162,162,169,169,209,209,205,205,253,253,225,97,246,118,220,124,31,18,31,16,15,10,15,15,16,16,34,34,43,43,233,233,255,132,255,255,255,110,227,1,243,211,127,126,249,207,255,255,200,248,136,248,144,240,16,240,224,224,192,64,224,32,255,255,63,32,112,80,111,79,104,72,107,72,107,72,107,75,104,72,231,38,24,24,255,255,0,0,128,128,128,128,128,128,0,0,255,0,0,0,255,255,0,0,7,1,7,1,7,7,0,0,104,72,104,72,104,72,104,72,104,72,107,72,107,72,107,75,255,255,255,255,0,255,0,0,255,0,0,0,187,56,68,68,7,7,4,7,8,15,8,15,9,15,27,31,35,62,47,63,158,158,113,127,65,127,254,230,249,241,207,76,223,88,207,64,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,63,80,116,80,155,80,63,80,116,80,155,80,63,80,116,80,155,80,63,80,116,80,155,80,192,80,116,78,29,79,216,79,116,78,29,79,216,79,116,78,29,79,216,79,116,78,29,79,216,79,0,0,0,0,0,0,0,0,28,28,62,34,63,59,127,71,0,0,0,0,0,0,0,0,56,56,124,68,252,220,254,226,0,0,0,0,24,24,60,36,126,82,127,91,63,47,125,69,0,0,0,0,24,24,60,36,126,74,254,218,252,244,190,162,0,0,1,1,27,27,39,39,47,40,63,48,63,32,63,62,248,248,236,28,228,220,228,28,228,28,196,60,132,124,132,124,0,0,1,1,3,2,7,7,15,14,31,16,127,120,143,136,0,0,240,240,216,56,200,184,200,56,200,56,142,126,11,251,0,0,3,3,15,15,121,121,255,159,255,165,255,169,86,86,0,0,192,192,240,240,158,158,255,249,255,165,255,149,106,106,56,56,68,68,130,130,169,169,170,170,173,173,176,176,64,64,0,126,0,229,0,255,126,129,126,231,126,231,24,231,24,231,0,0,0,0,0,0,3,3,12,12,113,113,130,130,124,124,0,126,100,129,126,231,24,231,24,255,126,129,126,255,24,126,0,0,120,120,196,196,130,130,169,169,117,117,3,3,7,7,0,0,0,0,0,0,120,120,140,156,100,28,228,220,228,28,127,119,127,79,255,135,255,181,239,173,231,165,67,66,1,1,254,238,254,242,255,225,255,173,247,181,231,165,194,66,128,128,125,85,127,95,63,41,127,75,126,90,254,154,228,164,64,64,190,170,254,250,252,148,254,210,126,90,127,89,39,37,2,2,15,8,31,16,31,24,7,4,30,25,28,19,15,15,0,0,252,124,254,14,194,194,49,241,33,225,97,225,171,171,62,62,207,204,143,140,71,71,96,96,63,63,60,51,56,39,31,31,9,249,153,249,254,158,16,16,240,240,96,224,192,192,128,128,1,1,7,7,31,31,127,96,255,128,255,252,31,16,31,31,252,252,254,6,250,198,242,14,242,14,243,15,225,31,255,255,0,0,56,56,70,70,129,129,148,148,171,171,64,64,0,0,24,255,24,255,126,129,126,255,24,255,129,255,126,126,126,126,0,0,0,0,0,0,1,1,1,1,3,3,7,7,15,8,0,0,30,30,121,121,141,157,101,29,230,222,228,28,228,28,15,8,31,16,63,33,63,62,31,16,63,32,63,60,7,4,228,28,196,60,196,60,132,124,252,124,254,14,194,66,177,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,31,28,31,16,62,49,120,103,249,198,243,140,0,0,240,240,252,28,246,14,58,198,58,198,123,135,123,135,65,65,33,34,18,20,13,14,150,152,93,94,38,56,29,30,4,4,8,136,144,80,96,224,210,50,116,244,200,56,112,240,33,34,34,36,45,46,150,152,157,158,102,120,29,30,98,108,8,136,136,72,104,232,210,50,114,242,204,60,112,240,140,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,131,131,134,134,74,74,113,113,2,2,2,2,3,3,112,112,208,208,16,16,8,8,136,136,8,8,8,8,240,240,31,16,63,33,63,62,15,11,28,20,28,20,126,126,145,145,228,28,196,60,140,124,168,104,200,200,24,24,112,112,160,224,62,58,60,52,24,24,8,8,12,12,16,16,16,16,31,31,33,97,33,33,107,107,255,255,225,225,89,89,71,71,128,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,141,243,140,253,194,127,64,127,64,61,34,49,63,31,31,243,15,226,30,242,30,246,30,198,62,142,254,60,252,240,240,34,44,79,79,151,151,41,41,74,74,135,135,140,140,68,68,136,104,228,228,210,210,40,40,164,164,194,194,98,98,68,68,143,143,55,55,73,73,74,74,71,71,70,70,34,34,0,0,226,226,216,216,36,36,164,164,196,196,196,196,136,136,0,0,65,66,54,54,7,8,118,126,153,153,47,47,68,68,34,34,4,132,216,216,192,32,220,252,50,50,232,232,68,68,136,136,0,0,0,0,120,120,252,196,227,131,252,196,120,120,0,0,195,195,61,61,195,195,255,255,255,255,239,231,255,255,219,219,60,60,32,78,255,255,255,189,255,255,255,255,255,189,255,255,0,0,0,0,3,3,12,12,16,16,32,32,32,32,64,64,0,0,0,0,128,128,64,64,36,36,26,26,1,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,64,64,1,1,2,2,4,4,15,8,7,4,3,2,1,1,0,0,128,128,0,0,193,0,247,0,255,0,255,64,255,227,62,62,19,0,153,0,193,0,227,0,255,0,255,128,127,65,62,62,64,64,160,32,224,32,192,64,192,64,128,128,0,0,0,0,0,0,0,0,0,1,0,2,0,3,0,7,0,15,0,50,0,120,0,132,0,2,0,2,0,130,0,194,0,4,0,4,0,0,0,0,0,1,0,2,0,4,0,8,0,16,0,32,0,64,0,128,0,2,0,4,0,8,0,8,0,0,0,16,0,4,0,4,0,4,0,8,0,8,0,8,0,8,0,8,0,32,0,56,0,30,0,15,0,6,0,4,0,6,0,7,0,16,0,16,0,0,0,128,0,0,0,0,0,0,0,0,0,8,0,16,0,144,0,144,0,160,0,160,0,224,0,64,0,6,0,8,0,8,0,16,0,0,0,33,0,39,0,31,0,128,0,0,0,0,0,16,0,96,0,192,0,130,0,4,0,64,0,64,0,96,0,32,0,32,0,224,0,16,0,8,0,1,0,0,0,0,0,0,0,1,0,2,0,2,0,4,0,8,0,128,0,144,0,208,0,16,0,32,0,32,0,32,0,4,0,4,0,4,0,4,0,2,0,2,0,2,0,2,0,56,0,196,0,1,0,2,0,131,0,7,0,15,0,50,0,64,0,128,0,1,0,2,0,4,0,8,0,16,0,32,253,251,253,251,253,251,253,251,253,251,253,251,253,251,253,3,0,153,0,153,0,129,0,255,0,153,0,193,0,66,0,126,0,0,0,0,0,0,8,0,28,0,54,0,107,0,221,0,255,0,255,0,254,0,125,0,187,0,255,0,255,0,255,0,0,0,0,4,0,2,0,2,0,23,0,151,2,109,2,61,0,0,0,0,0,0,0,0,0,32,0,64,0,192,0,160,7,120,13,112,24,160,24,96,24,96,9,48,5,24,0,15,0,232,128,112,128,112,192,48,128,96,128,96,0,192,0,0,0,15,0,8,0,8,0,7,0,2,0,1,0,0,0,0,0,255,0,0,0,0,0,183,0,0,0,255,0,32,0,49,0,254,0,2,0,2,0,252,0,8,0,240,0,128,0,128,0,31,0,32,0,32,0,32,0,32,0,127,0,128,0,255,0,0,0,128,0,128,0,128,0,128,0,192,0,32,0,224,255,255,255,255,0,255,255,0,0,0,255,0,0,0,255,0,0,129,0,66,0,36,0,24,0,0,0,0,0,0,0,0,0,66,0,90,0,102,0,195,0,129,0,231,0,231,0,153,0,153,0,153,0,189,0,165,0,153,0,66,0,102,0,90,0,19,0,21,0,25,0,17,0,17,0,19,0,21,0,25,0,56,0,68,0,130,0,169,0,170,0,173,0,176,0,64,0,126,0,193,0,129,0,129,0,231,0,231,0,153,0,153,0,28,0,34,0,65,0,149,0,85,0,181,0,13,0,2,0,0,0,129,0,66,0,165,0,126,0,60,0,24,0,0,0,66,0,70,0,66,0,70,0,66,0,70,0,66,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,63,255,30,255,252,255,255,255,255,255,207,255,135,255,255,255,255,255,126,255,63,255,255,255,243,255,225,255,255,126,126,255,131,255,187,255,163,255,163,255,135,255,255,126,126,126,126,253,195,253,131,251,135,255,142,168,223,223,255,125,125,118,118,255,203,253,99,253,51,219,55,147,127,127,255,230,230,127,127,192,192,159,159,187,187,191,191,191,191,183,183,191,191,254,254,3,3,253,253,239,239,253,253,127,127,255,255,251,251,191,191,189,189,191,191,175,175,191,191,190,190,223,223,127,127,255,255,223,223,253,253,255,255,247,247,255,255,255,255,254,254,255,219,255,137,255,141,255,223,122,90,114,114,48,48,32,32,126,126,251,199,253,131,253,195,253,243,253,203,121,79,254,206,242,142,231,223,205,255,125,115,126,98,249,199,243,255,126,126,127,127,247,199,238,142,221,156,187,184,246,240,255,255,127,127,254,254,111,15,223,31,187,59,119,115,239,231,255,255,254,254,126,126,239,207,223,159,187,187,247,243,239,231,255,255,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,32,224,0,240,0,240,0,47,230,15,203,55,71,62,16,224,0,240,0,240,0,240,0,240,0,240,0,240,0,47,230,15,176,79,240,128,169,161,224,129,121,224,128,62,48,224,0,201,124,224,150,125,224,151,126,167,40,29,254,128,40,23,240,150,103,240,151,111,17,16,0,25,240,143,61,224,143,200,24,224,175,224,149,24,233,224,149,6,7,17,134,255,42,18,19,5,32,250,240,137,33,55,76,7,95,22,0,25,94,35,86,26,111,19,26,103,19,26,224,144,19,26,224,145,94,35,86,35,240,140,224,148,126,254,255,40,199,254,253,32,12,240,140,238,16,224,148,24,234,19,19,24,230,254,254,40,248,224,137,240,135,71,26,79,240,139,203,119,32,6,240,144,128,137,24,10,120,245,240,144,71,241,144,153,222,8,224,147,240,136,71,19,26,19,79,240,139,203,111,32,6,240,145,128,137,24,10,120,245,240,145,71,241,144,153,222,8,224,146,229,240,141,103,240,142,111,240,149,167,40,4,62,255,24,2,240,147,34,240,146,34,240,137,34,240,148,71,240,139,176,71,240,138,176,34,124,224,141,125,224,142,225,195,114,72,33,9,194,126,71,167,200,45,126,254,15,208,112,44,54,0,201,10,95,22,0,13,10,13,13,13,13,13,13,167,200,254,2,40,20,25,126,254,127,40,35,10,150,2,28,123,12,12,12,12,12,12,12,2,201,123,254,255,40,35,25,126,254,127,40,6,10,134,2,29,24,229,43,29,24,246,27,43,62,2,12,12,12,12,12,12,2,13,13,13,13,13,13,24,227,175,12,12,12,12,12,12,2,12,2,201,28,26,254,15,48,73,28,61,18,29,62,15,18,24,64,245,26,167,32,14,250,12,194,254,3,62,2,56,2,62,4,234,14,194,241,24,33,240,179,254,13,202,127,74,17,7,194,240,129,71,240,128,203,79,32,215,245,250,14,194,254,4,32,5,62,2,234,14,194,241,203,71,32,15,26,254,1,40,177,203,120,194,119,74,203,72,32,63,201,26,167,32,242,33,10,194,126,167,40,235,203,64,40,231,54,0,33,3,194,229,126,254,24,40,25,230,240,246,4,119,250,14,194,254,4,40,8,62,2,234,14,194,234,8,194,33,12,194,54,48,33,224,223,54,1,62,1,18,225,24,184,33,12,194,126,254,6,32,7,240,159,167,32,2,54,0,240,179,254,13,6,3,40,6,240,181,167,200,6,1,33,169,255,17,0,192,42,167,40,8,28,28,28,28,5,32,245,201,229,33,5,194,70,33,1,194,42,198,254,18,28,14,2,203,104,40,2,14,248,42,129,18,14,96,28,240,179,254,13,32,10,14,122,240,228,254,11,32,2,14,110,121,18,28,175,18,225,45,14,10,203,104,32,2,14,9,113,33,224,223,54,2,62,12,234,174,192,62,255,234,169,192,201,33,12,194,54,32,195,186,73,240,129,230,3,32,135,240,128,203,71,200,33,174,192,126,167,202,12,74,53,201,240,159,167,200,254,255,200,250,216,192,167,40,6,61,234,216,192,24,42,250,220,192,203,39,95,22,0,33,228,74,25,94,35,86,213,225,250,217,192,22,0,95,25,42,254,255,40,26,234,218,192,126,234,216,192,28,28,123,234,217,192,240,128,234,219,192,250,218,192,224,128,224,129,201,175,234,218,192,24,237,80,101,224,101,112,102,6,4,17,16,0,33,16,194,229,126,254,128,32,2,54,255,167,32,30,213,17,7,0,25,209,126,167,40,43,45,45,126,45,45,45,167,32,21,52,240,243,79,240,164,145,79,126,145,119,225,25,5,32,210,240,164,224,243,201,53,240,243,79,240,164,145,79,126,145,119,24,233,225,229,54,128,44,44,54,255,24,223,240,238,254,3,192,33,45,192,240,164,71,240,242,144,50,250,1,194,214,11,119,250,10,194,167,32,11,240,241,71,214,4,190,48,10,120,190,208,54,0,62,4,224,238,201,62,2,234,7,194,201,33,1,194,126,254,180,216,254,192,208,175,224,153,224,181,60,224,179,60,234,232,223,62,144,224,166,201,240,153,254,1,192,240,166,167,40,16,230,3,192,175,234,0,194,250,3,194,238,16,234,3,194,201,62,2,224,153,175,234,0,194,250,3,194,246,16,234,3,194,201,240,153,254,4,40,37,254,3,192,240,166,167,40,12,230,3,192,250,3,194,238,16,234,3,194,201,62,4,224,153,62,64,224,166,250,3,194,230,15,234,3,194,201,240,166,167,40,12,230,3,192,250,0,194,238,128,234,0,194,201,175,224,153,234,0,194,250,3,194,230,15,234,3,194,201,240,159,254,255,192,240,128,71,250,218,192,184,40,33,33,0,195,250,217,192,95,22,0,25,250,218,192,34,250,216,192,119,28,28,123,234,217,192,120,234,218,192,175,234,216,192,201,250,216,192,60,234,216,192,201,141,76,145,76,149,76,153,76,157,76,161,76,165,76,169,76,141,76,145,76,177,76,181,76,185,76,189,76,165,76,173,76,193,76,197,76,201,76,205,76,209,76,213,76,217,76,221,76,225,76,229,76,233,76,237,76,241,76,245,76,245,76,245,76,249,76,253,76,1,77,5,77,9,77,13,77,25,77,21,77,17,77,29,77,33,77,37,77,249,248,44,77,249,248,51,77,249,248,58,77,249,248,65,77,249,248,72,77,249,248,79,77,249,251,86,77,249,251,93,77,252,252,97,77,249,248,104,77,249,248,111,77,249,248,118,77,249,248,125,77,249,248,132,77,249,248,139,77,249,248,146,77,249,248,153,77,249,248,160,77,249,248,167,77,249,251,174,77,249,251,181,77,249,248,188,77,249,248,195,77,249,248,202,77,249,248,209,77,249,248,216,77,249,248,223,77,249,248,230,77,249,248,237,77,249,248,244,77,249,248,251,77,249,248,2,78,249,248,9,78,249,248,20,78,249,247,31,78,249,248,42,78,249,248,53,78,249,248,68,78,0,1,16,17,255,68,78,2,3,18,19,255,68,78,4,5,20,21,255,68,78,0,1,22,23,255,68,78,8,9,24,25,255,68,78,10,11,26,27,255,68,78,0,1,12,13,255,68,78,0,1,28,29,255,68,78,98,255,68,78,112,113,114,115,255,68,78,112,113,116,115,255,68,78,99,100,101,102,255,68,78,99,100,101,103,255,68,78,32,33,48,49,255,68,78,34,35,50,51,255,68,78,36,37,52,53,255,68,78,34,35,54,55,255,68,78,40,41,56,57,255,68,78,42,43,58,59,255,68,78,44,45,60,61,255,68,78,46,47,62,63,255,68,78,64,65,66,67,255,68,78,68,69,70,71,255,68,78,117,118,119,120,255,68,78,117,118,121,120,255,68,78,104,105,106,107,255,68,78,104,108,106,109,255,68,78,160,161,176,177,255,68,78,162,163,178,179,255,68,78,78,73,80,81,255,68,78,72,73,74,75,255,68,78,12,13,28,29,255,68,78,46,47,62,63,255,92,78,44,44,79,60,45,61,76,77,255,76,78,14,79,45,76,30,60,61,77,255,92,78,38,39,79,60,45,61,76,77,255,92,78,254,124,97,125,111,126,123,127,255,92,78,254,124,97,125,111,126,97,125,111,126,123,127,255,0,0,0,8,8,0,8,8,0,0,0,9,0,17,0,25,8,0,8,9,8,17,8,25,0,0,8,0,0,8,8,8,0,16,8,16,0,24,8,24,0,32,8,32,0,40,8,40,15,15,60,16,79,201,20,15,4,24,15,54,24,143,54,25,15,54,25,143,54,26,15,54,26,143,54,29,15,4,31,7,188,31,78,201,35,15,132,36,79,73,49,4,4,49,4,60,52,135,10,55,138,58,58,137,10,60,79,2,62,139,4,65,9,132,71,78,2,76,79,73,81,15,177,83,15,4,87,14,49,88,15,4,94,138,132,96,8,49,99,4,60,106,8,4,109,4,60,113,16,11,114,6,58,119,6,11,121,78,73,126,79,73,134,74,2,136,15,49,137,15,49,137,135,60,138,15,49,141,135,132,142,15,60,144,74,73,149,11,49,155,5,3,165,5,3,175,5,3,185,5,3,195,69,3,215,5,3,225,138,59,227,7,54,228,5,54,255,12,133,37,15,16,4,16,140,132,19,5,37,19,15,142,22,15,4,25,136,37,26,136,37,29,78,2,30,5,37,32,4,181,33,196,2,40,7,37,42,12,14,44,15,4,45,131,181,46,6,37,49,12,132,50,4,181,51,2,4,52,12,132,55,143,4,59,134,53,62,12,132,64,12,4,68,6,37,69,11,14,70,8,37,73,15,4,75,132,181,78,8,14,79,12,132,81,206,73,83,5,37,85,15,142,86,12,4,88,14,142,99,11,14,105,131,3,115,131,3,123,5,181,123,207,73,124,136,37,126,15,14,127,15,132,129,78,2,132,8,10,136,13,4,137,71,58,140,138,54,141,10,54,142,137,54,143,9,54,146,138,54,148,11,54,148,139,54,150,139,54,152,10,54,153,137,54,155,8,54,156,135,54,158,5,54,255,14,140,11,18,9,56,20,9,57,25,136,56,29,5,59,38,10,58,39,8,54,39,136,54,39,13,71,40,198,2,41,13,4,53,16,14,55,7,4,57,16,14,63,14,11,65,140,56,68,140,57,70,132,58,76,4,11,78,16,11,85,9,54,85,137,54,87,16,11,93,16,59,96,145,59,111,15,60,113,15,177,115,15,49,122,143,188,123,10,132,124,143,71,136,12,188,137,138,60,146,14,50,255,165,86,165,86,194,92,204,82,83,83,201,83,83,83,32,84,170,84,240,84,83,83,204,82,32,84,32,84,170,84,83,83,78,85,78,85,185,98,59,99,185,98,185,98,178,99,221,85,59,99,73,86,255,194,92,165,86,194,92,201,87,136,88,201,87,36,89,231,89,36,89,75,90,231,89,136,88,75,90,188,90,188,90,201,87,194,91,75,92,73,86,255,165,86,165,86,194,92,129,93,239,93,239,93,129,93,87,94,192,94,239,93,239,93,92,95,206,95,78,96,78,96,66,97,66,97,5,98,255,44,82,44,82,44,82,44,82,255,0,5,1,1,5,24,136,10,1,2,10,24,136,255,7,0,2,7,16,120,11,8,1,11,80,48,255,7,2,1,7,32,128,14,2,2,14,32,128,255,5,5,1,5,56,88,15,5,2,15,56,88,255,6,2,2,6,32,128,17,8,1,17,80,96,255,8,7,1,8,72,48,15,7,2,15,72,136,255,7,1,1,7,24,64,11,2,2,11,32,136,255,3,2,2,3,32,128,22,7,2,22,72,152,255,6,2,1,6,32,144,18,6,1,18,64,136,255,4,2,40,7,3,42,7,15,40,11,14,44,15,19,192,255,4,1,40,7,15,42,11,19,40,13,14,42,255,1,14,42,2,8,40,2,15,192,3,2,7,10,10,7,12,13,192,13,6,40,14,11,40,255,1,1,40,1,9,40,2,18,240,4,14,40,7,9,40,11,4,44,14,9,192,15,4,40,17,8,42,255,1,9,192,2,4,240,2,16,192,4,16,40,8,15,44,9,15,40,10,11,40,255,4,15,40,6,10,44,12,2,40,18,2,42,19,17,40,255,5,3,40,7,0,192,13,4,42,15,3,40,255,1,18,40,2,10,192,4,15,240,6,13,40,8,12,7,10,19,40,255,1,18,40,2,9,192,7,11,40,8,9,42,11,4,240,15,3,40,255,3,16,40,8,9,192,10,7,40,12,0,44,14,17,192,15,17,40,16,17,192,20,9,40,21,3,42,255,5,10,40,8,6,40,10,9,40,13,5,44,15,5,40,17,0,192,255,3,14,40,9,10,40,10,14,42,12,14,44,15,14,40,24,7,40,255,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,2,142,143,211,142,143,142,254,2,143,142,211,143,142,143,254,226,253,96,254,33,52,196,58,61,97,97,254,18,49,53,181,56,59,62,96,96,254,18,50,54,181,57,60,63,97,97,254,18,49,53,226,253,96,254,18,50,54,226,253,97,254,18,51,55,226,253,96,254,226,253,97,254,226,253,96,254,226,253,97,254,226,253,96,254,226,253,97,254,211,58,96,96,254,196,56,59,97,97,254,196,57,60,96,96,254,65,52,226,253,97,254,50,49,53,166,58,61,64,67,96,96,254,50,50,54,151,56,59,62,65,68,97,97,254,50,51,55,151,57,60,63,66,69,96,96,254,226,253,97,254,226,253,96,254,226,253,97,254,181,112,114,114,96,96,254,97,129,181,113,115,115,97,97,254,226,253,96,254,226,253,97,254,254,33,52,254,18,49,53,254,18,50,54,226,253,97,254,18,49,53,226,253,96,254,18,50,54,226,253,97,254,18,51,55,113,129,196,112,114,96,96,254,113,129,196,113,115,97,97,254,226,253,96,254,226,253,97,254,166,58,61,64,67,96,96,254,151,56,59,62,65,68,97,97,254,151,57,60,63,66,69,96,96,254,226,253,97,254,81,130,145,99,226,253,96,254,81,130,145,100,226,253,97,254,81,130,145,99,226,253,96,254,81,128,145,100,226,253,97,254,211,99,96,96,254,209,100,254,209,99,254,209,100,254,254,254,254,254,254,254,17,52,209,99,254,2,49,53,211,100,97,97,254,2,50,54,226,253,96,254,2,51,55,226,253,97,254,226,253,96,254,226,253,97,254,17,129,81,99,226,253,96,254,82,100,99,226,253,97,254,97,100,145,99,226,253,96,254,145,100,226,253,97,254,49,95,145,99,226,253,96,254,145,100,226,253,97,254,211,99,96,96,254,211,100,97,97,254,145,99,254,145,100,254,145,99,254,145,100,254,115,253,99,254,17,244,49,244,81,244,115,253,100,196,58,61,64,67,254,181,56,59,62,65,68,254,181,57,60,63,66,69,254,66,106,107,181,58,61,64,67,60,254,65,99,166,56,71,61,64,67,60,254,50,99,100,165,70,59,62,65,68,254,49,100,166,57,60,63,66,69,60,254,49,100,254,254,254,211,58,61,64,254,196,56,59,62,65,254,33,52,196,57,60,63,66,254,18,49,53,254,18,50,54,254,18,49,53,254,18,50,54,254,18,51,55,254,254,254,254,254,254,196,58,61,64,67,254,181,56,59,62,65,68,254,181,57,60,63,66,69,254,254,196,112,114,99,99,254,33,52,196,113,115,100,100,254,18,49,53,254,18,50,54,254,18,51,55,166,253,99,254,166,253,100,254,254,129,244,161,244,193,244,225,244,254,254,136,253,99,254,136,253,100,254,254,129,244,161,244,193,244,225,244,254,254,106,253,99,254,106,253,100,254,120,253,244,254,102,106,107,106,107,106,105,241,99,254,241,100,254,196,106,107,106,107,254,82,244,127,226,253,96,254,82,244,127,226,253,97,254,82,244,127,226,253,96,254,82,244,127,226,253,97,254,82,244,127,226,253,96,254,82,244,127,226,253,97,254,226,253,96,254,161,129,226,253,97,254,116,112,114,114,129,226,253,96,254,17,52,116,113,115,115,129,226,253,97,254,2,49,53,226,253,96,254,2,50,54,226,253,97,254,2,51,55,226,253,96,254,166,58,61,64,67,97,97,254,151,56,59,62,65,68,96,96,254,151,57,60,63,66,69,97,97,254,226,253,96,254,226,253,97,254,166,99,99,99,99,96,96,254,166,100,100,100,100,97,97,254,254,254,97,127,254,33,129,82,244,127,254,33,129,82,244,127,254,33,129,82,244,127,226,253,97,254,226,253,96,254,226,253,97,254,226,253,96,254,254,181,253,99,254,33,52,181,253,100,254,18,49,53,136,99,99,106,107,99,99,106,107,254,18,50,54,136,100,100,99,99,100,100,99,99,254,18,51,55,136,106,107,100,100,106,107,100,100,254,226,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,241,143,254,241,142,254,33,142,241,143,254,0,19,36,143,142,142,142,142,142,142,142,142,142,142,19,36,142,254,0,33,72,142,143,143,143,143,143,143,143,143,143,143,33,72,143,254,0,253,127,254,41,244,244,244,244,244,244,244,244,128,241,127,254,41,244,244,244,244,244,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,244,241,127,254,11,127,127,244,244,244,244,244,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,241,127,254,11,127,127,244,244,244,244,130,244,244,244,130,211,116,119,127,254,11,127,127,244,244,244,244,130,244,244,244,129,211,117,120,127,254,0,114,114,114,114,114,114,114,114,114,114,114,114,114,118,121,127,254,5,100,99,106,107,105,226,101,103,254,6,99,100,99,106,107,105,226,102,104,254,31,253,93,254,31,253,93,254,3,106,107,105,226,101,103,254,6,99,106,107,106,107,105,226,102,104,254,3,100,106,107,226,101,103,254,2,99,105,196,112,114,102,104,254,2,100,105,196,113,115,101,103,254,5,99,100,99,106,107,226,102,104,254,6,100,99,100,106,107,105,226,101,103,254,5,99,100,106,107,105,226,102,104,254,5,100,99,106,107,105,226,101,103,254,5,99,100,106,107,105,226,102,104,254,5,100,106,107,106,107,226,101,103,254,7,99,99,99,99,106,107,105,226,102,104,254,5,100,100,100,100,105,226,101,103,254,5,99,99,99,99,105,226,102,104,254,4,253,100,181,112,114,114,101,103,254,6,99,106,107,106,107,105,181,113,115,115,102,104,254,4,99,106,107,105,226,101,103,254,3,100,99,105,226,102,104,254,3,99,100,105,226,101,103,254,3,100,106,107,181,112,114,114,102,104,254,4,99,106,107,105,181,113,115,115,101,103,254,2,100,105,226,102,104,254,2,106,107,226,101,103,254,3,106,107,105,226,102,104,254,5,99,106,107,106,107,241,101,254,2,100,99,241,102,254,3,99,100,105,241,101,254,2,100,105,241,102,254,113,129,177,129,241,101,254,113,130,177,130,241,102,254,113,129,177,129,241,101,254,49,95,241,102,254,3,106,107,105,211,101,103,101,254,2,100,105,211,102,104,102,254,3,99,106,107,226,101,103,254,2,100,105,226,102,104,254,2,244,99,226,101,103,254,18,100,105,226,102,104,254,0,244,99,105,93,93,93,93,93,93,93,93,93,93,93,93,93,254,31,100,105,93,93,93,93,93,93,93,93,93,93,93,93,93,254,0,244,99,105,93,93,93,93,93,93,93,93,101,103,93,93,93,254,31,100,105,93,93,93,93,93,93,93,93,102,104,93,93,93,254,0,244,106,105,93,93,93,93,93,93,93,93,93,93,93,93,93,254,31,112,114,99,105,93,93,93,93,93,93,93,93,93,93,93,254,31,113,115,100,105,93,93,93,93,93,93,93,93,93,93,93,254,226,102,104,254,97,244,161,130,226,101,103,254,161,129,226,102,104,254,97,244,146,95,130,226,101,103,254,161,129,226,102,104,254,97,244,161,130,226,101,103,254,226,102,104,254,254,254,254,5,106,107,106,107,105,211,106,107,106,254,19,106,107,105,226,101,103,254,226,102,104,254,254,254,226,101,103,254,226,102,104,254,226,101,103,254,226,102,104,254,254,254,18,99,105,145,244,177,99,254,2,99,100,145,244,177,100,254,3,100,106,105,145,244,177,99,254,3,99,99,105,145,244,177,100,254,3,100,100,105,254,31,253,93,254,31,253,93,254,31,253,93,254,3,99,99,105,177,99,254,4,100,100,106,105,113,129,177,100,254,31,253,93,254,31,253,93,254,3,106,107,105,178,99,105,254,178,100,105,254,178,99,105,254,179,100,106,105,254,178,106,105,254,180,106,107,106,105,254,179,106,107,105,254,178,99,105,254,178,100,105,254,179,106,107,105,254,19,106,107,105,254,3,99,99,105,254,3,100,100,105,162,106,105,254,3,106,107,105,163,106,107,105,254,3,106,107,105,254,3,99,106,107,254,2,100,105,163,106,107,105,254,3,106,107,105,165,106,107,106,107,105,254,31,253,93,254,31,93,93,93,93,93,93,93,106,107,106,107,106,105,93,93,254,31,93,93,93,93,93,93,93,106,107,106,107,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,93,93,93,93,93,93,93,93,93,93,237,106,105,93,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,3,100,99,105,226,101,103,254,4,99,100,106,105,226,102,104,254,3,100,99,105,254,3,99,100,105,254,2,100,99,254,3,99,100,105,254,5,100,99,106,107,105,254,4,99,100,106,105,254,3,100,99,105,254,3,99,100,105,254,3,100,99,105,194,99,105,254,5,99,100,99,106,105,193,100,254,5,100,99,100,106,107,194,99,105,254,4,99,100,106,105,194,100,105,254,3,100,99,105,254,3,99,100,105,254,2,100,99,254,2,99,100,115,106,107,105,254,2,100,105,118,99,106,107,106,107,105,254,2,106,105,116,100,106,107,105,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,93,93,93,93,93,93,106,107,105,93,93,93,93,93,93,254,31,93,93,93,93,93,93,99,106,107,105,93,93,93,93,93,254,31,93,93,93,93,93,93,100,106,105,93,93,93,93,93,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,31,253,93,254,0,253,127,254,226,253,127,254,226,253,127,254,1,127,226,253,127,254,1,127,226,253,127,254,1,127,161,127,226,253,127,254,1,127,161,127,226,253,127,254,1,127,161,130,226,253,127,254,1,127,161,127,226,253,127,254,1,127,161,128,226,253,127,254,1,127,113,128,162,253,127,226,253,127,254,1,127,147,253,127,226,253,127,254,1,127,162,237,127,226,253,127,254,1,127,113,127,162,237,127,226,253,127,254,1,127,162,237,127,226,253,127,254,1,127,65,127,147,253,127,226,253,127,254,1,127,65,127,102,244,244,244,244,244,130,226,253,127,254,5,127,127,116,119,127,102,244,244,244,244,244,130,226,253,127,254,5,127,127,117,120,127,102,244,244,244,244,244,130,226,253,127,254,0,114,114,118,121,127,127,127,127,127,127,127,127,127,127,127,127,254,254,33,90,161,95,225,108,254,46,91,73,94,94,94,94,94,94,94,94,94,94,109,108,254,33,92,113,90,226,108,109,254,121,91,73,94,94,94,94,94,109,108,254,113,92,226,108,109,254,33,52,225,109,254,18,49,53,254,18,50,54,254,18,49,53,129,244,196,112,114,114,108,254,18,50,54,129,244,196,113,115,115,109,254,18,51,55,254,254,254,196,253,110,254,196,253,110,254,254,254,196,253,110,254,129,244,196,253,110,254,254,65,90,97,90,254,76,91,73,91,73,94,94,94,94,94,94,94,94,254,65,92,97,92,254,33,52,145,244,254,18,49,53,254,18,50,54,145,244,254,18,51,55,97,52,254,82,49,53,145,244,254,82,50,54,254,82,49,53,145,244,254,82,50,54,254,82,51,55,254,17,52,254,2,49,53,254,2,50,54,177,90,254,2,49,53,181,91,73,94,94,94,254,2,50,54,177,92,254,2,51,55,254,254,196,253,108,254,52,112,114,114,108,196,253,109,254,52,113,115,115,109,196,253,108,254,196,253,109,254,254,17,52,226,110,108,254,2,49,53,166,108,108,108,108,108,109,254,2,50,54,166,109,109,109,109,109,108,254,2,51,55,166,108,108,108,108,108,109,254,165,253,109,254,254,97,95,166,253,110,254,254,166,253,110,254,49,52,254,34,49,53,166,253,110,254,34,50,54,166,253,110,254,34,51,55,254,254,254,211,253,108,254,211,253,109,254,241,108,254,17,130,49,90,97,108,241,109,254,17,130,61,91,73,94,109,94,94,94,94,94,94,94,94,108,254,17,130,50,92,244,97,108,241,109,254,17,130,65,244,97,109,161,129,241,108,254,17,130,65,244,97,108,161,129,241,109,254,17,130,65,244,97,109,161,129,241,108,254,17,128,65,244,97,108,161,129,241,109,254,17,130,65,244,97,109,181,91,73,94,94,108,254,17,130,65,244,97,108,241,109,254,17,130,97,109,241,108,254,241,109,254,151,91,88,94,94,94,94,108,254,17,52,241,109,254,2,49,53,211,253,108,254,2,50,54,211,253,109,254,2,51,55,254,254,226,253,108,254,17,52,226,253,109,254,2,49,53,196,112,114,108,110,254,2,50,54,196,113,115,109,108,254,2,49,53,145,95,226,108,109,254,2,50,54,226,109,110,254,2,51,55,114,108,90,254,121,109,91,73,94,94,94,94,94,94,254,114,108,92,254,113,109,254,254,254,113,108,254,113,109,254,113,108,254,33,90,113,109,161,90,254,46,91,88,94,94,94,94,94,94,87,88,94,91,73,94,254,33,92,161,92,254,209,108,254,209,109,254,164,253,108,254,33,244,65,244,97,244,129,244,164,253,109,254,254,254,12,108,110,110,110,110,110,110,110,110,110,108,110,254,1,109,161,109,254,1,108,97,108,254,1,109,97,109,254,1,108,104,253,110,254,1,109,254,8,108,110,110,110,110,110,110,110,254,1,109,113,108,254,1,108,113,109,254,1,109,49,108,180,253,108,254,1,108,60,109,110,110,110,110,110,110,110,109,109,109,109,254,1,109,225,108,254,1,108,225,109,254,8,109,110,110,110,110,110,110,110,225,108,254,225,109,254,225,110,254,3,108,85,86,226,108,110,254,3,109,85,90,97,90,226,109,110,254,0,108,85,91,73,94,94,87,88,94,94,94,94,94,94,108,110,254,3,109,85,92,97,92,226,109,108,254,3,108,85,86,226,108,109,254,3,109,85,86,81,80,226,109,110,254,0,108,85,86,76,78,81,89,89,89,89,89,89,89,83,108,110,254,6,109,85,86,77,79,82,211,84,109,108,254,3,108,85,86,226,108,109,254,3,109,85,86,226,109,110,254,3,108,85,86,81,80,226,108,110,254,0,109,85,86,76,78,81,89,89,89,89,89,89,89,83,109,108,254,6,108,85,86,77,79,82,211,84,108,109,254,3,109,85,86,226,109,110,254,3,108,85,86,166,108,110,108,110,108,110,254,3,109,85,86,166,109,108,109,108,109,108,254,0,108,85,93,93,93,93,93,93,93,93,108,109,108,109,108,109,254,0,109,85,93,93,93,93,93,93,93,93,109,110,109,110,109,110,254,0,108,85,93,93,93,93,93,93,93,93,108,108,108,108,108,108,254,3,109,85,86,166,253,109,254,3,108,85,86,211,110,108,110,254,8,109,85,86,58,61,64,67,80,226,109,108,254,0,108,85,56,59,62,65,68,81,89,89,89,89,89,83,108,109,254,8,109,85,57,60,63,66,69,82,161,129,211,84,109,110,254,3,108,85,86,161,129,226,253,108,254,3,109,85,86,161,129,226,253,109,254,3,108,85,86,226,108,110,254,3,109,85,86,226,109,108,254,3,108,85,86,113,80,226,108,109,254,3,109,85,86,91,76,78,81,89,89,89,89,89,83,109,110,254,3,108,85,86,83,77,79,82,211,84,108,108,254,3,109,85,86,211,108,109,109,254,3,108,85,86,194,108,109,254,3,109,85,86,178,108,109,254,3,108,85,86,162,108,109,254,3,109,85,86,146,108,109,254,3,108,85,86,145,109,254,3,109,85,86,254,3,108,85,86,254,3,109,85,86,254,31,253,93,254,31,253,93,254,2,108,110,211,253,108,254,2,109,108,211,253,109,254,2,108,109,81,80,211,110,108,108,254,2,109,108,61,76,78,81,89,89,89,89,89,89,89,83,109,109,254,2,108,109,51,77,79,82,211,84,108,108,254,1,109,226,253,109,254,1,110,226,253,110,254,31,253,93,254,31,253,93,254,31,253,93,254,1,108,211,253,108,254,1,109,65,80,211,253,109,254,1,108,38,76,78,81,89,83,108,211,253,108,254,1,109,35,77,79,82,101,84,109,110,110,110,211,253,109,254,1,108,211,253,108,254,6,109,108,110,108,110,108,151,225,110,110,110,109,109,109,254,0,108,109,108,109,108,109,236,236,236,236,108,108,108,108,108,108,254,6,109,110,109,110,109,110,166,253,109,254,166,99,99,99,99,96,96,254,166,100,100,100,100,97,97,254,226,237,96,254,226,237,97,254,226,237,96,254,33,52,226,237,97,254,18,49,53,226,237,96,254,18,50,54,226,237,97,254,18,49,53,226,237,96,254,18,50,54,181,58,61,64,237,97,254,18,51,55,166,56,59,62,65,237,96,254,166,57,60,63,66,237,97,254,226,237,96,254,166,58,61,64,67,237,97,254,151,56,59,62,65,68,237,96,254,151,57,60,63,66,69,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,67,253,244,130,253,99,211,99,96,96,254,67,253,244,130,253,100,211,100,97,97,254,67,253,244,130,106,107,226,253,96,254,226,253,97,254,211,99,96,96,254,33,52,211,100,97,97,254,18,49,53,226,237,96,254,18,50,54,226,237,97,254,18,51,55,211,99,96,96,254,211,100,97,97,254,226,237,96,254,226,237,97,254,211,99,96,96,254,211,100,97,97,254,226,237,96,254,226,237,97,254,211,99,96,96,254,211,100,97,97,254,226,237,96,254,226,237,97,254,129,99,226,237,96,254,129,100,226,237,97,254,114,253,99,226,237,96,254,114,253,100,226,237,97,254,226,237,96,254,33,52,226,237,97,254,18,49,53,226,237,96,254,18,50,54,226,237,97,254,18,51,55,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,226,237,96,254,226,237,97,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,202,80,214,80,215,80,228,80,241,80,253,80,254,80,11,81,24,81,37,81,50,81,62,81,62,81,63,81,79,81,92,81,117,81,145,81,167,81,183,81,196,81,215,81,234,81,6,82,25,82,43,82,0,65,1,7,0,24,16,91,17,10,16,7,0,75,1,10,0,45,16,20,0,118,16,1,17,16,16,36,17,11,16,0,0,43,1,15,0,44,16,31,17,11,16,39,17,1,1,9,0,32,16,93,17,20,16,25,0,39,16,10,17,6,16,42,0,81,16,14,17,6,16,2,0,99,1,15,17,7,16,6,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,40,16,10,17,11,16,37,17,17,16,17,17,8,16,4,0,28,16,4,17,4,1,3,0,31,16,2,17,13,16,7,0,47,16,1,17,13,16,4,0,29,1,12,0,89,16,3,17,15,0,31,32,10,0,34,16,0,17,22,16,61,17,26,16,0,0,27,16,47,17,15,1,1,0,41,16,4,17,13,16,10,0,64,1,12,33,1,32,8,0,41,32,23,0,71,16,23,17,24,16,26,0,18,16,7,17,12,16,1,0,21,16,9,17,11,16,32,0,29,1,1,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,38,16,3,17,13,16,9,0,8,16,12,17,13,16,10,0,24,16,4,17,11,16,4,0,34,16,1,17,17,16,2,0,61,16,8,17,12,16,13,0,112,1,5,17,7,16,4,0,32,16,13,17,28,16,26,0,37,1,16,17,5,16,6,0,44,16,3,17,17,16,14,0,38,16,16,17,23,16,3,0,20,1,13,0,27,16,10,0,42,17,13,16,3,0,14,32,6,0,26,16,3,17,9,16,8,0,23,16,8,1,5,17,4,0,20,32,6,0,152,1,9,17,6,16,2,0,45,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,174,104,227,104,54,105,115,105,12,105,189,105,158,105,233,105,122,104,109,104,97,105,195,104,239,104,66,105,128,105,22,105,203,105,239,104,15,106,239,104,239,104,128,105,80,106,156,106,105,106,144,106,168,106,168,106,117,106,168,106,148,112,159,112,170,112,181,112,192,112,203,112,214,112,225,112,193,121,204,121,215,121,226,121,237,121,248,121,3,122,14,122,79,126,25,122,36,122,245,197,213,229,62,3,224,255,251,240,223,254,1,40,64,254,2,40,90,240,222,167,32,90,14,211,242,167,40,7,175,226,62,8,234,224,223,205,89,107,205,121,107,205,244,103,205,157,107,205,184,109,205,239,107,175,234,224,223,234,232,223,234,240,223,234,248,223,224,223,62,7,224,255,225,209,193,241,217,205,75,107,175,234,225,223,234,241,223,234,249,223,62,48,224,222,33,236,103,205,223,106,24,207,33,240,103,24,246,175,224,222,24,179,33,222,255,53,126,254,40,40,237,254,32,40,225,254,24,40,229,254,16,32,176,52,24,173,178,227,131,199,178,227,193,199,250,240,223,254,1,40,13,250,241,223,254,1,40,43,201,128,58,32,176,198,234,241,223,33,63,223,203,254,175,234,244,223,224,26,33,71,112,205,25,107,240,4,230,31,71,62,208,128,234,245,223,33,3,104,195,230,106,240,4,230,7,71,33,244,223,52,126,33,245,223,254,14,48,10,52,52,126,230,248,176,14,29,226,201,254,30,40,5,53,53,53,24,239,175,234,241,223,224,26,33,63,223,203,190,1,54,223,10,111,12,10,103,205,25,107,201,0,176,83,128,199,62,3,33,104,104,195,185,106,60,128,160,80,132,205,155,104,200,62,14,33,117,104,195,185,106,0,128,210,10,134,61,128,163,9,135,250,225,223,24,12,250,225,223,254,3,200,250,225,223,254,5,200,254,4,200,254,6,200,254,8,200,254,11,200,201,205,149,104,200,62,16,33,134,104,205,185,106,33,228,223,54,10,44,54,134,201,205,12,107,167,202,244,104,33,228,223,94,44,86,229,33,15,0,25,14,19,125,226,71,12,124,230,63,226,225,50,112,201,205,149,104,200,62,3,33,139,104,195,185,106,205,12,107,167,192,175,234,225,223,224,16,224,18,33,31,223,203,190,201,0,128,226,6,135,0,128,226,131,135,205,144,104,200,33,2,105,195,185,106,33,228,223,52,126,254,4,40,6,254,24,202,244,104,201,33,7,105,205,216,106,201,87,150,140,48,199,87,150,140,53,199,205,155,104,200,62,8,33,44,105,195,185,106,205,12,107,167,192,33,228,223,126,52,254,0,40,6,254,1,202,244,104,201,33,49,105,195,216,106,84,0,154,32,135,62,96,234,230,223,62,5,33,92,105,195,185,106,39,128,138,16,134,62,16,234,230,223,62,5,33,110,105,195,185,106,205,12,107,167,192,33,230,223,62,16,134,119,254,224,202,244,104,14,19,226,12,62,134,226,201,44,128,211,64,132,205,155,104,200,62,8,33,153,105,195,185,106,58,128,227,32,134,243,179,163,147,131,115,99,83,67,51,35,35,19,0,250,225,223,254,8,200,62,6,33,170,105,195,185,106,205,12,107,167,192,33,228,223,78,52,6,0,33,175,105,9,126,167,202,244,104,14,18,226,12,12,62,135,226,201,62,6,33,241,105,195,185,106,0,48,240,167,199,0,48,240,177,199,0,48,240,186,199,0,48,240,196,199,0,48,240,212,199,0,48,240,203,199,205,12,107,167,192,250,228,223,60,234,228,223,254,1,40,19,254,2,40,20,254,3,40,21,254,4,40,22,254,5,40,23,195,244,104,33,246,105,24,18,33,251,105,24,13,33,0,106,24,8,33,5,106,24,3,33,10,106,195,216,106,0,244,87,128,62,48,33,76,106,195,185,106,250,249,223,254,1,200,201,0,44,30,128,31,45,47,61,63,0,205,88,106,200,62,6,33,95,106,195,185,106,205,12,107,167,192,33,252,223,78,52,6,0,33,99,106,9,126,167,40,36,224,34,201,0,109,84,128,62,22,33,140,106,195,185,106,0,242,85,128,205,88,106,200,62,21,33,152,106,195,185,106,205,12,107,167,192,175,234,249,223,224,33,33,79,223,203,190,201,245,29,240,209,18,28,241,28,18,29,175,18,28,28,18,28,18,123,254,229,40,9,254,245,40,19,254,253,40,22,201,197,14,16,6,5,24,19,197,14,22,6,4,24,12,197,14,26,6,5,24,5,197,14,32,6,4,42,226,12,5,32,250,193,201,28,224,209,28,61,203,39,79,6,0,9,78,35,70,105,96,124,201,213,107,98,52,42,190,32,3,45,175,119,209,201,197,14,48,42,226,12,121,254,64,32,248,193,201,175,234,225,223,234,233,223,234,241,223,234,249,223,234,31,223,234,47,223,234,63,223,234,79,223,224,223,224,222,62,255,224,37,62,3,224,216,62,1,224,18,224,23,224,33,175,224,16,224,26,201,17,224,223,26,167,40,12,33,31,223,203,254,33,0,103,205,250,106,233,28,26,167,40,7,33,22,103,205,253,106,233,201,17,248,223,26,167,40,12,33,79,223,203,254,33,44,103,205,250,106,233,28,26,167,40,7,33,52,103,205,253,106,233,201,205,38,107,201,33,232,223,42,167,200,119,254,255,40,241,71,33,60,103,120,230,31,205,253,106,205,136,108,205,185,107,201,250,233,223,167,200,33,43,108,61,40,6,35,35,35,35,24,247,42,224,216,42,224,214,42,224,217,42,224,218,175,224,213,224,215,201,250,249,223,254,1,192,126,203,79,62,247,40,2,62,127,205,31,108,201,250,233,223,167,40,46,33,213,255,205,220,107,250,179,255,254,5,40,33,240,216,254,1,40,31,254,3,40,23,52,42,190,192,45,54,0,44,44,52,240,217,203,70,202,31,108,240,218,14,37,226,201,62,255,24,248,240,217,24,244,2,36,101,86,1,0,189,0,2,32,127,183,1,0,237,0,2,24,127,247,2,64,127,247,2,64,127,247,3,24,127,247,3,16,90,165,1,0,101,0,3,0,0,0,2,8,127,181,1,0,237,0,1,0,237,0,3,0,0,0,1,0,237,0,2,24,126,231,1,24,237,231,1,0,222,0,42,79,126,71,10,18,28,3,10,18,201,42,18,28,42,18,201,205,75,107,175,234,213,255,234,215,255,17,0,223,6,0,42,18,28,205,130,108,17,16,223,205,130,108,17,32,223,205,130,108,17,48,223,205,130,108,17,64,223,205,130,108,33,16,223,17,20,223,205,119,108,33,32,223,17,36,223,205,119,108,33,48,223,17,52,223,205,119,108,33,64,223,17,68,223,205,119,108,1,16,4,33,18,223,54,1,121,133,111,5,32,248,175,234,30,223,234,46,223,234,62,223,201,229,175,224,26,107,98,205,25,107,225,24,42,205,46,109,205,67,109,95,205,46,109,205,67,109,87,205,46,109,205,67,109,79,44,44,115,44,114,44,113,45,45,45,45,229,33,208,255,126,225,254,3,40,202,205,46,109,195,209,109,213,42,95,58,87,19,123,34,122,50,209,201,213,42,95,58,87,19,19,24,241,42,79,58,71,10,71,201,225,24,43,240,208,254,3,32,16,250,56,223,203,127,40,9,126,254,6,32,4,62,64,224,28,229,125,198,9,111,126,167,32,222,125,198,4,111,203,126,32,214,225,205,216,110,45,45,195,170,110,45,45,45,45,205,58,109,125,198,4,95,84,205,119,108,254,0,40,31,254,255,40,4,44,195,207,109,45,229,205,58,109,205,67,109,95,205,46,109,205,67,109,87,225,123,34,122,50,24,213,33,233,223,54,0,205,75,107,201,33,233,223,126,167,200,62,1,224,208,33,16,223,44,42,167,202,120,109,53,194,77,109,44,44,205,67,109,254,0,202,125,109,254,157,202,254,108,230,240,254,160,32,26,120,230,15,79,6,0,229,17,1,223,26,111,19,26,103,9,126,225,45,34,205,46,109,205,67,109,120,79,6,0,205,46,109,240,208,254,4,202,46,110,229,125,198,5,111,93,84,44,44,121,254,1,40,15,54,0,33,112,111,9,42,18,28,126,18,225,195,69,110,54,1,225,24,23,229,17,70,223,33,2,112,9,42,18,28,123,254,75,32,248,14,32,33,68,223,24,45,229,240,208,254,1,40,33,254,2,40,25,14,26,250,63,223,203,127,32,5,175,226,62,128,226,12,44,44,44,44,42,95,22,0,24,21,14,22,24,5,14,16,62,0,12,44,44,44,58,167,32,79,42,95,44,42,87,229,44,44,42,167,40,2,30,1,44,44,54,0,44,126,225,203,127,32,19,122,226,12,123,226,12,42,226,12,126,246,128,226,125,246,5,111,203,134,225,45,58,50,45,17,208,255,26,254,4,40,9,60,18,17,16,0,25,195,197,109,33,30,223,52,33,46,223,52,33,62,223,52,201,6,0,229,225,44,24,172,120,203,63,111,38,0,25,94,201,229,125,198,6,111,126,230,15,40,22,224,209,240,208,14,19,254,1,40,14,14,24,254,2,40,8,14,29,254,3,40,2,225,201,44,42,95,126,87,213,125,198,4,111,70,240,209,254,1,24,9,254,3,24,0,33,255,255,24,28,17,57,111,205,207,110,203,64,32,2,203,51,123,230,15,203,95,40,6,38,255,246,240,24,2,38,0,111,209,25,125,226,12,124,226,24,191,0,0,0,0,0,0,16,0,15,0,0,17,0,15,240,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,1,18,16,255,239,0,15,44,0,156,0,6,1,107,1,201,1,35,2,119,2,198,2,18,3,86,3,155,3,218,3,22,4,78,4,131,4,181,4,229,4,17,5,59,5,99,5,137,5,172,5,206,5,237,5,10,6,39,6,66,6,91,6,114,6,137,6,158,6,178,6,196,6,214,6,231,6,247,6,6,7,20,7,33,7,45,7,57,7,68,7,79,7,89,7,98,7,107,7,115,7,123,7,131,7,138,7,144,7,151,7,157,7,162,7,167,7,172,7,177,7,182,7,186,7,190,7,193,7,196,7,200,7,203,7,206,7,209,7,212,7,214,7,217,7,219,7,221,7,223,7,0,0,0,0,0,192,161,0,58,0,192,177,0,41,1,192,129,0,41,4,192,1,35,69,103,137,171,205,239,254,220,186,152,118,84,50,16,1,18,35,52,69,86,103,120,137,154,171,188,205,221,238,255,1,35,86,120,153,152,118,103,154,223,254,201,133,66,17,0,1,35,69,103,137,171,204,205,0,12,176,187,0,251,187,187,0,3,6,12,24,48,9,18,36,4,8,2,4,8,16,32,64,12,24,48,5,10,1,0,5,10,20,40,80,15,30,60,3,6,12,24,48,96,18,36,72,8,16,0,7,14,28,56,112,21,42,84,4,8,16,32,64,128,24,48,96,0,87,112,229,115,233,115,235,115,0,0,0,119,112,163,115,167,115,169,115,0,0,0,98,112,233,114,245,114,1,115,21,115,0,119,112,130,114,136,114,0,0,142,114,0,87,112,35,116,47,116,59,116,71,116,0,98,112,188,117,200,117,212,117,236,117,0,98,112,210,119,220,119,230,119,242,119,0,119,112,236,112,248,112,4,113,16,113,24,113,64,113,64,113,93,113,255,255,238,112,32,113,144,113,144,113,173,113,255,255,250,112,48,113,226,113,226,113,19,114,255,255,6,113,101,114,116,114,255,255,18,113,157,102,0,128,165,1,1,0,157,118,0,129,164,66,62,58,169,54,54,54,54,54,54,0,157,55,112,160,164,82,78,76,169,72,72,72,72,72,72,0,164,1,169,58,1,163,62,162,76,167,1,169,52,76,1,72,163,68,62,169,68,1,164,62,169,1,165,1,0,164,1,169,62,1,62,1,1,62,1,1,1,1,1,58,163,54,52,169,48,1,52,1,1,66,164,1,165,1,164,1,169,62,1,62,1,1,62,1,1,1,1,1,58,163,54,52,165,1,1,0,164,1,169,76,1,163,78,162,82,167,1,169,68,82,1,78,163,76,72,169,76,1,164,68,169,1,165,1,0,164,1,169,78,1,78,1,1,78,1,1,1,1,1,76,163,72,68,169,66,1,68,1,1,72,164,1,165,1,164,1,169,78,1,78,1,1,78,1,1,1,1,1,76,163,72,68,164,66,62,58,54,0,163,68,169,68,1,58,163,68,169,68,1,58,163,68,169,68,1,58,163,68,169,68,1,58,163,54,169,54,1,68,163,54,169,54,1,68,163,54,169,54,1,68,163,54,169,54,1,68,0,163,72,169,72,1,62,163,72,169,72,1,62,163,72,169,72,1,62,163,72,169,72,1,62,163,58,169,58,1,72,163,58,169,58,1,72,163,58,169,58,1,72,163,58,169,58,1,72,163,72,169,72,1,62,163,72,169,72,1,62,163,72,169,72,1,62,163,72,169,72,1,62,163,82,82,78,78,76,76,72,72,0,163,6,6,6,6,11,11,169,11,11,11,11,11,11,0,169,6,1,1,16,1,6,1,6,1,16,1,6,0,148,114,255,255,130,114,181,114,255,255,136,114,209,114,255,255,142,114,157,115,0,128,169,1,162,26,1,34,16,20,24,26,1,40,34,1,1,26,1,34,16,20,24,26,1,163,1,169,1,1,0,157,147,0,128,162,26,1,34,16,20,24,26,1,40,34,1,1,26,1,34,16,20,24,26,1,164,1,0,162,6,1,1,6,1,6,6,1,6,6,1,1,6,1,1,6,1,6,6,1,164,1,0,32,115,39,115,39,115,90,115,255,255,235,114,27,115,39,115,39,115,90,115,255,255,247,114,110,115,115,115,115,115,115,115,115,115,133,115,133,115,115,115,255,255,3,115,142,115,255,255,21,115,157,128,0,129,0,157,48,0,128,167,1,0,164,64,163,62,169,56,62,56,171,1,168,54,163,40,42,162,42,46,163,42,46,165,40,164,64,163,62,169,56,62,56,171,1,168,54,163,40,42,162,42,46,163,50,161,46,50,46,42,165,40,0,165,42,164,1,50,165,60,164,56,163,56,162,60,56,165,54,1,1,1,0,157,55,112,160,0,163,64,66,64,66,64,66,64,78,64,66,64,66,64,66,64,60,0,66,80,66,80,66,80,66,80,0,163,6,162,6,6,163,6,162,6,6,163,6,162,6,6,163,11,162,6,6,0,190,115,0,0,171,115,212,115,157,161,0,128,160,1,161,88,84,82,78,74,166,1,162,64,1,50,1,157,48,0,128,161,88,84,82,78,74,166,1,157,161,0,128,162,78,1,82,1,0,157,55,112,32,161,88,84,82,78,74,166,1,162,96,1,98,1,237,115,0,0,255,115,17,116,157,96,0,128,168,82,162,82,1,82,1,82,1,168,86,88,90,0,157,131,0,128,168,74,162,74,1,74,1,74,1,168,78,80,82,0,157,23,112,33,168,112,162,112,1,112,1,112,1,168,116,118,120,0,95,116,145,116,145,116,24,117,255,255,37,116,79,116,185,116,185,116,72,117,255,255,49,116,111,116,239,116,239,116,120,117,255,255,61,116,133,116,163,117,255,255,73,116,157,162,0,128,162,64,68,1,72,1,68,1,64,165,60,0,157,130,0,128,162,74,74,1,74,1,74,1,74,165,68,0,157,55,112,160,162,82,84,1,88,1,84,1,82,64,54,1,48,40,1,1,1,0,162,6,6,1,6,1,6,1,6,165,6,0,162,58,1,1,167,64,163,58,164,1,50,170,54,68,68,68,72,74,165,1,162,58,58,1,167,64,163,58,165,1,170,72,1,1,54,58,60,165,58,0,162,74,1,1,167,82,163,74,162,68,78,1,84,164,68,170,72,84,84,84,88,92,162,88,82,1,74,164,64,162,74,74,1,167,82,163,74,162,68,78,1,84,164,68,170,72,1,1,72,74,78,165,74,0,167,50,58,163,64,167,60,68,163,74,167,64,72,163,54,167,50,58,163,64,167,50,58,163,64,167,60,68,163,74,167,64,72,163,54,167,50,58,163,64,0,170,68,68,68,68,64,60,167,64,50,163,1,162,54,1,1,54,54,58,1,60,165,64,170,68,1,68,68,72,74,167,72,64,163,1,167,68,64,163,60,162,1,60,1,1,164,64,0,170,84,84,84,84,82,78,167,82,74,163,1,162,72,1,1,72,72,74,1,78,165,82,170,84,1,84,84,88,92,167,88,82,163,1,167,84,82,163,78,162,1,68,1,1,164,72,0,167,60,68,163,74,167,50,58,163,64,167,64,72,163,54,167,50,58,163,64,167,60,68,163,74,167,58,64,163,72,167,60,68,163,74,162,1,64,1,1,164,64,0,163,6,169,6,1,6,163,11,169,6,1,6,163,6,169,6,1,6,163,11,169,6,1,6,0,8,118,40,118,40,118,247,118,255,255,190,117,244,117,119,118,119,118,53,119,255,255,202,117,28,118,181,118,181,118,181,118,214,118,181,118,181,118,181,118,214,118,115,119,255,255,214,117,36,118,189,119,255,255,238,117,157,132,0,0,162,112,112,112,1,106,1,106,1,102,1,102,1,164,106,0,157,116,0,0,162,102,102,102,1,96,1,96,1,92,1,92,1,164,96,0,157,55,112,32,165,1,1,0,165,1,1,0,157,130,0,0,168,68,163,72,164,78,72,164,68,163,72,68,164,64,163,58,54,168,68,163,72,164,78,163,72,68,162,88,92,163,88,162,82,88,163,82,162,78,82,163,78,162,72,68,163,64,168,68,163,72,164,78,72,164,68,163,72,68,164,64,163,58,54,168,58,163,62,58,54,48,44,165,48,1,0,157,112,0,129,168,78,163,82,164,88,82,164,78,163,82,78,164,72,163,68,64,168,78,163,82,164,88,163,82,78,165,82,1,168,78,163,82,164,88,82,164,78,163,82,78,164,72,163,68,64,168,68,163,72,68,64,58,54,165,58,1,0,163,40,162,64,54,163,40,64,163,40,162,64,54,163,40,64,163,26,162,50,40,163,26,50,163,26,162,50,40,163,26,50,0,163,30,162,54,44,163,30,54,163,30,162,54,44,163,30,54,163,34,162,58,48,163,34,58,163,34,162,58,48,163,34,58,0,168,92,163,96,164,102,163,102,162,106,102,164,96,163,102,96,163,92,162,96,92,163,88,162,82,78,165,102,168,102,163,96,165,102,1,168,82,163,88,164,92,88,168,82,163,78,164,72,163,68,64,168,68,163,72,164,78,82,165,88,1,0,168,68,163,72,164,78,163,78,162,82,78,164,72,163,78,72,163,68,162,72,68,163,64,162,58,54,165,78,168,78,163,72,165,78,1,168,82,163,88,164,92,88,168,82,163,78,164,72,163,68,64,168,68,163,72,164,78,82,165,88,1,0,163,30,162,54,44,163,30,54,163,30,162,54,44,163,30,54,163,26,162,50,40,163,26,50,163,26,162,50,40,163,26,50,163,48,162,72,38,163,48,72,163,48,162,72,38,163,48,72,163,30,162,54,44,163,30,54,163,30,162,54,44,163,30,54,165,34,34,26,26,30,30,34,34,0,163,6,162,6,6,163,11,162,6,6,163,6,162,6,6,163,11,162,6,6,0,13,120,67,120,75,121,255,255,212,119,250,119,135,120,23,121,255,255,222,119,26,120,243,120,243,120,120,121,255,255,232,119,43,120,168,121,255,255,244,119,157,146,0,128,162,82,1,80,1,78,74,1,1,1,167,64,164,40,0,157,98,0,128,165,1,162,1,167,40,164,16,0,157,55,112,32,162,112,1,110,1,108,106,1,1,164,1,64,0,166,6,161,6,163,11,166,6,161,6,163,11,162,1,6,1,1,166,11,161,6,163,6,0,163,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,74,1,74,1,74,1,74,165,1,163,1,110,164,110,163,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,74,1,74,1,74,1,74,165,1,166,1,161,110,163,1,164,86,0,163,82,1,166,78,161,74,166,1,161,82,168,1,166,74,161,78,162,82,1,82,1,163,78,74,82,84,88,92,1,74,74,68,64,166,1,161,74,164,1,163,60,64,68,72,163,1,112,164,112,163,82,1,166,78,161,74,166,1,161,82,168,1,166,74,161,78,162,82,1,82,1,163,78,74,92,88,98,166,82,161,78,163,1,74,74,78,82,166,1,161,74,164,1,163,84,82,74,78,166,1,161,112,163,1,164,88,0,163,50,166,88,161,40,163,50,88,50,90,50,90,50,92,50,92,50,94,68,94,60,92,60,92,58,88,58,88,78,82,84,86,165,1,0,163,1,92,96,98,163,96,166,1,161,88,164,1,163,84,1,166,88,161,84,163,1,162,82,1,84,1,86,1,88,1,163,1,92,96,98,163,96,166,1,161,88,164,1,163,104,102,1,98,165,1,0,163,1,74,78,68,78,166,64,161,72,163,1,64,68,60,166,72,161,68,163,54,165,1,163,1,74,78,68,78,166,64,161,72,163,1,64,50,50,1,50,1,1,1,1,0,163,60,74,60,74,58,74,58,74,54,92,54,92,162,74,1,78,1,80,1,82,1,163,60,74,60,74,58,74,58,74,66,80,66,80,161,88,1,88,1,162,84,1,82,1,78,1,0,163,6,166,6,161,6,163,11,166,6,161,6,163,6,166,6,161,6,163,11,166,6,161,6,0,0,110,112,193,125,199,125,0,0,205,125,0,119,112,98,125,102,125,104,125,0,0,0,98,112,16,125,22,125,28,125,34,125,0,98,112,23,124,45,124,65,124,69,124,0,87,112,178,123,0,0,182,123,0,0,0,98,112,232,123,236,123,0,0,0,0,0,130,112,65,123,75,123,0,0,0,0,0,130,112,255,122,3,123,5,123,0,0,0,119,112,199,122,205,122,0,0,0,0,0,119,112,47,122,55,122,63,122,71,122,77,122,146,122,255,255,49,122,94,122,167,122,255,255,57,122,111,122,181,122,255,255,65,122,128,122,255,255,71,122,157,144,0,0,165,1,30,32,164,34,36,163,38,40,42,44,0,157,160,0,0,165,1,16,18,164,20,22,163,24,26,28,30,0,157,55,112,32,165,1,40,42,164,44,46,163,48,50,52,54,0,161,6,6,6,6,11,6,6,6,6,6,6,6,11,6,6,6,0,157,96,0,193,164,30,42,40,52,165,50,1,164,30,42,40,52,165,54,1,0,157,131,0,0,162,16,14,12,10,8,6,4,2,0,161,40,64,38,62,36,60,34,58,32,56,30,54,28,52,26,50,0,211,122,255,255,199,122,233,122,255,255,205,122,157,132,0,128,162,64,66,64,66,64,66,64,66,64,70,76,82,88,82,76,70,0,157,116,0,128,162,16,18,16,18,16,18,16,18,34,40,46,52,58,52,46,40,0,7,123,0,0,33,123,52,123,157,96,0,129,163,60,74,84,74,64,74,60,58,42,157,48,0,129,161,58,60,58,54,164,58,0,157,128,0,129,163,68,74,92,164,88,163,82,164,74,163,78,165,74,0,157,55,112,33,168,84,82,164,66,163,60,165,50,83,123,113,123,83,123,122,123,0,0,130,123,161,123,130,123,170,123,157,102,0,129,163,88,96,102,96,86,96,102,96,84,96,102,96,82,88,98,88,80,88,98,88,78,88,96,88,0,76,82,88,92,88,74,86,78,0,82,88,92,86,164,96,64,0,157,102,0,129,164,120,163,116,112,168,120,162,112,116,163,120,120,116,112,120,122,126,130,1,112,112,104,164,102,120,0,163,106,112,116,120,164,116,102,0,163,122,106,110,102,165,112,0,184,123,0,0,202,123,157,80,0,128,161,64,1,64,1,64,1,163,66,162,70,164,74,0,157,23,112,160,162,120,120,120,163,122,162,126,161,130,112,130,112,130,112,130,112,130,112,130,112,130,112,130,112,0,238,123,0,0,3,124,157,115,0,128,163,30,161,1,163,30,161,1,163,30,161,1,163,30,161,1,0,157,211,0,192,163,28,161,1,163,28,161,1,163,28,161,1,163,28,161,1,75,124,82,124,108,124,82,124,111,124,75,124,82,124,108,124,82,124,111,124,0,0,118,124,125,124,149,124,125,124,158,124,118,124,125,124,149,124,125,124,158,124,165,124,165,124,235,124,255,255,69,124,157,147,0,128,163,1,0,162,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,64,1,64,1,64,1,64,0,165,1,0,1,74,1,74,74,1,0,157,195,0,192,163,56,0,164,66,162,70,76,74,70,163,80,80,162,80,84,74,76,163,70,70,162,70,76,74,70,0,66,90,88,84,80,76,74,70,0,66,80,70,74,66,1,0,157,23,112,32,163,1,162,66,80,56,80,66,80,56,80,66,80,56,80,66,80,56,80,56,94,70,94,56,94,70,94,66,90,88,84,80,76,74,70,66,80,56,80,66,80,56,80,66,80,56,80,66,80,56,80,56,94,70,94,56,94,70,94,66,80,56,80,66,1,0,163,1,162,6,11,6,11,6,11,11,11,6,11,6,11,6,161,11,11,162,6,11,6,11,6,11,6,11,11,11,11,6,11,6,11,1,0,52,125,255,255,16,125,40,125,255,255,22,125,64,125,255,255,28,125,85,125,255,255,34,125,157,84,0,128,162,80,78,76,74,72,70,0,157,52,0,128,162,58,56,54,52,50,48,0,157,23,112,32,168,68,167,68,74,168,80,80,168,68,167,68,74,168,80,80,0,162,6,6,6,167,11,162,6,6,6,167,11,0,125,125,0,0,106,125,146,125,157,209,0,128,167,50,54,58,60,64,68,72,74,78,82,84,88,92,0,157,65,0,128,170,1,167,50,54,58,60,64,68,72,74,78,82,84,88,92,0,157,55,112,32,162,74,1,82,78,1,84,82,1,88,84,1,92,88,1,96,92,1,98,96,1,102,98,1,106,102,1,108,106,1,112,108,1,116,112,1,120,116,1,122,120,1,126,211,125,255,255,193,125,249,125,255,255,199,125,63,126,255,255,205,125,157,145,0,128,162,64,78,64,78,64,78,64,78,68,82,68,78,68,82,68,78,74,88,74,88,74,88,74,88,78,78,74,74,72,72,68,68,0,157,145,0,128,161,96,102,112,96,102,112,96,102,112,96,102,112,96,102,112,1,92,100,112,92,100,112,92,100,112,92,100,112,92,100,112,1,98,106,112,98,106,112,98,106,112,98,106,112,98,106,112,1,110,92,110,92,106,112,106,88,102,86,102,86,98,106,98,82,0,162,6,161,6,6,162,6,161,6,6,162,6,161,6,6,0,0,119,112,90,126,104,126,118,126,144,126,158,126,170,126,204,126,204,126,249,126,255,255,94,126,165,126,170,126,204,126,204,126,249,126,255,255,108,126,36,127,41,127,41,127,59,127,59,127,76,127,76,127,110,127,136,127,110,127,145,127,255,255,128,126,178,127,178,127,178,127,178,127,219,127,255,255,152,126,157,48,0,129,170,1,0,157,144,0,129,0,163,76,58,68,76,80,62,72,80,82,64,74,82,86,68,78,86,90,72,82,90,92,74,82,92,90,72,82,90,92,74,82,92,0,162,90,1,1,82,1,1,72,1,1,86,1,92,1,90,86,165,82,1,162,1,162,90,1,1,82,1,1,72,1,164,82,162,1,80,82,164,86,162,1,164,76,80,1,0,168,82,162,80,82,164,86,72,168,90,162,86,90,163,92,76,82,80,168,82,162,80,82,164,86,72,168,90,162,86,90,163,96,74,82,88,164,92,98,165,90,86,0,157,55,112,160,0,162,68,68,92,92,68,68,92,92,68,68,92,92,68,68,92,92,0,58,58,82,82,58,58,82,82,58,58,82,82,58,58,82,82,0,163,82,82,82,82,80,80,80,80,78,78,78,78,76,76,76,76,68,68,68,68,66,66,66,66,62,62,62,62,72,72,72,72,0,162,44,44,68,68,44,44,68,68,44,44,68,68,44,44,68,68,42,42,66,66,42,42,66,66,0,38,38,62,62,48,48,72,72,0,40,40,64,64,40,40,64,64,40,40,64,64,40,40,64,64,48,48,58,66,48,48,58,66,48,48,56,62,48,48,56,62,0,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,161,6,6,162,11,0,162,6,6,16,6,6,6,16,6,6,6,16,6,6,6,16,6,0,255,255,255,195,98,103,195,38,107,255,255,255,255,255,255,255,255,255,255]],"A}SPn)@|;K4@45j;UT4o":["_pix",[]],"/|!9RA(;bcQML{0,LacV":["_DMGPALETTE",["#19394d","#38786f","#7eb97a","#eef2ae"]],"80s*CPv1XN%@|_(/A,i$":["_PALETTE RAM",[]],"co=Q#-C]T_}X,w7fOhbc":["_GBCPALETTELOOKUP",[]],"QHPemIrZSCXS)P]=c(?5":["_soundregs",[0,0,0.5,0,0,1,0,0]],"Sg#%}-2*EKW|ZXDbl4V7":[".vals",[80,248]],"X`qJ$waq$}Fv`dbd;h$x":["testroms",[]]},"broadcasts":{},"blocks":{"0":{"opcode":"control_repeat","next":"u8","parent":"f}","inputs":{"TIMES":[3,"bj2",[6,0]],"SUBSTACK":[2,"bj3"]},"fields":{},"shadow":false,"topLevel":false},"1":{"opcode":"control_if_else","next":null,"parent":"cS","inputs":{"CONDITION":[2,"Nd"],"SUBSTACK":[2,"k#"],"SUBSTACK2":[2,"oX"]},"fields":{},"shadow":false,"topLevel":false},"2":{"opcode":"control_if_else","next":null,"parent":"I","inputs":{"CONDITION":[2,"pP"],"SUBSTACK":[2,"xe"],"SUBSTACK2":[2,"3"]},"fields":{},"shadow":false,"topLevel":false},"3":{"opcode":"control_if_else","next":null,"parent":"2","inputs":{"CONDITION":[2,"pQ"],"SUBSTACK":[2,"xf"],"SUBSTACK2":[2,"/"]},"fields":{},"shadow":false,"topLevel":false},"4":{"opcode":"data_replaceitemoflist","next":"5","parent":"^","inputs":{"INDEX":[3,"y5",[7,0]],"ITEM":[3,"y6",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"5":{"opcode":"data_replaceitemoflist","next":"7","parent":"4","inputs":{"INDEX":[3,"y7",[7,0]],"ITEM":[3,"y8",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"6":{"opcode":"control_repeat","next":"fa","parent":"rR","inputs":{"TIMES":[3,"y,",[6,0]],"SUBSTACK":[2,"y-"]},"fields":{},"shadow":false,"topLevel":false},"7":{"opcode":"data_replaceitemoflist","next":"y9","parent":"5","inputs":{"INDEX":[3,"y!",[7,0]],"ITEM":[3,"y#",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"8":{"opcode":"control_repeat_until","next":"s|","parent":"tv","inputs":{"CONDITION":[2,"fv"],"SUBSTACK":[2,"zi"]},"fields":{},"shadow":false,"topLevel":false},"9":{"opcode":"control_repeat_until","next":"s=","parent":"s;","inputs":{"CONDITION":[2,"fu"],"SUBSTACK":[2,"zn"]},"fields":{},"shadow":false,"topLevel":false},"1@":{"opcode":"data_setvariableto","next":"aI)","parent":"1[","inputs":{"VALUE":[3,"aI*",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"1]":{"opcode":"operator_letter_of","next":null,"parent":"1^","inputs":{"LETTER":[3,"aI+",[6,"0"]],"STRING":[3,"bj4",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1^":{"opcode":"operator_join","next":null,"parent":"aI,","inputs":{"STRING1":[3,"1]",[10,""]],"STRING2":[3,"1_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1_":{"opcode":"operator_letter_of","next":null,"parent":"1^","inputs":{"LETTER":[3,"aI-",[6,"0"]],"STRING":[3,"bj5",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1`":{"opcode":"operator_letter_of","next":null,"parent":"1{","inputs":{"LETTER":[3,"aI.",[6,"0"]],"STRING":[3,"bj6",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1{":{"opcode":"operator_join","next":null,"parent":"aI/","inputs":{"STRING1":[3,"1`",[10,""]],"STRING2":[3,"1|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1|":{"opcode":"operator_letter_of","next":null,"parent":"1{","inputs":{"LETTER":[3,"aI:",[6,"0"]],"STRING":[3,"bj7",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"1}":{"opcode":"control_repeat","next":"pk","parent":"1~","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"s,"]},"fields":{},"shadow":false,"topLevel":false},"1~":{"opcode":"control_repeat","next":"s%","parent":"sM","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"1}"]},"fields":{},"shadow":false,"topLevel":false},"2a":{"opcode":"control_repeat","next":"s7","parent":"s*","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"s+"]},"fields":{},"shadow":false,"topLevel":false},"2b":{"opcode":"operator_or","next":null,"parent":"s!","inputs":{"OPERAND1":[2,"pn"],"OPERAND2":[2,"Az"]},"fields":{},"shadow":false,"topLevel":false},"2c":{"opcode":"control_repeat","next":"sQ","parent":"sO","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"sT"]},"fields":{},"shadow":false,"topLevel":false},"2d":{"opcode":"control_repeat","next":null,"parent":"R1","inputs":{"TIMES":[3,"aI;",[6,"0"]],"SUBSTACK":[2,"2e"]},"fields":{},"shadow":false,"topLevel":false},"2e":{"opcode":"data_setvariableto","next":"aI=","parent":"2d","inputs":{"VALUE":[3,"aI?",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"1[":{"opcode":"control_repeat","next":null,"parent":"R1","inputs":{"TIMES":[3,"aI@",[6,"0"]],"SUBSTACK":[2,"1@"]},"fields":{},"shadow":false,"topLevel":false},"2f":{"opcode":"operator_and","next":null,"parent":"s5","inputs":{"OPERAND1":[2,"z."],"OPERAND2":[2,"pi"]},"fields":{},"shadow":false,"topLevel":false},"Z":{"opcode":"procedures_call","next":"zD","parent":"ts","inputs":{"p.W2z1`Rlkajw{[guAjx":[3,"zE",[10,""]],"@QE_.PNN=VD]55Q*08eg":[3,"tt",[10,""]],".l0tZ#)A5%:X~dc=bb0~":[3,"s}",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~set bit %s of %s to %s","argumentids":"[\"p.W2z1`Rlkajw{[guAjx\",\"@QE_.PNN=VD]55Q*08eg\",\".l0tZ#)A5%:X~dc=bb0~\"]","warp":"true"}},"/8":{"opcode":"argument_reporter_string_number","next":null,"parent":"A%","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"/":{"opcode":"control_if_else","next":null,"parent":"3","inputs":{"CONDITION":[2,"pS"],"SUBSTACK":[2,"xg"],"SUBSTACK2":[2,":"]},"fields":{},"shadow":false,"topLevel":false},"S":{"opcode":"control_if","next":"D","parent":"k","inputs":{"CONDITION":[2,"x0"],"SUBSTACK":[2,"e8"]},"fields":{},"shadow":false,"topLevel":false},"T":{"opcode":"control_if","next":"U","parent":"e8","inputs":{"CONDITION":[2,"p1"],"SUBSTACK":[2,"bv"]},"fields":{},"shadow":false,"topLevel":false},"U":{"opcode":"control_if","next":"H","parent":"T","inputs":{"CONDITION":[2,"bw"],"SUBSTACK":[2,"bx"]},"fields":{},"shadow":false,"topLevel":false},"V":{"opcode":"data_replaceitemoflist","next":"x9","parent":"bx","inputs":{"INDEX":[3,"x!",[7,0]],"ITEM":[3,"p_",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"W":{"opcode":"control_if","next":"xn","parent":"e5","inputs":{"CONDITION":[2,"bk"],"SUBSTACK":[2,"xo"]},"fields":{},"shadow":false,"topLevel":false},"js":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["8",null]},"shadow":true,"topLevel":true,"x":657,"y":-5},"jt":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["HALF_C",null]},"shadow":true,"topLevel":true,"x":2209,"y":1334},"ju":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["hc",null]},"shadow":true,"topLevel":true,"x":2302,"y":1334},"jv":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["8_1",null]},"shadow":true,"topLevel":true,"x":4443,"y":67},"jw":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["0",null]},"shadow":true,"topLevel":true,"x":2539,"y":-299},"QS":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["1",null]},"shadow":true,"topLevel":true,"x":2581,"y":-299},"QT":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["pair",null]},"shadow":true,"topLevel":true,"x":5229,"y":-456},"QU":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["d1",null]},"shadow":true,"topLevel":true,"x":5474,"y":787},"QV":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["d2",null]},"shadow":true,"topLevel":true,"x":5524,"y":787},"qH":{"opcode":"procedures_definition","next":"qI","parent":null,"inputs":{"custom_block":[1,"xs"]},"fields":{},"shadow":false,"topLevel":true,"x":69408,"y":64},"xs":{"opcode":"procedures_prototype","next":null,"parent":"qH","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$reset registers","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"qI":{"opcode":"data_setvariableto","next":"q4","parent":"qH","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"q4":{"opcode":"data_setvariableto","next":"q5","parent":"qI","inputs":{"VALUE":[1,[10,"65534"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"q5":{"opcode":"data_setvariableto","next":"q!","parent":"q4","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-LY","R93(y;ezBDFNxz;R$.9{"]},"shadow":false,"topLevel":false},"q!":{"opcode":"data_setvariableto","next":"rt","parent":"q5","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["lines","r-%xXbKR}U_Ukw8g(6?9"]},"shadow":false,"topLevel":false},"rt":{"opcode":"data_deletealloflist","next":"b","parent":"q!","inputs":{},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"b":{"opcode":"control_if_else","next":"rC","parent":"rt","inputs":{"CONDITION":[2,"xt"],"SUBSTACK":[2,"xu"],"SUBSTACK2":[2,"xv"]},"fields":{},"shadow":false,"topLevel":false},"xt":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xu":{"opcode":"data_addtolist","next":null,"parent":"b","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"xv":{"opcode":"data_addtolist","next":null,"parent":"b","inputs":{"ITEM":[1,[10,"17"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"rC":{"opcode":"data_addtolist","next":"pE","parent":"b","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"pE":{"opcode":"data_addtolist","next":"e.","parent":"rC","inputs":{"ITEM":[1,[10,"19"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"e.":{"opcode":"data_addtolist","next":"q0","parent":"pE","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"q0":{"opcode":"data_addtolist","next":"pA","parent":"e.","inputs":{"ITEM":[1,[10,"216"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"pA":{"opcode":"data_addtolist","next":"pB","parent":"q0","inputs":{"ITEM":[1,[10,"176"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"pB":{"opcode":"data_addtolist","next":"qx","parent":"pA","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"qx":{"opcode":"data_addtolist","next":"qy","parent":"pB","inputs":{"ITEM":[1,[10,"77"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"qy":{"opcode":"data_addtolist","next":"xw","parent":"qx","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"xw":{"opcode":"procedures_call","next":null,"parent":"qy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~FLAGSWRITE","argumentids":"[]","warp":"true"}},"q6":{"opcode":"procedures_definition","next":"q7","parent":null,"inputs":{"custom_block":[1,"y["]},"fields":{},"shadow":false,"topLevel":true,"x":59466,"y":64},"y[":{"opcode":"procedures_prototype","next":null,"parent":"q6","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~FLAGSWRITE","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"q7":{"opcode":"data_deletealloflist","next":"eJ","parent":"q6","inputs":{},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"eJ":{"opcode":"data_addtolist","next":"eK","parent":"q7","inputs":{"ITEM":[3,"q8",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"q8":{"opcode":"operator_mod","next":null,"parent":"eJ","inputs":{"NUM1":[3,"q9",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"q9":{"opcode":"operator_mathop","next":null,"parent":"q8","inputs":{"NUM":[3,"pv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"pv":{"opcode":"operator_divide","next":null,"parent":"q9","inputs":{"NUM1":[3,"y]",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"y]":{"opcode":"data_itemoflist","next":null,"parent":"pv","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"eK":{"opcode":"data_addtolist","next":"eL","parent":"eJ","inputs":{"ITEM":[3,"qp",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"qp":{"opcode":"operator_mod","next":null,"parent":"eK","inputs":{"NUM1":[3,"qs",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"qs":{"opcode":"operator_mathop","next":null,"parent":"qp","inputs":{"NUM":[3,"qV",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"qV":{"opcode":"operator_divide","next":null,"parent":"qs","inputs":{"NUM1":[3,"y`",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"y`":{"opcode":"data_itemoflist","next":null,"parent":"qV","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"eL":{"opcode":"data_addtolist","next":"q.","parent":"eK","inputs":{"ITEM":[3,"rm",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"rm":{"opcode":"operator_mod","next":null,"parent":"eL","inputs":{"NUM1":[3,"qA",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"qA":{"opcode":"operator_mathop","next":null,"parent":"rm","inputs":{"NUM":[3,"qB",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"qB":{"opcode":"operator_divide","next":null,"parent":"qA","inputs":{"NUM1":[3,"er",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"er":{"opcode":"data_itemoflist","next":null,"parent":"qB","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"q.":{"opcode":"data_addtolist","next":null,"parent":"eL","inputs":{"ITEM":[3,"px",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"px":{"opcode":"operator_mod","next":null,"parent":"q.","inputs":{"NUM1":[3,"q;",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"q;":{"opcode":"operator_mathop","next":null,"parent":"px","inputs":{"NUM":[3,"q=",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q=":{"opcode":"operator_divide","next":null,"parent":"q;","inputs":{"NUM1":[3,"cj",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"cj":{"opcode":"data_itemoflist","next":null,"parent":"q=","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"rn":{"opcode":"procedures_definition","next":"rr","parent":null,"inputs":{"custom_block":[1,"ck"]},"fields":{},"shadow":false,"topLevel":true,"x":61140,"y":64},"ck":{"opcode":"procedures_prototype","next":null,"parent":"rn","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~FLAGSREAD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"rr":{"opcode":"data_replaceitemoflist","next":null,"parent":"rn","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"eM",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"eM":{"opcode":"operator_add","next":null,"parent":"rr","inputs":{"NUM1":[3,"rs",[4,0]],"NUM2":[3,"eN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"rs":{"opcode":"operator_multiply","next":null,"parent":"eM","inputs":{"NUM1":[3,"cl",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"cl":{"opcode":"data_itemoflist","next":null,"parent":"rs","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"eN":{"opcode":"operator_add","next":null,"parent":"eM","inputs":{"NUM1":[3,"qD",[4,0]],"NUM2":[3,"eO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qD":{"opcode":"operator_multiply","next":null,"parent":"eN","inputs":{"NUM1":[3,"cm",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"cm":{"opcode":"data_itemoflist","next":null,"parent":"qD","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"eO":{"opcode":"operator_add","next":null,"parent":"eN","inputs":{"NUM1":[3,"qE",[4,0]],"NUM2":[3,"qF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qE":{"opcode":"operator_multiply","next":null,"parent":"eO","inputs":{"NUM1":[3,"cn",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"cn":{"opcode":"data_itemoflist","next":null,"parent":"qE","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"qF":{"opcode":"operator_multiply","next":null,"parent":"eO","inputs":{"NUM1":[3,"co",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"co":{"opcode":"data_itemoflist","next":null,"parent":"qF","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"qG":{"opcode":"procedures_definition","next":"q[","parent":null,"inputs":{"custom_block":[1,"q_"]},"fields":{},"shadow":false,"topLevel":true,"x":62797,"y":1223},"q_":{"opcode":"procedures_prototype","next":null,"parent":"qG","inputs":{"1@-fWts|iPt]@`e5hF@F":[1,"cp"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$load ROM %s","argumentids":"[\"1@-fWts|iPt]@`e5hF@F\"]","argumentnames":"[\"ROM\"]","argumentdefaults":"[\"\"]","warp":"true"}},"cp":{"opcode":"argument_reporter_string_number","next":null,"parent":"q_","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":true,"topLevel":false},"q[":{"opcode":"data_setvariableto","next":"pF","parent":"qG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"pF":{"opcode":"data_deletealloflist","next":"O!","parent":"q[","inputs":{},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"be":{"opcode":"control_repeat","next":null,"parent":"O!","inputs":{"TIMES":[3,"qZ",[6,0]],"SUBSTACK":[2,"bm"]},"fields":{},"shadow":false,"topLevel":false},"qZ":{"opcode":"operator_divide","next":null,"parent":"be","inputs":{"NUM1":[3,"rG",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"rG":{"opcode":"operator_length","next":null,"parent":"qZ","inputs":{"STRING":[3,"cq",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cq":{"opcode":"argument_reporter_string_number","next":null,"parent":"rG","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"bm":{"opcode":"data_setvariableto","next":"pC","parent":"be","inputs":{"VALUE":[3,"rq",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"rq":{"opcode":"operator_add","next":null,"parent":"bm","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"pz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"pz":{"opcode":"operator_join","next":null,"parent":"rq","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"eP",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"eP":{"opcode":"operator_join","next":null,"parent":"pz","inputs":{"STRING1":[3,"eQ",[10,""]],"STRING2":[3,"eR",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"eQ":{"opcode":"operator_letter_of","next":null,"parent":"eP","inputs":{"LETTER":[3,"q+",[6,0]],"STRING":[3,"cr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q+":{"opcode":"operator_add","next":null,"parent":"eQ","inputs":{"NUM1":[3,"cs",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"cs":{"opcode":"operator_multiply","next":null,"parent":"q+","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"cr":{"opcode":"argument_reporter_string_number","next":null,"parent":"eQ","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"eR":{"opcode":"operator_letter_of","next":null,"parent":"eP","inputs":{"LETTER":[3,"rB",[6,0]],"STRING":[3,"ct",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"rB":{"opcode":"operator_add","next":null,"parent":"eR","inputs":{"NUM1":[3,"cu",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"cu":{"opcode":"operator_multiply","next":null,"parent":"rB","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ct":{"opcode":"argument_reporter_string_number","next":null,"parent":"eR","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"pC":{"opcode":"data_addtolist","next":"cv","parent":"bm","inputs":{"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"cv":{"opcode":"data_changevariableby","next":null,"parent":"pC","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"qX":{"opcode":"data_deletealloflist","next":"eS","parent":"O!","inputs":{},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"eS":{"opcode":"data_addtolist","next":"bn","parent":"qX","inputs":{"ITEM":[3,"Gg",[10,""]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"Gg":{"opcode":"data_itemoflist","next":null,"parent":"eS","inputs":{"INDEX":[1,[7,"324"]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"bn":{"opcode":"data_addtolist","next":"bo","parent":"eS","inputs":{"ITEM":[3,"Et",[10,""]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"Et":{"opcode":"data_itemoflist","next":null,"parent":"bn","inputs":{"INDEX":[1,[7,"328"]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"bo":{"opcode":"data_addtolist","next":"bp","parent":"bn","inputs":{"ITEM":[3,"lF",[10,""]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"lF":{"opcode":"data_itemoflist","next":null,"parent":"bo","inputs":{"INDEX":[3,"q/",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"q/":{"opcode":"operator_add","next":null,"parent":"lF","inputs":{"NUM1":[3,"bj8",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bj8":{"opcode":"data_itemoflist","next":null,"parent":"q/","inputs":{"INDEX":[1,[7,"329"]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"bp":{"opcode":"data_setvariableto","next":"bq","parent":"bo","inputs":{"VALUE":[3,"cw",[10,""]]},"fields":{"VARIABLE":["_rom size","jQVk|kz76jS8DHck5*?e"]},"shadow":false,"topLevel":false},"cw":{"opcode":"data_itemoflist","next":null,"parent":"bp","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"bq":{"opcode":"data_setvariableto","next":"e7","parent":"bp","inputs":{"VALUE":[3,"rE",[10,""]]},"fields":{"VARIABLE":[".GBC?","za5df3dC6Lq85;3lun8/"]},"shadow":false,"topLevel":false},"rE":{"opcode":"operator_mathop","next":null,"parent":"bq","inputs":{"NUM":[3,"q@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q@":{"opcode":"operator_divide","next":null,"parent":"rE","inputs":{"NUM1":[3,"a|",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a|":{"opcode":"data_itemoflist","next":null,"parent":"q@","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"e7":{"opcode":"data_setvariableto","next":"a(","parent":"bq","inputs":{"VALUE":[3,"Gm",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"Gm":{"opcode":"data_itemoflist","next":null,"parent":"e7","inputs":{"INDEX":[1,[7,"330"]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"a(":{"opcode":"control_if_else","next":null,"parent":"e7","inputs":{"CONDITION":[2,"cx"],"SUBSTACK":[2,"cy"],"SUBSTACK2":[2,"a)"]},"fields":{},"shadow":false,"topLevel":false},"cx":{"opcode":"operator_equals","next":null,"parent":"a(","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"cy":{"opcode":"data_addtolist","next":null,"parent":"a(","inputs":{"ITEM":[1,[10,"8"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"a)":{"opcode":"control_if_else","next":null,"parent":"a(","inputs":{"CONDITION":[2,"a}"],"SUBSTACK":[2,"a~"],"SUBSTACK2":[2,"a*"]},"fields":{},"shadow":false,"topLevel":false},"a}":{"opcode":"operator_equals","next":null,"parent":"a)","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a~":{"opcode":"data_addtolist","next":null,"parent":"a)","inputs":{"ITEM":[1,[10,"32"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"a*":{"opcode":"control_if_else","next":null,"parent":"a)","inputs":{"CONDITION":[2,"ba"],"SUBSTACK":[2,"bb"],"SUBSTACK2":[2,"Q"]},"fields":{},"shadow":false,"topLevel":false},"ba":{"opcode":"operator_equals","next":null,"parent":"a*","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bb":{"opcode":"data_addtolist","next":null,"parent":"a*","inputs":{"ITEM":[1,[10,"128"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"Q":{"opcode":"control_if_else","next":null,"parent":"a*","inputs":{"CONDITION":[2,"bc"],"SUBSTACK":[2,"bd"],"SUBSTACK2":[2,"xL"]},"fields":{},"shadow":false,"topLevel":false},"bc":{"opcode":"operator_equals","next":null,"parent":"Q","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bd":{"opcode":"data_addtolist","next":null,"parent":"Q","inputs":{"ITEM":[1,[10,"64"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xL":{"opcode":"data_addtolist","next":null,"parent":"Q","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"q]":{"opcode":"procedures_definition","next":"br","parent":null,"inputs":{"custom_block":[1,"eT"]},"fields":{},"shadow":false,"topLevel":true,"x":5000,"y":64},"eT":{"opcode":"procedures_prototype","next":null,"parent":"q]","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,"xM"],"ecG-ua8ktI9]LTC44t^)":[1,"xN"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","argumentnames":"[\"a\",\"b\"]","argumentdefaults":"[\"\",\"\",\"\",\"false\"]","warp":"true"}},"xM":{"opcode":"argument_reporter_string_number","next":null,"parent":"eT","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"xN":{"opcode":"argument_reporter_string_number","next":null,"parent":"eT","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"br":{"opcode":"data_setvariableto","next":"c","parent":"q]","inputs":{"VALUE":[3,"bs",[10,""]]},"fields":{"VARIABLE":["T5","WhM=KlgvY@V6x|(`!06Q"]},"shadow":false,"topLevel":false},"bs":{"opcode":"operator_add","next":null,"parent":"br","inputs":{"NUM1":[3,"q^",[4,0]],"NUM2":[3,"rF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"q^":{"opcode":"data_itemoflist","next":null,"parent":"bs","inputs":{"INDEX":[3,"ru",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"ru":{"opcode":"data_itemoflist","next":null,"parent":"q^","inputs":{"INDEX":[3,"rv",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"rv":{"opcode":"operator_add","next":null,"parent":"ru","inputs":{"NUM1":[3,"xO",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"xO":{"opcode":"argument_reporter_string_number","next":null,"parent":"rv","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"rF":{"opcode":"data_itemoflist","next":null,"parent":"bs","inputs":{"INDEX":[3,"aI[",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"aI[":{"opcode":"operator_add","next":null,"parent":"rF","inputs":{"NUM1":[3,"xP",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"xP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aI[","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"c":{"opcode":"control_if_else","next":"bt","parent":"br","inputs":{"CONDITION":[2,"aI]"],"SUBSTACK":[2,"bu"],"SUBSTACK2":[2,"rD"]},"fields":{},"shadow":false,"topLevel":false},"aI]":{"opcode":"operator_lt","next":null,"parent":"c","inputs":{"OPERAND1":[3,"xQ",[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"xQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aI]","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"bu":{"opcode":"procedures_call","next":null,"parent":"c","inputs":{"jV%E3N`F#Kv[N2ZFDCng":[3,[12,"_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"],[10,""]],"=C%5;oVu(,!okffK1p[0":[3,"xR",[10,""]],"4*V.c%r3@q^!I[k[vvmC":[3,"xS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".MBC handler %s a %s b %s","argumentids":"[\"jV%E3N`F#Kv[N2ZFDCng\",\"=C%5;oVu(,!okffK1p[0\",\"4*V.c%r3@q^!I[k[vvmC\"]","warp":"true"}},"xR":{"opcode":"argument_reporter_string_number","next":null,"parent":"bu","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"xS":{"opcode":"argument_reporter_string_number","next":null,"parent":"bu","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"rD":{"opcode":"data_replaceitemoflist","next":null,"parent":"c","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]],"ITEM":[3,"xT",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"xT":{"opcode":"argument_reporter_string_number","next":null,"parent":"rD","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"bt":{"opcode":"control_if","next":null,"parent":"c","inputs":{"CONDITION":[2,"rL"],"SUBSTACK":[2,"pJ"]},"fields":{},"shadow":false,"topLevel":false},"rL":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,"pO",[10,""]],"OPERAND2":[1,[10,"510"]]},"fields":{},"shadow":false,"topLevel":false},"pO":{"opcode":"operator_mathop","next":null,"parent":"rL","inputs":{"NUM":[3,"pu",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"pu":{"opcode":"operator_divide","next":null,"parent":"pO","inputs":{"NUM1":[3,"xU",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"xU":{"opcode":"argument_reporter_string_number","next":null,"parent":"pu","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"pJ":{"opcode":"procedures_call","next":"k","parent":"bt","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".ppu regs","argumentids":"[]","warp":"true"}},"k":{"opcode":"control_if","next":"S","parent":"pJ","inputs":{"CONDITION":[2,"pU"],"SUBSTACK":[2,"pG"]},"fields":{},"shadow":false,"topLevel":false},"pU":{"opcode":"operator_equals","next":null,"parent":"k","inputs":{"OPERAND1":[3,"xV",[10,""]],"OPERAND2":[1,[10,"0xFF46"]]},"fields":{},"shadow":false,"topLevel":false},"xV":{"opcode":"argument_reporter_string_number","next":null,"parent":"pU","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"pG":{"opcode":"data_setvariableto","next":"d","parent":"k","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"]},"shadow":false,"topLevel":false},"d":{"opcode":"control_if_else","next":"xW","parent":"pG","inputs":{"CONDITION":[2,"pH"],"SUBSTACK":[2,"pI"],"SUBSTACK2":[2,"pV"]},"fields":{},"shadow":false,"topLevel":false},"pH":{"opcode":"operator_lt","next":null,"parent":"d","inputs":{"OPERAND1":[3,"xX",[10,""]],"OPERAND2":[1,[10,"0xE0"]]},"fields":{},"shadow":false,"topLevel":false},"xX":{"opcode":"argument_reporter_string_number","next":null,"parent":"pH","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"pI":{"opcode":"data_setvariableto","next":null,"parent":"d","inputs":{"VALUE":[3,"pW",[10,""]]},"fields":{"VARIABLE":["*OAMDMAS","v.3%0+x.An^dc%ycqc,h"]},"shadow":false,"topLevel":false},"pW":{"opcode":"operator_multiply","next":null,"parent":"pI","inputs":{"NUM1":[3,"xY",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"xY":{"opcode":"argument_reporter_string_number","next":null,"parent":"pW","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"pV":{"opcode":"data_setvariableto","next":null,"parent":"d","inputs":{"VALUE":[3,"pX",[10,""]]},"fields":{"VARIABLE":["*OAMDMAS","v.3%0+x.An^dc%ycqc,h"]},"shadow":false,"topLevel":false},"pX":{"opcode":"operator_multiply","next":null,"parent":"pV","inputs":{"NUM1":[3,"pZ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"pZ":{"opcode":"operator_subtract","next":null,"parent":"pX","inputs":{"NUM1":[3,"xZ",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"xZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"pZ","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"xW":{"opcode":"control_stop","next":null,"parent":"d","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x0":{"opcode":"operator_equals","next":null,"parent":"S","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e8":{"opcode":"control_if","next":"T","parent":"S","inputs":{"CONDITION":[2,"p0"]},"fields":{},"shadow":false,"topLevel":false},"p1":{"opcode":"operator_equals","next":null,"parent":"T","inputs":{"OPERAND1":[3,"x2",[10,""]],"OPERAND2":[1,[10,"0xFF4F"]]},"fields":{},"shadow":false,"topLevel":false},"x2":{"opcode":"argument_reporter_string_number","next":null,"parent":"p1","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"bv":{"opcode":"data_replaceitemoflist","next":"x3","parent":"T","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"p2",[10,""]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"p2":{"opcode":"operator_multiply","next":null,"parent":"bv","inputs":{"NUM1":[3,"p3",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"p3":{"opcode":"operator_mod","next":null,"parent":"p2","inputs":{"NUM1":[3,"x4",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"x4":{"opcode":"argument_reporter_string_number","next":null,"parent":"p3","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"x3":{"opcode":"control_stop","next":null,"parent":"bv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bw":{"opcode":"operator_or","next":null,"parent":"U","inputs":{"OPERAND1":[2,"p4"],"OPERAND2":[2,"p5"]},"fields":{},"shadow":false,"topLevel":false},"p4":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"x5",[10,""]],"OPERAND2":[1,[10,"0xFF68"]]},"fields":{},"shadow":false,"topLevel":false},"x5":{"opcode":"argument_reporter_string_number","next":null,"parent":"p4","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"bx":{"opcode":"data_setvariableto","next":"V","parent":"U","inputs":{"VALUE":[3,"by",[10,""]]},"fields":{"VARIABLE":["T6","xwd)j4SY4qa||w7J0yBP"]},"shadow":false,"topLevel":false},"by":{"opcode":"operator_add","next":null,"parent":"bx","inputs":{"NUM1":[3,"p[",[4,0]],"NUM2":[3,"p]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"p[":{"opcode":"operator_mod","next":null,"parent":"by","inputs":{"NUM1":[3,"x7",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"x7":{"opcode":"data_itemoflist","next":null,"parent":"p[","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"x!":{"opcode":"operator_add","next":null,"parent":"V","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"p_":{"opcode":"data_itemoflist","next":null,"parent":"V","inputs":{"INDEX":[3,"x#",[7,0]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"x#":{"opcode":"operator_add","next":null,"parent":"p_","inputs":{"NUM1":[3,[12,"T6","xwd)j4SY4qa||w7J0yBP"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"x9":{"opcode":"control_stop","next":null,"parent":"V","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"H":{"opcode":"control_if","next":"K","parent":"U","inputs":{"CONDITION":[2,"e9"],"SUBSTACK":[2,"e!"]},"fields":{},"shadow":false,"topLevel":false},"e9":{"opcode":"operator_or","next":null,"parent":"H","inputs":{"OPERAND1":[2,"p{"],"OPERAND2":[2,"p|"]},"fields":{},"shadow":false,"topLevel":false},"p{":{"opcode":"operator_equals","next":null,"parent":"e9","inputs":{"OPERAND1":[3,"x%",[10,""]],"OPERAND2":[1,[10,"0xFF69"]]},"fields":{},"shadow":false,"topLevel":false},"x%":{"opcode":"argument_reporter_string_number","next":null,"parent":"p{","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"p|":{"opcode":"operator_equals","next":null,"parent":"e9","inputs":{"OPERAND1":[3,"x(",[10,""]],"OPERAND2":[1,[10,"0xFF6B"]]},"fields":{},"shadow":false,"topLevel":false},"x(":{"opcode":"argument_reporter_string_number","next":null,"parent":"p|","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"e!":{"opcode":"data_setvariableto","next":"eH","parent":"H","inputs":{"VALUE":[3,"bz",[10,""]]},"fields":{"VARIABLE":["T5","WhM=KlgvY@V6x|(`!06Q"]},"shadow":false,"topLevel":false},"bz":{"opcode":"operator_add","next":null,"parent":"e!","inputs":{"NUM1":[3,"p}",[4,0]],"NUM2":[3,"p~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"p}":{"opcode":"data_itemoflist","next":null,"parent":"bz","inputs":{"INDEX":[3,"qa",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"qa":{"opcode":"data_itemoflist","next":null,"parent":"p}","inputs":{"INDEX":[3,"qb",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"qb":{"opcode":"operator_add","next":null,"parent":"qa","inputs":{"NUM1":[3,"qc",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qc":{"opcode":"operator_subtract","next":null,"parent":"qb","inputs":{"NUM1":[3,"x)",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"x)":{"opcode":"argument_reporter_string_number","next":null,"parent":"qc","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"p~":{"opcode":"data_itemoflist","next":null,"parent":"bz","inputs":{"INDEX":[3,"qd",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"qd":{"opcode":"operator_add","next":null,"parent":"p~","inputs":{"NUM1":[3,"qe",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qe":{"opcode":"operator_subtract","next":null,"parent":"qd","inputs":{"NUM1":[3,"x*",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"x*":{"opcode":"argument_reporter_string_number","next":null,"parent":"qe","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"eH":{"opcode":"data_setvariableto","next":"L","parent":"e!","inputs":{"VALUE":[3,"bA",[10,""]]},"fields":{"VARIABLE":["T6","xwd)j4SY4qa||w7J0yBP"]},"shadow":false,"topLevel":false},"bA":{"opcode":"operator_add","next":null,"parent":"eH","inputs":{"NUM1":[3,"qf",[4,0]],"NUM2":[3,"qg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qf":{"opcode":"operator_mod","next":null,"parent":"bA","inputs":{"NUM1":[3,"x+",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"x+":{"opcode":"data_itemoflist","next":null,"parent":"qf","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"qg":{"opcode":"operator_multiply","next":null,"parent":"bA","inputs":{"NUM1":[3,"qh",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"qh":{"opcode":"operator_equals","next":null,"parent":"qg","inputs":{"OPERAND1":[3,"x,",[10,""]],"OPERAND2":[1,[10,"0xFF6B"]]},"fields":{},"shadow":false,"topLevel":false},"x,":{"opcode":"argument_reporter_string_number","next":null,"parent":"qh","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"L":{"opcode":"data_replaceitemoflist","next":"e2","parent":"eH","inputs":{"INDEX":[3,"ci",[7,0]],"ITEM":[3,"a{",[10,""]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"ci":{"opcode":"operator_add","next":null,"parent":"L","inputs":{"NUM1":[3,[12,"T6","xwd)j4SY4qa||w7J0yBP"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{":{"opcode":"argument_reporter_string_number","next":null,"parent":"L","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"e2":{"opcode":"procedures_call","next":"bB","parent":"L","inputs":{"FW[OkC=Fq;FN}+lv+cfR":[3,"qi",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".decodeCGBpalette %s","argumentids":"[\"FW[OkC=Fq;FN}+lv+cfR\"]","warp":"true"}},"qi":{"opcode":"operator_mathop","next":null,"parent":"e2","inputs":{"NUM":[3,"x-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"x-":{"opcode":"operator_divide","next":null,"parent":"qi","inputs":{"NUM1":[3,[12,"T6","xwd)j4SY4qa||w7J0yBP"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bB":{"opcode":"data_setvariableto","next":"e5","parent":"e2","inputs":{"VALUE":[3,"qj",[10,""]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"qj":{"opcode":"operator_mathop","next":null,"parent":"bB","inputs":{"NUM":[3,"qk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"qk":{"opcode":"operator_divide","next":null,"parent":"qj","inputs":{"NUM1":[3,"x.",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"x.":{"opcode":"data_itemoflist","next":null,"parent":"qk","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"e5":{"opcode":"data_replaceitemoflist","next":"W","parent":"bB","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]],"ITEM":[3,"ql",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"ql":{"opcode":"operator_mod","next":null,"parent":"e5","inputs":{"NUM1":[3,"qm",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"qm":{"opcode":"operator_add","next":null,"parent":"ql","inputs":{"NUM1":[3,"x/",[4,0]],"NUM2":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"x/":{"opcode":"data_itemoflist","next":null,"parent":"qm","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"bk":{"opcode":"operator_and","next":null,"parent":"W","inputs":{"OPERAND1":[2,"qn"],"OPERAND2":[2,"x:"]},"fields":{},"shadow":false,"topLevel":false},"qn":{"opcode":"operator_equals","next":null,"parent":"bk","inputs":{"OPERAND1":[3,"x;",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"x;":{"opcode":"data_itemoflist","next":null,"parent":"qn","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"x:":{"opcode":"operator_equals","next":null,"parent":"bk","inputs":{"OPERAND1":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"xo":{"opcode":"data_replaceitemoflist","next":null,"parent":"W","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]],"ITEM":[1,[10,"0xC0"]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"xn":{"opcode":"control_stop","next":null,"parent":"W","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"K":{"opcode":"control_if","next":"J","parent":"H","inputs":{"CONDITION":[2,"ry"],"SUBSTACK":[2,"e1"]},"fields":{},"shadow":false,"topLevel":false},"ry":{"opcode":"operator_equals","next":null,"parent":"K","inputs":{"OPERAND1":[3,"x=",[10,""]],"OPERAND2":[1,[10,"0xFF70"]]},"fields":{},"shadow":false,"topLevel":false},"x=":{"opcode":"argument_reporter_string_number","next":null,"parent":"ry","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"e1":{"opcode":"data_replaceitemoflist","next":"x?","parent":"K","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"b#",[10,""]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"b#":{"opcode":"operator_add","next":null,"parent":"e1","inputs":{"NUM1":[3,"qo",[4,0]],"NUM2":[3,"x@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qo":{"opcode":"operator_multiply","next":null,"parent":"b#","inputs":{"NUM1":[3,"qq",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"qq":{"opcode":"operator_mod","next":null,"parent":"qo","inputs":{"NUM1":[3,"x[",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"x[":{"opcode":"argument_reporter_string_number","next":null,"parent":"qq","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"x@":{"opcode":"data_itemoflist","next":null,"parent":"b#","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"x?":{"opcode":"control_stop","next":null,"parent":"e1","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"J":{"opcode":"control_if","next":"e3","parent":"K","inputs":{"CONDITION":[2,"rz"],"SUBSTACK":[2,"e4"]},"fields":{},"shadow":false,"topLevel":false},"e4":{"opcode":"data_setvariableto","next":"M","parent":"J","inputs":{"VALUE":[3,"bD",[10,""]]},"fields":{"VARIABLE":["T5","WhM=KlgvY@V6x|(`!06Q"]},"shadow":false,"topLevel":false},"bD":{"opcode":"operator_add","next":null,"parent":"e4","inputs":{"NUM1":[3,"qr",[4,0]],"NUM2":[3,"qu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qr":{"opcode":"data_itemoflist","next":null,"parent":"bD","inputs":{"INDEX":[3,"qv",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"qv":{"opcode":"data_itemoflist","next":null,"parent":"qr","inputs":{"INDEX":[3,"x^",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"x^":{"opcode":"operator_add","next":null,"parent":"qv","inputs":{"NUM1":[1,[4,"0xFF50"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qu":{"opcode":"data_itemoflist","next":null,"parent":"bD","inputs":{"INDEX":[3,"x_",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"x_":{"opcode":"operator_add","next":null,"parent":"qu","inputs":{"NUM1":[1,[4,"0xFF50"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"M":{"opcode":"control_if","next":"bg","parent":"e4","inputs":{"CONDITION":[2,"eI"],"SUBSTACK":[2,"rx"]},"fields":{},"shadow":false,"topLevel":false},"eI":{"opcode":"operator_and","next":null,"parent":"M","inputs":{"OPERAND1":[2,"x`"],"OPERAND2":[2,"qC"]},"fields":{},"shadow":false,"topLevel":false},"x`":{"opcode":"operator_equals","next":null,"parent":"eI","inputs":{"OPERAND1":[3,[12,".DMAenable","kk18ewt7HpVOvYWizQ?E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qC":{"opcode":"operator_equals","next":null,"parent":"eI","inputs":{"OPERAND1":[3,"qJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qJ":{"opcode":"operator_mathop","next":null,"parent":"qC","inputs":{"NUM":[3,"qK",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"qK":{"opcode":"operator_divide","next":null,"parent":"qJ","inputs":{"NUM1":[3,"x{",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"x{":{"opcode":"argument_reporter_string_number","next":null,"parent":"qK","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"rx":{"opcode":"data_setvariableto","next":"O","parent":"M","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DMAenable","kk18ewt7HpVOvYWizQ?E"]},"shadow":false,"topLevel":false},"O":{"opcode":"data_replaceitemoflist","next":"xp","parent":"rx","inputs":{"INDEX":[3,"xq",[7,0]],"ITEM":[3,"ps",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"xq":{"opcode":"operator_add","next":null,"parent":"O","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ps":{"opcode":"operator_add","next":null,"parent":"O","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,"qL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qL":{"opcode":"operator_mod","next":null,"parent":"ps","inputs":{"NUM1":[3,"x|",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"x|":{"opcode":"argument_reporter_string_number","next":null,"parent":"qL","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"xp":{"opcode":"control_stop","next":null,"parent":"O","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bg":{"opcode":"data_setvariableto","next":"O#","parent":"M","inputs":{"VALUE":[3,"bT",[10,""]]},"fields":{"VARIABLE":[".DMAstart","q3];|lI;X@QP63GyUdgC"]},"shadow":false,"topLevel":false},"bT":{"opcode":"operator_add","next":null,"parent":"bg","inputs":{"NUM1":[3,"qM",[4,0]],"NUM2":[3,"cO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qM":{"opcode":"operator_multiply","next":null,"parent":"bT","inputs":{"NUM1":[3,"cP",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"cP":{"opcode":"data_itemoflist","next":null,"parent":"qM","inputs":{"INDEX":[3,"x}",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"x}":{"opcode":"operator_add","next":null,"parent":"cP","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"cO":{"opcode":"data_itemoflist","next":null,"parent":"bT","inputs":{"INDEX":[3,"x~",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"x~":{"opcode":"operator_add","next":null,"parent":"cO","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"O#":{"opcode":"data_setvariableto","next":"b5","parent":"bg","inputs":{"VALUE":[3,"bI",[10,""]]},"fields":{"VARIABLE":[".DMAend","gb)yqT91dr(YhxH_!$oK"]},"shadow":false,"topLevel":false},"bI":{"opcode":"operator_add","next":null,"parent":"O#","inputs":{"NUM1":[3,"qN",[4,0]],"NUM2":[3,"qO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"qN":{"opcode":"operator_multiply","next":null,"parent":"bI","inputs":{"NUM1":[3,"qP",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"qP":{"opcode":"operator_add","next":null,"parent":"qN","inputs":{"NUM1":[3,"qQ",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"qQ":{"opcode":"operator_mod","next":null,"parent":"qP","inputs":{"NUM1":[3,"qR",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"qR":{"opcode":"data_itemoflist","next":null,"parent":"qQ","inputs":{"INDEX":[3,"ya",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"ya":{"opcode":"operator_add","next":null,"parent":"qR","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"qO":{"opcode":"data_itemoflist","next":null,"parent":"bI","inputs":{"INDEX":[3,"yb",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"yb":{"opcode":"operator_add","next":null,"parent":"qO","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"b5":{"opcode":"data_setvariableto","next":"bJ","parent":"O#","inputs":{"VALUE":[3,"qU",[10,""]]},"fields":{"VARIABLE":[".DMAstart","q3];|lI;X@QP63GyUdgC"]},"shadow":false,"topLevel":false},"qU":{"opcode":"operator_subtract","next":null,"parent":"b5","inputs":{"NUM1":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[4,0]],"NUM2":[3,"yc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yc":{"opcode":"operator_mod","next":null,"parent":"qU","inputs":{"NUM1":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bJ":{"opcode":"data_setvariableto","next":"bK","parent":"b5","inputs":{"VALUE":[3,"qW",[10,""]]},"fields":{"VARIABLE":[".DMAend","gb)yqT91dr(YhxH_!$oK"]},"shadow":false,"topLevel":false},"qW":{"opcode":"operator_subtract","next":null,"parent":"bJ","inputs":{"NUM1":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[4,0]],"NUM2":[3,"yd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yd":{"opcode":"operator_mod","next":null,"parent":"qW","inputs":{"NUM1":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bK":{"opcode":"data_setvariableto","next":"e6","parent":"bJ","inputs":{"VALUE":[3,"qY",[10,""]]},"fields":{"VARIABLE":[".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"]},"shadow":false,"topLevel":false},"qY":{"opcode":"operator_multiply","next":null,"parent":"bK","inputs":{"NUM1":[3,"q1",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"q1":{"opcode":"operator_add","next":null,"parent":"qY","inputs":{"NUM1":[3,"q2",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q2":{"opcode":"operator_mod","next":null,"parent":"q1","inputs":{"NUM1":[3,"ye",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ye":{"opcode":"argument_reporter_string_number","next":null,"parent":"q2","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"e6":{"opcode":"data_setvariableto","next":"P","parent":"bK","inputs":{"VALUE":[3,"q3",[10,""]]},"fields":{"VARIABLE":[".DMAtype","0NzoLpmy^eZ1=JjkzYGg"]},"shadow":false,"topLevel":false},"q3":{"opcode":"operator_mathop","next":null,"parent":"e6","inputs":{"NUM":[3,"q#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q#":{"opcode":"operator_divide","next":null,"parent":"q3","inputs":{"NUM1":[3,"yf",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yf":{"opcode":"argument_reporter_string_number","next":null,"parent":"q#","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"P":{"opcode":"control_if","next":"pD","parent":"e6","inputs":{"CONDITION":[2,"bl"],"SUBSTACK":[2,"xr"]},"fields":{},"shadow":false,"topLevel":false},"bl":{"opcode":"operator_and","next":null,"parent":"P","inputs":{"OPERAND1":[2,"yg"],"OPERAND2":[2,"q%"]},"fields":{},"shadow":false,"topLevel":false},"yg":{"opcode":"operator_equals","next":null,"parent":"bl","inputs":{"OPERAND1":[3,[12,".DMAtype","0NzoLpmy^eZ1=JjkzYGg"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q%":{"opcode":"operator_equals","next":null,"parent":"bl","inputs":{"OPERAND1":[3,"yh",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"yh":{"opcode":"operator_letter_of","next":null,"parent":"q%","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xr":{"opcode":"data_setvariableto","next":null,"parent":"P","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".HDMAenable","j1eKKgYTu[qSVFb2,O.#"]},"shadow":false,"topLevel":false},"pD":{"opcode":"data_setvariableto","next":"G","parent":"P","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".DMAenable","kk18ewt7HpVOvYWizQ?E"]},"shadow":false,"topLevel":false},"G":{"opcode":"data_replaceitemoflist","next":"xl","parent":"pD","inputs":{"INDEX":[3,"xm",[7,0]],"ITEM":[3,"rM",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"xm":{"opcode":"operator_add","next":null,"parent":"G","inputs":{"NUM1":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"rM":{"opcode":"operator_mod","next":null,"parent":"G","inputs":{"NUM1":[3,"yi",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yi":{"opcode":"argument_reporter_string_number","next":null,"parent":"rM","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"xl":{"opcode":"control_stop","next":null,"parent":"G","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e3":{"opcode":"control_if","next":null,"parent":"J","inputs":{"CONDITION":[2,"q)"],"SUBSTACK":[2,"b6"]},"fields":{},"shadow":false,"topLevel":false},"q)":{"opcode":"operator_equals","next":null,"parent":"e3","inputs":{"OPERAND1":[3,"yj",[10,""]],"OPERAND2":[1,[10,"0xFF4D"]]},"fields":{},"shadow":false,"topLevel":false},"yj":{"opcode":"argument_reporter_string_number","next":null,"parent":"q)","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"D":{"opcode":"control_if","next":"N","parent":"S","inputs":{"CONDITION":[2,"q-"],"SUBSTACK":[2,"q:"]},"fields":{},"shadow":false,"topLevel":false},"q-":{"opcode":"operator_equals","next":null,"parent":"D","inputs":{"OPERAND1":[3,"yn",[10,""]],"OPERAND2":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false},"yn":{"opcode":"argument_reporter_string_number","next":null,"parent":"q-","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"q:":{"opcode":"data_setvariableto","next":"yo","parent":"D","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[",joypad","W/n=I{ySVA3XJEP{k?=["]},"shadow":false,"topLevel":false},"yo":{"opcode":"control_stop","next":null,"parent":"q:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"N":{"opcode":"control_if","next":"bh","parent":"D","inputs":{"CONDITION":[2,"bi"],"SUBSTACK":[2,"pT"]},"fields":{},"shadow":false,"topLevel":false},"bi":{"opcode":"operator_and","next":null,"parent":"N","inputs":{"OPERAND1":[2,"yp"],"OPERAND2":[2,"b*"]},"fields":{},"shadow":false,"topLevel":false},"yp":{"opcode":"operator_equals","next":null,"parent":"bi","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"b*":{"opcode":"operator_or","next":null,"parent":"bi","inputs":{"OPERAND1":[2,"O%"],"OPERAND2":[2,"ro"]},"fields":{},"shadow":false,"topLevel":false},"O%":{"opcode":"operator_or","next":null,"parent":"b*","inputs":{"OPERAND1":[2,"rp"],"OPERAND2":[2,"rw"]},"fields":{},"shadow":false,"topLevel":false},"rp":{"opcode":"operator_equals","next":null,"parent":"O%","inputs":{"OPERAND1":[3,"yq",[10,""]],"OPERAND2":[1,[10,"0xFF47"]]},"fields":{},"shadow":false,"topLevel":false},"yq":{"opcode":"argument_reporter_string_number","next":null,"parent":"rp","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"rw":{"opcode":"operator_equals","next":null,"parent":"O%","inputs":{"OPERAND1":[3,"yr",[10,""]],"OPERAND2":[1,[10,"0xFF48"]]},"fields":{},"shadow":false,"topLevel":false},"yr":{"opcode":"argument_reporter_string_number","next":null,"parent":"rw","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"pT":{"opcode":"procedures_call","next":"yt","parent":"N","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*palette decode","argumentids":"[]","warp":"true"}},"yt":{"opcode":"control_stop","next":null,"parent":"pT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bh":{"opcode":"control_if","next":null,"parent":"N","inputs":{"CONDITION":[2,"rA"],"SUBSTACK":[2,"b."]},"fields":{},"shadow":false,"topLevel":false},"rA":{"opcode":"operator_equals","next":null,"parent":"bh","inputs":{"OPERAND1":[3,"yu",[10,""]],"OPERAND2":[1,[10,"0xFF02"]]},"fields":{},"shadow":false,"topLevel":false},"yu":{"opcode":"argument_reporter_string_number","next":null,"parent":"rA","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"b.":{"opcode":"data_replaceitemoflist","next":"yv","parent":"bh","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]],"ITEM":[3,"rI",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"rI":{"opcode":"data_itemoflist","next":null,"parent":"b.","inputs":{"INDEX":[3,"rK",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"rK":{"opcode":"operator_add","next":null,"parent":"rI","inputs":{"NUM1":[3,"pK",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"pK":{"opcode":"operator_add","next":null,"parent":"rK","inputs":{"NUM1":[3,"pL",[4,0]],"NUM2":[1,[4,"0b01111100"]]},"fields":{},"shadow":false,"topLevel":false},"yv":{"opcode":"control_stop","next":null,"parent":"b.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"pM":{"opcode":"procedures_definition","next":"bj","parent":null,"inputs":{"custom_block":[1,"pN"]},"fields":{},"shadow":false,"topLevel":true,"x":3415,"y":64},"pN":{"opcode":"procedures_prototype","next":null,"parent":"pM","inputs":{"0]ODgc:bK{?ML[NsH|O.":[1,"yx"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","argumentnames":"[\"a\"]","argumentdefaults":"[\"\"]","warp":"true"}},"yx":{"opcode":"argument_reporter_string_number","next":null,"parent":"pN","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"bj":{"opcode":"data_setvariableto","next":"E","parent":"pM","inputs":{"VALUE":[3,"bE",[10,""]]},"fields":{"VARIABLE":["T10","*$a?01}j0xiTOD04my^,"]},"shadow":false,"topLevel":false},"bE":{"opcode":"operator_add","next":null,"parent":"bj","inputs":{"NUM1":[3,"p7",[4,0]],"NUM2":[3,"p8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"p7":{"opcode":"data_itemoflist","next":null,"parent":"bE","inputs":{"INDEX":[3,"p!",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"p!":{"opcode":"data_itemoflist","next":null,"parent":"p7","inputs":{"INDEX":[3,"p#",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"p8":{"opcode":"data_itemoflist","next":null,"parent":"bE","inputs":{"INDEX":[3,"p(",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"p(":{"opcode":"operator_add","next":null,"parent":"p8","inputs":{"NUM1":[3,"yz",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yz":{"opcode":"argument_reporter_string_number","next":null,"parent":"p(","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"E":{"opcode":"control_if_else","next":null,"parent":"bj","inputs":{"CONDITION":[2,"py"],"SUBSTACK":[2,"qt"],"SUBSTACK2":[2,"q?"]},"fields":{},"shadow":false,"topLevel":false},"py":{"opcode":"operator_lt","next":null,"parent":"E","inputs":{"OPERAND1":[3,"yA",[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"yA":{"opcode":"argument_reporter_string_number","next":null,"parent":"py","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"qt":{"opcode":"data_setvariableto","next":null,"parent":"E","inputs":{"VALUE":[3,"yB",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"yB":{"opcode":"data_itemoflist","next":null,"parent":"qt","inputs":{"INDEX":[3,[12,"T10","*$a?01}j0xiTOD04my^,"],[7,0]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"q?":{"opcode":"data_setvariableto","next":null,"parent":"E","inputs":{"VALUE":[3,"yC",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"yC":{"opcode":"data_itemoflist","next":null,"parent":"q?","inputs":{"INDEX":[3,[12,"T10","*$a?01}j0xiTOD04my^,"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"p)":{"opcode":"procedures_definition","next":"p+","parent":null,"inputs":{"custom_block":[1,"yD"]},"fields":{},"shadow":false,"topLevel":true,"x":57114,"y":64},"yD":{"opcode":"procedures_prototype","next":null,"parent":"p)","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"__INIT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"p+":{"opcode":"data_deletealloflist","next":"b:","parent":"p)","inputs":{},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"b:":{"opcode":"control_for_each","next":"p,","parent":"p+","inputs":{"VALUE":[1,[6,"256"]],"SUBSTACK":[2,"bN"]},"fields":{"VARIABLE":["j3","DJ~1Ck7Y%xr-L5e*i(oz"]},"shadow":false,"topLevel":false},"bN":{"opcode":"procedures_call","next":"yE","parent":"b:","inputs":{"1aHaUOe7;=R!w0~PAwaT":[3,"yF",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert %s to base 16","argumentids":"[\"1aHaUOe7;=R!w0~PAwaT\"]","warp":"true"}},"yF":{"opcode":"operator_subtract","next":null,"parent":"bN","inputs":{"NUM1":[3,[12,"j3","DJ~1Ck7Y%xr-L5e*i(oz"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yE":{"opcode":"data_addtolist","next":null,"parent":"bN","inputs":{"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"p,":{"opcode":"data_setvariableto","next":"p-","parent":"b:","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"p-":{"opcode":"data_setvariableto","next":"p.","parent":"p,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"p.":{"opcode":"data_setvariableto","next":"p/","parent":"p-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_frames","FJEs/3`VRSW|=4S_cI}F"]},"shadow":false,"topLevel":false},"p/":{"opcode":"data_setvariableto","next":"p:","parent":"p.","inputs":{"VALUE":[1,[10,"2.4"]]},"fields":{"VARIABLE":["_frameskip","%Z}6^@{`zI6YV~G_?)Jj"]},"shadow":false,"topLevel":false},"p:":{"opcode":"data_setvariableto","next":"p;","parent":"p/","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":[".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"]},"shadow":false,"topLevel":false},"p;":{"opcode":"data_setvariableto","next":"p=","parent":"p:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"p=":{"opcode":"data_setvariableto","next":"p?","parent":"p;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[",c","Crf*ltOpxTp[zPgDlY{T"]},"shadow":false,"topLevel":false},"p?":{"opcode":"data_setvariableto","next":"p@","parent":"p=","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".Mpri",";.CEwXh;.U;z^iL6kY}4"]},"shadow":false,"topLevel":false},"p@":{"opcode":"data_setvariableto","next":"q`","parent":"p?","inputs":{"VALUE":[1,[10,"160"]]},"fields":{"VARIABLE":["*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"]},"shadow":false,"topLevel":false},"q`":{"opcode":"data_setvariableto","next":"q{","parent":"p@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DMAenable","kk18ewt7HpVOvYWizQ?E"]},"shadow":false,"topLevel":false},"q{":{"opcode":"data_setvariableto","next":"q|","parent":"q`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DMAtype","0NzoLpmy^eZ1=JjkzYGg"]},"shadow":false,"topLevel":false},"q|":{"opcode":"data_setvariableto","next":"q}","parent":"q{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".HDMAenable","j1eKKgYTu[qSVFb2,O.#"]},"shadow":false,"topLevel":false},"q}":{"opcode":"data_setvariableto","next":"q~","parent":"q|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DIV2","qXl$(oh,s-`,(d=7TISu"]},"shadow":false,"topLevel":false},"q~":{"opcode":"procedures_call","next":"ra","parent":"q}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_initMemPointers","argumentids":"[]","warp":"false"}},"ra":{"opcode":"procedures_call","next":"rb","parent":"q~","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF00"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0xFF"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"rb":{"opcode":"procedures_call","next":"rc","parent":"ra","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF13"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"rc":{"opcode":"procedures_call","next":"pr","parent":"rb","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF14"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"pr":{"opcode":"procedures_call","next":"e#","parent":"rc","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF40"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0x91"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"e#":{"opcode":"procedures_call","next":"rd","parent":"pr","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF4D"]],"ecG-ua8ktI9]LTC44t^)":[3,"re",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"re":{"opcode":"operator_multiply","next":null,"parent":"e#","inputs":{"NUM1":[3,"yG",[4,0]],"NUM2":[1,[4,"255"]]},"fields":{},"shadow":false,"topLevel":false},"yG":{"opcode":"operator_equals","next":null,"parent":"re","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rd":{"opcode":"procedures_call","next":"rf","parent":"e#","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF4F"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"sz":{"opcode":"procedures_definition","next":"e}","parent":null,"inputs":{"custom_block":[1,"sa"]},"fields":{},"shadow":false,"topLevel":true,"x":64595,"y":44},"sa":{"opcode":"procedures_prototype","next":null,"parent":"sz","inputs":{"Qi31Z;B$.Clm/kthjb4$":[1,"y*"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"Qi31Z;B$.Clm/kthjb4$\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"y*":{"opcode":"argument_reporter_string_number","next":null,"parent":"sa","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"e}":{"opcode":"data_setvariableto","next":"rR","parent":"sz","inputs":{"VALUE":[3,"y+",[10,""]]},"fields":{"VARIABLE":["g","pI+E2RUGrnC0}Oxj[fQD"]},"shadow":false,"topLevel":false},"y+":{"opcode":"argument_reporter_string_number","next":null,"parent":"e}","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"rR":{"opcode":"data_deletealloflist","next":"6","parent":"e}","inputs":{},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"y,":{"opcode":"argument_reporter_string_number","next":null,"parent":"6","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"y-":{"opcode":"data_addtolist","next":null,"parent":"6","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"fa":{"opcode":"control_repeat","next":null,"parent":"6","inputs":{"TIMES":[3,"r/",[6,0]],"SUBSTACK":[2,"r;"]},"fields":{},"shadow":false,"topLevel":false},"r/":{"opcode":"operator_round","next":null,"parent":"fa","inputs":{"NUM":[3,"fj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"fj":{"opcode":"operator_divide","next":null,"parent":"r/","inputs":{"NUM1":[3,"r?",[4,0]],"NUM2":[3,"y.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r?":{"opcode":"operator_mathop","next":null,"parent":"fj","inputs":{"NUM":[3,"y/",[4,0]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"y/":{"opcode":"argument_reporter_string_number","next":null,"parent":"r?","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"y.":{"opcode":"operator_mathop","next":null,"parent":"fj","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"r;":{"opcode":"data_setvariableto","next":"r0","parent":"fa","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"r0":{"opcode":"data_setvariableto","next":"fk","parent":"r;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"fk":{"opcode":"data_setvariableto","next":"fm","parent":"r0","inputs":{"VALUE":[3,"r[",[10,""]]},"fields":{"VARIABLE":["g","pI+E2RUGrnC0}Oxj[fQD"]},"shadow":false,"topLevel":false},"r[":{"opcode":"operator_mathop","next":null,"parent":"fk","inputs":{"NUM":[3,"y:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"y:":{"opcode":"operator_divide","next":null,"parent":"r[","inputs":{"NUM1":[3,[12,"g","pI+E2RUGrnC0}Oxj[fQD"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fm":{"opcode":"control_repeat","next":null,"parent":"fk","inputs":{"TIMES":[3,"y;",[6,0]],"SUBSTACK":[2,"aT"]},"fields":{},"shadow":false,"topLevel":false},"y;":{"opcode":"argument_reporter_string_number","next":null,"parent":"fm","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"aT":{"opcode":"data_replaceitemoflist","next":"r]","parent":"fm","inputs":{"INDEX":[3,"y=",[7,0]],"ITEM":[3,"r5",[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"y=":{"opcode":"operator_add","next":null,"parent":"aT","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"r5":{"opcode":"operator_join","next":null,"parent":"aT","inputs":{"STRING1":[3,"r1",[10,""]],"STRING2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r1":{"opcode":"data_itemoflist","next":null,"parent":"r5","inputs":{"INDEX":[3,"y?",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"y?":{"opcode":"operator_add","next":null,"parent":"r1","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"r]":{"opcode":"data_changevariableby","next":"fn","parent":"aT","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"fn":{"opcode":"control_if","next":null,"parent":"r]","inputs":{"CONDITION":[2,"r^"],"SUBSTACK":[2,"r+"]},"fields":{},"shadow":false,"topLevel":false},"r^":{"opcode":"operator_equals","next":null,"parent":"fn","inputs":{"OPERAND1":[3,"y@",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"y@":{"opcode":"operator_mod","next":null,"parent":"r^","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[3,[12,"g","pI+E2RUGrnC0}Oxj[fQD"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r+":{"opcode":"data_setvariableto","next":null,"parent":"fn","inputs":{"VALUE":[3,"y|",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"y|":{"opcode":"operator_subtract","next":null,"parent":"r+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r6":{"opcode":"procedures_definition","next":"r_","parent":null,"inputs":{"custom_block":[1,"r8"]},"fields":{},"shadow":false,"topLevel":true,"x":59466,"y":801},"r8":{"opcode":"procedures_prototype","next":null,"parent":"r6","inputs":{"1aHaUOe7;=R!w0~PAwaT":[1,"y}"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert %s to base 16","argumentids":"[\"1aHaUOe7;=R!w0~PAwaT\"]","argumentnames":"[\"x\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"y}":{"opcode":"argument_reporter_string_number","next":null,"parent":"r8","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"r_":{"opcode":"data_setvariableto","next":null,"parent":"r6","inputs":{"VALUE":[3,"fo",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"fo":{"opcode":"operator_join","next":null,"parent":"r_","inputs":{"STRING1":[3,"r9",[10,""]],"STRING2":[3,"r!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r9":{"opcode":"operator_letter_of","next":null,"parent":"fo","inputs":{"LETTER":[3,"r#",[6,0]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"r#":{"opcode":"operator_add","next":null,"parent":"r9","inputs":{"NUM1":[3,"r%",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"r%":{"opcode":"operator_mathop","next":null,"parent":"r#","inputs":{"NUM":[3,"r`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"r`":{"opcode":"operator_divide","next":null,"parent":"r%","inputs":{"NUM1":[3,"o}",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"o}":{"opcode":"argument_reporter_string_number","next":null,"parent":"r`","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"r!":{"opcode":"operator_letter_of","next":null,"parent":"fo","inputs":{"LETTER":[3,"r{",[6,0]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"r~":{"opcode":"procedures_definition","next":"fp","parent":null,"inputs":{"custom_block":[1,"fq"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"fq":{"opcode":"procedures_prototype","next":null,"parent":"r~","inputs":{"):SP4qvVvViA4/C1vHGd":[1,"pa"],"_8jVAd~okL#b.Jj@]rGV":[1,"zA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*goto %s %s","argumentids":"[\"):SP4qvVvViA4/C1vHGd\",\"_8jVAd~okL#b.Jj@]rGV\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"pa":{"opcode":"argument_reporter_string_number","next":null,"parent":"fq","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"zA":{"opcode":"argument_reporter_string_number","next":null,"parent":"fq","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"fp":{"opcode":"motion_gotoxy","next":null,"parent":"r~","inputs":{"X":[3,"rQ",[4,0]],"Y":[3,"sc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"rQ":{"opcode":"operator_subtract","next":null,"parent":"fp","inputs":{"NUM1":[3,"sd",[4,0]],"NUM2":[3,[12,"_XSHIFT","7ge_EoziNOcpkF[hyyvb"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"sd":{"opcode":"operator_multiply","next":null,"parent":"rQ","inputs":{"NUM1":[3,"se",[4,0]],"NUM2":[3,[12,"_SIZE","i{fSr|$u)-tpEX+a*y{]"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"se":{"opcode":"operator_add","next":null,"parent":"sd","inputs":{"NUM1":[3,"pc",[4,0]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"pc":{"opcode":"argument_reporter_string_number","next":null,"parent":"se","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"sc":{"opcode":"operator_subtract","next":null,"parent":"fp","inputs":{"NUM1":[3,[12,"_YSHIFT","$bOgKA@,Cg7J(#lntKuz"],[4,0]],"NUM2":[3,"sf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"sf":{"opcode":"operator_multiply","next":null,"parent":"sc","inputs":{"NUM1":[3,"sh",[4,0]],"NUM2":[3,[12,"_SIZE","i{fSr|$u)-tpEX+a*y{]"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"sh":{"opcode":"operator_add","next":null,"parent":"sf","inputs":{"NUM1":[3,"zO",[4,0]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"zO":{"opcode":"argument_reporter_string_number","next":null,"parent":"sh","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"si":{"opcode":"procedures_definition","next":"e0","parent":null,"inputs":{"custom_block":[1,"sj"]},"fields":{},"shadow":false,"topLevel":true,"x":949,"y":64},"sj":{"opcode":"procedures_prototype","next":null,"parent":"si","inputs":{"XAnG?a[IUle97wxqa*bi":[1,"pe"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","argumentnames":"[\"2\"]","argumentdefaults":"[\"\"]","warp":"true"}},"pe":{"opcode":"argument_reporter_string_number","next":null,"parent":"sj","inputs":{},"fields":{"VALUE":["2",null]},"shadow":true,"topLevel":false},"e0":{"opcode":"data_setvariableto","next":"2g","parent":"si","inputs":{"VALUE":[3,"bj9",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"bj9":{"opcode":"data_itemoflist","next":null,"parent":"e0","inputs":{"INDEX":[3,[12,"_STATindex","(T;tOv.x|5[_=^tcd?s+"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"2g":{"opcode":"data_setvariableto","next":"sk","parent":"e0","inputs":{"VALUE":[3,"bj!",[10,""]]},"fields":{"VARIABLE":["-STATUS",".yqIokTgw8-|]3$}O%wt"]},"shadow":false,"topLevel":false},"bj!":{"opcode":"argument_reporter_string_number","next":null,"parent":"2g","inputs":{},"fields":{"VALUE":["2",null]},"shadow":false,"topLevel":false},"sk":{"opcode":"procedures_call","next":null,"parent":"2g","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"eX",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF41"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"eX":{"opcode":"operator_add","next":null,"parent":"sk","inputs":{"NUM1":[3,"sl",[4,0]],"NUM2":[3,"bj#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"sl":{"opcode":"operator_subtract","next":null,"parent":"eX","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"bj%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj%":{"opcode":"operator_mod","next":null,"parent":"sl","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bj#":{"opcode":"argument_reporter_string_number","next":null,"parent":"eX","inputs":{},"fields":{"VALUE":["2",null]},"shadow":false,"topLevel":false},"bj(":{"opcode":"event_whenbroadcastreceived","next":"sm","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["emulate!!","q@nrUic%_jFs,BP#Pz@]"]},"shadow":false,"topLevel":true,"x":39312,"y":841},"sm":{"opcode":"pen_clear","next":"sn","parent":"bj(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sr":{"opcode":"procedures_definition","next":"ss","parent":null,"inputs":{"custom_block":[1,"z1"]},"fields":{},"shadow":false,"topLevel":true,"x":39471,"y":1438},"z1":{"opcode":"procedures_prototype","next":null,"parent":"sr","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*reset PPU","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"ss":{"opcode":"procedures_call","next":"s2","parent":"sr","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},"s2":{"opcode":"procedures_call","next":"s3","parent":"ss","inputs":{"LxbWd59lHDpYkr5#Qsr(":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*setLY %s","argumentids":"[\"LxbWd59lHDpYkr5#Qsr(\"]","warp":"true"}},"s3":{"opcode":"data_setvariableto","next":"st","parent":"s2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-WLY","Z]?-Im_0pF^!OOi!AX81"]},"shadow":false,"topLevel":false},"st":{"opcode":"data_setvariableto","next":"su","parent":"s3","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-windowWasDrawn?","dyPQEg`wlO+1vws5/HRV"]},"shadow":false,"topLevel":false},"su":{"opcode":"data_setvariableto","next":"bj)","parent":"st","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"bj)":{"opcode":"data_setvariableto","next":null,"parent":"su","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_PIXEL#","AfAG@-SCQv_v!Pd(!ksr"]},"shadow":false,"topLevel":false},"sv":{"opcode":"procedures_definition","next":"fc","parent":null,"inputs":{"custom_block":[1,"sw"]},"fields":{},"shadow":false,"topLevel":true,"x":67218,"y":372},"sw":{"opcode":"procedures_prototype","next":null,"parent":"sv","inputs":{"LxbWd59lHDpYkr5#Qsr(":[1,"z2"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*setLY %s","argumentids":"[\"LxbWd59lHDpYkr5#Qsr(\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"z2":{"opcode":"argument_reporter_string_number","next":null,"parent":"sw","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"fc":{"opcode":"data_setvariableto","next":"sx","parent":"sv","inputs":{"VALUE":[3,"pf",[10,""]]},"fields":{"VARIABLE":["-LY","R93(y;ezBDFNxz;R$.9{"]},"shadow":false,"topLevel":false},"pf":{"opcode":"argument_reporter_string_number","next":null,"parent":"fc","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"sx":{"opcode":"procedures_call","next":null,"parent":"fc","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"z3",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF44"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"z3":{"opcode":"argument_reporter_string_number","next":null,"parent":"sx","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"sy":{"opcode":"procedures_definition","next":"r2","parent":null,"inputs":{"custom_block":[1,"bj*"]},"fields":{},"shadow":false,"topLevel":true,"x":29727,"y":2243},"bj*":{"opcode":"procedures_prototype","next":null,"parent":"sy","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*OAMsearch","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"r2":{"opcode":"data_setvariableto","next":"sC","parent":"sy","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["g","pI+E2RUGrnC0}Oxj[fQD"]},"shadow":false,"topLevel":false},"sC":{"opcode":"data_deletealloflist","next":"sE","parent":"r2","inputs":{},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"sK":{"opcode":"procedures_definition","next":"aI^","parent":null,"inputs":{"custom_block":[1,"z6"]},"fields":{},"shadow":false,"topLevel":true,"x":2477,"y":64},"z6":{"opcode":"procedures_prototype","next":null,"parent":"sK","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_bitwise init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"sL":{"opcode":"data_deletealloflist","next":"fh","parent":"2h","inputs":{},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"fh":{"opcode":"control_repeat","next":"sM","parent":"sL","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"2i"]},"fields":{},"shadow":false,"topLevel":false},"2i":{"opcode":"control_repeat","next":"pg","parent":"fh","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"sN"]},"fields":{},"shadow":false,"topLevel":false},"pg":{"opcode":"procedures_call","next":null,"parent":"2i","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"sM":{"opcode":"data_deletealloflist","next":"1~","parent":"fh","inputs":{},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"s,":{"opcode":"data_setvariableto","next":"s*","parent":"1}","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"s*":{"opcode":"data_setvariableto","next":"2a","parent":"s,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"s+":{"opcode":"data_changevariableby","next":"s-","parent":"2a","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"s-":{"opcode":"data_setvariableto","next":null,"parent":"s+","inputs":{"VALUE":[3,"s#",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"s#":{"opcode":"operator_join","next":null,"parent":"s-","inputs":{"STRING1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"STRING2":[3,"s!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s!":{"opcode":"operator_add","next":null,"parent":"s#","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"2b",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"pn":{"opcode":"data_itemoflist","next":null,"parent":"2b","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false,"comment":"ZH"},"Az":{"opcode":"data_itemoflist","next":null,"parent":"2b","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"pk":{"opcode":"procedures_call","next":null,"parent":"1}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"s%":{"opcode":"data_deletealloflist","next":"s8","parent":"1~","inputs":{},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"s:":{"opcode":"procedures_definition","next":"tg","parent":null,"inputs":{"custom_block":[1,"zb"]},"fields":{},"shadow":false,"topLevel":true,"x":8703,"y":934},"zb":{"opcode":"procedures_prototype","next":null,"parent":"s:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$ab reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"tg":{"opcode":"data_deletealloflist","next":"th","parent":"s:","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"th":{"opcode":"data_deletealloflist","next":"fy","parent":"tg","inputs":{},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"fy":{"opcode":"control_repeat","next":"tu","parent":"th","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"ze"]},"fields":{},"shadow":false,"topLevel":false},"ze":{"opcode":"data_addtolist","next":null,"parent":"fy","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"tu":{"opcode":"control_repeat","next":null,"parent":"fy","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"zf"]},"fields":{},"shadow":false,"topLevel":false},"zf":{"opcode":"data_addtolist","next":null,"parent":"tu","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"tv":{"opcode":"procedures_definition","next":"8","parent":null,"inputs":{"custom_block":[1,"zg"]},"fields":{},"shadow":false,"topLevel":true,"x":8944,"y":1164},"zg":{"opcode":"procedures_prototype","next":null,"parent":"tv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"fv":{"opcode":"operator_or","next":null,"parent":"8","inputs":{"OPERAND1":[2,"tw"],"OPERAND2":[2,"tm"]},"fields":{},"shadow":false,"topLevel":false},"tw":{"opcode":"operator_equals","next":null,"parent":"fv","inputs":{"OPERAND1":[3,"zj",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zj":{"opcode":"data_itemoflist","next":null,"parent":"tw","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"tm":{"opcode":"operator_equals","next":null,"parent":"fv","inputs":{"OPERAND1":[3,"zh",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"zh":{"opcode":"data_itemoflist","next":null,"parent":"tm","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"zi":{"opcode":"data_deleteoflist","next":null,"parent":"8","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"s|":{"opcode":"data_replaceitemoflist","next":"fw","parent":"8","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"fw":{"opcode":"control_repeat","next":null,"parent":"s|","inputs":{"TIMES":[3,"tJ",[6,0]],"SUBSTACK":[2,"zk"]},"fields":{},"shadow":false,"topLevel":false},"tJ":{"opcode":"operator_subtract","next":null,"parent":"fw","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"zl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zl":{"opcode":"data_lengthoflist","next":null,"parent":"tJ","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"zk":{"opcode":"data_addtolist","next":null,"parent":"fw","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"tb":{"opcode":"procedures_definition","next":"fz","parent":null,"inputs":{"custom_block":[1,"zs"]},"fields":{},"shadow":false,"topLevel":true,"x":42869,"y":64},"zs":{"opcode":"procedures_prototype","next":null,"parent":"tb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"__run cycles","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"fz":{"opcode":"data_setvariableto","next":"!","parent":"tb","inputs":{"VALUE":[3,"zt",[10,""]]},"fields":{"VARIABLE":["-keyRandom","_CW|-^_^`N}DL:?%3bn."]},"shadow":false,"topLevel":false},"zt":{"opcode":"operator_random","next":null,"parent":"fz","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"144"]]},"fields":{},"shadow":false,"topLevel":false},"!":{"opcode":"control_while","next":"tc","parent":"fz","inputs":{"CONDITION":[2,"zu"],"SUBSTACK":[2,"aF"]},"fields":{},"shadow":false,"topLevel":false},"zu":{"opcode":"operator_lt","next":null,"parent":"!","inputs":{"OPERAND1":[3,[12,",c","Crf*ltOpxTp[zPgDlY{T"],[10,""]],"OPERAND2":[1,[10,"70224"]]},"fields":{},"shadow":false,"topLevel":false},"aF":{"opcode":"control_if","next":"zv","parent":"!","inputs":{"CONDITION":[2,"zw"],"SUBSTACK":[2,"zx"]},"fields":{},"shadow":false,"topLevel":false},"zw":{"opcode":"operator_equals","next":null,"parent":"aF","inputs":{"OPERAND1":[3,[12,",joypad","W/n=I{ySVA3XJEP{k?=["],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zx":{"opcode":"procedures_call","next":null,"parent":"aF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"&joypad","argumentids":"[]","warp":"true"}},"zv":{"opcode":"procedures_call","next":null,"parent":"aF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cycle","argumentids":"[]","warp":"true"}},"tc":{"opcode":"data_changevariableby","next":"zy","parent":"!","inputs":{"VALUE":[1,[4,"-70224"]]},"fields":{"VARIABLE":[",c","Crf*ltOpxTp[zPgDlY{T"]},"shadow":false,"topLevel":false},"zy":{"opcode":"procedures_call","next":null,"parent":"tc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+update sound","argumentids":"[]","warp":"false"}},"tV":{"opcode":"procedures_definition","next":"tZ","parent":null,"inputs":{"custom_block":[1,"zz"]},"fields":{},"shadow":false,"topLevel":true,"x":61140,"y":252},"zz":{"opcode":"procedures_prototype","next":null,"parent":"tV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INTR","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"tZ":{"opcode":"procedures_call","next":"ft","parent":"tV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"z","argumentids":"[]","warp":"true"}},"ft":{"opcode":"control_if","next":null,"parent":"tZ","inputs":{"CONDITION":[2,"pd"],"SUBSTACK":[2,"t0"]},"fields":{},"shadow":false,"topLevel":false},"pd":{"opcode":"operator_gt","next":null,"parent":"ft","inputs":{"OPERAND1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"t0":{"opcode":"data_setvariableto","next":"aG","parent":"ft","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_HALT","F_}DPF^fI%3NP^P]}FKY"]},"shadow":false,"topLevel":false},"ts":{"opcode":"procedures_definition","next":"Z","parent":null,"inputs":{"custom_block":[1,"fC"]},"fields":{},"shadow":false,"topLevel":true,"x":42901,"y":2050},"fC":{"opcode":"procedures_prototype","next":null,"parent":"ts","inputs":{"2O85X@RV-R+tGTc#moyk":[1,"zB"],"UWMrpjv[L%4fZOo$yXk{":[1,"zC"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set STAT %s , %s","argumentids":"[\"2O85X@RV-R+tGTc#moyk\",\"UWMrpjv[L%4fZOo$yXk{\"]","argumentnames":"[\"bit\",\"cond\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"zB":{"opcode":"argument_reporter_string_number","next":null,"parent":"fC","inputs":{},"fields":{"VALUE":["bit",null]},"shadow":true,"topLevel":false},"zC":{"opcode":"argument_reporter_string_number","next":null,"parent":"fC","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":true,"topLevel":false},"zE":{"opcode":"argument_reporter_string_number","next":null,"parent":"Z","inputs":{},"fields":{"VALUE":["bit",null]},"shadow":false,"topLevel":false},"tt":{"opcode":"data_itemoflist","next":null,"parent":"Z","inputs":{"INDEX":[3,"zF",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"zF":{"opcode":"operator_add","next":null,"parent":"tt","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zD":{"opcode":"procedures_call","next":null,"parent":"Z","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF41"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"s~":{"opcode":"procedures_definition","next":"aH","parent":null,"inputs":{"custom_block":[1,"fD"]},"fields":{},"shadow":false,"topLevel":true,"x":68140,"y":64},"fD":{"opcode":"procedures_prototype","next":null,"parent":"s~","inputs":{"DmJnXi1[qUlHjf;C=~o[":[1,"zH"],"!-|QVVj^*8]m|Qagq{HG":[1,"zI"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","argumentnames":"[\"bit\",\"val\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"zH":{"opcode":"argument_reporter_string_number","next":null,"parent":"fD","inputs":{},"fields":{"VALUE":["bit",null]},"shadow":true,"topLevel":false},"zI":{"opcode":"argument_reporter_string_number","next":null,"parent":"fD","inputs":{},"fields":{"VALUE":["val",null]},"shadow":true,"topLevel":false},"aH":{"opcode":"control_if_else","next":null,"parent":"s~","inputs":{"CONDITION":[2,"ta"],"SUBSTACK":[2,"to"],"SUBSTACK2":[2,"t*"]},"fields":{},"shadow":false,"topLevel":false},"ta":{"opcode":"operator_equals","next":null,"parent":"aH","inputs":{"OPERAND1":[3,"zJ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"ta","inputs":{},"fields":{"VALUE":["val",null]},"shadow":false,"topLevel":false},"to":{"opcode":"procedures_call","next":null,"parent":"aH","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"t+",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF0F"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"t+":{"opcode":"data_itemoflist","next":null,"parent":"to","inputs":{"INDEX":[3,"t,",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"t,":{"opcode":"operator_add","next":null,"parent":"t+","inputs":{"NUM1":[3,"fE",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fE":{"opcode":"operator_add","next":null,"parent":"t,","inputs":{"NUM1":[3,"t-",[4,0]],"NUM2":[3,"t.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"t-":{"opcode":"operator_multiply","next":null,"parent":"fE","inputs":{"NUM1":[3,"zK",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"zK":{"opcode":"data_itemoflist","next":null,"parent":"t-","inputs":{"INDEX":[3,[12,"_IFindex","qOvY4@JXH3Z=q*#gP*-="],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"t.":{"opcode":"data_itemoflist","next":null,"parent":"fE","inputs":{"INDEX":[3,"s?",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"s?":{"opcode":"operator_add","next":null,"parent":"t.","inputs":{"NUM1":[3,"zL",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zL":{"opcode":"argument_reporter_string_number","next":null,"parent":"s?","inputs":{},"fields":{"VALUE":["bit",null]},"shadow":false,"topLevel":false},"t*":{"opcode":"procedures_call","next":null,"parent":"aH","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"t1",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF0F"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"tx":{"opcode":"procedures_definition","next":"tz","parent":null,"inputs":{"custom_block":[1,"bj+"]},"fields":{},"shadow":false,"topLevel":true,"x":11412,"y":64},"bj+":{"opcode":"procedures_prototype","next":null,"parent":"tx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*palette decode","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"tz":{"opcode":"data_deletealloflist","next":"tA","parent":"tx","inputs":{},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"tA":{"opcode":"procedures_call","next":"tB","parent":"tz","inputs":{"}yt+vYiKu?EdDKXFG?]9":[1,[10,"0xFF47"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*monodecode palettes address %s","argumentids":"[\"}yt+vYiKu?EdDKXFG?]9\"]","warp":"true"}},"tB":{"opcode":"procedures_call","next":"zP","parent":"tA","inputs":{"}yt+vYiKu?EdDKXFG?]9":[1,[10,"0xFF48"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*monodecode palettes address %s","argumentids":"[\"}yt+vYiKu?EdDKXFG?]9\"]","warp":"true"}},"zP":{"opcode":"procedures_call","next":null,"parent":"tB","inputs":{"}yt+vYiKu?EdDKXFG?]9":[1,[10,"0xFF49"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*monodecode palettes address %s","argumentids":"[\"}yt+vYiKu?EdDKXFG?]9\"]","warp":"true"}},"tC":{"opcode":"procedures_definition","next":"fJ","parent":null,"inputs":{"custom_block":[1,"tF"]},"fields":{},"shadow":false,"topLevel":true,"x":36031,"y":900},"tF":{"opcode":"procedures_prototype","next":null,"parent":"tC","inputs":{"}yt+vYiKu?EdDKXFG?]9":[1,"zR"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*monodecode palettes address %s","argumentids":"[\"}yt+vYiKu?EdDKXFG?]9\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"zR":{"opcode":"argument_reporter_string_number","next":null,"parent":"tF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"fJ":{"opcode":"procedures_call","next":"tG","parent":"tC","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"zQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"zQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"fJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"tG":{"opcode":"data_setvariableto","next":"fL","parent":"fJ","inputs":{"VALUE":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"fL":{"opcode":"data_addtolist","next":"fQ","parent":"tG","inputs":{"ITEM":[3,"tH",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"tH":{"opcode":"data_itemoflist","next":null,"parent":"fL","inputs":{"INDEX":[3,"tI",[7,0]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"tI":{"opcode":"operator_subtract","next":null,"parent":"tH","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"tK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"tK":{"opcode":"operator_mod","next":null,"parent":"tI","inputs":{"NUM1":[3,"tL",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tL":{"opcode":"operator_mathop","next":null,"parent":"tK","inputs":{"NUM":[3,"zS",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zS":{"opcode":"operator_divide","next":null,"parent":"tL","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fQ":{"opcode":"data_addtolist","next":"fV","parent":"fL","inputs":{"ITEM":[3,"tM",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"tM":{"opcode":"data_itemoflist","next":null,"parent":"fQ","inputs":{"INDEX":[3,"tN",[7,0]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"tN":{"opcode":"operator_subtract","next":null,"parent":"tM","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"tO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"tO":{"opcode":"operator_mod","next":null,"parent":"tN","inputs":{"NUM1":[3,"tP",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tP":{"opcode":"operator_mathop","next":null,"parent":"tO","inputs":{"NUM":[3,"zT",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zT":{"opcode":"operator_divide","next":null,"parent":"tP","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"fV":{"opcode":"data_addtolist","next":"tQ","parent":"fQ","inputs":{"ITEM":[3,"tR",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"tR":{"opcode":"data_itemoflist","next":null,"parent":"fV","inputs":{"INDEX":[3,"tT",[7,0]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"tT":{"opcode":"operator_subtract","next":null,"parent":"tR","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"tU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"tU":{"opcode":"operator_mod","next":null,"parent":"tT","inputs":{"NUM1":[3,"tW",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"tW":{"opcode":"operator_mathop","next":null,"parent":"tU","inputs":{"NUM":[3,"zU",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zU":{"opcode":"operator_divide","next":null,"parent":"tW","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"tQ":{"opcode":"data_addtolist","next":null,"parent":"fV","inputs":{"ITEM":[3,"tX",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"s]":{"opcode":"procedures_definition","next":"=","parent":null,"inputs":{"custom_block":[1,"zW"]},"fields":{},"shadow":false,"topLevel":true,"x":66499,"y":570},"zW":{"opcode":"procedures_prototype","next":null,"parent":"s]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*render frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"=":{"opcode":"control_if","next":"s^","parent":"s]","inputs":{"CONDITION":[2,"zX"],"SUBSTACK":[2,"zY"]},"fields":{},"shadow":false,"topLevel":false},"zX":{"opcode":"operator_equals","next":null,"parent":"=","inputs":{"OPERAND1":[3,[12,"render","b#%5IA`afs~P-ErWHe%`"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zY":{"opcode":"control_stop","next":null,"parent":"=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"s^":{"opcode":"pen_penUp","next":"s_","parent":"=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"s_":{"opcode":"procedures_call","next":"s`","parent":"s^","inputs":{"):SP4qvVvViA4/C1vHGd":[1,[10,"0"]],"_8jVAd~okL#b.Jj@]rGV":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*goto %s %s","argumentids":"[\"):SP4qvVvViA4/C1vHGd\",\"_8jVAd~okL#b.Jj@]rGV\"]","warp":"true"}},"s`":{"opcode":"pen_penDown","next":"s{","parent":"s_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"s{":{"opcode":"data_setvariableto","next":"tq","parent":"s`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"tq":{"opcode":"data_setvariableto","next":"tr","parent":"s{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"tr":{"opcode":"data_setvariableto","next":"t6","parent":"tq","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"t6":{"opcode":"data_setvariableto","next":"f4","parent":"tr","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"f4":{"opcode":"control_repeat","next":"zZ","parent":"t6","inputs":{"TIMES":[1,[6,"23041"]],"SUBSTACK":[2,"t7"]},"fields":{},"shadow":false,"topLevel":false},"t7":{"opcode":"data_changevariableby","next":"cz","parent":"f4","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"cz":{"opcode":"control_if_else","next":null,"parent":"t7","inputs":{"CONDITION":[2,"f("],"SUBSTACK":[2,"z0"],"SUBSTACK2":[2,"t8"]},"fields":{},"shadow":false,"topLevel":false},"f(":{"opcode":"operator_equals","next":null,"parent":"cz","inputs":{"OPERAND1":[3,"t9",[10,""]],"OPERAND2":[3,"OP",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"OP":{"opcode":"data_itemoflist","next":null,"parent":"f(","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"z0":{"opcode":"data_changevariableby","next":null,"parent":"cz","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"t8":{"opcode":"data_changevariableby","next":"f,","parent":"cz","inputs":{"VALUE":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[4,0]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"f,":{"opcode":"pen_setPenColorToColor","next":"cN","parent":"t8","inputs":{"COLOR":[3,"t!",[9,"#4207bb"]]},"fields":{},"shadow":false,"topLevel":false},"t!":{"opcode":"data_itemoflist","next":null,"parent":"f,","inputs":{"INDEX":[3,"bj,",[7,0]]},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"bj,":{"opcode":"operator_subtract","next":null,"parent":"t!","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"cN":{"opcode":"control_while","next":"t#","parent":"f,","inputs":{"CONDITION":[2,"t%"],"SUBSTACK":[2,"t("]},"fields":{},"shadow":false,"topLevel":false},"t%":{"opcode":"operator_not","next":null,"parent":"cN","inputs":{"OPERAND":[2,"bj-"]},"fields":{},"shadow":false,"topLevel":false},"bj-":{"opcode":"operator_lt","next":null,"parent":"t%","inputs":{"OPERAND1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"t#":{"opcode":"procedures_call","next":"bj.","parent":"cN","inputs":{"):SP4qvVvViA4/C1vHGd":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"_8jVAd~okL#b.Jj@]rGV":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*goto %s %s","argumentids":"[\"):SP4qvVvViA4/C1vHGd\",\"_8jVAd~okL#b.Jj@]rGV\"]","warp":"true"}},"bj.":{"opcode":"data_setvariableto","next":null,"parent":"t#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"zZ":{"opcode":"pen_penUp","next":null,"parent":"f4","inputs":{},"fields":{},"shadow":false,"topLevel":false},"tj":{"opcode":"procedures_definition","next":"f+","parent":null,"inputs":{"custom_block":[1,"bj/"]},"fields":{},"shadow":false,"topLevel":true,"x":10593,"y":514},"bj/":{"opcode":"procedures_prototype","next":null,"parent":"tj","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*sort by x position","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"f+":{"opcode":"control_if","next":null,"parent":"tj","inputs":{"CONDITION":[2,"tk"],"SUBSTACK":[2,"tl"]},"fields":{},"shadow":false,"topLevel":false},"tk":{"opcode":"operator_gt","next":null,"parent":"f+","inputs":{"OPERAND1":[3,"bj:",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bj:":{"opcode":"data_lengthoflist","next":null,"parent":"tk","inputs":{},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"tl":{"opcode":"data_setvariableto","next":"f5","parent":"f+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["h","Xa^xc{EoyO7r}@UX9*=="]},"shadow":false,"topLevel":false},"f5":{"opcode":"control_repeat","next":null,"parent":"tl","inputs":{"TIMES":[3,"bj;",[6,0]],"SUBSTACK":[2,"tn"]},"fields":{},"shadow":false,"topLevel":false},"bj;":{"opcode":"data_lengthoflist","next":null,"parent":"f5","inputs":{},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"tn":{"opcode":"data_changevariableby","next":"t=","parent":"f5","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["h","Xa^xc{EoyO7r}@UX9*=="]},"shadow":false,"topLevel":false},"t=":{"opcode":"data_setvariableto","next":"t?","parent":"tn","inputs":{"VALUE":[3,[12,"h","Xa^xc{EoyO7r}@UX9*=="],[10,""]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"t?":{"opcode":"data_setvariableto","next":"f-","parent":"t=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"f-":{"opcode":"control_while","next":null,"parent":"t?","inputs":{"CONDITION":[2,"f."],"SUBSTACK":[2,"f/"]},"fields":{},"shadow":false,"topLevel":false},"f.":{"opcode":"operator_and","next":null,"parent":"f-","inputs":{"OPERAND1":[2,"bj="],"OPERAND2":[2,"bj?"]},"fields":{},"shadow":false,"topLevel":false},"bj=":{"opcode":"operator_equals","next":null,"parent":"f.","inputs":{"OPERAND1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bj?":{"opcode":"operator_gt","next":null,"parent":"f.","inputs":{"OPERAND1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f/":{"opcode":"data_setvariableto","next":"?","parent":"f-","inputs":{"VALUE":[3,"t@",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"t@":{"opcode":"operator_add","next":null,"parent":"f/","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"f:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"f:":{"opcode":"operator_lt","next":null,"parent":"t@","inputs":{"OPERAND1":[3,"bj@",[10,""]],"OPERAND2":[3,"t[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bj@":{"opcode":"data_itemoflist","next":null,"parent":"f:","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"t[":{"opcode":"data_itemoflist","next":null,"parent":"f:","inputs":{"INDEX":[3,"bj[",[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"bj[":{"opcode":"operator_subtract","next":null,"parent":"t[","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"?":{"opcode":"control_if","next":"bj]","parent":"f/","inputs":{"CONDITION":[2,"bj^"],"SUBSTACK":[2,"t]"]},"fields":{},"shadow":false,"topLevel":false},"bj^":{"opcode":"operator_equals","next":null,"parent":"?","inputs":{"OPERAND1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"t]":{"opcode":"procedures_call","next":null,"parent":"?","inputs":{"%JVySrOI{fkh7e-p=DcT":[3,"bj_",[10,""]],"1H%DhTekcjY^VVT`dWA_":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*swap %s %s","argumentids":"[\"%JVySrOI{fkh7e-p=DcT\",\"1H%DhTekcjY^VVT`dWA_\"]","warp":"true"}},"bj_":{"opcode":"operator_subtract","next":null,"parent":"t]","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bj]":{"opcode":"data_changevariableby","next":null,"parent":"?","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"t^":{"opcode":"procedures_definition","next":"f;","parent":null,"inputs":{"custom_block":[1,"f6"]},"fields":{},"shadow":false,"topLevel":true,"x":11412,"y":336},"f6":{"opcode":"procedures_prototype","next":null,"parent":"t^","inputs":{"%JVySrOI{fkh7e-p=DcT":[1,"bj`"],"1H%DhTekcjY^VVT`dWA_":[1,"bj{"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*swap %s %s","argumentids":"[\"%JVySrOI{fkh7e-p=DcT\",\"1H%DhTekcjY^VVT`dWA_\"]","argumentnames":"[\"a\",\"b\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bj`":{"opcode":"argument_reporter_string_number","next":null,"parent":"f6","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"bj{":{"opcode":"argument_reporter_string_number","next":null,"parent":"f6","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"f;":{"opcode":"data_setvariableto","next":"cV","parent":"t^","inputs":{"VALUE":[3,"uc",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"uc":{"opcode":"data_itemoflist","next":null,"parent":"f;","inputs":{"INDEX":[3,"bj|",[7,0]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"bj|":{"opcode":"argument_reporter_string_number","next":null,"parent":"uc","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"cV":{"opcode":"data_replaceitemoflist","next":"f9","parent":"f;","inputs":{"INDEX":[3,"bj}",[7,0]],"ITEM":[3,"ud",[10,""]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"bj}":{"opcode":"argument_reporter_string_number","next":null,"parent":"cV","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"ud":{"opcode":"data_itemoflist","next":null,"parent":"cV","inputs":{"INDEX":[3,"bj~",[7,0]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"bj~":{"opcode":"argument_reporter_string_number","next":null,"parent":"ud","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"f9":{"opcode":"data_replaceitemoflist","next":"fK","parent":"cV","inputs":{"INDEX":[3,"bka",[7,0]],"ITEM":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"bka":{"opcode":"argument_reporter_string_number","next":null,"parent":"f9","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"fK":{"opcode":"data_setvariableto","next":"c3","parent":"f9","inputs":{"VALUE":[3,"t_",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"t_":{"opcode":"data_itemoflist","next":null,"parent":"fK","inputs":{"INDEX":[3,"bkb",[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"bkb":{"opcode":"argument_reporter_string_number","next":null,"parent":"t_","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"c3":{"opcode":"data_replaceitemoflist","next":"f!","parent":"fK","inputs":{"INDEX":[3,"bkc",[7,0]],"ITEM":[3,"t`",[10,""]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"bkc":{"opcode":"argument_reporter_string_number","next":null,"parent":"c3","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"t`":{"opcode":"data_itemoflist","next":null,"parent":"c3","inputs":{"INDEX":[3,"bkd",[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"bkd":{"opcode":"argument_reporter_string_number","next":null,"parent":"t`","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"f!":{"opcode":"data_replaceitemoflist","next":"f=","parent":"c3","inputs":{"INDEX":[3,"bke",[7,0]],"ITEM":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"bke":{"opcode":"argument_reporter_string_number","next":null,"parent":"f!","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"f=":{"opcode":"data_setvariableto","next":"@","parent":"f!","inputs":{"VALUE":[3,"t{",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"t{":{"opcode":"data_itemoflist","next":null,"parent":"f=","inputs":{"INDEX":[3,"bkf",[7,0]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"bkf":{"opcode":"argument_reporter_string_number","next":null,"parent":"t{","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"@":{"opcode":"data_replaceitemoflist","next":"t|","parent":"f=","inputs":{"INDEX":[3,"bkg",[7,0]],"ITEM":[3,"t}",[10,""]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"bkg":{"opcode":"argument_reporter_string_number","next":null,"parent":"@","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"t}":{"opcode":"data_itemoflist","next":null,"parent":"@","inputs":{"INDEX":[3,"bkh",[7,0]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"bkh":{"opcode":"argument_reporter_string_number","next":null,"parent":"t}","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"t|":{"opcode":"data_replaceitemoflist","next":null,"parent":"@","inputs":{"INDEX":[3,"bki",[7,0]],"ITEM":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"bki":{"opcode":"argument_reporter_string_number","next":null,"parent":"t|","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"t~":{"opcode":"procedures_definition","next":"ue","parent":null,"inputs":{"custom_block":[1,"bkj"]},"fields":{},"shadow":false,"topLevel":true,"x":66499,"y":64},"bkj":{"opcode":"procedures_prototype","next":null,"parent":"t~","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update joypad","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ue":{"opcode":"data_deletealloflist","next":"f?","parent":"t~","inputs":{},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"f?":{"opcode":"data_addtolist","next":"f@","parent":"ue","inputs":{"ITEM":[3,"ua",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"ua":{"opcode":"operator_add","next":null,"parent":"f?","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ub",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ub":{"opcode":"sensing_keypressed","next":null,"parent":"ua","inputs":{"KEY_OPTION":[3,"bkk","bkl"]},"fields":{},"shadow":false,"topLevel":false},"bkl":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["down arrow",null]},"shadow":true,"topLevel":true,"x":66669,"y":188},"f@":{"opcode":"data_addtolist","next":"f^","parent":"f?","inputs":{"ITEM":[3,"uf",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uf":{"opcode":"operator_add","next":null,"parent":"f@","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ug",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ug":{"opcode":"sensing_keypressed","next":null,"parent":"uf","inputs":{"KEY_OPTION":[3,"bkm","bkn"]},"fields":{},"shadow":false,"topLevel":false},"bkn":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["up arrow",null]},"shadow":true,"topLevel":true,"x":66669,"y":252},"f^":{"opcode":"data_addtolist","next":"f[","parent":"f@","inputs":{"ITEM":[3,"uh",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uh":{"opcode":"operator_add","next":null,"parent":"f^","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ui",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ui":{"opcode":"sensing_keypressed","next":null,"parent":"uh","inputs":{"KEY_OPTION":[3,"bko","bkp"]},"fields":{},"shadow":false,"topLevel":false},"bkp":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["left arrow",null]},"shadow":true,"topLevel":true,"x":66669,"y":316},"f[":{"opcode":"data_addtolist","next":"f]","parent":"f^","inputs":{"ITEM":[3,"uj",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uj":{"opcode":"operator_add","next":null,"parent":"f[","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"uk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"uk":{"opcode":"sensing_keypressed","next":null,"parent":"uj","inputs":{"KEY_OPTION":[3,"bkq","bkr"]},"fields":{},"shadow":false,"topLevel":false},"bkr":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["right arrow",null]},"shadow":true,"topLevel":true,"x":66669,"y":380},"f]":{"opcode":"data_addtolist","next":"f7","parent":"f[","inputs":{"ITEM":[3,"ul",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"ul":{"opcode":"operator_add","next":null,"parent":"f]","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ms",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ms":{"opcode":"sensing_keypressed","next":null,"parent":"ul","inputs":{"KEY_OPTION":[3,"bks","bkt"]},"fields":{},"shadow":false,"topLevel":false},"bkt":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["right arrow",null]},"shadow":true,"topLevel":true,"x":66669,"y":444},"f7":{"opcode":"data_addtolist","next":"f8","parent":"f]","inputs":{"ITEM":[3,"um",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"um":{"opcode":"operator_add","next":null,"parent":"f7","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"un",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"un":{"opcode":"sensing_keypressed","next":null,"parent":"um","inputs":{"KEY_OPTION":[3,"bku","bkv"]},"fields":{},"shadow":false,"topLevel":false},"bkv":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":true,"x":66669,"y":508},"f8":{"opcode":"data_addtolist","next":"uo","parent":"f7","inputs":{"ITEM":[3,"up",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"up":{"opcode":"operator_add","next":null,"parent":"f8","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"uq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"uo":{"opcode":"data_addtolist","next":null,"parent":"f8","inputs":{"ITEM":[3,"ur",[10,""]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"ur":{"opcode":"operator_add","next":null,"parent":"uo","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"us",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"us":{"opcode":"sensing_keypressed","next":null,"parent":"ur","inputs":{"KEY_OPTION":[3,"bkw","bkx"]},"fields":{},"shadow":false,"topLevel":false},"bkx":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["s",null]},"shadow":true,"topLevel":true,"x":66669,"y":636},"ut":{"opcode":"procedures_definition","next":"uu","parent":null,"inputs":{"custom_block":[1,"bky"]},"fields":{},"shadow":false,"topLevel":true,"x":949,"y":324},"bky":{"opcode":"procedures_prototype","next":null,"parent":"ut","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"&joypad","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"uu":{"opcode":"data_setvariableto","next":"uv","parent":"ut","inputs":{"VALUE":[3,[12,"T4.1","hpXj8g4|ZHczy1?w+*u`"],[10,""]]},"fields":{"VARIABLE":["T4.2","P6r1PrSf,aWdOUXT8nij"]},"shadow":false,"topLevel":false},"uv":{"opcode":"data_setvariableto","next":"uw","parent":"uu","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"uw":{"opcode":"data_deletealloflist","next":"ux","parent":"uv","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"ux":{"opcode":"procedures_call","next":"f#","parent":"uw","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"f#":{"opcode":"data_addtolist","next":"f%","parent":"ux","inputs":{"ITEM":[3,"uy",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"uy":{"opcode":"operator_equals","next":null,"parent":"f#","inputs":{"OPERAND1":[3,"uz",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uz":{"opcode":"operator_mod","next":null,"parent":"uy","inputs":{"NUM1":[3,"uA",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uA":{"opcode":"operator_mathop","next":null,"parent":"uz","inputs":{"NUM":[3,"bkz",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bkz":{"opcode":"operator_divide","next":null,"parent":"uA","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"f%":{"opcode":"data_addtolist","next":"f)","parent":"f#","inputs":{"ITEM":[3,"uB",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"uB":{"opcode":"operator_equals","next":null,"parent":"f%","inputs":{"OPERAND1":[3,"uC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uC":{"opcode":"operator_mod","next":null,"parent":"uB","inputs":{"NUM1":[3,"uD",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uD":{"opcode":"operator_mathop","next":null,"parent":"uC","inputs":{"NUM":[3,"bkA",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bkA":{"opcode":"operator_divide","next":null,"parent":"uD","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"f)":{"opcode":"data_changevariableby","next":"fM","parent":"f%","inputs":{"VALUE":[3,"uE",[4,0]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"uE":{"opcode":"operator_multiply","next":null,"parent":"f)","inputs":{"NUM1":[3,"fN",[4,0]],"NUM2":[1,[4,"-8"]]},"fields":{},"shadow":false,"topLevel":false},"fN":{"opcode":"operator_or","next":null,"parent":"uE","inputs":{"OPERAND1":[2,"uF"],"OPERAND2":[2,"uG"]},"fields":{},"shadow":false,"topLevel":false},"uF":{"opcode":"operator_gt","next":null,"parent":"fN","inputs":{"OPERAND1":[3,"fO",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fO":{"opcode":"operator_multiply","next":null,"parent":"uF","inputs":{"NUM1":[3,"bkB",[4,0]],"NUM2":[3,"bkC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkB":{"opcode":"data_itemoflist","next":null,"parent":"fO","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkC":{"opcode":"data_itemoflist","next":null,"parent":"fO","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uG":{"opcode":"operator_gt","next":null,"parent":"fN","inputs":{"OPERAND1":[3,"fP",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fP":{"opcode":"operator_multiply","next":null,"parent":"uG","inputs":{"NUM1":[3,"bkD",[4,0]],"NUM2":[3,"bkE",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkD":{"opcode":"data_itemoflist","next":null,"parent":"fP","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkE":{"opcode":"data_itemoflist","next":null,"parent":"fP","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"fM":{"opcode":"data_changevariableby","next":"f_","parent":"f)","inputs":{"VALUE":[3,"uH",[4,0]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"uH":{"opcode":"operator_multiply","next":null,"parent":"fM","inputs":{"NUM1":[3,"fR",[4,0]],"NUM2":[1,[4,"-4"]]},"fields":{},"shadow":false,"topLevel":false},"fR":{"opcode":"operator_or","next":null,"parent":"uH","inputs":{"OPERAND1":[2,"uI"],"OPERAND2":[2,"uJ"]},"fields":{},"shadow":false,"topLevel":false},"uI":{"opcode":"operator_gt","next":null,"parent":"fR","inputs":{"OPERAND1":[3,"fS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fS":{"opcode":"operator_multiply","next":null,"parent":"uI","inputs":{"NUM1":[3,"bkF",[4,0]],"NUM2":[3,"bkG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkF":{"opcode":"data_itemoflist","next":null,"parent":"fS","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkG":{"opcode":"data_itemoflist","next":null,"parent":"fS","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uJ":{"opcode":"operator_gt","next":null,"parent":"fR","inputs":{"OPERAND1":[3,"fT",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fT":{"opcode":"operator_multiply","next":null,"parent":"uJ","inputs":{"NUM1":[3,"bkH",[4,0]],"NUM2":[3,"bkI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkH":{"opcode":"data_itemoflist","next":null,"parent":"fT","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkI":{"opcode":"data_itemoflist","next":null,"parent":"fT","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"f_":{"opcode":"data_changevariableby","next":"fU","parent":"fM","inputs":{"VALUE":[3,"uK",[4,0]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"uK":{"opcode":"operator_multiply","next":null,"parent":"f_","inputs":{"NUM1":[3,"fW",[4,0]],"NUM2":[1,[4,"-2"]]},"fields":{},"shadow":false,"topLevel":false},"fW":{"opcode":"operator_or","next":null,"parent":"uK","inputs":{"OPERAND1":[2,"uL"],"OPERAND2":[2,"uM"]},"fields":{},"shadow":false,"topLevel":false},"uL":{"opcode":"operator_gt","next":null,"parent":"fW","inputs":{"OPERAND1":[3,"fX",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fX":{"opcode":"operator_multiply","next":null,"parent":"uL","inputs":{"NUM1":[3,"bkJ",[4,0]],"NUM2":[3,"bkK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkJ":{"opcode":"data_itemoflist","next":null,"parent":"fX","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkK":{"opcode":"data_itemoflist","next":null,"parent":"fX","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uM":{"opcode":"operator_gt","next":null,"parent":"fW","inputs":{"OPERAND1":[3,"fY",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fY":{"opcode":"operator_multiply","next":null,"parent":"uM","inputs":{"NUM1":[3,"bkL",[4,0]],"NUM2":[3,"bkM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkL":{"opcode":"data_itemoflist","next":null,"parent":"fY","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkM":{"opcode":"data_itemoflist","next":null,"parent":"fY","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"fU":{"opcode":"data_changevariableby","next":"uN","parent":"f_","inputs":{"VALUE":[3,"uO",[4,0]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"uO":{"opcode":"operator_multiply","next":null,"parent":"fU","inputs":{"NUM1":[3,"fZ",[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"fZ":{"opcode":"operator_or","next":null,"parent":"uO","inputs":{"OPERAND1":[2,"uP"],"OPERAND2":[2,"uQ"]},"fields":{},"shadow":false,"topLevel":false},"uP":{"opcode":"operator_gt","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,"f0",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f0":{"opcode":"operator_multiply","next":null,"parent":"uP","inputs":{"NUM1":[3,"bkN",[4,0]],"NUM2":[3,"bkO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkN":{"opcode":"data_itemoflist","next":null,"parent":"f0","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkO":{"opcode":"data_itemoflist","next":null,"parent":"f0","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uQ":{"opcode":"operator_gt","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,"f1",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f1":{"opcode":"operator_multiply","next":null,"parent":"uQ","inputs":{"NUM1":[3,"bkP",[4,0]],"NUM2":[3,"bkQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkP":{"opcode":"data_itemoflist","next":null,"parent":"f1","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"bkQ":{"opcode":"data_itemoflist","next":null,"parent":"f1","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["joypad buttons","2[P;mjw2X?Sv?vbz7D(?"]},"shadow":false,"topLevel":false},"uN":{"opcode":"data_setvariableto","next":"[","parent":"fU","inputs":{"VALUE":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]]},"fields":{"VARIABLE":["T4.1","hpXj8g4|ZHczy1?w+*u`"]},"shadow":false,"topLevel":false},"[":{"opcode":"control_if","next":"f2","parent":"uN","inputs":{"CONDITION":[2,"bkR"],"SUBSTACK":[2,"bkS"]},"fields":{},"shadow":false,"topLevel":false},"bkR":{"opcode":"operator_lt","next":null,"parent":"[","inputs":{"OPERAND1":[3,[12,"T4.1","hpXj8g4|ZHczy1?w+*u`"],[10,""]],"OPERAND2":[3,[12,"T4.2","P6r1PrSf,aWdOUXT8nij"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bkS":{"opcode":"procedures_call","next":null,"parent":"[","inputs":{"DmJnXi1[qUlHjf;C=~o[":[1,[10,"4"]],"!-|QVVj^*8]m|Qagq{HG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","warp":"true"}},"f2":{"opcode":"procedures_call","next":"bkT","parent":"[","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"uR",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"uR":{"opcode":"operator_add","next":null,"parent":"f2","inputs":{"NUM1":[3,"uS",[4,0]],"NUM2":[1,[4,"0xC0"]]},"fields":{},"shadow":false,"topLevel":false},"uS":{"opcode":"operator_mod","next":null,"parent":"uR","inputs":{"NUM1":[3,"uT",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"uT":{"opcode":"operator_add","next":null,"parent":"uS","inputs":{"NUM1":[3,"uU",[4,0]],"NUM2":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkT":{"opcode":"data_setvariableto","next":null,"parent":"f2","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[",joypad","W/n=I{ySVA3XJEP{k?=["]},"shadow":false,"topLevel":false},"uV":{"opcode":"procedures_definition","next":"uW","parent":null,"inputs":{"custom_block":[1,"bkU"]},"fields":{},"shadow":false,"topLevel":true,"x":4433,"y":64},"bkU":{"opcode":"procedures_prototype","next":null,"parent":"uV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_initMemPointers","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"u)":{"opcode":"procedures_definition","next":"ga","parent":null,"inputs":{"custom_block":[1,"aV"]},"fields":{},"shadow":false,"topLevel":true,"x":8763,"y":280},"aV":{"opcode":"procedures_prototype","next":null,"parent":"u)","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,"bkV"],"cFd/Mk*-VD?)9)H2UXhD":[1,"bkW"],"`WvS3e1Vy[{],EST8Iz`":[1,"bkX"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","argumentnames":"[\"l\",\"q\",\"o\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"false"}},"bkV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV","inputs":{},"fields":{"VALUE":["l",null]},"shadow":true,"topLevel":false},"bkW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV","inputs":{},"fields":{"VALUE":["q",null]},"shadow":true,"topLevel":false},"bkX":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV","inputs":{},"fields":{"VALUE":["o",null]},"shadow":true,"topLevel":false},"ga":{"opcode":"data_addtolist","next":"gb","parent":"u)","inputs":{"ITEM":[3,"bkY",[10,""]]},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"bkY":{"opcode":"data_lengthoflist","next":null,"parent":"ga","inputs":{},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"gb":{"opcode":"data_addtolist","next":"u*","parent":"ga","inputs":{"ITEM":[3,"bkZ",[10,""]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"bkZ":{"opcode":"data_lengthoflist","next":null,"parent":"gb","inputs":{},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"u*":{"opcode":"data_setvariableto","next":"f`","parent":"gb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"f`":{"opcode":"control_repeat","next":null,"parent":"u*","inputs":{"TIMES":[3,"bk0",[6,0]],"SUBSTACK":[2,"gc"]},"fields":{},"shadow":false,"topLevel":false},"bk0":{"opcode":"argument_reporter_string_number","next":null,"parent":"f`","inputs":{},"fields":{"VALUE":["l",null]},"shadow":false,"topLevel":false},"gc":{"opcode":"data_addtolist","next":"cM","parent":"f`","inputs":{"ITEM":[3,"gd",[10,""]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"gd":{"opcode":"operator_subtract","next":null,"parent":"gc","inputs":{"NUM1":[3,"bk1",[4,0]],"NUM2":[3,"bk2",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bk1":{"opcode":"data_lengthoflist","next":null,"parent":"gd","inputs":{},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"bk2":{"opcode":"argument_reporter_string_number","next":null,"parent":"gd","inputs":{},"fields":{"VALUE":["o",null]},"shadow":false,"topLevel":false},"cM":{"opcode":"control_if","next":"u+","parent":"gc","inputs":{"CONDITION":[2,"u,"],"SUBSTACK":[2,"bk3"]},"fields":{},"shadow":false,"topLevel":false},"u,":{"opcode":"operator_equals","next":null,"parent":"cM","inputs":{"OPERAND1":[3,"bk4",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bk4":{"opcode":"argument_reporter_string_number","next":null,"parent":"u,","inputs":{},"fields":{"VALUE":["q",null]},"shadow":false,"topLevel":false},"bk3":{"opcode":"data_addtolist","next":null,"parent":"cM","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"u+":{"opcode":"data_changevariableby","next":"bk5","parent":"cM","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"bk5":{"opcode":"data_addtolist","next":null,"parent":"u+","inputs":{"ITEM":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"u-":{"opcode":"procedures_definition","next":"u.","parent":null,"inputs":{"custom_block":[1,"u/"]},"fields":{},"shadow":false,"topLevel":true,"x":8776,"y":64},"u/":{"opcode":"procedures_prototype","next":null,"parent":"u-","inputs":{"Mty(2GG{m}BZq!JcV]it":[1,"bk6"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_swap ROM bank X to %s","argumentids":"[\"Mty(2GG{m}BZq!JcV]it\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bk6":{"opcode":"argument_reporter_string_number","next":null,"parent":"u/","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"u;":{"opcode":"procedures_definition","next":"u=","parent":null,"inputs":{"custom_block":[1,"bk7"]},"fields":{},"shadow":false,"topLevel":true,"x":46657,"y":64},"bk7":{"opcode":"procedures_prototype","next":null,"parent":"u;","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+update sound","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"u=":{"opcode":"procedures_call","next":"f{","parent":"u;","inputs":{"jIokstn|or8d;HHl7kTb":[1,[10,"0xFF10"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*decode sound from address %s","argumentids":"[\"jIokstn|or8d;HHl7kTb\"]","warp":"true"}},"f{":{"opcode":"data_replaceitemoflist","next":"f|","parent":"u=","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"bk8",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE duty cycle","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"bk8":{"opcode":"data_itemoflist","next":null,"parent":"f{","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"f|":{"opcode":"procedures_call","next":"u?","parent":"f{","inputs":{"}DRO?vo$m2pjcuvV|8J+":[3,"bk9",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert GB freq to MIDI %s","argumentids":"[\"}DRO?vo$m2pjcuvV|8J+\"]","warp":"false"}},"bk9":{"opcode":"data_itemoflist","next":null,"parent":"f|","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"u?":{"opcode":"data_replaceitemoflist","next":"ge","parent":"f|","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["+AUDIO ENGINE pitch","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"ge":{"opcode":"data_replaceitemoflist","next":"u@","parent":"u?","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"bk!",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"bk!":{"opcode":"data_itemoflist","next":null,"parent":"ge","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"v0":{"opcode":"procedures_definition","next":"gC","parent":null,"inputs":{"custom_block":[1,"v1"]},"fields":{},"shadow":false,"topLevel":true,"x":67218,"y":64},"v1":{"opcode":"procedures_prototype","next":null,"parent":"v0","inputs":{"}DRO?vo$m2pjcuvV|8J+":[1,"z%"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert GB freq to MIDI %s","argumentids":"[\"}DRO?vo$m2pjcuvV|8J+\"]","argumentnames":"[\"f\"]","argumentdefaults":"[\"\"]","warp":"false"}},"z%":{"opcode":"argument_reporter_string_number","next":null,"parent":"v1","inputs":{},"fields":{"VALUE":["f",null]},"shadow":true,"topLevel":false},"gC":{"opcode":"data_setvariableto","next":"gD","parent":"v0","inputs":{"VALUE":[3,"v2",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"v2":{"opcode":"operator_add","next":null,"parent":"gC","inputs":{"NUM1":[3,"v3",[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"v3":{"opcode":"operator_multiply","next":null,"parent":"v2","inputs":{"NUM1":[3,"gE",[4,0]],"NUM2":[1,[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"gE":{"opcode":"operator_divide","next":null,"parent":"v3","inputs":{"NUM1":[3,"v4",[4,0]],"NUM2":[3,"OU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v4":{"opcode":"operator_mathop","next":null,"parent":"gE","inputs":{"NUM":[3,"v5",[4,0]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"v5":{"opcode":"operator_divide","next":null,"parent":"v4","inputs":{"NUM1":[3,"v6",[4,0]],"NUM2":[1,[4,"440"]]},"fields":{},"shadow":false,"topLevel":false},"v6":{"opcode":"operator_divide","next":null,"parent":"v5","inputs":{"NUM1":[1,[4,"131072"]],"NUM2":[3,"v7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v7":{"opcode":"operator_subtract","next":null,"parent":"v6","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,"z(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z(":{"opcode":"argument_reporter_string_number","next":null,"parent":"v7","inputs":{},"fields":{"VALUE":["f",null]},"shadow":false,"topLevel":false},"OU":{"opcode":"operator_mathop","next":null,"parent":"gE","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"gD":{"opcode":"control_if","next":null,"parent":"gC","inputs":{"CONDITION":[2,"z)"],"SUBSTACK":[2,"z*"]},"fields":{},"shadow":false,"topLevel":false},"z)":{"opcode":"operator_gt","next":null,"parent":"gD","inputs":{"OPERAND1":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]],"OPERAND2":[1,[10,"109"]]},"fields":{},"shadow":false,"topLevel":false},"z*":{"opcode":"data_setvariableto","next":null,"parent":"gD","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"v8":{"opcode":"procedures_definition","next":"v9","parent":null,"inputs":{"custom_block":[1,"z+"]},"fields":{},"shadow":false,"topLevel":true,"x":12608,"y":64},"z+":{"opcode":"procedures_prototype","next":null,"parent":"v8","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CPU","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"v9":{"opcode":"procedures_call","next":"gF","parent":"v8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INTR","argumentids":"[]","warp":"true"}},"gF":{"opcode":"data_setvariableto","next":"cG","parent":"v9","inputs":{"VALUE":[3,"z,",[10,""]]},"fields":{"VARIABLE":[".IME","Yyq0n/?:tZ-1R{!(9E,I"]},"shadow":false,"topLevel":false},"z,":{"opcode":"operator_mathop","next":null,"parent":"gF","inputs":{"NUM":[3,[12,".IME","Yyq0n/?:tZ-1R{!(9E,I"],[4,0]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"cG":{"opcode":"control_if","next":"v!","parent":"gF","inputs":{"CONDITION":[2,"z-"],"SUBSTACK":[2,"v#"]},"fields":{},"shadow":false,"topLevel":false},"z-":{"opcode":"operator_equals","next":null,"parent":"cG","inputs":{"OPERAND1":[3,[12,"_HALT","F_}DPF^fI%3NP^P]}FKY"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"v#":{"opcode":"procedures_call","next":"pj","parent":"cG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"pj":{"opcode":"control_stop","next":null,"parent":"v#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"v!":{"opcode":"data_deletealloflist","next":"v%","parent":"cG","inputs":{},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"v%":{"opcode":"procedures_call","next":"v(","parent":"v!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"v(":{"opcode":"procedures_call","next":"gG","parent":"v%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"gG":{"opcode":"data_setvariableto","next":"gH","parent":"v(","inputs":{"VALUE":[3,"v)",[10,""]]},"fields":{"VARIABLE":[".instrID","ZnIX}4]R}DE8HyQ,rg57"]},"shadow":false,"topLevel":false},"v)":{"opcode":"operator_add","next":null,"parent":"gG","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"v*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"v*":{"opcode":"data_itemoflist","next":null,"parent":"v)","inputs":{"INDEX":[3,"v+",[7,0]]},"fields":{"LIST":["_instrIDs","OsR*`-9=L4[RoZqDaF|B"]},"shadow":false,"topLevel":false},"v+":{"opcode":"operator_add","next":null,"parent":"v*","inputs":{"NUM1":[3,"z/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z/":{"opcode":"data_itemoflist","next":null,"parent":"v+","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"gH":{"opcode":"data_setvariableto","next":"c4","parent":"gG","inputs":{"VALUE":[3,"v,",[10,""]]},"fields":{"VARIABLE":[".instr","ujAlu]pJm2~uaC1iJUQ]"]},"shadow":false,"topLevel":false},"v,":{"opcode":"data_itemoflist","next":null,"parent":"gH","inputs":{"INDEX":[3,"v-",[7,0]]},"fields":{"LIST":["_instrParam","`KBp;:YVz$LYqY:-@q%C"]},"shadow":false,"topLevel":false},"v-":{"opcode":"operator_add","next":null,"parent":"v,","inputs":{"NUM1":[3,"z:",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z:":{"opcode":"data_itemoflist","next":null,"parent":"v-","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"c4":{"opcode":"control_if_else","next":null,"parent":"gH","inputs":{"CONDITION":[2,"z;"],"SUBSTACK":[2,"cD"],"SUBSTACK2":[2,"cE"]},"fields":{},"shadow":false,"topLevel":false},"z;":{"opcode":"operator_lt","next":null,"parent":"c4","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"cD":{"opcode":"control_if_else","next":null,"parent":"c4","inputs":{"CONDITION":[2,"z="],"SUBSTACK":[2,"cK"],"SUBSTACK2":[2,"cL"]},"fields":{},"shadow":false,"topLevel":false},"z=":{"opcode":"operator_lt","next":null,"parent":"cD","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"cK":{"opcode":"control_if_else","next":null,"parent":"cD","inputs":{"CONDITION":[2,"z?"],"SUBSTACK":[2,"bG"],"SUBSTACK2":[2,"cS"]},"fields":{},"shadow":false,"topLevel":false},"z?":{"opcode":"operator_lt","next":null,"parent":"cK","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bG":{"opcode":"control_if_else","next":null,"parent":"cK","inputs":{"CONDITION":[2,"z@"],"SUBSTACK":[2,"gI"],"SUBSTACK2":[2,"cX"]},"fields":{},"shadow":false,"topLevel":false},"z@":{"opcode":"operator_lt","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"gI":{"opcode":"control_if_else","next":null,"parent":"bG","inputs":{"CONDITION":[2,"z["],"SUBSTACK2":[2,"gJ"]},"fields":{},"shadow":false,"topLevel":false},"z[":{"opcode":"operator_lt","next":null,"parent":"gI","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"gJ":{"opcode":"procedures_call","next":null,"parent":"gI","inputs":{"TbjvqoI#_Re]=6xy6JKs":[3,"z]",[10,""]],"b3-5EMrmf1`|OaCT3jEZ":[3,"z^",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD %s %s","argumentids":"[\"TbjvqoI#_Re]=6xy6JKs\",\"b3-5EMrmf1`|OaCT3jEZ\"]","warp":"true"}},"z]":{"opcode":"operator_letter_of","next":null,"parent":"gJ","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"z^":{"opcode":"operator_letter_of","next":null,"parent":"gJ","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cX":{"opcode":"control_if_else","next":null,"parent":"bG","inputs":{"CONDITION":[2,"z_"],"SUBSTACK":[2,"v."],"SUBSTACK2":[2,"v/"]},"fields":{},"shadow":false,"topLevel":false},"z_":{"opcode":"operator_lt","next":null,"parent":"cX","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"v/":{"opcode":"data_setvariableto","next":null,"parent":"cX","inputs":{"VALUE":[3,"v:",[10,""]]},"fields":{"VARIABLE":[".IME","Yyq0n/?:tZ-1R{!(9E,I"]},"shadow":false,"topLevel":false},"v:":{"opcode":"operator_subtract","next":null,"parent":"v/","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"z{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z{":{"opcode":"operator_letter_of","next":null,"parent":"v:","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cS":{"opcode":"control_if_else","next":null,"parent":"cK","inputs":{"CONDITION":[2,"z|"],"SUBSTACK":[2,"cH"],"SUBSTACK2":[2,"1"]},"fields":{},"shadow":false,"topLevel":false},"z|":{"opcode":"operator_lt","next":null,"parent":"cS","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"cH":{"opcode":"control_if_else","next":null,"parent":"cS","inputs":{"CONDITION":[2,"pl"],"SUBSTACK":[2,"gK"],"SUBSTACK2":[2,"gL"]},"fields":{},"shadow":false,"topLevel":false},"pl":{"opcode":"operator_lt","next":null,"parent":"cH","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"gK":{"opcode":"procedures_call","next":null,"parent":"cH","inputs":{"~w1RiyGKO$AiiJ08`eD{":[3,"z~",[10,""]],"FEj*-$NmnIThhwY5DZ`1":[3,"Aa",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD HL, %s %s","argumentids":"[\"~w1RiyGKO$AiiJ08`eD{\",\"FEj*-$NmnIThhwY5DZ`1\"]","warp":"true"}},"z~":{"opcode":"operator_letter_of","next":null,"parent":"gK","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Aa":{"opcode":"operator_letter_of","next":null,"parent":"gK","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gL":{"opcode":"procedures_call","next":null,"parent":"cH","inputs":{"k~_x#Y|4DSq|*AC-8?b{":[3,"Ab",[10,""]],"bo=$C/hSFC~zxn=2m^kO":[3,"Ac",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD A, %s | %s","argumentids":"[\"k~_x#Y|4DSq|*AC-8?b{\",\"bo=$C/hSFC~zxn=2m^kO\"]","warp":"true"}},"Ab":{"opcode":"operator_letter_of","next":null,"parent":"gL","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ac":{"opcode":"operator_letter_of","next":null,"parent":"gL","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cL":{"opcode":"control_if_else","next":null,"parent":"cD","inputs":{"CONDITION":[2,"Ad"],"SUBSTACK":[2,"cQ"],"SUBSTACK2":[2,"aI"]},"fields":{},"shadow":false,"topLevel":false},"Ad":{"opcode":"operator_lt","next":null,"parent":"cL","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"cQ":{"opcode":"control_if_else","next":null,"parent":"cL","inputs":{"CONDITION":[2,"Ae"],"SUBSTACK":[2,"cT"],"SUBSTACK2":[2,"cU"]},"fields":{},"shadow":false,"topLevel":false},"Ae":{"opcode":"operator_lt","next":null,"parent":"cQ","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"cT":{"opcode":"control_if_else","next":null,"parent":"cQ","inputs":{"CONDITION":[2,"Af"],"SUBSTACK":[2,"v;"],"SUBSTACK2":[2,"v="]},"fields":{},"shadow":false,"topLevel":false},"Af":{"opcode":"operator_lt","next":null,"parent":"cT","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"v;":{"opcode":"procedures_call","next":null,"parent":"cT","inputs":{"x[UtCW[Ir[*GM)bxV$Xl":[3,"Ag",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~XOR A, %s","argumentids":"[\"x[UtCW[Ir[*GM)bxV$Xl\"]","warp":"true"}},"Ag":{"opcode":"operator_letter_of","next":null,"parent":"v;","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v=":{"opcode":"procedures_call","next":null,"parent":"cT","inputs":{"1S%8L7`G!H_9C#w,e;F,":[3,"Ah",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~OR A, %s","argumentids":"[\"1S%8L7`G!H_9C#w,e;F,\"]","warp":"true"}},"Ah":{"opcode":"operator_letter_of","next":null,"parent":"v=","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cU":{"opcode":"control_if_else","next":null,"parent":"cQ","inputs":{"CONDITION":[2,"Ai"],"SUBSTACK":[2,"gM"],"SUBSTACK2":[2,"e"]},"fields":{},"shadow":false,"topLevel":false},"Ai":{"opcode":"operator_lt","next":null,"parent":"cU","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"gM":{"opcode":"procedures_call","next":null,"parent":"cU","inputs":{";q6wBzEm3JDk2f$cJYN!":[3,"Aj",[10,""]],"1mNIXx^Q/h7L3QtGNx#u":[3,"Ak",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD16 %s %s","argumentids":"[\";q6wBzEm3JDk2f$cJYN!\",\"1mNIXx^Q/h7L3QtGNx#u\"]","warp":"true"}},"Aj":{"opcode":"operator_letter_of","next":null,"parent":"gM","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ak":{"opcode":"operator_letter_of","next":null,"parent":"gM","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"e":{"opcode":"procedures_call","next":null,"parent":"cU","inputs":{":;IINa:6dKV{!t4(P$R[":[3,"Al",[10,""]],"9_?!Qi]Mm6P%KU.y]8MQ":[3,"pm",[10,""]],"UG%/Fw?{|:CKlgO=%q|q":[3,"Am",[10,""]],"[sD@Z(t8ZHvx|_q{)*i8":[3,"An",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDPTR %s %s | %s %s","argumentids":"[\":;IINa:6dKV{!t4(P$R[\",\"9_?!Qi]Mm6P%KU.y]8MQ\",\"UG%/Fw?{|:CKlgO=%q|q\",\"[sD@Z(t8ZHvx|_q{)*i8\"]","warp":"true"}},"Al":{"opcode":"operator_letter_of","next":null,"parent":"e","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pm":{"opcode":"operator_letter_of","next":null,"parent":"e","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Am":{"opcode":"operator_letter_of","next":null,"parent":"e","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"An":{"opcode":"operator_letter_of","next":null,"parent":"e","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aI":{"opcode":"control_if_else","next":null,"parent":"cL","inputs":{"CONDITION":[2,"Ao"],"SUBSTACK":[2,"aJ"],"SUBSTACK2":[2,"aK"]},"fields":{},"shadow":false,"topLevel":false},"Ao":{"opcode":"operator_lt","next":null,"parent":"aI","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aJ":{"opcode":"control_if_else","next":null,"parent":"aI","inputs":{"CONDITION":[2,"Ap"],"SUBSTACK":[2,"c5"],"SUBSTACK2":[2,"gN"]},"fields":{},"shadow":false,"topLevel":false},"Ap":{"opcode":"operator_lt","next":null,"parent":"aJ","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"c5":{"opcode":"procedures_call","next":null,"parent":"aJ","inputs":{"vfdDlq:Gdk:i7jlV[)Nj":[3,"Aq",[10,""]],"M[1NcE9VxLgdHmJ=M*sc":[3,"Ar",[10,""]],"`Y0sDI-kMB1dTV,J^_TN":[3,"As",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC16 %s %s | %s","argumentids":"[\"vfdDlq:Gdk:i7jlV[)Nj\",\"M[1NcE9VxLgdHmJ=M*sc\",\"`Y0sDI-kMB1dTV,J^_TN\"]","warp":"true"}},"Aq":{"opcode":"operator_letter_of","next":null,"parent":"c5","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ar":{"opcode":"operator_letter_of","next":null,"parent":"c5","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"As":{"opcode":"operator_letter_of","next":null,"parent":"c5","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gN":{"opcode":"procedures_call","next":null,"parent":"aJ","inputs":{"Tz%b=`8Y#+(y)i7b*+LD":[3,"At",[10,""]],"[bhaH!ToM/O)]G9R/g^t":[3,"Au",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC8 %s | %s","argumentids":"[\"Tz%b=`8Y#+(y)i7b*+LD\",\"[bhaH!ToM/O)]G9R/g^t\"]","warp":"true"}},"At":{"opcode":"operator_letter_of","next":null,"parent":"gN","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Au":{"opcode":"operator_letter_of","next":null,"parent":"gN","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aK":{"opcode":"control_if_else","next":null,"parent":"aI","inputs":{"CONDITION":[2,"Av"],"SUBSTACK":[2,"aL"],"SUBSTACK2":[2,"cR"]},"fields":{},"shadow":false,"topLevel":false},"Av":{"opcode":"operator_lt","next":null,"parent":"aK","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"aL":{"opcode":"procedures_call","next":null,"parent":"aK","inputs":{",2sEL}l5wJIm1MWngK,L":[3,"Aw",[10,""]],"TrW4:1T$A9]^4_K9#M;Y":[3,"Ax",[10,""]],"}*6z?HLhj3$bho@pYhWB":[3,"Ay",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JR %s %s | %s","argumentids":"[\",2sEL}l5wJIm1MWngK,L\",\"TrW4:1T$A9]^4_K9#M;Y\",\"}*6z?HLhj3$bho@pYhWB\"]","warp":"true"}},"Aw":{"opcode":"operator_letter_of","next":null,"parent":"aL","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ax":{"opcode":"operator_letter_of","next":null,"parent":"aL","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ay":{"opcode":"operator_letter_of","next":null,"parent":"aL","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cR":{"opcode":"procedures_call","next":null,"parent":"aK","inputs":{"]gCAsPo;eb6GzlE#b:WP":[3,"AB",[10,""]],"p}NHw^s%NZj$`#XD:16,":[3,"R9",[10,""]],"lr}7SZC6C!t(]D)DVe0|":[3,"A*",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RET %s %s | %s","argumentids":"[\"]gCAsPo;eb6GzlE#b:WP\",\"p}NHw^s%NZj$`#XD:16,\",\"lr}7SZC6C!t(]D)DVe0|\"]","warp":"true"}},"AB":{"opcode":"operator_letter_of","next":null,"parent":"cR","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"R9":{"opcode":"operator_letter_of","next":null,"parent":"cR","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"A*":{"opcode":"operator_letter_of","next":null,"parent":"cR","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cE":{"opcode":"control_if_else","next":null,"parent":"c4","inputs":{"CONDITION":[2,"BI"],"SUBSTACK":[2,"cY"],"SUBSTACK2":[2,"gO"]},"fields":{},"shadow":false,"topLevel":false},"BI":{"opcode":"operator_lt","next":null,"parent":"cE","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"cY":{"opcode":"control_if_else","next":null,"parent":"cE","inputs":{"CONDITION":[2,"Bm"],"SUBSTACK":[2,"cW"],"SUBSTACK2":[2,"c7"]},"fields":{},"shadow":false,"topLevel":false},"Bm":{"opcode":"operator_lt","next":null,"parent":"cY","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"cW":{"opcode":"control_if_else","next":null,"parent":"cY","inputs":{"CONDITION":[2,"Bn"],"SUBSTACK":[2,"cZ"],"SUBSTACK2":[2,"c0"]},"fields":{},"shadow":false,"topLevel":false},"Bn":{"opcode":"operator_lt","next":null,"parent":"cW","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"cZ":{"opcode":"control_if_else","next":null,"parent":"cW","inputs":{"CONDITION":[2,"Bl"],"SUBSTACK":[2,"c1"],"SUBSTACK2":[2,"c2"]},"fields":{},"shadow":false,"topLevel":false},"Bl":{"opcode":"operator_lt","next":null,"parent":"cZ","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},"c1":{"opcode":"procedures_call","next":null,"parent":"cZ","inputs":{"-PiG/Yq~E`BMt^+FIvFH":[3,"Dx",[10,""]],".d/UU3a2tfCN^3y,_8;z":[3,"Dy",[10,""]],"NnC0*/Ydq!3qBg#sG`,T":[3,"Dz",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JP %s %s | %s","argumentids":"[\"-PiG/Yq~E`BMt^+FIvFH\",\".d/UU3a2tfCN^3y,_8;z\",\"NnC0*/Ydq!3qBg#sG`,T\"]","warp":"true"}},"Dx":{"opcode":"operator_letter_of","next":null,"parent":"c1","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dy":{"opcode":"operator_letter_of","next":null,"parent":"c1","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dz":{"opcode":"operator_letter_of","next":null,"parent":"c1","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"c2":{"opcode":"procedures_call","next":null,"parent":"cZ","inputs":{"b9,FAR+)1XQU-j}lW5c3":[3,"Es",[10,""]],"KbaPDp]E_:%a`/L^yWVZ":[3,"Eh",[10,""]],"4h2#i,A#:{_PQDcO@tFG":[3,"Ei",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CALL %s %s | %s","argumentids":"[\"b9,FAR+)1XQU-j}lW5c3\",\"KbaPDp]E_:%a`/L^yWVZ\",\"4h2#i,A#:{_PQDcO@tFG\"]","warp":"true"}},"Es":{"opcode":"operator_letter_of","next":null,"parent":"c2","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Eh":{"opcode":"operator_letter_of","next":null,"parent":"c2","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ei":{"opcode":"operator_letter_of","next":null,"parent":"c2","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"c0":{"opcode":"control_if_else","next":null,"parent":"cW","inputs":{"CONDITION":[2,"Eu"],"SUBSTACK":[2,"v?"],"SUBSTACK2":[2,"c8"]},"fields":{},"shadow":false,"topLevel":false},"Eu":{"opcode":"operator_lt","next":null,"parent":"c0","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"v?":{"opcode":"procedures_call","next":"c9","parent":"c0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~POP","argumentids":"[]","warp":"true"}},"c9":{"opcode":"data_replaceitemoflist","next":"bL","parent":"v?","inputs":{"INDEX":[3,"Go",[7,0]],"ITEM":[3,"v@",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Go":{"opcode":"operator_letter_of","next":null,"parent":"c9","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v@":{"opcode":"operator_mathop","next":null,"parent":"c9","inputs":{"NUM":[3,"EG",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"EG":{"opcode":"operator_divide","next":null,"parent":"v@","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bL":{"opcode":"data_replaceitemoflist","next":"gP","parent":"c9","inputs":{"INDEX":[3,"EH",[7,0]],"ITEM":[3,"Gk",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"EH":{"opcode":"operator_letter_of","next":null,"parent":"bL","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Gk":{"opcode":"operator_mod","next":null,"parent":"bL","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"gP":{"opcode":"control_if","next":null,"parent":"bL","inputs":{"CONDITION":[2,"v["],"SUBSTACK":[2,"EN"]},"fields":{},"shadow":false,"topLevel":false},"v[":{"opcode":"operator_equals","next":null,"parent":"gP","inputs":{"OPERAND1":[3,"EP",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"EP":{"opcode":"operator_letter_of","next":null,"parent":"v[","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"EN":{"opcode":"procedures_call","next":null,"parent":"gP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~FLAGSWRITE","argumentids":"[]","warp":"true"}},"c8":{"opcode":"control_if","next":"gQ","parent":"c0","inputs":{"CONDITION":[2,"v]"],"SUBSTACK":[2,"Gq"]},"fields":{},"shadow":false,"topLevel":false},"v]":{"opcode":"operator_equals","next":null,"parent":"c8","inputs":{"OPERAND1":[3,"Gs",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"Gs":{"opcode":"operator_letter_of","next":null,"parent":"v]","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Gq":{"opcode":"procedures_call","next":null,"parent":"c8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~FLAGSREAD","argumentids":"[]","warp":"true"}},"gQ":{"opcode":"procedures_call","next":null,"parent":"c8","inputs":{"C#nc~k`#)?@}yo`3}V^6":[3,"v^",[10,""]],"EV/=xEoSaXRhLZ:5@_C(":[3,"v_",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH %s %s","argumentids":"[\"C#nc~k`#)?@}yo`3}V^6\",\"EV/=xEoSaXRhLZ:5@_C(\"]","warp":"true"}},"v_":{"opcode":"data_itemoflist","next":null,"parent":"gQ","inputs":{"INDEX":[3,"F=",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"F=":{"opcode":"operator_letter_of","next":null,"parent":"v_","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"c7":{"opcode":"control_if_else","next":null,"parent":"cY","inputs":{"CONDITION":[2,"Ef"],"SUBSTACK":[2,"aM"],"SUBSTACK2":[2,"i"]},"fields":{},"shadow":false,"topLevel":false},"Ef":{"opcode":"operator_lt","next":null,"parent":"c7","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"aM":{"opcode":"control_if_else","next":null,"parent":"c7","inputs":{"CONDITION":[2,"F|"],"SUBSTACK":[2,"v`"],"SUBSTACK2":[2,"v{"]},"fields":{},"shadow":false,"topLevel":false},"F|":{"opcode":"operator_lt","next":null,"parent":"aM","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"21"]]},"fields":{},"shadow":false,"topLevel":false},"v`":{"opcode":"procedures_call","next":null,"parent":"aM","inputs":{";@Rd78nttF]|GZ-#AJvQ":[3,"Ep",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RST %s","argumentids":"[\";@Rd78nttF]|GZ-#AJvQ\"]","warp":"true"}},"Ep":{"opcode":"operator_letter_of","next":null,"parent":"v`","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v{":{"opcode":"procedures_call","next":null,"parent":"aM","inputs":{"NHLwAsVd^!KmUZ#vT2C=":[3,"Ge",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JPHL/LDSPHL %s","argumentids":"[\"NHLwAsVd^!KmUZ#vT2C=\"]","warp":"true"}},"Ge":{"opcode":"operator_letter_of","next":null,"parent":"v{","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"i":{"opcode":"control_if_else","next":"Gj","parent":"c7","inputs":{"CONDITION":[2,"EA"],"SUBSTACK":[2,"v|"],"SUBSTACK2":[2,"v}"]},"fields":{},"shadow":false,"topLevel":false},"EA":{"opcode":"operator_lt","next":null,"parent":"i","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"v|":{"opcode":"procedures_call","next":null,"parent":"i","inputs":{"b*:RzA0o$VB8NT@~v;Ll":[1,[10,"1"]],"[mtpQRJClj0F%g2|_4+W":[3,"EB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLC/RRC %s | %s","argumentids":"[\"b*:RzA0o$VB8NT@~v;Ll\",\"[mtpQRJClj0F%g2|_4+W\"]","warp":"true"}},"EB":{"opcode":"operator_letter_of","next":null,"parent":"v|","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v}":{"opcode":"procedures_call","next":null,"parent":"i","inputs":{"Ij5L0EoK[dEU2EHQyWn_":[1,[10,"1"]],"Li5iN0Xzw0VOJrc[sWQ5":[3,"Gh",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RL/RR %s | %s","argumentids":"[\"Ij5L0EoK[dEU2EHQyWn_\",\"Li5iN0Xzw0VOJrc[sWQ5\"]","warp":"true"}},"Gh":{"opcode":"operator_letter_of","next":null,"parent":"v}","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Gj":{"opcode":"data_replaceitemoflist","next":null,"parent":"i","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"gO":{"opcode":"control_if","next":null,"parent":"cE","inputs":{"CONDITION":[2,"Em"],"SUBSTACK":[2,"aN"]},"fields":{},"shadow":false,"topLevel":false},"Em":{"opcode":"operator_lt","next":null,"parent":"gO","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"28"]]},"fields":{},"shadow":false,"topLevel":false},"aN":{"opcode":"control_if_else","next":null,"parent":"gO","inputs":{"CONDITION":[2,"F?"],"SUBSTACK":[2,"{"],"SUBSTACK2":[2,"gR"]},"fields":{},"shadow":false,"topLevel":false},"F?":{"opcode":"operator_lt","next":null,"parent":"aN","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"{":{"opcode":"control_if_else","next":null,"parent":"aN","inputs":{"CONDITION":[2,"F@"],"SUBSTACK":[2,"gS"],"SUBSTACK2":[2,"v~"]},"fields":{},"shadow":false,"topLevel":false},"F@":{"opcode":"operator_lt","next":null,"parent":"{","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"gS":{"opcode":"procedures_call","next":null,"parent":"{","inputs":{"|F6hOiv9ai}5$aVHzu_?":[3,"F]",[10,""]],"fSwjMd,fS.s=5?qsO+){":[3,"F[",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD ZRAM %s %s","argumentids":"[\"|F6hOiv9ai}5$aVHzu_?\",\"fSwjMd,fS.s=5?qsO+){\"]","warp":"true"}},"F]":{"opcode":"operator_letter_of","next":null,"parent":"gS","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"F[":{"opcode":"operator_letter_of","next":null,"parent":"gS","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gR":{"opcode":"control_if","next":null,"parent":"aN","inputs":{"CONDITION":[2,"bk#"],"SUBSTACK":[2,"wa"]},"fields":{},"shadow":false,"topLevel":false},"bk#":{"opcode":"operator_lt","next":null,"parent":"gR","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"27"]]},"fields":{},"shadow":false,"topLevel":false},"wa":{"opcode":"procedures_call","next":null,"parent":"gR","inputs":{"yp9WQq76j}/fOta]pXbu":[3,"F~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDU16 %s","argumentids":"[\"yp9WQq76j}/fOta]pXbu\"]","warp":"true"}},"F~":{"opcode":"operator_letter_of","next":null,"parent":"wa","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wb":{"opcode":"procedures_definition","next":"wc","parent":null,"inputs":{"custom_block":[1,"Gz"]},"fields":{},"shadow":false,"topLevel":true,"x":48321,"y":64},"Gz":{"opcode":"procedures_prototype","next":null,"parent":"wb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_init cpu tables","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"ev":{"opcode":"procedures_definition","next":"j","parent":null,"inputs":{"custom_block":[1,"gU"]},"fields":{},"shadow":false,"topLevel":true,"x":29727,"y":64},"gU":{"opcode":"procedures_prototype","next":null,"parent":"ev","inputs":{"TbjvqoI#_Re]=6xy6JKs":[1,"Gl"],"b3-5EMrmf1`|OaCT3jEZ":[1,"Gx"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD %s %s","argumentids":"[\"TbjvqoI#_Re]=6xy6JKs\",\"b3-5EMrmf1`|OaCT3jEZ\"]","argumentnames":"[\"r1\",\"r2\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Gl":{"opcode":"argument_reporter_string_number","next":null,"parent":"gU","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"Gx":{"opcode":"argument_reporter_string_number","next":null,"parent":"gU","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":true,"topLevel":false},"j":{"opcode":"control_if_else","next":"`","parent":"ev","inputs":{"CONDITION":[2,"A)"],"SUBSTACK":[2,"A:"],"SUBSTACK2":[2,"bR"]},"fields":{},"shadow":false,"topLevel":false},"A)":{"opcode":"operator_equals","next":null,"parent":"j","inputs":{"OPERAND1":[3,"Gy",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Gy":{"opcode":"argument_reporter_string_number","next":null,"parent":"A)","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"A:":{"opcode":"procedures_call","next":"A{","parent":"j","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"A{":{"opcode":"procedures_call","next":null,"parent":"A:","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"gV",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"gV":{"opcode":"operator_add","next":null,"parent":"A{","inputs":{"NUM1":[3,"po",[4,0]],"NUM2":[3,"So",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"po":{"opcode":"operator_multiply","next":null,"parent":"gV","inputs":{"NUM1":[3,"Ez",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ez":{"opcode":"data_itemoflist","next":null,"parent":"po","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"So":{"opcode":"data_itemoflist","next":null,"parent":"gV","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"`":{"opcode":"control_if_else","next":null,"parent":"j","inputs":{"CONDITION":[2,"eV"],"SUBSTACK":[2,"eW"],"SUBSTACK2":[2,"fb"]},"fields":{},"shadow":false,"topLevel":false},"eV":{"opcode":"operator_equals","next":null,"parent":"`","inputs":{"OPERAND1":[3,"bk%",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bk%":{"opcode":"argument_reporter_string_number","next":null,"parent":"eV","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"eW":{"opcode":"procedures_call","next":"Eg","parent":"`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Eg":{"opcode":"procedures_call","next":null,"parent":"eW","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,"gW",[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"gW":{"opcode":"operator_add","next":null,"parent":"Eg","inputs":{"NUM1":[3,"EV",[4,0]],"NUM2":[3,"EC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"EV":{"opcode":"operator_multiply","next":null,"parent":"gW","inputs":{"NUM1":[3,"ED",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ED":{"opcode":"data_itemoflist","next":null,"parent":"EV","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"EC":{"opcode":"data_itemoflist","next":null,"parent":"gW","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"fb":{"opcode":"data_replaceitemoflist","next":null,"parent":"`","inputs":{"INDEX":[3,"EE",[7,0]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"EE":{"opcode":"argument_reporter_string_number","next":null,"parent":"fb","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Tu":{"opcode":"procedures_definition","next":"bC","parent":null,"inputs":{"custom_block":[1,"Tv"]},"fields":{},"shadow":false,"topLevel":true,"x":31979,"y":1032},"Tv":{"opcode":"procedures_prototype","next":null,"parent":"Tu","inputs":{"~Jf?bmbem=nf?6IK-)/W":[1,"St"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~MISC %s","argumentids":"[\"~Jf?bmbem=nf?6IK-)/W\"]","argumentnames":"[\"p1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"St":{"opcode":"argument_reporter_string_number","next":null,"parent":"Tv","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"bC":{"opcode":"control_if_else","next":null,"parent":"Tu","inputs":{"CONDITION":[2,"eY"],"SUBSTACK":[2,"b0"],"SUBSTACK2":[2,"b("]},"fields":{},"shadow":false,"topLevel":false},"eY":{"opcode":"operator_lt","next":null,"parent":"bC","inputs":{"OPERAND1":[3,"Su",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Su":{"opcode":"argument_reporter_string_number","next":null,"parent":"eY","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"b0":{"opcode":"control_if_else","next":null,"parent":"bC","inputs":{"CONDITION":[2,"fi"],"SUBSTACK":[2,"b2"],"SUBSTACK2":[2,"b)"]},"fields":{},"shadow":false,"topLevel":false},"fi":{"opcode":"operator_lt","next":null,"parent":"b0","inputs":{"OPERAND1":[3,"Fj",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fj":{"opcode":"argument_reporter_string_number","next":null,"parent":"fi","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"b2":{"opcode":"control_if_else","next":null,"parent":"b0","inputs":{"CONDITION":[2,"p`"],"SUBSTACK":[2,"e/"],"SUBSTACK2":[2,"gX"]},"fields":{},"shadow":false,"topLevel":false},"p`":{"opcode":"operator_lt","next":null,"parent":"b2","inputs":{"OPERAND1":[3,"Fw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Fw":{"opcode":"argument_reporter_string_number","next":null,"parent":"p`","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"e/":{"opcode":"procedures_call","next":"Ga","parent":"b2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Ga":{"opcode":"procedures_call","next":"Gb","parent":"e/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"Gb":{"opcode":"procedures_call","next":"Gc","parent":"Ga","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Gc":{"opcode":"procedures_call","next":"gY","parent":"Gb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"gY":{"opcode":"data_setvariableto","next":"Gd","parent":"Gc","inputs":{"VALUE":[3,"gZ",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"gZ":{"opcode":"operator_add","next":null,"parent":"gY","inputs":{"NUM1":[3,"fl",[4,0]],"NUM2":[3,"FN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"fl":{"opcode":"operator_multiply","next":null,"parent":"gZ","inputs":{"NUM1":[3,"Sv",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Sv":{"opcode":"data_itemoflist","next":null,"parent":"fl","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"FN":{"opcode":"data_itemoflist","next":null,"parent":"gZ","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"Gd":{"opcode":"procedures_call","next":"g0","parent":"gY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"g0":{"opcode":"procedures_call","next":"p9","parent":"Gd","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"Sw",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"Sw":{"opcode":"operator_mod","next":null,"parent":"g0","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"p9":{"opcode":"procedures_call","next":"g1","parent":"g0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"g1":{"opcode":"procedures_call","next":null,"parent":"p9","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,"p%",[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"p*",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"p%":{"opcode":"operator_mod","next":null,"parent":"g1","inputs":{"NUM1":[3,"Sx",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Sx":{"opcode":"operator_add","next":null,"parent":"p%","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"p*":{"opcode":"operator_mathop","next":null,"parent":"g1","inputs":{"NUM":[3,"Sy",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Sy":{"opcode":"operator_divide","next":null,"parent":"p*","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"gX":{"opcode":"control_if_else","next":null,"parent":"b2","inputs":{"CONDITION":[2,"F;"],"SUBSTACK":[2,"aI_"]},"fields":{},"shadow":false,"topLevel":false},"F;":{"opcode":"operator_equals","next":null,"parent":"gX","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aI_":{"opcode":"data_setvariableto","next":"fG","parent":"gX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"]},"shadow":false,"topLevel":false},"fG":{"opcode":"procedures_call","next":"GN","parent":"aI_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"GN":{"opcode":"procedures_call","next":"g2","parent":"fG","inputs":{"0]ODgc:bK{?ML[NsH|O.":[1,[10,"0xFF4D"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"g2":{"opcode":"control_if","next":null,"parent":"GN","inputs":{"CONDITION":[2,"fB"],"SUBSTACK":[2,"f"]},"fields":{},"shadow":false,"topLevel":false},"fB":{"opcode":"operator_equals","next":null,"parent":"g2","inputs":{"OPERAND1":[3,"Sz",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sz":{"opcode":"operator_mod","next":null,"parent":"fB","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"f":{"opcode":"control_if_else","next":"g3","parent":"g2","inputs":{"CONDITION":[2,"F^"],"SUBSTACK":[2,"F_"],"SUBSTACK2":[2,"F{"]},"fields":{},"shadow":false,"topLevel":false},"F^":{"opcode":"operator_equals","next":null,"parent":"f","inputs":{"OPERAND1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F_":{"opcode":"data_setvariableto","next":null,"parent":"f","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":[".SPEED","MzjtR%U}q{vlM~,lxGYF"]},"shadow":false,"topLevel":false},"F{":{"opcode":"data_setvariableto","next":null,"parent":"f","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".SPEED","MzjtR%U}q{vlM~,lxGYF"]},"shadow":false,"topLevel":false},"g3":{"opcode":"procedures_call","next":"g4","parent":"f","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"G4",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF4D"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"G4":{"opcode":"operator_multiply","next":null,"parent":"g3","inputs":{"NUM1":[3,"O[",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"O[":{"opcode":"operator_subtract","next":null,"parent":"G4","inputs":{"NUM1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"g4":{"opcode":"data_setvariableto","next":"O]","parent":"g3","inputs":{"VALUE":[3,"fF",[10,""]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"fF":{"opcode":"operator_subtract","next":null,"parent":"g4","inputs":{"NUM1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[4,0]],"NUM2":[3,"O^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"O^":{"opcode":"operator_mod","next":null,"parent":"fF","inputs":{"NUM1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"O]":{"opcode":"procedures_call","next":null,"parent":"g4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"b)":{"opcode":"control_if_else","next":null,"parent":"b0","inputs":{"CONDITION":[2,"G6"],"SUBSTACK":[2,"O_"],"SUBSTACK2":[2,"g5"]},"fields":{},"shadow":false,"topLevel":false},"G6":{"opcode":"operator_lt","next":null,"parent":"b)","inputs":{"OPERAND1":[3,"O`",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"O`":{"opcode":"argument_reporter_string_number","next":null,"parent":"G6","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"O_":{"opcode":"procedures_call","next":null,"parent":"b)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~DAA","argumentids":"[]","warp":"true"}},"g5":{"opcode":"data_replaceitemoflist","next":"fI","parent":"b)","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"wy",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"wy":{"opcode":"operator_subtract","next":null,"parent":"g5","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[3,"O{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"O{":{"opcode":"data_itemoflist","next":null,"parent":"wy","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"fI":{"opcode":"data_replaceitemoflist","next":"O|","parent":"g5","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"O|":{"opcode":"data_replaceitemoflist","next":null,"parent":"fI","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"b(":{"opcode":"control_if_else","next":null,"parent":"bC","inputs":{"CONDITION":[2,"wz"],"SUBSTACK":[2,"g"],"SUBSTACK2":[2,"bF"]},"fields":{},"shadow":false,"topLevel":false},"wz":{"opcode":"operator_lt","next":null,"parent":"b(","inputs":{"OPERAND1":[3,"O}",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"O}":{"opcode":"argument_reporter_string_number","next":null,"parent":"wz","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"g":{"opcode":"control_if_else","next":"wA","parent":"b(","inputs":{"CONDITION":[2,"wB"],"SUBSTACK":[2,"O~"],"SUBSTACK2":[2,"wC"]},"fields":{},"shadow":false,"topLevel":false},"wB":{"opcode":"operator_lt","next":null,"parent":"g","inputs":{"OPERAND1":[3,"Pa",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"Pa":{"opcode":"argument_reporter_string_number","next":null,"parent":"wB","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"O~":{"opcode":"data_replaceitemoflist","next":null,"parent":"g","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"wC":{"opcode":"data_replaceitemoflist","next":null,"parent":"g","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"wD",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"wD":{"opcode":"operator_subtract","next":null,"parent":"wC","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Pb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Pb":{"opcode":"data_itemoflist","next":null,"parent":"wD","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"wA":{"opcode":"data_replaceitemoflist","next":"Pc","parent":"g","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Pc":{"opcode":"data_replaceitemoflist","next":null,"parent":"wA","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"bF":{"opcode":"control_if_else","next":null,"parent":"b(","inputs":{"CONDITION":[2,"wE"],"SUBSTACK":[2,"F}"],"SUBSTACK2":[2,"Pd"]},"fields":{},"shadow":false,"topLevel":false},"wE":{"opcode":"operator_lt","next":null,"parent":"bF","inputs":{"OPERAND1":[3,"Pe",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Pe":{"opcode":"argument_reporter_string_number","next":null,"parent":"wE","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"F}":{"opcode":"data_setvariableto","next":null,"parent":"bF","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["_HALT","F_}DPF^fI%3NP^P]}FKY"]},"shadow":false,"topLevel":false},"Pd":{"opcode":"procedures_call","next":null,"parent":"bF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CB prefixed","argumentids":"[]","warp":"false"}},"wF":{"opcode":"procedures_definition","next":"wG","parent":null,"inputs":{"custom_block":[1,"g6"]},"fields":{},"shadow":false,"topLevel":true,"x":29727,"y":816},"g6":{"opcode":"procedures_prototype","next":null,"parent":"wF","inputs":{"~w1RiyGKO$AiiJ08`eD{":[1,"Pf"],"FEj*-$NmnIThhwY5DZ`1":[1,"Pg"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD HL, %s %s","argumentids":"[\"~w1RiyGKO$AiiJ08`eD{\",\"FEj*-$NmnIThhwY5DZ`1\"]","argumentnames":"[\"r1\",\"r2\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Pf":{"opcode":"argument_reporter_string_number","next":null,"parent":"g6","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"Pg":{"opcode":"argument_reporter_string_number","next":null,"parent":"g6","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":true,"topLevel":false},"wG":{"opcode":"procedures_call","next":"h","parent":"wF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"h":{"opcode":"control_if_else","next":"g7","parent":"wG","inputs":{"CONDITION":[2,"wH"],"SUBSTACK":[2,"Ph"],"SUBSTACK2":[2,"wI"]},"fields":{},"shadow":false,"topLevel":false},"wH":{"opcode":"operator_equals","next":null,"parent":"h","inputs":{"OPERAND1":[3,"Pi",[10,""]],"OPERAND2":[1,[10,"S"]]},"fields":{},"shadow":false,"topLevel":false},"Pi":{"opcode":"argument_reporter_string_number","next":null,"parent":"wH","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Ph":{"opcode":"data_setvariableto","next":null,"parent":"h","inputs":{"VALUE":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"wI":{"opcode":"data_setvariableto","next":null,"parent":"h","inputs":{"VALUE":[3,"g8",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"g8":{"opcode":"operator_add","next":null,"parent":"wI","inputs":{"NUM1":[3,"wJ",[4,0]],"NUM2":[3,"wK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wJ":{"opcode":"operator_multiply","next":null,"parent":"g8","inputs":{"NUM1":[3,"wL",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"wL":{"opcode":"data_itemoflist","next":null,"parent":"wJ","inputs":{"INDEX":[3,"Pj",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pj":{"opcode":"argument_reporter_string_number","next":null,"parent":"wL","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"wK":{"opcode":"data_itemoflist","next":null,"parent":"g8","inputs":{"INDEX":[3,"Pk",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pk":{"opcode":"argument_reporter_string_number","next":null,"parent":"wK","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"g7":{"opcode":"data_setvariableto","next":"g9","parent":"h","inputs":{"VALUE":[3,"g!",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"g!":{"opcode":"operator_add","next":null,"parent":"g7","inputs":{"NUM1":[3,"wM",[4,0]],"NUM2":[3,"Pl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wM":{"opcode":"operator_multiply","next":null,"parent":"g!","inputs":{"NUM1":[3,"Pm",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Pm":{"opcode":"data_itemoflist","next":null,"parent":"wM","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pl":{"opcode":"data_itemoflist","next":null,"parent":"g!","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"g9":{"opcode":"data_replaceitemoflist","next":"Hn","parent":"g7","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"Ho",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Ho":{"opcode":"operator_add","next":null,"parent":"g9","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Hp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hp":{"opcode":"operator_gt","next":null,"parent":"Ho","inputs":{"OPERAND1":[3,"g#",[10,""]],"OPERAND2":[1,[10,"4095"]]},"fields":{},"shadow":false,"topLevel":false},"g#":{"opcode":"operator_add","next":null,"parent":"Hp","inputs":{"NUM1":[3,"Pn",[4,0]],"NUM2":[3,"Po",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Pn":{"opcode":"operator_mod","next":null,"parent":"g#","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"Po":{"opcode":"operator_mod","next":null,"parent":"g#","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"Hn":{"opcode":"data_replaceitemoflist","next":"wN","parent":"g9","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"wN":{"opcode":"data_changevariableby","next":"g%","parent":"Hn","inputs":{"VALUE":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"g%":{"opcode":"data_replaceitemoflist","next":"g(","parent":"wN","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"wO",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"wO":{"opcode":"operator_add","next":null,"parent":"g%","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Pp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Pp":{"opcode":"operator_gt","next":null,"parent":"wO","inputs":{"OPERAND1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"g(":{"opcode":"data_replaceitemoflist","next":"wP","parent":"g%","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"wQ",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"wQ":{"opcode":"operator_mathop","next":null,"parent":"g(","inputs":{"NUM":[3,"wR",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"wR":{"opcode":"operator_mod","next":null,"parent":"wQ","inputs":{"NUM1":[3,"Pq",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Pq":{"opcode":"operator_divide","next":null,"parent":"wR","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"wP":{"opcode":"data_replaceitemoflist","next":null,"parent":"g(","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"Pr",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pr":{"opcode":"operator_mod","next":null,"parent":"wP","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"wS":{"opcode":"procedures_definition","next":"C","parent":null,"inputs":{"custom_block":[1,"g)"]},"fields":{},"shadow":false,"topLevel":true,"x":36031,"y":64},"g)":{"opcode":"procedures_prototype","next":null,"parent":"wS","inputs":{"k~_x#Y|4DSq|*AC-8?b{":[1,"Ps"],"bo=$C/hSFC~zxn=2m^kO":[1,"Pt"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD A, %s | %s","argumentids":"[\"k~_x#Y|4DSq|*AC-8?b{\",\"bo=$C/hSFC~zxn=2m^kO\"]","argumentnames":"[\"r1\",\"p1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Ps":{"opcode":"argument_reporter_string_number","next":null,"parent":"g)","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"Pt":{"opcode":"argument_reporter_string_number","next":null,"parent":"g)","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"C":{"opcode":"control_if_else","next":"g*","parent":"wS","inputs":{"CONDITION":[2,"wT"],"SUBSTACK":[2,"wU"],"SUBSTACK2":[2,"b7"]},"fields":{},"shadow":false,"topLevel":false},"wT":{"opcode":"operator_equals","next":null,"parent":"C","inputs":{"OPERAND1":[3,"Pu",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Pu":{"opcode":"argument_reporter_string_number","next":null,"parent":"wT","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"wU":{"opcode":"procedures_call","next":"wV","parent":"C","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"wV":{"opcode":"procedures_call","next":null,"parent":"wU","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"g+",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"g+":{"opcode":"operator_add","next":null,"parent":"wV","inputs":{"NUM1":[3,"wW",[4,0]],"NUM2":[3,"Pv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"wW":{"opcode":"operator_multiply","next":null,"parent":"g+","inputs":{"NUM1":[3,"Pw",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Pw":{"opcode":"data_itemoflist","next":null,"parent":"wW","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pv":{"opcode":"data_itemoflist","next":null,"parent":"g+","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"b7":{"opcode":"control_if_else","next":null,"parent":"C","inputs":{"CONDITION":[2,"wX"],"SUBSTACK":[2,"wY"],"SUBSTACK2":[2,"wZ"]},"fields":{},"shadow":false,"topLevel":false},"wX":{"opcode":"operator_equals","next":null,"parent":"b7","inputs":{"OPERAND1":[3,"Px",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"Px":{"opcode":"argument_reporter_string_number","next":null,"parent":"wX","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"wY":{"opcode":"procedures_call","next":"w0","parent":"b7","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"w0":{"opcode":"procedures_call","next":"w1","parent":"wY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"w1":{"opcode":"data_setvariableto","next":null,"parent":"w0","inputs":{"VALUE":[3,"Py",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Py":{"opcode":"data_itemoflist","next":null,"parent":"w1","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"wZ":{"opcode":"data_setvariableto","next":null,"parent":"b7","inputs":{"VALUE":[3,"w2",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"w2":{"opcode":"data_itemoflist","next":null,"parent":"wZ","inputs":{"INDEX":[3,"Pz",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Pz":{"opcode":"argument_reporter_string_number","next":null,"parent":"w2","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"g*":{"opcode":"data_replaceitemoflist","next":"w3","parent":"C","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"w4",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w4":{"opcode":"operator_add","next":null,"parent":"g*","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"w5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w5":{"opcode":"operator_gt","next":null,"parent":"w4","inputs":{"OPERAND1":[3,"g,",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"g,":{"opcode":"operator_add","next":null,"parent":"w5","inputs":{"NUM1":[3,"g-",[4,0]],"NUM2":[3,"g.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"g-":{"opcode":"operator_add","next":null,"parent":"g,","inputs":{"NUM1":[3,"w6",[4,0]],"NUM2":[3,"PA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w6":{"opcode":"operator_mod","next":null,"parent":"g-","inputs":{"NUM1":[3,"PB",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"PB":{"opcode":"data_itemoflist","next":null,"parent":"w6","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"PA":{"opcode":"operator_mod","next":null,"parent":"g-","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"g.":{"opcode":"operator_multiply","next":null,"parent":"g,","inputs":{"NUM1":[3,"PC",[4,0]],"NUM2":[3,"w7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"PC":{"opcode":"data_itemoflist","next":null,"parent":"g.","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w7":{"opcode":"operator_equals","next":null,"parent":"g.","inputs":{"OPERAND1":[3,"PD",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"PD":{"opcode":"argument_reporter_string_number","next":null,"parent":"w7","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"w3":{"opcode":"data_replaceitemoflist","next":"g/","parent":"g*","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"g/":{"opcode":"data_changevariableby","next":"g:","parent":"w3","inputs":{"VALUE":[3,"g;",[4,0]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"g;":{"opcode":"operator_add","next":null,"parent":"g/","inputs":{"NUM1":[3,"g=",[4,0]],"NUM2":[3,"PE",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"g=":{"opcode":"operator_multiply","next":null,"parent":"g;","inputs":{"NUM1":[3,"PF",[4,0]],"NUM2":[3,"w8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"PF":{"opcode":"data_itemoflist","next":null,"parent":"g=","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w8":{"opcode":"operator_equals","next":null,"parent":"g=","inputs":{"OPERAND1":[3,"PG",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"PG":{"opcode":"argument_reporter_string_number","next":null,"parent":"w8","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"PE":{"opcode":"data_itemoflist","next":null,"parent":"g;","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"g:":{"opcode":"data_replaceitemoflist","next":"g?","parent":"g/","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"w9",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w9":{"opcode":"operator_add","next":null,"parent":"g:","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"PH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"PH":{"opcode":"operator_gt","next":null,"parent":"w9","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"g?":{"opcode":"data_replaceitemoflist","next":"w!","parent":"g:","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"PI",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"PI":{"opcode":"operator_mod","next":null,"parent":"g?","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"w!":{"opcode":"data_replaceitemoflist","next":null,"parent":"g?","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"w#",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w#":{"opcode":"operator_add","next":null,"parent":"w!","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"w%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w%":{"opcode":"operator_equals","next":null,"parent":"w#","inputs":{"OPERAND1":[3,"PJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"PJ":{"opcode":"data_itemoflist","next":null,"parent":"w%","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"w(":{"opcode":"procedures_definition","next":"A","parent":null,"inputs":{"custom_block":[1,"g@"]},"fields":{},"shadow":false,"topLevel":true,"x":40939,"y":330},"g@":{"opcode":"procedures_prototype","next":null,"parent":"w(","inputs":{"nH.?hAmLB0W#$/@)2]9H":[1,"PK"],"nDk#EtQ]:+3Y~W96@5N(":[1,"PL"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SUB A, %s | %s","argumentids":"[\"nH.?hAmLB0W#$/@)2]9H\",\"nDk#EtQ]:+3Y~W96@5N(\"]","argumentnames":"[\"r1\",\"p1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"PK":{"opcode":"argument_reporter_string_number","next":null,"parent":"g@","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"PL":{"opcode":"argument_reporter_string_number","next":null,"parent":"g@","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"A":{"opcode":"control_if_else","next":"g[","parent":"w(","inputs":{"CONDITION":[2,"w)"],"SUBSTACK":[2,"w*"],"SUBSTACK2":[2,"bY"]},"fields":{},"shadow":false,"topLevel":false},"w)":{"opcode":"operator_equals","next":null,"parent":"A","inputs":{"OPERAND1":[3,"Gi",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Gi":{"opcode":"argument_reporter_string_number","next":null,"parent":"w)","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"w*":{"opcode":"procedures_call","next":"w+","parent":"A","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"w+":{"opcode":"procedures_call","next":null,"parent":"w*","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"g]",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"g]":{"opcode":"operator_add","next":null,"parent":"w+","inputs":{"NUM1":[3,"w,",[4,0]],"NUM2":[3,"bk(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w,":{"opcode":"operator_multiply","next":null,"parent":"g]","inputs":{"NUM1":[3,"bk)",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bk)":{"opcode":"data_itemoflist","next":null,"parent":"w,","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk(":{"opcode":"data_itemoflist","next":null,"parent":"g]","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bY":{"opcode":"control_if_else","next":null,"parent":"A","inputs":{"CONDITION":[2,"w-"],"SUBSTACK":[2,"w."],"SUBSTACK2":[2,"w/"]},"fields":{},"shadow":false,"topLevel":false},"w-":{"opcode":"operator_equals","next":null,"parent":"bY","inputs":{"OPERAND1":[3,"bk*",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"bk*":{"opcode":"argument_reporter_string_number","next":null,"parent":"w-","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"w.":{"opcode":"procedures_call","next":"w:","parent":"bY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"w:":{"opcode":"procedures_call","next":"w;","parent":"w.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"w;":{"opcode":"data_setvariableto","next":null,"parent":"w:","inputs":{"VALUE":[3,"bk+",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"bk+":{"opcode":"data_itemoflist","next":null,"parent":"w;","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"w/":{"opcode":"data_setvariableto","next":null,"parent":"bY","inputs":{"VALUE":[3,"w=",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"w=":{"opcode":"data_itemoflist","next":null,"parent":"w/","inputs":{"INDEX":[3,"bk,",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk,":{"opcode":"argument_reporter_string_number","next":null,"parent":"w=","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"g[":{"opcode":"data_replaceitemoflist","next":"w?","parent":"A","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"w@",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w@":{"opcode":"operator_add","next":null,"parent":"g[","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"w[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w[":{"opcode":"operator_gt","next":null,"parent":"w@","inputs":{"OPERAND1":[3,"w]",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"w]":{"opcode":"operator_mod","next":null,"parent":"w[","inputs":{"NUM1":[3,"g^",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"g^":{"opcode":"operator_subtract","next":null,"parent":"w]","inputs":{"NUM1":[3,"g_",[4,0]],"NUM2":[3,"g`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"g_":{"opcode":"operator_subtract","next":null,"parent":"g^","inputs":{"NUM1":[3,"w^",[4,0]],"NUM2":[3,"bk-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"w^":{"opcode":"operator_mod","next":null,"parent":"g_","inputs":{"NUM1":[3,"bk.",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bk.":{"opcode":"data_itemoflist","next":null,"parent":"w^","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk-":{"opcode":"operator_mod","next":null,"parent":"g_","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"g`":{"opcode":"operator_multiply","next":null,"parent":"g^","inputs":{"NUM1":[3,"EM",[4,0]],"NUM2":[3,"w_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"EM":{"opcode":"data_itemoflist","next":null,"parent":"g`","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w_":{"opcode":"operator_equals","next":null,"parent":"g`","inputs":{"OPERAND1":[3,"EO",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"EO":{"opcode":"argument_reporter_string_number","next":null,"parent":"w_","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"w?":{"opcode":"data_replaceitemoflist","next":"g{","parent":"g[","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"g{":{"opcode":"data_changevariableby","next":"g|","parent":"w?","inputs":{"VALUE":[3,"g}",[4,0]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"g}":{"opcode":"operator_multiply","next":null,"parent":"g{","inputs":{"NUM1":[3,"E5",[4,0]],"NUM2":[3,"w`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E5":{"opcode":"data_itemoflist","next":null,"parent":"g}","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w`":{"opcode":"operator_equals","next":null,"parent":"g}","inputs":{"OPERAND1":[3,"E9",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E9":{"opcode":"argument_reporter_string_number","next":null,"parent":"w`","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"g|":{"opcode":"data_setvariableto","next":"g~","parent":"g{","inputs":{"VALUE":[3,"w{",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"w{":{"opcode":"operator_subtract","next":null,"parent":"g|","inputs":{"NUM1":[3,"E!",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E!":{"opcode":"data_itemoflist","next":null,"parent":"w{","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"g~":{"opcode":"data_replaceitemoflist","next":"bZ","parent":"g|","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"w|",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"w|":{"opcode":"operator_add","next":null,"parent":"g~","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"E#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E#":{"opcode":"operator_lt","next":null,"parent":"w|","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZ":{"opcode":"control_if","next":"w}","parent":"g~","inputs":{"CONDITION":[2,"w~"],"SUBSTACK":[2,"xa"]},"fields":{},"shadow":false,"topLevel":false},"w~":{"opcode":"operator_not","next":null,"parent":"bZ","inputs":{"OPERAND":[2,"xb"]},"fields":{},"shadow":false,"topLevel":false},"xb":{"opcode":"operator_equals","next":null,"parent":"w~","inputs":{"OPERAND1":[3,"E%",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"E%":{"opcode":"argument_reporter_string_number","next":null,"parent":"xb","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"xa":{"opcode":"data_replaceitemoflist","next":null,"parent":"bZ","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"E(",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"E(":{"opcode":"operator_mod","next":null,"parent":"xa","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"w}":{"opcode":"data_replaceitemoflist","next":null,"parent":"bZ","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"iG",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"iG":{"opcode":"operator_add","next":null,"parent":"w}","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"xc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"xc":{"opcode":"operator_equals","next":null,"parent":"iG","inputs":{"OPERAND1":[3,"E)",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"E)":{"opcode":"operator_mod","next":null,"parent":"xc","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"iH":{"opcode":"procedures_definition","next":"z","parent":null,"inputs":{"custom_block":[1,"iI"]},"fields":{},"shadow":false,"topLevel":true,"x":30877,"y":546},"iI":{"opcode":"procedures_prototype","next":null,"parent":"iH","inputs":{"db[GH{T,0YgMO8RE(chd":[1,"E*"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~AND A, %s","argumentids":"[\"db[GH{T,0YgMO8RE(chd\"]","argumentnames":"[\"r1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"E*":{"opcode":"argument_reporter_string_number","next":null,"parent":"iI","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"z":{"opcode":"control_if_else","next":"iJ","parent":"iH","inputs":{"CONDITION":[2,"iK"],"SUBSTACK":[2,"iQ"],"SUBSTACK2":[2,"b4"]},"fields":{},"shadow":false,"topLevel":false},"iK":{"opcode":"operator_equals","next":null,"parent":"z","inputs":{"OPERAND1":[3,"E+",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"E+":{"opcode":"argument_reporter_string_number","next":null,"parent":"iK","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"iQ":{"opcode":"procedures_call","next":"#","parent":"z","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"#":{"opcode":"procedures_call","next":null,"parent":"iQ","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"ha",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"ha":{"opcode":"operator_add","next":null,"parent":"#","inputs":{"NUM1":[3,"aC",[4,0]],"NUM2":[3,"Gn",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aC":{"opcode":"operator_multiply","next":null,"parent":"ha","inputs":{"NUM1":[3,"Gp",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Gp":{"opcode":"data_itemoflist","next":null,"parent":"aC","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Gn":{"opcode":"data_itemoflist","next":null,"parent":"ha","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"b4":{"opcode":"control_if_else","next":null,"parent":"z","inputs":{"CONDITION":[2,"%"],"SUBSTACK":[2,"i0"],"SUBSTACK2":[2,"a2"]},"fields":{},"shadow":false,"topLevel":false},"%":{"opcode":"operator_equals","next":null,"parent":"b4","inputs":{"OPERAND1":[3,"Gr",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"Gr":{"opcode":"argument_reporter_string_number","next":null,"parent":"%","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"i0":{"opcode":"procedures_call","next":"aD","parent":"b4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"aD":{"opcode":"procedures_call","next":",","parent":"i0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},",":{"opcode":"data_setvariableto","next":null,"parent":"aD","inputs":{"VALUE":[3,"bk/",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"bk/":{"opcode":"data_itemoflist","next":null,"parent":",","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"a2":{"opcode":"data_setvariableto","next":null,"parent":"b4","inputs":{"VALUE":[3,"(",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"(":{"opcode":"data_itemoflist","next":null,"parent":"a2","inputs":{"INDEX":[3,"GK",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"GK":{"opcode":"argument_reporter_string_number","next":null,"parent":"(","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"iJ":{"opcode":"data_replaceitemoflist","next":"ja","parent":"z","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"ja":{"opcode":"data_replaceitemoflist","next":"jb","parent":"iJ","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"jb":{"opcode":"data_replaceitemoflist","next":"hb","parent":"ja","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"hb":{"opcode":"data_replaceitemoflist","next":"jc","parent":"jb","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"jd",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"jd":{"opcode":"data_itemoflist","next":null,"parent":"hb","inputs":{"INDEX":[3,"je",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"je":{"opcode":"operator_add","next":null,"parent":"jd","inputs":{"NUM1":[3,"jf",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jf":{"opcode":"operator_add","next":null,"parent":"je","inputs":{"NUM1":[3,"jg",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jg":{"opcode":"operator_multiply","next":null,"parent":"jf","inputs":{"NUM1":[3,"GP",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"GP":{"opcode":"data_itemoflist","next":null,"parent":"jg","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"jc":{"opcode":"data_replaceitemoflist","next":null,"parent":"hb","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"jh",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"jh":{"opcode":"operator_add","next":null,"parent":"jc","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ji",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ji":{"opcode":"operator_equals","next":null,"parent":"jh","inputs":{"OPERAND1":[3,"G8",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"G8":{"opcode":"data_itemoflist","next":null,"parent":"ji","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"jj":{"opcode":"procedures_definition","next":"r","parent":null,"inputs":{"custom_block":[1,"jK"]},"fields":{},"shadow":false,"topLevel":true,"x":39600,"y":42},"jK":{"opcode":"procedures_prototype","next":null,"parent":"jj","inputs":{"x[UtCW[Ir[*GM)bxV$Xl":[1,"G#"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~XOR A, %s","argumentids":"[\"x[UtCW[Ir[*GM)bxV$Xl\"]","argumentnames":"[\"r1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"G#":{"opcode":"argument_reporter_string_number","next":null,"parent":"jK","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"r":{"opcode":"control_if_else","next":")","parent":"jj","inputs":{"CONDITION":[2,"*"],"SUBSTACK":[2,"+"],"SUBSTACK2":[2,"b!"]},"fields":{},"shadow":false,"topLevel":false},"*":{"opcode":"operator_equals","next":null,"parent":"r","inputs":{"OPERAND1":[3,"GS",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"GS":{"opcode":"argument_reporter_string_number","next":null,"parent":"*","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"+":{"opcode":"procedures_call","next":"jx","parent":"r","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"jx":{"opcode":"procedures_call","next":null,"parent":"+","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"hc",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"hc":{"opcode":"operator_add","next":null,"parent":"jx","inputs":{"NUM1":[3,"jy",[4,0]],"NUM2":[3,"G1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jy":{"opcode":"operator_multiply","next":null,"parent":"hc","inputs":{"NUM1":[3,"GO",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"GO":{"opcode":"data_itemoflist","next":null,"parent":"jy","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G1":{"opcode":"data_itemoflist","next":null,"parent":"hc","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"b!":{"opcode":"control_if_else","next":null,"parent":"r","inputs":{"CONDITION":[2,"jz"],"SUBSTACK":[2,"jA"],"SUBSTACK2":[2,"jB"]},"fields":{},"shadow":false,"topLevel":false},"jz":{"opcode":"operator_equals","next":null,"parent":"b!","inputs":{"OPERAND1":[3,"G%",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"G%":{"opcode":"argument_reporter_string_number","next":null,"parent":"jz","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"jA":{"opcode":"procedures_call","next":"jC","parent":"b!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"jC":{"opcode":"procedures_call","next":"jD","parent":"jA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"jD":{"opcode":"data_setvariableto","next":null,"parent":"jC","inputs":{"VALUE":[3,"G(",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"G(":{"opcode":"data_itemoflist","next":null,"parent":"jD","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"jB":{"opcode":"data_setvariableto","next":null,"parent":"b!","inputs":{"VALUE":[3,"jE",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"jE":{"opcode":"data_itemoflist","next":null,"parent":"jB","inputs":{"INDEX":[3,"G)",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G)":{"opcode":"argument_reporter_string_number","next":null,"parent":"jE","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},")":{"opcode":"data_replaceitemoflist","next":"jF","parent":"r","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"jF":{"opcode":"data_replaceitemoflist","next":"jG","parent":")","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"jG":{"opcode":"data_replaceitemoflist","next":"hd","parent":"jF","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"hd":{"opcode":"data_replaceitemoflist","next":"jH","parent":"jG","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"jI",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"jI":{"opcode":"data_itemoflist","next":null,"parent":"hd","inputs":{"INDEX":[3,"jJ",[7,0]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"jJ":{"opcode":"operator_add","next":null,"parent":"jI","inputs":{"NUM1":[3,"AA",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"AA":{"opcode":"operator_add","next":null,"parent":"jJ","inputs":{"NUM1":[3,"jM",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jM":{"opcode":"operator_multiply","next":null,"parent":"AA","inputs":{"NUM1":[3,"G+",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"G+":{"opcode":"data_itemoflist","next":null,"parent":"jM","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"jH":{"opcode":"data_replaceitemoflist","next":null,"parent":"hd","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"AC",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"AC":{"opcode":"operator_add","next":null,"parent":"jH","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"AD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AD":{"opcode":"operator_equals","next":null,"parent":"AC","inputs":{"OPERAND1":[3,"G,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"G,":{"opcode":"data_itemoflist","next":null,"parent":"AD","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"AE":{"opcode":"procedures_definition","next":"y","parent":null,"inputs":{"custom_block":[1,"AF"]},"fields":{},"shadow":false,"topLevel":true,"x":29727,"y":1485},"AF":{"opcode":"procedures_prototype","next":null,"parent":"AE","inputs":{"1S%8L7`G!H_9C#w,e;F,":[1,"GT"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~OR A, %s","argumentids":"[\"1S%8L7`G!H_9C#w,e;F,\"]","argumentnames":"[\"r1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"GT":{"opcode":"argument_reporter_string_number","next":null,"parent":"AF","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"y":{"opcode":"control_if_else","next":"AG","parent":"AE","inputs":{"CONDITION":[2,"jN"],"SUBSTACK":[2,"AH"],"SUBSTACK2":[2,"b9"]},"fields":{},"shadow":false,"topLevel":false},"jN":{"opcode":"operator_equals","next":null,"parent":"y","inputs":{"OPERAND1":[3,"G2",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"G2":{"opcode":"argument_reporter_string_number","next":null,"parent":"jN","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"AH":{"opcode":"procedures_call","next":"AI","parent":"y","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"AI":{"opcode":"procedures_call","next":null,"parent":"AH","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"he",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"he":{"opcode":"operator_add","next":null,"parent":"AI","inputs":{"NUM1":[3,"AJ",[4,0]],"NUM2":[3,"bk:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AJ":{"opcode":"operator_multiply","next":null,"parent":"he","inputs":{"NUM1":[3,"bk;",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bk;":{"opcode":"data_itemoflist","next":null,"parent":"AJ","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk:":{"opcode":"data_itemoflist","next":null,"parent":"he","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"b9":{"opcode":"control_if_else","next":null,"parent":"y","inputs":{"CONDITION":[2,"AK"],"SUBSTACK":[2,"AL"],"SUBSTACK2":[2,"AM"]},"fields":{},"shadow":false,"topLevel":false},"AK":{"opcode":"operator_equals","next":null,"parent":"b9","inputs":{"OPERAND1":[3,"bk=",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"bk=":{"opcode":"argument_reporter_string_number","next":null,"parent":"AK","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"AL":{"opcode":"procedures_call","next":"AN","parent":"b9","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"AN":{"opcode":"procedures_call","next":"jO","parent":"AL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"jO":{"opcode":"data_setvariableto","next":null,"parent":"AN","inputs":{"VALUE":[3,"GV",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"GV":{"opcode":"data_itemoflist","next":null,"parent":"jO","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"AM":{"opcode":"data_setvariableto","next":null,"parent":"b9","inputs":{"VALUE":[3,"jP",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"jP":{"opcode":"data_itemoflist","next":null,"parent":"AM","inputs":{"INDEX":[3,"GQ",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"GQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"jP","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"AG":{"opcode":"data_replaceitemoflist","next":"AO","parent":"y","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"AO":{"opcode":"data_replaceitemoflist","next":"AP","parent":"AG","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"AP":{"opcode":"data_replaceitemoflist","next":"hf","parent":"AO","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"hf":{"opcode":"data_replaceitemoflist","next":"AQ","parent":"AP","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"AR",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"AR":{"opcode":"data_itemoflist","next":null,"parent":"hf","inputs":{"INDEX":[3,"AS",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"AS":{"opcode":"operator_add","next":null,"parent":"AR","inputs":{"NUM1":[3,"AT",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"AT":{"opcode":"operator_add","next":null,"parent":"AS","inputs":{"NUM1":[3,"AU",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AU":{"opcode":"operator_multiply","next":null,"parent":"AT","inputs":{"NUM1":[3,"GL",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"GL":{"opcode":"data_itemoflist","next":null,"parent":"AU","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"AQ":{"opcode":"data_replaceitemoflist","next":null,"parent":"hf","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"AV",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"AV":{"opcode":"operator_add","next":null,"parent":"AQ","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"AW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AW":{"opcode":"operator_equals","next":null,"parent":"AV","inputs":{"OPERAND1":[3,"GM",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"GM":{"opcode":"data_itemoflist","next":null,"parent":"AW","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"AX":{"opcode":"procedures_definition","next":"AY","parent":null,"inputs":{"custom_block":[1,"hg"]},"fields":{},"shadow":false,"topLevel":true,"x":30877,"y":64},"hg":{"opcode":"procedures_prototype","next":null,"parent":"AX","inputs":{";q6wBzEm3JDk2f$cJYN!":[1,"GW"],"1mNIXx^Q/h7L3QtGNx#u":[1,"GX"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD16 %s %s","argumentids":"[\";q6wBzEm3JDk2f$cJYN!\",\"1mNIXx^Q/h7L3QtGNx#u\"]","argumentnames":"[\"r1\",\"r2\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"GW":{"opcode":"argument_reporter_string_number","next":null,"parent":"hg","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"GX":{"opcode":"argument_reporter_string_number","next":null,"parent":"hg","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":true,"topLevel":false},"AY":{"opcode":"procedures_call","next":"AZ","parent":"AX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"AZ":{"opcode":"procedures_call","next":"A0","parent":"AY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"A0":{"opcode":"procedures_call","next":"A1","parent":"AZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"A1":{"opcode":"procedures_call","next":"b1","parent":"A0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"b1":{"opcode":"control_if_else","next":null,"parent":"A1","inputs":{"CONDITION":[2,"A2"],"SUBSTACK":[2,"A3"],"SUBSTACK2":[2,"b+"]},"fields":{},"shadow":false,"topLevel":false},"A2":{"opcode":"operator_equals","next":null,"parent":"b1","inputs":{"OPERAND1":[3,"GY",[10,""]],"OPERAND2":[1,[10,"S"]]},"fields":{},"shadow":false,"topLevel":false},"GY":{"opcode":"argument_reporter_string_number","next":null,"parent":"A2","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"A3":{"opcode":"data_setvariableto","next":null,"parent":"b1","inputs":{"VALUE":[3,"hh",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"hh":{"opcode":"operator_add","next":null,"parent":"A3","inputs":{"NUM1":[3,"A4",[4,0]],"NUM2":[3,"GZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A4":{"opcode":"operator_multiply","next":null,"parent":"hh","inputs":{"NUM1":[3,"G0",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"G0":{"opcode":"data_itemoflist","next":null,"parent":"A4","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"GZ":{"opcode":"data_itemoflist","next":null,"parent":"hh","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"b+":{"opcode":"data_replaceitemoflist","next":"hi","parent":"b1","inputs":{"INDEX":[3,"GR",[7,0]],"ITEM":[3,"bk?",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"GR":{"opcode":"argument_reporter_string_number","next":null,"parent":"b+","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"bk?":{"opcode":"data_itemoflist","next":null,"parent":"b+","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"hi":{"opcode":"data_replaceitemoflist","next":null,"parent":"b+","inputs":{"INDEX":[3,"G3",[7,0]],"ITEM":[3,"G5",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G3":{"opcode":"argument_reporter_string_number","next":null,"parent":"hi","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"G5":{"opcode":"data_itemoflist","next":null,"parent":"hi","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"A5":{"opcode":"procedures_definition","next":"A6","parent":null,"inputs":{"custom_block":[1,"v"]},"fields":{},"shadow":false,"topLevel":true,"x":43701,"y":64},"v":{"opcode":"procedures_prototype","next":null,"parent":"A5","inputs":{":;IINa:6dKV{!t4(P$R[":[1,"G7"],"9_?!Qi]Mm6P%KU.y]8MQ":[1,"G9"],"UG%/Fw?{|:CKlgO=%q|q":[1,"G!"],"[sD@Z(t8ZHvx|_q{)*i8":[1,"G*"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDPTR %s %s | %s %s","argumentids":"[\":;IINa:6dKV{!t4(P$R[\",\"9_?!Qi]Mm6P%KU.y]8MQ\",\"UG%/Fw?{|:CKlgO=%q|q\",\"[sD@Z(t8ZHvx|_q{)*i8\"]","argumentnames":"[\"r1\",\"r2\",\"p1\",\"p2\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"G7":{"opcode":"argument_reporter_string_number","next":null,"parent":"v","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"G9":{"opcode":"argument_reporter_string_number","next":null,"parent":"v","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":true,"topLevel":false},"G!":{"opcode":"argument_reporter_string_number","next":null,"parent":"v","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"G*":{"opcode":"argument_reporter_string_number","next":null,"parent":"v","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":true,"topLevel":false},"A6":{"opcode":"procedures_call","next":"l","parent":"A5","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"l":{"opcode":"control_if_else","next":"hj","parent":"A6","inputs":{"CONDITION":[2,"A7"],"SUBSTACK":[2,"hk"],"SUBSTACK2":[2,"hl"]},"fields":{},"shadow":false,"topLevel":false},"A7":{"opcode":"operator_equals","next":null,"parent":"l","inputs":{"OPERAND1":[3,"G-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"G-":{"opcode":"argument_reporter_string_number","next":null,"parent":"A7","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"hk":{"opcode":"procedures_call","next":null,"parent":"l","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,"hm",[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"G.",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"hm":{"opcode":"operator_add","next":null,"parent":"hk","inputs":{"NUM1":[3,"A8",[4,0]],"NUM2":[3,"A9",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A8":{"opcode":"operator_multiply","next":null,"parent":"hm","inputs":{"NUM1":[3,"A!",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"A!":{"opcode":"data_itemoflist","next":null,"parent":"A8","inputs":{"INDEX":[3,"G/",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G/":{"opcode":"argument_reporter_string_number","next":null,"parent":"A!","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"A9":{"opcode":"data_itemoflist","next":null,"parent":"hm","inputs":{"INDEX":[3,"G:",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G:":{"opcode":"argument_reporter_string_number","next":null,"parent":"A9","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"G.":{"opcode":"data_itemoflist","next":null,"parent":"hk","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"hl":{"opcode":"procedures_call","next":"G;","parent":"l","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"hn",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"hn":{"opcode":"operator_add","next":null,"parent":"hl","inputs":{"NUM1":[3,"A#",[4,0]],"NUM2":[3,"A%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A#":{"opcode":"operator_multiply","next":null,"parent":"hn","inputs":{"NUM1":[3,"A(",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"A(":{"opcode":"data_itemoflist","next":null,"parent":"A#","inputs":{"INDEX":[3,"bk@",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk@":{"opcode":"argument_reporter_string_number","next":null,"parent":"A(","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"A%":{"opcode":"data_itemoflist","next":null,"parent":"hn","inputs":{"INDEX":[3,"/8",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G;":{"opcode":"data_replaceitemoflist","next":null,"parent":"hl","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"hj":{"opcode":"control_if","next":null,"parent":"l","inputs":{"CONDITION":[2,"A+"],"SUBSTACK":[2,"ho"]},"fields":{},"shadow":false,"topLevel":false},"A+":{"opcode":"operator_gt","next":null,"parent":"hj","inputs":{"OPERAND1":[3,"G@",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"G@":{"opcode":"argument_reporter_string_number","next":null,"parent":"A+","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":false,"topLevel":false},"ho":{"opcode":"data_setvariableto","next":"hp","parent":"hj","inputs":{"VALUE":[3,"hq",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"hq":{"opcode":"operator_subtract","next":null,"parent":"ho","inputs":{"NUM1":[3,"A,",[4,0]],"NUM2":[3,"A-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A,":{"opcode":"operator_equals","next":null,"parent":"hq","inputs":{"OPERAND1":[3,"G[",[10,""]],"OPERAND2":[1,[10,"+"]]},"fields":{},"shadow":false,"topLevel":false},"G[":{"opcode":"argument_reporter_string_number","next":null,"parent":"A,","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":false,"topLevel":false},"A-":{"opcode":"operator_equals","next":null,"parent":"hq","inputs":{"OPERAND1":[3,"G?",[10,""]],"OPERAND2":[1,[10,"-"]]},"fields":{},"shadow":false,"topLevel":false},"G?":{"opcode":"argument_reporter_string_number","next":null,"parent":"A-","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":false,"topLevel":false},"hp":{"opcode":"data_setvariableto","next":"hr","parent":"ho","inputs":{"VALUE":[3,"A.",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"A.":{"opcode":"operator_add","next":null,"parent":"hp","inputs":{"NUM1":[3,"G_",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"G_":{"opcode":"data_itemoflist","next":null,"parent":"A.","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"hr":{"opcode":"data_replaceitemoflist","next":"A/","parent":"hp","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"G]",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G]":{"opcode":"operator_mod","next":null,"parent":"hr","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"A/":{"opcode":"data_replaceitemoflist","next":null,"parent":"hr","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"A;",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"A;":{"opcode":"operator_mathop","next":null,"parent":"A/","inputs":{"NUM":[3,"hs",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"hs":{"opcode":"operator_add","next":null,"parent":"A;","inputs":{"NUM1":[3,"G^",[4,0]],"NUM2":[3,"G`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"G^":{"opcode":"data_itemoflist","next":null,"parent":"hs","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"G`":{"opcode":"operator_divide","next":null,"parent":"hs","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"A=":{"opcode":"procedures_definition","next":"ht","parent":null,"inputs":{"custom_block":[1,"b,"]},"fields":{},"shadow":false,"topLevel":true,"x":32993,"y":64},"b,":{"opcode":"procedures_prototype","next":null,"parent":"A=","inputs":{"vfdDlq:Gdk:i7jlV[)Nj":[1,"G{"],"M[1NcE9VxLgdHmJ=M*sc":[1,"G|"],"`Y0sDI-kMB1dTV,J^_TN":[1,"G}"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC16 %s %s | %s","argumentids":"[\"vfdDlq:Gdk:i7jlV[)Nj\",\"M[1NcE9VxLgdHmJ=M*sc\",\"`Y0sDI-kMB1dTV,J^_TN\"]","argumentnames":"[\"r1\",\"r2\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"G{":{"opcode":"argument_reporter_string_number","next":null,"parent":"b,","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"G|":{"opcode":"argument_reporter_string_number","next":null,"parent":"b,","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":true,"topLevel":false},"G}":{"opcode":"argument_reporter_string_number","next":null,"parent":"b,","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"ht":{"opcode":"data_setvariableto","next":"A?","parent":"A=","inputs":{"VALUE":[3,"hu",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"hu":{"opcode":"operator_subtract","next":null,"parent":"ht","inputs":{"NUM1":[3,"A@",[4,0]],"NUM2":[3,"aI`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A@":{"opcode":"operator_equals","next":null,"parent":"hu","inputs":{"OPERAND1":[3,"G~",[10,""]],"OPERAND2":[1,[10,"+"]]},"fields":{},"shadow":false,"topLevel":false},"G~":{"opcode":"argument_reporter_string_number","next":null,"parent":"A@","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"aI`":{"opcode":"operator_equals","next":null,"parent":"hu","inputs":{"OPERAND1":[3,"Ha",[10,""]],"OPERAND2":[1,[10,"-"]]},"fields":{},"shadow":false,"topLevel":false},"Ha":{"opcode":"argument_reporter_string_number","next":null,"parent":"aI`","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"A?":{"opcode":"procedures_call","next":"b/","parent":"ht","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"b/":{"opcode":"control_if_else","next":null,"parent":"A?","inputs":{"CONDITION":[2,"A["],"SUBSTACK":[2,"A]"],"SUBSTACK2":[2,"hv"]},"fields":{},"shadow":false,"topLevel":false},"A]":{"opcode":"data_setvariableto","next":null,"parent":"b/","inputs":{"VALUE":[3,"A`",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"A`":{"opcode":"operator_mod","next":null,"parent":"A]","inputs":{"NUM1":[3,"Hc",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Hc":{"opcode":"operator_add","next":null,"parent":"A`","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"hv":{"opcode":"data_setvariableto","next":"R2","parent":"b/","inputs":{"VALUE":[3,"j%",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"j%":{"opcode":"operator_add","next":null,"parent":"hv","inputs":{"NUM1":[3,"A|",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A|":{"opcode":"data_itemoflist","next":null,"parent":"j%","inputs":{"INDEX":[3,"He",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"He":{"opcode":"argument_reporter_string_number","next":null,"parent":"A|","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"R2":{"opcode":"data_replaceitemoflist","next":"hw","parent":"hv","inputs":{"INDEX":[3,"Hg",[7,0]],"ITEM":[3,"Hf",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Hg":{"opcode":"argument_reporter_string_number","next":null,"parent":"R2","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"Hf":{"opcode":"operator_mod","next":null,"parent":"R2","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hw":{"opcode":"data_replaceitemoflist","next":null,"parent":"R2","inputs":{"INDEX":[3,"Hi",[7,0]],"ITEM":[3,"A^",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Hi":{"opcode":"argument_reporter_string_number","next":null,"parent":"hw","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"A^":{"opcode":"operator_mod","next":null,"parent":"hw","inputs":{"NUM1":[3,"hx",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hx":{"opcode":"operator_add","next":null,"parent":"A^","inputs":{"NUM1":[3,"A_",[4,0]],"NUM2":[3,"A}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A_":{"opcode":"data_itemoflist","next":null,"parent":"hx","inputs":{"INDEX":[3,"Hd",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Hd":{"opcode":"argument_reporter_string_number","next":null,"parent":"A_","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"A}":{"opcode":"operator_mathop","next":null,"parent":"hx","inputs":{"NUM":[3,"Hl",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Hl":{"opcode":"operator_divide","next":null,"parent":"A}","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"A~":{"opcode":"procedures_definition","next":"u","parent":null,"inputs":{"custom_block":[1,"hy"]},"fields":{},"shadow":false,"topLevel":true,"x":31979,"y":64},"hy":{"opcode":"procedures_prototype","next":null,"parent":"A~","inputs":{"Tz%b=`8Y#+(y)i7b*+LD":[1,"Hh"],"[bhaH!ToM/O)]G9R/g^t":[1,"Hj"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC8 %s | %s","argumentids":"[\"Tz%b=`8Y#+(y)i7b*+LD\",\"[bhaH!ToM/O)]G9R/g^t\"]","argumentnames":"[\"r1\",\"p1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Hh":{"opcode":"argument_reporter_string_number","next":null,"parent":"hy","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"Hj":{"opcode":"argument_reporter_string_number","next":null,"parent":"hy","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"u":{"opcode":"control_if_else","next":"hz","parent":"A~","inputs":{"CONDITION":[2,"Ba"],"SUBSTACK":[2,"Bb"],"SUBSTACK2":[2,"Bc"]},"fields":{},"shadow":false,"topLevel":false},"Ba":{"opcode":"operator_equals","next":null,"parent":"u","inputs":{"OPERAND1":[3,"Hk",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Hk":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ba","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Bb":{"opcode":"procedures_call","next":"Bd","parent":"u","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Bd":{"opcode":"procedures_call","next":null,"parent":"Bb","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"hA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"hA":{"opcode":"operator_add","next":null,"parent":"Bd","inputs":{"NUM1":[3,"Be",[4,0]],"NUM2":[3,"Hm",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Be":{"opcode":"operator_multiply","next":null,"parent":"hA","inputs":{"NUM1":[3,"Tx",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Tx":{"opcode":"data_itemoflist","next":null,"parent":"Be","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Hm":{"opcode":"data_itemoflist","next":null,"parent":"hA","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Bc":{"opcode":"data_setvariableto","next":null,"parent":"u","inputs":{"VALUE":[3,"Bf",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Bf":{"opcode":"data_itemoflist","next":null,"parent":"Bc","inputs":{"INDEX":[3,"Ty",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Ty":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bf","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"hz":{"opcode":"data_setvariableto","next":"hB","parent":"u","inputs":{"VALUE":[3,"hC",[10,""]]},"fields":{"VARIABLE":["T7","d{oa^`AGe`;eIR$H[7uf"]},"shadow":false,"topLevel":false},"hC":{"opcode":"operator_subtract","next":null,"parent":"hz","inputs":{"NUM1":[3,"Bg",[4,0]],"NUM2":[3,"Bh",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bg":{"opcode":"operator_equals","next":null,"parent":"hC","inputs":{"OPERAND1":[3,"Tz",[10,""]],"OPERAND2":[1,[10,"+"]]},"fields":{},"shadow":false,"topLevel":false},"Tz":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bg","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"Bh":{"opcode":"operator_equals","next":null,"parent":"hC","inputs":{"OPERAND1":[3,"TA",[10,""]],"OPERAND2":[1,[10,"-"]]},"fields":{},"shadow":false,"topLevel":false},"TA":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bh","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"hB":{"opcode":"data_setvariableto","next":"hD","parent":"hz","inputs":{"VALUE":[3,"Tw",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"Tw":{"opcode":"operator_add","next":null,"parent":"hB","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"hD":{"opcode":"data_replaceitemoflist","next":"q","parent":"hB","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"Bi",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Bi":{"opcode":"operator_add","next":null,"parent":"hD","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Bj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bj":{"opcode":"operator_equals","next":null,"parent":"Bi","inputs":{"OPERAND1":[3,"TB",[10,""]],"OPERAND2":[1,[10,"-"]]},"fields":{},"shadow":false,"topLevel":false},"TB":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bj","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"q":{"opcode":"control_if_else","next":"m","parent":"hD","inputs":{"CONDITION":[2,"bk["],"SUBSTACK":[2,"O("],"SUBSTACK2":[2,"Bk"]},"fields":{},"shadow":false,"topLevel":false},"bk[":{"opcode":"data_itemoflist","next":null,"parent":"q","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"O(":{"opcode":"data_replaceitemoflist","next":null,"parent":"q","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"Bo",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Bk":{"opcode":"data_replaceitemoflist","next":null,"parent":"q","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"Br",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Br":{"opcode":"operator_add","next":null,"parent":"Bk","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Bs",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bs":{"opcode":"operator_gt","next":null,"parent":"Br","inputs":{"OPERAND1":[3,"Bt",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Bt":{"opcode":"operator_mod","next":null,"parent":"Bs","inputs":{"NUM1":[3,"hF",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"hF":{"opcode":"operator_add","next":null,"parent":"Bt","inputs":{"NUM1":[3,"bk]",[4,0]],"NUM2":[3,"bk^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bk]":{"opcode":"operator_mod","next":null,"parent":"hF","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bk^":{"opcode":"operator_mod","next":null,"parent":"hF","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"m":{"opcode":"control_if_else","next":"O*","parent":"q","inputs":{"CONDITION":[2,"Bu"],"SUBSTACK":[2,"Bv"],"SUBSTACK2":[2,"hG"]},"fields":{},"shadow":false,"topLevel":false},"Bu":{"opcode":"operator_equals","next":null,"parent":"m","inputs":{"OPERAND1":[3,"bk_",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bk_":{"opcode":"argument_reporter_string_number","next":null,"parent":"Bu","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Bv":{"opcode":"procedures_call","next":"hH","parent":"m","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"hH":{"opcode":"procedures_call","next":null,"parent":"Bv","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,"hI",[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"bk`",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"hI":{"opcode":"operator_add","next":null,"parent":"hH","inputs":{"NUM1":[3,"Bw",[4,0]],"NUM2":[3,"bk{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bw":{"opcode":"operator_multiply","next":null,"parent":"hI","inputs":{"NUM1":[3,"bk|",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bk|":{"opcode":"data_itemoflist","next":null,"parent":"Bw","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk{":{"opcode":"data_itemoflist","next":null,"parent":"hI","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk`":{"opcode":"operator_mod","next":null,"parent":"hH","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hG":{"opcode":"data_replaceitemoflist","next":null,"parent":"m","inputs":{"INDEX":[3,"bk}",[7,0]],"ITEM":[3,"bk~",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bk}":{"opcode":"argument_reporter_string_number","next":null,"parent":"hG","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"bk~":{"opcode":"operator_mod","next":null,"parent":"hG","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"O*":{"opcode":"data_replaceitemoflist","next":null,"parent":"m","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"Bx",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Bx":{"opcode":"operator_add","next":null,"parent":"O*","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"O+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"O+":{"opcode":"operator_equals","next":null,"parent":"Bx","inputs":{"OPERAND1":[3,"bla",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bla":{"opcode":"operator_mod","next":null,"parent":"O+","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"By":{"opcode":"procedures_definition","next":"Bz","parent":null,"inputs":{"custom_block":[1,"b8"]},"fields":{},"shadow":false,"topLevel":true,"x":29727,"y":3176},"b8":{"opcode":"procedures_prototype","next":null,"parent":"By","inputs":{",2sEL}l5wJIm1MWngK,L":[1,"blb"],"TrW4:1T$A9]^4_K9#M;Y":[1,"blc"],"}*6z?HLhj3$bho@pYhWB":[1,"bld"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JR %s %s | %s","argumentids":"[\",2sEL}l5wJIm1MWngK,L\",\"TrW4:1T$A9]^4_K9#M;Y\",\"}*6z?HLhj3$bho@pYhWB\"]","argumentnames":"[\"c1\",\"c2\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"blb":{"opcode":"argument_reporter_string_number","next":null,"parent":"b8","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":true,"topLevel":false},"blc":{"opcode":"argument_reporter_string_number","next":null,"parent":"b8","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":true,"topLevel":false},"bld":{"opcode":"argument_reporter_string_number","next":null,"parent":"b8","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"Bz":{"opcode":"procedures_call","next":"BA","parent":"By","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"BA":{"opcode":"procedures_call","next":"hJ","parent":"Bz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"hJ":{"opcode":"control_if","next":null,"parent":"BA","inputs":{"CONDITION":[2,"hK"],"SUBSTACK":[2,"BB"]},"fields":{},"shadow":false,"topLevel":false},"hK":{"opcode":"operator_or","next":null,"parent":"hJ","inputs":{"OPERAND1":[2,"BC"],"OPERAND2":[2,"hL"]},"fields":{},"shadow":false,"topLevel":false},"BC":{"opcode":"operator_equals","next":null,"parent":"hK","inputs":{"OPERAND1":[3,"ble",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ble":{"opcode":"argument_reporter_string_number","next":null,"parent":"BC","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"hL":{"opcode":"operator_equals","next":null,"parent":"hK","inputs":{"OPERAND1":[3,"BD",[10,""]],"OPERAND2":[3,"blf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"BD":{"opcode":"data_itemoflist","next":null,"parent":"hL","inputs":{"INDEX":[3,"blg",[7,0]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"blg":{"opcode":"argument_reporter_string_number","next":null,"parent":"BD","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":false,"topLevel":false},"blf":{"opcode":"argument_reporter_string_number","next":null,"parent":"hL","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":false,"topLevel":false},"BB":{"opcode":"procedures_call","next":"BE","parent":"hJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"BE":{"opcode":"data_setvariableto","next":null,"parent":"BB","inputs":{"VALUE":[3,"BF",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"BF":{"opcode":"operator_mod","next":null,"parent":"BE","inputs":{"NUM1":[3,"BG",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"BG":{"opcode":"operator_add","next":null,"parent":"BF","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[3,"hM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"hM":{"opcode":"operator_subtract","next":null,"parent":"BG","inputs":{"NUM1":[3,"blh",[4,0]],"NUM2":[3,"BH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blh":{"opcode":"data_itemoflist","next":null,"parent":"hM","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"BH":{"opcode":"operator_multiply","next":null,"parent":"hM","inputs":{"NUM1":[3,"O)",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"O)":{"opcode":"operator_gt","next":null,"parent":"BH","inputs":{"OPERAND1":[3,"bli",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bli":{"opcode":"data_itemoflist","next":null,"parent":"O)","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"BJ":{"opcode":"procedures_definition","next":"BK","parent":null,"inputs":{"custom_block":[1,"blj"]},"fields":{},"shadow":false,"topLevel":true,"x":28426,"y":64},"blj":{"opcode":"procedures_prototype","next":null,"parent":"BJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~POP","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"BK":{"opcode":"procedures_call","next":"BL","parent":"BJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"BL":{"opcode":"procedures_call","next":"BM","parent":"BK","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"BM":{"opcode":"data_setvariableto","next":"hN","parent":"BL","inputs":{"VALUE":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"hN":{"opcode":"data_setvariableto","next":"BN","parent":"BM","inputs":{"VALUE":[3,"BO",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"BO":{"opcode":"operator_mod","next":null,"parent":"hN","inputs":{"NUM1":[3,"blk",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"blk":{"opcode":"operator_add","next":null,"parent":"BO","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"BN":{"opcode":"procedures_call","next":"BP","parent":"hN","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"BP":{"opcode":"procedures_call","next":"hO","parent":"BN","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"hO":{"opcode":"data_changevariableby","next":"BQ","parent":"BP","inputs":{"VALUE":[3,"bll",[4,0]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"bll":{"opcode":"operator_multiply","next":null,"parent":"hO","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"BQ":{"opcode":"data_setvariableto","next":null,"parent":"hO","inputs":{"VALUE":[3,"BR",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"BS":{"opcode":"procedures_definition","next":"BT","parent":null,"inputs":{"custom_block":[1,"bM"]},"fields":{},"shadow":false,"topLevel":true,"x":26081,"y":64},"bM":{"opcode":"procedures_prototype","next":null,"parent":"BS","inputs":{"-PiG/Yq~E`BMt^+FIvFH":[1,"blm"],".d/UU3a2tfCN^3y,_8;z":[1,"bln"],"NnC0*/Ydq!3qBg#sG`,T":[1,"blo"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JP %s %s | %s","argumentids":"[\"-PiG/Yq~E`BMt^+FIvFH\",\".d/UU3a2tfCN^3y,_8;z\",\"NnC0*/Ydq!3qBg#sG`,T\"]","argumentnames":"[\"c1\",\"c2\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"blm":{"opcode":"argument_reporter_string_number","next":null,"parent":"bM","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":true,"topLevel":false},"bln":{"opcode":"argument_reporter_string_number","next":null,"parent":"bM","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":true,"topLevel":false},"blo":{"opcode":"argument_reporter_string_number","next":null,"parent":"bM","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"BT":{"opcode":"procedures_call","next":"BU","parent":"BS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"BU":{"opcode":"procedures_call","next":"BV","parent":"BT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"BV":{"opcode":"procedures_call","next":"BW","parent":"BU","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"BW":{"opcode":"procedures_call","next":"hP","parent":"BV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"hP":{"opcode":"control_if","next":null,"parent":"BW","inputs":{"CONDITION":[2,"hQ"],"SUBSTACK":[2,"hR"]},"fields":{},"shadow":false,"topLevel":false},"hQ":{"opcode":"operator_or","next":null,"parent":"hP","inputs":{"OPERAND1":[2,"BX"],"OPERAND2":[2,"hS"]},"fields":{},"shadow":false,"topLevel":false},"BX":{"opcode":"operator_equals","next":null,"parent":"hQ","inputs":{"OPERAND1":[3,"blp",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"blp":{"opcode":"argument_reporter_string_number","next":null,"parent":"BX","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"hS":{"opcode":"operator_equals","next":null,"parent":"hQ","inputs":{"OPERAND1":[3,"BY",[10,""]],"OPERAND2":[3,"blq",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"BY":{"opcode":"data_itemoflist","next":null,"parent":"hS","inputs":{"INDEX":[3,"blr",[7,0]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"blr":{"opcode":"argument_reporter_string_number","next":null,"parent":"BY","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":false,"topLevel":false},"blq":{"opcode":"argument_reporter_string_number","next":null,"parent":"hS","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":false,"topLevel":false},"hR":{"opcode":"data_setvariableto","next":"bls","parent":"hP","inputs":{"VALUE":[3,"hT",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"hT":{"opcode":"operator_add","next":null,"parent":"hR","inputs":{"NUM1":[3,"BZ",[4,0]],"NUM2":[3,"blt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"BZ":{"opcode":"operator_multiply","next":null,"parent":"hT","inputs":{"NUM1":[3,"blu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"blu":{"opcode":"data_itemoflist","next":null,"parent":"BZ","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"blt":{"opcode":"data_itemoflist","next":null,"parent":"hT","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"bls":{"opcode":"procedures_call","next":null,"parent":"hR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"B0":{"opcode":"procedures_definition","next":"B1","parent":null,"inputs":{"custom_block":[1,"hU"]},"fields":{},"shadow":false,"topLevel":true,"x":29258,"y":64},"hU":{"opcode":"procedures_prototype","next":null,"parent":"B0","inputs":{"C#nc~k`#)?@}yo`3}V^6":[1,"blv"],"EV/=xEoSaXRhLZ:5@_C(":[1,"blw"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH %s %s","argumentids":"[\"C#nc~k`#)?@}yo`3}V^6\",\"EV/=xEoSaXRhLZ:5@_C(\"]","argumentnames":"[\"uH\",\"uL\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"blv":{"opcode":"argument_reporter_string_number","next":null,"parent":"hU","inputs":{},"fields":{"VALUE":["uH",null]},"shadow":true,"topLevel":false},"blw":{"opcode":"argument_reporter_string_number","next":null,"parent":"hU","inputs":{},"fields":{"VALUE":["uL",null]},"shadow":true,"topLevel":false},"B1":{"opcode":"procedures_call","next":"hV","parent":"B0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"hV":{"opcode":"data_setvariableto","next":"B2","parent":"B1","inputs":{"VALUE":[3,"B3",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"B3":{"opcode":"operator_mod","next":null,"parent":"hV","inputs":{"NUM1":[3,"blx",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"blx":{"opcode":"operator_subtract","next":null,"parent":"B3","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B2":{"opcode":"procedures_call","next":"hW","parent":"hV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"hW":{"opcode":"procedures_call","next":"hX","parent":"B2","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"bly",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"bly":{"opcode":"argument_reporter_string_number","next":null,"parent":"hW","inputs":{},"fields":{"VALUE":["uH",null]},"shadow":false,"topLevel":false},"hX":{"opcode":"data_setvariableto","next":"B4","parent":"hW","inputs":{"VALUE":[3,"B5",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"B5":{"opcode":"operator_mod","next":null,"parent":"hX","inputs":{"NUM1":[3,"blz",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"blz":{"opcode":"operator_subtract","next":null,"parent":"B5","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B4":{"opcode":"procedures_call","next":"B6","parent":"hX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"B6":{"opcode":"procedures_call","next":null,"parent":"B4","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"blA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"blA":{"opcode":"argument_reporter_string_number","next":null,"parent":"B6","inputs":{},"fields":{"VALUE":["uL",null]},"shadow":false,"topLevel":false},"B_":{"opcode":"procedures_definition","next":"hY","parent":null,"inputs":{"custom_block":[1,"hZ"]},"fields":{},"shadow":false,"topLevel":true,"x":23712,"y":64},"hZ":{"opcode":"procedures_prototype","next":null,"parent":"B_","inputs":{"b*:RzA0o$VB8NT@~v;Ll":[1,"blB"],"[mtpQRJClj0F%g2|_4+W":[1,"blC"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLC/RRC %s | %s","argumentids":"[\"b*:RzA0o$VB8NT@~v;Ll\",\"[mtpQRJClj0F%g2|_4+W\"]","argumentnames":"[\"r1\",\"d1\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"blB":{"opcode":"argument_reporter_string_number","next":null,"parent":"hZ","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"blC":{"opcode":"argument_reporter_string_number","next":null,"parent":"hZ","inputs":{},"fields":{"VALUE":["d1",null]},"shadow":true,"topLevel":false},"hY":{"opcode":"data_setvariableto","next":"B`","parent":"B_","inputs":{"VALUE":[3,"B{",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"B{":{"opcode":"data_itemoflist","next":null,"parent":"hY","inputs":{"INDEX":[3,"blD",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"blD":{"opcode":"argument_reporter_string_number","next":null,"parent":"B{","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"B`":{"opcode":"data_replaceitemoflist","next":"B|","parent":"hY","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"B|":{"opcode":"data_replaceitemoflist","next":"s","parent":"B`","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"s":{"opcode":"control_if_else","next":"h0","parent":"B|","inputs":{"CONDITION":[2,"B}"],"SUBSTACK":[2,"h1"],"SUBSTACK2":[2,"h2"]},"fields":{},"shadow":false,"topLevel":false},"B}":{"opcode":"operator_equals","next":null,"parent":"s","inputs":{"OPERAND1":[3,"blE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"blE":{"opcode":"argument_reporter_string_number","next":null,"parent":"B}","inputs":{},"fields":{"VALUE":["d1",null]},"shadow":false,"topLevel":false},"h1":{"opcode":"data_setvariableto","next":"B~","parent":"s","inputs":{"VALUE":[3,"h3",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"h3":{"opcode":"operator_add","next":null,"parent":"h1","inputs":{"NUM1":[3,"blF",[4,0]],"NUM2":[3,"Ca",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blF":{"opcode":"operator_multiply","next":null,"parent":"h3","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ca":{"opcode":"operator_mathop","next":null,"parent":"h3","inputs":{"NUM":[3,"blG",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blG":{"opcode":"operator_divide","next":null,"parent":"Ca","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"B~":{"opcode":"data_replaceitemoflist","next":null,"parent":"h1","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Cb",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Cb":{"opcode":"operator_add","next":null,"parent":"B~","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"blH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blH":{"opcode":"operator_gt","next":null,"parent":"Cb","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"h2":{"opcode":"data_replaceitemoflist","next":"Cc","parent":"s","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"blI",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"blI":{"opcode":"operator_mod","next":null,"parent":"h2","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cc":{"opcode":"data_setvariableto","next":null,"parent":"h2","inputs":{"VALUE":[3,"h4",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"h4":{"opcode":"operator_add","next":null,"parent":"Cc","inputs":{"NUM1":[3,"Cd",[4,0]],"NUM2":[3,"Ce",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Cd":{"opcode":"operator_mathop","next":null,"parent":"h4","inputs":{"NUM":[3,"blJ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blJ":{"opcode":"operator_divide","next":null,"parent":"Cd","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ce":{"opcode":"operator_multiply","next":null,"parent":"h4","inputs":{"NUM1":[3,"blK",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"blK":{"opcode":"operator_mod","next":null,"parent":"Ce","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"h0":{"opcode":"data_setvariableto","next":"h5","parent":"s","inputs":{"VALUE":[3,"blL",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"blL":{"opcode":"operator_mod","next":null,"parent":"h0","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"h5":{"opcode":"data_replaceitemoflist","next":"Cf","parent":"h0","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"Cg",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Cg":{"opcode":"operator_add","next":null,"parent":"h5","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"blM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blM":{"opcode":"operator_equals","next":null,"parent":"Cg","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Cf":{"opcode":"data_replaceitemoflist","next":null,"parent":"h5","inputs":{"INDEX":[3,"blN",[7,0]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"blN":{"opcode":"argument_reporter_string_number","next":null,"parent":"Cf","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"aI{":{"opcode":"procedures_definition","next":"h6","parent":null,"inputs":{"custom_block":[1,"h7"]},"fields":{},"shadow":false,"topLevel":true,"x":26081,"y":1017},"h7":{"opcode":"procedures_prototype","next":null,"parent":"aI{","inputs":{"Ij5L0EoK[dEU2EHQyWn_":[1,"blO"],"Li5iN0Xzw0VOJrc[sWQ5":[1,"blP"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RL/RR %s | %s","argumentids":"[\"Ij5L0EoK[dEU2EHQyWn_\",\"Li5iN0Xzw0VOJrc[sWQ5\"]","argumentnames":"[\"r1\",\"d1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"blO":{"opcode":"argument_reporter_string_number","next":null,"parent":"h7","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"blP":{"opcode":"argument_reporter_string_number","next":null,"parent":"h7","inputs":{},"fields":{"VALUE":["d1",null]},"shadow":true,"topLevel":false},"h6":{"opcode":"data_setvariableto","next":"Ch","parent":"aI{","inputs":{"VALUE":[3,"Ci",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Ci":{"opcode":"data_itemoflist","next":null,"parent":"h6","inputs":{"INDEX":[3,"blQ",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"blQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ci","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Ch":{"opcode":"data_replaceitemoflist","next":"Cj","parent":"h6","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Cj":{"opcode":"data_replaceitemoflist","next":"t","parent":"Ch","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"t":{"opcode":"control_if_else","next":"h8","parent":"Cj","inputs":{"CONDITION":[2,"pp"],"SUBSTACK":[2,"h9"],"SUBSTACK2":[2,"h!"]},"fields":{},"shadow":false,"topLevel":false},"pp":{"opcode":"operator_equals","next":null,"parent":"t","inputs":{"OPERAND1":[3,"blR",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"blR":{"opcode":"argument_reporter_string_number","next":null,"parent":"pp","inputs":{},"fields":{"VALUE":["d1",null]},"shadow":false,"topLevel":false},"h9":{"opcode":"data_setvariableto","next":"Ck","parent":"t","inputs":{"VALUE":[3,"h#",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"h#":{"opcode":"operator_add","next":null,"parent":"h9","inputs":{"NUM1":[3,"blS",[4,0]],"NUM2":[3,"blT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blS":{"opcode":"operator_multiply","next":null,"parent":"h#","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"blT":{"opcode":"data_itemoflist","next":null,"parent":"h#","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Ck":{"opcode":"data_replaceitemoflist","next":null,"parent":"h9","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Cl",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Cl":{"opcode":"operator_add","next":null,"parent":"Ck","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"blU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blU":{"opcode":"operator_gt","next":null,"parent":"Cl","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"h!":{"opcode":"data_setvariableto","next":"h%","parent":"t","inputs":{"VALUE":[3,"blV",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"blV":{"opcode":"data_itemoflist","next":null,"parent":"h!","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"h%":{"opcode":"data_replaceitemoflist","next":"Cm","parent":"h!","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"blW",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"blW":{"opcode":"operator_mod","next":null,"parent":"h%","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cm":{"opcode":"data_setvariableto","next":null,"parent":"h%","inputs":{"VALUE":[3,"h(",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"h(":{"opcode":"operator_add","next":null,"parent":"Cm","inputs":{"NUM1":[3,"aI|",[4,0]],"NUM2":[3,"blX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aI|":{"opcode":"operator_mathop","next":null,"parent":"h(","inputs":{"NUM":[3,"blY",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blY":{"opcode":"operator_divide","next":null,"parent":"aI|","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"blX":{"opcode":"operator_multiply","next":null,"parent":"h(","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"h8":{"opcode":"data_setvariableto","next":"h)","parent":"t","inputs":{"VALUE":[3,"blZ",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"blZ":{"opcode":"operator_mod","next":null,"parent":"h8","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"h)":{"opcode":"data_replaceitemoflist","next":"Cn","parent":"h8","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"Co",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Co":{"opcode":"operator_add","next":null,"parent":"h)","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"bl0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bl0":{"opcode":"operator_equals","next":null,"parent":"Co","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Cn":{"opcode":"data_replaceitemoflist","next":null,"parent":"h)","inputs":{"INDEX":[3,"bl1",[7,0]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bl1":{"opcode":"argument_reporter_string_number","next":null,"parent":"Cn","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Cp":{"opcode":"procedures_definition","next":"rH","parent":null,"inputs":{"custom_block":[1,"h*"]},"fields":{},"shadow":false,"topLevel":true,"x":12071,"y":64},"h*":{"opcode":"procedures_prototype","next":null,"parent":"Cp","inputs":{"|F6hOiv9ai}5$aVHzu_?":[1,"bl2"],"fSwjMd,fS.s=5?qsO+){":[1,"bl3"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD ZRAM %s %s","argumentids":"[\"|F6hOiv9ai}5$aVHzu_?\",\"fSwjMd,fS.s=5?qsO+){\"]","argumentnames":"[\"p1\",\"p2\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bl2":{"opcode":"argument_reporter_string_number","next":null,"parent":"h*","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"bl3":{"opcode":"argument_reporter_string_number","next":null,"parent":"h*","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":true,"topLevel":false},"rH":{"opcode":"data_setvariableto","next":"F","parent":"Cp","inputs":{"VALUE":[1,[10,"0xFF00"]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"F":{"opcode":"control_if_else","next":"rJ","parent":"rH","inputs":{"CONDITION":[2,"qw"],"SUBSTACK":[2,"q("],"SUBSTACK2":[2,"pq"]},"fields":{},"shadow":false,"topLevel":false},"qw":{"opcode":"operator_equals","next":null,"parent":"F","inputs":{"OPERAND1":[3,"bl4",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"bl4":{"opcode":"argument_reporter_string_number","next":null,"parent":"qw","inputs":{},"fields":{"VALUE":["p2",null]},"shadow":false,"topLevel":false},"q(":{"opcode":"procedures_call","next":"Cq","parent":"F","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Cq":{"opcode":"procedures_call","next":"Cr","parent":"q(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"Cr":{"opcode":"data_changevariableby","next":null,"parent":"Cq","inputs":{"VALUE":[3,"bl5",[4,0]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"bl5":{"opcode":"data_itemoflist","next":null,"parent":"Cr","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"pq":{"opcode":"data_changevariableby","next":null,"parent":"F","inputs":{"VALUE":[3,"bl6",[4,0]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"bl6":{"opcode":"data_itemoflist","next":null,"parent":"pq","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"rJ":{"opcode":"procedures_call","next":"bX","parent":"F","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"bX":{"opcode":"control_if_else","next":null,"parent":"rJ","inputs":{"CONDITION":[2,"Cs"],"SUBSTACK":[2,"Ct"],"SUBSTACK2":[2,"B7"]},"fields":{},"shadow":false,"topLevel":false},"Cs":{"opcode":"operator_equals","next":null,"parent":"bX","inputs":{"OPERAND1":[3,"bl7",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bl7":{"opcode":"argument_reporter_string_number","next":null,"parent":"Cs","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"Ct":{"opcode":"procedures_call","next":null,"parent":"bX","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"bl8",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"bl8":{"opcode":"data_itemoflist","next":null,"parent":"Ct","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"B8":{"opcode":"procedures_definition","next":"B9","parent":null,"inputs":{"custom_block":[1,"B!"]},"fields":{},"shadow":false,"topLevel":true,"x":25015,"y":840},"B!":{"opcode":"procedures_prototype","next":null,"parent":"B8","inputs":{"yp9WQq76j}/fOta]pXbu":[1,"bl9"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDU16 %s","argumentids":"[\"yp9WQq76j}/fOta]pXbu\"]","argumentnames":"[\"p1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bl9":{"opcode":"argument_reporter_string_number","next":null,"parent":"B!","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"B9":{"opcode":"procedures_call","next":"B#","parent":"B8","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"B#":{"opcode":"procedures_call","next":"B%","parent":"B9","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"B%":{"opcode":"procedures_call","next":"B(","parent":"B#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"B(":{"opcode":"procedures_call","next":"B)","parent":"B%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"B-":{"opcode":"procedures_definition","next":"B.","parent":null,"inputs":{"custom_block":[1,"B/"]},"fields":{},"shadow":false,"topLevel":true,"x":25015,"y":64},"B/":{"opcode":"procedures_prototype","next":null,"parent":"B-","inputs":{"X=^YhHSUx1p27dRVvTfr":[1,"Hv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADDSPI8/LDHLSP+I8 %s","argumentids":"[\"X=^YhHSUx1p27dRVvTfr\"]","argumentnames":"[\"p1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"Hv":{"opcode":"argument_reporter_string_number","next":null,"parent":"B/","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"B.":{"opcode":"data_replaceitemoflist","next":"B:","parent":"B-","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"B:":{"opcode":"data_replaceitemoflist","next":"B;","parent":"B.","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"B;":{"opcode":"procedures_call","next":"B=","parent":"B:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"B=":{"opcode":"procedures_call","next":"h/","parent":"B;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"h/":{"opcode":"data_setvariableto","next":"h:","parent":"B=","inputs":{"VALUE":[3,"h;",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"h;":{"opcode":"operator_subtract","next":null,"parent":"h/","inputs":{"NUM1":[3,"Hw",[4,0]],"NUM2":[3,"B?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hw":{"opcode":"data_itemoflist","next":null,"parent":"h;","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"B?":{"opcode":"operator_multiply","next":null,"parent":"h;","inputs":{"NUM1":[3,"B@",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"B@":{"opcode":"operator_gt","next":null,"parent":"B?","inputs":{"OPERAND1":[3,"Hx",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Hx":{"opcode":"data_itemoflist","next":null,"parent":"B@","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"h:":{"opcode":"data_replaceitemoflist","next":"h=","parent":"h/","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"B[",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"B[":{"opcode":"operator_add","next":null,"parent":"h:","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Cu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Cu":{"opcode":"operator_gt","next":null,"parent":"B[","inputs":{"OPERAND1":[3,"Cv",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Cv":{"opcode":"operator_mod","next":null,"parent":"Cu","inputs":{"NUM1":[3,"h?",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"h?":{"opcode":"operator_add","next":null,"parent":"Cv","inputs":{"NUM1":[3,"Hy",[4,0]],"NUM2":[3,"Hz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Hy":{"opcode":"operator_mod","next":null,"parent":"h?","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Hz":{"opcode":"operator_mod","next":null,"parent":"h?","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"h=":{"opcode":"data_replaceitemoflist","next":"Cw","parent":"h:","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Cx",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Cx":{"opcode":"operator_add","next":null,"parent":"h=","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Cy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Cy":{"opcode":"operator_gt","next":null,"parent":"Cx","inputs":{"OPERAND1":[3,"Cz",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Cz":{"opcode":"operator_mod","next":null,"parent":"Cy","inputs":{"NUM1":[3,"h@",[4,0]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"h@":{"opcode":"operator_add","next":null,"parent":"Cz","inputs":{"NUM1":[3,"HA",[4,0]],"NUM2":[3,"HB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"HA":{"opcode":"operator_mod","next":null,"parent":"h@","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"HB":{"opcode":"operator_mod","next":null,"parent":"h@","inputs":{"NUM1":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Cw":{"opcode":"procedures_call","next":"}","parent":"h=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"CA":{"opcode":"procedures_definition","next":"bW","parent":null,"inputs":{"custom_block":[1,"HC"]},"fields":{},"shadow":false,"topLevel":true,"x":37580,"y":660},"HC":{"opcode":"procedures_prototype","next":null,"parent":"CA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~DAA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"bW":{"opcode":"control_if_else","next":"h[","parent":"CA","inputs":{"CONDITION":[2,"HD"],"SUBSTACK":[2,"~"],"SUBSTACK2":[2,"aa"]},"fields":{},"shadow":false,"topLevel":false},"HD":{"opcode":"data_itemoflist","next":null,"parent":"bW","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"~":{"opcode":"control_if","next":"h]","parent":"bW","inputs":{"CONDITION":[2,"HE"],"SUBSTACK":[2,"CB"]},"fields":{},"shadow":false,"topLevel":false},"HE":{"opcode":"data_itemoflist","next":null,"parent":"~","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CB":{"opcode":"data_replaceitemoflist","next":null,"parent":"~","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CC",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CC":{"opcode":"operator_subtract","next":null,"parent":"CB","inputs":{"NUM1":[3,"HF",[4,0]],"NUM2":[1,[4,"96"]]},"fields":{},"shadow":false,"topLevel":false},"HF":{"opcode":"data_itemoflist","next":null,"parent":"CC","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"h]":{"opcode":"control_if","next":null,"parent":"~","inputs":{"CONDITION":[2,"HG"],"SUBSTACK":[2,"CD"]},"fields":{},"shadow":false,"topLevel":false},"HG":{"opcode":"data_itemoflist","next":null,"parent":"h]","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CD":{"opcode":"data_replaceitemoflist","next":null,"parent":"h]","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CE",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CE":{"opcode":"operator_subtract","next":null,"parent":"CD","inputs":{"NUM1":[3,"HH",[4,0]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"HH":{"opcode":"data_itemoflist","next":null,"parent":"CE","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"aa":{"opcode":"control_if","next":"h^","parent":"bW","inputs":{"CONDITION":[2,"h_"],"SUBSTACK":[2,"h`"]},"fields":{},"shadow":false,"topLevel":false},"h_":{"opcode":"operator_or","next":null,"parent":"aa","inputs":{"OPERAND1":[2,"HI"],"OPERAND2":[2,"CF"]},"fields":{},"shadow":false,"topLevel":false},"HI":{"opcode":"data_itemoflist","next":null,"parent":"h_","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CF":{"opcode":"operator_gt","next":null,"parent":"h_","inputs":{"OPERAND1":[3,"HJ",[10,""]],"OPERAND2":[1,[10,"0x99"]]},"fields":{},"shadow":false,"topLevel":false},"HJ":{"opcode":"data_itemoflist","next":null,"parent":"CF","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"h`":{"opcode":"data_replaceitemoflist","next":"HK","parent":"aa","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CG",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CG":{"opcode":"operator_add","next":null,"parent":"h`","inputs":{"NUM1":[3,"HL",[4,0]],"NUM2":[1,[4,"96"]]},"fields":{},"shadow":false,"topLevel":false},"HL":{"opcode":"data_itemoflist","next":null,"parent":"CG","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"HK":{"opcode":"data_replaceitemoflist","next":null,"parent":"h`","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"h^":{"opcode":"control_if","next":null,"parent":"aa","inputs":{"CONDITION":[2,"h{"],"SUBSTACK":[2,"CH"]},"fields":{},"shadow":false,"topLevel":false},"h{":{"opcode":"operator_or","next":null,"parent":"h^","inputs":{"OPERAND1":[2,"HM"],"OPERAND2":[2,"CI"]},"fields":{},"shadow":false,"topLevel":false},"HM":{"opcode":"data_itemoflist","next":null,"parent":"h{","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CI":{"opcode":"operator_gt","next":null,"parent":"h{","inputs":{"OPERAND1":[3,"CJ",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"CJ":{"opcode":"operator_mod","next":null,"parent":"CI","inputs":{"NUM1":[3,"HN",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"HN":{"opcode":"data_itemoflist","next":null,"parent":"CJ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CH":{"opcode":"data_replaceitemoflist","next":null,"parent":"h^","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CK",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CK":{"opcode":"operator_add","next":null,"parent":"CH","inputs":{"NUM1":[3,"HO",[4,0]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"HO":{"opcode":"data_itemoflist","next":null,"parent":"CK","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"h[":{"opcode":"data_replaceitemoflist","next":"CL","parent":"bW","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CM",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CM":{"opcode":"operator_mod","next":null,"parent":"h[","inputs":{"NUM1":[3,"HP",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"HP":{"opcode":"data_itemoflist","next":null,"parent":"CM","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CL":{"opcode":"data_replaceitemoflist","next":"CN","parent":"h[","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CN":{"opcode":"data_replaceitemoflist","next":null,"parent":"CL","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"CO",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"CO":{"opcode":"operator_add","next":null,"parent":"CN","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"CP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"CP":{"opcode":"operator_equals","next":null,"parent":"CO","inputs":{"OPERAND1":[3,"HQ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"HQ":{"opcode":"data_itemoflist","next":null,"parent":"CP","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CQ":{"opcode":"procedures_definition","next":"CR","parent":null,"inputs":{"custom_block":[1,"HR"]},"fields":{},"shadow":false,"topLevel":true,"x":32993,"y":564},"HR":{"opcode":"procedures_prototype","next":null,"parent":"CQ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CB prefixed","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"CR":{"opcode":"procedures_call","next":"CS","parent":"CQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"CS":{"opcode":"procedures_call","next":"h|","parent":"CR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"h|":{"opcode":"data_setvariableto","next":"h}","parent":"CS","inputs":{"VALUE":[3,"HS",[10,""]]},"fields":{"VARIABLE":["T7","d{oa^`AGe`;eIR$H[7uf"]},"shadow":false,"topLevel":false},"HS":{"opcode":"data_itemoflist","next":null,"parent":"h|","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"h}":{"opcode":"data_setvariableto","next":"bP","parent":"h|","inputs":{"VALUE":[3,"HT",[10,""]]},"fields":{"VARIABLE":["T8","VR1C#;_dshr98xN-P9L|"]},"shadow":false,"topLevel":false},"HT":{"opcode":"operator_mod","next":null,"parent":"h}","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bP":{"opcode":"control_if_else","next":"CT","parent":"h}","inputs":{"CONDITION":[2,"HU"],"SUBSTACK":[2,"h~"],"SUBSTACK2":[2,"CU"]},"fields":{},"shadow":false,"topLevel":false},"HU":{"opcode":"operator_equals","next":null,"parent":"bP","inputs":{"OPERAND1":[3,[12,"T8","VR1C#;_dshr98xN-P9L|"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"h~":{"opcode":"data_setvariableto","next":"CV","parent":"bP","inputs":{"VALUE":[3,"ia",[10,""]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"ia":{"opcode":"operator_add","next":null,"parent":"h~","inputs":{"NUM1":[3,"CW",[4,0]],"NUM2":[3,"HV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"CW":{"opcode":"operator_multiply","next":null,"parent":"ia","inputs":{"NUM1":[3,"HW",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"HW":{"opcode":"data_itemoflist","next":null,"parent":"CW","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"HV":{"opcode":"data_itemoflist","next":null,"parent":"ia","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CV":{"opcode":"procedures_call","next":"CX","parent":"h~","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_R",";E?SYI/y0cz0le)X4#4l"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"CX":{"opcode":"data_setvariableto","next":"HX","parent":"CV","inputs":{"VALUE":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"HX":{"opcode":"procedures_call","next":null,"parent":"CX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"CU":{"opcode":"data_setvariableto","next":null,"parent":"bP","inputs":{"VALUE":[3,"CY",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"CY":{"opcode":"data_itemoflist","next":null,"parent":"CU","inputs":{"INDEX":[3,"CZ",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"CZ":{"opcode":"operator_letter_of","next":null,"parent":"CY","inputs":{"LETTER":[3,"HY",[6,0]],"STRING":[1,[10,"23457891"]]},"fields":{},"shadow":false,"topLevel":false},"HY":{"opcode":"operator_add","next":null,"parent":"CZ","inputs":{"NUM1":[3,[12,"T8","VR1C#;_dshr98xN-P9L|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"CT":{"opcode":"data_replaceitemoflist","next":"bQ","parent":"bP","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"bQ":{"opcode":"control_if_else","next":"ab","parent":"CT","inputs":{"CONDITION":[2,"HZ"],"SUBSTACK":[2,"ac"],"SUBSTACK2":[2,"ah"]},"fields":{},"shadow":false,"topLevel":false},"HZ":{"opcode":"operator_lt","next":null,"parent":"bQ","inputs":{"OPERAND1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ac":{"opcode":"control_if_else","next":null,"parent":"bQ","inputs":{"CONDITION":[2,"H0"],"SUBSTACK":[2,"bS"],"SUBSTACK2":[2,"ib"]},"fields":{},"shadow":false,"topLevel":false},"H0":{"opcode":"operator_lt","next":null,"parent":"ac","inputs":{"OPERAND1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bS":{"opcode":"control_if_else","next":"C0","parent":"ac","inputs":{"CONDITION":[2,"H1"],"SUBSTACK":[2,"ae"],"SUBSTACK2":[2,"ag"]},"fields":{},"shadow":false,"topLevel":false},"H1":{"opcode":"operator_lt","next":null,"parent":"bS","inputs":{"OPERAND1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"control_if_else","next":null,"parent":"bS","inputs":{"CONDITION":[2,"H2"],"SUBSTACK":[2,"C1"],"SUBSTACK2":[2,"C2"]},"fields":{},"shadow":false,"topLevel":false},"H2":{"opcode":"operator_lt","next":null,"parent":"ae","inputs":{"OPERAND1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"C1":{"opcode":"procedures_call","next":null,"parent":"ae","inputs":{"b*:RzA0o$VB8NT@~v;Ll":[1,[10,"9"]],"[mtpQRJClj0F%g2|_4+W":[3,"C3",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLC/RRC %s | %s","argumentids":"[\"b*:RzA0o$VB8NT@~v;Ll\",\"[mtpQRJClj0F%g2|_4+W\"]","warp":"true"}},"C3":{"opcode":"operator_mathop","next":null,"parent":"C1","inputs":{"NUM":[3,"C4",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C4":{"opcode":"operator_divide","next":null,"parent":"C3","inputs":{"NUM1":[3,"H3",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H3":{"opcode":"operator_mod","next":null,"parent":"C4","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"C2":{"opcode":"procedures_call","next":null,"parent":"ae","inputs":{"Ij5L0EoK[dEU2EHQyWn_":[1,[10,"9"]],"Li5iN0Xzw0VOJrc[sWQ5":[3,"C5",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RL/RR %s | %s","argumentids":"[\"Ij5L0EoK[dEU2EHQyWn_\",\"Li5iN0Xzw0VOJrc[sWQ5\"]","warp":"true"}},"C5":{"opcode":"operator_mathop","next":null,"parent":"C2","inputs":{"NUM":[3,"C6",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C6":{"opcode":"operator_divide","next":null,"parent":"C5","inputs":{"NUM1":[3,"H4",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H4":{"opcode":"operator_mod","next":null,"parent":"C6","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ag":{"opcode":"control_if_else","next":null,"parent":"bS","inputs":{"CONDITION":[2,"H5"],"SUBSTACK":[2,"C7"],"SUBSTACK2":[2,"C8"]},"fields":{},"shadow":false,"topLevel":false},"H5":{"opcode":"operator_lt","next":null,"parent":"ag","inputs":{"OPERAND1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},"C7":{"opcode":"procedures_call","next":null,"parent":"ag","inputs":{"6J`!,i4.0f-r!!US^Q+|":[1,[10,"9"]],"4.J/++HL*E$}vvkQj$k5":[3,"C9",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SLA/SRA %s | %s","argumentids":"[\"6J`!,i4.0f-r!!US^Q+|\",\"4.J/++HL*E$}vvkQj$k5\"]","warp":"true"}},"C9":{"opcode":"operator_mathop","next":null,"parent":"C7","inputs":{"NUM":[3,"C!",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C!":{"opcode":"operator_divide","next":null,"parent":"C9","inputs":{"NUM1":[3,"H6",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H6":{"opcode":"operator_mod","next":null,"parent":"C!","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"C8":{"opcode":"procedures_call","next":null,"parent":"ag","inputs":{"N{^;4hedP7R`05%@$tl%":[1,[10,"9"]],"}?,_-/t2w.!{,W1bY!*4":[3,"C#",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SWAP/SRL %s | %s","argumentids":"[\"N{^;4hedP7R`05%@$tl%\",\"}?,_-/t2w.!{,W1bY!*4\"]","warp":"true"}},"C#":{"opcode":"operator_mathop","next":null,"parent":"C8","inputs":{"NUM":[3,"C%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C%":{"opcode":"operator_divide","next":null,"parent":"C#","inputs":{"NUM1":[3,"H7",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H7":{"opcode":"operator_mod","next":null,"parent":"C%","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"C0":{"opcode":"data_setvariableto","next":null,"parent":"bS","inputs":{"VALUE":[3,"H8",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"H8":{"opcode":"data_itemoflist","next":null,"parent":"C0","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"ib":{"opcode":"data_replaceitemoflist","next":"C(","parent":"ac","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"C)",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"C)":{"opcode":"operator_add","next":null,"parent":"ib","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"C*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"C*":{"opcode":"operator_equals","next":null,"parent":"C)","inputs":{"OPERAND1":[3,"C+",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"C+":{"opcode":"operator_mod","next":null,"parent":"C*","inputs":{"NUM1":[3,"C,",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"C,":{"opcode":"operator_mathop","next":null,"parent":"C+","inputs":{"NUM":[3,"ic",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ic":{"opcode":"operator_divide","next":null,"parent":"C,","inputs":{"NUM1":[3,"H9",[4,0]],"NUM2":[3,"C-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H9":{"opcode":"data_itemoflist","next":null,"parent":"ic","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"C-":{"opcode":"data_itemoflist","next":null,"parent":"ic","inputs":{"INDEX":[3,"C.",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"C.":{"opcode":"operator_add","next":null,"parent":"C-","inputs":{"NUM1":[3,"C/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C/":{"opcode":"operator_mathop","next":null,"parent":"C.","inputs":{"NUM":[3,"C:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C:":{"opcode":"operator_divide","next":null,"parent":"C/","inputs":{"NUM1":[3,"H!",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H!":{"opcode":"operator_mod","next":null,"parent":"C:","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"C(":{"opcode":"data_replaceitemoflist","next":"C;","parent":"ib","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"C;":{"opcode":"data_replaceitemoflist","next":"H#","parent":"C(","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"H#":{"opcode":"control_stop","next":null,"parent":"C;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ah":{"opcode":"procedures_call","next":null,"parent":"bQ","inputs":{"p.W2z1`Rlkajw{[guAjx":[3,"C=",[10,""]],"@QE_.PNN=VD]55Q*08eg":[3,"H%",[10,""]],".l0tZ#)A5%:X~dc=bb0~":[3,"C?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~set bit %s of %s to %s","argumentids":"[\"p.W2z1`Rlkajw{[guAjx\",\"@QE_.PNN=VD]55Q*08eg\",\".l0tZ#)A5%:X~dc=bb0~\"]","warp":"true"}},"C=":{"opcode":"operator_mathop","next":null,"parent":"ah","inputs":{"NUM":[3,"C@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C@":{"opcode":"operator_divide","next":null,"parent":"C=","inputs":{"NUM1":[3,"H(",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"H(":{"opcode":"operator_mod","next":null,"parent":"C@","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"H%":{"opcode":"data_itemoflist","next":null,"parent":"ah","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"C?":{"opcode":"operator_mathop","next":null,"parent":"ah","inputs":{"NUM":[3,"C|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C|":{"opcode":"operator_divide","next":null,"parent":"C?","inputs":{"NUM1":[3,"H)",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"H)":{"opcode":"operator_mod","next":null,"parent":"C|","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ab":{"opcode":"control_if_else","next":null,"parent":"bQ","inputs":{"CONDITION":[2,"H*"],"SUBSTACK":[2,"C`"],"SUBSTACK2":[2,"C^"]},"fields":{},"shadow":false,"topLevel":false},"H*":{"opcode":"operator_equals","next":null,"parent":"ab","inputs":{"OPERAND1":[3,[12,"T8","VR1C#;_dshr98xN-P9L|"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"C`":{"opcode":"procedures_call","next":"H+","parent":"ab","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_R",";E?SYI/y0cz0le)X4#4l"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"H+":{"opcode":"procedures_call","next":null,"parent":"C`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"C^":{"opcode":"data_replaceitemoflist","next":null,"parent":"ab","inputs":{"INDEX":[3,"C_",[7,0]],"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"C_":{"opcode":"operator_letter_of","next":null,"parent":"C^","inputs":{"LETTER":[3,"H,",[6,0]],"STRING":[1,[10,"23457891"]]},"fields":{},"shadow":false,"topLevel":false},"H,":{"opcode":"operator_add","next":null,"parent":"C_","inputs":{"NUM1":[3,[12,"T8","VR1C#;_dshr98xN-P9L|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C{":{"opcode":"procedures_definition","next":"aI}","parent":null,"inputs":{"custom_block":[1,"ad"]},"fields":{},"shadow":false,"topLevel":true,"x":34648,"y":64},"ad":{"opcode":"procedures_prototype","next":null,"parent":"C{","inputs":{"p.W2z1`Rlkajw{[guAjx":[1,"H-"],"@QE_.PNN=VD]55Q*08eg":[1,"H."],".l0tZ#)A5%:X~dc=bb0~":[1,"H/"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~set bit %s of %s to %s","argumentids":"[\"p.W2z1`Rlkajw{[guAjx\",\"@QE_.PNN=VD]55Q*08eg\",\".l0tZ#)A5%:X~dc=bb0~\"]","argumentnames":"[\"x\",\"n\",\"b\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"H-":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"H.":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"H/":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"aI}":{"opcode":"data_setvariableto","next":null,"parent":"C{","inputs":{"VALUE":[3,"id",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"id":{"opcode":"operator_add","next":null,"parent":"aI}","inputs":{"NUM1":[3,"ie",[4,0]],"NUM2":[3,"if",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ie":{"opcode":"operator_subtract","next":null,"parent":"id","inputs":{"NUM1":[3,"H:",[4,0]],"NUM2":[3,"ig",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H:":{"opcode":"argument_reporter_string_number","next":null,"parent":"ie","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"ig":{"opcode":"operator_mod","next":null,"parent":"ie","inputs":{"NUM1":[3,"H;",[4,0]],"NUM2":[3,"C}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H;":{"opcode":"argument_reporter_string_number","next":null,"parent":"ig","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"C}":{"opcode":"data_itemoflist","next":null,"parent":"ig","inputs":{"INDEX":[3,"C~",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"C~":{"opcode":"operator_add","next":null,"parent":"C}","inputs":{"NUM1":[3,"H=",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"H=":{"opcode":"argument_reporter_string_number","next":null,"parent":"C~","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"if":{"opcode":"operator_add","next":null,"parent":"id","inputs":{"NUM1":[3,"ih",[4,0]],"NUM2":[3,"ii",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ih":{"opcode":"operator_multiply","next":null,"parent":"if","inputs":{"NUM1":[3,"H?",[4,0]],"NUM2":[3,"Da",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H?":{"opcode":"argument_reporter_string_number","next":null,"parent":"ih","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"Da":{"opcode":"data_itemoflist","next":null,"parent":"ih","inputs":{"INDEX":[3,"Db",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"Db":{"opcode":"operator_add","next":null,"parent":"Da","inputs":{"NUM1":[3,"H@",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"H@":{"opcode":"argument_reporter_string_number","next":null,"parent":"Db","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ii":{"opcode":"operator_mod","next":null,"parent":"if","inputs":{"NUM1":[3,"H[",[4,0]],"NUM2":[3,"Dc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ii","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"Dc":{"opcode":"data_itemoflist","next":null,"parent":"ii","inputs":{"INDEX":[3,"Dd",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"Dd":{"opcode":"operator_add","next":null,"parent":"Dc","inputs":{"NUM1":[3,"H]",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"H]":{"opcode":"argument_reporter_string_number","next":null,"parent":"Dd","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"De":{"opcode":"procedures_definition","next":"ij","parent":null,"inputs":{"custom_block":[1,"ik"]},"fields":{},"shadow":false,"topLevel":true,"x":38501,"y":64},"ik":{"opcode":"procedures_prototype","next":null,"parent":"De","inputs":{"6J`!,i4.0f-r!!US^Q+|":[1,"H^"],"4.J/++HL*E$}vvkQj$k5":[1,"H_"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SLA/SRA %s | %s","argumentids":"[\"6J`!,i4.0f-r!!US^Q+|\",\"4.J/++HL*E$}vvkQj$k5\"]","argumentnames":"[\"r1\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"H^":{"opcode":"argument_reporter_string_number","next":null,"parent":"ik","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"H_":{"opcode":"argument_reporter_string_number","next":null,"parent":"ik","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"ij":{"opcode":"data_setvariableto","next":"w","parent":"De","inputs":{"VALUE":[3,"Df",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Df":{"opcode":"data_itemoflist","next":null,"parent":"ij","inputs":{"INDEX":[3,"H`",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"H`":{"opcode":"argument_reporter_string_number","next":null,"parent":"Df","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"w":{"opcode":"control_if_else","next":"Dg","parent":"ij","inputs":{"CONDITION":[2,"Dh"],"SUBSTACK":[2,"il"],"SUBSTACK2":[2,"im"]},"fields":{},"shadow":false,"topLevel":false},"Dh":{"opcode":"operator_equals","next":null,"parent":"w","inputs":{"OPERAND1":[3,"H{",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"H{":{"opcode":"argument_reporter_string_number","next":null,"parent":"Dh","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"il":{"opcode":"data_setvariableto","next":"in","parent":"w","inputs":{"VALUE":[3,"H|",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"H|":{"opcode":"operator_multiply","next":null,"parent":"il","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"in":{"opcode":"data_replaceitemoflist","next":"Di","parent":"il","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"C[",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"C[":{"opcode":"operator_add","next":null,"parent":"in","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"H}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"H}":{"opcode":"operator_gt","next":null,"parent":"C[","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Di":{"opcode":"data_setvariableto","next":null,"parent":"in","inputs":{"VALUE":[3,"H~",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"H~":{"opcode":"operator_mod","next":null,"parent":"Di","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"im":{"opcode":"data_replaceitemoflist","next":"Dj","parent":"w","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Ia",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Ia":{"opcode":"operator_mod","next":null,"parent":"im","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Dj":{"opcode":"data_setvariableto","next":null,"parent":"im","inputs":{"VALUE":[3,"C]",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"C]":{"opcode":"operator_mod","next":null,"parent":"Dj","inputs":{"NUM1":[3,"io",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"io":{"opcode":"operator_add","next":null,"parent":"C]","inputs":{"NUM1":[3,"Dk",[4,0]],"NUM2":[3,"Dl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Dk":{"opcode":"operator_mathop","next":null,"parent":"io","inputs":{"NUM":[3,"Ib",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ib":{"opcode":"operator_divide","next":null,"parent":"Dk","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Dl":{"opcode":"operator_multiply","next":null,"parent":"io","inputs":{"NUM1":[3,"Dm",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Dm":{"opcode":"operator_mathop","next":null,"parent":"Dl","inputs":{"NUM":[3,"Ic",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ic":{"opcode":"operator_divide","next":null,"parent":"Dm","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Dg":{"opcode":"data_replaceitemoflist","next":"Dn","parent":"w","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Dn":{"opcode":"data_replaceitemoflist","next":"ip","parent":"Dg","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"ip":{"opcode":"data_replaceitemoflist","next":"Do","parent":"Dn","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"Dp",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Dp":{"opcode":"operator_add","next":null,"parent":"ip","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Id",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Id":{"opcode":"operator_equals","next":null,"parent":"Dp","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Do":{"opcode":"data_replaceitemoflist","next":null,"parent":"ip","inputs":{"INDEX":[3,"Ie",[7,0]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Ie":{"opcode":"argument_reporter_string_number","next":null,"parent":"Do","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"Dq":{"opcode":"procedures_definition","next":"iq","parent":null,"inputs":{"custom_block":[1,"ir"]},"fields":{},"shadow":false,"topLevel":true,"x":37580,"y":64},"ir":{"opcode":"procedures_prototype","next":null,"parent":"Dq","inputs":{"N{^;4hedP7R`05%@$tl%":[1,"If"],"}?,_-/t2w.!{,W1bY!*4":[1,"Ig"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SWAP/SRL %s | %s","argumentids":"[\"N{^;4hedP7R`05%@$tl%\",\"}?,_-/t2w.!{,W1bY!*4\"]","argumentnames":"[\"r1\",\"p1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"If":{"opcode":"argument_reporter_string_number","next":null,"parent":"ir","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"Ig":{"opcode":"argument_reporter_string_number","next":null,"parent":"ir","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"iq":{"opcode":"data_setvariableto","next":"b-","parent":"Dq","inputs":{"VALUE":[3,"Dr",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Dr":{"opcode":"data_itemoflist","next":null,"parent":"iq","inputs":{"INDEX":[3,"Ih",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Ih":{"opcode":"argument_reporter_string_number","next":null,"parent":"Dr","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"b-":{"opcode":"control_if_else","next":"Ds","parent":"iq","inputs":{"CONDITION":[2,"Dt"],"SUBSTACK":[2,"Du"],"SUBSTACK2":[2,"is"]},"fields":{},"shadow":false,"topLevel":false},"Dt":{"opcode":"operator_equals","next":null,"parent":"b-","inputs":{"OPERAND1":[3,"Ii",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ii":{"opcode":"argument_reporter_string_number","next":null,"parent":"Dt","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"Du":{"opcode":"data_replaceitemoflist","next":"Dv","parent":"b-","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Dv":{"opcode":"data_setvariableto","next":null,"parent":"Du","inputs":{"VALUE":[3,"it",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"it":{"opcode":"operator_add","next":null,"parent":"Dv","inputs":{"NUM1":[3,"Dw",[4,0]],"NUM2":[3,"k0",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Dw":{"opcode":"operator_multiply","next":null,"parent":"it","inputs":{"NUM1":[3,"Ij",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ij":{"opcode":"operator_mod","next":null,"parent":"Dw","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"k0":{"opcode":"operator_mathop","next":null,"parent":"it","inputs":{"NUM":[3,"Ik",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ik":{"opcode":"operator_divide","next":null,"parent":"k0","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"is":{"opcode":"data_replaceitemoflist","next":"DA","parent":"b-","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Il",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"Il":{"opcode":"operator_mod","next":null,"parent":"is","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"DA":{"opcode":"data_setvariableto","next":null,"parent":"is","inputs":{"VALUE":[3,"DB",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"DB":{"opcode":"operator_mathop","next":null,"parent":"DA","inputs":{"NUM":[3,"Im",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Im":{"opcode":"operator_divide","next":null,"parent":"DB","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ds":{"opcode":"data_replaceitemoflist","next":"DC","parent":"b-","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"DC":{"opcode":"data_replaceitemoflist","next":"iu","parent":"Ds","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"iu":{"opcode":"data_replaceitemoflist","next":"DD","parent":"DC","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"DE",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"DE":{"opcode":"operator_add","next":null,"parent":"iu","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"In",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"In":{"opcode":"operator_equals","next":null,"parent":"DE","inputs":{"OPERAND1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DD":{"opcode":"data_replaceitemoflist","next":null,"parent":"iu","inputs":{"INDEX":[3,"Io",[7,0]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Io":{"opcode":"argument_reporter_string_number","next":null,"parent":"DD","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"DF":{"opcode":"procedures_definition","next":"DG","parent":null,"inputs":{"custom_block":[1,"ai"]},"fields":{},"shadow":false,"topLevel":true,"x":28474,"y":536},"ai":{"opcode":"procedures_prototype","next":null,"parent":"DF","inputs":{"b9,FAR+)1XQU-j}lW5c3":[1,"Ip"],"KbaPDp]E_:%a`/L^yWVZ":[1,"Iq"],"4h2#i,A#:{_PQDcO@tFG":[1,"Oq"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CALL %s %s | %s","argumentids":"[\"b9,FAR+)1XQU-j}lW5c3\",\"KbaPDp]E_:%a`/L^yWVZ\",\"4h2#i,A#:{_PQDcO@tFG\"]","argumentnames":"[\"c1\",\"c2\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"Ip":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":true,"topLevel":false},"Iq":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":true,"topLevel":false},"Oq":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"DG":{"opcode":"procedures_call","next":"DH","parent":"DF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"DH":{"opcode":"procedures_call","next":"DI","parent":"DG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"DI":{"opcode":"procedures_call","next":"DJ","parent":"DH","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"DJ":{"opcode":"procedures_call","next":"iv","parent":"DI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"iv":{"opcode":"control_if","next":null,"parent":"DJ","inputs":{"CONDITION":[2,"iw"],"SUBSTACK":[2,"aj"]},"fields":{},"shadow":false,"topLevel":false},"iw":{"opcode":"operator_or","next":null,"parent":"iv","inputs":{"OPERAND1":[2,"DK"],"OPERAND2":[2,"ix"]},"fields":{},"shadow":false,"topLevel":false},"DK":{"opcode":"operator_equals","next":null,"parent":"iw","inputs":{"OPERAND1":[3,"Ir",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ir":{"opcode":"argument_reporter_string_number","next":null,"parent":"DK","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"ix":{"opcode":"operator_equals","next":null,"parent":"iw","inputs":{"OPERAND1":[3,"DL",[10,""]],"OPERAND2":[3,"Is",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"DL":{"opcode":"data_itemoflist","next":null,"parent":"ix","inputs":{"INDEX":[3,"It",[7,0]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"It":{"opcode":"argument_reporter_string_number","next":null,"parent":"DL","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":false,"topLevel":false},"Is":{"opcode":"argument_reporter_string_number","next":null,"parent":"ix","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":false,"topLevel":false},"aj":{"opcode":"procedures_call","next":"DM","parent":"iv","inputs":{"C#nc~k`#)?@}yo`3}V^6":[3,"DN",[10,""]],"EV/=xEoSaXRhLZ:5@_C(":[3,"Iu",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH %s %s","argumentids":"[\"C#nc~k`#)?@}yo`3}V^6\",\"EV/=xEoSaXRhLZ:5@_C(\"]","warp":"true"}},"DN":{"opcode":"operator_mathop","next":null,"parent":"aj","inputs":{"NUM":[3,"Iv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Iv":{"opcode":"operator_divide","next":null,"parent":"DN","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Iu":{"opcode":"operator_mod","next":null,"parent":"aj","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"DM":{"opcode":"data_setvariableto","next":null,"parent":"aj","inputs":{"VALUE":[3,"iy",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"iy":{"opcode":"operator_add","next":null,"parent":"DM","inputs":{"NUM1":[3,"DO",[4,0]],"NUM2":[3,"Iw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"DO":{"opcode":"operator_multiply","next":null,"parent":"iy","inputs":{"NUM1":[3,"Ix",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ix":{"opcode":"data_itemoflist","next":null,"parent":"DO","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"Iw":{"opcode":"data_itemoflist","next":null,"parent":"iy","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"DP":{"opcode":"procedures_definition","next":"af","parent":null,"inputs":{"custom_block":[1,"an"]},"fields":{},"shadow":false,"topLevel":true,"x":26085,"y":552},"an":{"opcode":"procedures_prototype","next":null,"parent":"DP","inputs":{"]gCAsPo;eb6GzlE#b:WP":[1,"Iy"],"p}NHw^s%NZj$`#XD:16,":[1,"Iz"],"lr}7SZC6C!t(]D)DVe0|":[1,"IA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RET %s %s | %s","argumentids":"[\"]gCAsPo;eb6GzlE#b:WP\",\"p}NHw^s%NZj$`#XD:16,\",\"lr}7SZC6C!t(]D)DVe0|\"]","argumentnames":"[\"c1\",\"c2\",\"p1\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"Iy":{"opcode":"argument_reporter_string_number","next":null,"parent":"an","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":true,"topLevel":false},"Iz":{"opcode":"argument_reporter_string_number","next":null,"parent":"an","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":true,"topLevel":false},"IA":{"opcode":"argument_reporter_string_number","next":null,"parent":"an","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":true,"topLevel":false},"af":{"opcode":"control_if","next":"ak","parent":"DP","inputs":{"CONDITION":[2,"iz"],"SUBSTACK":[2,"am"]},"fields":{},"shadow":false,"topLevel":false},"iz":{"opcode":"operator_or","next":null,"parent":"af","inputs":{"OPERAND1":[2,"iA"],"OPERAND2":[2,"iB"]},"fields":{},"shadow":false,"topLevel":false},"iA":{"opcode":"operator_or","next":null,"parent":"iz","inputs":{"OPERAND1":[2,"DQ"],"OPERAND2":[2,"DR"]},"fields":{},"shadow":false,"topLevel":false},"DQ":{"opcode":"operator_equals","next":null,"parent":"iA","inputs":{"OPERAND1":[3,"Or",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Or":{"opcode":"argument_reporter_string_number","next":null,"parent":"DQ","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"DR":{"opcode":"operator_equals","next":null,"parent":"iA","inputs":{"OPERAND1":[3,"Os",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Os":{"opcode":"argument_reporter_string_number","next":null,"parent":"DR","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"iB":{"opcode":"operator_equals","next":null,"parent":"iz","inputs":{"OPERAND1":[3,"DS",[10,""]],"OPERAND2":[3,"IB",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"DS":{"opcode":"data_itemoflist","next":null,"parent":"iB","inputs":{"INDEX":[3,"IC",[7,0]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"IC":{"opcode":"argument_reporter_string_number","next":null,"parent":"DS","inputs":{},"fields":{"VALUE":["c1",null]},"shadow":false,"topLevel":false},"IB":{"opcode":"argument_reporter_string_number","next":null,"parent":"iB","inputs":{},"fields":{"VALUE":["c2",null]},"shadow":false,"topLevel":false},"am":{"opcode":"control_if","next":"DT","parent":"af","inputs":{"CONDITION":[2,"DU"],"SUBSTACK":[2,"Ot"]},"fields":{},"shadow":false,"topLevel":false},"DU":{"opcode":"operator_equals","next":null,"parent":"am","inputs":{"OPERAND1":[3,"Ou",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ou":{"opcode":"argument_reporter_string_number","next":null,"parent":"DU","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"Ot":{"opcode":"procedures_call","next":null,"parent":"am","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"DT":{"opcode":"procedures_call","next":"Ov","parent":"am","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~POP","argumentids":"[]","warp":"true"}},"Ov":{"opcode":"data_setvariableto","next":null,"parent":"DT","inputs":{"VALUE":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"ak":{"opcode":"control_if","next":"Ow","parent":"af","inputs":{"CONDITION":[2,"DV"],"SUBSTACK":[2,"ID"]},"fields":{},"shadow":false,"topLevel":false},"DV":{"opcode":"operator_equals","next":null,"parent":"ak","inputs":{"OPERAND1":[3,"IE",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"IE":{"opcode":"argument_reporter_string_number","next":null,"parent":"DV","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"ID":{"opcode":"data_setvariableto","next":null,"parent":"ak","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":[".IME","Yyq0n/?:tZ-1R{!(9E,I"]},"shadow":false,"topLevel":false},"Ow":{"opcode":"procedures_call","next":null,"parent":"ak","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"DW":{"opcode":"procedures_definition","next":"ao","parent":null,"inputs":{"custom_block":[1,"DX"]},"fields":{},"shadow":false,"topLevel":true,"x":26958,"y":64},"DX":{"opcode":"procedures_prototype","next":null,"parent":"DW","inputs":{"NHLwAsVd^!KmUZ#vT2C=":[1,"IF"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JPHL/LDSPHL %s","argumentids":"[\"NHLwAsVd^!KmUZ#vT2C=\"]","argumentnames":"[\"r1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"IF":{"opcode":"argument_reporter_string_number","next":null,"parent":"DX","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":true,"topLevel":false},"ao":{"opcode":"control_if_else","next":null,"parent":"DW","inputs":{"CONDITION":[2,"DY"],"SUBSTACK":[2,"DZ"],"SUBSTACK2":[2,"D0"]},"fields":{},"shadow":false,"topLevel":false},"DY":{"opcode":"operator_equals","next":null,"parent":"ao","inputs":{"OPERAND1":[3,"IG",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"IG":{"opcode":"argument_reporter_string_number","next":null,"parent":"DY","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"DZ":{"opcode":"data_setvariableto","next":null,"parent":"ao","inputs":{"VALUE":[3,"iC",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"iC":{"opcode":"operator_add","next":null,"parent":"DZ","inputs":{"NUM1":[3,"D1",[4,0]],"NUM2":[3,"IH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D1":{"opcode":"operator_multiply","next":null,"parent":"iC","inputs":{"NUM1":[3,"II",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"II":{"opcode":"data_itemoflist","next":null,"parent":"D1","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"IH":{"opcode":"data_itemoflist","next":null,"parent":"iC","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"D0":{"opcode":"procedures_call","next":"D2","parent":"ao","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"D2":{"opcode":"data_setvariableto","next":null,"parent":"D0","inputs":{"VALUE":[3,"iD",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"iD":{"opcode":"operator_add","next":null,"parent":"D2","inputs":{"NUM1":[3,"D3",[4,0]],"NUM2":[3,"IJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D3":{"opcode":"operator_multiply","next":null,"parent":"iD","inputs":{"NUM1":[3,"IK",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"IK":{"opcode":"data_itemoflist","next":null,"parent":"D3","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"IJ":{"opcode":"data_itemoflist","next":null,"parent":"iD","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"D4":{"opcode":"procedures_definition","next":"c(","parent":null,"inputs":{"custom_block":[1,"c)"]},"fields":{},"shadow":false,"topLevel":true,"x":58274,"y":64},"c)":{"opcode":"procedures_prototype","next":null,"parent":"D4","inputs":{"j~vf^2{,YZCCw2dLS{!:":[1,"IL"],"fRHPORE}/n8tXq4q^{~F":[1,"IM"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","argumentnames":"[\"b\",\"a\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"IL":{"opcode":"argument_reporter_string_number","next":null,"parent":"c)","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"IM":{"opcode":"argument_reporter_string_number","next":null,"parent":"c)","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"c(":{"opcode":"data_replaceitemoflist","next":null,"parent":"D4","inputs":{"INDEX":[3,"c!",[7,0]],"ITEM":[3,"IN",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"c!":{"opcode":"operator_add","next":null,"parent":"c(","inputs":{"NUM1":[3,"D5",[4,0]],"NUM2":[3,"D6",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D5":{"opcode":"data_itemoflist","next":null,"parent":"c!","inputs":{"INDEX":[3,"D7",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"D7":{"opcode":"data_itemoflist","next":null,"parent":"D5","inputs":{"INDEX":[3,"D8",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"D8":{"opcode":"operator_add","next":null,"parent":"D7","inputs":{"NUM1":[3,"IO",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IO":{"opcode":"argument_reporter_string_number","next":null,"parent":"D8","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"D6":{"opcode":"data_itemoflist","next":null,"parent":"c!","inputs":{"INDEX":[3,"D9",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"D9":{"opcode":"operator_add","next":null,"parent":"D6","inputs":{"NUM1":[3,"IP",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IP":{"opcode":"argument_reporter_string_number","next":null,"parent":"D9","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"IN":{"opcode":"argument_reporter_string_number","next":null,"parent":"c(","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"D!":{"opcode":"procedures_definition","next":"c#","parent":null,"inputs":{"custom_block":[1,"IQ"]},"fields":{},"shadow":false,"topLevel":true,"x":40939,"y":64},"IQ":{"opcode":"procedures_prototype","next":null,"parent":"D!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".loop","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"c#":{"opcode":"data_setvariableto","next":"D#","parent":"D!","inputs":{"VALUE":[3,"IR",[10,""]]},"fields":{"VARIABLE":["time2",")$_1A%[u4h%@g;$35$Xj"]},"shadow":false,"topLevel":false},"IR":{"opcode":"sensing_dayssince2000","next":null,"parent":"c#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D#":{"opcode":"procedures_call","next":"D`","parent":"c#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"__run cycles","argumentids":"[]","warp":"true"}},"D`":{"opcode":"data_changevariableby","next":null,"parent":"D#","inputs":{"VALUE":[3,"D%",[4,0]]},"fields":{"VARIABLE":["FPS","k_tzmxwQ^5),Egn!0L:3"]},"shadow":false,"topLevel":false},"D%":{"opcode":"operator_divide","next":null,"parent":"D`","inputs":{"NUM1":[3,"D(",[4,0]],"NUM2":[1,[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"D(":{"opcode":"operator_subtract","next":null,"parent":"D%","inputs":{"NUM1":[3,"D)",[4,0]],"NUM2":[3,[12,"FPS","k_tzmxwQ^5),Egn!0L:3"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D)":{"opcode":"operator_divide","next":null,"parent":"D(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"D*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"D*":{"opcode":"operator_multiply","next":null,"parent":"D)","inputs":{"NUM1":[3,"D+",[4,0]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"D+":{"opcode":"operator_subtract","next":null,"parent":"D*","inputs":{"NUM1":[3,"IS",[4,0]],"NUM2":[3,[12,"time2",")$_1A%[u4h%@g;$35$Xj"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"IS":{"opcode":"sensing_dayssince2000","next":null,"parent":"D+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D,":{"opcode":"procedures_definition","next":"D{","parent":null,"inputs":{"custom_block":[1,"IT"]},"fields":{},"shadow":false,"topLevel":true,"x":9593,"y":64},"IT":{"opcode":"procedures_prototype","next":null,"parent":"D,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get game title","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"D{":{"opcode":"data_deletealloflist","next":"D-","parent":"D,","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"D-":{"opcode":"data_setvariableto","next":"c%","parent":"D{","inputs":{"VALUE":[1,[10,"0x134"]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"c%":{"opcode":"control_repeat","next":"eE","parent":"D-","inputs":{"TIMES":[1,[6,"11"]],"SUBSTACK":[2,"D."]},"fields":{},"shadow":false,"topLevel":false},"D.":{"opcode":"procedures_call","next":"D/","parent":"c%","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_R",";E?SYI/y0cz0le)X4#4l"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"D/":{"opcode":"data_changevariableby","next":"IU","parent":"D.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"IU":{"opcode":"data_addtolist","next":null,"parent":"D/","inputs":{"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"eE":{"opcode":"control_while","next":null,"parent":"c%","inputs":{"CONDITION":[2,"eF"],"SUBSTACK":[2,"IV"]},"fields":{},"shadow":false,"topLevel":false},"eF":{"opcode":"operator_and","next":null,"parent":"eE","inputs":{"OPERAND1":[2,"D:"],"OPERAND2":[2,"D;"]},"fields":{},"shadow":false,"topLevel":false},"D:":{"opcode":"operator_gt","next":null,"parent":"eF","inputs":{"OPERAND1":[3,"IW",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"IW":{"opcode":"data_itemoflist","next":null,"parent":"D:","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"D;":{"opcode":"operator_lt","next":null,"parent":"eF","inputs":{"OPERAND1":[3,"IX",[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"IX":{"opcode":"data_itemoflist","next":null,"parent":"D;","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"IV":{"opcode":"data_deleteoflist","next":null,"parent":"eE","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"D=":{"opcode":"procedures_definition","next":"j:","parent":null,"inputs":{"custom_block":[1,"IY"]},"fields":{},"shadow":false,"topLevel":true,"x":16078,"y":64},"IY":{"opcode":"procedures_prototype","next":null,"parent":"D=","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"j:":{"opcode":"data_changevariableby","next":"j;","parent":"D=","inputs":{"VALUE":[3,"IZ",[4,0]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"IZ":{"opcode":"operator_divide","next":null,"parent":"j:","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"j;":{"opcode":"data_changevariableby","next":"al","parent":"j:","inputs":{"VALUE":[3,"I0",[4,0]]},"fields":{"VARIABLE":[",c","Crf*ltOpxTp[zPgDlY{T"]},"shadow":false,"topLevel":false},"I0":{"opcode":"operator_divide","next":null,"parent":"j;","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"al":{"opcode":"control_if","next":"D?","parent":"j;","inputs":{"CONDITION":[2,"I1"],"SUBSTACK":[2,"D@"]},"fields":{},"shadow":false,"topLevel":false},"I1":{"opcode":"operator_lt","next":null,"parent":"al","inputs":{"OPERAND1":[3,[12,"*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"D@":{"opcode":"control_repeat","next":null,"parent":"al","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"eU"]},"fields":{},"shadow":false,"topLevel":false},"eU":{"opcode":"procedures_call","next":"eZ","parent":"D@","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"I2",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"I2":{"opcode":"operator_add","next":null,"parent":"eU","inputs":{"NUM1":[3,[12,"*OAMDMAS","v.3%0+x.An^dc%ycqc,h"],[4,0]],"NUM2":[3,[12,"*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"eZ":{"opcode":"procedures_call","next":"I3","parent":"eU","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"fRHPORE}/n8tXq4q^{~F":[3,"I4",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"I4":{"opcode":"operator_add","next":null,"parent":"eZ","inputs":{"NUM1":[1,[4,"0xFE00"]],"NUM2":[3,[12,"*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I3":{"opcode":"data_changevariableby","next":null,"parent":"eZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["*OAMDMA#","w]/Z*A/dznMc;~79B@Ap"]},"shadow":false,"topLevel":false},"D?":{"opcode":"procedures_call","next":"D[","parent":"al","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".TIMERS","argumentids":"[]","warp":"true"}},"D[":{"opcode":"procedures_call","next":"ap","parent":"D?","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,[10,"0xFF40"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"ap":{"opcode":"control_if_else","next":null,"parent":"D[","inputs":{"CONDITION":[2,"I5"],"SUBSTACK":[2,"I6"],"SUBSTACK2":[2,"aq"]},"fields":{},"shadow":false,"topLevel":false},"I5":{"opcode":"operator_lt","next":null,"parent":"ap","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"I6":{"opcode":"procedures_call","next":null,"parent":"ap","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*reset PPU","argumentids":"[]","warp":"true"}},"aq":{"opcode":"control_if","next":"ar","parent":"ap","inputs":{"CONDITION":[2,"e~"],"SUBSTACK":[2,"I7"]},"fields":{},"shadow":false,"topLevel":false},"e~":{"opcode":"operator_or","next":null,"parent":"aq","inputs":{"OPERAND1":[2,"e+"],"OPERAND2":[2,"I8"]},"fields":{},"shadow":false,"topLevel":false},"e+":{"opcode":"operator_and","next":null,"parent":"e~","inputs":{"OPERAND1":[2,"I9"],"OPERAND2":[2,"l9"]},"fields":{},"shadow":false,"topLevel":false},"I9":{"opcode":"operator_lt","next":null,"parent":"e+","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"l9":{"opcode":"operator_or","next":null,"parent":"e+","inputs":{"OPERAND1":[2,"I!"],"OPERAND2":[2,"I#"]},"fields":{},"shadow":false,"topLevel":false},"I!":{"opcode":"operator_equals","next":null,"parent":"l9","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"I#":{"opcode":"operator_equals","next":null,"parent":"l9","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"I8":{"opcode":"operator_equals","next":null,"parent":"e~","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"456"]]},"fields":{},"shadow":false,"topLevel":false},"I7":{"opcode":"procedures_call","next":null,"parent":"aq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update","argumentids":"[]","warp":"true"}},"ar":{"opcode":"control_if","next":"x","parent":"aq","inputs":{"CONDITION":[2,"D]"],"SUBSTACK":[2,"l!"]},"fields":{},"shadow":false,"topLevel":false},"D]":{"opcode":"operator_equals","next":null,"parent":"ar","inputs":{"OPERAND1":[3,"I%",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"I%":{"opcode":"operator_multiply","next":null,"parent":"D]","inputs":{"NUM1":[3,[12,"-STATUS",".yqIokTgw8-|]3$}O%wt"],[4,0]],"NUM2":[3,[12,"render","b#%5IA`afs~P-ErWHe%`"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"l!":{"opcode":"control_if","next":null,"parent":"ar","inputs":{"CONDITION":[2,"I("],"SUBSTACK":[2,"D^"]},"fields":{},"shadow":false,"topLevel":false},"I(":{"opcode":"operator_lt","next":null,"parent":"l!","inputs":{"OPERAND1":[3,[12,"_X",":D[mPTcd3;]Yf==]Wvx`"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"D^":{"opcode":"procedures_call","next":"D_","parent":"l!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_graphics registers","argumentids":"[]","warp":"true"}},"D_":{"opcode":"procedures_call","next":"Eq","parent":"D^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX","argumentids":"[]","warp":"true"}},"Eq":{"opcode":"procedures_call","next":"l#","parent":"D_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX","argumentids":"[]","warp":"true"}},"l#":{"opcode":"control_if","next":null,"parent":"Eq","inputs":{"CONDITION":[2,"I)"],"SUBSTACK":[2,"Er"]},"fields":{},"shadow":false,"topLevel":false},"I)":{"opcode":"operator_equals","next":null,"parent":"l#","inputs":{"OPERAND1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Er":{"opcode":"procedures_call","next":"I*","parent":"l#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX","argumentids":"[]","warp":"true"}},"I*":{"opcode":"procedures_call","next":null,"parent":"Er","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX","argumentids":"[]","warp":"true"}},"x":{"opcode":"control_if_else","next":"I+","parent":"ar","inputs":{"CONDITION":[2,"D|"],"SUBSTACK":[2,"D}"],"SUBSTACK2":[2,"I,"]},"fields":{},"shadow":false,"topLevel":false},"D}":{"opcode":"data_setvariableto","next":"I.","parent":"x","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-LYmask","QwG!GB*-SvenHq{bU0[6"]},"shadow":false,"topLevel":false},"I.":{"opcode":"procedures_call","next":null,"parent":"D}","inputs":{"j~vf^2{,YZCCw2dLS{!:":[1,[10,"0"]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF44"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"I,":{"opcode":"data_setvariableto","next":null,"parent":"x","inputs":{"VALUE":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]]},"fields":{"VARIABLE":["-LYmask","QwG!GB*-SvenHq{bU0[6"]},"shadow":false,"topLevel":false},"I+":{"opcode":"procedures_call","next":null,"parent":"x","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update LCDSTAT","argumentids":"[]","warp":"true"}},"Ea":{"opcode":"procedures_definition","next":"aI~","parent":null,"inputs":{"custom_block":[1,"I/"]},"fields":{},"shadow":false,"topLevel":true,"x":40509,"y":64},"I/":{"opcode":"procedures_prototype","next":null,"parent":"Ea","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_setup","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aI~":{"opcode":"data_deletealloflist","next":"as","parent":"Ea","inputs":{},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"as":{"opcode":"control_if_else","next":"qT","parent":"aI~","inputs":{"SUBSTACK":[2,"lQ"],"SUBSTACK2":[2,"lR"]},"fields":{},"shadow":false,"topLevel":false},"lQ":{"opcode":"data_addtolist","next":"k_","parent":"as","inputs":{"ITEM":[1,[10,"#081820"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"k_":{"opcode":"data_addtolist","next":"k`","parent":"lQ","inputs":{"ITEM":[1,[10,"#43654d"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"k`":{"opcode":"data_addtolist","next":"I:","parent":"k_","inputs":{"ITEM":[1,[10,"#7eb27a"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"I:":{"opcode":"data_addtolist","next":null,"parent":"k`","inputs":{"ITEM":[1,[10,"#b9ffa8"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"lR":{"opcode":"data_addtolist","next":"ln","parent":"as","inputs":{"ITEM":[1,[10,"#19394d"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"ln":{"opcode":"data_addtolist","next":"k]","parent":"lR","inputs":{"ITEM":[1,[10,"#38786f"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"k]":{"opcode":"data_addtolist","next":"I;","parent":"ln","inputs":{"ITEM":[1,[10,"#7eb97a"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"I;":{"opcode":"data_addtolist","next":null,"parent":"k]","inputs":{"ITEM":[1,[10,"#eef2ae"]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"qT":{"opcode":"data_setvariableto","next":"Ex","parent":"as","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["_SIZE","i{fSr|$u)-tpEX+a*y{]"]},"shadow":false,"topLevel":false},"Ex":{"opcode":"pen_setPenSizeTo","next":"k;","parent":"qT","inputs":{"SIZE":[3,[12,"_SIZE","i{fSr|$u)-tpEX+a*y{]"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"k;":{"opcode":"data_setvariableto","next":"Fi","parent":"Ex","inputs":{"VALUE":[1,[10,"160"]]},"fields":{"VARIABLE":["_XSHIFT","7ge_EoziNOcpkF[hyyvb"]},"shadow":false,"topLevel":false},"Fi":{"opcode":"data_setvariableto","next":"l(","parent":"k;","inputs":{"VALUE":[1,[10,"144"]]},"fields":{"VARIABLE":["_YSHIFT","$bOgKA@,Cg7J(#lntKuz"]},"shadow":false,"topLevel":false},"l(":{"opcode":"data_setvariableto","next":"GB","parent":"Fi","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".soundEnable","951ss`PQmd4:$N48_hl;"]},"shadow":false,"topLevel":false},"GB":{"opcode":"data_setvariableto","next":null,"parent":"l(","inputs":{"VALUE":[3,"I=",[10,""]]},"fields":{"VARIABLE":["time1","O*.$-nBOGKoJ7i+^Qwg2"]},"shadow":false,"topLevel":false},"I=":{"opcode":"sensing_dayssince2000","next":null,"parent":"GB","inputs":{},"fields":{},"shadow":false,"topLevel":false},"GC":{"opcode":"procedures_definition","next":"pw","parent":null,"inputs":{"custom_block":[1,"lq"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":246},"lq":{"opcode":"procedures_prototype","next":null,"parent":"GC","inputs":{"`s7r9W7Nszb-8fnH!Beo":[1,"I?"],"}_+-M9{0LDsd:%$c1dNn":[1,"I@"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","argumentnames":"[\"bank\",\"addr\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"I?":{"opcode":"argument_reporter_string_number","next":null,"parent":"lq","inputs":{},"fields":{"VALUE":["bank",null]},"shadow":true,"topLevel":false},"I@":{"opcode":"argument_reporter_string_number","next":null,"parent":"lq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"pw":{"opcode":"data_setvariableto","next":null,"parent":"GC","inputs":{"VALUE":[3,"k@",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"k@":{"opcode":"data_itemoflist","next":null,"parent":"pw","inputs":{"INDEX":[3,"lr",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"lr":{"opcode":"operator_add","next":null,"parent":"k@","inputs":{"NUM1":[3,"Ej",[4,0]],"NUM2":[3,"qS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ej":{"opcode":"operator_multiply","next":null,"parent":"lr","inputs":{"NUM1":[3,"I[",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"I[":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ej","inputs":{},"fields":{"VALUE":["bank",null]},"shadow":false,"topLevel":false},"qS":{"opcode":"data_itemoflist","next":null,"parent":"lr","inputs":{"INDEX":[3,"qz",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"qz":{"opcode":"operator_add","next":null,"parent":"qS","inputs":{"NUM1":[3,"I]",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I]":{"opcode":"argument_reporter_string_number","next":null,"parent":"qz","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"k:":{"opcode":"procedures_definition","next":"ls","parent":null,"inputs":{"custom_block":[1,"Ed"]},"fields":{},"shadow":false,"topLevel":true,"x":3415,"y":426},"Ed":{"opcode":"procedures_prototype","next":null,"parent":"k:","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,"I^"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","argumentnames":"[\"a\"]","argumentdefaults":"[\"\"]","warp":"true"}},"I^":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ed","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"ls":{"opcode":"data_setvariableto","next":"at","parent":"k:","inputs":{"VALUE":[3,"lt",[10,""]]},"fields":{"VARIABLE":["T5","WhM=KlgvY@V6x|(`!06Q"]},"shadow":false,"topLevel":false},"lt":{"opcode":"operator_add","next":null,"parent":"ls","inputs":{"NUM1":[3,"Ee",[4,0]],"NUM2":[3,"Ev",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ee":{"opcode":"data_itemoflist","next":null,"parent":"lt","inputs":{"INDEX":[3,"Ew",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"Ew":{"opcode":"data_itemoflist","next":null,"parent":"Ee","inputs":{"INDEX":[3,"lo",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"lo":{"opcode":"operator_add","next":null,"parent":"Ew","inputs":{"NUM1":[3,"I_",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I_":{"opcode":"argument_reporter_string_number","next":null,"parent":"lo","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"Ev":{"opcode":"data_itemoflist","next":null,"parent":"lt","inputs":{"INDEX":[3,"F)",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"F)":{"opcode":"operator_add","next":null,"parent":"Ev","inputs":{"NUM1":[3,"I`",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I`":{"opcode":"argument_reporter_string_number","next":null,"parent":"F)","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"at":{"opcode":"control_if_else","next":null,"parent":"ls","inputs":{"CONDITION":[2,"F*"],"SUBSTACK":[2,"F+"],"SUBSTACK2":[2,"F,"]},"fields":{},"shadow":false,"topLevel":false},"F*":{"opcode":"operator_lt","next":null,"parent":"at","inputs":{"OPERAND1":[3,"I{",[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"I{":{"opcode":"argument_reporter_string_number","next":null,"parent":"F*","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"F+":{"opcode":"data_setvariableto","next":null,"parent":"at","inputs":{"VALUE":[3,"I|",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"I|":{"opcode":"data_itemoflist","next":null,"parent":"F+","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"F,":{"opcode":"data_setvariableto","next":null,"parent":"at","inputs":{"VALUE":[3,"Oo",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"Oo":{"opcode":"data_itemoflist","next":null,"parent":"F,","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"F-":{"opcode":"procedures_definition","next":"lu","parent":null,"inputs":{"custom_block":[1,"I}"]},"fields":{},"shadow":false,"topLevel":true,"x":24410,"y":64},"I}":{"opcode":"procedures_prototype","next":null,"parent":"F-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_graphics registers","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"lu":{"opcode":"data_setvariableto","next":"lv","parent":"F-","inputs":{"VALUE":[3,"F.",[10,""]]},"fields":{"VARIABLE":["-scx","0pKRpVmta7bZeii6{wYz"]},"shadow":false,"topLevel":false},"F.":{"opcode":"data_itemoflist","next":null,"parent":"lu","inputs":{"INDEX":[3,"I~",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"I~":{"opcode":"operator_add","next":null,"parent":"F.","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"lv":{"opcode":"data_setvariableto","next":"lk","parent":"lu","inputs":{"VALUE":[3,"Ek",[10,""]]},"fields":{"VARIABLE":["-scx","0pKRpVmta7bZeii6{wYz"]},"shadow":false,"topLevel":false},"Ek":{"opcode":"operator_add","next":null,"parent":"lv","inputs":{"NUM1":[3,"lp",[4,0]],"NUM2":[3,[12,"-SCXMOD8","!#:owuhU@|TD~fX?SQd0"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"lp":{"opcode":"operator_subtract","next":null,"parent":"Ek","inputs":{"NUM1":[3,[12,"-scx","0pKRpVmta7bZeii6{wYz"],[4,0]],"NUM2":[3,"Ja",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ja":{"opcode":"operator_mod","next":null,"parent":"lp","inputs":{"NUM1":[3,[12,"-scx","0pKRpVmta7bZeii6{wYz"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"lk":{"opcode":"data_setvariableto","next":null,"parent":"lv","inputs":{"VALUE":[3,"lm",[10,""]]},"fields":{"VARIABLE":["-wx","]j0JoR^IRmZ%Dqa1U-3t"]},"shadow":false,"topLevel":false},"lm":{"opcode":"operator_subtract","next":null,"parent":"lk","inputs":{"NUM1":[3,"l0",[4,0]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"l0":{"opcode":"data_itemoflist","next":null,"parent":"lm","inputs":{"INDEX":[3,"Jb",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"Jb":{"opcode":"operator_add","next":null,"parent":"l0","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"11"]]},"fields":{},"shadow":false,"topLevel":false},"EX":{"opcode":"procedures_definition","next":"lw","parent":null,"inputs":{"custom_block":[1,"Jc"]},"fields":{},"shadow":false,"topLevel":true,"x":22962,"y":64},"Jc":{"opcode":"procedures_prototype","next":null,"parent":"EX","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".ppu regs","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"lw":{"opcode":"data_setvariableto","next":"lx","parent":"EX","inputs":{"VALUE":[3,"EY",[10,""]]},"fields":{"VARIABLE":["-LYC","[P*KHQ#6Rk9]Ox;1v%3A"]},"shadow":false,"topLevel":false},"EY":{"opcode":"data_itemoflist","next":null,"parent":"lw","inputs":{"INDEX":[3,"Jd",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"Jd":{"opcode":"operator_add","next":null,"parent":"EY","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"lx":{"opcode":"data_setvariableto","next":"EZ","parent":"lw","inputs":{"VALUE":[3,"E0",[10,""]]},"fields":{"VARIABLE":["-LCDC","j%_uw7vcE;vljqGCEt;-"]},"shadow":false,"topLevel":false},"E0":{"opcode":"data_itemoflist","next":null,"parent":"lx","inputs":{"INDEX":[3,"E1",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"E1":{"opcode":"operator_add","next":null,"parent":"E0","inputs":{"NUM1":[3,"Je",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Je":{"opcode":"data_itemoflist","next":null,"parent":"E1","inputs":{"INDEX":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"EZ":{"opcode":"data_setvariableto","next":null,"parent":"lx","inputs":{"VALUE":[3,"k^",[10,""]]},"fields":{"VARIABLE":["-LCDS","%H5F/uE0-oBcg#Ueg1HX"]},"shadow":false,"topLevel":false},"k^":{"opcode":"data_itemoflist","next":null,"parent":"EZ","inputs":{"INDEX":[3,"EF",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"EF":{"opcode":"operator_add","next":null,"parent":"k^","inputs":{"NUM1":[3,"E2",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E3":{"opcode":"procedures_definition","next":"ly","parent":null,"inputs":{"custom_block":[1,"c*"]},"fields":{},"shadow":false,"topLevel":true,"x":21670,"y":64},"c*":{"opcode":"procedures_prototype","next":null,"parent":"E3","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".TIMERS","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ly":{"opcode":"data_setvariableto","next":"lz","parent":"E3","inputs":{"VALUE":[3,"E4",[10,""]]},"fields":{"VARIABLE":[".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"]},"shadow":false,"topLevel":false},"E4":{"opcode":"operator_mod","next":null,"parent":"ly","inputs":{"NUM1":[3,"c+",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"c+":{"opcode":"operator_add","next":null,"parent":"E4","inputs":{"NUM1":[3,[12,".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"lz":{"opcode":"procedures_call","next":"au","parent":"ly","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"pY",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF04"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"pY":{"opcode":"operator_mathop","next":null,"parent":"lz","inputs":{"NUM":[3,"c,",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"c,":{"opcode":"operator_divide","next":null,"parent":"pY","inputs":{"NUM1":[3,[12,".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"au":{"opcode":"control_if","next":"E,","parent":"lz","inputs":{"CONDITION":[2,"c-"],"SUBSTACK":[2,"E-"]},"fields":{},"shadow":false,"topLevel":false},"c-":{"opcode":"operator_equals","next":null,"parent":"au","inputs":{"OPERAND1":[3,[12,".TACFLAG","dK3?LB9A%FG6.YYddD?("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E-":{"opcode":"data_setvariableto","next":"E.","parent":"au","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".TACFLAG","dK3?LB9A%FG6.YYddD?("]},"shadow":false,"topLevel":false},"E.":{"opcode":"procedures_call","next":"E^","parent":"E-","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,[10,"0xFF06"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"E^":{"opcode":"procedures_call","next":"c.","parent":"E.","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF05"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"c.":{"opcode":"procedures_call","next":null,"parent":"E^","inputs":{"DmJnXi1[qUlHjf;C=~o[":[1,[10,"2"]],"!-|QVVj^*8]m|Qagq{HG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","warp":"true"}},"lg":{"opcode":"procedures_definition","next":"aw","parent":null,"inputs":{"custom_block":[1,"ax"]},"fields":{},"shadow":false,"topLevel":true,"x":7591,"y":64},"ax":{"opcode":"procedures_prototype","next":null,"parent":"lg","inputs":{"jV%E3N`F#Kv[N2ZFDCng":[1,"c@"],"=C%5;oVu(,!okffK1p[0":[1,"c["],"4*V.c%r3@q^!I[k[vvmC":[1,"c]"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".MBC handler %s a %s b %s","argumentids":"[\"jV%E3N`F#Kv[N2ZFDCng\",\"=C%5;oVu(,!okffK1p[0\",\"4*V.c%r3@q^!I[k[vvmC\"]","argumentnames":"[\"type\",\"a\",\"b\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"c@":{"opcode":"argument_reporter_string_number","next":null,"parent":"ax","inputs":{},"fields":{"VALUE":["type",null]},"shadow":true,"topLevel":false},"c[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ax","inputs":{},"fields":{"VALUE":["a",null]},"shadow":true,"topLevel":false},"c]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ax","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"aw":{"opcode":"control_if_else","next":null,"parent":"lg","inputs":{"CONDITION":[2,"Fk"],"SUBSTACK":[2,"lC"],"SUBSTACK2":[2,"ay"]},"fields":{},"shadow":false,"topLevel":false},"Fk":{"opcode":"operator_equals","next":null,"parent":"aw","inputs":{"OPERAND1":[3,"c^",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c^":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fk","inputs":{},"fields":{"VALUE":["type",null]},"shadow":false,"topLevel":false},"lC":{"opcode":"control_if","next":null,"parent":"aw","inputs":{"CONDITION":[2,"lD"],"SUBSTACK":[2,"lE"]},"fields":{},"shadow":false,"topLevel":false},"lD":{"opcode":"operator_and","next":null,"parent":"lC","inputs":{"OPERAND1":[2,"Ey"],"OPERAND2":[2,"Fl"]},"fields":{},"shadow":false,"topLevel":false},"Ey":{"opcode":"operator_not","next":null,"parent":"lD","inputs":{"OPERAND":[2,"Fm"]},"fields":{},"shadow":false,"topLevel":false},"Fm":{"opcode":"operator_lt","next":null,"parent":"Ey","inputs":{"OPERAND1":[3,"Jt",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"Jt":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fm","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"Fl":{"opcode":"operator_lt","next":null,"parent":"lD","inputs":{"OPERAND1":[3,"Ju",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"Ju":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fl","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"lE":{"opcode":"data_setvariableto","next":"lH","parent":"lC","inputs":{"VALUE":[3,"lI",[10,""]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"lI":{"opcode":"operator_add","next":null,"parent":"lE","inputs":{"NUM1":[3,"Fn",[4,0]],"NUM2":[3,"Fo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Fn":{"opcode":"operator_mod","next":null,"parent":"lI","inputs":{"NUM1":[3,"Jv",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Jv":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fn","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"Fo":{"opcode":"operator_equals","next":null,"parent":"lI","inputs":{"OPERAND1":[3,"Fp",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"lH":{"opcode":"data_setvariableto","next":"Jx","parent":"lE","inputs":{"VALUE":[3,"lJ",[10,""]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"lJ":{"opcode":"operator_add","next":null,"parent":"lH","inputs":{"NUM1":[3,"Fq",[4,0]],"NUM2":[3,"Fr",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Fq":{"opcode":"operator_subtract","next":null,"parent":"lJ","inputs":{"NUM1":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[4,0]],"NUM2":[3,"Jy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jy":{"opcode":"operator_mod","next":null,"parent":"Fq","inputs":{"NUM1":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Fr":{"opcode":"operator_mod","next":null,"parent":"lJ","inputs":{"NUM1":[3,"Jz",[4,0]],"NUM2":[3,[12,"_rom size","jQVk|kz76jS8DHck5*?e"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Jz":{"opcode":"operator_mod","next":null,"parent":"Fr","inputs":{"NUM1":[3,[12,"_R",";E?SYI/y0cz0le)X4#4l"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Jx":{"opcode":"procedures_call","next":null,"parent":"lH","inputs":{"Mty(2GG{m}BZq!JcV]it":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_swap ROM bank X to %s","argumentids":"[\"Mty(2GG{m}BZq!JcV]it\"]","warp":"true"}},"ay":{"opcode":"control_if_else","next":null,"parent":"aw","inputs":{"CONDITION":[2,"Fs"],"SUBSTACK":[2,"az"],"SUBSTACK2":[2,"lK"]},"fields":{},"shadow":false,"topLevel":false},"Fs":{"opcode":"operator_equals","next":null,"parent":"ay","inputs":{"OPERAND1":[3,"JA",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"JA":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fs","inputs":{},"fields":{"VALUE":["type",null]},"shadow":false,"topLevel":false},"az":{"opcode":"control_if_else","next":null,"parent":"ay","inputs":{"CONDITION":[2,"lN"],"SUBSTACK":[2,"lP"],"SUBSTACK2":[2,"lU"]},"fields":{},"shadow":false,"topLevel":false},"lN":{"opcode":"operator_and","next":null,"parent":"az","inputs":{"OPERAND1":[2,"Ft"],"OPERAND2":[2,"Fu"]},"fields":{},"shadow":false,"topLevel":false},"Ft":{"opcode":"operator_not","next":null,"parent":"lN","inputs":{"OPERAND":[2,"Fv"]},"fields":{},"shadow":false,"topLevel":false},"Fv":{"opcode":"operator_lt","next":null,"parent":"Ft","inputs":{"OPERAND1":[3,"JB",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"JB":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fv","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"Fu":{"opcode":"operator_lt","next":null,"parent":"lN","inputs":{"OPERAND1":[3,"JC",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"JC":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fu","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"lP":{"opcode":"data_setvariableto","next":"B","parent":"az","inputs":{"VALUE":[3,"lV",[10,""]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"lV":{"opcode":"operator_add","next":null,"parent":"lP","inputs":{"NUM1":[3,"JD",[4,0]],"NUM2":[3,"lh",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JD":{"opcode":"argument_reporter_string_number","next":null,"parent":"lV","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"lh":{"opcode":"operator_equals","next":null,"parent":"lV","inputs":{"OPERAND1":[3,"JE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"JE":{"opcode":"argument_reporter_string_number","next":null,"parent":"lh","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"B":{"opcode":"control_if_else","next":"JF","parent":"lP","inputs":{"CONDITION":[2,"Fx"],"SUBSTACK":[2,"JG"],"SUBSTACK2":[2,"Fy"]},"fields":{},"shadow":false,"topLevel":false},"Fx":{"opcode":"operator_equals","next":null,"parent":"B","inputs":{"OPERAND1":[3,"JH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"JH":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fx","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"JG":{"opcode":"data_setvariableto","next":null,"parent":"B","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"Fy":{"opcode":"data_setvariableto","next":null,"parent":"B","inputs":{"VALUE":[3,"Fz",[10,""]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"Fz":{"opcode":"operator_mod","next":null,"parent":"Fy","inputs":{"NUM1":[3,"JI",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"JI":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fz","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"JF":{"opcode":"procedures_call","next":null,"parent":"B","inputs":{"Mty(2GG{m}BZq!JcV]it":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_swap ROM bank X to %s","argumentids":"[\"Mty(2GG{m}BZq!JcV]it\"]","warp":"true"}},"lU":{"opcode":"control_if","next":null,"parent":"az","inputs":{"CONDITION":[2,"l8"],"SUBSTACK":[2,"FA"]},"fields":{},"shadow":false,"topLevel":false},"l8":{"opcode":"operator_and","next":null,"parent":"lU","inputs":{"OPERAND1":[2,"FB"],"OPERAND2":[2,"FC"]},"fields":{},"shadow":false,"topLevel":false},"FB":{"opcode":"operator_not","next":null,"parent":"l8","inputs":{"OPERAND":[2,"FD"]},"fields":{},"shadow":false,"topLevel":false},"FD":{"opcode":"operator_lt","next":null,"parent":"FB","inputs":{"OPERAND1":[3,"JJ",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"JJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"FD","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"FC":{"opcode":"operator_lt","next":null,"parent":"l8","inputs":{"OPERAND1":[3,"JK",[10,""]],"OPERAND2":[1,[10,"0x6000"]]},"fields":{},"shadow":false,"topLevel":false},"JK":{"opcode":"argument_reporter_string_number","next":null,"parent":"FC","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"FA":{"opcode":"data_replaceitemoflist","next":null,"parent":"lU","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"lZ",[10,""]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"lZ":{"opcode":"operator_add","next":null,"parent":"FA","inputs":{"NUM1":[3,"FE",[4,0]],"NUM2":[3,"JL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"FE":{"opcode":"operator_multiply","next":null,"parent":"lZ","inputs":{"NUM1":[3,"l1",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"l1":{"opcode":"operator_mod","next":null,"parent":"FE","inputs":{"NUM1":[3,"JM",[4,0]],"NUM2":[3,"JN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JM":{"opcode":"argument_reporter_string_number","next":null,"parent":"l1","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"JN":{"opcode":"data_itemoflist","next":null,"parent":"l1","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"JL":{"opcode":"data_itemoflist","next":null,"parent":"lZ","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"lK":{"opcode":"control_if","next":null,"parent":"ay","inputs":{"CONDITION":[2,"FF"],"SUBSTACK":[2,"aA"]},"fields":{},"shadow":false,"topLevel":false},"FF":{"opcode":"operator_equals","next":null,"parent":"lK","inputs":{"OPERAND1":[3,"JO",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"JO":{"opcode":"argument_reporter_string_number","next":null,"parent":"FF","inputs":{},"fields":{"VALUE":["type",null]},"shadow":false,"topLevel":false},"aA":{"opcode":"control_if_else","next":null,"parent":"lK","inputs":{"CONDITION":[2,"l2"],"SUBSTACK":[2,"l3"],"SUBSTACK2":[2,"l5"]},"fields":{},"shadow":false,"topLevel":false},"l2":{"opcode":"operator_and","next":null,"parent":"aA","inputs":{"OPERAND1":[2,"FG"],"OPERAND2":[2,"FH"]},"fields":{},"shadow":false,"topLevel":false},"FG":{"opcode":"operator_not","next":null,"parent":"l2","inputs":{"OPERAND":[2,"FI"]},"fields":{},"shadow":false,"topLevel":false},"FI":{"opcode":"operator_lt","next":null,"parent":"FG","inputs":{"OPERAND1":[3,"JP",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"JP":{"opcode":"argument_reporter_string_number","next":null,"parent":"FI","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"FH":{"opcode":"operator_lt","next":null,"parent":"l2","inputs":{"OPERAND1":[3,"JQ",[10,""]],"OPERAND2":[1,[10,"0x3000"]]},"fields":{},"shadow":false,"topLevel":false},"JQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"FH","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"l3":{"opcode":"data_setvariableto","next":"JR","parent":"aA","inputs":{"VALUE":[3,"l6",[10,""]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"l6":{"opcode":"operator_add","next":null,"parent":"l3","inputs":{"NUM1":[3,"FJ",[4,0]],"NUM2":[3,"JS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"FJ":{"opcode":"operator_subtract","next":null,"parent":"l6","inputs":{"NUM1":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[4,0]],"NUM2":[3,"JT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JT":{"opcode":"operator_mod","next":null,"parent":"FJ","inputs":{"NUM1":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"JS":{"opcode":"argument_reporter_string_number","next":null,"parent":"l6","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"JR":{"opcode":"procedures_call","next":null,"parent":"l3","inputs":{"Mty(2GG{m}BZq!JcV]it":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_swap ROM bank X to %s","argumentids":"[\"Mty(2GG{m}BZq!JcV]it\"]","warp":"true"}},"l5":{"opcode":"control_if_else","next":null,"parent":"aA","inputs":{"CONDITION":[2,"l7"],"SUBSTACK":[2,"k|"]},"fields":{},"shadow":false,"topLevel":false},"l7":{"opcode":"operator_and","next":null,"parent":"l5","inputs":{"OPERAND1":[2,"FK"],"OPERAND2":[2,"FL"]},"fields":{},"shadow":false,"topLevel":false},"FK":{"opcode":"operator_not","next":null,"parent":"l7","inputs":{"OPERAND":[2,"FM"]},"fields":{},"shadow":false,"topLevel":false},"FM":{"opcode":"operator_lt","next":null,"parent":"FK","inputs":{"OPERAND1":[3,"JU",[10,""]],"OPERAND2":[1,[10,"0x3000"]]},"fields":{},"shadow":false,"topLevel":false},"JU":{"opcode":"argument_reporter_string_number","next":null,"parent":"FM","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"FL":{"opcode":"operator_lt","next":null,"parent":"l7","inputs":{"OPERAND1":[3,"JV",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"JV":{"opcode":"argument_reporter_string_number","next":null,"parent":"FL","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"k|":{"opcode":"data_setvariableto","next":"JW","parent":"l5","inputs":{"VALUE":[3,"PY",[10,""]]},"fields":{"VARIABLE":["_current bank","7D2+hT#2qu+P*=`t{Hlz"]},"shadow":false,"topLevel":false},"PY":{"opcode":"operator_add","next":null,"parent":"k|","inputs":{"NUM1":[3,"JX",[4,0]],"NUM2":[3,"li",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"JX":{"opcode":"operator_mod","next":null,"parent":"PY","inputs":{"NUM1":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"li":{"opcode":"operator_multiply","next":null,"parent":"PY","inputs":{"NUM1":[3,"FO",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"FO":{"opcode":"operator_mod","next":null,"parent":"li","inputs":{"NUM1":[3,"JY",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"JY":{"opcode":"argument_reporter_string_number","next":null,"parent":"FO","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"JW":{"opcode":"procedures_call","next":null,"parent":"k|","inputs":{"Mty(2GG{m}BZq!JcV]it":[3,[12,"_current bank","7D2+hT#2qu+P*=`t{Hlz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_swap ROM bank X to %s","argumentids":"[\"Mty(2GG{m}BZq!JcV]it\"]","warp":"true"}},"FP":{"opcode":"procedures_definition","next":"FQ","parent":null,"inputs":{"custom_block":[1,"JZ"]},"fields":{},"shadow":false,"topLevel":true,"x":20745,"y":64},"JZ":{"opcode":"procedures_prototype","next":null,"parent":"FP","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"FQ":{"opcode":"procedures_call","next":"FR","parent":"FP","inputs":{"I}W854H`=BeJC:|;RIt/":[3,[12,"_X",":D[mPTcd3;]Yf==]Wvx`"],[10,""]],"l^*DnDR~;7E4,a7CY?w8":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX %s %s","argumentids":"[\"I}W854H`=BeJC:|;RIt/\",\"l^*DnDR~;7E4,a7CY?w8\"]","warp":"true"}},"FR":{"opcode":"data_changevariableby","next":"cC","parent":"FQ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PIXEL#","AfAG@-SCQv_v!Pd(!ksr"]},"shadow":false,"topLevel":false},"FV":{"opcode":"procedures_definition","next":"aW","parent":null,"inputs":{"custom_block":[1,"J2"]},"fields":{},"shadow":false,"topLevel":true,"x":20059,"y":64},"J2":{"opcode":"procedures_prototype","next":null,"parent":"FV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aW":{"opcode":"control_if_else","next":null,"parent":"FV","inputs":{"CONDITION":[2,"J3"],"SUBSTACK":[2,"aX"],"SUBSTACK2":[2,"cA"]},"fields":{},"shadow":false,"topLevel":false},"J3":{"opcode":"operator_lt","next":null,"parent":"aW","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"aX":{"opcode":"control_if","next":"aY","parent":"aW","inputs":{"CONDITION":[2,"J4"],"SUBSTACK":[2,"FW"]},"fields":{},"shadow":false,"topLevel":false},"J4":{"opcode":"operator_equals","next":null,"parent":"aX","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"456"]]},"fields":{},"shadow":false,"topLevel":false},"FW":{"opcode":"procedures_call","next":"FX","parent":"aX","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},"FX":{"opcode":"data_setvariableto","next":"FY","parent":"FW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"FY":{"opcode":"data_setvariableto","next":"cB","parent":"FX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_X",":D[mPTcd3;]Yf==]Wvx`"]},"shadow":false,"topLevel":false},"aY":{"opcode":"control_if","next":"iF","parent":"aX","inputs":{"CONDITION":[2,"J+"],"SUBSTACK":[2,"F6"]},"fields":{},"shadow":false,"topLevel":false},"J+":{"opcode":"operator_equals","next":null,"parent":"aY","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"F6":{"opcode":"procedures_call","next":"F7","parent":"aY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*OAMsearch","argumentids":"[]","warp":"true"}},"F7":{"opcode":"procedures_call","next":"jQ","parent":"F6","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},"iF":{"opcode":"control_if","next":null,"parent":"aY","inputs":{"CONDITION":[2,"J."],"SUBSTACK":[2,"F!"]},"fields":{},"shadow":false,"topLevel":false},"J.":{"opcode":"operator_equals","next":null,"parent":"iF","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"F!":{"opcode":"procedures_call","next":".","parent":"iF","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},".":{"opcode":"control_if","next":"J/","parent":"F!","inputs":{"CONDITION":[2,"F#"],"SUBSTACK":[2,"J:"]},"fields":{},"shadow":false,"topLevel":false},"F#":{"opcode":"operator_equals","next":null,"parent":".","inputs":{"OPERAND1":[3,"J;",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"J;":{"opcode":"operator_multiply","next":null,"parent":"F#","inputs":{"NUM1":[3,[12,".DMAenable","kk18ewt7HpVOvYWizQ?E"],[4,0]],"NUM2":[3,[12,".DMAtype","0NzoLpmy^eZ1=JjkzYGg"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J:":{"opcode":"data_setvariableto","next":null,"parent":".","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".HDMAenable","j1eKKgYTu[qSVFb2,O.#"]},"shadow":false,"topLevel":false},"J/":{"opcode":"control_stop","next":null,"parent":".","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GA":{"opcode":"procedures_definition","next":"GD","parent":null,"inputs":{"custom_block":[1,"jT"]},"fields":{},"shadow":false,"topLevel":true,"x":17535,"y":64},"jT":{"opcode":"procedures_prototype","next":null,"parent":"GA","inputs":{"I}W854H`=BeJC:|;RIt/":[1,"J]"],"l^*DnDR~;7E4,a7CY?w8":[1,"J^"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".PIX %s %s","argumentids":"[\"I}W854H`=BeJC:|;RIt/\",\"l^*DnDR~;7E4,a7CY?w8\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"J]":{"opcode":"argument_reporter_string_number","next":null,"parent":"jT","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"J^":{"opcode":"argument_reporter_string_number","next":null,"parent":"jT","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"GD":{"opcode":"data_setvariableto","next":"n","parent":"GA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@PAL","Tj+w!/(PV_!`zhKO@qb%"]},"shadow":false,"topLevel":false},"n":{"opcode":"control_if_else","next":"o","parent":"GD","inputs":{"CONDITION":[2,"jU"],"SUBSTACK":[2,"jV"],"SUBSTACK2":[2,"jW"]},"fields":{},"shadow":false,"topLevel":false},"jV":{"opcode":"data_setvariableto","next":"jZ","parent":"n","inputs":{"VALUE":[3,"GH",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"GH":{"opcode":"operator_add","next":null,"parent":"jV","inputs":{"NUM1":[3,"iN",[4,0]],"NUM2":[3,[12,"-scx","0pKRpVmta7bZeii6{wYz"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"iN":{"opcode":"argument_reporter_string_number","next":null,"parent":"GH","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"jW":{"opcode":"data_setvariableto","next":"EL","parent":"n","inputs":{"VALUE":[3,"EQ",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"EQ":{"opcode":"operator_subtract","next":null,"parent":"jW","inputs":{"NUM1":[3,"iP",[4,0]],"NUM2":[3,[12,"-wx","]j0JoR^IRmZ%Dqa1U-3t"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"iP":{"opcode":"argument_reporter_string_number","next":null,"parent":"EQ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"EL":{"opcode":"data_setvariableto","next":"j1","parent":"jW","inputs":{"VALUE":[3,[12,"-WLY","Z]?-Im_0pF^!OOi!AX81"],[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"j1":{"opcode":"data_setvariableto","next":"c{","parent":"EL","inputs":{"VALUE":[3,"ER",[10,""]]},"fields":{"VARIABLE":[".tileB","a^B*+PC_g3)^{A!L}XWv"]},"shadow":false,"topLevel":false},"ER":{"opcode":"operator_add","next":null,"parent":"j1","inputs":{"NUM1":[1,[4,"0x9800"]],"NUM2":[3,"ES",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ES":{"opcode":"operator_multiply","next":null,"parent":"ER","inputs":{"NUM1":[1,[4,"1024"]],"NUM2":[3,"Kt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Kt":{"opcode":"operator_letter_of","next":null,"parent":"ES","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"c{":{"opcode":"data_setvariableto","next":null,"parent":"j1","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".windowflag","dOLNCNdWP`.36j7uacOp"]},"shadow":false,"topLevel":false},"o":{"opcode":"control_if_else","next":"j2","parent":"n","inputs":{"CONDITION":[2,"j3"],"SUBSTACK":[2,"ET"],"SUBSTACK2":[2,"Ku"]},"fields":{},"shadow":false,"topLevel":false},"j3":{"opcode":"operator_or","next":null,"parent":"o","inputs":{"OPERAND1":[2,"Kv"],"OPERAND2":[2,"EU"]},"fields":{},"shadow":false,"topLevel":false},"Kv":{"opcode":"operator_equals","next":null,"parent":"j3","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"EU":{"opcode":"operator_equals","next":null,"parent":"j3","inputs":{"OPERAND1":[3,"Kw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Kw":{"opcode":"operator_letter_of","next":null,"parent":"EU","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ET":{"opcode":"data_setvariableto","next":"j4","parent":"o","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".vbank","F-[0c$U5I;6bxPbW?^5C"]},"shadow":false,"topLevel":false},"Ku":{"opcode":"data_setvariableto","next":null,"parent":"o","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@PIX","RJLtSXRx71$[%`nwOBtM"]},"shadow":false,"topLevel":false},"aJa":{"opcode":"procedures_definition","next":"aJb","parent":null,"inputs":{"custom_block":[1,"i5"]},"fields":{},"shadow":false,"topLevel":true,"x":13701,"y":64},"i5":{"opcode":"procedures_prototype","next":null,"parent":"aJa","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aJb":{"opcode":"procedures_call","next":"aJc","parent":"aJa","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"aJc":{"opcode":"data_addtolist","next":"aJd","parent":"aJb","inputs":{"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"aJd":{"opcode":"data_setvariableto","next":null,"parent":"aJc","inputs":{"VALUE":[3,"aJe",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aJe":{"opcode":"operator_mod","next":null,"parent":"aJd","inputs":{"NUM1":[3,"i6",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"i6":{"opcode":"operator_add","next":null,"parent":"aJe","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJf":{"opcode":"procedures_definition","next":"aR","parent":null,"inputs":{"custom_block":[1,"aJg"]},"fields":{},"shadow":false,"topLevel":true,"x":6437,"y":64},"aJg":{"opcode":"procedures_prototype","next":null,"parent":"aJf","inputs":{"FW[OkC=Fq;FN}+lv+cfR":[1,"i7"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".decodeCGBpalette %s","argumentids":"[\"FW[OkC=Fq;FN}+lv+cfR\"]","argumentnames":"[\"#\"]","argumentdefaults":"[\"\"]","warp":"true"}},"i7":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJg","inputs":{},"fields":{"VALUE":["#",null]},"shadow":true,"topLevel":false},"aR":{"opcode":"data_replaceitemoflist","next":"ks","parent":"aJf","inputs":{"INDEX":[3,"aJh",[7,0]],"ITEM":[3,"aJi",[10,""]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"aJh":{"opcode":"operator_add","next":null,"parent":"aR","inputs":{"NUM1":[3,"aJj",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJj":{"opcode":"operator_multiply","next":null,"parent":"aJh","inputs":{"NUM1":[3,"dE",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"dE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJj","inputs":{},"fields":{"VALUE":["#",null]},"shadow":false,"topLevel":false},"aJi":{"opcode":"operator_mod","next":null,"parent":"aR","inputs":{"NUM1":[3,"aJk",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aJk":{"opcode":"data_itemoflist","next":null,"parent":"aJi","inputs":{"INDEX":[3,"aJl",[7,0]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"aJl":{"opcode":"operator_add","next":null,"parent":"aJk","inputs":{"NUM1":[3,"aJm",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJm":{"opcode":"operator_multiply","next":null,"parent":"aJl","inputs":{"NUM1":[3,"L1",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"L1":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJm","inputs":{},"fields":{"VALUE":["#",null]},"shadow":false,"topLevel":false},"ks":{"opcode":"data_setvariableto","next":"kt","parent":"aR","inputs":{"VALUE":[3,"ku",[10,""]]},"fields":{"VARIABLE":["T6","xwd)j4SY4qa||w7J0yBP"]},"shadow":false,"topLevel":false},"ku":{"opcode":"operator_add","next":null,"parent":"ks","inputs":{"NUM1":[3,"aJn",[4,0]],"NUM2":[3,"aJo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJn":{"opcode":"operator_multiply","next":null,"parent":"ku","inputs":{"NUM1":[3,"aJp",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aJp":{"opcode":"data_itemoflist","next":null,"parent":"aJn","inputs":{"INDEX":[3,"aJq",[7,0]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"aJq":{"opcode":"operator_add","next":null,"parent":"aJp","inputs":{"NUM1":[3,"aJr",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJr":{"opcode":"operator_multiply","next":null,"parent":"aJq","inputs":{"NUM1":[3,"L2",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"L2":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJr","inputs":{},"fields":{"VALUE":["#",null]},"shadow":false,"topLevel":false},"aJo":{"opcode":"data_itemoflist","next":null,"parent":"ku","inputs":{"INDEX":[3,"aJs",[7,0]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"aJs":{"opcode":"operator_add","next":null,"parent":"aJo","inputs":{"NUM1":[3,"aJt",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJt":{"opcode":"operator_multiply","next":null,"parent":"aJs","inputs":{"NUM1":[3,"i8",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"i8":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJt","inputs":{},"fields":{"VALUE":["#",null]},"shadow":false,"topLevel":false},"aJu":{"opcode":"procedures_definition","next":"aJv","parent":null,"inputs":{"custom_block":[1,"a."]},"fields":{},"shadow":false,"topLevel":true,"x":59466,"y":444},"a.":{"opcode":"procedures_prototype","next":null,"parent":"aJu","inputs":{"Z)slFb@i^:5x0#hGBpAT":[1,"i#"],"XE32]O@is{EC2Zcc56iy":[1,"dH"],"hV#jI?(JQL-U:E_qAsHK":[1,"L8"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"color correct %s %s %s","argumentids":"[\"Z)slFb@i^:5x0#hGBpAT\",\"XE32]O@is{EC2Zcc56iy\",\"hV#jI?(JQL-U:E_qAsHK\"]","argumentnames":"[\"R\",\"G\",\"B\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"false"}},"i#":{"opcode":"argument_reporter_string_number","next":null,"parent":"a.","inputs":{},"fields":{"VALUE":["R",null]},"shadow":true,"topLevel":false},"dH":{"opcode":"argument_reporter_string_number","next":null,"parent":"a.","inputs":{},"fields":{"VALUE":["G",null]},"shadow":true,"topLevel":false},"L8":{"opcode":"argument_reporter_string_number","next":null,"parent":"a.","inputs":{},"fields":{"VALUE":["B",null]},"shadow":true,"topLevel":false},"aJv":{"opcode":"data_deletealloflist","next":"kv","parent":"aJu","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"kv":{"opcode":"data_addtolist","next":"kw","parent":"aJv","inputs":{"ITEM":[3,"kx",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"kx":{"opcode":"operator_multiply","next":null,"parent":"kv","inputs":{"NUM1":[3,"L9",[4,0]],"NUM2":[3,"i%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"L9":{"opcode":"argument_reporter_string_number","next":null,"parent":"kx","inputs":{},"fields":{"VALUE":["R",null]},"shadow":false,"topLevel":false},"i%":{"opcode":"operator_divide","next":null,"parent":"kx","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"kw":{"opcode":"data_addtolist","next":"ky","parent":"kv","inputs":{"ITEM":[3,"kz",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"kz":{"opcode":"operator_multiply","next":null,"parent":"kw","inputs":{"NUM1":[3,"i(",[4,0]],"NUM2":[3,"i)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i(":{"opcode":"argument_reporter_string_number","next":null,"parent":"kz","inputs":{},"fields":{"VALUE":["G",null]},"shadow":false,"topLevel":false},"i)":{"opcode":"operator_divide","next":null,"parent":"kz","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"ky":{"opcode":"data_addtolist","next":"aJw","parent":"kw","inputs":{"ITEM":[3,"kA",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"kA":{"opcode":"operator_multiply","next":null,"parent":"ky","inputs":{"NUM1":[3,"i*",[4,0]],"NUM2":[3,"dK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i*":{"opcode":"argument_reporter_string_number","next":null,"parent":"kA","inputs":{},"fields":{"VALUE":["B",null]},"shadow":false,"topLevel":false},"dK":{"opcode":"operator_divide","next":null,"parent":"kA","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"aJw":{"opcode":"data_setvariableto","next":null,"parent":"ky","inputs":{"VALUE":[3,"aJx",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"aJx":{"opcode":"operator_join","next":null,"parent":"aJw","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[3,"kB",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kB":{"opcode":"operator_join","next":null,"parent":"aJx","inputs":{"STRING1":[3,"aJy",[10,""]],"STRING2":[3,"j^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aJy":{"opcode":"data_itemoflist","next":null,"parent":"kB","inputs":{"INDEX":[3,"aJz",[7,0]]},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"aJz":{"opcode":"operator_add","next":null,"parent":"aJy","inputs":{"NUM1":[3,"L.",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"L.":{"opcode":"data_itemoflist","next":null,"parent":"aJz","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"j^":{"opcode":"operator_join","next":null,"parent":"kB","inputs":{"STRING1":[3,"aJA",[10,""]],"STRING2":[3,"aJB",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aJA":{"opcode":"data_itemoflist","next":null,"parent":"j^","inputs":{"INDEX":[3,"aJC",[7,0]]},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"aJC":{"opcode":"operator_add","next":null,"parent":"aJA","inputs":{"NUM1":[3,"L/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"L/":{"opcode":"data_itemoflist","next":null,"parent":"aJC","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"aJB":{"opcode":"data_itemoflist","next":null,"parent":"j^","inputs":{"INDEX":[3,"aJD",[7,0]]},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"aJD":{"opcode":"operator_add","next":null,"parent":"aJB","inputs":{"NUM1":[3,"L:",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"L:":{"opcode":"data_itemoflist","next":null,"parent":"aJD","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"aJE":{"opcode":"procedures_definition","next":"aJF","parent":null,"inputs":{"custom_block":[1,"L;"]},"fields":{},"shadow":false,"topLevel":true,"x":19501,"y":64},"L;":{"opcode":"procedures_prototype","next":null,"parent":"aJE","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"view palette","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aJF":{"opcode":"data_setvariableto","next":"aJG","parent":"aJE","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"aJG":{"opcode":"pen_setPenSizeTo","next":"aJH","parent":"aJF","inputs":{"SIZE":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aJH":{"opcode":"motion_sety","next":"aJI","parent":"aJG","inputs":{"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aJI":{"opcode":"control_repeat","next":null,"parent":"aJH","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aJJ"]},"fields":{},"shadow":false,"topLevel":false},"aJJ":{"opcode":"motion_setx","next":"j_","parent":"aJI","inputs":{"X":[1,[4,"-220"]]},"fields":{},"shadow":false,"topLevel":false},"j_":{"opcode":"control_repeat","next":"L=","parent":"aJJ","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"aJK"]},"fields":{},"shadow":false,"topLevel":false},"aJK":{"opcode":"data_changevariableby","next":"j`","parent":"j_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"j`":{"opcode":"pen_setPenColorToColor","next":"aJL","parent":"aJK","inputs":{"COLOR":[3,"i+",[9,"#285a61"]]},"fields":{},"shadow":false,"topLevel":false},"i+":{"opcode":"data_itemoflist","next":null,"parent":"j`","inputs":{"INDEX":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[7,0]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"aJL":{"opcode":"pen_penDown","next":"aJM","parent":"j`","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aJM":{"opcode":"pen_penUp","next":"dN","parent":"aJL","inputs":{},"fields":{},"shadow":false,"topLevel":false},"dN":{"opcode":"motion_changexby","next":null,"parent":"aJM","inputs":{"DX":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"L=":{"opcode":"motion_changeyby","next":null,"parent":"j_","inputs":{"DY":[1,[4,"-10"]]},"fields":{},"shadow":false,"topLevel":false},"aJN":{"opcode":"procedures_definition","next":"aJO","parent":null,"inputs":{"custom_block":[1,"aJP"]},"fields":{},"shadow":false,"topLevel":true,"x":6437,"y":366},"aJP":{"opcode":"procedures_prototype","next":null,"parent":"aJN","inputs":{"jIokstn|or8d;HHl7kTb":[1,"dO"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*decode sound from address %s","argumentids":"[\"jIokstn|or8d;HHl7kTb\"]","argumentnames":"[\"X\"]","argumentdefaults":"[\"\"]","warp":"true"}},"dO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJP","inputs":{},"fields":{"VALUE":["X",null]},"shadow":true,"topLevel":false},"aJO":{"opcode":"data_deletealloflist","next":"j{","parent":"aJN","inputs":{},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"j{":{"opcode":"data_setvariableto","next":"aJQ","parent":"aJO","inputs":{"VALUE":[3,"aJR",[10,""]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"aJR":{"opcode":"operator_add","next":null,"parent":"j{","inputs":{"NUM1":[3,"dP",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"dP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJR","inputs":{},"fields":{"VALUE":["X",null]},"shadow":false,"topLevel":false},"aJQ":{"opcode":"procedures_call","next":"j|","parent":"j{","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"j|":{"opcode":"data_addtolist","next":"kC","parent":"aJQ","inputs":{"ITEM":[3,"aJS",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJS":{"opcode":"operator_mod","next":null,"parent":"j|","inputs":{"NUM1":[3,"aJT",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJT":{"opcode":"operator_mathop","next":null,"parent":"aJS","inputs":{"NUM":[3,"dQ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dQ":{"opcode":"operator_divide","next":null,"parent":"aJT","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"kC":{"opcode":"data_addtolist","next":"kD","parent":"j|","inputs":{"ITEM":[3,"aJU",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJU":{"opcode":"operator_mod","next":null,"parent":"kC","inputs":{"NUM1":[3,"aJV",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJV":{"opcode":"operator_mathop","next":null,"parent":"aJU","inputs":{"NUM":[3,"dR",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dR":{"opcode":"operator_divide","next":null,"parent":"aJV","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"kD":{"opcode":"data_addtolist","next":"aJW","parent":"kC","inputs":{"ITEM":[3,"aJX",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJX":{"opcode":"operator_mod","next":null,"parent":"kD","inputs":{"NUM1":[3,"aJY",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aJY":{"opcode":"operator_mathop","next":null,"parent":"aJX","inputs":{"NUM":[3,"dS",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dS":{"opcode":"operator_divide","next":null,"parent":"aJY","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJW":{"opcode":"data_changevariableby","next":"aJZ","parent":"kD","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"aJZ":{"opcode":"procedures_call","next":"kE","parent":"aJW","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"kE":{"opcode":"data_replaceitemoflist","next":"aJ0","parent":"aJZ","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[3,"aJ1",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJ1":{"opcode":"operator_add","next":null,"parent":"kE","inputs":{"NUM1":[3,"aJ2",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJ2":{"opcode":"operator_multiply","next":null,"parent":"aJ1","inputs":{"NUM1":[3,"dT",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"dT":{"opcode":"data_itemoflist","next":null,"parent":"aJ2","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJ0":{"opcode":"data_changevariableby","next":"aJ3","parent":"kE","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"aJ3":{"opcode":"procedures_call","next":"kF","parent":"aJ0","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"mH":{"opcode":"procedures_definition","next":"mI","parent":null,"inputs":{"custom_block":[1,"dY"]},"fields":{},"shadow":false,"topLevel":true,"x":13701,"y":312},"dY":{"opcode":"procedures_prototype","next":null,"parent":"mH","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update LCDSTAT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"mI":{"opcode":"data_setvariableto","next":"kJ","parent":"mH","inputs":{"VALUE":[3,[12,"_STATcond1","o~PUUkHtM;d|0cL72}R,"],[10,""]]},"fields":{"VARIABLE":["_STATcond2","{}%R*l;pt#ssSJM}}m?-"]},"shadow":false,"topLevel":false},"kJ":{"opcode":"data_setvariableto","next":"kK","parent":"mI","inputs":{"VALUE":[3,"mJ",[10,""]]},"fields":{"VARIABLE":["_STATcond1","o~PUUkHtM;d|0cL72}R,"]},"shadow":false,"topLevel":false},"mJ":{"opcode":"operator_add","next":null,"parent":"kJ","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"kL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kL":{"opcode":"operator_or","next":null,"parent":"mJ","inputs":{"OPERAND1":[2,"dZ"],"OPERAND2":[2,"kM"]},"fields":{},"shadow":false,"topLevel":false},"dZ":{"opcode":"operator_equals","next":null,"parent":"kL","inputs":{"OPERAND1":[3,[12,"-LYmask","QwG!GB*-SvenHq{bU0[6"],[10,""]],"OPERAND2":[3,[12,"-LYC","[P*KHQ#6Rk9]Ox;1v%3A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kM":{"opcode":"operator_or","next":null,"parent":"kL","inputs":{"OPERAND1":[2,"mK"],"OPERAND2":[2,"kN"]},"fields":{},"shadow":false,"topLevel":false},"mK":{"opcode":"operator_equals","next":null,"parent":"kM","inputs":{"OPERAND1":[3,"mL",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"mL":{"opcode":"operator_multiply","next":null,"parent":"mK","inputs":{"NUM1":[3,"d0",[4,0]],"NUM2":[3,[12,"-STATUS",".yqIokTgw8-|]3$}O%wt"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"d0":{"opcode":"operator_letter_of","next":null,"parent":"mL","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kN":{"opcode":"operator_or","next":null,"parent":"kM","inputs":{"OPERAND1":[2,"mM"],"OPERAND2":[2,"mN"]},"fields":{},"shadow":false,"topLevel":false},"mM":{"opcode":"operator_equals","next":null,"parent":"kN","inputs":{"OPERAND1":[3,"mO",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"mO":{"opcode":"operator_multiply","next":null,"parent":"mM","inputs":{"NUM1":[3,"d1",[4,0]],"NUM2":[3,[12,"-STATUS",".yqIokTgw8-|]3$}O%wt"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"d1":{"opcode":"operator_letter_of","next":null,"parent":"mO","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"mN":{"opcode":"operator_equals","next":null,"parent":"kN","inputs":{"OPERAND1":[3,"kR",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kR":{"opcode":"operator_multiply","next":null,"parent":"mN","inputs":{"NUM1":[3,"d2",[4,0]],"NUM2":[3,"d3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"d2":{"opcode":"operator_letter_of","next":null,"parent":"kR","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"d3":{"opcode":"operator_equals","next":null,"parent":"kR","inputs":{"OPERAND1":[3,[12,"-STATUS",".yqIokTgw8-|]3$}O%wt"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"kK":{"opcode":"procedures_call","next":"kS","parent":"kJ","inputs":{"2O85X@RV-R+tGTc#moyk":[1,[10,"2"]],"UWMrpjv[L%4fZOo$yXk{":[3,"mP",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set STAT %s , %s","argumentids":"[\"2O85X@RV-R+tGTc#moyk\",\"UWMrpjv[L%4fZOo$yXk{\"]","warp":"true"}},"mP":{"opcode":"operator_add","next":null,"parent":"kK","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"i-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i-":{"opcode":"operator_equals","next":null,"parent":"mP","inputs":{"OPERAND1":[3,[12,"-LYmask","QwG!GB*-SvenHq{bU0[6"],[10,""]],"OPERAND2":[3,[12,"-LYC","[P*KHQ#6Rk9]Ox;1v%3A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"kS":{"opcode":"control_if","next":null,"parent":"kK","inputs":{"CONDITION":[2,"i."],"SUBSTACK":[2,"d4"]},"fields":{},"shadow":false,"topLevel":false},"i.":{"opcode":"operator_gt","next":null,"parent":"kS","inputs":{"OPERAND1":[3,[12,"_STATcond1","o~PUUkHtM;d|0cL72}R,"],[10,""]],"OPERAND2":[3,[12,"_STATcond2","{}%R*l;pt#ssSJM}}m?-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"d4":{"opcode":"procedures_call","next":null,"parent":"kS","inputs":{"DmJnXi1[qUlHjf;C=~o[":[1,[10,"1"]],"!-|QVVj^*8]m|Qagq{HG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","warp":"true"}},"d5":{"opcode":"event_whenbroadcastreceived","next":"mQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","ky!#tF#{H5xjX?`c_InV"]},"shadow":false,"topLevel":true,"x":19074,"y":64},"mQ":{"opcode":"data_deletealloflist","next":"mR","parent":"d5","inputs":{},"fields":{"LIST":["_GBCPALETTELOOKUP","co=Q#-C]T_}X,w7fOhbc"]},"shadow":false,"topLevel":false},"mR":{"opcode":"data_deletealloflist","next":"mS","parent":"mQ","inputs":{},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"mS":{"opcode":"data_deletealloflist","next":"mT","parent":"mR","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"mT":{"opcode":"data_deletealloflist","next":"mU","parent":"mS","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"mU":{"opcode":"data_deletealloflist","next":"mV","parent":"mT","inputs":{},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"mV":{"opcode":"data_deletealloflist","next":"mW","parent":"mU","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"mW":{"opcode":"data_deletealloflist","next":"mX","parent":"mV","inputs":{},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"mX":{"opcode":"data_deletealloflist","next":"mY","parent":"mW","inputs":{},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"mY":{"opcode":"data_deletealloflist","next":"mZ","parent":"mX","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"mZ":{"opcode":"data_deletealloflist","next":"m0","parent":"mY","inputs":{},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"m0":{"opcode":"data_deletealloflist","next":"m1","parent":"mZ","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"m1":{"opcode":"data_deletealloflist","next":"m2","parent":"m0","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"m2":{"opcode":"data_deletealloflist","next":"m3","parent":"m1","inputs":{},"fields":{"LIST":["testroms","X`qJ$waq$}Fv`dbd;h$x"]},"shadow":false,"topLevel":false},"m3":{"opcode":"data_deletealloflist","next":"m4","parent":"m2","inputs":{},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"m4":{"opcode":"data_deletealloflist","next":"m5","parent":"m3","inputs":{},"fields":{"LIST":[".HEX","JZ0nOH#MsoLAasA7xYd+"]},"shadow":false,"topLevel":false},"m5":{"opcode":"data_deletealloflist","next":"o(","parent":"m4","inputs":{},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"o(":{"opcode":"data_deletealloflist","next":"xd","parent":"m5","inputs":{},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"xd":{"opcode":"data_deletealloflist","next":null,"parent":"o(","inputs":{},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"m6":{"opcode":"procedures_definition","next":"m7","parent":null,"inputs":{"custom_block":[1,"m8"]},"fields":{},"shadow":false,"topLevel":true,"x":45922,"y":64},"m8":{"opcode":"procedures_prototype","next":null,"parent":"m6","inputs":{"ZDEsc-gw?9/i2O@/y^Q,":[1,"ew"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert freq to midi %s","argumentids":"[\"ZDEsc-gw?9/i2O@/y^Q,\"]","argumentnames":"[\"f\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ew":{"opcode":"argument_reporter_string_number","next":null,"parent":"m8","inputs":{},"fields":{"VALUE":["f",null]},"shadow":true,"topLevel":false},"m7":{"opcode":"data_setvariableto","next":null,"parent":"m6","inputs":{"VALUE":[3,"m9",[10,""]]},"fields":{"VARIABLE":["_RE","4`Ni_=/i=RIJ0%Y?]=Fn"]},"shadow":false,"topLevel":false},"m9":{"opcode":"operator_add","next":null,"parent":"m7","inputs":{"NUM1":[3,"m!",[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"m!":{"opcode":"operator_multiply","next":null,"parent":"m9","inputs":{"NUM1":[3,"kT",[4,0]],"NUM2":[1,[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"kT":{"opcode":"operator_divide","next":null,"parent":"m!","inputs":{"NUM1":[3,"m#",[4,0]],"NUM2":[3,"ex",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"m#":{"opcode":"operator_mathop","next":null,"parent":"kT","inputs":{"NUM":[3,"m%",[4,0]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"m%":{"opcode":"operator_divide","next":null,"parent":"m#","inputs":{"NUM1":[3,"d6",[4,0]],"NUM2":[1,[4,"440"]]},"fields":{},"shadow":false,"topLevel":false},"d6":{"opcode":"argument_reporter_string_number","next":null,"parent":"m%","inputs":{},"fields":{"VALUE":["f",null]},"shadow":false,"topLevel":false},"ex":{"opcode":"operator_mathop","next":null,"parent":"kT","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"m(":{"opcode":"procedures_definition","next":"kP","parent":null,"inputs":{"custom_block":[1,"d7"]},"fields":{},"shadow":false,"topLevel":true,"x":45538,"y":64},"d7":{"opcode":"procedures_prototype","next":null,"parent":"m(","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".GDMA transfer","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"kP":{"opcode":"control_repeat","next":"m)","parent":"m(","inputs":{"TIMES":[3,[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],[6,0]],"SUBSTACK":[2,"m*"]},"fields":{},"shadow":false,"topLevel":false},"m*":{"opcode":"procedures_call","next":"m+","parent":"kP","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"m+":{"opcode":"procedures_call","next":"m,","parent":"m*","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"fRHPORE}/n8tXq4q^{~F":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"m,":{"opcode":"data_changevariableby","next":"m-","parent":"m+","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":[".DMAstart","q3];|lI;X@QP63GyUdgC"]},"shadow":false,"topLevel":false},"m-":{"opcode":"data_changevariableby","next":"m.","parent":"m,","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":[".DMAend","gb)yqT91dr(YhxH_!$oK"]},"shadow":false,"topLevel":false},"m.":{"opcode":"procedures_call","next":"aQ","parent":"m-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"m)":{"opcode":"data_setvariableto","next":"m/","parent":"kP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DMAenable","kk18ewt7HpVOvYWizQ?E"]},"shadow":false,"topLevel":false},"m/":{"opcode":"procedures_call","next":"d8","parent":"m)","inputs":{"j~vf^2{,YZCCw2dLS{!:":[1,[10,"255"]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF55"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"d8":{"opcode":"procedures_call","next":null,"parent":"m/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"write DMA","argumentids":"[]","warp":"true"}},"m:":{"opcode":"procedures_definition","next":"a,","parent":null,"inputs":{"custom_block":[1,"d9"]},"fields":{},"shadow":false,"topLevel":true,"x":44838,"y":64},"d9":{"opcode":"procedures_prototype","next":null,"parent":"m:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".HDMA transfer","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a,":{"opcode":"control_if","next":"bV","parent":"m:","inputs":{"CONDITION":[2,"d!"],"SUBSTACK":[2,"m;"]},"fields":{},"shadow":false,"topLevel":false},"d!":{"opcode":"operator_gt","next":null,"parent":"a,","inputs":{"OPERAND1":[3,[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m;":{"opcode":"control_repeat","next":null,"parent":"a,","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"m="]},"fields":{},"shadow":false,"topLevel":false},"m=":{"opcode":"procedures_call","next":"m?","parent":"m;","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"m?":{"opcode":"procedures_call","next":"m@","parent":"m=","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]],"fRHPORE}/n8tXq4q^{~F":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"m@":{"opcode":"data_changevariableby","next":"m[","parent":"m?","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":[".DMAstart","q3];|lI;X@QP63GyUdgC"]},"shadow":false,"topLevel":false},"m[":{"opcode":"data_changevariableby","next":"m]","parent":"m@","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":[".DMAend","gb)yqT91dr(YhxH_!$oK"]},"shadow":false,"topLevel":false},"m]":{"opcode":"procedures_call","next":"a-","parent":"m[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"bV":{"opcode":"control_if_else","next":"m^","parent":"a,","inputs":{"CONDITION":[2,"d#"],"SUBSTACK":[2,"m_"],"SUBSTACK2":[2,"m`"]},"fields":{},"shadow":false,"topLevel":false},"d#":{"opcode":"operator_gt","next":null,"parent":"bV","inputs":{"OPERAND1":[3,[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"m_":{"opcode":"procedures_call","next":null,"parent":"bV","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"m{",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF55"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"m{":{"opcode":"operator_subtract","next":null,"parent":"m_","inputs":{"NUM1":[3,"m|",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m|":{"opcode":"operator_mathop","next":null,"parent":"m{","inputs":{"NUM":[3,"d%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"d%":{"opcode":"operator_divide","next":null,"parent":"m|","inputs":{"NUM1":[3,[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"m`":{"opcode":"procedures_call","next":"d(","parent":"bV","inputs":{"j~vf^2{,YZCCw2dLS{!:":[1,[10,"255"]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF55"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"d(":{"opcode":"data_setvariableto","next":null,"parent":"m`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".DMAenable","kk18ewt7HpVOvYWizQ?E"]},"shadow":false,"topLevel":false},"m^":{"opcode":"data_setvariableto","next":"d)","parent":"bV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".HDMAenable","j1eKKgYTu[qSVFb2,O.#"]},"shadow":false,"topLevel":false},"d)":{"opcode":"procedures_call","next":null,"parent":"m^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"write DMA","argumentids":"[]","warp":"true"}},"m}":{"opcode":"procedures_definition","next":"m~","parent":null,"inputs":{"custom_block":[1,"d*"]},"fields":{},"shadow":false,"topLevel":true,"x":65232,"y":64},"d*":{"opcode":"procedures_prototype","next":null,"parent":"m}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"z","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"m~":{"opcode":"data_deletealloflist","next":"kQ","parent":"m}","inputs":{},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"kQ":{"opcode":"data_addtolist","next":"kU","parent":"m~","inputs":{"ITEM":[3,"d+",[10,""]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"d+":{"opcode":"data_itemoflist","next":null,"parent":"kQ","inputs":{"INDEX":[3,[12,"_IFindex","qOvY4@JXH3Z=q*#gP*-="],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"kU":{"opcode":"data_addtolist","next":"na","parent":"kQ","inputs":{"ITEM":[3,"d,",[10,""]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"d,":{"opcode":"data_itemoflist","next":null,"parent":"kU","inputs":{"INDEX":[3,[12,"_IEindex",";{(|I#5z)oz:*|%#$atp"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"na":{"opcode":"data_setvariableto","next":null,"parent":"kU","inputs":{"VALUE":[3,"nb",[10,""]]},"fields":{"VARIABLE":["_T","|Cl^=?C:,/{Epnf![x2:"]},"shadow":false,"topLevel":false},"nb":{"opcode":"data_itemoflist","next":null,"parent":"na","inputs":{"INDEX":[3,"nc",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"nc":{"opcode":"operator_add","next":null,"parent":"nb","inputs":{"NUM1":[3,"kV",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kV":{"opcode":"operator_add","next":null,"parent":"nc","inputs":{"NUM1":[3,"nd",[4,0]],"NUM2":[3,"d-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"nd":{"opcode":"operator_multiply","next":null,"parent":"kV","inputs":{"NUM1":[3,"d.",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"d.":{"opcode":"data_itemoflist","next":null,"parent":"nd","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"d-":{"opcode":"data_itemoflist","next":null,"parent":"kV","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"ne":{"opcode":"procedures_definition","next":"kO","parent":null,"inputs":{"custom_block":[1,"MA"]},"fields":{},"shadow":false,"topLevel":true,"x":62968,"y":571},"MA":{"opcode":"procedures_prototype","next":null,"parent":"ne","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".INTRpush","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"kO":{"opcode":"data_setvariableto","next":"nf","parent":"ne","inputs":{"VALUE":[3,"ng",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"ng":{"opcode":"operator_mod","next":null,"parent":"kO","inputs":{"NUM1":[3,"MB",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"MB":{"opcode":"operator_subtract","next":null,"parent":"ng","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"nf":{"opcode":"procedures_call","next":"kW","parent":"kO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"kW":{"opcode":"procedures_call","next":"nh","parent":"nf","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"ni",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"ni":{"opcode":"operator_mathop","next":null,"parent":"kW","inputs":{"NUM":[3,"nj",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"nj":{"opcode":"operator_mod","next":null,"parent":"ni","inputs":{"NUM1":[3,"MC",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"MC":{"opcode":"operator_divide","next":null,"parent":"nj","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"nh":{"opcode":"procedures_call","next":"nk","parent":"kW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"z","argumentids":"[]","warp":"true"}},"nk":{"opcode":"procedures_call","next":"nl","parent":"nh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"find bit","argumentids":"[]","warp":"true"}},"nl":{"opcode":"data_setvariableto","next":"nm","parent":"nk","inputs":{"VALUE":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"nm":{"opcode":"procedures_call","next":"kX","parent":"nl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"kX":{"opcode":"data_setvariableto","next":"kY","parent":"nm","inputs":{"VALUE":[3,"nn",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"nn":{"opcode":"operator_mod","next":null,"parent":"kX","inputs":{"NUM1":[3,"MD",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"MD":{"opcode":"operator_subtract","next":null,"parent":"nn","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kY":{"opcode":"procedures_call","next":"no","parent":"kX","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"np",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"np":{"opcode":"operator_mathop","next":null,"parent":"kY","inputs":{"NUM":[3,"ME",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ME":{"opcode":"operator_mod","next":null,"parent":"np","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"no":{"opcode":"procedures_call","next":"a/","parent":"kY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"a/":{"opcode":"control_if_else","next":null,"parent":"no","inputs":{"CONDITION":[2,"i/"],"SUBSTACK":[2,"i:"],"SUBSTACK2":[2,"nq"]},"fields":{},"shadow":false,"topLevel":false},"i/":{"opcode":"operator_equals","next":null,"parent":"a/","inputs":{"OPERAND1":[3,[12,"_A","[THklOWON,rz#pznmehC"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i:":{"opcode":"data_setvariableto","next":null,"parent":"a/","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"nq":{"opcode":"procedures_call","next":"i;","parent":"a/","inputs":{"DmJnXi1[qUlHjf;C=~o[":[3,[12,"_B","jh2$j7v[s~2Jkx.#Z1+z"],[10,""]],"!-|QVVj^*8]m|Qagq{HG":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","warp":"true"}},"i;":{"opcode":"data_setvariableto","next":null,"parent":"nq","inputs":{"VALUE":[3,[12,"_INTRdest","QGqvJ2ss)hMY|{h/*HlZ"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"nr":{"opcode":"procedures_definition","next":"ns","parent":null,"inputs":{"custom_block":[1,"i="]},"fields":{},"shadow":false,"topLevel":true,"x":62877,"y":64},"i=":{"opcode":"procedures_prototype","next":null,"parent":"nr","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"find bit","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ns":{"opcode":"data_setvariableto","next":"aB","parent":"nr","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"aB":{"opcode":"control_while","next":"kZ","parent":"ns","inputs":{"CONDITION":[2,"k1"],"SUBSTACK":[2,"d;"]},"fields":{},"shadow":false,"topLevel":false},"k1":{"opcode":"operator_and","next":null,"parent":"aB","inputs":{"OPERAND1":[2,"i["],"OPERAND2":[2,"nt"]},"fields":{},"shadow":false,"topLevel":false},"i[":{"opcode":"operator_gt","next":null,"parent":"k1","inputs":{"OPERAND1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"nt":{"opcode":"operator_equals","next":null,"parent":"k1","inputs":{"OPERAND1":[3,"k2",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"k2":{"opcode":"operator_multiply","next":null,"parent":"nt","inputs":{"NUM1":[3,"nu",[4,0]],"NUM2":[3,"nv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"nu":{"opcode":"operator_letter_of","next":null,"parent":"k2","inputs":{"LETTER":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[6,0]],"STRING":[3,"nw",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"nw":{"opcode":"data_itemoflist","next":null,"parent":"nu","inputs":{"INDEX":[3,"nx",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"nx":{"opcode":"operator_add","next":null,"parent":"nw","inputs":{"NUM1":[3,"i]",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i]":{"opcode":"data_itemoflist","next":null,"parent":"nx","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"nv":{"opcode":"operator_letter_of","next":null,"parent":"k2","inputs":{"LETTER":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[6,0]],"STRING":[3,"ny",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ny":{"opcode":"data_itemoflist","next":null,"parent":"nv","inputs":{"INDEX":[3,"nz",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"nz":{"opcode":"operator_add","next":null,"parent":"ny","inputs":{"NUM1":[3,"d?",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"data_itemoflist","next":null,"parent":"nz","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["$C","*2nK}A?8F`?ufZ@yn-PQ"]},"shadow":false,"topLevel":false},"d;":{"opcode":"data_changevariableby","next":null,"parent":"aB","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"kZ":{"opcode":"data_setvariableto","next":"nA","parent":"aB","inputs":{"VALUE":[3,"d@",[10,""]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"d@":{"opcode":"operator_subtract","next":null,"parent":"kZ","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"nA":{"opcode":"data_setvariableto","next":"nB","parent":"kZ","inputs":{"VALUE":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]]},"fields":{"VARIABLE":["_B","jh2$j7v[s~2Jkx.#Z1+z"]},"shadow":false,"topLevel":false},"nB":{"opcode":"data_setvariableto","next":null,"parent":"nA","inputs":{"VALUE":[3,"nC",[10,""]]},"fields":{"VARIABLE":["_INTRdest","QGqvJ2ss)hMY|{h/*HlZ"]},"shadow":false,"topLevel":false},"nC":{"opcode":"operator_multiply","next":null,"parent":"nB","inputs":{"NUM1":[3,"d[",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"d[":{"opcode":"operator_add","next":null,"parent":"nC","inputs":{"NUM1":[3,[12,"_B","jh2$j7v[s~2Jkx.#Z1+z"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"nD":{"opcode":"procedures_definition","next":"b3","parent":null,"inputs":{"custom_block":[1,"d]"]},"fields":{},"shadow":false,"topLevel":true,"x":42869,"y":504},"d]":{"opcode":"procedures_prototype","next":null,"parent":"nD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cycle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"b3":{"opcode":"control_if_else","next":"aE","parent":"nD","inputs":{"CONDITION":[2,"d^"],"SUBSTACK":[2,"a3"],"SUBSTACK2":[2,"d_"]},"fields":{},"shadow":false,"topLevel":false},"d^":{"opcode":"operator_equals","next":null,"parent":"b3","inputs":{"OPERAND1":[3,[12,".DMAenable","kk18ewt7HpVOvYWizQ?E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a3":{"opcode":"control_if_else","next":null,"parent":"b3","inputs":{"CONDITION":[2,"d`"],"SUBSTACK":[2,"a4"],"SUBSTACK2":[2,"i^"]},"fields":{},"shadow":false,"topLevel":false},"d`":{"opcode":"operator_equals","next":null,"parent":"a3","inputs":{"OPERAND1":[3,[12,".DMAtype","0NzoLpmy^eZ1=JjkzYGg"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i^":{"opcode":"procedures_call","next":null,"parent":"a3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".GDMA transfer","argumentids":"[]","warp":"true"}},"d_":{"opcode":"procedures_call","next":null,"parent":"b3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CPU","argumentids":"[]","warp":"false"}},"aE":{"opcode":"control_if_else","next":null,"parent":"b3","inputs":{"CONDITION":[2,"nE"],"SUBSTACK":[2,"k3"],"SUBSTACK2":[2,"i_"]},"fields":{},"shadow":false,"topLevel":false},"nE":{"opcode":"operator_equals","next":null,"parent":"aE","inputs":{"OPERAND1":[3,"d{",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d{":{"opcode":"operator_mod","next":null,"parent":"nE","inputs":{"NUM1":[3,[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],[4,0]],"NUM2":[1,[4,"36"]]},"fields":{},"shadow":false,"topLevel":false},"k3":{"opcode":"control_if","next":null,"parent":"aE","inputs":{"CONDITION":[2,"d|"],"SUBSTACK":[2,"nF"]},"fields":{},"shadow":false,"topLevel":false},"d|":{"opcode":"operator_equals","next":null,"parent":"k3","inputs":{"OPERAND1":[3,[12,"lock","-^88*(Y:JZOEd{YAhXza"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nF":{"opcode":"data_setvariableto","next":"k4","parent":"k3","inputs":{"VALUE":[1,[10,"0xFF30"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"k4":{"opcode":"data_setvariableto","next":"k5","parent":"nF","inputs":{"VALUE":[3,"nG",[10,""]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"nG":{"opcode":"operator_multiply","next":null,"parent":"k4","inputs":{"NUM1":[3,"nH",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"nH":{"opcode":"operator_mod","next":null,"parent":"nG","inputs":{"NUM1":[3,"nI",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"nI":{"opcode":"operator_mathop","next":null,"parent":"nH","inputs":{"NUM":[3,"d}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"d}":{"opcode":"operator_divide","next":null,"parent":"nI","inputs":{"NUM1":[3,[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],[4,0]],"NUM2":[1,[4,"36"]]},"fields":{},"shadow":false,"topLevel":false},"k5":{"opcode":"control_repeat","next":"nJ","parent":"k4","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"nK"]},"fields":{},"shadow":false,"topLevel":false},"nK":{"opcode":"procedures_call","next":"nL","parent":"k5","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"nL":{"opcode":"data_changevariableby","next":"k6","parent":"nK","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"nJ":{"opcode":"data_setvariableto","next":"k8","parent":"k5","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["lock","-^88*(Y:JZOEd{YAhXza"]},"shadow":false,"topLevel":false},"k8":{"opcode":"control_if","next":null,"parent":"nJ","inputs":{"CONDITION":[2,"nR"],"SUBSTACK":[2,"nS"]},"fields":{},"shadow":false,"topLevel":false},"nR":{"opcode":"operator_equals","next":null,"parent":"k8","inputs":{"OPERAND1":[3,"ec",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ec":{"opcode":"operator_mod","next":null,"parent":"nR","inputs":{"NUM1":[3,[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],[4,0]],"NUM2":[1,[4,"288"]]},"fields":{},"shadow":false,"topLevel":false},"nS":{"opcode":"data_deletealloflist","next":"nT","parent":"k8","inputs":{},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"nT":{"opcode":"data_setvariableto","next":"nU","parent":"nS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"nU":{"opcode":"control_repeat","next":null,"parent":"nT","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"nV"]},"fields":{},"shadow":false,"topLevel":false},"nV":{"opcode":"data_changevariableby","next":"nW","parent":"nU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"nW":{"opcode":"data_addtolist","next":null,"parent":"nV","inputs":{"ITEM":[3,"ez",[10,""]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"ez":{"opcode":"data_itemoflist","next":null,"parent":"nW","inputs":{"INDEX":[3,[12,"_A","[THklOWON,rz#pznmehC"],[7,0]]},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"i_":{"opcode":"data_setvariableto","next":null,"parent":"aE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["lock","-^88*(Y:JZOEd{YAhXza"]},"shadow":false,"topLevel":false},"nX":{"opcode":"procedures_definition","next":"k9","parent":null,"inputs":{"custom_block":[1,"ed"]},"fields":{},"shadow":false,"topLevel":true,"x":44838,"y":924},"ed":{"opcode":"procedures_prototype","next":null,"parent":"nX","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"write DMA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"k9":{"opcode":"procedures_call","next":"k!","parent":"nX","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"oP",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF51"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"oP":{"opcode":"operator_mathop","next":null,"parent":"k9","inputs":{"NUM":[3,"oQ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"oQ":{"opcode":"operator_mod","next":null,"parent":"oP","inputs":{"NUM1":[3,"ee",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ee":{"opcode":"operator_divide","next":null,"parent":"oQ","inputs":{"NUM1":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"k!":{"opcode":"procedures_call","next":"k%","parent":"k9","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"oR",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF52"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"oR":{"opcode":"operator_mathop","next":null,"parent":"k!","inputs":{"NUM":[3,"ef",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ef":{"opcode":"operator_mod","next":null,"parent":"oR","inputs":{"NUM1":[3,[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"k%":{"opcode":"procedures_call","next":"nY","parent":"k!","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"nZ",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF53"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"nZ":{"opcode":"operator_mathop","next":null,"parent":"k%","inputs":{"NUM":[3,"n0",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"n0":{"opcode":"operator_mod","next":null,"parent":"nZ","inputs":{"NUM1":[3,"eg",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"eg":{"opcode":"operator_divide","next":null,"parent":"n0","inputs":{"NUM1":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"nY":{"opcode":"procedures_call","next":null,"parent":"k%","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"n1",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF54"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"n1":{"opcode":"operator_mathop","next":null,"parent":"nY","inputs":{"NUM":[3,"eh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"eh":{"opcode":"operator_mod","next":null,"parent":"n1","inputs":{"NUM1":[3,[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QW":{"opcode":"event_whenkeypressed","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["r",null]},"shadow":false,"topLevel":true,"x":42576,"y":64},"n2":{"opcode":"procedures_definition","next":"n3","parent":null,"inputs":{"custom_block":[1,"ei"]},"fields":{},"shadow":false,"topLevel":true,"x":17155,"y":64},"ei":{"opcode":"procedures_prototype","next":null,"parent":"n2","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update joypad and register","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"n3":{"opcode":"procedures_call","next":"oq","parent":"n2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update joypad","argumentids":"[]","warp":"true"}},"oq":{"opcode":"procedures_call","next":null,"parent":"n3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"&joypad","argumentids":"[]","warp":"true"}},"n4":{"opcode":"procedures_definition","next":"n5","parent":null,"inputs":{"custom_block":[1,"i`"]},"fields":{},"shadow":false,"topLevel":true,"x":66156,"y":64},"i`":{"opcode":"procedures_prototype","next":null,"parent":"n4","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CLS","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"n5":{"opcode":"data_deletealloflist","next":"n6","parent":"n4","inputs":{},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"n6":{"opcode":"control_repeat","next":null,"parent":"n5","inputs":{"TIMES":[1,[6,"23040"]],"SUBSTACK":[2,"ej"]},"fields":{},"shadow":false,"topLevel":false},"ej":{"opcode":"data_addtolist","next":null,"parent":"n6","inputs":{"ITEM":[1,[10,"#000000"]]},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"ek":{"opcode":"procedures_call","next":"ey","parent":null,"inputs":{"arg0":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]]},"fields":{},"shadow":false,"topLevel":true,"x":6166,"y":172,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"ey":{"opcode":"procedures_call","next":null,"parent":"ek","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​breakpoint​​","argumentids":"[]","warp":"false"}},"eA":{"opcode":"data_addtolist","next":null,"parent":null,"inputs":{"ITEM":[3,"n7",[10,""]]},"fields":{"LIST":["buf","~*y,0~Y1ZelwR60?hGDD"]},"shadow":false,"topLevel":true,"x":43380,"y":1849},"n7":{"opcode":"operator_subtract","next":null,"parent":"eA","inputs":{"NUM1":[3,"n8",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"n8":{"opcode":"operator_divide","next":null,"parent":"n7","inputs":{"NUM1":[3,"eB",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"eB":{"opcode":"data_itemoflist","next":null,"parent":"n8","inputs":{"INDEX":[3,[12,"_A","[THklOWON,rz#pznmehC"],[7,0]]},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"bl!":{"opcode":"event_whenbroadcastreceived","next":"bl#","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Nuke all lists","nXk!G*y_h@WG)9_e/VKR"]},"shadow":false,"topLevel":true,"x":150,"y":-115},"bl#":{"opcode":"data_deletealloflist","next":null,"parent":"bl!","inputs":{},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"p0":{"opcode":"operator_equals","next":null,"parent":"e8","inputs":{"OPERAND1":[3,"x1",[10,""]],"OPERAND2":[1,[10,"0xFF3F"]]},"fields":{},"shadow":false,"topLevel":false},"x1":{"opcode":"argument_reporter_string_number","next":null,"parent":"p0","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"p5":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"x6",[10,""]],"OPERAND2":[1,[10,"0xFF6A"]]},"fields":{},"shadow":false,"topLevel":false},"x6":{"opcode":"argument_reporter_string_number","next":null,"parent":"p5","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"p]":{"opcode":"operator_multiply","next":null,"parent":"by","inputs":{"NUM1":[3,"p^",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"p^":{"opcode":"operator_equals","next":null,"parent":"p]","inputs":{"OPERAND1":[3,"x8",[10,""]],"OPERAND2":[1,[10,"0xFF6A"]]},"fields":{},"shadow":false,"topLevel":false},"x8":{"opcode":"argument_reporter_string_number","next":null,"parent":"p^","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"rz":{"opcode":"operator_equals","next":null,"parent":"J","inputs":{"OPERAND1":[3,"x]",[10,""]],"OPERAND2":[1,[10,"0xFF55"]]},"fields":{},"shadow":false,"topLevel":false},"x]":{"opcode":"argument_reporter_string_number","next":null,"parent":"rz","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"ro":{"opcode":"operator_equals","next":null,"parent":"b*","inputs":{"OPERAND1":[3,"ys",[10,""]],"OPERAND2":[1,[10,"0xFF49"]]},"fields":{},"shadow":false,"topLevel":false},"ys":{"opcode":"argument_reporter_string_number","next":null,"parent":"ro","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"pL":{"opcode":"operator_multiply","next":null,"parent":"pK","inputs":{"NUM1":[3,"yw",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"yw":{"opcode":"data_itemoflist","next":null,"parent":"pL","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"p#":{"opcode":"operator_add","next":null,"parent":"p!","inputs":{"NUM1":[3,"yy",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yy":{"opcode":"argument_reporter_string_number","next":null,"parent":"p#","inputs":{},"fields":{"VALUE":["a",null]},"shadow":false,"topLevel":false},"rf":{"opcode":"procedures_call","next":"rg","parent":"rd","inputs":{"E,=-5g[1I}?abJbC=3;y":[1,[10,"0xFF68"]],"ecG-ua8ktI9]LTC44t^)":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"rg":{"opcode":"data_setvariableto","next":"rh","parent":"rf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_R",";E?SYI/y0cz0le)X4#4l"]},"shadow":false,"topLevel":false},"rh":{"opcode":"data_setvariableto","next":"ri","parent":"rg","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_HALT","F_}DPF^fI%3NP^P]}FKY"]},"shadow":false,"topLevel":false},"ri":{"opcode":"data_deletealloflist","next":"rj","parent":"rh","inputs":{},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"rj":{"opcode":"data_setvariableto","next":"rk","parent":"ri","inputs":{"VALUE":[1,[10,"153"]]},"fields":{"VARIABLE":["-LY","R93(y;ezBDFNxz;R$.9{"]},"shadow":false,"topLevel":false},"rk":{"opcode":"procedures_call","next":"rl","parent":"rj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*reset PPU","argumentids":"[]","warp":"true"}},"rl":{"opcode":"procedures_call","next":"aJ4","parent":"rk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CLS","argumentids":"[]","warp":"true"}},"aJ4":{"opcode":"procedures_call","next":"aJ5","parent":"rl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$reset registers","argumentids":"[]","warp":"true"}},"aJ5":{"opcode":"procedures_call","next":"aJ6","parent":"aJ4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_init cpu tables","argumentids":"[]","warp":"true"}},"aJ6":{"opcode":"data_setvariableto","next":"aJ7","parent":"aJ5","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".IME","Yyq0n/?:tZ-1R{!(9E,I"]},"shadow":false,"topLevel":false},"aJ7":{"opcode":"data_setvariableto","next":"aJ8","parent":"aJ6","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".TAC1","TyNKP)!4YD91CXr;Ofr%"]},"shadow":false,"topLevel":false},"aJ8":{"opcode":"data_setvariableto","next":"aJ9","parent":"aJ7","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".TACFLAG","dK3?LB9A%FG6.YYddD?("]},"shadow":false,"topLevel":false},"aJ9":{"opcode":"data_deletealloflist","next":"aJ!","parent":"aJ8","inputs":{},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"aJ!":{"opcode":"data_addtolist","next":"e%","parent":"aJ9","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"e%":{"opcode":"control_repeat","next":"GJ","parent":"aJ!","inputs":{"TIMES":[1,[6,"15"]],"SUBSTACK":[2,"rX"]},"fields":{},"shadow":false,"topLevel":false},"rX":{"opcode":"data_addtolist","next":null,"parent":"e%","inputs":{"ITEM":[3,"r7",[10,""]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"r7":{"opcode":"operator_multiply","next":null,"parent":"rX","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"yH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yH":{"opcode":"data_itemoflist","next":null,"parent":"r7","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"GJ":{"opcode":"data_setvariableto","next":"rP","parent":"e%","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".SPEED","MzjtR%U}q{vlM~,lxGYF"]},"shadow":false,"topLevel":false},"rP":{"opcode":"data_setvariableto","next":"e(","parent":"GJ","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["_STATcond1","o~PUUkHtM;d|0cL72}R,"]},"shadow":false,"topLevel":false},"e(":{"opcode":"data_setvariableto","next":"e)","parent":"rP","inputs":{"VALUE":[3,"e*",[10,""]]},"fields":{"VARIABLE":["T9","ecaYd9sPeo:%`_LsAsJD"]},"shadow":false,"topLevel":false},"e*":{"opcode":"operator_add","next":null,"parent":"e(","inputs":{"NUM1":[3,"r:",[4,0]],"NUM2":[3,"rT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r:":{"opcode":"data_itemoflist","next":null,"parent":"e*","inputs":{"INDEX":[3,"rU",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"rU":{"opcode":"data_itemoflist","next":null,"parent":"r:","inputs":{"INDEX":[3,"yI",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"yI":{"opcode":"operator_add","next":null,"parent":"rU","inputs":{"NUM1":[1,[4,"0xFF40"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rT":{"opcode":"data_itemoflist","next":null,"parent":"e*","inputs":{"INDEX":[3,"yJ",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"yJ":{"opcode":"operator_add","next":null,"parent":"rT","inputs":{"NUM1":[1,[4,"0xFF40"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e)":{"opcode":"data_setvariableto","next":"e:","parent":"e(","inputs":{"VALUE":[3,"e;",[10,""]]},"fields":{"VARIABLE":["_IFindex","qOvY4@JXH3Z=q*#gP*-="]},"shadow":false,"topLevel":false},"e;":{"opcode":"operator_add","next":null,"parent":"e)","inputs":{"NUM1":[3,"rV",[4,0]],"NUM2":[3,"rS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"rV":{"opcode":"data_itemoflist","next":null,"parent":"e;","inputs":{"INDEX":[3,"r(",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"r(":{"opcode":"data_itemoflist","next":null,"parent":"rV","inputs":{"INDEX":[3,"yK",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"yK":{"opcode":"operator_add","next":null,"parent":"r(","inputs":{"NUM1":[1,[4,"0xFF0F"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rS":{"opcode":"data_itemoflist","next":null,"parent":"e;","inputs":{"INDEX":[3,"yL",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"yL":{"opcode":"operator_add","next":null,"parent":"rS","inputs":{"NUM1":[1,[4,"0xFF0F"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e:":{"opcode":"data_setvariableto","next":"e=","parent":"e)","inputs":{"VALUE":[3,"e?",[10,""]]},"fields":{"VARIABLE":["_IEindex",";{(|I#5z)oz:*|%#$atp"]},"shadow":false,"topLevel":false},"e?":{"opcode":"operator_add","next":null,"parent":"e:","inputs":{"NUM1":[3,"r)",[4,0]],"NUM2":[3,"sb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r)":{"opcode":"data_itemoflist","next":null,"parent":"e?","inputs":{"INDEX":[3,"r-",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"r-":{"opcode":"data_itemoflist","next":null,"parent":"r)","inputs":{"INDEX":[3,"yM",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"yM":{"opcode":"operator_add","next":null,"parent":"r-","inputs":{"NUM1":[1,[4,"0xFFFF"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sb":{"opcode":"data_itemoflist","next":null,"parent":"e?","inputs":{"INDEX":[3,"yN",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"yN":{"opcode":"operator_add","next":null,"parent":"sb","inputs":{"NUM1":[1,[4,"0xFFFF"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e=":{"opcode":"data_setvariableto","next":"X","parent":"e:","inputs":{"VALUE":[3,"e@",[10,""]]},"fields":{"VARIABLE":["_STATindex","(T;tOv.x|5[_=^tcd?s+"]},"shadow":false,"topLevel":false},"e@":{"opcode":"operator_add","next":null,"parent":"e=","inputs":{"NUM1":[3,"r.",[4,0]],"NUM2":[3,"rW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r.":{"opcode":"data_itemoflist","next":null,"parent":"e@","inputs":{"INDEX":[3,"rZ",[7,0]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"rZ":{"opcode":"data_itemoflist","next":null,"parent":"r.","inputs":{"INDEX":[3,"yO",[7,0]]},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"yO":{"opcode":"operator_add","next":null,"parent":"rZ","inputs":{"NUM1":[1,[4,"0xFF41"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rW":{"opcode":"data_itemoflist","next":null,"parent":"e@","inputs":{"INDEX":[3,"yP",[7,0]]},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"yP":{"opcode":"operator_add","next":null,"parent":"rW","inputs":{"NUM1":[1,[4,"0xFF41"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"X":{"opcode":"control_if_else","next":"r3","parent":"e=","inputs":{"CONDITION":[2,"sg"],"SUBSTACK":[2,"yQ"],"SUBSTACK2":[2,"I"]},"fields":{},"shadow":false,"topLevel":false},"sg":{"opcode":"operator_lt","next":null,"parent":"X","inputs":{"OPERAND1":[3,"yR",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yR":{"opcode":"data_itemoflist","next":null,"parent":"sg","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"yQ":{"opcode":"data_setvariableto","next":null,"parent":"X","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"I":{"opcode":"control_if_else","next":null,"parent":"X","inputs":{"CONDITION":[2,"sA"],"SUBSTACK":[2,"yS"],"SUBSTACK2":[2,"2"]},"fields":{},"shadow":false,"topLevel":false},"sA":{"opcode":"operator_lt","next":null,"parent":"I","inputs":{"OPERAND1":[3,"yT",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"yT":{"opcode":"data_itemoflist","next":null,"parent":"sA","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"yS":{"opcode":"data_setvariableto","next":null,"parent":"I","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"pP":{"opcode":"operator_lt","next":null,"parent":"2","inputs":{"OPERAND1":[3,"yU",[10,""]],"OPERAND2":[1,[10,"0x0A"]]},"fields":{},"shadow":false,"topLevel":false},"yU":{"opcode":"data_itemoflist","next":null,"parent":"pP","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xe":{"opcode":"data_setvariableto","next":null,"parent":"2","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"pQ":{"opcode":"operator_lt","next":null,"parent":"3","inputs":{"OPERAND1":[3,"yV",[10,""]],"OPERAND2":[1,[10,"0x0E"]]},"fields":{},"shadow":false,"topLevel":false},"yV":{"opcode":"data_itemoflist","next":null,"parent":"pQ","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xf":{"opcode":"data_setvariableto","next":null,"parent":"3","inputs":{"VALUE":[1,[10,"M1"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"pS":{"opcode":"operator_lt","next":null,"parent":"/","inputs":{"OPERAND1":[3,"yW",[10,""]],"OPERAND2":[1,[10,"0x14"]]},"fields":{},"shadow":false,"topLevel":false},"yW":{"opcode":"data_itemoflist","next":null,"parent":"pS","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xg":{"opcode":"data_setvariableto","next":null,"parent":"/","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"r3":{"opcode":"data_deletealloflist","next":"sB","parent":"X","inputs":{},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"sB":{"opcode":"data_deletealloflist","next":"sD","parent":"r3","inputs":{},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"sD":{"opcode":"data_deletealloflist","next":"rO","parent":"sB","inputs":{},"fields":{"LIST":[".vals","Sg#%}-2*EKW|ZXDbl4V7"]},"shadow":false,"topLevel":false},"rO":{"opcode":"data_addtolist","next":"r4","parent":"sD","inputs":{"ITEM":[1,[10,"80"]]},"fields":{"LIST":[".vals","Sg#%}-2*EKW|ZXDbl4V7"]},"shadow":false,"topLevel":false},"r4":{"opcode":"data_addtolist","next":"_","parent":"rO","inputs":{"ITEM":[1,[10,"248"]]},"fields":{"LIST":[".vals","Sg#%}-2*EKW|ZXDbl4V7"]},"shadow":false,"topLevel":false},"_":{"opcode":"control_if","next":"sP","parent":"r4","inputs":{"CONDITION":[2,"yX"],"SUBSTACK":[2,"e["]},"fields":{},"shadow":false,"topLevel":false},"yX":{"opcode":"operator_equals","next":null,"parent":"_","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e[":{"opcode":"control_repeat","next":"e]","parent":"_","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"yY"]},"fields":{},"shadow":false,"topLevel":false},"yY":{"opcode":"data_addtolist","next":null,"parent":"e[","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_PALETTE RAM","80s*CPv1XN%@|_(/A,i$"]},"shadow":false,"topLevel":false},"e]":{"opcode":"control_repeat","next":"r=","parent":"e[","inputs":{"TIMES":[1,[6,"64"]],"SUBSTACK":[2,"yZ"]},"fields":{},"shadow":false,"topLevel":false},"yZ":{"opcode":"data_addtolist","next":null,"parent":"e]","inputs":{"ITEM":[1,[10,"#000000"]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"r=":{"opcode":"data_deletealloflist","next":"aJ#","parent":"e]","inputs":{},"fields":{"LIST":["_GBCPALETTELOOKUP","co=Q#-C]T_}X,w7fOhbc"]},"shadow":false,"topLevel":false},"aJ#":{"opcode":"data_setvariableto","next":"e^","parent":"r=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"e^":{"opcode":"control_repeat","next":"r@","parent":"aJ#","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"r*"]},"fields":{},"shadow":false,"topLevel":false},"r*":{"opcode":"data_setvariableto","next":"e_","parent":"e^","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"e_":{"opcode":"control_repeat","next":"y0","parent":"r*","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"rY"]},"fields":{},"shadow":false,"topLevel":false},"rY":{"opcode":"data_setvariableto","next":"e`","parent":"e_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"e`":{"opcode":"control_repeat","next":"y1","parent":"rY","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"sR"]},"fields":{},"shadow":false,"topLevel":false},"sR":{"opcode":"procedures_call","next":"sS","parent":"e`","inputs":{"Z)slFb@i^:5x0#hGBpAT":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"XE32]O@is{EC2Zcc56iy":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]],"hV#jI?(JQL-U:E_qAsHK":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"color correct %s %s %s","argumentids":"[\"Z)slFb@i^:5x0#hGBpAT\",\"XE32]O@is{EC2Zcc56iy\",\"hV#jI?(JQL-U:E_qAsHK\"]","warp":"false"}},"sS":{"opcode":"data_addtolist","next":"y2","parent":"sR","inputs":{"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["_GBCPALETTELOOKUP","co=Q#-C]T_}X,w7fOhbc"]},"shadow":false,"topLevel":false},"y2":{"opcode":"data_changevariableby","next":null,"parent":"sS","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"y1":{"opcode":"data_changevariableby","next":null,"parent":"e`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"y0":{"opcode":"data_changevariableby","next":null,"parent":"e_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"r@":{"opcode":"data_setvariableto","next":"sU","parent":"e^","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"sU":{"opcode":"control_repeat","next":null,"parent":"r@","inputs":{"TIMES":[1,[6,"5"]],"SUBSTACK":[2,"^"]},"fields":{},"shadow":false,"topLevel":false},"^":{"opcode":"data_replaceitemoflist","next":"4","parent":"sU","inputs":{"INDEX":[3,"y3",[7,0]],"ITEM":[3,"y4",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"y3":{"opcode":"operator_add","next":null,"parent":"^","inputs":{"NUM1":[3,[12,"_A","[THklOWON,rz#pznmehC"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"y4":{"opcode":"operator_join","next":null,"parent":"^","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[1,[10,"F0F0F0"]]},"fields":{},"shadow":false,"topLevel":false},"y5":{"opcode":"operator_add","next":null,"parent":"4","inputs":{"NUM1":[3,[12,"_A","[THklOWON,rz#pznmehC"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"y6":{"opcode":"operator_join","next":null,"parent":"4","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[1,[10,"A0A0A0"]]},"fields":{},"shadow":false,"topLevel":false},"y7":{"opcode":"operator_add","next":null,"parent":"5","inputs":{"NUM1":[3,[12,"_A","[THklOWON,rz#pznmehC"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"y8":{"opcode":"operator_join","next":null,"parent":"5","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[1,[10,"505050"]]},"fields":{},"shadow":false,"topLevel":false},"y!":{"opcode":"operator_add","next":null,"parent":"7","inputs":{"NUM1":[3,[12,"_A","[THklOWON,rz#pznmehC"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"y#":{"opcode":"operator_join","next":null,"parent":"7","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[1,[10,"000000"]]},"fields":{},"shadow":false,"topLevel":false},"y9":{"opcode":"data_changevariableby","next":null,"parent":"7","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"sP":{"opcode":"data_deletealloflist","next":"e{","parent":"_","inputs":{},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"e{":{"opcode":"control_repeat","next":"e|","parent":"sP","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"y%"]},"fields":{},"shadow":false,"topLevel":false},"y%":{"opcode":"data_addtolist","next":null,"parent":"e{","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"e|":{"opcode":"procedures_call","next":"y(","parent":"e{","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"y)",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF47"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"y)":{"opcode":"operator_add","next":null,"parent":"e|","inputs":{"NUM1":[1,[4,""]],"NUM2":[1,[4,"0b11100100"]]},"fields":{},"shadow":false,"topLevel":false},"y(":{"opcode":"procedures_call","next":null,"parent":"e|","inputs":{"}yt+vYiKu?EdDKXFG?]9":[1,[10,"0xFF47"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*monodecode palettes address %s","argumentids":"[\"}yt+vYiKu?EdDKXFG?]9\"]","warp":"true"}},"r{":{"opcode":"operator_add","next":null,"parent":"r!","inputs":{"NUM1":[3,"r|",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"r|":{"opcode":"operator_mathop","next":null,"parent":"r{","inputs":{"NUM":[3,"r}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"r}":{"opcode":"operator_mod","next":null,"parent":"r|","inputs":{"NUM1":[3,"zm",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zm":{"opcode":"argument_reporter_string_number","next":null,"parent":"r}","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"sn":{"opcode":"event_broadcastandwait","next":"so","parent":"sm","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"so":{"opcode":"event_broadcast","next":"sW","parent":"sn","inputs":{"BROADCAST_INPUT":[1,[11,"create sound","O7?o@Pl6XR6dG~oq]ZEc"]]},"fields":{},"shadow":false,"topLevel":false},"sW":{"opcode":"procedures_call","next":"sX","parent":"so","inputs":{"1@-fWts|iPt]@`e5hF@F":[3,[12,"_ROM","od4rT?;Bw52y-r9gIuW2"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$load ROM %s","argumentids":"[\"1@-fWts|iPt]@`e5hF@F\"]","warp":"true"}},"sX":{"opcode":"procedures_call","next":"sY","parent":"sW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get game title","argumentids":"[]","warp":"true"}},"sY":{"opcode":"procedures_call","next":"sZ","parent":"sX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"__INIT","argumentids":"[]","warp":"true"}},"sZ":{"opcode":"procedures_call","next":"s0","parent":"sY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_setup","argumentids":"[]","warp":"true"}},"s0":{"opcode":"data_setvariableto","next":"s1","parent":"sZ","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"s1":{"opcode":"data_setvariableto","next":"r,","parent":"s0","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["time1","O*.$-nBOGKoJ7i+^Qwg2"]},"shadow":false,"topLevel":false},"r,":{"opcode":"data_setvariableto","next":"sp","parent":"s1","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["FPS","k_tzmxwQ^5),Egn!0L:3"]},"shadow":false,"topLevel":false},"sp":{"opcode":"event_broadcast","next":"sq","parent":"r,","inputs":{"BROADCAST_INPUT":[1,[11,"text","a^/anM#`b=kW!Z3.YYJW"]]},"fields":{},"shadow":false,"topLevel":false},"sq":{"opcode":"control_forever","next":null,"parent":"sp","inputs":{"SUBSTACK":[2,"bl%"]},"fields":{},"shadow":false,"topLevel":false},"bl%":{"opcode":"procedures_call","next":null,"parent":"sq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".loop","argumentids":"[]","warp":"true"}},"sE":{"opcode":"data_deletealloflist","next":"sF","parent":"sC","inputs":{},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"sF":{"opcode":"data_deletealloflist","next":"fd","parent":"sE","inputs":{},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"fd":{"opcode":"control_repeat","next":"fe","parent":"sF","inputs":{"TIMES":[1,[6,"40"]],"SUBSTACK":[2,"ff"]},"fields":{},"shadow":false,"topLevel":false},"ff":{"opcode":"data_setvariableto","next":"fg","parent":"fd","inputs":{"VALUE":[3,"sG",[10,""]]},"fields":{"VARIABLE":[".spritesize","FL2h%|upY.J#$}=ul8?a"]},"shadow":false,"topLevel":false},"sG":{"opcode":"operator_add","next":null,"parent":"ff","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"sH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"sH":{"opcode":"operator_multiply","next":null,"parent":"sG","inputs":{"NUM1":[3,"z4",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"z4":{"opcode":"operator_letter_of","next":null,"parent":"sH","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"fg":{"opcode":"procedures_call","next":"sI","parent":"ff","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"sJ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"sJ":{"opcode":"operator_add","next":null,"parent":"fg","inputs":{"NUM1":[1,[4,"0xFE00"]],"NUM2":[3,"bl(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bl(":{"opcode":"operator_multiply","next":null,"parent":"sJ","inputs":{"NUM1":[3,[12,"g","pI+E2RUGrnC0}Oxj[fQD"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"sI":{"opcode":"data_changevariableby","next":"aU","parent":"fg","inputs":{"VALUE":[1,[4,"-16"]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"fe":{"opcode":"control_if","next":null,"parent":"fd","inputs":{"CONDITION":[2,"z5"],"SUBSTACK":[2,"bl)"]},"fields":{},"shadow":false,"topLevel":false},"z5":{"opcode":"operator_equals","next":null,"parent":"fe","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bl)":{"opcode":"procedures_call","next":null,"parent":"fe","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*sort by x position","argumentids":"[]","warp":"true"}},"sN":{"opcode":"data_setvariableto","next":"sO","parent":"2i","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"sO":{"opcode":"data_setvariableto","next":"2c","parent":"sN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"sT":{"opcode":"data_changevariableby","next":"sV","parent":"2c","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"sV":{"opcode":"data_setvariableto","next":null,"parent":"sT","inputs":{"VALUE":[3,"s4",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"s4":{"opcode":"operator_join","next":null,"parent":"sV","inputs":{"STRING1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"STRING2":[3,"s5",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s5":{"opcode":"operator_add","next":null,"parent":"s4","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"2f",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z.":{"opcode":"data_itemoflist","next":null,"parent":"2f","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"pi":{"opcode":"data_itemoflist","next":null,"parent":"2f","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"sQ":{"opcode":"procedures_call","next":"s)","parent":"2c","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"s)":{"opcode":"data_addtolist","next":null,"parent":"sQ","inputs":{"ITEM":[3,"z}",[10,""]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"z}":{"opcode":"operator_add","next":null,"parent":"s)","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s7":{"opcode":"procedures_call","next":"s6","parent":"2a","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"s6":{"opcode":"data_addtolist","next":null,"parent":"s7","inputs":{"ITEM":[3,"o~",[10,""]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"o~":{"opcode":"operator_add","next":null,"parent":"s6","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s8":{"opcode":"control_repeat","next":null,"parent":"s%","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"rN"]},"fields":{},"shadow":false,"topLevel":false},"rN":{"opcode":"control_repeat","next":"y~","parent":"s8","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"s("]},"fields":{},"shadow":false,"topLevel":false},"s(":{"opcode":"data_setvariableto","next":"s9","parent":"rN","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"s9":{"opcode":"data_setvariableto","next":"fr","parent":"s(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"fr":{"opcode":"control_repeat","next":"s.","parent":"s9","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"s/"]},"fields":{},"shadow":false,"topLevel":false},"s/":{"opcode":"data_changevariableby","next":"td","parent":"fr","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"td":{"opcode":"data_setvariableto","next":null,"parent":"s/","inputs":{"VALUE":[3,"te",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"te":{"opcode":"operator_join","next":null,"parent":"td","inputs":{"STRING1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]],"STRING2":[3,"tS",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"tS":{"opcode":"operator_add","next":null,"parent":"te","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ty",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ty":{"opcode":"operator_not","next":null,"parent":"tS","inputs":{"OPERAND":[2,"fs"]},"fields":{},"shadow":false,"topLevel":false},"fs":{"opcode":"operator_equals","next":null,"parent":"ty","inputs":{"OPERAND1":[3,"za",[10,""]],"OPERAND2":[3,"zc",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"za":{"opcode":"data_itemoflist","next":null,"parent":"fs","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"zc":{"opcode":"data_itemoflist","next":null,"parent":"fs","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"s.":{"opcode":"procedures_call","next":"tD","parent":"fr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"tD":{"opcode":"data_addtolist","next":null,"parent":"s.","inputs":{"ITEM":[3,"zd",[10,""]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"zd":{"opcode":"operator_add","next":null,"parent":"tD","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"y~":{"opcode":"procedures_call","next":null,"parent":"rN","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"s}":{"opcode":"operator_add","next":null,"parent":"Z","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"zG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zG":{"opcode":"argument_reporter_string_number","next":null,"parent":"s}","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"t1":{"opcode":"data_itemoflist","next":null,"parent":"t*","inputs":{"INDEX":[3,"t2",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"t2":{"opcode":"operator_add","next":null,"parent":"t1","inputs":{"NUM1":[3,"fH",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fH":{"opcode":"operator_add","next":null,"parent":"t2","inputs":{"NUM1":[3,"tE",[4,0]],"NUM2":[3,"t4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"tE":{"opcode":"operator_multiply","next":null,"parent":"fH","inputs":{"NUM1":[3,"zM",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"zM":{"opcode":"data_itemoflist","next":null,"parent":"tE","inputs":{"INDEX":[3,[12,"_IFindex","qOvY4@JXH3Z=q*#gP*-="],[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"t4":{"opcode":"operator_subtract","next":null,"parent":"fH","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[3,"t5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"t5":{"opcode":"data_itemoflist","next":null,"parent":"t4","inputs":{"INDEX":[3,"tp",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"tp":{"opcode":"operator_add","next":null,"parent":"t5","inputs":{"NUM1":[3,"zN",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zN":{"opcode":"argument_reporter_string_number","next":null,"parent":"tp","inputs":{},"fields":{"VALUE":["bit",null]},"shadow":false,"topLevel":false},"tX":{"opcode":"data_itemoflist","next":null,"parent":"tQ","inputs":{"INDEX":[3,"tY",[7,0]]},"fields":{"LIST":["_DMGPALETTE","/|!9RA(;bcQML{0,LacV"]},"shadow":false,"topLevel":false},"tY":{"opcode":"operator_subtract","next":null,"parent":"tX","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"s@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"s@":{"opcode":"operator_mod","next":null,"parent":"tY","inputs":{"NUM1":[3,"s[",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"s[":{"opcode":"operator_mathop","next":null,"parent":"s@","inputs":{"NUM":[3,"zV",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zV":{"opcode":"operator_divide","next":null,"parent":"s[","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"t9":{"opcode":"data_itemoflist","next":null,"parent":"f(","inputs":{"INDEX":[3,"bl*",[7,0]]},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"bl*":{"opcode":"operator_subtract","next":null,"parent":"t9","inputs":{"NUM1":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"t(":{"opcode":"data_changevariableby","next":"t)","parent":"cN","inputs":{"VALUE":[1,[4,"-160"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"t)":{"opcode":"procedures_call","next":"t/","parent":"t(","inputs":{"):SP4qvVvViA4/C1vHGd":[1,[10,"159"]],"_8jVAd~okL#b.Jj@]rGV":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*goto %s %s","argumentids":"[\"):SP4qvVvViA4/C1vHGd\",\"_8jVAd~okL#b.Jj@]rGV\"]","warp":"true"}},"t/":{"opcode":"data_changevariableby","next":"tf","parent":"t)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"tf":{"opcode":"pen_penUp","next":"ti","parent":"t/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ti":{"opcode":"procedures_call","next":"f*","parent":"tf","inputs":{"):SP4qvVvViA4/C1vHGd":[1,[10,"0"]],"_8jVAd~okL#b.Jj@]rGV":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*goto %s %s","argumentids":"[\"):SP4qvVvViA4/C1vHGd\",\"_8jVAd~okL#b.Jj@]rGV\"]","warp":"true"}},"f*":{"opcode":"control_if","next":null,"parent":"ti","inputs":{"CONDITION":[2,"bl+"],"SUBSTACK":[2,"bl,"]},"fields":{},"shadow":false,"topLevel":false},"bl+":{"opcode":"operator_lt","next":null,"parent":"f*","inputs":{"OPERAND1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"bl,":{"opcode":"pen_penDown","next":null,"parent":"f*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"uq":{"opcode":"sensing_keypressed","next":null,"parent":"up","inputs":{"KEY_OPTION":[3,"bl-","bl."]},"fields":{},"shadow":false,"topLevel":false},"bl.":{"opcode":"sensing_keyoptions","next":null,"parent":null,"inputs":{},"fields":{"KEY_OPTION":["a",null]},"shadow":true,"topLevel":true,"x":66669,"y":572},"uU":{"opcode":"operator_subtract","next":null,"parent":"uT","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"bl/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bl/":{"opcode":"operator_mod","next":null,"parent":"uU","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"uW":{"opcode":"data_deletealloflist","next":"uX","parent":"uV","inputs":{},"fields":{"LIST":[".addr2ptr","`Nny$[X*@z~ce_9oE{M!"]},"shadow":false,"topLevel":false},"uX":{"opcode":"data_deletealloflist","next":"uY","parent":"uW","inputs":{},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"uY":{"opcode":"data_deletealloflist","next":"uZ","parent":"uX","inputs":{},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"uZ":{"opcode":"data_deletealloflist","next":"u0","parent":"uY","inputs":{},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"u0":{"opcode":"data_deletealloflist","next":"u1","parent":"uZ","inputs":{},"fields":{"LIST":[".ptr index","iA7(P88z*!*iQtK8@cy1"]},"shadow":false,"topLevel":false},"u1":{"opcode":"procedures_call","next":"u2","parent":"u0","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x4000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"2"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u2":{"opcode":"procedures_call","next":"u3","parent":"u1","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x4000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"2"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u3":{"opcode":"procedures_call","next":"c6","parent":"u2","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x2000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"c6":{"opcode":"control_repeat","next":"le","parent":"u3","inputs":{"TIMES":[3,"bl:",[6,0]],"SUBSTACK":[2,"bl;"]},"fields":{},"shadow":false,"topLevel":false},"bl:":{"opcode":"operator_multiply","next":null,"parent":"c6","inputs":{"NUM1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[4,0]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"bl;":{"opcode":"data_addtolist","next":null,"parent":"c6","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"le":{"opcode":"procedures_call","next":"Y","parent":"c6","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x2000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"0"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"Y":{"opcode":"control_if_else","next":"u4","parent":"le","inputs":{"CONDITION":[2,"u5"],"SUBSTACK":[2,"f3"],"SUBSTACK2":[2,"bl="]},"fields":{},"shadow":false,"topLevel":false},"u5":{"opcode":"operator_gt","next":null,"parent":"Y","inputs":{"OPERAND1":[3,"bl?",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bl?":{"opcode":"data_itemoflist","next":null,"parent":"u5","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"f3":{"opcode":"control_repeat","next":null,"parent":"Y","inputs":{"TIMES":[3,"u6",[6,0]],"SUBSTACK":[2,"bl@"]},"fields":{},"shadow":false,"topLevel":false},"u6":{"opcode":"operator_multiply","next":null,"parent":"f3","inputs":{"NUM1":[3,"bl[",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bl[":{"opcode":"data_itemoflist","next":null,"parent":"u6","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"bl@":{"opcode":"data_addtolist","next":null,"parent":"f3","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"bl=":{"opcode":"data_replaceitemoflist","next":null,"parent":"Y","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1000000"]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"u4":{"opcode":"procedures_call","next":"u7","parent":"Y","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x1000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u7":{"opcode":"procedures_call","next":"f}","parent":"u4","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x1000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"f}":{"opcode":"data_setvariableto","next":"0","parent":"u7","inputs":{"VALUE":[3,"bl]",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"bl]":{"opcode":"data_itemoflist","next":null,"parent":"f}","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"bj2":{"opcode":"operator_multiply","next":null,"parent":"0","inputs":{"NUM1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[4,0]],"NUM2":[1,[4,"0x7000"]]},"fields":{},"shadow":false,"topLevel":false},"bj3":{"opcode":"data_addtolist","next":null,"parent":"0","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"u8":{"opcode":"procedures_call","next":"u9","parent":"0","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x1000"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"0"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u9":{"opcode":"procedures_call","next":"f~","parent":"u8","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0xE00"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"0"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"f~":{"opcode":"control_repeat","next":"lf","parent":"u9","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"u!"]},"fields":{},"shadow":false,"topLevel":false},"u!":{"opcode":"data_deleteoflist","next":"bl^","parent":"f~","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":[".pointerStart",".7fdK[:S64[eA_H7p=d0"]},"shadow":false,"topLevel":false},"bl^":{"opcode":"data_deleteoflist","next":null,"parent":"u!","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"lf":{"opcode":"procedures_call","next":"u#","parent":"f~","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0xA0"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u#":{"opcode":"procedures_call","next":"u%","parent":"lf","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x60"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"0"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u%":{"opcode":"procedures_call","next":"u(","parent":"u#","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x80"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"u(":{"opcode":"procedures_call","next":"bl_","parent":"u%","inputs":{"om^^oOVzK$*Al}nbtf|T":[1,[10,"0x80"]],"cFd/Mk*-VD?)9)H2UXhD":[1,[10,"1"]],"`WvS3e1Vy[{],EST8Iz`":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_new pointer length %s map to ram %s offset %s","argumentids":"[\"om^^oOVzK$*Al}nbtf|T\",\"cFd/Mk*-VD?)9)H2UXhD\",\"`WvS3e1Vy[{],EST8Iz`\"]","warp":"false"}},"bl_":{"opcode":"data_replaceitemoflist","next":null,"parent":"u(","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"16384"]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"u.":{"opcode":"data_replaceitemoflist","next":null,"parent":"u-","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"u:",[10,""]]},"fields":{"LIST":[".ptr","pi,4q[J]J/T2U|O`6bdM"]},"shadow":false,"topLevel":false},"u:":{"opcode":"operator_multiply","next":null,"parent":"u.","inputs":{"NUM1":[3,"bl`",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bl`":{"opcode":"argument_reporter_string_number","next":null,"parent":"u:","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"u@":{"opcode":"procedures_call","next":"gf","parent":"ge","inputs":{"jIokstn|or8d;HHl7kTb":[1,[10,"0xFF15"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*decode sound from address %s","argumentids":"[\"jIokstn|or8d;HHl7kTb\"]","warp":"true"}},"gf":{"opcode":"data_replaceitemoflist","next":"gg","parent":"u@","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"bl{",[10,""]]},"fields":{"LIST":["voice","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"bl{":{"opcode":"data_itemoflist","next":null,"parent":"gf","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"gg":{"opcode":"procedures_call","next":"u[","parent":"gf","inputs":{"}DRO?vo$m2pjcuvV|8J+":[3,"bl|",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert GB freq to MIDI %s","argumentids":"[\"}DRO?vo$m2pjcuvV|8J+\"]","warp":"false"}},"bl|":{"opcode":"data_itemoflist","next":null,"parent":"gg","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"u[":{"opcode":"data_replaceitemoflist","next":"gh","parent":"gg","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"gh":{"opcode":"data_replaceitemoflist","next":"u]","parent":"u[","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"bl}",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"bl}":{"opcode":"data_itemoflist","next":null,"parent":"gh","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"u]":{"opcode":"procedures_call","next":"gi","parent":"gh","inputs":{"jIokstn|or8d;HHl7kTb":[1,[10,"0xFF1A"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*decode sound from address %s","argumentids":"[\"jIokstn|or8d;HHl7kTb\"]","warp":"true"}},"gi":{"opcode":"procedures_call","next":"u^","parent":"u]","inputs":{"}DRO?vo$m2pjcuvV|8J+":[3,"bl~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert GB freq to MIDI %s","argumentids":"[\"}DRO?vo$m2pjcuvV|8J+\"]","warp":"false"}},"bl~":{"opcode":"data_itemoflist","next":null,"parent":"gi","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"u^":{"opcode":"data_replaceitemoflist","next":"gj","parent":"gi","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"gj":{"opcode":"data_replaceitemoflist","next":"u_","parent":"u^","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"u`",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"u`":{"opcode":"operator_mathop","next":null,"parent":"gj","inputs":{"NUM":[3,"u{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"u{":{"opcode":"operator_divide","next":null,"parent":"u`","inputs":{"NUM1":[1,[4,"15"]],"NUM2":[3,"u|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"u|":{"opcode":"data_itemoflist","next":null,"parent":"u{","inputs":{"INDEX":[3,"u}",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"u}":{"opcode":"operator_add","next":null,"parent":"u|","inputs":{"NUM1":[3,"u~",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"u~":{"opcode":"operator_letter_of","next":null,"parent":"u}","inputs":{"LETTER":[3,"va",[6,0]],"STRING":[1,[10,"4012"]]},"fields":{},"shadow":false,"topLevel":false},"va":{"opcode":"operator_add","next":null,"parent":"u~","inputs":{"NUM1":[3,"vb",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vb":{"opcode":"operator_mathop","next":null,"parent":"va","inputs":{"NUM":[3,"vc",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"vc":{"opcode":"operator_divide","next":null,"parent":"vb","inputs":{"NUM1":[3,"vd",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vd":{"opcode":"operator_mod","next":null,"parent":"vc","inputs":{"NUM1":[3,"bma",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bma":{"opcode":"data_itemoflist","next":null,"parent":"vd","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"u_":{"opcode":"data_setvariableto","next":"ve","parent":"gj","inputs":{"VALUE":[1,[10,"0xFF30"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"ve":{"opcode":"data_deletealloflist","next":"gk","parent":"u_","inputs":{},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"gk":{"opcode":"control_repeat","next":"vf","parent":"ve","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"vg"]},"fields":{},"shadow":false,"topLevel":false},"vg":{"opcode":"procedures_call","next":"vh","parent":"gk","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"vh":{"opcode":"data_changevariableby","next":"gl","parent":"vg","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"gl":{"opcode":"data_addtolist","next":"vi","parent":"vh","inputs":{"ITEM":[3,"vj",[10,""]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"vj":{"opcode":"operator_mod","next":null,"parent":"gl","inputs":{"NUM1":[3,"vk",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"vk":{"opcode":"operator_mathop","next":null,"parent":"vj","inputs":{"NUM":[3,"bmb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmb":{"opcode":"operator_divide","next":null,"parent":"vk","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"vi":{"opcode":"data_addtolist","next":null,"parent":"gl","inputs":{"ITEM":[3,"vl",[10,""]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"vl":{"opcode":"operator_mod","next":null,"parent":"vi","inputs":{"NUM1":[3,"vm",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"vm":{"opcode":"operator_mathop","next":null,"parent":"vl","inputs":{"NUM":[3,"bmc",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmc":{"opcode":"operator_divide","next":null,"parent":"vm","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vf":{"opcode":"procedures_call","next":"gm","parent":"gk","inputs":{"jIokstn|or8d;HHl7kTb":[1,[10,"0xFF1F"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*decode sound from address %s","argumentids":"[\"jIokstn|or8d;HHl7kTb\"]","warp":"true"}},"gm":{"opcode":"data_replaceitemoflist","next":"cF","parent":"vf","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"vn",[10,""]]},"fields":{"LIST":["voice","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"vn":{"opcode":"operator_mod","next":null,"parent":"gm","inputs":{"NUM1":[3,"vo",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vo":{"opcode":"operator_mathop","next":null,"parent":"vn","inputs":{"NUM":[3,"vp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"vp":{"opcode":"operator_divide","next":null,"parent":"vo","inputs":{"NUM1":[3,"bmd",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bmd":{"opcode":"data_itemoflist","next":null,"parent":"vp","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"cF":{"opcode":"control_if","next":"gn","parent":"gm","inputs":{"CONDITION":[2,"vq"],"SUBSTACK":[2,"vr"]},"fields":{},"shadow":false,"topLevel":false},"vq":{"opcode":"operator_equals","next":null,"parent":"cF","inputs":{"OPERAND1":[3,"vs",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vs":{"opcode":"operator_mod","next":null,"parent":"vq","inputs":{"NUM1":[3,"bme",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bme":{"opcode":"data_itemoflist","next":null,"parent":"vs","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"vr":{"opcode":"data_replaceitemoflist","next":null,"parent":"cF","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"vt",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"vt":{"opcode":"operator_add","next":null,"parent":"vr","inputs":{"NUM1":[3,"bmf",[4,0]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"bmf":{"opcode":"data_itemoflist","next":null,"parent":"vt","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"gn":{"opcode":"procedures_call","next":"vu","parent":"cF","inputs":{"ZDEsc-gw?9/i2O@/y^Q,":[3,"go",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"+convert freq to midi %s","argumentids":"[\"ZDEsc-gw?9/i2O@/y^Q,\"]","warp":"true"}},"go":{"opcode":"operator_divide","next":null,"parent":"gn","inputs":{"NUM1":[3,"vv",[4,0]],"NUM2":[3,"vw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vv":{"opcode":"operator_divide","next":null,"parent":"go","inputs":{"NUM1":[1,[4,"32768"]],"NUM2":[3,"vx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vx":{"opcode":"operator_mod","next":null,"parent":"vv","inputs":{"NUM1":[3,"bmg",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bmg":{"opcode":"data_itemoflist","next":null,"parent":"vx","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"vw":{"opcode":"operator_multiply","next":null,"parent":"go","inputs":{"NUM1":[3,"vy",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vy":{"opcode":"data_itemoflist","next":null,"parent":"vw","inputs":{"INDEX":[3,"vz",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"vz":{"opcode":"operator_add","next":null,"parent":"vy","inputs":{"NUM1":[3,"vA",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vA":{"opcode":"operator_mathop","next":null,"parent":"vz","inputs":{"NUM":[3,"vB",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"vB":{"opcode":"operator_divide","next":null,"parent":"vA","inputs":{"NUM1":[3,"bmh",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bmh":{"opcode":"data_itemoflist","next":null,"parent":"vB","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"vu":{"opcode":"data_replaceitemoflist","next":"gp","parent":"gn","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"gp":{"opcode":"data_replaceitemoflist","next":"vC","parent":"vu","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"bmi",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"bmi":{"opcode":"data_itemoflist","next":null,"parent":"gp","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"vC":{"opcode":"procedures_call","next":"gq","parent":"gp","inputs":{"0]ODgc:bK{?ML[NsH|O.":[1,[10,"0xFF24"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"gq":{"opcode":"data_setvariableto","next":"gr","parent":"vC","inputs":{"VALUE":[3,"vD",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"vD":{"opcode":"operator_divide","next":null,"parent":"gq","inputs":{"NUM1":[3,"bmj",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bmj":{"opcode":"operator_mod","next":null,"parent":"vD","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"gr":{"opcode":"data_replaceitemoflist","next":"gs","parent":"gq","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"vE",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"vE":{"opcode":"operator_multiply","next":null,"parent":"gr","inputs":{"NUM1":[3,"bmk",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bmk":{"opcode":"data_itemoflist","next":null,"parent":"vE","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"gs":{"opcode":"data_replaceitemoflist","next":"gt","parent":"gr","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"vF",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"vF":{"opcode":"operator_multiply","next":null,"parent":"gs","inputs":{"NUM1":[3,"bml",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bml":{"opcode":"data_itemoflist","next":null,"parent":"vF","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"gt":{"opcode":"data_replaceitemoflist","next":"gu","parent":"gs","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"vG",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"vG":{"opcode":"operator_multiply","next":null,"parent":"gt","inputs":{"NUM1":[3,"bmm",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bmm":{"opcode":"data_itemoflist","next":null,"parent":"vG","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"gu":{"opcode":"data_replaceitemoflist","next":"vH","parent":"gt","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"vI",[10,""]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"vI":{"opcode":"operator_multiply","next":null,"parent":"gu","inputs":{"NUM1":[3,"bmn",[4,0]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bmn":{"opcode":"data_itemoflist","next":null,"parent":"vI","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"vH":{"opcode":"procedures_call","next":"gv","parent":"gu","inputs":{"0]ODgc:bK{?ML[NsH|O.":[1,[10,"0xFF25"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"gv":{"opcode":"data_replaceitemoflist","next":"gw","parent":"vH","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"gx",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"gx":{"opcode":"operator_subtract","next":null,"parent":"gv","inputs":{"NUM1":[3,"vJ",[4,0]],"NUM2":[3,"vK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vJ":{"opcode":"operator_mod","next":null,"parent":"gx","inputs":{"NUM1":[3,"vL",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vL":{"opcode":"operator_mathop","next":null,"parent":"vJ","inputs":{"NUM":[3,"bmo",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmo":{"opcode":"operator_divide","next":null,"parent":"vL","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vK":{"opcode":"operator_mod","next":null,"parent":"gx","inputs":{"NUM1":[3,"vM",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vM":{"opcode":"operator_mathop","next":null,"parent":"vK","inputs":{"NUM":[3,"bmp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmp":{"opcode":"operator_divide","next":null,"parent":"vM","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"gw":{"opcode":"data_replaceitemoflist","next":"gy","parent":"gv","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"gz",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"gz":{"opcode":"operator_subtract","next":null,"parent":"gw","inputs":{"NUM1":[3,"vN",[4,0]],"NUM2":[3,"vO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vN":{"opcode":"operator_mod","next":null,"parent":"gz","inputs":{"NUM1":[3,"vP",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vP":{"opcode":"operator_mathop","next":null,"parent":"vN","inputs":{"NUM":[3,"ph",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ph":{"opcode":"operator_divide","next":null,"parent":"vP","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vO":{"opcode":"operator_mod","next":null,"parent":"gz","inputs":{"NUM1":[3,"vQ",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vQ":{"opcode":"operator_mathop","next":null,"parent":"vO","inputs":{"NUM":[3,"z7",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"z7":{"opcode":"operator_divide","next":null,"parent":"vQ","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"gy":{"opcode":"data_replaceitemoflist","next":"vR","parent":"gw","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"gA",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"gA":{"opcode":"operator_subtract","next":null,"parent":"gy","inputs":{"NUM1":[3,"vS",[4,0]],"NUM2":[3,"vT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vS":{"opcode":"operator_mod","next":null,"parent":"gA","inputs":{"NUM1":[3,"vU",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vU":{"opcode":"operator_mathop","next":null,"parent":"vS","inputs":{"NUM":[3,"z8",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"z8":{"opcode":"operator_divide","next":null,"parent":"vU","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"vT":{"opcode":"operator_mod","next":null,"parent":"gA","inputs":{"NUM1":[3,"vV",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vV":{"opcode":"operator_mathop","next":null,"parent":"vT","inputs":{"NUM":[3,"z9",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"z9":{"opcode":"operator_divide","next":null,"parent":"vV","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"vR":{"opcode":"data_replaceitemoflist","next":null,"parent":"gy","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"gB",[10,""]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"gB":{"opcode":"operator_subtract","next":null,"parent":"vR","inputs":{"NUM1":[3,"vW",[4,0]],"NUM2":[3,"vX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"vW":{"opcode":"operator_mod","next":null,"parent":"gB","inputs":{"NUM1":[3,"vY",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vY":{"opcode":"operator_mathop","next":null,"parent":"vW","inputs":{"NUM":[3,"z!",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"z!":{"opcode":"operator_divide","next":null,"parent":"vY","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"vX":{"opcode":"operator_mod","next":null,"parent":"gB","inputs":{"NUM1":[3,"vZ",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vZ":{"opcode":"operator_mathop","next":null,"parent":"vX","inputs":{"NUM":[3,"z#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"z#":{"opcode":"operator_divide","next":null,"parent":"vZ","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"v.":{"opcode":"procedures_call","next":null,"parent":"cX","inputs":{"~Jf?bmbem=nf?6IK-)/W":[3,"z`",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~MISC %s","argumentids":"[\"~Jf?bmbem=nf?6IK-)/W\"]","warp":"true"}},"z`":{"opcode":"operator_letter_of","next":null,"parent":"v.","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v^":{"opcode":"data_itemoflist","next":null,"parent":"gQ","inputs":{"INDEX":[3,"F:",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"F:":{"opcode":"operator_letter_of","next":null,"parent":"v^","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v~":{"opcode":"procedures_call","next":null,"parent":"{","inputs":{"X=^YhHSUx1p27dRVvTfr":[3,"El",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADDSPI8/LDHLSP+I8 %s","argumentids":"[\"X=^YhHSUx1p27dRVvTfr\"]","warp":"true"}},"El":{"opcode":"operator_letter_of","next":null,"parent":"v~","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wc":{"opcode":"data_setvariableto","next":"wd","parent":"wb","inputs":{"VALUE":[1,[10,"ABCDEFGHIJKLMNOPQRSTUVWXYZ"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"wd":{"opcode":"data_setvariableto","next":"we","parent":"wc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"we":{"opcode":"data_deletealloflist","next":"gT","parent":"wd","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"gT":{"opcode":"control_repeat","next":"wf","parent":"we","inputs":{"TIMES":[1,[6,"26"]],"SUBSTACK":[2,"wg"]},"fields":{},"shadow":false,"topLevel":false},"wg":{"opcode":"data_changevariableby","next":"wh","parent":"gT","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"wh":{"opcode":"data_addtolist","next":null,"parent":"wg","inputs":{"ITEM":[3,"En",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"En":{"opcode":"operator_letter_of","next":null,"parent":"wh","inputs":{"LETTER":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[6,0]],"STRING":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wf":{"opcode":"data_setvariableto","next":"wi","parent":"gT","inputs":{"VALUE":[1,[10,"~ J23 K023 L+23 M+2 M-2 A2U V0 B0SP D23 K123 L-23 M+3 M-3 A3U V1 B1STOP J45 K045 L+45 M+4 M-4 A4U W0 N0 D45 K145 L-45 M+5 M-5 A5U W1 N110 J78 K078+ L+78 M+7 M-7 A7U B2DAA N111 D78 K178+ L-78 M+8 M-8 A8U B3CPL N140 JSP K078- L+SP M+9 M-9 A9U B4SCF N141 DSP K178- L-SP M+1 M-1 A1U B5CCF A22 A23 A24 A25 A27 A28 A29 A21 A32 A33 A34 A35 A37 A38 A39 A31 A42 A43 A44 A45 A47 A48 A49 A41 A52 A53 A54 A55 A57 A58 A59 A51 A72 A73 A74 A75 A77 A78 A79 A71 A82 A83 A84 A85 A87 A88 A89 A81 A92 A93 A94 A95 A97 A98 B6HALT A91 A12 A13 A14 A15 A17 A18 A19 A11 E02 E03 E04 E05 E07 E08 E09 E01 E12 E13 E14 E15 E17 E18 E19 E11 F02 F03 F04 F05 F07 F08 F09 F01 F12 F13 F14 F15 F17 F18 F19 F11 G02 G03 G04 G05 G07 G08 G09 G01 H02 H03 H04 H05 H07 H08 H09 H01 I02 I03 I04 I05 I07 I08 I09 I01 F22 F23 F24 F25 F27 F28 F29 F21 O110 R23 P110 P000 Q110 S23 E0U T0 O111 O000 P111 B7CB Q111 Q000 E1U T1 O140 R45 P140 - Q140 S45 F0U T2 O141 O200 P141 - Q141 - F1U T3 X0U R78 X03 - - S78 G0U T4 Y0 U0 Z0 - - - H0U T5 X1U R16 X13 C0 - S16 I0U T6 Y1 U1 Z1 C1 - - F2U T7"]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"wi":{"opcode":"data_setvariableto","next":"wj","parent":"wf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"wj":{"opcode":"data_setvariableto","next":"wk","parent":"wi","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"wk":{"opcode":"data_deletealloflist","next":"|","parent":"wj","inputs":{},"fields":{"LIST":["_instrParam","`KBp;:YVz$LYqY:-@q%C"]},"shadow":false,"topLevel":false},"|":{"opcode":"control_repeat","next":"wl","parent":"wk","inputs":{"TIMES":[3,"Eo",[6,0]],"SUBSTACK":[2,"wm"]},"fields":{},"shadow":false,"topLevel":false},"Eo":{"opcode":"operator_length","next":null,"parent":"|","inputs":{"STRING":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wm":{"opcode":"data_changevariableby","next":"]","parent":"|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"]":{"opcode":"control_if_else","next":null,"parent":"wm","inputs":{"CONDITION":[2,"wn"],"SUBSTACK":[2,"wo"],"SUBSTACK2":[2,"wp"]},"fields":{},"shadow":false,"topLevel":false},"wn":{"opcode":"operator_equals","next":null,"parent":"]","inputs":{"OPERAND1":[3,"F`",[10,""]],"OPERAND2":[1,[10," "]]},"fields":{},"shadow":false,"topLevel":false},"F`":{"opcode":"operator_letter_of","next":null,"parent":"wn","inputs":{"LETTER":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[6,0]],"STRING":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wo":{"opcode":"data_addtolist","next":"Gv","parent":"]","inputs":{"ITEM":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]]},"fields":{"LIST":["_instrParam","`KBp;:YVz$LYqY:-@q%C"]},"shadow":false,"topLevel":false},"Gv":{"opcode":"data_setvariableto","next":null,"parent":"wo","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"wp":{"opcode":"data_setvariableto","next":null,"parent":"]","inputs":{"VALUE":[3,"wq",[10,""]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"wq":{"opcode":"operator_join","next":null,"parent":"wp","inputs":{"STRING1":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]],"STRING2":[3,"Gw",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Gw":{"opcode":"operator_letter_of","next":null,"parent":"wq","inputs":{"LETTER":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[6,0]],"STRING":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wl":{"opcode":"data_addtolist","next":"wr","parent":"|","inputs":{"ITEM":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]]},"fields":{"LIST":["_instrParam","`KBp;:YVz$LYqY:-@q%C"]},"shadow":false,"topLevel":false},"wr":{"opcode":"data_setvariableto","next":"ws","parent":"wl","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"ws":{"opcode":"data_deletealloflist","next":"wt","parent":"wr","inputs":{},"fields":{"LIST":["_instrIDs","OsR*`-9=L4[RoZqDaF|B"]},"shadow":false,"topLevel":false},"wt":{"opcode":"data_setvariableto","next":"wu","parent":"ws","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"wu":{"opcode":"control_repeat","next":null,"parent":"wt","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"wv"]},"fields":{},"shadow":false,"topLevel":false},"wv":{"opcode":"data_changevariableby","next":"ww","parent":"wu","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"ww":{"opcode":"data_addtolist","next":null,"parent":"wv","inputs":{"ITEM":[3,"wx",[10,""]]},"fields":{"LIST":["_instrIDs","OsR*`-9=L4[RoZqDaF|B"]},"shadow":false,"topLevel":false},"wx":{"opcode":"data_itemnumoflist","next":null,"parent":"ww","inputs":{"ITEM":[3,"eu",[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"eu":{"opcode":"operator_letter_of","next":null,"parent":"wx","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,"F/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"F/":{"opcode":"data_itemoflist","next":null,"parent":"eu","inputs":{"INDEX":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[7,0]]},"fields":{"LIST":["_instrParam","`KBp;:YVz$LYqY:-@q%C"]},"shadow":false,"topLevel":false},"D|":{"opcode":"operator_equals","next":null,"parent":"x","inputs":{"OPERAND1":[3,"D~",[10,""]],"OPERAND2":[1,[10,"153"]]},"fields":{},"shadow":false,"topLevel":false},"D~":{"opcode":"operator_multiply","next":null,"parent":"D|","inputs":{"NUM1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[4,0]],"NUM2":[3,"I-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"I-":{"opcode":"operator_gt","next":null,"parent":"D~","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"jQ":{"opcode":"data_setvariableto","next":"J,","parent":"F7","inputs":{"VALUE":[3,"F8",[10,""]]},"fields":{"VARIABLE":["-SCXMOD8","!#:owuhU@|TD~fX?SQd0"]},"shadow":false,"topLevel":false},"F8":{"opcode":"operator_mod","next":null,"parent":"jQ","inputs":{"NUM1":[3,"F9",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"F9":{"opcode":"data_itemoflist","next":null,"parent":"F8","inputs":{"INDEX":[3,"J-",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"J-":{"opcode":"operator_add","next":null,"parent":"F9","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"J,":{"opcode":"control_stop","next":null,"parent":"jQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"jU":{"opcode":"operator_or","next":null,"parent":"n","inputs":{"OPERAND1":[2,"jX"],"OPERAND2":[2,"GE"]},"fields":{},"shadow":false,"topLevel":false},"jX":{"opcode":"operator_or","next":null,"parent":"jU","inputs":{"OPERAND1":[2,"GF"],"OPERAND2":[2,"jY"]},"fields":{},"shadow":false,"topLevel":false},"GF":{"opcode":"operator_lt","next":null,"parent":"jX","inputs":{"OPERAND1":[3,"J_",[10,""]],"OPERAND2":[3,[12,"-wx","]j0JoR^IRmZ%Dqa1U-3t"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J_":{"opcode":"argument_reporter_string_number","next":null,"parent":"GF","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"jY":{"opcode":"operator_lt","next":null,"parent":"jX","inputs":{"OPERAND1":[3,"J`",[10,""]],"OPERAND2":[3,"GG",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J`":{"opcode":"argument_reporter_string_number","next":null,"parent":"jY","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"GG":{"opcode":"data_itemoflist","next":null,"parent":"jY","inputs":{"INDEX":[3,"J{",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"J{":{"opcode":"operator_add","next":null,"parent":"GG","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"GE":{"opcode":"operator_equals","next":null,"parent":"jU","inputs":{"OPERAND1":[3,"J|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"J|":{"opcode":"operator_letter_of","next":null,"parent":"GE","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jZ":{"opcode":"data_setvariableto","next":"GI","parent":"jV","inputs":{"VALUE":[3,"j0",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"j0":{"opcode":"operator_add","next":null,"parent":"jZ","inputs":{"NUM1":[3,"c_",[4,0]],"NUM2":[3,"EI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"c_":{"opcode":"argument_reporter_string_number","next":null,"parent":"j0","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"EI":{"opcode":"data_itemoflist","next":null,"parent":"j0","inputs":{"INDEX":[3,"iO",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"iO":{"opcode":"operator_add","next":null,"parent":"EI","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"GI":{"opcode":"data_setvariableto","next":null,"parent":"jZ","inputs":{"VALUE":[3,"EJ",[10,""]]},"fields":{"VARIABLE":[".tileB","a^B*+PC_g3)^{A!L}XWv"]},"shadow":false,"topLevel":false},"EJ":{"opcode":"operator_add","next":null,"parent":"GI","inputs":{"NUM1":[1,[4,"0x9800"]],"NUM2":[3,"EK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"EK":{"opcode":"operator_multiply","next":null,"parent":"EJ","inputs":{"NUM1":[1,[4,"1024"]],"NUM2":[3,"c`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"c`":{"opcode":"operator_letter_of","next":null,"parent":"EK","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j4":{"opcode":"data_setvariableto","next":"a9","parent":"ET","inputs":{"VALUE":[3,"E6",[10,""]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"E6":{"opcode":"operator_add","next":null,"parent":"j4","inputs":{"NUM1":[3,[12,".tileB","a^B*+PC_g3)^{A!L}XWv"],[4,0]],"NUM2":[3,"j5",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"j5":{"opcode":"operator_add","next":null,"parent":"E6","inputs":{"NUM1":[3,"E7",[4,0]],"NUM2":[3,"E8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E7":{"opcode":"operator_multiply","next":null,"parent":"j5","inputs":{"NUM1":[3,"E/",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"E/":{"opcode":"operator_mod","next":null,"parent":"E7","inputs":{"NUM1":[3,"E:",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"E:":{"opcode":"operator_mathop","next":null,"parent":"E/","inputs":{"NUM":[3,"Kx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Kx":{"opcode":"operator_divide","next":null,"parent":"E:","inputs":{"NUM1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"E8":{"opcode":"operator_mod","next":null,"parent":"j5","inputs":{"NUM1":[3,"E;",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"E;":{"opcode":"operator_mathop","next":null,"parent":"E8","inputs":{"NUM":[3,"Ky",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ky":{"opcode":"operator_divide","next":null,"parent":"E;","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a9":{"opcode":"control_if","next":"E=","parent":"j4","inputs":{"CONDITION":[2,"Kz"],"SUBSTACK":[2,"E?"]},"fields":{},"shadow":false,"topLevel":false},"Kz":{"opcode":"operator_equals","next":null,"parent":"a9","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E?":{"opcode":"procedures_call","next":"j6","parent":"a9","inputs":{"`s7r9W7Nszb-8fnH!Beo":[1,[10,"1"]],"}_+-M9{0LDsd:%$c1dNn":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"j6":{"opcode":"data_setvariableto","next":"j7","parent":"E?","inputs":{"VALUE":[3,"E@",[10,""]]},"fields":{"VARIABLE":["T5","WhM=KlgvY@V6x|(`!06Q"]},"shadow":false,"topLevel":false},"E@":{"opcode":"data_itemoflist","next":null,"parent":"j6","inputs":{"INDEX":[3,"KA",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"KA":{"opcode":"operator_add","next":null,"parent":"E@","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"j7":{"opcode":"data_setvariableto","next":"j8","parent":"j6","inputs":{"VALUE":[3,"KB",[10,""]]},"fields":{"VARIABLE":["@PAL","Tj+w!/(PV_!`zhKO@qb%"]},"shadow":false,"topLevel":false},"KB":{"opcode":"operator_mod","next":null,"parent":"j7","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"j8":{"opcode":"data_setvariableto","next":"j9","parent":"j7","inputs":{"VALUE":[3,"KC",[10,""]]},"fields":{"VARIABLE":[".Mpri",";.CEwXh;.U;z^iL6kY}4"]},"shadow":false,"topLevel":false},"KC":{"opcode":"operator_letter_of","next":null,"parent":"j8","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j9":{"opcode":"data_setvariableto","next":"j!","parent":"j8","inputs":{"VALUE":[3,"KD",[10,""]]},"fields":{"VARIABLE":[".vbank","F-[0c$U5I;6bxPbW?^5C"]},"shadow":false,"topLevel":false},"KD":{"opcode":"operator_letter_of","next":null,"parent":"j9","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j!":{"opcode":"data_setvariableto","next":"a!","parent":"j9","inputs":{"VALUE":[3,"KE",[10,""]]},"fields":{"VARIABLE":[".Spri",";gzI_,?`HaxU*b,C$z,M"]},"shadow":false,"topLevel":false},"KE":{"opcode":"operator_letter_of","next":null,"parent":"j!","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a!":{"opcode":"control_if","next":"j#","parent":"j!","inputs":{"CONDITION":[2,"E["],"SUBSTACK":[2,"E]"]},"fields":{},"shadow":false,"topLevel":false},"E[":{"opcode":"operator_equals","next":null,"parent":"a!","inputs":{"OPERAND1":[3,"KF",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KF":{"opcode":"operator_letter_of","next":null,"parent":"E[","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"E]":{"opcode":"data_setvariableto","next":null,"parent":"a!","inputs":{"VALUE":[3,"KG",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"KG":{"opcode":"operator_subtract","next":null,"parent":"E]","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"j#":{"opcode":"control_if","next":null,"parent":"a!","inputs":{"CONDITION":[2,"Eb"],"SUBSTACK":[2,"Ec"]},"fields":{},"shadow":false,"topLevel":false},"Eb":{"opcode":"operator_equals","next":null,"parent":"j#","inputs":{"OPERAND1":[3,"KH",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KH":{"opcode":"operator_letter_of","next":null,"parent":"Eb","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ec":{"opcode":"data_setvariableto","next":null,"parent":"j#","inputs":{"VALUE":[3,"KI",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"KI":{"opcode":"operator_subtract","next":null,"parent":"Ec","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E=":{"opcode":"procedures_call","next":"bU","parent":"a9","inputs":{"`s7r9W7Nszb-8fnH!Beo":[1,[10,"0"]],"}_+-M9{0LDsd:%$c1dNn":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"bU":{"opcode":"control_if_else","next":"j(","parent":"E=","inputs":{"CONDITION":[2,"j)"],"SUBSTACK":[2,"KJ"],"SUBSTACK2":[2,"KK"]},"fields":{},"shadow":false,"topLevel":false},"j)":{"opcode":"operator_or","next":null,"parent":"bU","inputs":{"OPERAND1":[2,"l)"],"OPERAND2":[2,"KL"]},"fields":{},"shadow":false,"topLevel":false},"l)":{"opcode":"operator_equals","next":null,"parent":"j)","inputs":{"OPERAND1":[3,"KM",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KM":{"opcode":"operator_letter_of","next":null,"parent":"l)","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"KL":{"opcode":"operator_gt","next":null,"parent":"j)","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"KJ":{"opcode":"data_setvariableto","next":null,"parent":"bU","inputs":{"VALUE":[1,[10,"0x8000"]]},"fields":{"VARIABLE":[".tileB","a^B*+PC_g3)^{A!L}XWv"]},"shadow":false,"topLevel":false},"KK":{"opcode":"data_setvariableto","next":null,"parent":"bU","inputs":{"VALUE":[1,[10,"0x9000"]]},"fields":{"VARIABLE":[".tileB","a^B*+PC_g3)^{A!L}XWv"]},"shadow":false,"topLevel":false},"j(":{"opcode":"data_setvariableto","next":"j*","parent":"bU","inputs":{"VALUE":[3,"l=",[10,""]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"l=":{"opcode":"operator_add","next":null,"parent":"j(","inputs":{"NUM1":[3,[12,".tileB","a^B*+PC_g3)^{A!L}XWv"],[4,0]],"NUM2":[3,"j+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"j+":{"opcode":"operator_add","next":null,"parent":"l=","inputs":{"NUM1":[3,"KN",[4,0]],"NUM2":[3,"l*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"KN":{"opcode":"operator_multiply","next":null,"parent":"j+","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"l*":{"opcode":"operator_multiply","next":null,"parent":"j+","inputs":{"NUM1":[3,"da",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"da":{"opcode":"operator_mod","next":null,"parent":"l*","inputs":{"NUM1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"j*":{"opcode":"data_setvariableto","next":"l+","parent":"j(","inputs":{"VALUE":[3,"fA",[10,""]]},"fields":{"VARIABLE":["T11","tGe/Wd:o59i4QQ9}C^)o"]},"shadow":false,"topLevel":false},"fA":{"opcode":"operator_subtract","next":null,"parent":"j*","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"db",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"db":{"opcode":"operator_mod","next":null,"parent":"fA","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"l+":{"opcode":"procedures_call","next":"j,","parent":"j*","inputs":{"`s7r9W7Nszb-8fnH!Beo":[3,[12,".vbank","F-[0c$U5I;6bxPbW?^5C"],[10,""]],"}_+-M9{0LDsd:%$c1dNn":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"j,":{"opcode":"data_setvariableto","next":"j-","parent":"l+","inputs":{"VALUE":[3,"l,",[10,""]]},"fields":{"VARIABLE":["@PIX","RJLtSXRx71$[%`nwOBtM"]},"shadow":false,"topLevel":false},"l,":{"opcode":"operator_mod","next":null,"parent":"j,","inputs":{"NUM1":[3,"l-",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"l-":{"opcode":"operator_mathop","next":null,"parent":"l,","inputs":{"NUM":[3,"l.",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"l.":{"opcode":"operator_divide","next":null,"parent":"l-","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"df",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"df":{"opcode":"data_itemoflist","next":null,"parent":"l.","inputs":{"INDEX":[3,[12,"T11","tGe/Wd:o59i4QQ9}C^)o"],[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"j-":{"opcode":"procedures_call","next":"l/","parent":"j,","inputs":{"`s7r9W7Nszb-8fnH!Beo":[3,[12,".vbank","F-[0c$U5I;6bxPbW?^5C"],[10,""]],"}_+-M9{0LDsd:%$c1dNn":[3,"dh",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"dh":{"opcode":"operator_add","next":null,"parent":"j-","inputs":{"NUM1":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"l/":{"opcode":"data_changevariableby","next":null,"parent":"j-","inputs":{"VALUE":[3,"l:",[4,0]]},"fields":{"VARIABLE":["@PIX","RJLtSXRx71$[%`nwOBtM"]},"shadow":false,"topLevel":false},"l:":{"opcode":"operator_multiply","next":null,"parent":"l/","inputs":{"NUM1":[3,"aJ%",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJ%":{"opcode":"operator_mod","next":null,"parent":"l:","inputs":{"NUM1":[3,"aJ(",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJ(":{"opcode":"operator_mathop","next":null,"parent":"aJ%","inputs":{"NUM":[3,"aJ)",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aJ)":{"opcode":"operator_divide","next":null,"parent":"aJ(","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"iR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"iR":{"opcode":"data_itemoflist","next":null,"parent":"aJ)","inputs":{"INDEX":[3,[12,"T11","tGe/Wd:o59i4QQ9}C^)o"],[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"j2":{"opcode":"control_if","next":null,"parent":"o","inputs":{"CONDITION":[2,"aJ*"],"SUBSTACK":[2,"j."]},"fields":{},"shadow":false,"topLevel":false},"aJ*":{"opcode":"operator_equals","next":null,"parent":"j2","inputs":{"OPERAND1":[3,"di",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"di":{"opcode":"operator_letter_of","next":null,"parent":"aJ*","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"j.":{"opcode":"data_setvariableto","next":"l;","parent":"j2","inputs":{"VALUE":[3,"PT",[10,""]]},"fields":{"VARIABLE":[".spritesize","FL2h%|upY.J#$}=ul8?a"]},"shadow":false,"topLevel":false},"PT":{"opcode":"operator_add","next":null,"parent":"j.","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"l?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"l?":{"opcode":"operator_multiply","next":null,"parent":"PT","inputs":{"NUM1":[3,"iS",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"iS":{"opcode":"operator_letter_of","next":null,"parent":"l?","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"l;":{"opcode":"data_setvariableto","next":"l@","parent":"j.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"l@":{"opcode":"data_deletealloflist","next":"a#","parent":"l;","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"a#":{"opcode":"control_repeat","next":"l[","parent":"l@","inputs":{"TIMES":[3,"dj",[6,0]],"SUBSTACK":[2,"l]"]},"fields":{},"shadow":false,"topLevel":false},"dj":{"opcode":"data_lengthoflist","next":null,"parent":"a#","inputs":{},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"l]":{"opcode":"data_changevariableby","next":"j/","parent":"a#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"j/":{"opcode":"control_if","next":null,"parent":"l]","inputs":{"CONDITION":[2,"eG"],"SUBSTACK":[2,"dl"]},"fields":{},"shadow":false,"topLevel":false},"eG":{"opcode":"operator_and","next":null,"parent":"j/","inputs":{"OPERAND1":[2,"j="],"OPERAND2":[2,"j?"]},"fields":{},"shadow":false,"topLevel":false},"j=":{"opcode":"operator_lt","next":null,"parent":"eG","inputs":{"OPERAND1":[3,"iT",[10,""]],"OPERAND2":[3,"l}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"iT":{"opcode":"argument_reporter_string_number","next":null,"parent":"j=","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"l}":{"opcode":"operator_add","next":null,"parent":"j=","inputs":{"NUM1":[3,"dn",[4,0]],"NUM2":[3,[12,".spritesize","FL2h%|upY.J#$}=ul8?a"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"dn":{"opcode":"data_itemoflist","next":null,"parent":"l}","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"j?":{"opcode":"operator_and","next":null,"parent":"eG","inputs":{"OPERAND1":[2,"ma"],"OPERAND2":[2,"j@"]},"fields":{},"shadow":false,"topLevel":false},"ma":{"opcode":"operator_not","next":null,"parent":"j?","inputs":{"OPERAND":[2,"j["]},"fields":{},"shadow":false,"topLevel":false},"j[":{"opcode":"operator_lt","next":null,"parent":"ma","inputs":{"OPERAND1":[3,"iU",[10,""]],"OPERAND2":[3,"do",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"iU":{"opcode":"argument_reporter_string_number","next":null,"parent":"j[","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"do":{"opcode":"data_itemoflist","next":null,"parent":"j[","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"j@":{"opcode":"operator_lt","next":null,"parent":"j?","inputs":{"OPERAND1":[3,"iV",[10,""]],"OPERAND2":[3,"l~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"iV":{"opcode":"argument_reporter_string_number","next":null,"parent":"j@","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"l~":{"opcode":"operator_add","next":null,"parent":"j@","inputs":{"NUM1":[3,"dq",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"dq":{"opcode":"data_itemoflist","next":null,"parent":"l~","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"dl":{"opcode":"data_addtolist","next":null,"parent":"j/","inputs":{"ITEM":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[10,""]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"l[":{"opcode":"data_setvariableto","next":"j]","parent":"a#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["j3","DJ~1Ck7Y%xr-L5e*i(oz"]},"shadow":false,"topLevel":false},"j]":{"opcode":"control_repeat","next":null,"parent":"l[","inputs":{"TIMES":[3,"iW",[6,0]],"SUBSTACK":[2,"j}"]},"fields":{},"shadow":false,"topLevel":false},"iW":{"opcode":"data_lengthoflist","next":null,"parent":"j]","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"j}":{"opcode":"data_setvariableto","next":"mc","parent":"j]","inputs":{"VALUE":[3,"dr",[10,""]]},"fields":{"VARIABLE":["i","*r-MV7B^PL30%%8PQz%`"]},"shadow":false,"topLevel":false},"dr":{"opcode":"data_itemoflist","next":null,"parent":"j}","inputs":{"INDEX":[3,[12,"j3","DJ~1Ck7Y%xr-L5e*i(oz"],[7,0]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"mc":{"opcode":"data_changevariableby","next":"j~","parent":"j}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["j3","DJ~1Ck7Y%xr-L5e*i(oz"]},"shadow":false,"topLevel":false},"j~":{"opcode":"procedures_call","next":"l^","parent":"mc","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"l_",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"l_":{"opcode":"operator_add","next":null,"parent":"j~","inputs":{"NUM1":[3,"dt",[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"dt":{"opcode":"data_itemoflist","next":null,"parent":"l_","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"l^":{"opcode":"data_setvariableto","next":"a%","parent":"j~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".vbank","F-[0c$U5I;6bxPbW?^5C"]},"shadow":false,"topLevel":false},"a%":{"opcode":"control_if","next":"ka","parent":"l^","inputs":{"CONDITION":[2,"iX"],"SUBSTACK":[2,"kb"]},"fields":{},"shadow":false,"topLevel":false},"iX":{"opcode":"operator_equals","next":null,"parent":"a%","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kb":{"opcode":"data_setvariableto","next":"l`","parent":"a%","inputs":{"VALUE":[3,"l{",[10,""]]},"fields":{"VARIABLE":[".vbank","F-[0c$U5I;6bxPbW?^5C"]},"shadow":false,"topLevel":false},"l{":{"opcode":"operator_mod","next":null,"parent":"kb","inputs":{"NUM1":[3,"l|",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"l|":{"opcode":"operator_mathop","next":null,"parent":"l{","inputs":{"NUM":[3,"du",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"du":{"opcode":"operator_divide","next":null,"parent":"l|","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"l`":{"opcode":"data_setvariableto","next":null,"parent":"kb","inputs":{"VALUE":[3,"dv",[10,""]]},"fields":{"VARIABLE":[".spriteCpal","|:KA#88+TR_ky=lPP5oN"]},"shadow":false,"topLevel":false},"dv":{"opcode":"operator_mod","next":null,"parent":"l`","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ka":{"opcode":"data_setvariableto","next":"kc","parent":"a%","inputs":{"VALUE":[3,"mb",[10,""]]},"fields":{"VARIABLE":[".spriteattributes","AX4IlWqKU({GdZ7:.?*!"]},"shadow":false,"topLevel":false},"mb":{"opcode":"data_itemoflist","next":null,"parent":"ka","inputs":{"INDEX":[3,"Ld",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"Ld":{"opcode":"operator_add","next":null,"parent":"mb","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kc":{"opcode":"data_setvariableto","next":"kd","parent":"ka","inputs":{"VALUE":[3,"ke",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"ke":{"opcode":"operator_subtract","next":null,"parent":"kc","inputs":{"NUM1":[3,"Le",[4,0]],"NUM2":[3,"Lf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Le":{"opcode":"argument_reporter_string_number","next":null,"parent":"ke","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"Lf":{"opcode":"data_itemoflist","next":null,"parent":"ke","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"kd":{"opcode":"data_setvariableto","next":"a+","parent":"kc","inputs":{"VALUE":[3,"kf",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"kf":{"opcode":"operator_subtract","next":null,"parent":"kd","inputs":{"NUM1":[3,"Lg",[4,0]],"NUM2":[3,"Lh",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Lg":{"opcode":"argument_reporter_string_number","next":null,"parent":"kf","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"Lh":{"opcode":"data_itemoflist","next":null,"parent":"kf","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"a+":{"opcode":"control_if","next":"aO","parent":"kd","inputs":{"CONDITION":[2,"md"],"SUBSTACK":[2,"me"]},"fields":{},"shadow":false,"topLevel":false},"md":{"opcode":"operator_equals","next":null,"parent":"a+","inputs":{"OPERAND1":[3,"Li",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Li":{"opcode":"operator_letter_of","next":null,"parent":"md","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"me":{"opcode":"data_setvariableto","next":null,"parent":"a+","inputs":{"VALUE":[3,"Lj",[10,""]]},"fields":{"VARIABLE":["T1","T`~F4~2,O!/[8pu)xO1,"]},"shadow":false,"topLevel":false},"Lj":{"opcode":"operator_subtract","next":null,"parent":"me","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aO":{"opcode":"control_if","next":"kg","parent":"a+","inputs":{"CONDITION":[2,"mf"],"SUBSTACK":[2,"aP"]},"fields":{},"shadow":false,"topLevel":false},"mf":{"opcode":"operator_equals","next":null,"parent":"aO","inputs":{"OPERAND1":[3,"iY",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iY":{"opcode":"operator_letter_of","next":null,"parent":"mf","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aP":{"opcode":"control_if_else","next":null,"parent":"aO","inputs":{"CONDITION":[2,"mg"],"SUBSTACK":[2,"mh"],"SUBSTACK2":[2,"mi"]},"fields":{},"shadow":false,"topLevel":false},"mg":{"opcode":"operator_equals","next":null,"parent":"aP","inputs":{"OPERAND1":[3,"dw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"dw":{"opcode":"operator_letter_of","next":null,"parent":"mg","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"mh":{"opcode":"data_setvariableto","next":null,"parent":"aP","inputs":{"VALUE":[3,"iZ",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"iZ":{"opcode":"operator_subtract","next":null,"parent":"mh","inputs":{"NUM1":[1,[4,"15"]],"NUM2":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"mi":{"opcode":"data_setvariableto","next":null,"parent":"aP","inputs":{"VALUE":[3,"Lt",[10,""]]},"fields":{"VARIABLE":["T2","hX1J)AVg^t88ELGv:hb%"]},"shadow":false,"topLevel":false},"Lt":{"opcode":"operator_subtract","next":null,"parent":"mi","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kg":{"opcode":"procedures_call","next":"aS","parent":"aO","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"mj",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"mj":{"opcode":"operator_add","next":null,"parent":"kg","inputs":{"NUM1":[3,"Lu",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Lu":{"opcode":"data_itemoflist","next":null,"parent":"mj","inputs":{"INDEX":[3,[12,"i","*r-MV7B^PL30%%8PQz%`"],[7,0]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"aS":{"opcode":"control_if","next":"kh","parent":"kg","inputs":{"CONDITION":[2,"mk"],"SUBSTACK":[2,"ki"]},"fields":{},"shadow":false,"topLevel":false},"mk":{"opcode":"operator_equals","next":null,"parent":"aS","inputs":{"OPERAND1":[3,"Lv",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Lv":{"opcode":"operator_letter_of","next":null,"parent":"mk","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ki":{"opcode":"data_setvariableto","next":"kj","parent":"aS","inputs":{"VALUE":[3,"ml",[10,""]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"ml":{"opcode":"operator_subtract","next":null,"parent":"ki","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"Lw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Lw":{"opcode":"operator_mod","next":null,"parent":"ml","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"kj":{"opcode":"control_if","next":null,"parent":"ki","inputs":{"CONDITION":[2,"mm"],"SUBSTACK":[2,"Lx"]},"fields":{},"shadow":false,"topLevel":false},"mm":{"opcode":"operator_not","next":null,"parent":"kj","inputs":{"OPERAND":[2,"Ly"]},"fields":{},"shadow":false,"topLevel":false},"Ly":{"opcode":"operator_lt","next":null,"parent":"mm","inputs":{"OPERAND1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Lx":{"opcode":"data_changevariableby","next":null,"parent":"kj","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_Z","l5]S3A7BUTfQhoeX1QMo"]},"shadow":false,"topLevel":false},"kh":{"opcode":"data_setvariableto","next":"mn","parent":"aS","inputs":{"VALUE":[3,"mo",[10,""]]},"fields":{"VARIABLE":["T4","(BHg(FiW6n7},,p-%q%%"]},"shadow":false,"topLevel":false},"mo":{"opcode":"operator_add","next":null,"parent":"kh","inputs":{"NUM1":[1,[4,"0x8000"]],"NUM2":[3,"kk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"kk":{"opcode":"operator_add","next":null,"parent":"mo","inputs":{"NUM1":[3,"Lz",[4,0]],"NUM2":[3,"mp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Lz":{"opcode":"operator_multiply","next":null,"parent":"kk","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"mp":{"opcode":"operator_multiply","next":null,"parent":"kk","inputs":{"NUM1":[3,"LA",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"LA":{"opcode":"operator_mod","next":null,"parent":"mp","inputs":{"NUM1":[3,[12,"T2","hX1J)AVg^t88ELGv:hb%"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"mn":{"opcode":"procedures_call","next":"kl","parent":"kh","inputs":{"`s7r9W7Nszb-8fnH!Beo":[3,[12,".vbank","F-[0c$U5I;6bxPbW?^5C"],[10,""]],"}_+-M9{0LDsd:%$c1dNn":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"kl":{"opcode":"data_setvariableto","next":"km","parent":"mn","inputs":{"VALUE":[3,"mq",[10,""]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"mq":{"opcode":"operator_mod","next":null,"parent":"kl","inputs":{"NUM1":[3,"mr",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"mr":{"opcode":"operator_mathop","next":null,"parent":"mq","inputs":{"NUM":[3,"mt",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"mt":{"opcode":"operator_divide","next":null,"parent":"mr","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"mu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"mu":{"opcode":"data_itemoflist","next":null,"parent":"mt","inputs":{"INDEX":[3,"aJ+",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"aJ+":{"opcode":"operator_subtract","next":null,"parent":"mu","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"LB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"LB":{"opcode":"operator_mod","next":null,"parent":"aJ+","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"km":{"opcode":"procedures_call","next":"kn","parent":"kl","inputs":{"`s7r9W7Nszb-8fnH!Beo":[3,[12,".vbank","F-[0c$U5I;6bxPbW?^5C"],[10,""]],"}_+-M9{0LDsd:%$c1dNn":[3,"LC",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".r %s %s","argumentids":"[\"`s7r9W7Nszb-8fnH!Beo\",\"}_+-M9{0LDsd:%$c1dNn\"]","warp":"true"}},"LC":{"opcode":"operator_add","next":null,"parent":"km","inputs":{"NUM1":[3,[12,"T4","(BHg(FiW6n7},,p-%q%%"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kn":{"opcode":"data_changevariableby","next":"ko","parent":"km","inputs":{"VALUE":[3,"aJ,",[4,0]]},"fields":{"VARIABLE":["T3","DmmVyMpO/ebSRU2g=Wc:"]},"shadow":false,"topLevel":false},"aJ,":{"opcode":"operator_multiply","next":null,"parent":"kn","inputs":{"NUM1":[3,"aJ-",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJ-":{"opcode":"operator_mod","next":null,"parent":"aJ,","inputs":{"NUM1":[3,"aJ.",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJ.":{"opcode":"operator_mathop","next":null,"parent":"aJ-","inputs":{"NUM":[3,"aJ/",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aJ/":{"opcode":"operator_divide","next":null,"parent":"aJ.","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,"aJ:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJ:":{"opcode":"data_itemoflist","next":null,"parent":"aJ/","inputs":{"INDEX":[3,"aJ;",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"aJ;":{"opcode":"operator_subtract","next":null,"parent":"aJ:","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"i1",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i1":{"opcode":"operator_mod","next":null,"parent":"aJ;","inputs":{"NUM1":[3,[12,"T1","T`~F4~2,O!/[8pu)xO1,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ko":{"opcode":"control_if","next":null,"parent":"kn","inputs":{"CONDITION":[2,"kp"],"SUBSTACK":[2,"aJ="]},"fields":{},"shadow":false,"topLevel":false},"kp":{"opcode":"operator_and","next":null,"parent":"ko","inputs":{"OPERAND1":[2,"dz"],"OPERAND2":[2,"kq"]},"fields":{},"shadow":false,"topLevel":false},"dz":{"opcode":"operator_gt","next":null,"parent":"kp","inputs":{"OPERAND1":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"kq":{"opcode":"operator_or","next":null,"parent":"kp","inputs":{"OPERAND1":[2,"dA"],"OPERAND2":[2,"aJ?"]},"fields":{},"shadow":false,"topLevel":false},"dA":{"opcode":"operator_equals","next":null,"parent":"kq","inputs":{"OPERAND1":[3,[12,"@PIX","RJLtSXRx71$[%`nwOBtM"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aJ?":{"opcode":"operator_not","next":null,"parent":"kq","inputs":{"OPERAND":[2,"kr"]},"fields":{},"shadow":false,"topLevel":false},"kr":{"opcode":"operator_or","next":null,"parent":"aJ?","inputs":{"OPERAND1":[2,"aJ@"],"OPERAND2":[2,"aJ["]},"fields":{},"shadow":false,"topLevel":false},"aJ@":{"opcode":"operator_equals","next":null,"parent":"kr","inputs":{"OPERAND1":[3,"i2",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i2":{"opcode":"operator_letter_of","next":null,"parent":"aJ@","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aJ[":{"opcode":"operator_equals","next":null,"parent":"kr","inputs":{"OPERAND1":[3,"aJ]",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ]":{"opcode":"operator_multiply","next":null,"parent":"aJ[","inputs":{"NUM1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[4,0]],"NUM2":[3,"i3",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i3":{"opcode":"operator_multiply","next":null,"parent":"aJ]","inputs":{"NUM1":[3,[12,".Spri",";gzI_,?`HaxU*b,C$z,M"],[4,0]],"NUM2":[3,[12,".Mpri",";.CEwXh;.U;z^iL6kY}4"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJ=":{"opcode":"data_setvariableto","next":"bH","parent":"ko","inputs":{"VALUE":[3,[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],[10,""]]},"fields":{"VARIABLE":["@PIX","RJLtSXRx71$[%`nwOBtM"]},"shadow":false,"topLevel":false},"bH":{"opcode":"control_if_else","next":"dB","parent":"aJ=","inputs":{"CONDITION":[2,"LQ"],"SUBSTACK":[2,"aJ^"],"SUBSTACK2":[2,"aJ_"]},"fields":{},"shadow":false,"topLevel":false},"LQ":{"opcode":"operator_equals","next":null,"parent":"bH","inputs":{"OPERAND1":[3,[12,".GBC?","za5df3dC6Lq85;3lun8/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ^":{"opcode":"data_setvariableto","next":null,"parent":"bH","inputs":{"VALUE":[3,"LR",[10,""]]},"fields":{"VARIABLE":["@PAL","Tj+w!/(PV_!`zhKO@qb%"]},"shadow":false,"topLevel":false},"LR":{"opcode":"operator_add","next":null,"parent":"aJ^","inputs":{"NUM1":[3,[12,".spriteCpal","|:KA#88+TR_ky=lPP5oN"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aJ_":{"opcode":"data_setvariableto","next":null,"parent":"bH","inputs":{"VALUE":[3,"aJ`",[10,""]]},"fields":{"VARIABLE":["@PAL","Tj+w!/(PV_!`zhKO@qb%"]},"shadow":false,"topLevel":false},"aJ`":{"opcode":"operator_add","next":null,"parent":"aJ_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"i4",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i4":{"opcode":"operator_letter_of","next":null,"parent":"aJ`","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"dB":{"opcode":"control_stop","next":null,"parent":"bH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kt":{"opcode":"data_replaceitemoflist","next":null,"parent":"ks","inputs":{"INDEX":[3,"aJ{",[7,0]],"ITEM":[3,"aJ|",[10,""]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"aJ{":{"opcode":"operator_add","next":null,"parent":"kt","inputs":{"NUM1":[3,"i9",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i9":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJ{","inputs":{},"fields":{"VALUE":["#",null]},"shadow":false,"topLevel":false},"aJ|":{"opcode":"data_itemoflist","next":null,"parent":"kt","inputs":{"INDEX":[3,"i!",[7,0]]},"fields":{"LIST":["_GBCPALETTELOOKUP","co=Q#-C]T_}X,w7fOhbc"]},"shadow":false,"topLevel":false},"i!":{"opcode":"operator_add","next":null,"parent":"aJ|","inputs":{"NUM1":[3,[12,"T6","xwd)j4SY4qa||w7J0yBP"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kF":{"opcode":"data_addtolist","next":"kG","parent":"aJ3","inputs":{"ITEM":[3,"aJ}",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"aJ}":{"opcode":"operator_mod","next":null,"parent":"kF","inputs":{"NUM1":[3,"mv",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"mv":{"opcode":"operator_mathop","next":null,"parent":"aJ}","inputs":{"NUM":[3,"dU",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dU":{"opcode":"operator_divide","next":null,"parent":"mv","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"kG":{"opcode":"data_addtolist","next":"kH","parent":"kF","inputs":{"ITEM":[3,"mw",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"mw":{"opcode":"operator_mod","next":null,"parent":"kG","inputs":{"NUM1":[3,"mx",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"mx":{"opcode":"operator_mathop","next":null,"parent":"mw","inputs":{"NUM":[3,"dV",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dV":{"opcode":"operator_divide","next":null,"parent":"mx","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"kH":{"opcode":"data_addtolist","next":"my","parent":"kG","inputs":{"ITEM":[3,"mz",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"mz":{"opcode":"operator_mod","next":null,"parent":"kH","inputs":{"NUM1":[3,"mA",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"mA":{"opcode":"operator_mathop","next":null,"parent":"mz","inputs":{"NUM":[3,"i,",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"i,":{"opcode":"operator_divide","next":null,"parent":"mA","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"my":{"opcode":"data_changevariableby","next":"mB","parent":"kH","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"mB":{"opcode":"procedures_call","next":"kI","parent":"my","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"kI":{"opcode":"data_addtolist","next":"mC","parent":"mB","inputs":{"ITEM":[3,"mD",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"mD":{"opcode":"operator_mod","next":null,"parent":"kI","inputs":{"NUM1":[3,"mE",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"mE":{"opcode":"operator_mathop","next":null,"parent":"mD","inputs":{"NUM":[3,"dW",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dW":{"opcode":"operator_divide","next":null,"parent":"mE","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"mC":{"opcode":"data_addtolist","next":null,"parent":"kI","inputs":{"ITEM":[3,"mF",[10,""]]},"fields":{"LIST":["_soundregs","QHPemIrZSCXS)P]=c(?5"]},"shadow":false,"topLevel":false},"mF":{"opcode":"operator_mod","next":null,"parent":"mC","inputs":{"NUM1":[3,"mG",[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"mG":{"opcode":"operator_mathop","next":null,"parent":"mF","inputs":{"NUM":[3,"dX",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dX":{"opcode":"operator_divide","next":null,"parent":"mG","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"k6":{"opcode":"data_replaceitemoflist","next":"nM","parent":"nL","inputs":{"INDEX":[3,[12,"_A","[THklOWON,rz#pznmehC"],[7,0]],"ITEM":[3,"nN",[10,""]]},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"nN":{"opcode":"operator_mod","next":null,"parent":"k6","inputs":{"NUM1":[3,"nO",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"nO":{"opcode":"operator_mathop","next":null,"parent":"nN","inputs":{"NUM":[3,"d~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"d~":{"opcode":"operator_divide","next":null,"parent":"nO","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"nM":{"opcode":"data_changevariableby","next":"k7","parent":"k6","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_A","[THklOWON,rz#pznmehC"]},"shadow":false,"topLevel":false},"k7":{"opcode":"data_replaceitemoflist","next":"ea","parent":"nM","inputs":{"INDEX":[3,[12,"_A","[THklOWON,rz#pznmehC"],[7,0]],"ITEM":[3,"nP",[10,""]]},"fields":{"LIST":["_waveBuffer",",(xt46oqz;F}4Roa*4l1"]},"shadow":false,"topLevel":false},"nP":{"opcode":"operator_mod","next":null,"parent":"k7","inputs":{"NUM1":[3,"nQ",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"nQ":{"opcode":"operator_mathop","next":null,"parent":"nP","inputs":{"NUM":[3,"eb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"eb":{"opcode":"operator_divide","next":null,"parent":"nQ","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ea":{"opcode":"data_changevariableby","next":null,"parent":"k7","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"s;":{"opcode":"procedures_definition","next":"9","parent":null,"inputs":{"custom_block":[1,"pb"]},"fields":{},"shadow":false,"topLevel":true,"x":8588,"y":1499},"pb":{"opcode":"procedures_prototype","next":null,"parent":"s;","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"fu":{"opcode":"operator_or","next":null,"parent":"9","inputs":{"OPERAND1":[2,"t:"],"OPERAND2":[2,"t;"]},"fields":{},"shadow":false,"topLevel":false},"t:":{"opcode":"operator_equals","next":null,"parent":"fu","inputs":{"OPERAND1":[3,"zo",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zo":{"opcode":"data_itemoflist","next":null,"parent":"t:","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"t;":{"opcode":"operator_equals","next":null,"parent":"fu","inputs":{"OPERAND1":[3,"zp",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"zp":{"opcode":"data_itemoflist","next":null,"parent":"t;","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"zn":{"opcode":"data_deleteoflist","next":null,"parent":"9","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"s=":{"opcode":"data_replaceitemoflist","next":"fx","parent":"9","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"fx":{"opcode":"control_repeat","next":null,"parent":"s=","inputs":{"TIMES":[3,"t3",[6,0]],"SUBSTACK":[2,"zq"]},"fields":{},"shadow":false,"topLevel":false},"t3":{"opcode":"operator_subtract","next":null,"parent":"fx","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"zr",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zr":{"opcode":"data_lengthoflist","next":null,"parent":"t3","inputs":{},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"zq":{"opcode":"data_addtolist","next":null,"parent":"fx","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"bkk":{"opcode":"data_itemoflist","next":null,"parent":"ub","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bkm":{"opcode":"data_itemoflist","next":null,"parent":"ug","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bko":{"opcode":"data_itemoflist","next":null,"parent":"ui","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bkq":{"opcode":"data_itemoflist","next":null,"parent":"uk","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bks":{"opcode":"data_itemoflist","next":null,"parent":"ms","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bku":{"opcode":"data_itemoflist","next":null,"parent":"un","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bl-":{"opcode":"data_itemoflist","next":null,"parent":"uq","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bkw":{"opcode":"data_itemoflist","next":null,"parent":"us","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bmq":{"opcode":"event_whenbroadcastreceived","next":"bmr","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":67629,"y":374},"bmr":{"opcode":"event_broadcast","next":null,"parent":"bmq","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"b6":{"opcode":"data_replaceitemoflist","next":"yk","parent":"e3","inputs":{"INDEX":[3,[12,"T5","WhM=KlgvY@V6x|(`!06Q"],[7,0]],"ITEM":[3,"b%",[10,""]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"b%":{"opcode":"operator_add","next":null,"parent":"b6","inputs":{"NUM1":[3,"q*",[4,0]],"NUM2":[3,"q,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"q*":{"opcode":"operator_multiply","next":null,"parent":"b%","inputs":{"NUM1":[3,"yl",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yl":{"opcode":"operator_subtract","next":null,"parent":"q*","inputs":{"NUM1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q,":{"opcode":"operator_mod","next":null,"parent":"b%","inputs":{"NUM1":[3,"ym",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ym":{"opcode":"argument_reporter_string_number","next":null,"parent":"q,","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"yk":{"opcode":"control_stop","next":null,"parent":"b6","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"E2":{"opcode":"data_itemoflist","next":null,"parent":"EF","inputs":{"INDEX":[3,"iL",[7,0]]},"fields":{"LIST":["_RAM","u16r)vc%h8n1*rIQ+.aj"]},"shadow":false,"topLevel":false},"iL":{"opcode":"operator_add","next":null,"parent":"E2","inputs":{"NUM1":[3,[12,"T9","ecaYd9sPeo:%`_LsAsJD"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E,":{"opcode":"procedures_call","next":"lA","parent":"au","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,[10,"0xFF07"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"lA":{"opcode":"data_setvariableto","next":"E_","parent":"E,","inputs":{"VALUE":[3,"E`",[10,""]]},"fields":{"VARIABLE":[".timenable","$:(/kN7.}P:lAp]`:oC)"]},"shadow":false,"topLevel":false},"E`":{"opcode":"operator_mod","next":null,"parent":"lA","inputs":{"NUM1":[3,"E{",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"E{":{"opcode":"operator_mathop","next":null,"parent":"E`","inputs":{"NUM":[3,"c/",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"c/":{"opcode":"operator_divide","next":null,"parent":"E{","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"E_":{"opcode":"data_setvariableto","next":"G=","parent":"lA","inputs":{"VALUE":[3,[12,".TAC1","TyNKP)!4YD91CXr;Ofr%"],[10,""]]},"fields":{"VARIABLE":[".TAC2",".C8gJ;d]=.XH;$5E8oB2"]},"shadow":false,"topLevel":false},"G=":{"opcode":"data_setvariableto","next":"lB","parent":"E_","inputs":{"VALUE":[3,"E|",[10,""]]},"fields":{"VARIABLE":[".TAC1","TyNKP)!4YD91CXr;Ofr%"]},"shadow":false,"topLevel":false},"E|":{"opcode":"operator_mod","next":null,"parent":"G=","inputs":{"NUM1":[3,"E}",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"E}":{"opcode":"operator_multiply","next":null,"parent":"E|","inputs":{"NUM1":[3,[12,".timenable","$:(/kN7.}P:lAp]`:oC)"],[4,0]],"NUM2":[3,"E~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"E~":{"opcode":"operator_mathop","next":null,"parent":"E}","inputs":{"NUM":[3,"Fa",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Fa":{"opcode":"operator_divide","next":null,"parent":"E~","inputs":{"NUM1":[3,[12,".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"],[4,0]],"NUM2":[3,"Fb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Fb":{"opcode":"data_itemoflist","next":null,"parent":"Fa","inputs":{"INDEX":[3,"Fc",[7,0]]},"fields":{"LIST":["2^x","`b}E$,6@R122(5y)._3="]},"shadow":false,"topLevel":false},"Fc":{"opcode":"operator_add","next":null,"parent":"Fb","inputs":{"NUM1":[3,"Fd",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Fd":{"opcode":"operator_letter_of","next":null,"parent":"Fc","inputs":{"LETTER":[3,"Fe",[6,0]],"STRING":[1,[10,"9357"]]},"fields":{},"shadow":false,"topLevel":false},"Fe":{"opcode":"operator_add","next":null,"parent":"Fd","inputs":{"NUM1":[3,"iM",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iM":{"opcode":"operator_mod","next":null,"parent":"Fe","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"lB":{"opcode":"control_if","next":null,"parent":"G=","inputs":{"CONDITION":[2,"c:"],"SUBSTACK":[2,"Ff"]},"fields":{},"shadow":false,"topLevel":false},"c:":{"opcode":"operator_lt","next":null,"parent":"lB","inputs":{"OPERAND1":[3,[12,".TAC1","TyNKP)!4YD91CXr;Ofr%"],[10,""]],"OPERAND2":[3,[12,".TAC2",".C8gJ;d]=.XH;$5E8oB2"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ff":{"opcode":"procedures_call","next":"av","parent":"lB","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[1,[10,"0xFF05"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"av":{"opcode":"control_if_else","next":null,"parent":"Ff","inputs":{"CONDITION":[2,"c;"],"SUBSTACK":[2,"Fg"],"SUBSTACK2":[2,"Fh"]},"fields":{},"shadow":false,"topLevel":false},"c;":{"opcode":"operator_equals","next":null,"parent":"av","inputs":{"OPERAND1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Fg":{"opcode":"procedures_call","next":"c=","parent":"av","inputs":{"j~vf^2{,YZCCw2dLS{!:":[1,[10,"0"]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF05"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"c=":{"opcode":"data_setvariableto","next":null,"parent":"Fg","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".TACFLAG","dK3?LB9A%FG6.YYddD?("]},"shadow":false,"topLevel":false},"Fh":{"opcode":"procedures_call","next":null,"parent":"av","inputs":{"j~vf^2{,YZCCw2dLS{!:":[3,"c?",[10,""]],"fRHPORE}/n8tXq4q^{~F":[1,[10,"0xFF05"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".DMA write %s to %s","argumentids":"[\"j~vf^2{,YZCCw2dLS{!:\",\"fRHPORE}/n8tXq4q^{~F\"]","warp":"true"}},"c?":{"opcode":"operator_add","next":null,"parent":"Fh","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Fp":{"opcode":"operator_mod","next":null,"parent":"Fo","inputs":{"NUM1":[3,"Jw",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Jw":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fp","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"bR":{"opcode":"control_if_else","next":null,"parent":"j","inputs":{"CONDITION":[2,"oY"],"SUBSTACK":[2,"oZ"],"SUBSTACK2":[2,"o0"]},"fields":{},"shadow":false,"topLevel":false},"oY":{"opcode":"operator_equals","next":null,"parent":"bR","inputs":{"OPERAND1":[3,"Nh",[10,""]],"OPERAND2":[1,[10,"U"]]},"fields":{},"shadow":false,"topLevel":false},"Nh":{"opcode":"argument_reporter_string_number","next":null,"parent":"oY","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"oZ":{"opcode":"procedures_call","next":"o1","parent":"bR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"o1":{"opcode":"procedures_call","next":"o2","parent":"oZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PC++","argumentids":"[]","warp":"true"}},"o2":{"opcode":"data_setvariableto","next":null,"parent":"o1","inputs":{"VALUE":[3,"Ni",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"Ni":{"opcode":"data_itemoflist","next":null,"parent":"o2","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"o0":{"opcode":"data_setvariableto","next":null,"parent":"bR","inputs":{"VALUE":[3,"o3",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"o3":{"opcode":"data_itemoflist","next":null,"parent":"o0","inputs":{"INDEX":[3,"Nj",[7,0]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Nj":{"opcode":"argument_reporter_string_number","next":null,"parent":"o3","inputs":{},"fields":{"VALUE":["r2",null]},"shadow":false,"topLevel":false},"Bo":{"opcode":"operator_subtract","next":null,"parent":"O(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Bp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bp":{"opcode":"operator_gt","next":null,"parent":"Bo","inputs":{"OPERAND1":[3,"Bq",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Bq":{"opcode":"operator_mod","next":null,"parent":"Bp","inputs":{"NUM1":[3,"hE",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"hE":{"opcode":"operator_add","next":null,"parent":"Bq","inputs":{"NUM1":[3,"bms",[4,0]],"NUM2":[3,"bmt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bms":{"opcode":"operator_mod","next":null,"parent":"hE","inputs":{"NUM1":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bmt":{"opcode":"operator_mod","next":null,"parent":"hE","inputs":{"NUM1":[3,[12,"T7","d{oa^`AGe`;eIR$H[7uf"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"BR":{"opcode":"operator_mod","next":null,"parent":"BQ","inputs":{"NUM1":[3,"bmu",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bmu":{"opcode":"operator_add","next":null,"parent":"BR","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B]":{"opcode":"procedures_definition","next":"bO","parent":null,"inputs":{"custom_block":[1,"aJ~"]},"fields":{},"shadow":false,"topLevel":true,"x":27841,"y":64},"aJ~":{"opcode":"procedures_prototype","next":null,"parent":"B]","inputs":{";@Rd78nttF]|GZ-#AJvQ":[1,"bmv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RST %s","argumentids":"[\";@Rd78nttF]|GZ-#AJvQ\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bmv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aJ~","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"bO":{"opcode":"procedures_call","next":"O,","parent":"B]","inputs":{"C#nc~k`#)?@}yo`3}V^6":[3,"aKa",[10,""]],"EV/=xEoSaXRhLZ:5@_C(":[3,"bmw",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH %s %s","argumentids":"[\"C#nc~k`#)?@}yo`3}V^6\",\"EV/=xEoSaXRhLZ:5@_C(\"]","warp":"true"}},"aKa":{"opcode":"operator_mathop","next":null,"parent":"bO","inputs":{"NUM":[3,"bmx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmx":{"opcode":"operator_divide","next":null,"parent":"aKa","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bmw":{"opcode":"operator_mod","next":null,"parent":"bO","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"O,":{"opcode":"data_setvariableto","next":null,"parent":"bO","inputs":{"VALUE":[3,"B^",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"B^":{"opcode":"operator_multiply","next":null,"parent":"O,","inputs":{"NUM1":[3,"bmy",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bmy":{"opcode":"argument_reporter_string_number","next":null,"parent":"B^","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"B7":{"opcode":"procedures_call","next":"bmz","parent":"bX","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"bmz":{"opcode":"data_replaceitemoflist","next":null,"parent":"B7","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"B)":{"opcode":"procedures_call","next":"R3","parent":"B(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"R3":{"opcode":"control_if_else","next":null,"parent":"B)","inputs":{"CONDITION":[2,"B*"],"SUBSTACK":[2,"h+"],"SUBSTACK2":[2,"h,"]},"fields":{},"shadow":false,"topLevel":false},"B*":{"opcode":"operator_equals","next":null,"parent":"R3","inputs":{"OPERAND1":[3,"bmA",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bmA":{"opcode":"argument_reporter_string_number","next":null,"parent":"B*","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"h+":{"opcode":"procedures_call","next":null,"parent":"R3","inputs":{"E,=-5g[1I}?abJbC=3;y":[3,"h-",[10,""]],"ecG-ua8ktI9]LTC44t^)":[3,"bmB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".write %s byte %s","argumentids":"[\"E,=-5g[1I}?abJbC=3;y\",\"ecG-ua8ktI9]LTC44t^)\"]","warp":"true"}},"h-":{"opcode":"operator_add","next":null,"parent":"h+","inputs":{"NUM1":[3,"B+",[4,0]],"NUM2":[3,"Hq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B+":{"opcode":"operator_multiply","next":null,"parent":"h-","inputs":{"NUM1":[3,"Hr",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Hr":{"opcode":"data_itemoflist","next":null,"parent":"B+","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"Hq":{"opcode":"data_itemoflist","next":null,"parent":"h-","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"bmB":{"opcode":"data_itemoflist","next":null,"parent":"h+","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"h,":{"opcode":"procedures_call","next":"Hs","parent":"R3","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"h.",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"h.":{"opcode":"operator_add","next":null,"parent":"h,","inputs":{"NUM1":[3,"B,",[4,0]],"NUM2":[3,"Ht",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B,":{"opcode":"operator_multiply","next":null,"parent":"h.","inputs":{"NUM1":[3,"Hu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Hu":{"opcode":"data_itemoflist","next":null,"parent":"B,","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"Ht":{"opcode":"data_itemoflist","next":null,"parent":"h.","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"Hs":{"opcode":"data_replaceitemoflist","next":null,"parent":"h,","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},":":{"opcode":"control_if_else","next":null,"parent":"/","inputs":{"CONDITION":[2,"pR"],"SUBSTACK":[2,"xh"],"SUBSTACK2":[2,";"]},"fields":{},"shadow":false,"topLevel":false},"pR":{"opcode":"operator_lt","next":null,"parent":":","inputs":{"OPERAND1":[3,"eC",[10,""]],"OPERAND2":[1,[10,"0x1F"]]},"fields":{},"shadow":false,"topLevel":false},"eC":{"opcode":"data_itemoflist","next":null,"parent":"pR","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xh":{"opcode":"data_setvariableto","next":null,"parent":":","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},";":{"opcode":"control_if_else","next":null,"parent":":","inputs":{"CONDITION":[2,"pt"],"SUBSTACK":[2,"xi"],"SUBSTACK2":[2,"R"]},"fields":{},"shadow":false,"topLevel":false},"pt":{"opcode":"operator_lt","next":null,"parent":";","inputs":{"OPERAND1":[3,"eD",[10,""]],"OPERAND2":[1,[10,"0x21"]]},"fields":{},"shadow":false,"topLevel":false},"eD":{"opcode":"data_itemoflist","next":null,"parent":"pt","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xi":{"opcode":"data_setvariableto","next":null,"parent":";","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"R":{"opcode":"control_if_else","next":null,"parent":";","inputs":{"CONDITION":[2,"p6"],"SUBSTACK":[2,"xj"],"SUBSTACK2":[2,"xk"]},"fields":{},"shadow":false,"topLevel":false},"p6":{"opcode":"operator_lt","next":null,"parent":"R","inputs":{"OPERAND1":[3,"i{",[10,""]],"OPERAND2":[1,[10,"0x22"]]},"fields":{},"shadow":false,"topLevel":false},"i{":{"opcode":"data_itemoflist","next":null,"parent":"p6","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_cartridge stuff","WYIpZLO@uiw_pjT%Sf.j"]},"shadow":false,"topLevel":false},"xj":{"opcode":"data_setvariableto","next":null,"parent":"R","inputs":{"VALUE":[1,[10,"7"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"xk":{"opcode":"data_setvariableto","next":null,"parent":"R","inputs":{"VALUE":[1,[10,"NA"]]},"fields":{"VARIABLE":["_MBCnumber","wJ{KQ$v8^;+Hlh@.7tJv"]},"shadow":false,"topLevel":false},"aU":{"opcode":"control_if","next":"el","parent":"sI","inputs":{"CONDITION":[2,"n9"],"SUBSTACK":[2,"k("]},"fields":{},"shadow":false,"topLevel":false},"n9":{"opcode":"operator_lt","next":null,"parent":"aU","inputs":{"OPERAND1":[3,"i|",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"i|":{"opcode":"data_lengthoflist","next":null,"parent":"n9","inputs":{},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"k(":{"opcode":"control_if","next":null,"parent":"aU","inputs":{"CONDITION":[2,"k)"],"SUBSTACK":[2,"k*"]},"fields":{},"shadow":false,"topLevel":false},"k)":{"opcode":"operator_and","next":null,"parent":"k(","inputs":{"OPERAND1":[2,"n!"],"OPERAND2":[2,"n#"]},"fields":{},"shadow":false,"topLevel":false},"n!":{"opcode":"operator_not","next":null,"parent":"k)","inputs":{"OPERAND":[2,"i}"]},"fields":{},"shadow":false,"topLevel":false},"i}":{"opcode":"operator_lt","next":null,"parent":"n!","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"n#":{"opcode":"operator_lt","next":null,"parent":"k)","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[3,"em",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"em":{"opcode":"operator_add","next":null,"parent":"n#","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[3,[12,".spritesize","FL2h%|upY.J#$}=ul8?a"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"k*":{"opcode":"data_addtolist","next":"n%","parent":"k(","inputs":{"ITEM":[3,"oS",[10,""]]},"fields":{"LIST":["*OAMidx","M;Zg}Clnv_jRTTiVfz1x"]},"shadow":false,"topLevel":false},"oS":{"opcode":"operator_add","next":null,"parent":"k*","inputs":{"NUM1":[1,[4,"0xFE00"]],"NUM2":[3,"en",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"en":{"opcode":"operator_multiply","next":null,"parent":"oS","inputs":{"NUM1":[3,[12,"g","pI+E2RUGrnC0}Oxj[fQD"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"n%":{"opcode":"data_addtolist","next":"k+","parent":"k*","inputs":{"ITEM":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[10,""]]},"fields":{"LIST":["*OAMy","lN|dA_r%+dH9fhnepMn$"]},"shadow":false,"topLevel":false},"k+":{"opcode":"procedures_call","next":"oT","parent":"n%","inputs":{"WVEn/Wb6HL5OKg2gsf0F":[3,"oU",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".Z = rMEM %s","argumentids":"[\"WVEn/Wb6HL5OKg2gsf0F\"]","warp":"true"}},"oU":{"opcode":"operator_add","next":null,"parent":"k+","inputs":{"NUM1":[3,"oV",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oV":{"opcode":"operator_add","next":null,"parent":"oU","inputs":{"NUM1":[1,[4,"0xFE00"]],"NUM2":[3,"i~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i~":{"opcode":"operator_multiply","next":null,"parent":"oV","inputs":{"NUM1":[3,[12,"g","pI+E2RUGrnC0}Oxj[fQD"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"oT":{"opcode":"data_addtolist","next":null,"parent":"k+","inputs":{"ITEM":[3,"eo",[10,""]]},"fields":{"LIST":["*OAMx","Gxeo^a7r|uEHj#R[%7jG"]},"shadow":false,"topLevel":false},"eo":{"opcode":"operator_subtract","next":null,"parent":"oT","inputs":{"NUM1":[3,[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"el":{"opcode":"data_changevariableby","next":null,"parent":"aU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["g","pI+E2RUGrnC0}Oxj[fQD"]},"shadow":false,"topLevel":false},"aG":{"opcode":"control_if","next":"oW","parent":"t0","inputs":{"CONDITION":[2,"ep"],"SUBSTACK":[2,"eq"]},"fields":{},"shadow":false,"topLevel":false},"ep":{"opcode":"operator_lt","next":null,"parent":"aG","inputs":{"OPERAND1":[3,[12,".IME","Yyq0n/?:tZ-1R{!(9E,I"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eq":{"opcode":"control_stop","next":null,"parent":"aG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oW":{"opcode":"procedures_call","next":"Nc","parent":"aG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".INTRpush","argumentids":"[]","warp":"true"}},"Nc":{"opcode":"data_setvariableto","next":null,"parent":"oW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".IME","Yyq0n/?:tZ-1R{!(9E,I"]},"shadow":false,"topLevel":false},"Nd":{"opcode":"operator_lt","next":null,"parent":"1","inputs":{"OPERAND1":[3,[12,".instrID","ZnIX}4]R}DE8HyQ,rg57"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"k#":{"opcode":"procedures_call","next":null,"parent":"1","inputs":{"nH.?hAmLB0W#$/@)2]9H":[3,"Ne",[10,""]],"nDk#EtQ]:+3Y~W96@5N(":[3,"Nf",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SUB A, %s | %s","argumentids":"[\"nH.?hAmLB0W#$/@)2]9H\",\"nDk#EtQ]:+3Y~W96@5N(\"]","warp":"true"}},"Ne":{"opcode":"operator_letter_of","next":null,"parent":"k#","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Nf":{"opcode":"operator_letter_of","next":null,"parent":"k#","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"oX":{"opcode":"procedures_call","next":null,"parent":"1","inputs":{"db[GH{T,0YgMO8RE(chd":[3,"Ng",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~AND A, %s","argumentids":"[\"db[GH{T,0YgMO8RE(chd\"]","warp":"true"}},"Ng":{"opcode":"operator_letter_of","next":null,"parent":"oX","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,".instr","ujAlu]pJm2~uaC1iJUQ]"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}":{"opcode":"control_if_else","next":null,"parent":"Cw","inputs":{"CONDITION":[2,"o4"],"SUBSTACK":[2,"o5"],"SUBSTACK2":[2,"k,"]},"fields":{},"shadow":false,"topLevel":false},"o4":{"opcode":"operator_equals","next":null,"parent":"}","inputs":{"OPERAND1":[3,"Nk",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Nk":{"opcode":"argument_reporter_string_number","next":null,"parent":"o4","inputs":{},"fields":{"VALUE":["p1",null]},"shadow":false,"topLevel":false},"o5":{"opcode":"procedures_call","next":"o6","parent":"}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"o6":{"opcode":"data_setvariableto","next":null,"parent":"o5","inputs":{"VALUE":[3,"o7",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"o7":{"opcode":"operator_mod","next":null,"parent":"o6","inputs":{"NUM1":[3,"Nl",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Nl":{"opcode":"operator_add","next":null,"parent":"o7","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"k,":{"opcode":"data_replaceitemoflist","next":"o8","parent":"}","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"o9",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"o9":{"opcode":"operator_mod","next":null,"parent":"k,","inputs":{"NUM1":[3,"o!",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"o!":{"opcode":"operator_mathop","next":null,"parent":"o9","inputs":{"NUM":[3,"o#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"o#":{"opcode":"operator_divide","next":null,"parent":"o!","inputs":{"NUM1":[3,"Nm",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Nm":{"opcode":"operator_add","next":null,"parent":"o#","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"o8":{"opcode":"data_replaceitemoflist","next":null,"parent":"k,","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"o%",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"o%":{"opcode":"operator_mod","next":null,"parent":"o8","inputs":{"NUM1":[3,"Nn",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Nn":{"opcode":"operator_add","next":null,"parent":"o%","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,0]],"NUM2":[3,[12,"_T","|Cl^=?C:,/{Epnf![x2:"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aQ":{"opcode":"control_if","next":"No","parent":"m.","inputs":{"CONDITION":[2,"Np"],"SUBSTACK":[2,"Nq"]},"fields":{},"shadow":false,"topLevel":false},"Np":{"opcode":"operator_equals","next":null,"parent":"aQ","inputs":{"OPERAND1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Nq":{"opcode":"procedures_call","next":null,"parent":"aQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"No":{"opcode":"data_changevariableby","next":null,"parent":"aQ","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":[".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"]},"shadow":false,"topLevel":false},"a-":{"opcode":"control_if","next":"Nr","parent":"m]","inputs":{"CONDITION":[2,"Ns"],"SUBSTACK":[2,"Nt"]},"fields":{},"shadow":false,"topLevel":false},"Ns":{"opcode":"operator_equals","next":null,"parent":"a-","inputs":{"OPERAND1":[3,[12,".SPEED","MzjtR%U}q{vlM~,lxGYF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Nt":{"opcode":"procedures_call","next":null,"parent":"a-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_","argumentids":"[]","warp":"true"}},"Nr":{"opcode":"data_changevariableby","next":null,"parent":"a-","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":[".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"]},"shadow":false,"topLevel":false},"a4":{"opcode":"control_if_else","next":null,"parent":"a3","inputs":{"CONDITION":[2,"Nu"],"SUBSTACK":[2,"Nv"],"SUBSTACK2":[2,"Nw"]},"fields":{},"shadow":false,"topLevel":false},"Nu":{"opcode":"operator_equals","next":null,"parent":"a4","inputs":{"OPERAND1":[3,[12,".HDMAenable","j1eKKgYTu[qSVFb2,O.#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nv":{"opcode":"procedures_call","next":null,"parent":"a4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".HDMA transfer","argumentids":"[]","warp":"true"}},"Nw":{"opcode":"procedures_call","next":null,"parent":"a4","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CPU","argumentids":"[]","warp":"false"}},"A[":{"opcode":"operator_equals","next":null,"parent":"b/","inputs":{"OPERAND1":[3,"Hb",[10,""]],"OPERAND2":[1,[10,"S"]]},"fields":{},"shadow":false,"topLevel":false},"Hb":{"opcode":"argument_reporter_string_number","next":null,"parent":"A[","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"O!":{"opcode":"control_if_else","next":"qX","parent":"pF","inputs":{"SUBSTACK2":[2,"be"],"CONDITION":[2,"aKb"],"SUBSTACK":[2,"R1"]},"fields":{},"shadow":false,"topLevel":false},"aKc":{"opcode":"operator_letter_of","next":null,"parent":"aKb","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,"bmC",[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aKb":{"opcode":"operator_equals","next":null,"parent":"O!","inputs":{"OPERAND1":[3,"aKc",[10,""]],"OPERAND2":[1,[10,"x"]]},"fields":{},"shadow":false,"topLevel":false},"bmC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKc","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"R1":{"opcode":"control_if_else","next":null,"parent":"O!","inputs":{"CONDITION":[2,"aKd"],"SUBSTACK2":[2,"2d"],"SUBSTACK":[2,"1["]},"fields":{},"shadow":false,"topLevel":false},"aKd":{"opcode":"operator_equals","next":null,"parent":"R1","inputs":{"OPERAND1":[3,"aKe",[10,""]],"OPERAND2":[1,[10,","]]},"fields":{},"shadow":false,"topLevel":false},"aKe":{"opcode":"operator_letter_of","next":null,"parent":"aKd","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,"bmD",[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"bmD":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKe","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI@":{"opcode":"operator_divide","next":null,"parent":"1[","inputs":{"NUM1":[3,"aKf",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aKf":{"opcode":"operator_length","next":null,"parent":"aI@","inputs":{"STRING":[3,"bmE",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bmE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKf","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI*":{"opcode":"operator_add","next":null,"parent":"1@","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"aI,",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aI,":{"opcode":"operator_join","next":null,"parent":"aI*","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"1^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aI+":{"opcode":"operator_add","next":null,"parent":"1]","inputs":{"NUM1":[3,"bmF",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bmF":{"opcode":"operator_multiply","next":null,"parent":"aI+","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bj4":{"opcode":"argument_reporter_string_number","next":null,"parent":"1]","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI-":{"opcode":"operator_add","next":null,"parent":"1_","inputs":{"NUM1":[3,"bmG",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bmG":{"opcode":"operator_multiply","next":null,"parent":"aI-","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bj5":{"opcode":"argument_reporter_string_number","next":null,"parent":"1_","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI)":{"opcode":"data_addtolist","next":"bmH","parent":"1@","inputs":{"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"bmH":{"opcode":"data_changevariableby","next":null,"parent":"aI)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"aI;":{"opcode":"operator_divide","next":null,"parent":"2d","inputs":{"NUM1":[3,"aKg",[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aKg":{"opcode":"operator_length","next":null,"parent":"aI;","inputs":{"STRING":[3,"bmI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bmI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKg","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI?":{"opcode":"operator_add","next":null,"parent":"2e","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"aI/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aI/":{"opcode":"operator_join","next":null,"parent":"aI?","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"1{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aI.":{"opcode":"operator_add","next":null,"parent":"1`","inputs":{"NUM1":[3,"bmJ",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bmJ":{"opcode":"operator_multiply","next":null,"parent":"aI.","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bj6":{"opcode":"argument_reporter_string_number","next":null,"parent":"1`","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI:":{"opcode":"operator_add","next":null,"parent":"1|","inputs":{"NUM1":[3,"bmK",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bmK":{"opcode":"operator_multiply","next":null,"parent":"aI:","inputs":{"NUM1":[3,[12,"loop","io(,(TfDAEBRM2iX1c}h"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bj7":{"opcode":"argument_reporter_string_number","next":null,"parent":"1|","inputs":{},"fields":{"VALUE":["ROM",null]},"shadow":false,"topLevel":false},"aI=":{"opcode":"data_addtolist","next":"bmL","parent":"2e","inputs":{"ITEM":[3,[12,"_RE","4`Ni_=/i=RIJ0%Y?]=Fn"],[10,""]]},"fields":{"LIST":["_ROM","?d7S^.xq^5}3hEAhxJ.u"]},"shadow":false,"topLevel":false},"bmL":{"opcode":"data_changevariableby","next":null,"parent":"aI=","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["loop","io(,(TfDAEBRM2iX1c}h"]},"shadow":false,"topLevel":false},"cC":{"opcode":"data_replaceitemoflist","next":"J0","parent":"FR","inputs":{"INDEX":[3,[12,"_PIXEL#","AfAG@-SCQv_v!Pd(!ksr"],[7,"0"]],"ITEM":[3,"FS",[10,""]]},"fields":{"LIST":["_pix","A}SPn)@|;K4@45j;UT4o"]},"shadow":false,"topLevel":false},"FS":{"opcode":"data_itemoflist","next":null,"parent":"cC","inputs":{"INDEX":[3,"FT",[7,"0"]]},"fields":{"LIST":["*palette","rt`J2N?0$d]K9j?Ynj$f"]},"shadow":false,"topLevel":false},"FT":{"opcode":"operator_add","next":null,"parent":"FS","inputs":{"NUM1":[3,"FU",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FU":{"opcode":"operator_add","next":null,"parent":"FT","inputs":{"NUM1":[3,"J1",[4,"0"]],"NUM2":[3,[12,"@PIX","RJLtSXRx71$[%`nwOBtM"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"J1":{"opcode":"operator_multiply","next":null,"parent":"FU","inputs":{"NUM1":[3,[12,"@PAL","Tj+w!/(PV_!`zhKO@qb%"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"J0":{"opcode":"data_changevariableby","next":null,"parent":"cC","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_X",":D[mPTcd3;]Yf==]Wvx`"]},"shadow":false,"topLevel":false},"cB":{"opcode":"procedures_call","next":"FZ","parent":"FY","inputs":{"LxbWd59lHDpYkr5#Qsr(":[3,"J5",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*setLY %s","argumentids":"[\"LxbWd59lHDpYkr5#Qsr(\"]","warp":"true"}},"J5":{"opcode":"operator_add","next":null,"parent":"cB","inputs":{"NUM1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FZ":{"opcode":"data_changevariableby","next":"F0","parent":"cB","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["lines","r-%xXbKR}U_Ukw8g(6?9"]},"shadow":false,"topLevel":false},"F0":{"opcode":"data_changevariableby","next":"F1","parent":"FZ","inputs":{"VALUE":[3,[12,".windowflag","dOLNCNdWP`.36j7uacOp"],[4,"0"]]},"fields":{"VARIABLE":["-WLY","Z]?-Im_0pF^!OOi!AX81"]},"shadow":false,"topLevel":false},"F1":{"opcode":"data_setvariableto","next":"aZ","parent":"F0","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".windowflag","dOLNCNdWP`.36j7uacOp"]},"shadow":false,"topLevel":false},"aZ":{"opcode":"control_if","next":"a0","parent":"F1","inputs":{"CONDITION":[2,"J6"],"SUBSTACK":[2,"F2"]},"fields":{},"shadow":false,"topLevel":false},"J6":{"opcode":"operator_equals","next":null,"parent":"aZ","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"F2":{"opcode":"procedures_call","next":"F3","parent":"aZ","inputs":{"DmJnXi1[qUlHjf;C=~o[":[1,[10,"0"]],"!-|QVVj^*8]m|Qagq{HG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*set IF %s , %s","argumentids":"[\"DmJnXi1[qUlHjf;C=~o[\",\"!-|QVVj^*8]m|Qagq{HG\"]","warp":"true"}},"F3":{"opcode":"procedures_call","next":"F4","parent":"F2","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},"F4":{"opcode":"procedures_call","next":"F5","parent":"F3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*render frame","argumentids":"[]","warp":"true"}},"F5":{"opcode":"data_changevariableby","next":"a1","parent":"F4","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_frames","FJEs/3`VRSW|=4S_cI}F"]},"shadow":false,"topLevel":false},"a1":{"opcode":"control_if","next":"-","parent":"F5","inputs":{"CONDITION":[2,"J7"],"SUBSTACK":[2,"J8"]},"fields":{},"shadow":false,"topLevel":false},"J7":{"opcode":"operator_equals","next":null,"parent":"a1","inputs":{"OPERAND1":[3,[12,"render","b#%5IA`afs~P-ErWHe%`"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"J8":{"opcode":"data_setvariableto","next":null,"parent":"a1","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["render","b#%5IA`afs~P-ErWHe%`"]},"shadow":false,"topLevel":false},"-":{"opcode":"control_if","next":"J9","parent":"a1","inputs":{"CONDITION":[2,"J!"],"SUBSTACK":[2,"iE"]},"fields":{},"shadow":false,"topLevel":false},"J!":{"opcode":"operator_gt","next":null,"parent":"-","inputs":{"OPERAND1":[3,[12,"_frames","FJEs/3`VRSW|=4S_cI}F"],[10,""]],"OPERAND2":[3,[12,"_frameskip","%Z}6^@{`zI6YV~G_?)Jj"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"iE":{"opcode":"data_changevariableby","next":"J#","parent":"-","inputs":{"VALUE":[3,"J%",[4,"0"]]},"fields":{"VARIABLE":["_frames","FJEs/3`VRSW|=4S_cI}F"]},"shadow":false,"topLevel":false},"J%":{"opcode":"operator_subtract","next":null,"parent":"iE","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"_frameskip","%Z}6^@{`zI6YV~G_?)Jj"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"J#":{"opcode":"data_setvariableto","next":null,"parent":"iE","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["render","b#%5IA`afs~P-ErWHe%`"]},"shadow":false,"topLevel":false},"J9":{"opcode":"data_setvariableto","next":null,"parent":"-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-WLY","Z]?-Im_0pF^!OOi!AX81"]},"shadow":false,"topLevel":false},"a0":{"opcode":"control_if","next":"J(","parent":"aZ","inputs":{"CONDITION":[2,"J)"],"SUBSTACK":[2,"J*"]},"fields":{},"shadow":false,"topLevel":false},"J)":{"opcode":"operator_equals","next":null,"parent":"a0","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[3,[12,"-keyRandom","_CW|-^_^`N}DL:?%3bn."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"J*":{"opcode":"procedures_call","next":null,"parent":"a0","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"update joypad and register","argumentids":"[]","warp":"true"}},"J(":{"opcode":"control_stop","next":null,"parent":"a0","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cA":{"opcode":"control_if","next":null,"parent":"aW","inputs":{"CONDITION":[2,"J="],"SUBSTACK":[2,"F%"]},"fields":{},"shadow":false,"topLevel":false},"J=":{"opcode":"operator_equals","next":null,"parent":"cA","inputs":{"OPERAND1":[3,[12,"_lineCyc","+rwgUY7_t16|rsI3)wfC"],[10,""]],"OPERAND2":[1,[10,"456"]]},"fields":{},"shadow":false,"topLevel":false},"F%":{"opcode":"data_setvariableto","next":"jR","parent":"cA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_lineCyc","+rwgUY7_t16|rsI3)wfC"]},"shadow":false,"topLevel":false},"jR":{"opcode":"procedures_call","next":"jS","parent":"F%","inputs":{"LxbWd59lHDpYkr5#Qsr(":[3,"J?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*setLY %s","argumentids":"[\"LxbWd59lHDpYkr5#Qsr(\"]","warp":"true"}},"J?":{"opcode":"operator_add","next":null,"parent":"jR","inputs":{"NUM1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jS":{"opcode":"control_if","next":null,"parent":"jR","inputs":{"CONDITION":[2,"J@"],"SUBSTACK":[2,"F("]},"fields":{},"shadow":false,"topLevel":false},"J@":{"opcode":"operator_equals","next":null,"parent":"jS","inputs":{"OPERAND1":[3,[12,"-LY","R93(y;ezBDFNxz;R$.9{"],[10,""]],"OPERAND2":[1,[10,"154"]]},"fields":{},"shadow":false,"topLevel":false},"F(":{"opcode":"procedures_call","next":"ll","parent":"jS","inputs":{"LxbWd59lHDpYkr5#Qsr(":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*setLY %s","argumentids":"[\"LxbWd59lHDpYkr5#Qsr(\"]","warp":"true"}},"ll":{"opcode":"procedures_call","next":"J[","parent":"F(","inputs":{"XAnG?a[IUle97wxqa*bi":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"*STATUS %s","argumentids":"[\"XAnG?a[IUle97wxqa*bi\"]","warp":"true"}},"J[":{"opcode":"data_setvariableto","next":null,"parent":"ll","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_PIXEL#","AfAG@-SCQv_v!Pd(!ksr"]},"shadow":false,"topLevel":false},"aI^":{"opcode":"data_deletealloflist","next":"aKh","parent":"sK","inputs":{},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false},"aKh":{"opcode":"data_deletealloflist","next":"2h","parent":"aI^","inputs":{},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"2h":{"opcode":"control_repeat","next":"sL","parent":"aKh","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aKi"]},"fields":{},"shadow":false,"topLevel":false},"bmM":{"opcode":"data_addtolist","next":null,"parent":"aKi","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$B","Ztb;SoN#-D4mbjS9_?T|"]},"shadow":false,"topLevel":false},"aKi":{"opcode":"data_addtolist","next":"bmM","parent":"2h","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["$A","`#n=K.W21Z+b9,1$DjCs"]},"shadow":false,"topLevel":false}},"comments":{"QX":{"blockId":"QY","x":3172.5795745912396,"y":1235.5265260631002,"width":200,"height":200,"minimized":false,"text":"tile index"},"QZ":{"blockId":"Q0","x":34635.31718750004,"y":251.59999999999997,"width":200,"height":200,"minimized":false,"text":""},"Q1":{"blockId":"Q2","x":12420.962962962965,"y":793.2765432098773,"width":200,"height":104,"minimized":false,"text":"oam"},"Q3":{"blockId":"Q4","x":12272.987654320988,"y":279.4074074074074,"width":200,"height":104,"minimized":false,"text":"cart ram"},"Q5":{"blockId":"Q6","x":12309.987654320988,"y":517.4074074074074,"width":200,"height":104,"minimized":false,"text":"oam"},"Q7":{"blockId":"Q8","x":24091.115625,"y":715.8000000000002,"width":200,"height":200,"minimized":false,"text":""},"Q9":{"blockId":"Q!","x":23664.5859375,"y":452.8,"width":200,"height":200,"minimized":false,"text":""},"Q#":{"blockId":"Q%","x":6602.459972154334,"y":1109.266467870827,"width":200,"height":104,"minimized":false,"text":"oam"},"Q(":{"blockId":"Q)","x":14956.075,"y":537.2,"width":200,"height":200,"minimized":false,"text":""},"Q*":{"blockId":"Q+","x":4618.592592592592,"y":1046.222222222222,"width":200,"height":104,"minimized":false,"text":"oam"},"Q,":{"blockId":"Q-","x":5789.71875,"y":1116.8,"width":200,"height":200,"minimized":false,"text":""},"Q.":{"blockId":"Q/","x":4321.999999999997,"y":1251.6,"width":200,"height":200,"minimized":true,"text":"MMIO"},"Q:":{"blockId":"Q;","x":4165,"y":912.8518518518518,"width":200,"height":200,"minimized":true,"text":"ERAM0"},"Q=":{"blockId":"Q?","x":4158,"y":946.8518518518518,"width":200,"height":200,"minimized":true,"text":"ERAM1"},"Q@":{"blockId":"Q[","x":4148,"y":1104.8518518518517,"width":200,"height":200,"minimized":true,"text":"OAM"},"Q]":{"blockId":"Q^","x":4146,"y":1138.8518518518517,"width":200,"height":200,"minimized":true,"text":"do not use"},"Q_":{"blockId":"Q`","x":3887.444444444445,"y":1149.148148148148,"width":200,"height":200,"minimized":true,"text":"MMIO"},"Q{":{"blockId":"Q|","x":4190.444444444445,"y":1240.148148148148,"width":200,"height":200,"minimized":true,"text":"HRAM"},"Q}":{"blockId":"Q~","x":4759.597446250916,"y":1951.2,"width":200,"height":200,"minimized":false,"text":""},"Ra":{"blockId":"Rb","x":19140.974788284304,"y":1178.4000000000003,"width":200,"height":200,"minimized":false,"text":""},"Rc":{"blockId":"Rd","x":16311.763903045656,"y":1413.6000000000001,"width":200,"height":200,"minimized":false,"text":""},"ZH":{"blockId":"pn","x":239,"y":448,"width":200,"height":200,"minimized":false,"text":"Register list entries in terms of what registers each one refers to\n1 = B\n2 = C\n3 = D\n4 = E\n5 = H\n6 = L\n7= \"M\" (anything writing here goes to RAM)\n8 = A\n9 = 16-bit Shift register"},"aC!":{"blockId":"OV","x":434,"y":624,"width":217,"height":208,"minimized":false,"text":"Flag list\n1 = C (Carry)\n2 = 1 (always 1)\n3 = P (Parity)\n4 = 0\n5 = AC (Auxiliary Carry)\n6 = 0\n7 = Z (Zero)\n8 = S (Sign)"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"14e46ec3e2ba471c2adfe8f119052307","md5ext":"14e46ec3e2ba471c2adfe8f119052307.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":22,"visible":false,"x":-159,"y":-145,"size":5.681854141872784,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"wave ","variables":{"lTmVP1QU2X.8`:dRKK^u":["sound",128],"9]b,=u?R90w=tux{E^:8":["delta","0"],"^O3jJx+xp(vzy`j-Qc^G":["s",0],"#_MF{}THpD}[S5u5NqvJ":[".t",256]},"lists":{},"broadcasts":{},"blocks":{"0":{"opcode":"control_forever","next":null,"parent":"ol","inputs":{"SUBSTACK":[2,"2j"]},"fields":{},"shadow":false,"topLevel":false},"1":{"opcode":"procedures_definition","next":"aI","parent":null,"inputs":{"custom_block":[1,"w"]},"fields":{},"shadow":false,"topLevel":true,"x":851,"y":2244},"2":{"opcode":"data_changevariableby","next":"z","parent":"A","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"3":{"opcode":"data_deleteoflist","next":"v","parent":"aw","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"4":{"opcode":"sound_setvolumeto","next":"5","parent":"aQ","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"5":{"opcode":"control_forever","next":null,"parent":"4","inputs":{"SUBSTACK":[2,"7"]},"fields":{},"shadow":false,"topLevel":false},"6":{"opcode":"sound_seteffectto","next":null,"parent":"e-","inputs":{"VALUE":[3,"aT",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"7":{"opcode":"sound_setvolumeto","next":null,"parent":"5","inputs":{"VOLUME":[3,"lj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"8":{"opcode":"operator_mathop","next":null,"parent":"m","inputs":{"NUM":[3,"aB",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"9":{"opcode":"operator_mathop","next":null,"parent":"s","inputs":{"NUM":[3,"a3",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"2j":{"opcode":"data_setvariableto","next":"aV","parent":"0","inputs":{"VALUE":[3,"om",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"2k":{"opcode":"data_replaceitemoflist","next":"bk","parent":"|","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,0]],"ITEM":[3,"]",[10,""]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"R":{"opcode":"operator_join","next":null,"parent":"c","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"aO",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/":{"opcode":"operator_mathop","next":null,"parent":"v","inputs":{"NUM":[3,"bj",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},":":{"opcode":"procedures_definition","next":"c","parent":null,"inputs":{"custom_block":[1,";"]},"fields":{},"shadow":false,"topLevel":true,"x":851,"y":64},";":{"opcode":"procedures_prototype","next":null,"parent":":","inputs":{"U[=0WfQ~_;kNx={661q+":[1,"a%"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"playsine %s","argumentids":"[\"U[=0WfQ~_;kNx={661q+\"]","argumentnames":"[\"number\"]","argumentdefaults":"[\"\"]","warp":"true"}},"S":{"opcode":"data_setvariableto","next":"af","parent":"k","inputs":{"VALUE":[3,"bu",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"T":{"opcode":"data_setvariableto","next":"V","parent":"O","inputs":{"VALUE":[3,"b6",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"U":{"opcode":"data_addtolist","next":"ao","parent":"an","inputs":{"ITEM":[3,"al",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"V":{"opcode":"data_setvariableto","next":"M","parent":"T","inputs":{"VALUE":[3,"b%",[10,""]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"W":{"opcode":"control_repeat","next":"bJ","parent":"b","inputs":{"TIMES":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,0]],"SUBSTACK":[2,"av"]},"fields":{},"shadow":false,"topLevel":false},"K":{"opcode":"control_repeat","next":"aq","parent":"aj","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"ar"]},"fields":{},"shadow":false,"topLevel":false},"L":{"opcode":"control_repeat","next":"O#","parent":"J","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"as"]},"fields":{},"shadow":false,"topLevel":false},"J":{"opcode":"data_setvariableto","next":"L","parent":"ar","inputs":{"VALUE":[3,"bD",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"M":{"opcode":"data_setvariableto","next":"G","parent":"V","inputs":{"VALUE":[3,"b*",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"G":{"opcode":"data_setvariableto","next":"j","parent":"M","inputs":{"VALUE":[3,"E",[10,""]]},"fields":{"VARIABLE":["r.6","flj)QgXS,93H6OayZ`w[-r.6-"]},"shadow":false,"topLevel":false},"N":{"opcode":"data_setvariableto","next":"H","parent":"D","inputs":{"VALUE":[3,"by",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"E":{"opcode":"operator_subtract","next":null,"parent":"G","inputs":{"NUM1":[3,"O%",[4,0]],"NUM2":[3,"b.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"F":{"opcode":"control_repeat","next":null,"parent":"[","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"bf"]},"fields":{},"shadow":false,"topLevel":false},"O":{"opcode":"data_setvariableto","next":"T","parent":"av","inputs":{"VALUE":[3,"bK",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"P":{"opcode":"operator_multiply","next":null,"parent":"p","inputs":{"NUM1":[3,"bx",[4,0]],"NUM2":[3,"bg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a%":{"opcode":"argument_reporter_string_number","next":null,"parent":";","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"c":{"opcode":"sound_playuntildone","next":"d","parent":":","inputs":{"SOUND_MENU":[3,"R","a+"]},"fields":{},"shadow":false,"topLevel":false},"aO":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"a+":{"opcode":"sound_sounds_menu","next":null,"parent":"c","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},"d":{"opcode":"sound_playuntildone","next":"u","parent":"c","inputs":{"SOUND_MENU":[3,"_","aP"]},"fields":{},"shadow":false,"topLevel":false},"_":{"opcode":"operator_join","next":null,"parent":"d","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"aS",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aS":{"opcode":"argument_reporter_string_number","next":null,"parent":"_","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"aP":{"opcode":"sound_sounds_menu","next":null,"parent":"d","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},"u":{"opcode":"sound_playuntildone","next":null,"parent":"d","inputs":{"SOUND_MENU":[3,"^","aR"]},"fields":{},"shadow":false,"topLevel":false},"^":{"opcode":"operator_join","next":null,"parent":"u","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"a.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a.":{"opcode":"argument_reporter_string_number","next":null,"parent":"^","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"aR":{"opcode":"sound_sounds_menu","next":null,"parent":"u","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},"aQ":{"opcode":"control_start_as_clone","next":"4","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":851,"y":319},"lj":{"opcode":"operator_multiply","next":null,"parent":"7","inputs":{"NUM1":[3,"e,",[4,0]],"NUM2":[3,"oi",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"e,":{"opcode":"data_itemoflist","next":null,"parent":"lj","inputs":{"INDEX":[3,"a,",[7,0]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"a,":{"opcode":"operator_add","next":null,"parent":"e,","inputs":{"NUM1":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oi":{"opcode":"operator_divide","next":null,"parent":"lj","inputs":{"NUM1":[3,"N!",[4,0]],"NUM2":[1,[4,"90"]]},"fields":{},"shadow":false,"topLevel":false},"N!":{"opcode":"data_itemoflist","next":null,"parent":"oi","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+AUDIO ENGINE volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"a-":{"opcode":"control_start_as_clone","next":"e-","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":851,"y":571},"e-":{"opcode":"control_forever","next":null,"parent":"a-","inputs":{"SUBSTACK":[2,"6"]},"fields":{},"shadow":false,"topLevel":false},"aT":{"opcode":"operator_add","next":null,"parent":"6","inputs":{"NUM1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[4,0]],"NUM2":[1,[4,"-20"]]},"fields":{},"shadow":false,"topLevel":false},"aU":{"opcode":"operator_multiply","next":null,"parent":null,"inputs":{"NUM1":[1,[4,"120"]],"NUM2":[3,"q",[4,0]]},"fields":{},"shadow":false,"topLevel":true,"x":1211,"y":721},"q":{"opcode":"operator_random","next":null,"parent":"aU","inputs":{"FROM":[3,"m",[4,0]],"TO":[3,"s",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"m":{"opcode":"operator_subtract","next":null,"parent":"q","inputs":{"NUM1":[3,"a/",[4,0]],"NUM2":[3,"8",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a/":{"opcode":"operator_mathop","next":null,"parent":"m","inputs":{"NUM":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"aB":{"opcode":"operator_add","next":null,"parent":"8","inputs":{"NUM1":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"s":{"opcode":"operator_subtract","next":null,"parent":"q","inputs":{"NUM1":[3,"9",[4,0]],"NUM2":[3,"aE",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a3":{"opcode":"operator_add","next":null,"parent":"9","inputs":{"NUM1":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aE":{"opcode":"operator_mathop","next":null,"parent":"s","inputs":{"NUM":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"a4":{"opcode":"control_start_as_clone","next":"!","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1443,"y":164},"!":{"opcode":"sound_setvolumeto","next":"aF","parent":"a4","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF":{"opcode":"control_forever","next":null,"parent":"!","inputs":{"SUBSTACK":[2,"a5"]},"fields":{},"shadow":false,"topLevel":false},"a5":{"opcode":"procedures_call","next":null,"parent":"aF","inputs":{"U[=0WfQ~_;kNx={661q+":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"playsine %s","argumentids":"[\"U[=0WfQ~_;kNx={661q+\"]","warp":"true"}},"aG":{"opcode":"procedures_definition","next":"aH","parent":null,"inputs":{"custom_block":[1,"a6"]},"fields":{},"shadow":false,"topLevel":true,"x":851,"y":811},"a6":{"opcode":"procedures_prototype","next":null,"parent":"aG","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aH":{"opcode":"data_setvariableto","next":"=","parent":"aG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["sound","lTmVP1QU2X.8`:dRKK^u"]},"shadow":false,"topLevel":false},"=":{"opcode":"control_repeat","next":null,"parent":"aH","inputs":{"TIMES":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[6,0]],"SUBSTACK":[2,"t"]},"fields":{},"shadow":false,"topLevel":false},"t":{"opcode":"control_create_clone_of","next":"a7","parent":"=","inputs":{"CLONE_OPTION":[1,"a8"]},"fields":{},"shadow":false,"topLevel":false},"a8":{"opcode":"control_create_clone_of_menu","next":null,"parent":"t","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a7":{"opcode":"data_changevariableby","next":null,"parent":"t","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["sound","lTmVP1QU2X.8`:dRKK^u"]},"shadow":false,"topLevel":false},"oj":{"opcode":"procedures_call","next":"@","parent":"?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","warp":"true"}},"w":{"opcode":"procedures_prototype","next":null,"parent":"1","inputs":{"P5f@u1RgDjs00|I_:M3~":[1,"bl"],"8b4A{#Oh6Wy~vpD1J+zW":[1,"bm"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick %s , %s","argumentids":"[\"P5f@u1RgDjs00|I_:M3~\",\"8b4A{#Oh6Wy~vpD1J+zW\"]","argumentnames":"[\"sample\",\"n\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bl":{"opcode":"argument_reporter_string_number","next":null,"parent":"w","inputs":{},"fields":{"VALUE":["sample",null]},"shadow":true,"topLevel":false},"bm":{"opcode":"argument_reporter_string_number","next":null,"parent":"w","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"aI":{"opcode":"data_deletealloflist","next":"aJ","parent":"1","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aJ":{"opcode":"data_deletealloflist","next":"x","parent":"aI","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"x":{"opcode":"data_setvariableto","next":"B","parent":"aJ","inputs":{"VALUE":[3,"bh",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bh":{"opcode":"operator_multiply","next":null,"parent":"x","inputs":{"NUM1":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"B":{"opcode":"control_for_each","next":"aK","parent":"x","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,0]],"SUBSTACK":[2,"n"]},"fields":{"VARIABLE":["i2","w+P+Pep[i1(OdhNI0ghA"]},"shadow":false,"topLevel":false},"n":{"opcode":"data_setvariableto","next":"o","parent":"B","inputs":{"VALUE":[3,"bi",[10,""]]},"fields":{"VARIABLE":[".t","#_MF{}THpD}[S5u5NqvJ"]},"shadow":false,"topLevel":false},"bi":{"opcode":"operator_multiply","next":null,"parent":"n","inputs":{"NUM1":[3,[12,"i2","w+P+Pep[i1(OdhNI0ghA"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"o":{"opcode":"data_setvariableto","next":"eH","parent":"n","inputs":{"VALUE":[3,"ok",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ok":{"opcode":"operator_subtract","next":null,"parent":"o","inputs":{"NUM1":[3,"aL",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aL":{"opcode":"operator_divide","next":null,"parent":"ok","inputs":{"NUM1":[3,"N#",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N#":{"opcode":"data_itemoflist","next":null,"parent":"aL","inputs":{"INDEX":[3,[12,".t","#_MF{}THpD}[S5u5NqvJ"],[7,0]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"eH":{"opcode":"data_addtolist","next":null,"parent":"o","inputs":{"ITEM":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"aK":{"opcode":"procedures_call","next":"aM","parent":"B","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","warp":"true"}},"aM":{"opcode":"data_setvariableto","next":"aN","parent":"aK","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aN":{"opcode":"data_setvariableto","next":"{","parent":"aM","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"{":{"opcode":"control_repeat","next":null,"parent":"aN","inputs":{"TIMES":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[6,0]],"SUBSTACK":[2,"|"]},"fields":{},"shadow":false,"topLevel":false},"|":{"opcode":"data_changevariableby","next":"2k","parent":"{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"]":{"opcode":"operator_multiply","next":null,"parent":"2k","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"`":{"opcode":"operator_mathop","next":null,"parent":"]","inputs":{"NUM":[3,"p",[4,0]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"p":{"opcode":"operator_add","next":null,"parent":"`","inputs":{"NUM1":[3,"a:",[4,0]],"NUM2":[3,"P",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a:":{"opcode":"operator_multiply","next":null,"parent":"p","inputs":{"NUM1":[3,"bv",[4,0]],"NUM2":[3,"bw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bv":{"opcode":"data_itemoflist","next":null,"parent":"a:","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"bw":{"opcode":"data_itemoflist","next":null,"parent":"a:","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"bx":{"opcode":"data_itemoflist","next":null,"parent":"P","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"bg":{"opcode":"data_itemoflist","next":null,"parent":"P","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"bk":{"opcode":"data_changevariableby","next":null,"parent":"2k","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"}":{"opcode":"procedures_definition","next":"~","parent":null,"inputs":{"custom_block":[1,"aa"]},"fields":{},"shadow":false,"topLevel":true,"x":264,"y":64},"aa":{"opcode":"procedures_prototype","next":null,"parent":"}","inputs":{"input0":[1,"bn"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","argumentnames":"[\"I\"]","argumentdefaults":"[false]","warp":"true"}},"bn":{"opcode":"argument_reporter_boolean","next":null,"parent":"aa","inputs":{},"fields":{"VALUE":["I",null]},"shadow":true,"topLevel":false},"~":{"opcode":"data_deleteoflist","next":"ab","parent":"}","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ab":{"opcode":"data_deleteoflist","next":"a","parent":"~","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a":{"opcode":"control_if_else","next":"ac","parent":"ab","inputs":{"CONDITION":[2,"Q"],"SUBSTACK":[2,"ah"],"SUBSTACK2":[2,"ae"]},"fields":{},"shadow":false,"topLevel":false},"Q":{"opcode":"operator_lt","next":null,"parent":"a","inputs":{"OPERAND1":[3,"bo",[10,""]],"OPERAND2":[3,"bp",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bo":{"opcode":"data_lengthoflist","next":null,"parent":"Q","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"bp":{"opcode":"data_lengthoflist","next":null,"parent":"Q","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"ah":{"opcode":"data_setvariableto","next":null,"parent":"a","inputs":{"VALUE":[3,"bq",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bq":{"opcode":"data_lengthoflist","next":null,"parent":"ah","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"ae":{"opcode":"data_setvariableto","next":null,"parent":"a","inputs":{"VALUE":[3,"br",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"br":{"opcode":"data_lengthoflist","next":null,"parent":"ae","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ac":{"opcode":"data_changevariableby","next":"ag","parent":"a","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ag":{"opcode":"data_setvariableto","next":"ad","parent":"ac","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"ad":{"opcode":"data_setvariableto","next":"e","parent":"ag","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"e":{"opcode":"control_repeat_until","next":"k","parent":"ad","inputs":{"CONDITION":[2,"bs"],"SUBSTACK":[2,"ai"]},"fields":{},"shadow":false,"topLevel":false},"bs":{"opcode":"operator_gt","next":null,"parent":"e","inputs":{"OPERAND1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]],"OPERAND2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ai":{"opcode":"data_changevariableby","next":"bt","parent":"e","inputs":{"VALUE":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"bt":{"opcode":"data_changevariableby","next":null,"parent":"ai","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"k":{"opcode":"control_repeat","next":"aj","parent":"e","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,0]],"SUBSTACK":[2,"S"]},"fields":{},"shadow":false,"topLevel":false},"bu":{"opcode":"data_lengthoflist","next":null,"parent":"S","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"af":{"opcode":"data_setvariableto","next":"D","parent":"S","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"D":{"opcode":"control_repeat","next":"an","parent":"af","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,0]],"SUBSTACK":[2,"N"]},"fields":{},"shadow":false,"topLevel":false},"by":{"opcode":"operator_multiply","next":null,"parent":"N","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"H":{"opcode":"data_changevariableby","next":"ak","parent":"N","inputs":{"VALUE":[3,"bz",[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bz":{"opcode":"operator_mod","next":null,"parent":"H","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ak":{"opcode":"data_setvariableto","next":null,"parent":"H","inputs":{"VALUE":[3,"am",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"am":{"opcode":"operator_mathop","next":null,"parent":"ak","inputs":{"NUM":[3,"bA",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bA":{"opcode":"operator_divide","next":null,"parent":"am","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"an":{"opcode":"data_changevariableby","next":"U","parent":"D","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"al":{"opcode":"operator_add","next":null,"parent":"U","inputs":{"NUM1":[3,"bB",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB":{"opcode":"data_itemoflist","next":null,"parent":"al","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ao":{"opcode":"data_addtolist","next":null,"parent":"U","inputs":{"ITEM":[3,"ap",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"ap":{"opcode":"operator_add","next":null,"parent":"ao","inputs":{"NUM1":[3,"b#",[4,0]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"b#":{"opcode":"data_itemoflist","next":null,"parent":"ap","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,0]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aj":{"opcode":"data_setvariableto","next":"K","parent":"k","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"ar":{"opcode":"data_setvariableto","next":"J","parent":"K","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bD":{"opcode":"operator_divide","next":null,"parent":"J","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as":{"opcode":"data_setvariableto","next":"b","parent":"L","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"b":{"opcode":"control_if_else","next":"W","parent":"as","inputs":{"CONDITION":[2,"bT"],"SUBSTACK":[2,"at"],"SUBSTACK2":[2,"au"]},"fields":{},"shadow":false,"topLevel":false},"bT":{"opcode":"argument_reporter_boolean","next":null,"parent":"b","inputs":{},"fields":{"VALUE":["I",null]},"shadow":false,"topLevel":false},"at":{"opcode":"data_setvariableto","next":null,"parent":"b","inputs":{"VALUE":[3,"b5",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"b5":{"opcode":"operator_divide","next":null,"parent":"at","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au":{"opcode":"data_setvariableto","next":null,"parent":"b","inputs":{"VALUE":[3,"bI",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"bI":{"opcode":"operator_divide","next":null,"parent":"au","inputs":{"NUM1":[1,[4,"-180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av":{"opcode":"data_changevariableby","next":"O","parent":"W","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bK":{"opcode":"operator_mathop","next":null,"parent":"O","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"b6":{"opcode":"operator_mathop","next":null,"parent":"T","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,0]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"b%":{"opcode":"data_itemoflist","next":null,"parent":"V","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"b*":{"opcode":"data_itemoflist","next":null,"parent":"M","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"O%":{"opcode":"operator_multiply","next":null,"parent":"E","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"b.":{"opcode":"operator_multiply","next":null,"parent":"E","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"j":{"opcode":"data_setvariableto","next":"i","parent":"G","inputs":{"VALUE":[3,"g",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"g":{"opcode":"operator_add","next":null,"parent":"j","inputs":{"NUM1":[3,"aX",[4,0]],"NUM2":[3,"aY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aX":{"opcode":"operator_multiply","next":null,"parent":"g","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,0]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aY":{"opcode":"operator_multiply","next":null,"parent":"g","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i":{"opcode":"data_changevariableby","next":"f","parent":"j","inputs":{"VALUE":[3,"aW",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aW":{"opcode":"operator_subtract","next":null,"parent":"i","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"f":{"opcode":"data_setvariableto","next":"h","parent":"i","inputs":{"VALUE":[3,"aZ",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"aZ":{"opcode":"data_itemoflist","next":null,"parent":"f","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"h":{"opcode":"data_setvariableto","next":"C","parent":"f","inputs":{"VALUE":[3,"a0",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"a0":{"opcode":"data_itemoflist","next":null,"parent":"h","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"C":{"opcode":"data_replaceitemoflist","next":"A","parent":"h","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a1",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a1":{"opcode":"operator_add","next":null,"parent":"C","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A":{"opcode":"data_replaceitemoflist","next":"2","parent":"C","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"-",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"-":{"opcode":"operator_add","next":null,"parent":"A","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z":{"opcode":"data_replaceitemoflist","next":"r","parent":"2","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,".",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},".":{"opcode":"operator_subtract","next":null,"parent":"z","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,0]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"r":{"opcode":"data_replaceitemoflist","next":"y","parent":"z","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]],"ITEM":[3,"a9",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a9":{"opcode":"operator_subtract","next":null,"parent":"r","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,0]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"y":{"opcode":"data_changevariableby","next":"a!","parent":"r","inputs":{"VALUE":[3,"a#",[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a#":{"opcode":"operator_subtract","next":null,"parent":"y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"a!":{"opcode":"data_changevariableby","next":null,"parent":"y","inputs":{"VALUE":[3,[12,"r.9","flj)QgXS,93H6OayZ`w[-r.9-"],[4,0]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"bJ":{"opcode":"data_changevariableby","next":null,"parent":"W","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"O#":{"opcode":"data_changevariableby","next":null,"parent":"L","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aq":{"opcode":"data_setvariableto","next":"aw","parent":"K","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aw":{"opcode":"data_deleteoflist","next":"3","parent":"aq","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"v":{"opcode":"data_setvariableto","next":"l","parent":"3","inputs":{"VALUE":[3,"/",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bj":{"opcode":"data_lengthoflist","next":null,"parent":"/","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"l":{"opcode":"control_repeat","next":null,"parent":"v","inputs":{"TIMES":[3,"bE",[6,0]],"SUBSTACK":[2,"ax"]},"fields":{},"shadow":false,"topLevel":false},"bE":{"opcode":"data_lengthoflist","next":null,"parent":"l","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ax":{"opcode":"data_changevariableby","next":"I","parent":"l","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"I":{"opcode":"data_addtolist","next":"ay","parent":"ax","inputs":{"ITEM":[3,"az",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"az":{"opcode":"operator_divide","next":null,"parent":"I","inputs":{"NUM1":[3,"b:",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"b:":{"opcode":"data_itemoflist","next":null,"parent":"az","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ay":{"opcode":"data_addtolist","next":null,"parent":"I","inputs":{"ITEM":[3,"aA",[10,""]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aA":{"opcode":"operator_divide","next":null,"parent":"ay","inputs":{"NUM1":[3,"bN",[4,0]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bN":{"opcode":"data_itemoflist","next":null,"parent":"aA","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,0]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"N%":{"opcode":"event_whenbroadcastreceived","next":"ol","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["create sound","O7?o@Pl6XR6dG~oq]ZEc"]},"shadow":false,"topLevel":true,"x":1064,"y":1532},"ol":{"opcode":"procedures_call","next":"0","parent":"N%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","warp":"true"}},"om":{"opcode":"operator_multiply","next":null,"parent":"2j","inputs":{"NUM1":[3,"on",[4,0]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"on":{"opcode":"operator_subtract","next":null,"parent":"om","inputs":{"NUM1":[3,"Op",[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"Op":{"opcode":"data_itemoflist","next":null,"parent":"on","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+AUDIO ENGINE pitch","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"oo":{"opcode":"procedures_definition","next":"cz","parent":null,"inputs":{"custom_block":[1,"N("]},"fields":{},"shadow":false,"topLevel":true,"x":1578,"y":1223},"N(":{"opcode":"procedures_prototype","next":null,"parent":"oo","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"cz":{"opcode":"data_setvariableto","next":"?","parent":"oo","inputs":{"VALUE":[1,[10,"10"]]},"fields":{"VARIABLE":["amp","d8yQmxwHD@EL!![dF$O4"]},"shadow":false,"topLevel":false},"aV":{"opcode":"procedures_call","next":null,"parent":"2j","inputs":{"P5f@u1RgDjs00|I_:M3~":[1,[10,""]],"8b4A{#Oh6Wy~vpD1J+zW":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick %s , %s","argumentids":"[\"P5f@u1RgDjs00|I_:M3~\",\"8b4A{#Oh6Wy~vpD1J+zW\"]","warp":"true"}},"?":{"opcode":"data_setvariableto","next":"oj","parent":"cz","inputs":{"VALUE":[1,[10,"128"]]},"fields":{"VARIABLE":["quality","),FI]}BC9Yl17xV5^-f8"]},"shadow":false,"topLevel":false},"@":{"opcode":"data_setvariableto","next":"[","parent":"oj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["delta","9]b,=u?R90w=tux{E^:8"]},"shadow":false,"topLevel":false},"[":{"opcode":"data_deletealloflist","next":"F","parent":"@","inputs":{},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"bf":{"opcode":"data_addtolist","next":null,"parent":"F","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"bmN":{"opcode":"event_whenbroadcastreceived","next":"bmO","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["prune","eUXr-]/_0N]qtaXLt(ye"]},"shadow":false,"topLevel":true,"x":1426,"y":596},"bmO":{"opcode":"control_delete_this_clone","next":null,"parent":"bmN","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"sine1","assetId":"bfa430f51d262bbe6286cfa19c93cd0e","dataFormat":"wav","rate":48000,"sampleCount":6144000,"md5ext":"bfa430f51d262bbe6286cfa19c93cd0e.wav"},{"name":"sine2","assetId":"6c9d2eeb38c2c15459b77f5c56d59060","dataFormat":"wav","rate":48000,"sampleCount":3072000,"md5ext":"6c9d2eeb38c2c15459b77f5c56d59060.wav"},{"name":"sine3","assetId":"3e486ae5d11baaf067b3a9d460f88d8e","dataFormat":"wav","rate":48000,"sampleCount":2048000,"md5ext":"3e486ae5d11baaf067b3a9d460f88d8e.wav"},{"name":"sine4","assetId":"759a578a387ab696989e4d613c414b3d","dataFormat":"wav","rate":48000,"sampleCount":1536000,"md5ext":"759a578a387ab696989e4d613c414b3d.wav"},{"name":"sine5","assetId":"2217102afa3b6b7031c7b5124fd25102","dataFormat":"wav","rate":48000,"sampleCount":1228800,"md5ext":"2217102afa3b6b7031c7b5124fd25102.wav"},{"name":"sine6","assetId":"dedc0af79042b77f4a3d6233360deaa7","dataFormat":"wav","rate":48000,"sampleCount":1024000,"md5ext":"dedc0af79042b77f4a3d6233360deaa7.wav"},{"name":"sine7","assetId":"698f64cf71973e29ab75a5b8aff01dba","dataFormat":"wav","rate":48000,"sampleCount":877714,"md5ext":"698f64cf71973e29ab75a5b8aff01dba.wav"},{"name":"sine8","assetId":"888cefb457076baf3b15117b12da5ecb","dataFormat":"wav","rate":48000,"sampleCount":768000,"md5ext":"888cefb457076baf3b15117b12da5ecb.wav"},{"name":"sine9","assetId":"880dec8e00a4080e44e14b96cbff1405","dataFormat":"wav","rate":48000,"sampleCount":682666,"md5ext":"880dec8e00a4080e44e14b96cbff1405.wav"},{"name":"sine10","assetId":"7ae3164d92b042ad54ea65207a92381d","dataFormat":"wav","rate":48000,"sampleCount":614400,"md5ext":"7ae3164d92b042ad54ea65207a92381d.wav"},{"name":"sine11","assetId":"eb4b62d0bc94f0ef98aa0bbd80ad0532","dataFormat":"wav","rate":48000,"sampleCount":558545,"md5ext":"eb4b62d0bc94f0ef98aa0bbd80ad0532.wav"},{"name":"sine12","assetId":"20f8b9a56a6f95b749d87a5014e4c093","dataFormat":"wav","rate":48000,"sampleCount":512000,"md5ext":"20f8b9a56a6f95b749d87a5014e4c093.wav"},{"name":"sine13","assetId":"6d21e5450d70b0c230b41cf83ffc04ce","dataFormat":"wav","rate":48000,"sampleCount":472615,"md5ext":"6d21e5450d70b0c230b41cf83ffc04ce.wav"},{"name":"sine14","assetId":"cbc1b8329a43e98abe548a20769d56d4","dataFormat":"wav","rate":48000,"sampleCount":438857,"md5ext":"cbc1b8329a43e98abe548a20769d56d4.wav"},{"name":"sine15","assetId":"74b56af6cf099a73c65ae30de2e2928d","dataFormat":"wav","rate":48000,"sampleCount":409600,"md5ext":"74b56af6cf099a73c65ae30de2e2928d.wav"},{"name":"sine16","assetId":"58d9e9731c0dd42b1f343900817a1a52","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"58d9e9731c0dd42b1f343900817a1a52.wav"},{"name":"sine17","assetId":"bddcac6e842177df9df6c690bc9f70f9","dataFormat":"wav","rate":48000,"sampleCount":361411,"md5ext":"bddcac6e842177df9df6c690bc9f70f9.wav"},{"name":"sine18","assetId":"83458552c05dc69855bf515c1ae37f8f","dataFormat":"wav","rate":48000,"sampleCount":341333,"md5ext":"83458552c05dc69855bf515c1ae37f8f.wav"},{"name":"sine19","assetId":"68e5116ac6cf8537e9f706de580936e7","dataFormat":"wav","rate":48000,"sampleCount":323368,"md5ext":"68e5116ac6cf8537e9f706de580936e7.wav"},{"name":"sine20","assetId":"8666cc61cc4862fe7e82e68451c578ab","dataFormat":"wav","rate":48000,"sampleCount":307200,"md5ext":"8666cc61cc4862fe7e82e68451c578ab.wav"},{"name":"sine21","assetId":"cd08bc274c244210339062a5de3f5f88","dataFormat":"wav","rate":48000,"sampleCount":292571,"md5ext":"cd08bc274c244210339062a5de3f5f88.wav"},{"name":"sine22","assetId":"02ec0c2843ac90b4113e4aadf75d8a2e","dataFormat":"wav","rate":48000,"sampleCount":279272,"md5ext":"02ec0c2843ac90b4113e4aadf75d8a2e.wav"},{"name":"sine23","assetId":"65047a26adc0066f8192a0f28997ea5f","dataFormat":"wav","rate":48000,"sampleCount":267130,"md5ext":"65047a26adc0066f8192a0f28997ea5f.wav"},{"name":"sine24","assetId":"ef5d2d0ef5b0c4cc0b29df7b73f88e17","dataFormat":"wav","rate":48000,"sampleCount":256000,"md5ext":"ef5d2d0ef5b0c4cc0b29df7b73f88e17.wav"},{"name":"sine25","assetId":"6938a172570d03f3490e023c86f4d1d0","dataFormat":"wav","rate":48000,"sampleCount":245759,"md5ext":"6938a172570d03f3490e023c86f4d1d0.wav"},{"name":"sine26","assetId":"f2b136dd5eb0faf599d0fbf0b1ccf5f8","dataFormat":"wav","rate":48000,"sampleCount":236307,"md5ext":"f2b136dd5eb0faf599d0fbf0b1ccf5f8.wav"},{"name":"sine27","assetId":"d4e18efcd4a4aefe5fa5c8d32d6a7ab1","dataFormat":"wav","rate":48000,"sampleCount":227555,"md5ext":"d4e18efcd4a4aefe5fa5c8d32d6a7ab1.wav"},{"name":"sine28","assetId":"db472ca07a19c41abe4d10442a981309","dataFormat":"wav","rate":48000,"sampleCount":219428,"md5ext":"db472ca07a19c41abe4d10442a981309.wav"},{"name":"sine29","assetId":"e6e988f43549feaf1d6d9ffd2c5b7031","dataFormat":"wav","rate":48000,"sampleCount":211862,"md5ext":"e6e988f43549feaf1d6d9ffd2c5b7031.wav"},{"name":"sine30","assetId":"59b8387480615c39779e04248dfe1fab","dataFormat":"wav","rate":48000,"sampleCount":204800,"md5ext":"59b8387480615c39779e04248dfe1fab.wav"},{"name":"sine31","assetId":"933fcae894d6a655c66e4ec4f4867b4c","dataFormat":"wav","rate":48000,"sampleCount":198193,"md5ext":"933fcae894d6a655c66e4ec4f4867b4c.wav"},{"name":"sine32","assetId":"10852c9f0e9ac6790e9b2c14860b0b43","dataFormat":"wav","rate":48000,"sampleCount":192000,"md5ext":"10852c9f0e9ac6790e9b2c14860b0b43.wav"},{"name":"sine33","assetId":"ad7bd328f088875b73af74896b05bae3","dataFormat":"wav","rate":48000,"sampleCount":186181,"md5ext":"ad7bd328f088875b73af74896b05bae3.wav"},{"name":"sine34","assetId":"a53eb86463b1dffd4853ba037e0f506d","dataFormat":"wav","rate":48000,"sampleCount":180705,"md5ext":"a53eb86463b1dffd4853ba037e0f506d.wav"},{"name":"sine35","assetId":"b8c25ec5e53b7b312b69107fd95569e8","dataFormat":"wav","rate":48000,"sampleCount":175542,"md5ext":"b8c25ec5e53b7b312b69107fd95569e8.wav"},{"name":"sine36","assetId":"c27a29efbfa7850b1a4554b6d185e7a2","dataFormat":"wav","rate":48000,"sampleCount":170666,"md5ext":"c27a29efbfa7850b1a4554b6d185e7a2.wav"},{"name":"sine37","assetId":"4f67ec93287bfad584fedc8f4ff44318","dataFormat":"wav","rate":48000,"sampleCount":166054,"md5ext":"4f67ec93287bfad584fedc8f4ff44318.wav"},{"name":"sine38","assetId":"896d0c3651cb975bda0c25c1f3ee9d3a","dataFormat":"wav","rate":48000,"sampleCount":161684,"md5ext":"896d0c3651cb975bda0c25c1f3ee9d3a.wav"},{"name":"sine39","assetId":"4b827dde09b4c04c21de3ea169c314b8","dataFormat":"wav","rate":48000,"sampleCount":157538,"md5ext":"4b827dde09b4c04c21de3ea169c314b8.wav"},{"name":"sine40","assetId":"bcbf6121c8cea815012df6e56baef149","dataFormat":"wav","rate":48000,"sampleCount":153600,"md5ext":"bcbf6121c8cea815012df6e56baef149.wav"},{"name":"sine41","assetId":"f2d0bf137200076ef9627b5da63a8594","dataFormat":"wav","rate":48000,"sampleCount":149853,"md5ext":"f2d0bf137200076ef9627b5da63a8594.wav"},{"name":"sine42","assetId":"7f4edfaef7eef35d270b4544194f09b7","dataFormat":"wav","rate":48000,"sampleCount":146285,"md5ext":"7f4edfaef7eef35d270b4544194f09b7.wav"},{"name":"sine43","assetId":"744a7e4126a8bef7224686419546fb32","dataFormat":"wav","rate":48000,"sampleCount":142883,"md5ext":"744a7e4126a8bef7224686419546fb32.wav"},{"name":"sine44","assetId":"613d88166ecafd10adf8ad4a2d06e90d","dataFormat":"wav","rate":48000,"sampleCount":139636,"md5ext":"613d88166ecafd10adf8ad4a2d06e90d.wav"},{"name":"sine45","assetId":"6fa95ea0834b5a26f8e20547f44f7deb","dataFormat":"wav","rate":48000,"sampleCount":136533,"md5ext":"6fa95ea0834b5a26f8e20547f44f7deb.wav"},{"name":"sine46","assetId":"6a9756853339a3c49ef5b7edcd02689d","dataFormat":"wav","rate":48000,"sampleCount":133565,"md5ext":"6a9756853339a3c49ef5b7edcd02689d.wav"},{"name":"sine47","assetId":"1d4c5ac762c91132c53fc501055c666f","dataFormat":"wav","rate":48000,"sampleCount":130723,"md5ext":"1d4c5ac762c91132c53fc501055c666f.wav"},{"name":"sine48","assetId":"d0f2a9a536f649c2ba50d88afd626a4c","dataFormat":"wav","rate":48000,"sampleCount":128000,"md5ext":"d0f2a9a536f649c2ba50d88afd626a4c.wav"},{"name":"sine49","assetId":"7ca6e3b06e95901dba6d55d6f03083ca","dataFormat":"wav","rate":48000,"sampleCount":125387,"md5ext":"7ca6e3b06e95901dba6d55d6f03083ca.wav"},{"name":"sine50","assetId":"87e91c74e04dbfa3c559d05468a231ad","dataFormat":"wav","rate":48000,"sampleCount":122879,"md5ext":"87e91c74e04dbfa3c559d05468a231ad.wav"},{"name":"sine51","assetId":"f4215c14f02d400b5f8b2aaa710807d9","dataFormat":"wav","rate":48000,"sampleCount":120470,"md5ext":"f4215c14f02d400b5f8b2aaa710807d9.wav"},{"name":"sine52","assetId":"cf93ed82def7c17b7181203e1bcd39fa","dataFormat":"wav","rate":48000,"sampleCount":118153,"md5ext":"cf93ed82def7c17b7181203e1bcd39fa.wav"},{"name":"sine53","assetId":"6079badcb98d8562f6aaa47f264be86e","dataFormat":"wav","rate":48000,"sampleCount":115924,"md5ext":"6079badcb98d8562f6aaa47f264be86e.wav"},{"name":"sine54","assetId":"e2fa9d000fa1dfb0092d7a9010343f17","dataFormat":"wav","rate":48000,"sampleCount":113777,"md5ext":"e2fa9d000fa1dfb0092d7a9010343f17.wav"},{"name":"sine55","assetId":"360cab55f4133160e724545bbd03adb4","dataFormat":"wav","rate":48000,"sampleCount":111709,"md5ext":"360cab55f4133160e724545bbd03adb4.wav"},{"name":"sine56","assetId":"9be2ea7cf19c7179d3503a376e2c7b89","dataFormat":"wav","rate":48000,"sampleCount":109714,"md5ext":"9be2ea7cf19c7179d3503a376e2c7b89.wav"},{"name":"sine57","assetId":"f88cbbf84ff075a5d5bab8d944271010","dataFormat":"wav","rate":48000,"sampleCount":107789,"md5ext":"f88cbbf84ff075a5d5bab8d944271010.wav"},{"name":"sine58","assetId":"48217acc73bc3aa96c4a7e904407bb83","dataFormat":"wav","rate":48000,"sampleCount":105931,"md5ext":"48217acc73bc3aa96c4a7e904407bb83.wav"},{"name":"sine59","assetId":"ebc0a623611fdc225cdc1267597e32e3","dataFormat":"wav","rate":48000,"sampleCount":104135,"md5ext":"ebc0a623611fdc225cdc1267597e32e3.wav"},{"name":"sine60","assetId":"50d054f90db509b7683335e4e4f827a4","dataFormat":"wav","rate":48000,"sampleCount":102400,"md5ext":"50d054f90db509b7683335e4e4f827a4.wav"},{"name":"sine61","assetId":"f5282ae85ea91cb3abbae5a7d45e4c97","dataFormat":"wav","rate":48000,"sampleCount":100721,"md5ext":"f5282ae85ea91cb3abbae5a7d45e4c97.wav"},{"name":"sine62","assetId":"e253fd47fd656b3be083358e3b700818","dataFormat":"wav","rate":48000,"sampleCount":99096,"md5ext":"e253fd47fd656b3be083358e3b700818.wav"},{"name":"sine63","assetId":"aea725625af857665fa0c9969f1d0cf1","dataFormat":"wav","rate":48000,"sampleCount":97523,"md5ext":"aea725625af857665fa0c9969f1d0cf1.wav"},{"name":"sine64","assetId":"22b6f39217fb0f06dcbf339f579cb8ef","dataFormat":"wav","rate":48000,"sampleCount":96000,"md5ext":"22b6f39217fb0f06dcbf339f579cb8ef.wav"},{"name":"sine65","assetId":"e1d2683effff37269dcbfa180510cf4b","dataFormat":"wav","rate":48000,"sampleCount":94523,"md5ext":"e1d2683effff37269dcbfa180510cf4b.wav"},{"name":"sine66","assetId":"8d8cb920f0087197389fa0c42196dace","dataFormat":"wav","rate":48000,"sampleCount":93090,"md5ext":"8d8cb920f0087197389fa0c42196dace.wav"},{"name":"sine67","assetId":"0a4191a2ccb1869e74eb94fbb2c608e7","dataFormat":"wav","rate":48000,"sampleCount":91701,"md5ext":"0a4191a2ccb1869e74eb94fbb2c608e7.wav"},{"name":"sine68","assetId":"599333f2794ea4d44d2a4cc6ae782a96","dataFormat":"wav","rate":48000,"sampleCount":90352,"md5ext":"599333f2794ea4d44d2a4cc6ae782a96.wav"},{"name":"sine69","assetId":"b02753adf8f0b088e0b3d08a142534a7","dataFormat":"wav","rate":48000,"sampleCount":89043,"md5ext":"b02753adf8f0b088e0b3d08a142534a7.wav"},{"name":"sine70","assetId":"4c2642f6b7e3e9bf9c59e635f7829b80","dataFormat":"wav","rate":48000,"sampleCount":87771,"md5ext":"4c2642f6b7e3e9bf9c59e635f7829b80.wav"},{"name":"sine71","assetId":"abd12e61ccb4c10dac9d9a3539d71b63","dataFormat":"wav","rate":48000,"sampleCount":86535,"md5ext":"abd12e61ccb4c10dac9d9a3539d71b63.wav"},{"name":"sine72","assetId":"d0748ae1a524044a588b5b0f53fd43d6","dataFormat":"wav","rate":48000,"sampleCount":85333,"md5ext":"d0748ae1a524044a588b5b0f53fd43d6.wav"},{"name":"sine73","assetId":"042daa82a03de0e05a87414fe6937856","dataFormat":"wav","rate":48000,"sampleCount":84164,"md5ext":"042daa82a03de0e05a87414fe6937856.wav"},{"name":"sine74","assetId":"c5dbf8f96ca87422b24f894abdfb4fcf","dataFormat":"wav","rate":48000,"sampleCount":83027,"md5ext":"c5dbf8f96ca87422b24f894abdfb4fcf.wav"},{"name":"sine75","assetId":"dba15063b06043107f97c41ca79d2891","dataFormat":"wav","rate":48000,"sampleCount":81920,"md5ext":"dba15063b06043107f97c41ca79d2891.wav"},{"name":"sine76","assetId":"8a8aab1d9c71e505fdf9f76f6d3cfabb","dataFormat":"wav","rate":48000,"sampleCount":80842,"md5ext":"8a8aab1d9c71e505fdf9f76f6d3cfabb.wav"},{"name":"sine77","assetId":"6a74237144ccc14563f0b50d8740b1b9","dataFormat":"wav","rate":48000,"sampleCount":79792,"md5ext":"6a74237144ccc14563f0b50d8740b1b9.wav"},{"name":"sine78","assetId":"6323725bcdba0985a99b635311307323","dataFormat":"wav","rate":48000,"sampleCount":78769,"md5ext":"6323725bcdba0985a99b635311307323.wav"},{"name":"sine79","assetId":"7be8399413314be5a9b4215155c5bbf6","dataFormat":"wav","rate":48000,"sampleCount":77772,"md5ext":"7be8399413314be5a9b4215155c5bbf6.wav"},{"name":"sine80","assetId":"75b1302baed6e0c7e3bcf24102c827c6","dataFormat":"wav","rate":48000,"sampleCount":76800,"md5ext":"75b1302baed6e0c7e3bcf24102c827c6.wav"},{"name":"sine81","assetId":"fb5bba874144aff4c5f4c4a132f5d8c9","dataFormat":"wav","rate":48000,"sampleCount":75851,"md5ext":"fb5bba874144aff4c5f4c4a132f5d8c9.wav"},{"name":"sine82","assetId":"50b80906831cbb004160d0d3ab29c25f","dataFormat":"wav","rate":48000,"sampleCount":74926,"md5ext":"50b80906831cbb004160d0d3ab29c25f.wav"},{"name":"sine83","assetId":"fb4a906239af79dbaea9e35d8a333dcf","dataFormat":"wav","rate":48000,"sampleCount":74024,"md5ext":"fb4a906239af79dbaea9e35d8a333dcf.wav"},{"name":"sine84","assetId":"d4b6b8b1ac2083e58951cde8fc24d043","dataFormat":"wav","rate":48000,"sampleCount":73142,"md5ext":"d4b6b8b1ac2083e58951cde8fc24d043.wav"},{"name":"sine85","assetId":"566c3b199cdf4e222821c46df807bd71","dataFormat":"wav","rate":48000,"sampleCount":72282,"md5ext":"566c3b199cdf4e222821c46df807bd71.wav"},{"name":"sine86","assetId":"9c2c9219f97d6cee0f0447c6f930c641","dataFormat":"wav","rate":48000,"sampleCount":71441,"md5ext":"9c2c9219f97d6cee0f0447c6f930c641.wav"},{"name":"sine87","assetId":"ab7742faec0a73576aae5968f00a3557","dataFormat":"wav","rate":48000,"sampleCount":70620,"md5ext":"ab7742faec0a73576aae5968f00a3557.wav"},{"name":"sine88","assetId":"4b688ece31262559792f4bcb0fa9ab02","dataFormat":"wav","rate":48000,"sampleCount":69818,"md5ext":"4b688ece31262559792f4bcb0fa9ab02.wav"},{"name":"sine89","assetId":"43f283963ed23c280103932923170127","dataFormat":"wav","rate":48000,"sampleCount":69033,"md5ext":"43f283963ed23c280103932923170127.wav"},{"name":"sine90","assetId":"22da14750e1785450b348ebe9e06ced1","dataFormat":"wav","rate":48000,"sampleCount":68266,"md5ext":"22da14750e1785450b348ebe9e06ced1.wav"},{"name":"sine91","assetId":"63a40af7d5550e7f68c8e01fedfd6d86","dataFormat":"wav","rate":48000,"sampleCount":67516,"md5ext":"63a40af7d5550e7f68c8e01fedfd6d86.wav"},{"name":"sine92","assetId":"a348d5f7a73084b3b038612d48f6bb48","dataFormat":"wav","rate":48000,"sampleCount":66782,"md5ext":"a348d5f7a73084b3b038612d48f6bb48.wav"},{"name":"sine93","assetId":"0b79c21e61f9158673ac88b9867fc0d0","dataFormat":"wav","rate":48000,"sampleCount":66064,"md5ext":"0b79c21e61f9158673ac88b9867fc0d0.wav"},{"name":"sine94","assetId":"1f3ea465d54ec08676c14f5fed23b2c4","dataFormat":"wav","rate":48000,"sampleCount":65361,"md5ext":"1f3ea465d54ec08676c14f5fed23b2c4.wav"},{"name":"sine95","assetId":"0e1a97214676a300c9f0cd260a67b5d1","dataFormat":"wav","rate":48000,"sampleCount":64673,"md5ext":"0e1a97214676a300c9f0cd260a67b5d1.wav"},{"name":"sine96","assetId":"145f3080c3af778eae16b973d5095e52","dataFormat":"wav","rate":48000,"sampleCount":64000,"md5ext":"145f3080c3af778eae16b973d5095e52.wav"},{"name":"sine97","assetId":"6e69dfe70f53b88a9f5d8268b7f0c95b","dataFormat":"wav","rate":48000,"sampleCount":63340,"md5ext":"6e69dfe70f53b88a9f5d8268b7f0c95b.wav"},{"name":"sine98","assetId":"e7049363c619c09afba421d02baef6a0","dataFormat":"wav","rate":48000,"sampleCount":62693,"md5ext":"e7049363c619c09afba421d02baef6a0.wav"},{"name":"sine99","assetId":"1cfc2b709054954b15e5593fee7a16d9","dataFormat":"wav","rate":48000,"sampleCount":62060,"md5ext":"1cfc2b709054954b15e5593fee7a16d9.wav"},{"name":"sine100","assetId":"5f5b80be6a5c848aa3bbc2506cca0799","dataFormat":"wav","rate":48000,"sampleCount":61439,"md5ext":"5f5b80be6a5c848aa3bbc2506cca0799.wav"},{"name":"sine101","assetId":"dca4769bb80b64483cff2d17663942a4","dataFormat":"wav","rate":48000,"sampleCount":60831,"md5ext":"dca4769bb80b64483cff2d17663942a4.wav"},{"name":"sine102","assetId":"86088e23817a372c75664a34ef4b75b9","dataFormat":"wav","rate":48000,"sampleCount":60235,"md5ext":"86088e23817a372c75664a34ef4b75b9.wav"},{"name":"sine103","assetId":"5c1627200009261eee6cffa123963567","dataFormat":"wav","rate":48000,"sampleCount":59650,"md5ext":"5c1627200009261eee6cffa123963567.wav"},{"name":"sine104","assetId":"ac519a33460461aff7608477fd84c75b","dataFormat":"wav","rate":48000,"sampleCount":59076,"md5ext":"ac519a33460461aff7608477fd84c75b.wav"},{"name":"sine105","assetId":"26391c9902bd0f6403a59d3eda551df2","dataFormat":"wav","rate":48000,"sampleCount":58514,"md5ext":"26391c9902bd0f6403a59d3eda551df2.wav"},{"name":"sine106","assetId":"3615f18adb2ff39411e8f61c3806cd26","dataFormat":"wav","rate":48000,"sampleCount":57962,"md5ext":"3615f18adb2ff39411e8f61c3806cd26.wav"},{"name":"sine107","assetId":"c06b36acceff4c0b2407643d4ed88d4b","dataFormat":"wav","rate":48000,"sampleCount":57420,"md5ext":"c06b36acceff4c0b2407643d4ed88d4b.wav"},{"name":"sine108","assetId":"1cd9a55f06d12588fd95eb48029fa9ea","dataFormat":"wav","rate":48000,"sampleCount":56888,"md5ext":"1cd9a55f06d12588fd95eb48029fa9ea.wav"},{"name":"sine109","assetId":"cd7793e9058b5c0a06f36548b6fa5a6a","dataFormat":"wav","rate":48000,"sampleCount":56366,"md5ext":"cd7793e9058b5c0a06f36548b6fa5a6a.wav"},{"name":"sine110","assetId":"4a8cecd7cb1594c594a34b52bb660a77","dataFormat":"wav","rate":48000,"sampleCount":55854,"md5ext":"4a8cecd7cb1594c594a34b52bb660a77.wav"},{"name":"sine111","assetId":"1fac04316f556fa8c4ac22d54e43cb13","dataFormat":"wav","rate":48000,"sampleCount":55351,"md5ext":"1fac04316f556fa8c4ac22d54e43cb13.wav"},{"name":"sine112","assetId":"365eaf829d1c179363bbebffa5b815bb","dataFormat":"wav","rate":48000,"sampleCount":54857,"md5ext":"365eaf829d1c179363bbebffa5b815bb.wav"},{"name":"sine113","assetId":"8ef9373e35afcbe61a2cb0e8ad36d8c9","dataFormat":"wav","rate":48000,"sampleCount":54371,"md5ext":"8ef9373e35afcbe61a2cb0e8ad36d8c9.wav"},{"name":"sine114","assetId":"21fcab37866fdb22cfe96e23f1d920bc","dataFormat":"wav","rate":48000,"sampleCount":53894,"md5ext":"21fcab37866fdb22cfe96e23f1d920bc.wav"},{"name":"sine115","assetId":"acabb402f59628892368dc487cbb8e0e","dataFormat":"wav","rate":48000,"sampleCount":53426,"md5ext":"acabb402f59628892368dc487cbb8e0e.wav"},{"name":"sine116","assetId":"52028ca9a1ba8fd74ab4102d673ebf14","dataFormat":"wav","rate":48000,"sampleCount":52965,"md5ext":"52028ca9a1ba8fd74ab4102d673ebf14.wav"},{"name":"sine117","assetId":"31b46bb4d1cdc152dc1dfa29f427526b","dataFormat":"wav","rate":48000,"sampleCount":52512,"md5ext":"31b46bb4d1cdc152dc1dfa29f427526b.wav"},{"name":"sine118","assetId":"0beff39e5c5035ff0ea6382e13b5ce16","dataFormat":"wav","rate":48000,"sampleCount":52067,"md5ext":"0beff39e5c5035ff0ea6382e13b5ce16.wav"},{"name":"sine119","assetId":"e27a6f44d3ff67b8048235f0095e8007","dataFormat":"wav","rate":48000,"sampleCount":51630,"md5ext":"e27a6f44d3ff67b8048235f0095e8007.wav"},{"name":"sine120","assetId":"139ce6c86a78df6988ecc3b230262232","dataFormat":"wav","rate":48000,"sampleCount":51200,"md5ext":"139ce6c86a78df6988ecc3b230262232.wav"}],"volume":100,"layerOrder":23,"visible":true,"x":196.875,"y":0,"size":100,"direction":-1.40625,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"sound","variables":{"a+8%a635}?Z`[#Audz8Z":["-chnumber",4],"h]}RLYk;[h91)q],_i,V":["-soundnumber",2],"Dt;4|#N2wt**2%4/g~0G":["-pitchnumber",4],"RB)_@2W?W.TIA5H*am}4":["-z",0]},"lists":{},"broadcasts":{},"blocks":{"2l":{"opcode":"control_repeat","next":"n|","parent":"n{","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"n}"]},"fields":{},"shadow":false,"topLevel":false},"2m":{"opcode":"control_create_clone_of","next":"NY","parent":"n~","inputs":{"CLONE_OPTION":[1,"NZ"]},"fields":{},"shadow":false,"topLevel":false},"Nx":{"opcode":"control_start_as_clone","next":"o)","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":801,"y":345},"o)":{"opcode":"control_forever","next":null,"parent":"Nx","inputs":{"SUBSTACK":[2,"k-"]},"fields":{},"shadow":false,"topLevel":false},"k-":{"opcode":"control_if","next":null,"parent":"o)","inputs":{"CONDITION":[2,"o*"],"SUBSTACK":[2,"k."]},"fields":{},"shadow":false,"topLevel":false},"o*":{"opcode":"operator_gt","next":null,"parent":"k-","inputs":{"OPERAND1":[3,"Ny",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ny":{"opcode":"sound_volume","next":null,"parent":"o*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"k.":{"opcode":"sound_playuntildone","next":null,"parent":"k-","inputs":{"SOUND_MENU":[3,"o+","Nz"]},"fields":{},"shadow":false,"topLevel":false},"o+":{"opcode":"operator_join","next":null,"parent":"k.","inputs":{"STRING1":[3,"o,",[10,""]],"STRING2":[3,[12,"-pitchnumber","Dt;4|#N2wt**2%4/g~0G"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"o,":{"opcode":"operator_join","next":null,"parent":"o+","inputs":{"STRING1":[3,"NA",[10,""]],"STRING2":[3,[12,"-soundnumber","h]}RLYk;[h91)q],_i,V"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"NA":{"opcode":"data_itemoflist","next":null,"parent":"o,","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"Nz":{"opcode":"sound_sounds_menu","next":null,"parent":"k.","inputs":{},"fields":{"SOUND_MENU":["S00",null]},"shadow":true,"topLevel":false},"NB":{"opcode":"control_start_as_clone","next":"o-","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":801,"y":890},"o-":{"opcode":"control_forever","next":null,"parent":"NB","inputs":{"SUBSTACK":[2,"a5"]},"fields":{},"shadow":false,"topLevel":false},"a5":{"opcode":"control_if_else","next":null,"parent":"o-","inputs":{"CONDITION":[2,"o."],"SUBSTACK":[2,"k/"],"SUBSTACK2":[2,"NC"]},"fields":{},"shadow":false,"topLevel":false},"o.":{"opcode":"operator_equals","next":null,"parent":"a5","inputs":{"OPERAND1":[3,"ND",[10,""]],"OPERAND2":[3,[12,"-soundnumber","h]}RLYk;[h91)q],_i,V"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ND":{"opcode":"data_itemoflist","next":null,"parent":"o.","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["voice","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"k/":{"opcode":"data_setvariableto","next":"a6","parent":"a5","inputs":{"VALUE":[3,"NE",[10,""]]},"fields":{"VARIABLE":["-z","RB)_@2W?W.TIA5H*am}4"]},"shadow":false,"topLevel":false},"NE":{"opcode":"data_itemoflist","next":null,"parent":"k/","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"a6":{"opcode":"control_if_else","next":null,"parent":"k/","inputs":{"CONDITION":[2,"NF"],"SUBSTACK":[2,"lO"],"SUBSTACK2":[2,"NG"]},"fields":{},"shadow":false,"topLevel":false},"NF":{"opcode":"operator_gt","next":null,"parent":"a6","inputs":{"OPERAND1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"lO":{"opcode":"data_setvariableto","next":"k~","parent":"a6","inputs":{"VALUE":[3,"o/",[10,""]]},"fields":{"VARIABLE":["-z","RB)_@2W?W.TIA5H*am}4"]},"shadow":false,"topLevel":false},"o/":{"opcode":"operator_add","next":null,"parent":"lO","inputs":{"NUM1":[3,"o:",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"o:":{"opcode":"operator_round","next":null,"parent":"o/","inputs":{"NUM":[3,"o;",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"o;":{"opcode":"operator_divide","next":null,"parent":"o:","inputs":{"NUM1":[3,"NH",[4,0]],"NUM2":[1,[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"NH":{"opcode":"operator_subtract","next":null,"parent":"o;","inputs":{"NUM1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"k~":{"opcode":"data_setvariableto","next":"a7","parent":"lO","inputs":{"VALUE":[3,"k=",[10,""]]},"fields":{"VARIABLE":["-z","RB)_@2W?W.TIA5H*am}4"]},"shadow":false,"topLevel":false},"k=":{"opcode":"operator_subtract","next":null,"parent":"k~","inputs":{"NUM1":[3,"o=",[4,0]],"NUM2":[3,"la",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"o=":{"opcode":"operator_multiply","next":null,"parent":"k=","inputs":{"NUM1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[4,0]],"NUM2":[3,"NI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"NI":{"opcode":"operator_gt","next":null,"parent":"o=","inputs":{"OPERAND1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"la":{"opcode":"operator_multiply","next":null,"parent":"k=","inputs":{"NUM1":[3,"NJ",[4,0]],"NUM2":[3,"NK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"NJ":{"opcode":"operator_subtract","next":null,"parent":"la","inputs":{"NUM1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"NK":{"opcode":"operator_gt","next":null,"parent":"la","inputs":{"OPERAND1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a7":{"opcode":"control_if_else","next":null,"parent":"k~","inputs":{"CONDITION":[2,"NL"],"SUBSTACK":[2,"o?"],"SUBSTACK2":[2,"NM"]},"fields":{},"shadow":false,"topLevel":false},"NL":{"opcode":"operator_equals","next":null,"parent":"a7","inputs":{"OPERAND1":[3,[12,"-z","RB)_@2W?W.TIA5H*am}4"],[10,""]],"OPERAND2":[3,[12,"-pitchnumber","Dt;4|#N2wt**2%4/g~0G"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"o?":{"opcode":"sound_setvolumeto","next":null,"parent":"a7","inputs":{"VOLUME":[3,"lb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"lb":{"opcode":"operator_multiply","next":null,"parent":"o?","inputs":{"NUM1":[3,"NN",[4,0]],"NUM2":[3,"NO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"NN":{"opcode":"data_itemoflist","next":null,"parent":"lb","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"NO":{"opcode":"operator_divide","next":null,"parent":"lb","inputs":{"NUM1":[1,[4,"20"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"NM":{"opcode":"sound_setvolumeto","next":null,"parent":"a7","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"NG":{"opcode":"sound_setvolumeto","next":null,"parent":"a6","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"NC":{"opcode":"sound_setvolumeto","next":null,"parent":"a5","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"NP":{"opcode":"control_start_as_clone","next":"o@","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":801,"y":64},"o@":{"opcode":"control_forever","next":null,"parent":"NP","inputs":{"SUBSTACK":[2,"lc"]},"fields":{},"shadow":false,"topLevel":false},"lc":{"opcode":"control_if","next":null,"parent":"o@","inputs":{"CONDITION":[2,"n("],"SUBSTACK":[2,"n)"]},"fields":{},"shadow":false,"topLevel":false},"n(":{"opcode":"operator_gt","next":null,"parent":"lc","inputs":{"OPERAND1":[3,"NQ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"NQ":{"opcode":"sound_volume","next":null,"parent":"n(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"n)":{"opcode":"sound_seteffectto","next":null,"parent":"lc","inputs":{"VALUE":[3,"n*",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"n*":{"opcode":"operator_multiply","next":null,"parent":"n)","inputs":{"NUM1":[3,"k[",[4,0]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"k[":{"opcode":"operator_add","next":null,"parent":"n*","inputs":{"NUM1":[3,"n+",[4,0]],"NUM2":[3,"n,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"n+":{"opcode":"operator_subtract","next":null,"parent":"k[","inputs":{"NUM1":[3,"NR",[4,0]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"NR":{"opcode":"data_itemoflist","next":null,"parent":"n+","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"n,":{"opcode":"operator_multiply","next":null,"parent":"k[","inputs":{"NUM1":[3,"NS",[4,0]],"NUM2":[1,[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"NS":{"opcode":"operator_subtract","next":null,"parent":"n,","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,[12,"-pitchnumber","Dt;4|#N2wt**2%4/g~0G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"n-":{"opcode":"procedures_definition","next":"n.","parent":null,"inputs":{"custom_block":[1,"NT"]},"fields":{},"shadow":false,"topLevel":true,"x":145,"y":99},"NT":{"opcode":"procedures_prototype","next":null,"parent":"n-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"n.":{"opcode":"data_setvariableto","next":"n/","parent":"n-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-chnumber","a+8%a635}?Z`[#Audz8Z"]},"shadow":false,"topLevel":false},"n/":{"opcode":"data_deletealloflist","next":"n:","parent":"n.","inputs":{},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"n:":{"opcode":"data_deletealloflist","next":"n;","parent":"n/","inputs":{},"fields":{"LIST":["voice","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"n;":{"opcode":"data_deletealloflist","next":"n=","parent":"n:","inputs":{},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"n=":{"opcode":"data_deletealloflist","next":"n?","parent":"n;","inputs":{},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"n?":{"opcode":"data_deletealloflist","next":"n@","parent":"n=","inputs":{},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n@":{"opcode":"data_addtolist","next":"n[","parent":"n?","inputs":{"ITEM":[1,[10,"p0"]]},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n[":{"opcode":"data_addtolist","next":"n]","parent":"n@","inputs":{"ITEM":[1,[10,"p1"]]},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n]":{"opcode":"data_addtolist","next":"n^","parent":"n[","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n^":{"opcode":"data_addtolist","next":"n_","parent":"n]","inputs":{"ITEM":[1,[10,"no"]]},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n_":{"opcode":"sound_setvolumeto","next":"lG","parent":"n^","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"lG":{"opcode":"control_repeat","next":null,"parent":"n_","inputs":{"TIMES":[3,"NU",[6,0]],"SUBSTACK":[2,"n`"]},"fields":{},"shadow":false,"topLevel":false},"NU":{"opcode":"data_lengthoflist","next":null,"parent":"lG","inputs":{},"fields":{"LIST":["soundnames","7nRsy`H|tfHd3Y=;qpJ|"]},"shadow":false,"topLevel":false},"n`":{"opcode":"data_changevariableby","next":"n{","parent":"lG","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["-chnumber","a+8%a635}?Z`[#Audz8Z"]},"shadow":false,"topLevel":false},"n{":{"opcode":"data_setvariableto","next":"2l","parent":"n`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-pitchnumber","Dt;4|#N2wt**2%4/g~0G"]},"shadow":false,"topLevel":false},"n}":{"opcode":"data_setvariableto","next":"a8","parent":"2l","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["-soundnumber","h]}RLYk;[h91)q],_i,V"]},"shadow":false,"topLevel":false},"a8":{"opcode":"control_if_else","next":"NV","parent":"n}","inputs":{"CONDITION":[2,"NW"],"SUBSTACK2":[2,"cI"]},"fields":{},"shadow":false,"topLevel":false},"NW":{"opcode":"operator_equals","next":null,"parent":"a8","inputs":{"OPERAND1":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"cI":{"opcode":"control_if_else","next":null,"parent":"a8","inputs":{"CONDITION":[2,"NX"],"SUBSTACK":[2,"n~"],"SUBSTACK2":[2,"oa"]},"fields":{},"shadow":false,"topLevel":false},"NX":{"opcode":"operator_equals","next":null,"parent":"cI","inputs":{"OPERAND1":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"n~":{"opcode":"control_repeat","next":null,"parent":"cI","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"2m"]},"fields":{},"shadow":false,"topLevel":false},"NZ":{"opcode":"control_create_clone_of_menu","next":null,"parent":"2m","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"NY":{"opcode":"data_changevariableby","next":null,"parent":"2m","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["-soundnumber","h]}RLYk;[h91)q],_i,V"]},"shadow":false,"topLevel":false},"oa":{"opcode":"control_repeat","next":null,"parent":"cI","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"l%"]},"fields":{},"shadow":false,"topLevel":false},"l%":{"opcode":"control_create_clone_of","next":"N0","parent":"oa","inputs":{"CLONE_OPTION":[1,"N1"]},"fields":{},"shadow":false,"topLevel":false},"N1":{"opcode":"control_create_clone_of_menu","next":null,"parent":"l%","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"N0":{"opcode":"data_changevariableby","next":null,"parent":"l%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["-soundnumber","h]}RLYk;[h91)q],_i,V"]},"shadow":false,"topLevel":false},"NV":{"opcode":"data_changevariableby","next":null,"parent":"a8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["-pitchnumber","Dt;4|#N2wt**2%4/g~0G"]},"shadow":false,"topLevel":false},"n|":{"opcode":"data_addtolist","next":"ob","parent":"2l","inputs":{"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"ob":{"opcode":"data_addtolist","next":"oc","parent":"n|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["voice","UrPQMZ+enGUmzM`fAi$,"]},"shadow":false,"topLevel":false},"oc":{"opcode":"data_addtolist","next":"N2","parent":"ob","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["volume","g|w%1=[YgXkc0z(63t|f"]},"shadow":false,"topLevel":false},"N2":{"opcode":"data_addtolist","next":null,"parent":"oc","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"N3":{"opcode":"event_whenbroadcastreceived","next":"N4","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["create sound","O7?o@Pl6XR6dG~oq]ZEc"]},"shadow":false,"topLevel":true,"x":1916,"y":64},"N4":{"opcode":"procedures_call","next":null,"parent":"N3","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate","argumentids":"[]","warp":"true"}},"N5":{"opcode":"control_start_as_clone","next":"od","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":801,"y":620},"od":{"opcode":"control_forever","next":null,"parent":"N5","inputs":{"SUBSTACK":[2,"k?"]},"fields":{},"shadow":false,"topLevel":false},"k?":{"opcode":"control_if","next":null,"parent":"od","inputs":{"CONDITION":[2,"oe"],"SUBSTACK":[2,"og"]},"fields":{},"shadow":false,"topLevel":false},"oe":{"opcode":"operator_gt","next":null,"parent":"k?","inputs":{"OPERAND1":[3,"N6",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N6":{"opcode":"sound_volume","next":null,"parent":"oe","inputs":{},"fields":{},"shadow":false,"topLevel":false},"og":{"opcode":"sound_seteffectto","next":null,"parent":"k?","inputs":{"VALUE":[3,"oh",[4,0]]},"fields":{"EFFECT":["PAN",null]},"shadow":false,"topLevel":false},"oh":{"opcode":"operator_multiply","next":null,"parent":"og","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"N7",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"N7":{"opcode":"data_itemoflist","next":null,"parent":"oh","inputs":{"INDEX":[3,[12,"-chnumber","a+8%a635}?Z`[#Audz8Z"],[7,0]]},"fields":{"LIST":["+AUDIO ENGINE pan","(M5DY~$!E(Xt6VWlGk_1"]},"shadow":false,"topLevel":false},"N8":{"opcode":"event_whenbroadcastreceived","next":"N9","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["prune","eUXr-]/_0N]qtaXLt(ye"]},"shadow":false,"topLevel":true,"x":504,"y":64},"N9":{"opcode":"control_delete_this_clone","next":null,"parent":"N8","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"no00","assetId":"e2d4ba6ba7b073d78e3f577c10bf170d","dataFormat":"wav","rate":48000,"sampleCount":893642,"md5ext":"e2d4ba6ba7b073d78e3f577c10bf170d.wav"},{"name":"no01","assetId":"12a4bc8769bcaa686a6eda657f9a5970","dataFormat":"wav","rate":48000,"sampleCount":446819,"md5ext":"12a4bc8769bcaa686a6eda657f9a5970.wav"},{"name":"no02","assetId":"b1bb775280843ba9107272990cab5d19","dataFormat":"wav","rate":48000,"sampleCount":446819,"md5ext":"b1bb775280843ba9107272990cab5d19.wav"},{"name":"no03","assetId":"d640be85f020ab44b43e2e96c81f5504","dataFormat":"wav","rate":48000,"sampleCount":446819,"md5ext":"d640be85f020ab44b43e2e96c81f5504.wav"},{"name":"no10","assetId":"64bf743148f06540ce3f6c032ccbaaed","dataFormat":"wav","rate":48000,"sampleCount":385523,"md5ext":"64bf743148f06540ce3f6c032ccbaaed.wav"},{"name":"no11","assetId":"a33f84b92da308c45aa47c2aa54fa0bc","dataFormat":"wav","rate":48000,"sampleCount":384255,"md5ext":"a33f84b92da308c45aa47c2aa54fa0bc.wav"},{"name":"no12","assetId":"27d3116b08fcdc2bbc91fbe40121b67b","dataFormat":"wav","rate":48000,"sampleCount":384255,"md5ext":"27d3116b08fcdc2bbc91fbe40121b67b.wav"},{"name":"no13","assetId":"65686a73db252f0d1d0a66c245305f8a","dataFormat":"wav","rate":48000,"sampleCount":384255,"md5ext":"65686a73db252f0d1d0a66c245305f8a.wav"},{"name":"p000","assetId":"002ffe08ce5db398cb886d47482024be","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"002ffe08ce5db398cb886d47482024be.wav"},{"name":"p001","assetId":"db46fdb35c31e97a12721417e7bdec51","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"db46fdb35c31e97a12721417e7bdec51.wav"},{"name":"p002","assetId":"27fea96805addb48e9d67ff906f704ce","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"27fea96805addb48e9d67ff906f704ce.wav"},{"name":"p003","assetId":"c2afd9a3ee1ebe0ac25db9e3606b7252","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"c2afd9a3ee1ebe0ac25db9e3606b7252.wav"},{"name":"p010","assetId":"c172423a92397ee0fb6be5eb528273c3","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"c172423a92397ee0fb6be5eb528273c3.wav"},{"name":"p011","assetId":"7bbb6f73112163561b43fcf4b253b73c","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"7bbb6f73112163561b43fcf4b253b73c.wav"},{"name":"p012","assetId":"b49161da293d180fe47305bb7878ac2e","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"b49161da293d180fe47305bb7878ac2e.wav"},{"name":"p013","assetId":"2b14f520f8f85617c38d4b513968f964","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"2b14f520f8f85617c38d4b513968f964.wav"},{"name":"p020","assetId":"24f285cc59a1c8dcc0fea8dff37508aa","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"24f285cc59a1c8dcc0fea8dff37508aa.wav"},{"name":"p021","assetId":"6f3b6a75347106bdbe25323c42d323f6","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"6f3b6a75347106bdbe25323c42d323f6.wav"},{"name":"p022","assetId":"be25df31848eec2b37479d1ea8f13950","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"be25df31848eec2b37479d1ea8f13950.wav"},{"name":"p023","assetId":"b7a90ae911bd7da50bd3125abb356875","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"b7a90ae911bd7da50bd3125abb356875.wav"},{"name":"p030","assetId":"8e959cc64c5368c4c3cd840c61142631","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"8e959cc64c5368c4c3cd840c61142631.wav"},{"name":"p031","assetId":"d56dd59c2b3d29c1a84b1a4282bd7495","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"d56dd59c2b3d29c1a84b1a4282bd7495.wav"},{"name":"p032","assetId":"4d713f1971be50b8597b11b8576591c7","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"4d713f1971be50b8597b11b8576591c7.wav"},{"name":"p033","assetId":"e8df3440d04b3b7b8091d65449b8a1c7","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"e8df3440d04b3b7b8091d65449b8a1c7.wav"},{"name":"p100","assetId":"002ffe08ce5db398cb886d47482024be","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"002ffe08ce5db398cb886d47482024be.wav"},{"name":"p101","assetId":"db46fdb35c31e97a12721417e7bdec51","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"db46fdb35c31e97a12721417e7bdec51.wav"},{"name":"p102","assetId":"27fea96805addb48e9d67ff906f704ce","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"27fea96805addb48e9d67ff906f704ce.wav"},{"name":"p103","assetId":"c2afd9a3ee1ebe0ac25db9e3606b7252","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"c2afd9a3ee1ebe0ac25db9e3606b7252.wav"},{"name":"p110","assetId":"c172423a92397ee0fb6be5eb528273c3","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"c172423a92397ee0fb6be5eb528273c3.wav"},{"name":"p111","assetId":"7bbb6f73112163561b43fcf4b253b73c","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"7bbb6f73112163561b43fcf4b253b73c.wav"},{"name":"p112","assetId":"b49161da293d180fe47305bb7878ac2e","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"b49161da293d180fe47305bb7878ac2e.wav"},{"name":"p113","assetId":"2b14f520f8f85617c38d4b513968f964","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"2b14f520f8f85617c38d4b513968f964.wav"},{"name":"p120","assetId":"24f285cc59a1c8dcc0fea8dff37508aa","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"24f285cc59a1c8dcc0fea8dff37508aa.wav"},{"name":"p121","assetId":"6f3b6a75347106bdbe25323c42d323f6","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"6f3b6a75347106bdbe25323c42d323f6.wav"},{"name":"p122","assetId":"be25df31848eec2b37479d1ea8f13950","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"be25df31848eec2b37479d1ea8f13950.wav"},{"name":"p123","assetId":"b7a90ae911bd7da50bd3125abb356875","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"b7a90ae911bd7da50bd3125abb356875.wav"},{"name":"p130","assetId":"8e959cc64c5368c4c3cd840c61142631","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"8e959cc64c5368c4c3cd840c61142631.wav"},{"name":"p131","assetId":"d56dd59c2b3d29c1a84b1a4282bd7495","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"d56dd59c2b3d29c1a84b1a4282bd7495.wav"},{"name":"p132","assetId":"4d713f1971be50b8597b11b8576591c7","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"4d713f1971be50b8597b11b8576591c7.wav"},{"name":"p133","assetId":"e8df3440d04b3b7b8091d65449b8a1c7","dataFormat":"wav","rate":48000,"sampleCount":383996,"md5ext":"e8df3440d04b3b7b8091d65449b8a1c7.wav"}],"volume":0,"layerOrder":24,"visible":true,"x":-54.264319234908776,"y":-72.13231689542977,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"font","variables":{"]/R0=fD8X3ukr[?)_:vL":["i","0"],"K{h~x6)DC:d*~Zu`CfAX":["k",1],"k:|mZZ-e3/}Z,@tSy,sK":["l",1],"8#GN`Bn0{e?U=[@Rvm;~":["m",16],"*r-MV7B^PL30%%8PQz%`":["i",0],"RBD.T_tlTqDvriQZH:[N":["x",-166],"|ke}j~q$D+WWLo05@rUl":["z",0.01],"xM[|Vl:5_:MuhN:9WJ%-":["v",11.11500665873673],"J^e?eg%kT5zRj~Vb)VXI":["j","0"],"Ylpv#yntx`3MMU(uD;7(":["y",120],"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured",0],"PdO5iRC_RNzBVsdyMO(q":["!op",0],"6zFO5H,!X[g$Ax)0BDc:":["!break",0],"tnat7=?L(.Gf;]^`o~![":["!A",0],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",0],"3U:*vMhK7gf],IM6zRp[":["!SP",0],"1zbCCns)7a+FK@Nf^A#/":["!P",0],"kCSOy9d,i:SuF$IT*yY@":["!C",0],"3;^us/Z(haF2h@u#ixfd":["!D",0],"wJv)p=)7?CJ}66t~yQza":["!I",0],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",0],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",0],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",0],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe",0],"G)X5:8nBe}gs.ik#[2!5":["temp",0],"$4AJvv6|*3+i6I3,wC{(":["!penalty",0],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",0],"gJ4fW7d.auVkNJS*cbF.":["!port2_count",0],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",0],"*q7!$s|[`z8:pfv)YW#?":["!immediate",0],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit",0],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow",0],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr",0],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",0],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled",0],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag",0],"rp0u9foKc3@?]%7O5HRb":["@mask_bg",0],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite",0],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg",0],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite",0],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",0],"oS%53`U7y@bB1gbSz8^+":["@data_latch",0],"5@CAuX+T_vc:]!OZM32!":["@write_toggle",0],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer",0],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip",0],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",0],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result",0],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",0],"OQF50=wL0|j4S5.I%k/,":["@bit",0],"1oCHy{p]O4~gQKbeR[pS":["@palette",0],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",0],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",0],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",0],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",0],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",0],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",0],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",0],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr",0],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt",0],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit",0],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode",0],"fyS(EXct?2w*M.Nwqgr~":["#sequence",0],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt",0],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter",0],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled",0],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0",0],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode",0],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1",0],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch",0],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled",0],"(Bva{aj,%,g7M19235_|":["$irq_occured",0],"Rsej-utFuPehsXAVyTSL":["$reg0",0],":qHrq7o:g@OR|zUf/9t(":["$reg1",0],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode",0],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0",0],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1",0],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2",0],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3",0],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4",0],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5",0],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload",0],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2",0],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3",0],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6",0],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7",0],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter",0],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",0],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",0],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",0],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant",0],"#Av;W`BG=vl=H0s()-!=":["#sq0_start",0],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",0],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",0],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",0],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt",0],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",0],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant",0],"@4/+@;`xIa1GD6lDn;es":["#sq1_start",0],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",0],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled",0],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter",0],":~1CFOUK_x[i{fP8hA[3":["#tri_period",0],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter",0],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",0],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag",0],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled",0],"JA8|Du$U5F}!TRea:xoo":["!idle_skip",0],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable",0],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",0],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate",0],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",0],"elV@:}M3MreZKq22A%3?":["#sq0_swreload",0],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",0],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",0],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt",0],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant",0],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start",0],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter",0],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled",0],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable",0],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",0],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate",0],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",0],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload",0],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",0],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",0],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",0],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI",0],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",0],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",0],"LieAxAMhdI5M{cEs}+(t":["nes: address",0],"n;0UExIQMoO!Lz=!vPek":["@lastframe",0],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",0],"HM)En0c}chMa#CL/6:U:":["$prg_banks",0],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",0],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode",0],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",0],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",0],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled",0],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",0]},"lists":{"g1X0d%+|q`l:YKb?Jj_I":["dat",["0000000000000000","0000183C3C180000","2030383C38302000","040C1C3C1C0C0400","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","3078783030003000","6C6C6C0000000000","6C6CFE6CFE6C6C00","307CC0780CF83000","00C6CC183066C600","38683876DCC87600","6060C00000000000","1830606060301800","6030181818306000","00663CFF3C660000","003030FC30300000","0000000000303060","000000FC00000000","0000000000303000","060C183060C08000","78CCDCFCECCC7800","307030303030FC00","78CC0C3860CCFC00","78CC0C380CCC7800","18385898FC183C00","FCC0F80C0CCC7800","3860C0F8CCCC7800","FCCC0C1830303000","78CCCC78CCCC7800","78CCCC7C0C187000","0030300000303000","0030300000303060","183060C060301800","0000FC0000FC0000","6030180C18306000","78CC0C1830003000","7CC6DEDEDEC07800","78CCCCFCCCCCCC00","FC66667C6666FC00","3C66C0C0C0663C00","F86C6666666CF800","FE6268786862FE00","FE6268786860F000","3C66C0CEC6663E00","CCCCCCFCCCCCCC00","7830303030307800","1E0C0C0CCCCC7800","E6666C786C66E600","F06060606266FE00","C6EEFEFED6C6C600","C6E6F6DECEC6C600","386CC6C6C66C3800","FC66667C6060F000","78CCCCCCDC781C00","FC66667C6C66E600","78CC603018CC7800","FCB4303030307800","CCCCCCCCCCCCFC00","CCCCCCCCCC783000","C6C6C6D6FEEEC600","C66C3810386CC600","CCCCCC7830307800","FE8E9C3872E2FE00","7860606060607800","C06030180C060200","7818181818187800","10386CC600000000","00000000000000FF","3030180000000000","0000780C7CCC7600","E060607C6262DC00","000078CCC0CC7800","1C0C0C7CCCCC7600","000078CCFCC07800","386C60F06060F000","000076CCCC7C0CF8","E06068766666E600","3000703030307800","0C000C0C0CCCCC78","E060666C786CE600","7030303030307800","0000CCFEFED6C600","0000F8CCCCCCCC00","000078CCCCCC7800","0000DC66667C60F0","000076CCCC7C0C1E","0000DC766660F000","000078C0780CF800","10307C3030341800","0000CCCCCCCC7600","0000CCCCCC783000","0000C6D6FEFE6C00","0000C66C386CC600","0000CCCCCC7C0CF8","0000FC983064FC00","1C3030E030301C00","1818180018181800","E03030183030E000","76DC000000000000","0010386CC6C6FE00","78CCC0CC78180C78","00CC00CCCCCC7E00","1C0078CCFCC07800","7EC33C063E663F00","CC00780C7CCC7E00","E000780C7CCC7E00","3030780C7CCC7E00","000078C0C0780C38","7EC33C667E603C00","CC0078CCFCC07800","E00078CCFCC07800","CC00703030307800","7CC6381818183C00","E000703030307800","C6386CC6FEC6C600","30300078CCFCCC00","1C00FC607860FC00","00007F0C7FCC7F00","3E6CCCFECCCCCE00","78CC0078CCCC7800","00CC0078CCCC7800","00E00078CCCC7800","78CC00CCCCCC7E00","00E000CCCCCC7E00","00CC00CCCC7C0CF8","C3183C66663C1800","CC00CCCCCCCC7800","18187EC0C07E1818","386C64F060E6FE00","CCCC78FC30FC3030","F8CCCCFAC6CFC6C7","0E1B183C1818D870","1800780C7CCC7E00","3800703030307800","001C0078CCCC7800","001C00CCCCCC7A00","00F800F8CCCCCC00","FC00CCECFCDCCC00","3C6C6C3E007E0000","386C6C38007C0000","30003060C0CC7800","000000FCC0C00000","000000FC0C0C0000","C3C6CCDE3362CC0F","C3C6CCDB376FCF03","1818001818181800","003366CC66330000","00CC663366CC0000","2288228822882288","55AA55AA55AA55AA","DD77DD77DD77DD77","1818181818181818","18181818F8181818","1818F818F8181818","36363636F6363636","00000000FE363636","0000F818F8181818","3636F606F6363636","3636363636363636","0000FE06F6363636","3636F606FE000000","36363636FE000000","1818F818F8000000","00000000F8181818","181818181F000000","18181818FF000000","00000000FF181818","181818181F181818","00000000FF000000","18181818FF181818","18181F181F181818","3636363637363636","363637303F000000","00003F3037363636","3636F700FF000000","0000FF00F7363636","3636373037363636","0000FF00FF000000","3636F700F7363636","1818FF00FF000000","36363636FF000000","0000FF00FF181818","00000000FF363636","363636363F000000","18181F181F000000","00001F181F181818","000000003F363636","36363636FF363636","1818FF18FF181818","18181818F8000000","000000001F181818","FFFFFFFFFFFFFFFF","00000000FFFFFFFF","F0F0F0F0F0F0F0F0","0F0F0F0F0F0F0F0F","FFFFFFFF00000000"]],"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",[]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",[]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",[]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",[]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",[]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]]},"broadcasts":{},"blocks":{"2n":{"opcode":"data_addtolist","next":"bmP","parent":"R4","inputs":{"ITEM":[3,"aKj",[10,""]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"2o":{"opcode":"data_addtolist","next":"aKl","parent":"aKk","inputs":{"ITEM":[3,"bmQ",[10,""]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"2p":{"opcode":"control_if","next":null,"parent":"aKm","inputs":{"CONDITION":[2,"bmR"],"SUBSTACK":[2,"aKn"]},"fields":{},"shadow":false,"topLevel":false},"2q":{"opcode":"data_setvariableto","next":"d/","parent":"cd","inputs":{"VALUE":[3,"d:",[10,""]]},"fields":{"VARIABLE":["v","xM[|Vl:5_:MuhN:9WJ%-"]},"shadow":false,"topLevel":false},"2r":{"opcode":"procedures_call","next":"cg","parent":"ce","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"oH",[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"-156"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[1,[10,"46"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"2s":{"opcode":"procedures_call","next":"2u","parent":"2t","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,[12,"x","RBD.T_tlTqDvriQZH:[N"],[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"-156"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"i@",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"2t":{"opcode":"control_repeat","next":null,"parent":"i?","inputs":{"TIMES":[3,"oE",[6,"0"]],"SUBSTACK":[2,"2s"]},"fields":{},"shadow":false,"topLevel":false},"2u":{"opcode":"data_setvariableto","next":"oG","parent":"2s","inputs":{"VALUE":[3,"jm",[10,""]]},"fields":{"VARIABLE":["z","|ke}j~q$D+WWLo05@rUl"]},"shadow":false,"topLevel":false},"2v":{"opcode":"operator_subtract","next":null,"parent":"a","inputs":{"NUM1":[3,"ov",[4,0]],"NUM2":[3,"lT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"2w":{"opcode":"control_if","next":null,"parent":"R5","inputs":{"CONDITION":[2,"aKo"],"SUBSTACK":[2,"aKp"]},"fields":{},"shadow":false,"topLevel":false},"2x":{"opcode":"operator_add","next":null,"parent":"2y","inputs":{"NUM1":[3,"aKq",[4,0]],"NUM2":[3,"bmS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"2y":{"opcode":"data_setvariableto","next":"R4","parent":"aKp","inputs":{"VALUE":[3,"2x",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"dd":{"opcode":"procedures_definition","next":"de","parent":null,"inputs":{"custom_block":[1,"a:"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"a:":{"opcode":"procedures_prototype","next":null,"parent":"dd","inputs":{"@zV:bUG_PX#GMhkP2e=P":[1,"xz"],"i6JLD9k5b4oK,]osUJ7x":[1,"xA"],"lwvx~{v*of[%v?I_BFas":[1,"xB"],"Pl8yZ2T%vK)iRx9PsB6+":[1,"or"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","argumentnames":"[\"x\",\"y\",\"s\",\"d\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"false"}},"xz":{"opcode":"argument_reporter_string_number","next":null,"parent":"a:","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"xA":{"opcode":"argument_reporter_string_number","next":null,"parent":"a:","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"xB":{"opcode":"argument_reporter_string_number","next":null,"parent":"a:","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"or":{"opcode":"argument_reporter_string_number","next":null,"parent":"a:","inputs":{},"fields":{"VALUE":["d",null]},"shadow":true,"topLevel":false},"de":{"opcode":"data_setvariableto","next":"dg","parent":"dd","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["m","8#GN`Bn0{e?U=[@Rvm;~"]},"shadow":false,"topLevel":false},"dg":{"opcode":"control_repeat","next":null,"parent":"de","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a"]},"fields":{},"shadow":false,"topLevel":false},"a":{"opcode":"procedures_call","next":"os","parent":"dg","inputs":{"l#x`$3Ii.R@[[Y-Y$7n3":[3,"k{",[10,""]],"J|M%s%=WC@y1;p0_qTxp":[3,"2v",[10,""]],"V861ZPJ%5|4o/-r{;98V":[3,"ot",[10,""]],"~)@Xu22o%CdNtwp4oAZ;":[3,"a;",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render4px %s %s %s %s","argumentids":"[\"l#x`$3Ii.R@[[Y-Y$7n3\",\"J|M%s%=WC@y1;p0_qTxp\",\"V861ZPJ%5|4o/-r{;98V\",\"~)@Xu22o%CdNtwp4oAZ;\"]","warp":"true"}},"k{":{"opcode":"operator_add","next":null,"parent":"a","inputs":{"NUM1":[3,"xC",[4,0]],"NUM2":[3,"lS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"xC":{"opcode":"argument_reporter_string_number","next":null,"parent":"k{","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"lS":{"opcode":"operator_multiply","next":null,"parent":"k{","inputs":{"NUM1":[3,"xD",[4,0]],"NUM2":[3,"dk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"xD":{"opcode":"operator_mod","next":null,"parent":"lS","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"dk":{"opcode":"operator_multiply","next":null,"parent":"lS","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"ou",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ou":{"opcode":"argument_reporter_string_number","next":null,"parent":"dk","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"ov":{"opcode":"argument_reporter_string_number","next":null,"parent":"2v","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"lT":{"opcode":"operator_multiply","next":null,"parent":"2v","inputs":{"NUM1":[3,"dm",[4,0]],"NUM2":[3,"xE",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"dm":{"opcode":"operator_mathop","next":null,"parent":"lT","inputs":{"NUM":[3,"xF",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"xF":{"opcode":"operator_divide","next":null,"parent":"dm","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"xE":{"opcode":"argument_reporter_string_number","next":null,"parent":"lT","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"ot":{"opcode":"argument_reporter_string_number","next":null,"parent":"a","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"a;":{"opcode":"operator_join","next":null,"parent":"a","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"lW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"lW":{"opcode":"operator_letter_of","next":null,"parent":"a;","inputs":{"LETTER":[3,"ow",[6,0]],"STRING":[3,"a=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ow":{"opcode":"operator_add","next":null,"parent":"lW","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=":{"opcode":"data_itemoflist","next":null,"parent":"lW","inputs":{"INDEX":[3,"dp",[7,0]]},"fields":{"LIST":["dat","g1X0d%+|q`l:YKb?Jj_I"]},"shadow":false,"topLevel":false},"dp":{"opcode":"operator_add","next":null,"parent":"a=","inputs":{"NUM1":[3,"jk",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jk":{"opcode":"argument_reporter_string_number","next":null,"parent":"dp","inputs":{},"fields":{"VALUE":["d",null]},"shadow":false,"topLevel":false},"a?":{"opcode":"procedures_definition","next":"ds","parent":null,"inputs":{"custom_block":[1,"ox"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":371},"ox":{"opcode":"procedures_prototype","next":null,"parent":"a?","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"px","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ds":{"opcode":"pen_penDown","next":"oy","parent":"a?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"oy":{"opcode":"pen_penUp","next":null,"parent":"ds","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a@":{"opcode":"procedures_definition","next":"b`","parent":null,"inputs":{"custom_block":[1,"oz"]},"fields":{},"shadow":false,"topLevel":true,"x":2117,"y":64},"oz":{"opcode":"procedures_prototype","next":null,"parent":"a@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"b`":{"opcode":"data_setvariableto","next":"l4","parent":"a@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"l4":{"opcode":"control_repeat","next":null,"parent":"b`","inputs":{"TIMES":[3,"xG",[6,0]],"SUBSTACK":[2,"R6"]},"fields":{},"shadow":false,"topLevel":false},"xG":{"opcode":"data_lengthoflist","next":null,"parent":"l4","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"R6":{"opcode":"procedures_call","next":"xH","parent":"l4","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"b{",[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"170"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"dx",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"xH":{"opcode":"data_changevariableby","next":null,"parent":"R6","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"xI":{"opcode":"event_whenbroadcastreceived","next":"b}","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["text","a^/anM#`b=kW!Z3.YYJW"]},"shadow":false,"topLevel":true,"x":1482,"y":64},"oC":{"opcode":"event_whenbroadcastreceived","next":"b~","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["emulate!!","q@nrUic%_jFs,BP#Pz@]"]},"shadow":false,"topLevel":true,"x":2117,"y":365},"b~":{"opcode":"control_wait","next":"dC","parent":"oC","inputs":{"DURATION":[1,[5,"1"]]},"fields":{},"shadow":false,"topLevel":false},"dD":{"opcode":"procedures_definition","next":"ca","parent":null,"inputs":{"custom_block":[1,"oD"]},"fields":{},"shadow":false,"topLevel":true,"x":3148,"y":-11},"oD":{"opcode":"procedures_prototype","next":null,"parent":"dD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"c","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ca":{"opcode":"pen_penUp","next":"dF","parent":"dD","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a]":{"opcode":"procedures_definition","next":"ld","parent":null,"inputs":{"custom_block":[1,"a^"]},"fields":{},"shadow":false,"topLevel":true,"x":3912,"y":64},"a^":{"opcode":"procedures_prototype","next":null,"parent":"a]","inputs":{"rP}-AE-Ca~:%Qi+nQcp9":[1,"oJ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fc %s","argumentids":"[\"rP}-AE-Ca~:%Qi+nQcp9\"]","argumentnames":"[\"s\"]","argumentdefaults":"[\"\"]","warp":"false"}},"oJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"a^","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"ld":{"opcode":"control_if_else","next":null,"parent":"a]","inputs":{"CONDITION":[2,"a_"],"SUBSTACK":[2,"a`"],"SUBSTACK2":[2,"lX"]},"fields":{},"shadow":false,"topLevel":false},"a_":{"opcode":"operator_gt","next":null,"parent":"ld","inputs":{"OPERAND1":[3,"xK",[10,""]],"OPERAND2":[1,[10,"60"]]},"fields":{},"shadow":false,"topLevel":false},"xK":{"opcode":"argument_reporter_string_number","next":null,"parent":"a_","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"a`":{"opcode":"pen_setPenColorParamTo","next":null,"parent":"ld","inputs":{"COLOR_PARAM":[1,"oK"],"VALUE":[1,[4,"44"]]},"fields":{},"shadow":false,"topLevel":false},"oK":{"opcode":"pen_menu_colorParam","next":null,"parent":"a`","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"lX":{"opcode":"pen_setPenColorParamTo","next":null,"parent":"ld","inputs":{"COLOR_PARAM":[1,"oL"],"VALUE":[3,"lY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"oL":{"opcode":"pen_menu_colorParam","next":null,"parent":"lX","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"lY":{"opcode":"operator_divide","next":null,"parent":"lX","inputs":{"NUM1":[3,"oM",[4,0]],"NUM2":[3,"jp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"oM":{"opcode":"argument_reporter_string_number","next":null,"parent":"lY","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"jp":{"opcode":"operator_divide","next":null,"parent":"lY","inputs":{"NUM1":[1,[4,"60"]],"NUM2":[1,[4,"44"]]},"fields":{},"shadow":false,"topLevel":false},"aKr":{"opcode":"data_setvariableto","next":"R7","parent":"aKs","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"R7":{"opcode":"control_repeat","next":"aKm","parent":"aKr","inputs":{"TIMES":[3,"bmT",[6,0]],"SUBSTACK":[2,"R8"]},"fields":{},"shadow":false,"topLevel":false},"bmT":{"opcode":"data_lengthoflist","next":null,"parent":"R7","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"R8":{"opcode":"procedures_call","next":"bmU","parent":"R7","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"aKt",[10,""]],"i6JLD9k5b4oK,]osUJ7x":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[10,""]],"lwvx~{v*of[%v?I_BFas":[1,[10,"1"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"aKu",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"aKt":{"opcode":"operator_multiply","next":null,"parent":"R8","inputs":{"NUM1":[3,"aKv",[4,0]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aKv":{"opcode":"operator_subtract","next":null,"parent":"aKt","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,0]],"NUM2":[3,"aKw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKw":{"opcode":"operator_divide","next":null,"parent":"aKv","inputs":{"NUM1":[3,"bmV",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bmV":{"opcode":"data_lengthoflist","next":null,"parent":"aKw","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"aKu":{"opcode":"data_itemoflist","next":null,"parent":"R8","inputs":{"INDEX":[3,"bmW",[7,0]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bmW":{"opcode":"operator_add","next":null,"parent":"aKu","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bmU":{"opcode":"data_changevariableby","next":null,"parent":"R8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"bmX":{"opcode":"event_whenbroadcastreceived","next":"aKx","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["CP/M Call","Hl=mTBLxLS*0,~TGH|OS"]},"shadow":false,"topLevel":true,"x":2489,"y":1298},"R5":{"opcode":"control_if","next":"2w","parent":"aKx","inputs":{"CONDITION":[2,"aKy"],"SUBSTACK":[2,"aKk"]},"fields":{},"shadow":false,"topLevel":false},"aKy":{"opcode":"operator_equals","next":null,"parent":"R5","inputs":{"OPERAND1":[3,"bmY",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bmY":{"opcode":"data_itemoflist","next":null,"parent":"aKy","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bmZ":{"opcode":"control_stop","next":null,"parent":"aKl","inputs":{},"fields":{"STOP_OPTION":["this script"]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aKo":{"opcode":"operator_equals","next":null,"parent":"2w","inputs":{"OPERAND1":[3,"bm0",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bm0":{"opcode":"data_itemoflist","next":null,"parent":"aKo","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aKq":{"opcode":"operator_multiply","next":null,"parent":"2x","inputs":{"NUM1":[3,"bm1",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bm1":{"opcode":"data_itemoflist","next":null,"parent":"aKq","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bmS":{"opcode":"data_itemoflist","next":null,"parent":"2x","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"R4":{"opcode":"control_repeat_until","next":"aKz","parent":"2y","inputs":{"CONDITION":[2,"aKA"],"SUBSTACK":[2,"2n"]},"fields":{},"shadow":false,"topLevel":false},"aKA":{"opcode":"operator_equals","next":null,"parent":"R4","inputs":{"OPERAND1":[3,"aKB",[10,""]],"OPERAND2":[1,[10,"36"]]},"fields":{},"shadow":false,"topLevel":false},"aKB":{"opcode":"data_itemoflist","next":null,"parent":"aKA","inputs":{"INDEX":[3,"bm2",[7,0]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bm2":{"opcode":"operator_add","next":null,"parent":"aKB","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aKj":{"opcode":"data_itemoflist","next":null,"parent":"2n","inputs":{"INDEX":[3,"bm3",[7,0]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bm3":{"opcode":"operator_add","next":null,"parent":"aKj","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bmP":{"opcode":"data_changevariableby","next":null,"parent":"2n","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bm4":{"opcode":"control_stop","next":null,"parent":"aKz","inputs":{},"fields":{"STOP_OPTION":["this script"]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aKs":{"opcode":"procedures_definition","next":"aKr","parent":null,"inputs":{"custom_block":[1,"bm5"]},"fields":{},"shadow":false,"topLevel":true,"x":2150,"y":707},"bm5":{"opcode":"procedures_prototype","next":null,"parent":"aKs","inputs":{"*ZvG*[,NcX@0V34!NX?S":[3,null,"bm6"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"bm6":{"opcode":"argument_reporter_string_number","next":null,"parent":null,"inputs":{},"fields":{"VALUE":["lines",null]},"shadow":true,"topLevel":true,"x":2312,"y":712},"aKl":{"opcode":"procedures_call","next":"bmZ","parent":"2o","inputs":{"*ZvG*[,NcX@0V34!NX?S":[3,null,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","warp":"true"}},"aKz":{"opcode":"procedures_call","next":"bm4","parent":"R4","inputs":{"*ZvG*[,NcX@0V34!NX?S":[3,null,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","warp":"true"}},"aKp":{"opcode":"data_deletealloflist","next":"2y","parent":"2w","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bm7":{"opcode":"event_whenbroadcastreceived","next":"aKC","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1096,"y":742},"aKC":{"opcode":"control_stop","next":"bm8","parent":"bm7","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bmR":{"opcode":"operator_lt","next":null,"parent":"2p","inputs":{"OPERAND1":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[10,""]],"OPERAND2":[1,[10,"-150"]]},"fields":{},"shadow":false,"topLevel":false},"aKm":{"opcode":"data_changevariableby","next":"2p","parent":"R7","inputs":{"VALUE":[1,[4,"-10"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"bm9":{"opcode":"data_setvariableto","next":null,"parent":"aKn","inputs":{"VALUE":[1,[10,"120"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"bmQ":{"opcode":"data_itemoflist","next":null,"parent":"2o","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bv)":{"opcode":"operator_add","next":null,"parent":null,"inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":true,"x":3053,"y":1894},"bm8":{"opcode":"data_setvariableto","next":null,"parent":"aKC","inputs":{"VALUE":[1,[10,"120"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"aKk":{"opcode":"data_deletealloflist","next":"2o","parent":"R5","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"aKn":{"opcode":"pen_clear","next":"bm9","parent":"2p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aKx":{"opcode":"pen_setPenColorToColor","next":"R5","parent":"bmX","inputs":{"COLOR":[1,[9,"#468ed2"]]},"fields":{},"shadow":false,"topLevel":false},"ams":{"opcode":"operator_equals","next":null,"parent":"b;","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"amt":{"opcode":"procedures_call","next":null,"parent":"b;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iL":{"opcode":"data_setvariableto","next":"c*","parent":"b;","inputs":{"VALUE":[3,"Jf",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Jf":{"opcode":"operator_add","next":null,"parent":"iL","inputs":{"NUM1":[3,"c+",[4,"0"]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c+":{"opcode":"operator_add","next":null,"parent":"Jf","inputs":{"NUM1":[3,"Jg",[4,"0"]],"NUM2":[3,"Jh",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jg":{"opcode":"operator_subtract","next":null,"parent":"c+","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,"Ji",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ji":{"opcode":"operator_multiply","next":null,"parent":"Jg","inputs":{"NUM1":[3,"TC",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TC":{"opcode":"operator_gt","next":null,"parent":"Ji","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jh":{"opcode":"operator_subtract","next":null,"parent":"c+","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[3,"Jj",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jj":{"opcode":"operator_multiply","next":null,"parent":"Jh","inputs":{"NUM1":[3,"TD",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TD":{"opcode":"operator_gt","next":null,"parent":"Jj","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"c*":{"opcode":"data_setvariableto","next":"c,","parent":"iL","inputs":{"VALUE":[3,"Jk",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"Jk":{"opcode":"operator_add","next":null,"parent":"c*","inputs":{"NUM1":[3,"c-",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"c-":{"opcode":"operator_or","next":null,"parent":"Jk","inputs":{"OPERAND1":[2,"TE"],"OPERAND2":[2,"TF"]},"fields":{},"shadow":false,"topLevel":false},"TE":{"opcode":"operator_gt","next":null,"parent":"c-","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TF":{"opcode":"operator_lt","next":null,"parent":"c-","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"c,":{"opcode":"data_setvariableto","next":"c.","parent":"c*","inputs":{"VALUE":[3,"Jl",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"Jl":{"opcode":"operator_add","next":null,"parent":"c,","inputs":{"NUM1":[3,"TG",[4,"0"]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TG":{"opcode":"operator_add","next":null,"parent":"Jl","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c.":{"opcode":"data_setvariableto","next":"c/","parent":"c,","inputs":{"VALUE":[3,"Jm",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Jm":{"opcode":"operator_add","next":null,"parent":"c.","inputs":{"NUM1":[3,"TH",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TH":{"opcode":"operator_gt","next":null,"parent":"Jm","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"c/":{"opcode":"data_setvariableto","next":"TI","parent":"c.","inputs":{"VALUE":[3,"TJ",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TJ":{"opcode":"operator_mod","next":null,"parent":"c/","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TI":{"opcode":"procedures_call","next":null,"parent":"c/","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"amv":{"opcode":"operator_equals","next":null,"parent":"b=","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"amw":{"opcode":"procedures_call","next":null,"parent":"b=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iM":{"opcode":"data_setvariableto","next":"c:","parent":"b=","inputs":{"VALUE":[3,"c;",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"c;":{"opcode":"operator_subtract","next":null,"parent":"iM","inputs":{"NUM1":[3,"c=",[4,"0"]],"NUM2":[3,"TK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c=":{"opcode":"operator_subtract","next":null,"parent":"c;","inputs":{"NUM1":[3,"Jn",[4,"0"]],"NUM2":[3,"Jo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jn":{"opcode":"operator_subtract","next":null,"parent":"c=","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,"Jp",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jp":{"opcode":"operator_multiply","next":null,"parent":"Jn","inputs":{"NUM1":[3,"TL",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TL":{"opcode":"operator_gt","next":null,"parent":"Jp","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jo":{"opcode":"operator_subtract","next":null,"parent":"c=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[3,"Jq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jq":{"opcode":"operator_multiply","next":null,"parent":"Jo","inputs":{"NUM1":[3,"TM",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TM":{"opcode":"operator_gt","next":null,"parent":"Jq","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TK":{"opcode":"operator_lt","next":null,"parent":"c;","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c:":{"opcode":"data_setvariableto","next":"c?","parent":"iM","inputs":{"VALUE":[3,"Jr",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"Jr":{"opcode":"operator_add","next":null,"parent":"c:","inputs":{"NUM1":[3,"c@",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"c@":{"opcode":"operator_or","next":null,"parent":"Jr","inputs":{"OPERAND1":[2,"TN"],"OPERAND2":[2,"TO"]},"fields":{},"shadow":false,"topLevel":false},"TN":{"opcode":"operator_gt","next":null,"parent":"c@","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"TO":{"opcode":"operator_lt","next":null,"parent":"c@","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"c?":{"opcode":"data_setvariableto","next":"c[","parent":"c:","inputs":{"VALUE":[3,"c]",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"c]":{"opcode":"operator_subtract","next":null,"parent":"c?","inputs":{"NUM1":[3,"TP",[4,"0"]],"NUM2":[3,"TQ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TP":{"opcode":"operator_subtract","next":null,"parent":"c]","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TQ":{"opcode":"operator_lt","next":null,"parent":"c]","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c[":{"opcode":"data_setvariableto","next":"c^","parent":"c?","inputs":{"VALUE":[3,"Js",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Js":{"opcode":"operator_add","next":null,"parent":"c[","inputs":{"NUM1":[3,"TR",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TR":{"opcode":"operator_gt","next":null,"parent":"Js","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"c^":{"opcode":"data_setvariableto","next":"TS","parent":"c[","inputs":{"VALUE":[3,"TT",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TT":{"opcode":"operator_mod","next":null,"parent":"c^","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TS":{"opcode":"procedures_call","next":null,"parent":"c^","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aoq":{"opcode":"operator_equals","next":null,"parent":"b?","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aor":{"opcode":"procedures_call","next":null,"parent":"b?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P5":{"opcode":"data_setvariableto","next":"TU","parent":"b?","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"TU":{"opcode":"procedures_call","next":null,"parent":"P5","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aot":{"opcode":"operator_equals","next":null,"parent":"b@","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aou":{"opcode":"procedures_call","next":null,"parent":"b@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iN":{"opcode":"data_setvariableto","next":"c_","parent":"b@","inputs":{"VALUE":[3,"J}",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"J}":{"opcode":"operator_add","next":null,"parent":"iN","inputs":{"NUM1":[3,"J~",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"J~":{"opcode":"operator_gt","next":null,"parent":"J}","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,"TV",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TV":{"opcode":"operator_subtract","next":null,"parent":"J~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c_":{"opcode":"data_setvariableto","next":"Ka","parent":"iN","inputs":{"VALUE":[3,"Kb",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Kb":{"opcode":"operator_add","next":null,"parent":"c_","inputs":{"NUM1":[3,"TW",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TW":{"opcode":"operator_equals","next":null,"parent":"Kb","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ka":{"opcode":"data_setvariableto","next":null,"parent":"c_","inputs":{"VALUE":[3,"Kc",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kc":{"opcode":"operator_add","next":null,"parent":"Ka","inputs":{"NUM1":[3,"Kd",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kd":{"opcode":"operator_gt","next":null,"parent":"Kc","inputs":{"OPERAND1":[3,"Ke",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ke":{"opcode":"operator_mod","next":null,"parent":"Kd","inputs":{"NUM1":[3,"TX",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TX":{"opcode":"operator_subtract","next":null,"parent":"Ke","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aow":{"opcode":"operator_equals","next":null,"parent":"b[","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aox":{"opcode":"procedures_call","next":null,"parent":"b[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P6":{"opcode":"procedures_call","next":"TY","parent":"b[","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"TY":{"opcode":"data_setvariableto","next":null,"parent":"P6","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aoB":{"opcode":"operator_equals","next":null,"parent":"b]","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoC":{"opcode":"procedures_call","next":null,"parent":"b]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iO":{"opcode":"data_setvariableto","next":"c`","parent":"b]","inputs":{"VALUE":[3,"Kf",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Kf":{"opcode":"operator_add","next":null,"parent":"iO","inputs":{"NUM1":[3,"Kg",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kg":{"opcode":"operator_gt","next":null,"parent":"Kf","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,"TZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TZ":{"opcode":"operator_subtract","next":null,"parent":"Kg","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c`":{"opcode":"data_setvariableto","next":"Kh","parent":"iO","inputs":{"VALUE":[3,"Ki",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Ki":{"opcode":"operator_add","next":null,"parent":"c`","inputs":{"NUM1":[3,"T0",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"T0":{"opcode":"operator_equals","next":null,"parent":"Ki","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Kh":{"opcode":"data_setvariableto","next":null,"parent":"c`","inputs":{"VALUE":[3,"Kj",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kj":{"opcode":"operator_add","next":null,"parent":"Kh","inputs":{"NUM1":[3,"Kk",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kk":{"opcode":"operator_gt","next":null,"parent":"Kj","inputs":{"OPERAND1":[3,"Kl",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Kl":{"opcode":"operator_mod","next":null,"parent":"Kk","inputs":{"NUM1":[3,"T1",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T1":{"opcode":"operator_subtract","next":null,"parent":"Kl","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoE":{"opcode":"operator_equals","next":null,"parent":"b^","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoF":{"opcode":"procedures_call","next":null,"parent":"b^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"iP":{"opcode":"data_setvariableto","next":"c{","parent":"b^","inputs":{"VALUE":[3,"Km",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"Km":{"opcode":"operator_add","next":null,"parent":"iP","inputs":{"NUM1":[3,"Kn",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kn":{"opcode":"operator_gt","next":null,"parent":"Km","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,"T2",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"T2":{"opcode":"operator_subtract","next":null,"parent":"Kn","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"c{":{"opcode":"data_setvariableto","next":"Ko","parent":"iP","inputs":{"VALUE":[3,"Kp",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"Kp":{"opcode":"operator_add","next":null,"parent":"c{","inputs":{"NUM1":[3,"T3",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"T3":{"opcode":"operator_equals","next":null,"parent":"Kp","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ko":{"opcode":"data_setvariableto","next":null,"parent":"c{","inputs":{"VALUE":[3,"Kq",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"Kq":{"opcode":"operator_add","next":null,"parent":"Ko","inputs":{"NUM1":[3,"Kr",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Kr":{"opcode":"operator_gt","next":null,"parent":"Kq","inputs":{"OPERAND1":[3,"Ks",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ks":{"opcode":"operator_mod","next":null,"parent":"Kr","inputs":{"NUM1":[3,"T4",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T4":{"opcode":"operator_subtract","next":null,"parent":"Ks","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoT":{"opcode":"operator_equals","next":null,"parent":"b_","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aoU":{"opcode":"procedures_call","next":null,"parent":"b_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"P7":{"opcode":"procedures_call","next":"T5","parent":"b_","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"T5":{"opcode":"data_setvariableto","next":null,"parent":"P7","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"ao=":{"opcode":"operator_equals","next":null,"parent":"c|","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P8":{"opcode":"data_setvariableto","next":"T6","parent":"c|","inputs":{"VALUE":[1,[10,"80000"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T6":{"opcode":"control_stop","next":null,"parent":"P8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao?":{"opcode":"operator_equals","next":null,"parent":"c}","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P9":{"opcode":"data_changevariableby","next":"KO","parent":"c}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KO":{"opcode":"data_setvariableto","next":"KP","parent":"P9","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KP":{"opcode":"procedures_call","next":"da","parent":"KO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"da":{"opcode":"data_setvariableto","next":"KQ","parent":"KP","inputs":{"VALUE":[3,"KR",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KR":{"opcode":"operator_mod","next":null,"parent":"da","inputs":{"NUM1":[3,"T7",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T7":{"opcode":"operator_add","next":null,"parent":"KR","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KQ":{"opcode":"procedures_call","next":"KS","parent":"da","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"KS":{"opcode":"data_setvariableto","next":"#","parent":"KQ","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"#":{"opcode":"control_if_else","next":"KT","parent":"KS","inputs":{"CONDITION":[2,"KU"],"SUBSTACK":[2,"T8"],"SUBSTACK2":[2,"T9"]},"fields":{},"shadow":false,"topLevel":false},"KU":{"opcode":"operator_equals","next":null,"parent":"#","inputs":{"OPERAND1":[3,"T!",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T!":{"opcode":"operator_mod","next":null,"parent":"KU","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T8":{"opcode":"data_changevariableby","next":null,"parent":"#","inputs":{"VALUE":[1,[4,"-255"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T9":{"opcode":"data_changevariableby","next":null,"parent":"#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KT":{"opcode":"procedures_call","next":"db","parent":"#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"db":{"opcode":"data_setvariableto","next":"T#","parent":"KT","inputs":{"VALUE":[3,"KV",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"KV":{"opcode":"operator_add","next":null,"parent":"db","inputs":{"NUM1":[3,"T%",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T%":{"opcode":"operator_multiply","next":null,"parent":"KV","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T#":{"opcode":"control_stop","next":null,"parent":"db","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao@":{"opcode":"operator_equals","next":null,"parent":"c~","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P!":{"opcode":"data_changevariableby","next":"KW","parent":"c~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KW":{"opcode":"data_setvariableto","next":"T(","parent":"P!","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"T(":{"opcode":"control_stop","next":null,"parent":"KW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao[":{"opcode":"operator_equals","next":null,"parent":"dc","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"P#":{"opcode":"data_changevariableby","next":"KX","parent":"dc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KX":{"opcode":"data_setvariableto","next":"T)","parent":"P#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"T)":{"opcode":"control_stop","next":null,"parent":"KX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao]":{"opcode":"operator_equals","next":null,"parent":"dd","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"P%":{"opcode":"data_changevariableby","next":"KY","parent":"dd","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"KY":{"opcode":"data_setvariableto","next":"KZ","parent":"P%","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"KZ":{"opcode":"data_changevariableby","next":"K0","parent":"KY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K0":{"opcode":"procedures_call","next":"df","parent":"KZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"df":{"opcode":"data_setvariableto","next":"T*","parent":"K0","inputs":{"VALUE":[3,"K1",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K1":{"opcode":"operator_add","next":null,"parent":"df","inputs":{"NUM1":[3,"T+",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T+":{"opcode":"operator_multiply","next":null,"parent":"K1","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T*":{"opcode":"control_stop","next":null,"parent":"df","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao^":{"opcode":"operator_equals","next":null,"parent":"de","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"P(":{"opcode":"data_changevariableby","next":"K2","parent":"de","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K2":{"opcode":"data_setvariableto","next":"K3","parent":"P(","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K3":{"opcode":"procedures_call","next":"K4","parent":"K2","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K4":{"opcode":"data_setvariableto","next":"dh","parent":"K3","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"dh":{"opcode":"data_setvariableto","next":"K5","parent":"K4","inputs":{"VALUE":[3,"K6",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K6":{"opcode":"operator_mod","next":null,"parent":"dh","inputs":{"NUM1":[3,"T,",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T,":{"opcode":"operator_add","next":null,"parent":"K6","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"K5":{"opcode":"procedures_call","next":"K7","parent":"dh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K7":{"opcode":"data_changevariableby","next":"iR","parent":"K5","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iR":{"opcode":"data_setvariableto","next":"a;","parent":"K7","inputs":{"VALUE":[3,"di",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"di":{"opcode":"operator_add","next":null,"parent":"iR","inputs":{"NUM1":[3,"T-",[4,"0"]],"NUM2":[3,"T.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T-":{"opcode":"operator_multiply","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T.":{"opcode":"operator_mod","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"iS":{"opcode":"operator_or","next":null,"parent":"a;","inputs":{"OPERAND1":[2,"T/"],"OPERAND2":[2,"T:"]},"fields":{},"shadow":false,"topLevel":false},"T/":{"opcode":"operator_gt","next":null,"parent":"iS","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T:":{"opcode":"operator_equals","next":null,"parent":"iS","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P)":{"opcode":"procedures_call","next":"dj","parent":"a;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dj":{"opcode":"control_if","next":null,"parent":"P)","inputs":{"CONDITION":[2,"T;"],"SUBSTACK":[2,"K8"]},"fields":{},"shadow":false,"topLevel":false},"T;":{"opcode":"operator_gt","next":null,"parent":"dj","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K8":{"opcode":"data_setvariableto","next":null,"parent":"dj","inputs":{"VALUE":[3,"K9",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K9":{"opcode":"operator_mod","next":null,"parent":"K8","inputs":{"NUM1":[3,"T=",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"T=":{"opcode":"operator_add","next":null,"parent":"K9","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao_":{"opcode":"control_stop","next":null,"parent":"a;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao`":{"opcode":"operator_equals","next":null,"parent":"dg","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"P*":{"opcode":"data_changevariableby","next":"K!","parent":"dg","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K!":{"opcode":"data_setvariableto","next":"K#","parent":"P*","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K#":{"opcode":"procedures_call","next":"dl","parent":"K!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dl":{"opcode":"data_setvariableto","next":"T?","parent":"K#","inputs":{"VALUE":[3,"K%",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K%":{"opcode":"operator_mod","next":null,"parent":"dl","inputs":{"NUM1":[3,"T@",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T@":{"opcode":"operator_add","next":null,"parent":"K%","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T?":{"opcode":"control_stop","next":null,"parent":"dl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao{":{"opcode":"operator_equals","next":null,"parent":"dk","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"P+":{"opcode":"data_changevariableby","next":"K(","parent":"dk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K(":{"opcode":"data_setvariableto","next":"K)","parent":"P+","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K)":{"opcode":"data_changevariableby","next":"K*","parent":"K(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K*":{"opcode":"procedures_call","next":"K+","parent":"K)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K+":{"opcode":"data_changevariableby","next":"iT","parent":"K*","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iT":{"opcode":"data_setvariableto","next":"a=","parent":"K+","inputs":{"VALUE":[3,"dn",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"dn":{"opcode":"operator_add","next":null,"parent":"iT","inputs":{"NUM1":[3,"T[",[4,"0"]],"NUM2":[3,"T]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T[":{"opcode":"operator_multiply","next":null,"parent":"dn","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T]":{"opcode":"operator_mod","next":null,"parent":"dn","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"iU":{"opcode":"operator_or","next":null,"parent":"a=","inputs":{"OPERAND1":[2,"T^"],"OPERAND2":[2,"T_"]},"fields":{},"shadow":false,"topLevel":false},"T^":{"opcode":"operator_gt","next":null,"parent":"iU","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"T_":{"opcode":"operator_equals","next":null,"parent":"iU","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P,":{"opcode":"procedures_call","next":"do","parent":"a=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"do":{"opcode":"control_if","next":null,"parent":"P,","inputs":{"CONDITION":[2,"T`"],"SUBSTACK":[2,"K,"]},"fields":{},"shadow":false,"topLevel":false},"T`":{"opcode":"operator_gt","next":null,"parent":"do","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K,":{"opcode":"data_setvariableto","next":null,"parent":"do","inputs":{"VALUE":[3,"K-",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K-":{"opcode":"operator_mod","next":null,"parent":"K,","inputs":{"NUM1":[3,"T{",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"T{":{"opcode":"operator_add","next":null,"parent":"K-","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao|":{"opcode":"control_stop","next":null,"parent":"a=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ao}":{"opcode":"operator_equals","next":null,"parent":"dm","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"P-":{"opcode":"data_changevariableby","next":"K.","parent":"dm","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K.":{"opcode":"data_setvariableto","next":"K/","parent":"P-","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K/":{"opcode":"data_changevariableby","next":"K:","parent":"K.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K:":{"opcode":"procedures_call","next":"K;","parent":"K/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K;":{"opcode":"data_changevariableby","next":"iV","parent":"K:","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"iV":{"opcode":"data_setvariableto","next":"a?","parent":"K;","inputs":{"VALUE":[3,"dq",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"dq":{"opcode":"operator_add","next":null,"parent":"iV","inputs":{"NUM1":[3,"T|",[4,"0"]],"NUM2":[3,"T}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T|":{"opcode":"operator_multiply","next":null,"parent":"dq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"T}":{"opcode":"operator_mod","next":null,"parent":"dq","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"iW":{"opcode":"operator_or","next":null,"parent":"a?","inputs":{"OPERAND1":[2,"T~"],"OPERAND2":[2,"Ua"]},"fields":{},"shadow":false,"topLevel":false},"T~":{"opcode":"operator_gt","next":null,"parent":"iW","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Ua":{"opcode":"operator_equals","next":null,"parent":"iW","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P.":{"opcode":"procedures_call","next":"dr","parent":"a?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dr":{"opcode":"control_if","next":null,"parent":"P.","inputs":{"CONDITION":[2,"Ub"],"SUBSTACK":[2,"K="]},"fields":{},"shadow":false,"topLevel":false},"Ub":{"opcode":"operator_gt","next":null,"parent":"dr","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"K=":{"opcode":"data_setvariableto","next":null,"parent":"dr","inputs":{"VALUE":[3,"K?",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K?":{"opcode":"operator_mod","next":null,"parent":"K=","inputs":{"NUM1":[3,"Uc",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Uc":{"opcode":"operator_add","next":null,"parent":"K?","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ao~":{"opcode":"control_stop","next":null,"parent":"a?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"apa":{"opcode":"operator_equals","next":null,"parent":"dp","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"P/":{"opcode":"data_changevariableby","next":"aC","parent":"dp","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aC":{"opcode":"control_if_else","next":"Ud","parent":"P/","inputs":{"CONDITION":[2,"Ue"],"SUBSTACK":[2,"Uf"],"SUBSTACK2":[2,"a@"]},"fields":{},"shadow":false,"topLevel":false},"Ue":{"opcode":"operator_equals","next":null,"parent":"aC","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Uf":{"opcode":"data_setvariableto","next":null,"parent":"aC","inputs":{"VALUE":[1,[10,"-128"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"apb":{"opcode":"operator_gt","next":null,"parent":"a@","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"P:":{"opcode":"data_setvariableto","next":null,"parent":"a@","inputs":{"VALUE":[3,"Ug",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Ug":{"opcode":"operator_mod","next":null,"parent":"P:","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"apc":{"opcode":"data_setvariableto","next":null,"parent":"a@","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Ud":{"opcode":"control_stop","next":null,"parent":"aC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"apd":{"opcode":"operator_equals","next":null,"parent":"ds","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"P;":{"opcode":"data_changevariableby","next":"K@","parent":"ds","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K@":{"opcode":"data_setvariableto","next":"K[","parent":"P;","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K[":{"opcode":"procedures_call","next":"dt","parent":"K@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dt":{"opcode":"data_setvariableto","next":"Uh","parent":"K[","inputs":{"VALUE":[3,"K]",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K]":{"opcode":"operator_mod","next":null,"parent":"dt","inputs":{"NUM1":[3,"Ui",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ui":{"opcode":"operator_add","next":null,"parent":"K]","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uh":{"opcode":"control_stop","next":null,"parent":"dt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ape":{"opcode":"operator_equals","next":null,"parent":"b`","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"P=":{"opcode":"data_changevariableby","next":"K^","parent":"b`","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"K^":{"opcode":"data_setvariableto","next":"K_","parent":"P=","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"K_":{"opcode":"data_changevariableby","next":"K`","parent":"K^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K`":{"opcode":"procedures_call","next":"du","parent":"K_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"du":{"opcode":"data_setvariableto","next":"K{","parent":"K`","inputs":{"VALUE":[3,"K|",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K|":{"opcode":"operator_add","next":null,"parent":"du","inputs":{"NUM1":[3,"Uj",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uj":{"opcode":"operator_multiply","next":null,"parent":"K|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"K{":{"opcode":"procedures_call","next":"K}","parent":"du","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"K}":{"opcode":"data_setvariableto","next":"%","parent":"K{","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"%":{"opcode":"control_if_else","next":"K~","parent":"K}","inputs":{"CONDITION":[2,"La"],"SUBSTACK":[2,"Uk"],"SUBSTACK2":[2,"Ul"]},"fields":{},"shadow":false,"topLevel":false},"La":{"opcode":"operator_equals","next":null,"parent":"%","inputs":{"OPERAND1":[3,"Um",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Um":{"opcode":"operator_mod","next":null,"parent":"La","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Uk":{"opcode":"data_changevariableby","next":null,"parent":"%","inputs":{"VALUE":[1,[4,"-255"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"Ul":{"opcode":"data_changevariableby","next":null,"parent":"%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"K~":{"opcode":"procedures_call","next":"dv","parent":"%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"dv":{"opcode":"data_setvariableto","next":"Un","parent":"K~","inputs":{"VALUE":[3,"Lb",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"Lb":{"opcode":"operator_add","next":null,"parent":"dv","inputs":{"NUM1":[3,"Uo",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uo":{"opcode":"operator_multiply","next":null,"parent":"Lb","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Un":{"opcode":"control_stop","next":null,"parent":"dv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iX":{"opcode":"control_if","next":null,"parent":"b`","inputs":{"CONDITION":[2,"Up"],"SUBSTACK":[2,"Lc"]},"fields":{},"shadow":false,"topLevel":false},"Up":{"opcode":"operator_equals","next":null,"parent":"iX","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"Lc":{"opcode":"sensing_askandwait","next":"Uq","parent":"iX","inputs":{"QUESTION":[1,[10,"CPU halted"]]},"fields":{},"shadow":false,"topLevel":false},"Uq":{"opcode":"control_stop","next":null,"parent":"Lc","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iY":{"opcode":"operator_or","next":null,"parent":"b{","inputs":{"OPERAND1":[2,"Lk"],"OPERAND2":[2,"dw"]},"fields":{},"shadow":false,"topLevel":false},"Lk":{"opcode":"operator_equals","next":null,"parent":"iY","inputs":{"OPERAND1":[3,"Ur",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ur":{"opcode":"operator_letter_of","next":null,"parent":"Lk","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"dw":{"opcode":"operator_and","next":null,"parent":"iY","inputs":{"OPERAND1":[2,"Us"],"OPERAND2":[2,"Ll"]},"fields":{},"shadow":false,"topLevel":false},"Us":{"opcode":"operator_equals","next":null,"parent":"dw","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ll":{"opcode":"operator_lt","next":null,"parent":"dw","inputs":{"OPERAND1":[3,"Lm",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Lm":{"opcode":"operator_mod","next":null,"parent":"Ll","inputs":{"NUM1":[3,"Ut",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ut":{"opcode":"data_lengthoflist","next":null,"parent":"Lm","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"ap;":{"opcode":"data_addtolist","next":null,"parent":"b{","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P?":{"opcode":"data_addtolist","next":null,"parent":"b{","inputs":{"ITEM":[3,"Ln",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ln":{"opcode":"data_itemoflist","next":null,"parent":"P?","inputs":{"INDEX":[3,"Lo",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Lo":{"opcode":"operator_add","next":null,"parent":"Ln","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"Uu",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uu":{"opcode":"operator_letter_of","next":null,"parent":"Lo","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap@":{"opcode":"operator_equals","next":null,"parent":"dx","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ap]":{"opcode":"operator_subtract","next":null,"parent":"b|","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ap^":{"opcode":"data_addtolist","next":null,"parent":"b|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"ap[":{"opcode":"control_stop","next":null,"parent":"b|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"iZ":{"opcode":"control_repeat","next":null,"parent":"dx","inputs":{"TIMES":[3,"Uv",[6,"0"]],"SUBSTACK":[2,"P@"]},"fields":{},"shadow":false,"topLevel":false},"Uv":{"opcode":"operator_subtract","next":null,"parent":"iZ","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P@":{"opcode":"data_changevariableby","next":"a[","parent":"iZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"P[":{"opcode":"operator_equals","next":null,"parent":"a[","inputs":{"OPERAND1":[3,"Uw",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uw":{"opcode":"operator_letter_of","next":null,"parent":"P[","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap_":{"opcode":"data_addtolist","next":null,"parent":"a[","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P]":{"opcode":"data_addtolist","next":null,"parent":"a[","inputs":{"ITEM":[3,"Lp",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Lp":{"opcode":"data_itemoflist","next":null,"parent":"P]","inputs":{"INDEX":[3,"Lq",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Lq":{"opcode":"operator_add","next":null,"parent":"Lp","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"Ux",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ux":{"opcode":"operator_letter_of","next":null,"parent":"Lq","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"P^":{"opcode":"operator_equals","next":null,"parent":"b}","inputs":{"OPERAND1":[3,"Uy",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uy":{"opcode":"operator_letter_of","next":null,"parent":"P^","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ap~":{"opcode":"data_addtolist","next":null,"parent":"b}","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"P_":{"opcode":"data_addtolist","next":null,"parent":"b}","inputs":{"ITEM":[3,"Lr",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Lr":{"opcode":"data_itemoflist","next":null,"parent":"P_","inputs":{"INDEX":[3,"Ls",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Ls":{"opcode":"operator_add","next":null,"parent":"Lr","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"Uz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uz":{"opcode":"operator_letter_of","next":null,"parent":"Ls","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"i1":{"opcode":"operator_and","next":null,"parent":"dy","inputs":{"OPERAND1":[2,"UA"],"OPERAND2":[2,"dz"]},"fields":{},"shadow":false,"topLevel":false},"UA":{"opcode":"operator_equals","next":null,"parent":"i1","inputs":{"OPERAND1":[3,[12,"@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"dz":{"opcode":"operator_and","next":null,"parent":"i1","inputs":{"OPERAND1":[2,"UB"],"OPERAND2":[2,"dA"]},"fields":{},"shadow":false,"topLevel":false},"UB":{"opcode":"operator_lt","next":null,"parent":"dz","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"dA":{"opcode":"operator_and","next":null,"parent":"dz","inputs":{"OPERAND1":[2,"UC"],"OPERAND2":[2,"LD"]},"fields":{},"shadow":false,"topLevel":false},"UC":{"opcode":"operator_lt","next":null,"parent":"dA","inputs":{"OPERAND1":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LD":{"opcode":"operator_not","next":null,"parent":"dA","inputs":{"OPERAND":[2,"LE"]},"fields":{},"shadow":false,"topLevel":false},"LE":{"opcode":"operator_equals","next":null,"parent":"LD","inputs":{"OPERAND1":[3,"LF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LF":{"opcode":"data_itemoflist","next":null,"parent":"LE","inputs":{"INDEX":[3,"LG",[7,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LG":{"opcode":"operator_add","next":null,"parent":"LF","inputs":{"NUM1":[3,"UD",[4,"0"]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UD":{"opcode":"operator_multiply","next":null,"parent":"LG","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aqk":{"opcode":"data_setvariableto","next":null,"parent":"dy","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"aql":{"opcode":"operator_equals","next":null,"parent":"b~","inputs":{"OPERAND1":[3,[12,"@sprite_priority","q:J@[.C#brGXD1scwWlL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i2":{"opcode":"control_if","next":null,"parent":"b~","inputs":{"CONDITION":[2,"LH"],"SUBSTACK":[2,"dB"]},"fields":{},"shadow":false,"topLevel":false},"LH":{"opcode":"operator_equals","next":null,"parent":"i2","inputs":{"OPERAND1":[3,"LI",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LI":{"opcode":"data_itemoflist","next":null,"parent":"LH","inputs":{"INDEX":[3,"LJ",[7,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LJ":{"opcode":"operator_add","next":null,"parent":"LI","inputs":{"NUM1":[3,"UE",[4,"0"]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UE":{"opcode":"operator_multiply","next":null,"parent":"LJ","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"dB":{"opcode":"data_replaceitemoflist","next":null,"parent":"i2","inputs":{"INDEX":[3,"LK",[7,"0"]],"ITEM":[3,"LL",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LK":{"opcode":"operator_add","next":null,"parent":"dB","inputs":{"NUM1":[3,"UF",[4,"0"]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UF":{"opcode":"operator_multiply","next":null,"parent":"LK","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LL":{"opcode":"data_itemoflist","next":null,"parent":"dB","inputs":{"INDEX":[3,"LM",[7,"0"]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"LM":{"opcode":"operator_add","next":null,"parent":"LL","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"UG",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UG":{"opcode":"operator_letter_of","next":null,"parent":"LM","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"i3":{"opcode":"data_replaceitemoflist","next":null,"parent":"b~","inputs":{"INDEX":[3,"LN",[7,"0"]],"ITEM":[3,"LO",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"LN":{"opcode":"operator_add","next":null,"parent":"i3","inputs":{"NUM1":[3,"UH",[4,"0"]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UH":{"opcode":"operator_multiply","next":null,"parent":"LN","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"LO":{"opcode":"data_itemoflist","next":null,"parent":"i3","inputs":{"INDEX":[3,"LP",[7,"0"]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"LP":{"opcode":"operator_add","next":null,"parent":"LO","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"UI",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UI":{"opcode":"operator_letter_of","next":null,"parent":"LP","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"P`":{"opcode":"operator_equals","next":null,"parent":"dC","inputs":{"OPERAND1":[3,"UJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UJ":{"opcode":"data_itemoflist","next":null,"parent":"P`","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i4":{"opcode":"data_setvariableto","next":"UK","parent":"dC","inputs":{"VALUE":[3,"LS",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LS":{"opcode":"data_itemoflist","next":null,"parent":"i4","inputs":{"INDEX":[3,"LT",[7,"0"]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"LT":{"opcode":"operator_add","next":null,"parent":"LS","inputs":{"NUM1":[3,"UL",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UL":{"opcode":"operator_mod","next":null,"parent":"LT","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UK":{"opcode":"control_stop","next":null,"parent":"i4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P{":{"opcode":"operator_equals","next":null,"parent":"dD","inputs":{"OPERAND1":[3,"UM",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UM":{"opcode":"data_itemoflist","next":null,"parent":"P{","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i5":{"opcode":"data_setvariableto","next":"UN","parent":"dD","inputs":{"VALUE":[3,"LU",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LU":{"opcode":"data_itemoflist","next":null,"parent":"i5","inputs":{"INDEX":[3,"LV",[7,"0"]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"LV":{"opcode":"operator_add","next":null,"parent":"LU","inputs":{"NUM1":[3,"UO",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UO":{"opcode":"operator_mod","next":null,"parent":"LV","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UN":{"opcode":"control_stop","next":null,"parent":"i5","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P|":{"opcode":"operator_equals","next":null,"parent":"ca","inputs":{"OPERAND1":[3,"UP",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"UP":{"opcode":"data_itemoflist","next":null,"parent":"P|","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i7":{"opcode":"data_setvariableto","next":"UQ","parent":"ca","inputs":{"VALUE":[3,"LW",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LW":{"opcode":"data_itemoflist","next":null,"parent":"i7","inputs":{"INDEX":[3,"LX",[7,"0"]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"LX":{"opcode":"operator_add","next":null,"parent":"LW","inputs":{"NUM1":[3,"UR",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UR":{"opcode":"operator_mod","next":null,"parent":"LX","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UQ":{"opcode":"control_stop","next":null,"parent":"i7","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i6":{"opcode":"control_if","next":null,"parent":"ca","inputs":{"CONDITION":[2,"LY"],"SUBSTACK":[2,"dE"]},"fields":{},"shadow":false,"topLevel":false},"LY":{"opcode":"operator_equals","next":null,"parent":"i6","inputs":{"OPERAND1":[3,"US",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"US":{"opcode":"data_itemoflist","next":null,"parent":"LY","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dE":{"opcode":"data_setvariableto","next":"UT","parent":"i6","inputs":{"VALUE":[3,"LZ",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"LZ":{"opcode":"data_itemoflist","next":null,"parent":"dE","inputs":{"INDEX":[3,"L0",[7,"0"]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"L0":{"opcode":"operator_add","next":null,"parent":"LZ","inputs":{"NUM1":[3,"UU",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UU":{"opcode":"operator_mod","next":null,"parent":"L0","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UT":{"opcode":"control_stop","next":null,"parent":"dE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P}":{"opcode":"operator_equals","next":null,"parent":"dF","inputs":{"OPERAND1":[3,"UV",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UV":{"opcode":"data_itemoflist","next":null,"parent":"P}","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i8":{"opcode":"data_replaceitemoflist","next":"UW","parent":"dF","inputs":{"INDEX":[3,"L3",[7,"0"]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"L3":{"opcode":"operator_add","next":null,"parent":"i8","inputs":{"NUM1":[3,"UX",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UX":{"opcode":"operator_mod","next":null,"parent":"L3","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UW":{"opcode":"control_stop","next":null,"parent":"i8","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P~":{"opcode":"operator_equals","next":null,"parent":"dG","inputs":{"OPERAND1":[3,"UY",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UY":{"opcode":"data_itemoflist","next":null,"parent":"P~","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i9":{"opcode":"data_replaceitemoflist","next":"UZ","parent":"dG","inputs":{"INDEX":[3,"L4",[7,"0"]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"L4":{"opcode":"operator_add","next":null,"parent":"i9","inputs":{"NUM1":[3,"U0",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U0":{"opcode":"operator_mod","next":null,"parent":"L4","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"UZ":{"opcode":"control_stop","next":null,"parent":"i9","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qa":{"opcode":"operator_equals","next":null,"parent":"cb","inputs":{"OPERAND1":[3,"U1",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"U1":{"opcode":"data_itemoflist","next":null,"parent":"Qa","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i#":{"opcode":"data_replaceitemoflist","next":"U2","parent":"cb","inputs":{"INDEX":[3,"L5",[7,"0"]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"L5":{"opcode":"operator_add","next":null,"parent":"i#","inputs":{"NUM1":[3,"U3",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U3":{"opcode":"operator_mod","next":null,"parent":"L5","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U2":{"opcode":"control_stop","next":null,"parent":"i#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i!":{"opcode":"control_if","next":null,"parent":"cb","inputs":{"CONDITION":[2,"L6"],"SUBSTACK":[2,"dH"]},"fields":{},"shadow":false,"topLevel":false},"L6":{"opcode":"operator_equals","next":null,"parent":"i!","inputs":{"OPERAND1":[3,"U4",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"U4":{"opcode":"data_itemoflist","next":null,"parent":"L6","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dH":{"opcode":"data_replaceitemoflist","next":"U5","parent":"i!","inputs":{"INDEX":[3,"L7",[7,"0"]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"L7":{"opcode":"operator_add","next":null,"parent":"dH","inputs":{"NUM1":[3,"U6",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U6":{"opcode":"operator_mod","next":null,"parent":"L7","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U5":{"opcode":"control_stop","next":null,"parent":"dH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qb":{"opcode":"operator_equals","next":null,"parent":"dI","inputs":{"OPERAND1":[3,"U7",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U7":{"opcode":"data_itemoflist","next":null,"parent":"Qb","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i%":{"opcode":"data_setvariableto","next":"U8","parent":"dI","inputs":{"VALUE":[3,"L!",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L!":{"opcode":"data_itemoflist","next":null,"parent":"i%","inputs":{"INDEX":[3,"L#",[7,"0"]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L#":{"opcode":"operator_add","next":null,"parent":"L!","inputs":{"NUM1":[3,"U9",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U9":{"opcode":"operator_mod","next":null,"parent":"L#","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U8":{"opcode":"control_stop","next":null,"parent":"i%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qc":{"opcode":"operator_equals","next":null,"parent":"dJ","inputs":{"OPERAND1":[3,"U!",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U!":{"opcode":"data_itemoflist","next":null,"parent":"Qc","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i(":{"opcode":"data_setvariableto","next":"U#","parent":"dJ","inputs":{"VALUE":[3,"L%",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L%":{"opcode":"data_itemoflist","next":null,"parent":"i(","inputs":{"INDEX":[3,"L(",[7,"0"]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"L(":{"opcode":"operator_add","next":null,"parent":"L%","inputs":{"NUM1":[3,"U%",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U%":{"opcode":"operator_mod","next":null,"parent":"L(","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U#":{"opcode":"control_stop","next":null,"parent":"i(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qd":{"opcode":"operator_equals","next":null,"parent":"cc","inputs":{"OPERAND1":[3,"U(",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"U(":{"opcode":"data_itemoflist","next":null,"parent":"Qd","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i*":{"opcode":"data_setvariableto","next":"U)","parent":"cc","inputs":{"VALUE":[3,"L)",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L)":{"opcode":"data_itemoflist","next":null,"parent":"i*","inputs":{"INDEX":[3,"L*",[7,"0"]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"L*":{"opcode":"operator_add","next":null,"parent":"L)","inputs":{"NUM1":[3,"U*",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U*":{"opcode":"operator_mod","next":null,"parent":"L*","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U)":{"opcode":"control_stop","next":null,"parent":"i*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i)":{"opcode":"control_if","next":null,"parent":"cc","inputs":{"CONDITION":[2,"L+"],"SUBSTACK":[2,"dK"]},"fields":{},"shadow":false,"topLevel":false},"L+":{"opcode":"operator_equals","next":null,"parent":"i)","inputs":{"OPERAND1":[3,"U+",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"U+":{"opcode":"data_itemoflist","next":null,"parent":"L+","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"dK":{"opcode":"data_setvariableto","next":"U,","parent":"i)","inputs":{"VALUE":[3,"L,",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"L,":{"opcode":"data_itemoflist","next":null,"parent":"dK","inputs":{"INDEX":[3,"L-",[7,"0"]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"L-":{"opcode":"operator_add","next":null,"parent":"L,","inputs":{"NUM1":[3,"U-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U-":{"opcode":"operator_mod","next":null,"parent":"L-","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"U,":{"opcode":"control_stop","next":null,"parent":"dK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qe":{"opcode":"operator_equals","next":null,"parent":"dL","inputs":{"OPERAND1":[3,"U.",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U.":{"opcode":"data_itemoflist","next":null,"parent":"Qe","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i+":{"opcode":"control_repeat","next":"dN","parent":"dL","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dO"]},"fields":{},"shadow":false,"topLevel":false},"dO":{"opcode":"control_repeat","next":"dP","parent":"i+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dQ"]},"fields":{},"shadow":false,"topLevel":false},"dQ":{"opcode":"data_replaceitemoflist","next":"U/","parent":"dO","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"L?",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L?":{"opcode":"operator_multiply","next":null,"parent":"dQ","inputs":{"NUM1":[3,"U:",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U:":{"opcode":"operator_mod","next":null,"parent":"L?","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U/":{"opcode":"data_changevariableby","next":null,"parent":"dQ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dP":{"opcode":"control_repeat","next":"U;","parent":"dO","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dR"]},"fields":{},"shadow":false,"topLevel":false},"dR":{"opcode":"data_replaceitemoflist","next":"U=","parent":"dP","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"L@",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L@":{"opcode":"operator_multiply","next":null,"parent":"dR","inputs":{"NUM1":[3,"L[",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L[":{"opcode":"operator_mod","next":null,"parent":"L@","inputs":{"NUM1":[3,"L]",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L]":{"opcode":"operator_mathop","next":null,"parent":"L[","inputs":{"NUM":[3,"U?",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U?":{"opcode":"operator_divide","next":null,"parent":"L]","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U=":{"opcode":"data_changevariableby","next":null,"parent":"dR","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U;":{"opcode":"data_changevariableby","next":null,"parent":"dP","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dN":{"opcode":"control_repeat","next":"U@","parent":"i+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dS"]},"fields":{},"shadow":false,"topLevel":false},"dS":{"opcode":"control_repeat","next":"dT","parent":"dN","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dU"]},"fields":{},"shadow":false,"topLevel":false},"dU":{"opcode":"data_replaceitemoflist","next":"U[","parent":"dS","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"L^",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L^":{"opcode":"operator_multiply","next":null,"parent":"dU","inputs":{"NUM1":[3,"L_",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L_":{"opcode":"operator_mod","next":null,"parent":"L^","inputs":{"NUM1":[3,"L`",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L`":{"opcode":"operator_mathop","next":null,"parent":"L_","inputs":{"NUM":[3,"U]",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U]":{"opcode":"operator_divide","next":null,"parent":"L`","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"U[":{"opcode":"data_changevariableby","next":null,"parent":"dU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dT":{"opcode":"control_repeat","next":"U^","parent":"dS","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dV"]},"fields":{},"shadow":false,"topLevel":false},"dV":{"opcode":"data_replaceitemoflist","next":"U_","parent":"dT","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"L{",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"L{":{"opcode":"operator_multiply","next":null,"parent":"dV","inputs":{"NUM1":[3,"L|",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L|":{"opcode":"operator_mod","next":null,"parent":"L{","inputs":{"NUM1":[3,"L}",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L}":{"opcode":"operator_mathop","next":null,"parent":"L|","inputs":{"NUM":[3,"U`",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"U`":{"opcode":"operator_divide","next":null,"parent":"L}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"U_":{"opcode":"data_changevariableby","next":null,"parent":"dV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U^":{"opcode":"data_changevariableby","next":null,"parent":"dT","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U@":{"opcode":"control_stop","next":null,"parent":"dN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qf":{"opcode":"operator_equals","next":null,"parent":"dM","inputs":{"OPERAND1":[3,"U{",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U{":{"opcode":"data_itemoflist","next":null,"parent":"Qf","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i,":{"opcode":"control_repeat","next":"dW","parent":"dM","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dX"]},"fields":{},"shadow":false,"topLevel":false},"dX":{"opcode":"control_repeat","next":"dY","parent":"i,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"op"]},"fields":{},"shadow":false,"topLevel":false},"op":{"opcode":"data_replaceitemoflist","next":"U|","parent":"dX","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"L~",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"L~":{"opcode":"operator_multiply","next":null,"parent":"op","inputs":{"NUM1":[3,"U}",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U}":{"opcode":"operator_mod","next":null,"parent":"L~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"U|":{"opcode":"data_changevariableby","next":null,"parent":"op","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dY":{"opcode":"control_repeat","next":"U~","parent":"dX","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"dZ"]},"fields":{},"shadow":false,"topLevel":false},"dZ":{"opcode":"data_replaceitemoflist","next":"Va","parent":"dY","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Ma",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Ma":{"opcode":"operator_multiply","next":null,"parent":"dZ","inputs":{"NUM1":[3,"Mb",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mb":{"opcode":"operator_mod","next":null,"parent":"Ma","inputs":{"NUM1":[3,"Mc",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mc":{"opcode":"operator_mathop","next":null,"parent":"Mb","inputs":{"NUM":[3,"Vb",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vb":{"opcode":"operator_divide","next":null,"parent":"Mc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Va":{"opcode":"data_changevariableby","next":null,"parent":"dZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"U~":{"opcode":"data_changevariableby","next":null,"parent":"dY","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"dW":{"opcode":"control_repeat","next":"Vc","parent":"i,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d0"]},"fields":{},"shadow":false,"topLevel":false},"d0":{"opcode":"control_repeat","next":"d1","parent":"dW","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d2"]},"fields":{},"shadow":false,"topLevel":false},"d2":{"opcode":"data_replaceitemoflist","next":"Vd","parent":"d0","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Md",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Md":{"opcode":"operator_multiply","next":null,"parent":"d2","inputs":{"NUM1":[3,"Me",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Me":{"opcode":"operator_mod","next":null,"parent":"Md","inputs":{"NUM1":[3,"Mf",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mf":{"opcode":"operator_mathop","next":null,"parent":"Me","inputs":{"NUM":[3,"Ve",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ve":{"opcode":"operator_divide","next":null,"parent":"Mf","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vd":{"opcode":"data_changevariableby","next":null,"parent":"d2","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d1":{"opcode":"control_repeat","next":"Vf","parent":"d0","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d3"]},"fields":{},"shadow":false,"topLevel":false},"d3":{"opcode":"data_replaceitemoflist","next":"Vg","parent":"d1","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mg",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"Mg":{"opcode":"operator_multiply","next":null,"parent":"d3","inputs":{"NUM1":[3,"Mh",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mh":{"opcode":"operator_mod","next":null,"parent":"Mg","inputs":{"NUM1":[3,"Mi",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mi":{"opcode":"operator_mathop","next":null,"parent":"Mh","inputs":{"NUM":[3,"Vh",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vh":{"opcode":"operator_divide","next":null,"parent":"Mi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vg":{"opcode":"data_changevariableby","next":null,"parent":"d3","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vf":{"opcode":"data_changevariableby","next":null,"parent":"d1","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vc":{"opcode":"control_stop","next":null,"parent":"dW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Qg":{"opcode":"operator_equals","next":null,"parent":"cd","inputs":{"OPERAND1":[3,"Vi",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Vi":{"opcode":"data_itemoflist","next":null,"parent":"Qg","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"i.":{"opcode":"control_repeat","next":"d4","parent":"cd","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d5"]},"fields":{},"shadow":false,"topLevel":false},"d5":{"opcode":"control_repeat","next":"o[","parent":"i.","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"ew"]},"fields":{},"shadow":false,"topLevel":false},"ew":{"opcode":"data_replaceitemoflist","next":"Y)","parent":"d5","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Ox",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Ox":{"opcode":"operator_multiply","next":null,"parent":"ew","inputs":{"NUM1":[3,"Y*",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y*":{"opcode":"operator_mod","next":null,"parent":"Ox","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y)":{"opcode":"data_changevariableby","next":null,"parent":"ew","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"o[":{"opcode":"control_repeat","next":"Y+","parent":"d5","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"ex"]},"fields":{},"shadow":false,"topLevel":false},"ex":{"opcode":"data_replaceitemoflist","next":"Y,","parent":"o[","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Oy",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Oy":{"opcode":"operator_multiply","next":null,"parent":"ex","inputs":{"NUM1":[3,"Oz",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Oz":{"opcode":"operator_mod","next":null,"parent":"Oy","inputs":{"NUM1":[3,"OA",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"OA":{"opcode":"operator_mathop","next":null,"parent":"Oz","inputs":{"NUM":[3,"Y-",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Y-":{"opcode":"operator_divide","next":null,"parent":"OA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y,":{"opcode":"data_changevariableby","next":null,"parent":"ex","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Y+":{"opcode":"data_changevariableby","next":null,"parent":"o[","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d4":{"opcode":"control_repeat","next":"Vj","parent":"i.","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d6"]},"fields":{},"shadow":false,"topLevel":false},"d6":{"opcode":"control_repeat","next":"d7","parent":"d4","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d8"]},"fields":{},"shadow":false,"topLevel":false},"d8":{"opcode":"data_replaceitemoflist","next":"Vk","parent":"d6","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mj",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Mj":{"opcode":"operator_multiply","next":null,"parent":"d8","inputs":{"NUM1":[3,"Mk",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mk":{"opcode":"operator_mod","next":null,"parent":"Mj","inputs":{"NUM1":[3,"Ml",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ml":{"opcode":"operator_mathop","next":null,"parent":"Mk","inputs":{"NUM":[3,"Vl",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vl":{"opcode":"operator_divide","next":null,"parent":"Ml","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vk":{"opcode":"data_changevariableby","next":null,"parent":"d8","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d7":{"opcode":"control_repeat","next":"Vm","parent":"d6","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d9"]},"fields":{},"shadow":false,"topLevel":false},"d9":{"opcode":"data_replaceitemoflist","next":"Vn","parent":"d7","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mm",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"Mm":{"opcode":"operator_multiply","next":null,"parent":"d9","inputs":{"NUM1":[3,"Mn",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mn":{"opcode":"operator_mod","next":null,"parent":"Mm","inputs":{"NUM1":[3,"Mo",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mo":{"opcode":"operator_mathop","next":null,"parent":"Mn","inputs":{"NUM":[3,"Vo",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vo":{"opcode":"operator_divide","next":null,"parent":"Mo","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vn":{"opcode":"data_changevariableby","next":null,"parent":"d9","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vm":{"opcode":"data_changevariableby","next":null,"parent":"d7","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vj":{"opcode":"control_stop","next":null,"parent":"d4","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i-":{"opcode":"control_if","next":null,"parent":"cd","inputs":{"CONDITION":[2,"Mp"],"SUBSTACK":[2,"d!"]},"fields":{},"shadow":false,"topLevel":false},"Mp":{"opcode":"operator_equals","next":null,"parent":"i-","inputs":{"OPERAND1":[3,"Vp",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Vp":{"opcode":"data_itemoflist","next":null,"parent":"Mp","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"d!":{"opcode":"control_repeat","next":"d#","parent":"i-","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d%"]},"fields":{},"shadow":false,"topLevel":false},"d%":{"opcode":"control_repeat","next":"d(","parent":"d!","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d)"]},"fields":{},"shadow":false,"topLevel":false},"d)":{"opcode":"data_replaceitemoflist","next":"Vq","parent":"d%","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mq",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mq":{"opcode":"operator_multiply","next":null,"parent":"d)","inputs":{"NUM1":[3,"Vr",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vr":{"opcode":"operator_mod","next":null,"parent":"Mq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vq":{"opcode":"data_changevariableby","next":null,"parent":"d)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d(":{"opcode":"control_repeat","next":"Vs","parent":"d%","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d*"]},"fields":{},"shadow":false,"topLevel":false},"d*":{"opcode":"data_replaceitemoflist","next":"Vt","parent":"d(","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mr",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mr":{"opcode":"operator_multiply","next":null,"parent":"d*","inputs":{"NUM1":[3,"Ms",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ms":{"opcode":"operator_mod","next":null,"parent":"Mr","inputs":{"NUM1":[3,"Mt",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mt":{"opcode":"operator_mathop","next":null,"parent":"Ms","inputs":{"NUM":[3,"Vu",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vu":{"opcode":"operator_divide","next":null,"parent":"Mt","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Vt":{"opcode":"data_changevariableby","next":null,"parent":"d*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vs":{"opcode":"data_changevariableby","next":null,"parent":"d(","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d#":{"opcode":"control_repeat","next":"Vv","parent":"d!","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d+"]},"fields":{},"shadow":false,"topLevel":false},"d+":{"opcode":"control_repeat","next":"d,","parent":"d#","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d-"]},"fields":{},"shadow":false,"topLevel":false},"d-":{"opcode":"data_replaceitemoflist","next":"Vw","parent":"d+","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mu",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mu":{"opcode":"operator_multiply","next":null,"parent":"d-","inputs":{"NUM1":[3,"Mv",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mv":{"opcode":"operator_mod","next":null,"parent":"Mu","inputs":{"NUM1":[3,"Mw",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mw":{"opcode":"operator_mathop","next":null,"parent":"Mv","inputs":{"NUM":[3,"Vx",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vx":{"opcode":"operator_divide","next":null,"parent":"Mw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vw":{"opcode":"data_changevariableby","next":null,"parent":"d-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"d,":{"opcode":"control_repeat","next":"Vy","parent":"d+","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"d."]},"fields":{},"shadow":false,"topLevel":false},"d.":{"opcode":"data_replaceitemoflist","next":"Vz","parent":"d,","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"Mx",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"Mx":{"opcode":"operator_multiply","next":null,"parent":"d.","inputs":{"NUM1":[3,"My",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"My":{"opcode":"operator_mod","next":null,"parent":"Mx","inputs":{"NUM1":[3,"Mz",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mz":{"opcode":"operator_mathop","next":null,"parent":"My","inputs":{"NUM":[3,"VA",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"VA":{"opcode":"operator_divide","next":null,"parent":"Mz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Vz":{"opcode":"data_changevariableby","next":null,"parent":"d.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vy":{"opcode":"data_changevariableby","next":null,"parent":"d,","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Vv":{"opcode":"control_stop","next":null,"parent":"d#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i/":{"opcode":"operator_and","next":null,"parent":"d/","inputs":{"OPERAND1":[2,"MF"],"OPERAND2":[2,"MG"]},"fields":{},"shadow":false,"topLevel":false},"MF":{"opcode":"operator_equals","next":null,"parent":"i/","inputs":{"OPERAND1":[3,"VB",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VB":{"opcode":"operator_letter_of","next":null,"parent":"MF","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MG":{"opcode":"operator_equals","next":null,"parent":"i/","inputs":{"OPERAND1":[3,"MH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MH":{"opcode":"operator_letter_of","next":null,"parent":"MG","inputs":{"LETTER":[3,"VC",[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VC":{"opcode":"operator_add","next":null,"parent":"MH","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qh":{"opcode":"data_setvariableto","next":null,"parent":"d/","inputs":{"VALUE":[3,"VD",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VD":{"opcode":"operator_join","next":null,"parent":"Qh","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i:":{"opcode":"operator_and","next":null,"parent":"d:","inputs":{"OPERAND1":[2,"MI"],"OPERAND2":[2,"MJ"]},"fields":{},"shadow":false,"topLevel":false},"MI":{"opcode":"operator_equals","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"VE",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VE":{"opcode":"operator_letter_of","next":null,"parent":"MI","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MJ":{"opcode":"operator_equals","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"MK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MK":{"opcode":"operator_letter_of","next":null,"parent":"MJ","inputs":{"LETTER":[3,"VF",[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VF":{"opcode":"operator_add","next":null,"parent":"MK","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qi":{"opcode":"data_setvariableto","next":null,"parent":"d:","inputs":{"VALUE":[3,"VG",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VG":{"opcode":"operator_join","next":null,"parent":"Qi","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i=":{"opcode":"operator_and","next":null,"parent":"ce","inputs":{"OPERAND1":[2,"ML"],"OPERAND2":[2,"MM"]},"fields":{},"shadow":false,"topLevel":false},"ML":{"opcode":"operator_equals","next":null,"parent":"i=","inputs":{"OPERAND1":[3,"VH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VH":{"opcode":"operator_letter_of","next":null,"parent":"ML","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MM":{"opcode":"operator_equals","next":null,"parent":"i=","inputs":{"OPERAND1":[3,"MN",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MN":{"opcode":"operator_letter_of","next":null,"parent":"MM","inputs":{"LETTER":[3,"VI",[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VI":{"opcode":"operator_add","next":null,"parent":"MN","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Qj":{"opcode":"data_setvariableto","next":null,"parent":"ce","inputs":{"VALUE":[3,"VJ",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VJ":{"opcode":"operator_join","next":null,"parent":"Qj","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"i;":{"opcode":"control_if","next":null,"parent":"ce","inputs":{"CONDITION":[2,"d;"],"SUBSTACK":[2,"MO"]},"fields":{},"shadow":false,"topLevel":false},"d;":{"opcode":"operator_and","next":null,"parent":"i;","inputs":{"OPERAND1":[2,"MP"],"OPERAND2":[2,"MQ"]},"fields":{},"shadow":false,"topLevel":false},"MP":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,"VK",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VK":{"opcode":"operator_letter_of","next":null,"parent":"MP","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MQ":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,"MR",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MR":{"opcode":"operator_letter_of","next":null,"parent":"MQ","inputs":{"LETTER":[3,"VL",[6,"0"]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VL":{"opcode":"operator_add","next":null,"parent":"MR","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MO":{"opcode":"data_setvariableto","next":null,"parent":"i;","inputs":{"VALUE":[3,"VM",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"VM":{"opcode":"operator_join","next":null,"parent":"MO","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aqJ":{"opcode":"operator_equals","next":null,"parent":"i?","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"aqK":{"opcode":"operator_equals","next":null,"parent":"cf","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aqL":{"opcode":"data_setvariableto","next":null,"parent":"cf","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"Qk":{"opcode":"data_changevariableby","next":"VN","parent":"cf","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"VN":{"opcode":"control_stop","next":null,"parent":"Qk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"i[":{"opcode":"operator_and","next":null,"parent":"i@","inputs":{"OPERAND1":[2,"VO"],"OPERAND2":[2,"VP"]},"fields":{},"shadow":false,"topLevel":false},"VO":{"opcode":"operator_gt","next":null,"parent":"i[","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"VP":{"opcode":"operator_lt","next":null,"parent":"i[","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"i]":{"opcode":"operator_and","next":null,"parent":"cg","inputs":{"OPERAND1":[2,"VQ"],"OPERAND2":[2,"VR"]},"fields":{},"shadow":false,"topLevel":false},"VQ":{"opcode":"operator_equals","next":null,"parent":"i]","inputs":{"OPERAND1":[3,[12,"coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VR":{"opcode":"operator_equals","next":null,"parent":"i]","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ql":{"opcode":"procedures_call","next":"VS","parent":"cg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","warp":"true"}},"VS":{"opcode":"data_setvariableto","next":null,"parent":"Ql","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"a2":{"opcode":"control_if_else","next":"a]","parent":"cg","inputs":{"CONDITION":[2,"VT"],"SUBSTACK":[2,"d?"],"SUBSTACK2":[2,"MS"]},"fields":{},"shadow":false,"topLevel":false},"VT":{"opcode":"operator_equals","next":null,"parent":"a2","inputs":{"OPERAND1":[3,[12,"@render_bg","~C;tFyLG;WJlq~1ZPX1f"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"control_for_each","next":"d@","parent":"a2","inputs":{"VALUE":[1,[6,"33"]],"SUBSTACK":[2,"MT"]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"MT":{"opcode":"procedures_call","next":"d[","parent":"d?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","warp":"true"}},"d[":{"opcode":"data_setvariableto","next":"MU","parent":"MT","inputs":{"VALUE":[3,"VU",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"VU":{"opcode":"operator_add","next":null,"parent":"d[","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,"0"]],"NUM2":[3,[12,"@bg_pattern","vTq-oq{gvgqfjW3L4iSt"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MU":{"opcode":"procedures_call","next":"d]","parent":"d[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read at","argumentids":"[]","warp":"true"}},"d]":{"opcode":"data_setvariableto","next":"d^","parent":"MU","inputs":{"VALUE":[3,"VV",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"VV":{"opcode":"operator_add","next":null,"parent":"d]","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d^":{"opcode":"data_setvariableto","next":"MV","parent":"d]","inputs":{"VALUE":[3,"d_",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"d_":{"opcode":"operator_add","next":null,"parent":"d^","inputs":{"NUM1":[3,"VW",[4,"0"]],"NUM2":[3,"MW",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VW":{"opcode":"operator_multiply","next":null,"parent":"d_","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MW":{"opcode":"operator_mathop","next":null,"parent":"d_","inputs":{"NUM":[3,"VX",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"VX":{"opcode":"operator_divide","next":null,"parent":"MW","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"MV":{"opcode":"procedures_call","next":"aD","parent":"d^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"aD":{"opcode":"control_if_else","next":"MX","parent":"MV","inputs":{"CONDITION":[2,"d`"],"SUBSTACK":[2,"VY"],"SUBSTACK2":[2,"a^"]},"fields":{},"shadow":false,"topLevel":false},"d`":{"opcode":"operator_and","next":null,"parent":"aD","inputs":{"OPERAND1":[2,"VZ"],"OPERAND2":[2,"V0"]},"fields":{},"shadow":false,"topLevel":false},"VZ":{"opcode":"operator_gt","next":null,"parent":"d`","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V0":{"opcode":"operator_equals","next":null,"parent":"d`","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VY":{"opcode":"procedures_call","next":null,"parent":"aD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped left","argumentids":"[]","warp":"true"}},"i^":{"opcode":"operator_and","next":null,"parent":"a^","inputs":{"OPERAND1":[2,"V1"],"OPERAND2":[2,"V2"]},"fields":{},"shadow":false,"topLevel":false},"V1":{"opcode":"operator_gt","next":null,"parent":"i^","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V2":{"opcode":"operator_equals","next":null,"parent":"i^","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"aqM":{"opcode":"procedures_call","next":null,"parent":"a^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","warp":"true"}},"i_":{"opcode":"control_if","next":null,"parent":"a^","inputs":{"CONDITION":[2,"V3"],"SUBSTACK":[2,"V4"]},"fields":{},"shadow":false,"topLevel":false},"V3":{"opcode":"operator_lt","next":null,"parent":"i_","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"V4":{"opcode":"procedures_call","next":null,"parent":"i_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw bg line","argumentids":"[]","warp":"true"}},"MX":{"opcode":"data_changevariableby","next":"d{","parent":"aD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"d{":{"opcode":"control_if","next":null,"parent":"MX","inputs":{"CONDITION":[2,"MY"],"SUBSTACK":[2,"MZ"]},"fields":{},"shadow":false,"topLevel":false},"MY":{"opcode":"operator_equals","next":null,"parent":"d{","inputs":{"OPERAND1":[3,"V5",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V5":{"opcode":"operator_mod","next":null,"parent":"MY","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"MZ":{"opcode":"data_changevariableby","next":"d|","parent":"d{","inputs":{"VALUE":[1,[4,"-32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"d|":{"opcode":"data_setvariableto","next":"d}","parent":"MZ","inputs":{"VALUE":[3,"M0",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M0":{"opcode":"operator_mathop","next":null,"parent":"d|","inputs":{"NUM":[3,"V6",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V6":{"opcode":"operator_divide","next":null,"parent":"M0","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"d}":{"opcode":"data_setvariableto","next":"M1","parent":"d|","inputs":{"VALUE":[3,"M2",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"M2":{"opcode":"operator_mod","next":null,"parent":"d}","inputs":{"NUM1":[3,"V7",[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"V7":{"opcode":"operator_add","next":null,"parent":"M2","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M1":{"opcode":"data_changevariableby","next":null,"parent":"d}","inputs":{"VALUE":[3,"V8",[4,"0"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"V8":{"opcode":"operator_multiply","next":null,"parent":"M1","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"d@":{"opcode":"data_setvariableto","next":"d~","parent":"d?","inputs":{"VALUE":[3,"ea",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ea":{"opcode":"operator_add","next":null,"parent":"d@","inputs":{"NUM1":[3,"M3",[4,"0"]],"NUM2":[3,"V9",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"M3":{"opcode":"operator_subtract","next":null,"parent":"ea","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[3,"V!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V!":{"opcode":"operator_mod","next":null,"parent":"M3","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"V9":{"opcode":"operator_mod","next":null,"parent":"ea","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"d~":{"opcode":"data_setvariableto","next":"eb","parent":"d@","inputs":{"VALUE":[3,"M4",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M4":{"opcode":"operator_mathop","next":null,"parent":"d~","inputs":{"NUM":[3,"V#",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V#":{"opcode":"operator_divide","next":null,"parent":"M4","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"eb":{"opcode":"data_setvariableto","next":"ec","parent":"d~","inputs":{"VALUE":[3,"ed",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ed":{"opcode":"operator_add","next":null,"parent":"eb","inputs":{"NUM1":[3,"M5",[4,"0"]],"NUM2":[3,"M6",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"M5":{"opcode":"operator_subtract","next":null,"parent":"ed","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[3,"V%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V%":{"opcode":"operator_mod","next":null,"parent":"M5","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"M6":{"opcode":"operator_mathop","next":null,"parent":"ed","inputs":{"NUM":[3,"M7",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"M7":{"opcode":"operator_divide","next":null,"parent":"M6","inputs":{"NUM1":[3,"V(",[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"V(":{"opcode":"operator_mod","next":null,"parent":"M7","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"ec":{"opcode":"data_setvariableto","next":"M8","parent":"eb","inputs":{"VALUE":[3,"ee",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ee":{"opcode":"operator_add","next":null,"parent":"ec","inputs":{"NUM1":[3,"V)",[4,"0"]],"NUM2":[3,"V*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V)":{"opcode":"operator_mod","next":null,"parent":"ee","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"V*":{"opcode":"operator_multiply","next":null,"parent":"ee","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M8":{"opcode":"data_changevariableby","next":"ef","parent":"ec","inputs":{"VALUE":[1,[4,"4096"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"ef":{"opcode":"control_if","next":null,"parent":"M8","inputs":{"CONDITION":[2,"V+"],"SUBSTACK":[2,"M9"]},"fields":{},"shadow":false,"topLevel":false},"V+":{"opcode":"operator_gt","next":null,"parent":"ef","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"M9":{"opcode":"data_changevariableby","next":"eg","parent":"ef","inputs":{"VALUE":[1,[4,"-32736"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"eg":{"opcode":"control_if","next":null,"parent":"M9","inputs":{"CONDITION":[2,"M!"],"SUBSTACK":[2,"M#"]},"fields":{},"shadow":false,"topLevel":false},"M!":{"opcode":"operator_equals","next":null,"parent":"eg","inputs":{"OPERAND1":[3,"M%",[10,""]],"OPERAND2":[1,[10,"30"]]},"fields":{},"shadow":false,"topLevel":false},"M%":{"opcode":"operator_mathop","next":null,"parent":"M!","inputs":{"NUM":[3,"M(",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"M(":{"opcode":"operator_divide","next":null,"parent":"M%","inputs":{"NUM1":[3,"V,",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"V,":{"opcode":"operator_mod","next":null,"parent":"M(","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"M#":{"opcode":"data_changevariableby","next":"eh","parent":"eg","inputs":{"VALUE":[1,[4,"-960"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"eh":{"opcode":"data_setvariableto","next":"ei","parent":"M#","inputs":{"VALUE":[3,"M)",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M)":{"opcode":"operator_mathop","next":null,"parent":"eh","inputs":{"NUM":[3,"V-",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"V-":{"opcode":"operator_divide","next":null,"parent":"M)","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"ei":{"opcode":"data_setvariableto","next":"M*","parent":"eh","inputs":{"VALUE":[3,"M+",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"M+":{"opcode":"operator_mod","next":null,"parent":"ei","inputs":{"NUM1":[3,"V.",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"V.":{"opcode":"operator_add","next":null,"parent":"M+","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"M*":{"opcode":"data_changevariableby","next":null,"parent":"ei","inputs":{"VALUE":[3,"V/",[4,"0"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"V/":{"opcode":"operator_multiply","next":null,"parent":"M*","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"MS":{"opcode":"control_repeat","next":null,"parent":"a2","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"V:"]},"fields":{},"shadow":false,"topLevel":false},"V:":{"opcode":"data_addtolist","next":null,"parent":"MS","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aqN":{"opcode":"operator_equals","next":null,"parent":"a]","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oq":{"opcode":"data_setvariableto","next":"a_","parent":"a]","inputs":{"VALUE":[3,"M,",[10,""]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"M,":{"opcode":"operator_subtract","next":null,"parent":"oq","inputs":{"NUM1":[3,"V;",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"V;":{"opcode":"data_lengthoflist","next":null,"parent":"M,","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Qo":{"opcode":"operator_divide","next":null,"parent":"a_","inputs":{"NUM1":[3,"V=",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"V=":{"opcode":"data_lengthoflist","next":null,"parent":"Qo","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"i`":{"opcode":"data_setvariableto","next":"ej","parent":"a_","inputs":{"VALUE":[3,"V?",[10,""]]},"fields":{"VARIABLE":["@sprite_y","y`PaeB/{^[+=lUi~^f35"]},"shadow":false,"topLevel":false},"V?":{"opcode":"data_itemoflist","next":null,"parent":"i`","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"ej":{"opcode":"data_setvariableto","next":"ek","parent":"i`","inputs":{"VALUE":[3,"M-",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"M-":{"opcode":"data_itemoflist","next":null,"parent":"ej","inputs":{"INDEX":[3,"V@",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"V@":{"opcode":"operator_add","next":null,"parent":"M-","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ek":{"opcode":"data_setvariableto","next":"ey","parent":"ej","inputs":{"VALUE":[3,"OB",[10,""]]},"fields":{"VARIABLE":["@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"]},"shadow":false,"topLevel":false},"OB":{"opcode":"data_itemoflist","next":null,"parent":"ek","inputs":{"INDEX":[3,"Y.",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Y.":{"opcode":"operator_add","next":null,"parent":"OB","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ey":{"opcode":"data_setvariableto","next":",","parent":"ek","inputs":{"VALUE":[3,"OC",[10,""]]},"fields":{"VARIABLE":["@sprite_x","*`+18/=FU3Ni:/*T,!l("]},"shadow":false,"topLevel":false},"OC":{"opcode":"data_itemoflist","next":null,"parent":"ey","inputs":{"INDEX":[3,"Y/",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Y/":{"opcode":"operator_add","next":null,"parent":"OC","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},",":{"opcode":"control_if_else","next":"ez","parent":"ey","inputs":{"CONDITION":[2,"Y:"],"SUBSTACK":[2,"OD"],"SUBSTACK2":[2,"Y;"]},"fields":{},"shadow":false,"topLevel":false},"Y:":{"opcode":"operator_equals","next":null,"parent":",","inputs":{"OPERAND1":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"OD":{"opcode":"data_setvariableto","next":null,"parent":",","inputs":{"VALUE":[3,"eA",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"eA":{"opcode":"operator_add","next":null,"parent":"OD","inputs":{"NUM1":[3,"OE",[4,"0"]],"NUM2":[3,"OF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"OE":{"opcode":"operator_subtract","next":null,"parent":"eA","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[3,"Y=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Y=":{"opcode":"operator_mod","next":null,"parent":"OE","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"OF":{"opcode":"operator_multiply","next":null,"parent":"eA","inputs":{"NUM1":[3,"Y?",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Y?":{"opcode":"operator_mod","next":null,"parent":"OF","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Y;":{"opcode":"data_changevariableby","next":null,"parent":",","inputs":{"VALUE":[3,[12,"@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"],[4,"0"]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"ez":{"opcode":"data_setvariableto","next":"eB","parent":",","inputs":{"VALUE":[3,"OG",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"OG":{"opcode":"operator_add","next":null,"parent":"ez","inputs":{"NUM1":[3,"OH",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"OH":{"opcode":"operator_multiply","next":null,"parent":"OG","inputs":{"NUM1":[3,"Y@",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y@":{"opcode":"operator_mod","next":null,"parent":"OH","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"eB":{"opcode":"data_setvariableto","next":"eC","parent":"ez","inputs":{"VALUE":[3,"OI",[10,""]]},"fields":{"VARIABLE":["@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"]},"shadow":false,"topLevel":false},"OI":{"opcode":"operator_add","next":null,"parent":"eB","inputs":{"NUM1":[3,"OJ",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OJ":{"opcode":"operator_gt","next":null,"parent":"OI","inputs":{"OPERAND1":[3,"Y[",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Y[":{"opcode":"operator_mod","next":null,"parent":"OJ","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"eC":{"opcode":"data_setvariableto","next":"eD","parent":"eB","inputs":{"VALUE":[3,"OK",[10,""]]},"fields":{"VARIABLE":["@sprite_priority","q:J@[.C#brGXD1scwWlL"]},"shadow":false,"topLevel":false},"OK":{"opcode":"operator_add","next":null,"parent":"eC","inputs":{"NUM1":[3,"OL",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OL":{"opcode":"operator_lt","next":null,"parent":"OK","inputs":{"OPERAND1":[3,"Y]",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"Y]":{"opcode":"operator_mod","next":null,"parent":"OL","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"eD":{"opcode":"data_setvariableto","next":"OM","parent":"eC","inputs":{"VALUE":[3,"ON",[10,""]]},"fields":{"VARIABLE":["@hflip","O-XGEJrBMMOorrV6rRfY"]},"shadow":false,"topLevel":false},"ON":{"opcode":"operator_add","next":null,"parent":"eD","inputs":{"NUM1":[3,"OO",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OO":{"opcode":"operator_gt","next":null,"parent":"ON","inputs":{"OPERAND1":[3,"Y^",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"Y^":{"opcode":"operator_mod","next":null,"parent":"OO","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"OM":{"opcode":"procedures_call","next":"Y_","parent":"eD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw sprite line","argumentids":"[]","warp":"true"}},"Y_":{"opcode":"data_changevariableby","next":null,"parent":"OM","inputs":{"VALUE":[1,[4,"-4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Qn":{"opcode":"data_deletealloflist","next":"M.","parent":"a_","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"M.":{"opcode":"data_setvariableto","next":"M/","parent":"Qn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M/":{"opcode":"data_setvariableto","next":"i{","parent":"M.","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"i{":{"opcode":"control_repeat_until","next":null,"parent":"M/","inputs":{"CONDITION":[2,"el"],"SUBSTACK":[2,"a`"]},"fields":{},"shadow":false,"topLevel":false},"el":{"opcode":"operator_or","next":null,"parent":"i{","inputs":{"OPERAND1":[2,"V["],"OPERAND2":[2,"V]"]},"fields":{},"shadow":false,"topLevel":false},"V[":{"opcode":"operator_equals","next":null,"parent":"el","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"V]":{"opcode":"operator_equals","next":null,"parent":"el","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"257"]]},"fields":{},"shadow":false,"topLevel":false},"i|":{"opcode":"operator_and","next":null,"parent":"a`","inputs":{"OPERAND1":[2,"em"],"OPERAND2":[2,"en"]},"fields":{},"shadow":false,"topLevel":false},"em":{"opcode":"operator_lt","next":null,"parent":"i|","inputs":{"OPERAND1":[3,"V^",[10,""]],"OPERAND2":[3,"V_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"V^":{"opcode":"data_itemoflist","next":null,"parent":"em","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"V_":{"opcode":"operator_add","next":null,"parent":"em","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"en":{"opcode":"operator_gt","next":null,"parent":"i|","inputs":{"OPERAND1":[3,"V`",[10,""]],"OPERAND2":[3,"M:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"V`":{"opcode":"data_itemoflist","next":null,"parent":"en","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"M:":{"opcode":"operator_subtract","next":null,"parent":"en","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[3,"V{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V{":{"opcode":"operator_multiply","next":null,"parent":"M:","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i}":{"opcode":"control_repeat","next":"V|","parent":"a`","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"("]},"fields":{},"shadow":false,"topLevel":false},"(":{"opcode":"control_if_else","next":"V}","parent":"i}","inputs":{"CONDITION":[2,"V~"],"SUBSTACK":[2,"M;"],"SUBSTACK2":[2,"M="]},"fields":{},"shadow":false,"topLevel":false},"V~":{"opcode":"operator_equals","next":null,"parent":"(","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"M;":{"opcode":"data_addtolist","next":null,"parent":"(","inputs":{"ITEM":[3,"M?",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"M?":{"opcode":"operator_add","next":null,"parent":"M;","inputs":{"NUM1":[3,"Wa",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Wa":{"opcode":"data_itemoflist","next":null,"parent":"M?","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"M=":{"opcode":"data_addtolist","next":null,"parent":"(","inputs":{"ITEM":[3,"Wb",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Wb":{"opcode":"data_itemoflist","next":null,"parent":"M=","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"V}":{"opcode":"data_changevariableby","next":null,"parent":"(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"V|":{"opcode":"data_changevariableby","next":null,"parent":"i}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aqO":{"opcode":"data_changevariableby","next":null,"parent":"a`","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Qm":{"opcode":"procedures_call","next":"M@","parent":"a]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","warp":"true"}},"M@":{"opcode":"data_changevariableby","next":"Wc","parent":"Qm","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wc":{"opcode":"control_stop","next":null,"parent":"M@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqP":{"opcode":"operator_equals","next":null,"parent":"d=","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"i~":{"opcode":"control_wait_until","next":"eo","parent":"d=","inputs":{"CONDITION":[2,"ep"]},"fields":{},"shadow":false,"topLevel":false},"ep":{"opcode":"operator_gt","next":null,"parent":"i~","inputs":{"OPERAND1":[3,"Wd",[10,""]],"OPERAND2":[3,"We",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Wd":{"opcode":"sensing_dayssince2000","next":null,"parent":"ep","inputs":{},"fields":{},"shadow":false,"topLevel":false},"We":{"opcode":"operator_add","next":null,"parent":"ep","inputs":{"NUM1":[3,[12,"@lastframe","n;0UExIQMoO!Lz=!vPek"],[4,"0"]],"NUM2":[1,[4,"0.0000001938"]]},"fields":{},"shadow":false,"topLevel":false},"eo":{"opcode":"data_setvariableto","next":"M[","parent":"i~","inputs":{"VALUE":[3,"Wf",[10,""]]},"fields":{"VARIABLE":["@lastframe","n;0UExIQMoO!Lz=!vPek"]},"shadow":false,"topLevel":false},"Wf":{"opcode":"sensing_dayssince2000","next":null,"parent":"eo","inputs":{},"fields":{},"shadow":false,"topLevel":false},"M[":{"opcode":"data_changevariableby","next":"Wg","parent":"eo","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wg":{"opcode":"control_stop","next":null,"parent":"M[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aqQ":{"opcode":"operator_equals","next":null,"parent":"ch","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"Qp":{"opcode":"data_setvariableto","next":"a{","parent":"ch","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"a{":{"opcode":"control_if","next":"M]","parent":"Qp","inputs":{"CONDITION":[2,"Wh"],"SUBSTACK":[2,"Wi"]},"fields":{},"shadow":false,"topLevel":false},"Wh":{"opcode":"operator_equals","next":null,"parent":"a{","inputs":{"OPERAND1":[3,[12,"@nmi_enabled","2j/RBbii5O{|d#5d)@hc"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Wi":{"opcode":"data_setvariableto","next":null,"parent":"a{","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"M]":{"opcode":"data_changevariableby","next":"Wj","parent":"a{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wj":{"opcode":"control_stop","next":null,"parent":"M]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ci":{"opcode":"control_if","next":"eq","parent":"ch","inputs":{"CONDITION":[2,"Wk"],"SUBSTACK":[2,"M^"]},"fields":{},"shadow":false,"topLevel":false},"Wk":{"opcode":"operator_lt","next":null,"parent":"ci","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"M^":{"opcode":"data_changevariableby","next":"Wl","parent":"ci","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Wl":{"opcode":"control_stop","next":null,"parent":"M^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"eq":{"opcode":"control_if","next":null,"parent":"ci","inputs":{"CONDITION":[2,"Wm"],"SUBSTACK":[2,"M_"]},"fields":{},"shadow":false,"topLevel":false},"Wm":{"opcode":"operator_equals","next":null,"parent":"eq","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"M_":{"opcode":"data_changevariableby","next":"M`","parent":"eq","inputs":{"VALUE":[1,[4,"-262"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"M`":{"opcode":"data_setvariableto","next":"M{","parent":"M_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"M{":{"opcode":"data_setvariableto","next":"M|","parent":"M`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"]},"shadow":false,"topLevel":false},"M|":{"opcode":"data_setvariableto","next":"M}","parent":"M{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"M}":{"opcode":"data_setvariableto","next":"M~","parent":"M|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"M~":{"opcode":"data_changevariableby","next":"Na","parent":"M}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"Na":{"opcode":"data_deletealloflist","next":"Nb","parent":"M~","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Nb":{"opcode":"data_deletealloflist","next":"Wn","parent":"Na","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Wn":{"opcode":"control_stop","next":null,"parent":"Nb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axR":{"opcode":"operator_equals","next":null,"parent":"o]","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axS":{"opcode":"operator_equals","next":null,"parent":"o]","inputs":{"OPERAND1":[3,[12,"#sq0_swreload","elV@:}M3MreZKq22A%3?"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"axU":{"opcode":"operator_equals","next":null,"parent":"o^","inputs":{"OPERAND1":[3,[12,"#sq1_counter_halt","a7zy6G,GluFays4z,XP7"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axV":{"opcode":"operator_gt","next":null,"parent":"o^","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axY":{"opcode":"operator_equals","next":null,"parent":"o_","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axZ":{"opcode":"operator_equals","next":null,"parent":"o_","inputs":{"OPERAND1":[3,[12,"#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"axX":{"opcode":"operator_gt","next":null,"parent":"y_","inputs":{"OPERAND1":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Y`":{"opcode":"operator_not","next":null,"parent":"y^","inputs":{"OPERAND":[2,"jL"]},"fields":{},"shadow":false,"topLevel":false},"ax0":{"opcode":"operator_lt","next":null,"parent":"jL","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ax1":{"opcode":"operator_gt","next":null,"parent":"jL","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"ax3":{"opcode":"operator_equals","next":null,"parent":"o`","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax4":{"opcode":"operator_equals","next":null,"parent":"o`","inputs":{"OPERAND1":[3,[12,"#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax5":{"opcode":"operator_equals","next":null,"parent":"o{","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax6":{"opcode":"operator_gt","next":null,"parent":"o{","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax8":{"opcode":"operator_equals","next":null,"parent":"o|","inputs":{"OPERAND1":[3,[12,"#noise_counter_halt","d#{}}5.jeOzt/68f8/23"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax9":{"opcode":"operator_gt","next":null,"parent":"o|","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax7":{"opcode":"data_changevariableby","next":null,"parent":"y{","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"arX":{"opcode":"operator_multiply","next":null,"parent":"xx","inputs":{"NUM1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Qq":{"opcode":"operator_multiply","next":null,"parent":"xy","inputs":{"NUM1":[3,"Wo",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Wo":{"opcode":"operator_gt","next":null,"parent":"Qq","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qr":{"opcode":"operator_multiply","next":null,"parent":"xz","inputs":{"NUM1":[3,"Wp",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Wp":{"opcode":"operator_gt","next":null,"parent":"Qr","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qs":{"opcode":"operator_multiply","next":null,"parent":"xA","inputs":{"NUM1":[3,"Wq",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Wq":{"opcode":"operator_gt","next":null,"parent":"Qs","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qt":{"opcode":"operator_multiply","next":null,"parent":"xB","inputs":{"NUM1":[3,"Wr",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Wr":{"opcode":"operator_gt","next":null,"parent":"Qt","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arY":{"opcode":"operator_equals","next":null,"parent":"or","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Qu":{"opcode":"data_changevariableby","next":"Ws","parent":"or","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Ws":{"opcode":"data_setvariableto","next":null,"parent":"Qu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"Qv":{"opcode":"data_itemoflist","next":null,"parent":"os","inputs":{"INDEX":[3,"Wt",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"Wt":{"opcode":"operator_add","next":null,"parent":"Qv","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"er":{"opcode":"control_if","next":"cj","parent":"os","inputs":{"CONDITION":[2,"Wu"],"SUBSTACK":[2,"ot"]},"fields":{},"shadow":false,"topLevel":false},"Wu":{"opcode":"operator_equals","next":null,"parent":"er","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"Qw":{"opcode":"operator_mathop","next":null,"parent":"ot","inputs":{"NUM":[3,"Wv",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Wv":{"opcode":"operator_divide","next":null,"parent":"Qw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ar0":{"opcode":"operator_letter_of","next":null,"parent":"xC","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar1":{"opcode":"operator_letter_of","next":null,"parent":"xD","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar3":{"opcode":"operator_mod","next":null,"parent":"ou","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar2":{"opcode":"control_stop","next":null,"parent":"ou","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cj":{"opcode":"control_if","next":"ck","parent":"er","inputs":{"CONDITION":[2,"Ww"],"SUBSTACK":[2,"ov"]},"fields":{},"shadow":false,"topLevel":false},"Ww":{"opcode":"operator_equals","next":null,"parent":"cj","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16385"]]},"fields":{},"shadow":false,"topLevel":false},"Qx":{"opcode":"operator_add","next":null,"parent":"ov","inputs":{"NUM1":[3,"Wx",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Wx":{"opcode":"operator_gt","next":null,"parent":"Qx","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Qy":{"opcode":"operator_mod","next":null,"parent":"xE","inputs":{"NUM1":[3,"N)",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N)":{"opcode":"operator_mathop","next":null,"parent":"Qy","inputs":{"NUM":[3,"Wy",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Wy":{"opcode":"operator_divide","next":null,"parent":"N)","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Qz":{"opcode":"operator_add","next":null,"parent":"xF","inputs":{"NUM1":[3,"N*",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"N*":{"opcode":"operator_gt","next":null,"parent":"Qz","inputs":{"OPERAND1":[3,"Wz",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Wz":{"opcode":"operator_mod","next":null,"parent":"N*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar4":{"opcode":"operator_mod","next":null,"parent":"ow","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"QA":{"opcode":"data_setvariableto","next":"WA","parent":"ow","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"WA":{"opcode":"control_stop","next":null,"parent":"QA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ck":{"opcode":"control_if","next":"cl","parent":"cj","inputs":{"CONDITION":[2,"WB"],"SUBSTACK":[2,"jk"]},"fields":{},"shadow":false,"topLevel":false},"WB":{"opcode":"operator_equals","next":null,"parent":"ck","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16386"]]},"fields":{},"shadow":false,"topLevel":false},"QC":{"opcode":"operator_add","next":null,"parent":"jk","inputs":{"NUM1":[3,"N+",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N+":{"opcode":"operator_subtract","next":null,"parent":"QC","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[3,"WC",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WC":{"opcode":"operator_mod","next":null,"parent":"N+","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QB":{"opcode":"procedures_call","next":"WD","parent":"jk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"WD":{"opcode":"control_stop","next":null,"parent":"QB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cl":{"opcode":"control_if","next":"cm","parent":"ck","inputs":{"CONDITION":[2,"WE"],"SUBSTACK":[2,"ox"]},"fields":{},"shadow":false,"topLevel":false},"WE":{"opcode":"operator_equals","next":null,"parent":"cl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16387"]]},"fields":{},"shadow":false,"topLevel":false},"ar5":{"opcode":"operator_mod","next":null,"parent":"oy","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QD":{"opcode":"operator_multiply","next":null,"parent":"oy","inputs":{"NUM1":[3,"WF",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"WF":{"opcode":"operator_mod","next":null,"parent":"QD","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"cn":{"opcode":"control_if","next":"N,","parent":"ox","inputs":{"CONDITION":[2,"WG"],"SUBSTACK":[2,"N-"]},"fields":{},"shadow":false,"topLevel":false},"WG":{"opcode":"operator_equals","next":null,"parent":"cn","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N-":{"opcode":"data_setvariableto","next":null,"parent":"cn","inputs":{"VALUE":[3,"N.",[10,""]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"N.":{"opcode":"data_itemoflist","next":null,"parent":"N-","inputs":{"INDEX":[3,"N/",[7,"0"]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"N/":{"opcode":"operator_add","next":null,"parent":"N.","inputs":{"NUM1":[3,"N:",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N:":{"opcode":"operator_mathop","next":null,"parent":"N/","inputs":{"NUM":[3,"WH",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WH":{"opcode":"operator_divide","next":null,"parent":"N:","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N,":{"opcode":"data_setvariableto","next":"N;","parent":"cn","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_start","#Av;W`BG=vl=H0s()-!="]},"shadow":false,"topLevel":false},"N;":{"opcode":"procedures_call","next":"WI","parent":"N,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"WI":{"opcode":"control_stop","next":null,"parent":"N;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cm":{"opcode":"control_if","next":"co","parent":"cl","inputs":{"CONDITION":[2,"WJ"],"SUBSTACK":[2,"oz"]},"fields":{},"shadow":false,"topLevel":false},"WJ":{"opcode":"operator_equals","next":null,"parent":"cm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16388"]]},"fields":{},"shadow":false,"topLevel":false},"QE":{"opcode":"operator_mathop","next":null,"parent":"oz","inputs":{"NUM":[3,"WK",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WK":{"opcode":"operator_divide","next":null,"parent":"QE","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ar6":{"opcode":"operator_letter_of","next":null,"parent":"xG","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar7":{"opcode":"operator_letter_of","next":null,"parent":"xH","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar9":{"opcode":"operator_mod","next":null,"parent":"oA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar8":{"opcode":"control_stop","next":null,"parent":"oA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"co":{"opcode":"control_if","next":"cp","parent":"cm","inputs":{"CONDITION":[2,"WL"],"SUBSTACK":[2,"oB"]},"fields":{},"shadow":false,"topLevel":false},"WL":{"opcode":"operator_equals","next":null,"parent":"co","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16389"]]},"fields":{},"shadow":false,"topLevel":false},"QF":{"opcode":"operator_add","next":null,"parent":"oB","inputs":{"NUM1":[3,"WM",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"WM":{"opcode":"operator_gt","next":null,"parent":"QF","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"QG":{"opcode":"operator_mod","next":null,"parent":"xI","inputs":{"NUM1":[3,"N=",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N=":{"opcode":"operator_mathop","next":null,"parent":"QG","inputs":{"NUM":[3,"WN",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WN":{"opcode":"operator_divide","next":null,"parent":"N=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"QH":{"opcode":"operator_add","next":null,"parent":"xJ","inputs":{"NUM1":[3,"N?",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"N?":{"opcode":"operator_gt","next":null,"parent":"QH","inputs":{"OPERAND1":[3,"WO",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"WO":{"opcode":"operator_mod","next":null,"parent":"N?","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar!":{"opcode":"operator_mod","next":null,"parent":"oC","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"QI":{"opcode":"data_setvariableto","next":"WP","parent":"oC","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"WP":{"opcode":"control_stop","next":null,"parent":"QI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cp":{"opcode":"control_if","next":"cq","parent":"co","inputs":{"CONDITION":[2,"WQ"],"SUBSTACK":[2,"jl"]},"fields":{},"shadow":false,"topLevel":false},"WQ":{"opcode":"operator_equals","next":null,"parent":"cp","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16390"]]},"fields":{},"shadow":false,"topLevel":false},"QK":{"opcode":"operator_add","next":null,"parent":"jl","inputs":{"NUM1":[3,"N@",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N@":{"opcode":"operator_subtract","next":null,"parent":"QK","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[3,"WR",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WR":{"opcode":"operator_mod","next":null,"parent":"N@","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QJ":{"opcode":"procedures_call","next":"WS","parent":"jl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"WS":{"opcode":"control_stop","next":null,"parent":"QJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cq":{"opcode":"control_if","next":"cr","parent":"cp","inputs":{"CONDITION":[2,"WT"],"SUBSTACK":[2,"oD"]},"fields":{},"shadow":false,"topLevel":false},"WT":{"opcode":"operator_equals","next":null,"parent":"cq","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16391"]]},"fields":{},"shadow":false,"topLevel":false},"ar#":{"opcode":"operator_mod","next":null,"parent":"oE","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QL":{"opcode":"operator_multiply","next":null,"parent":"oE","inputs":{"NUM1":[3,"WU",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"WU":{"opcode":"operator_mod","next":null,"parent":"QL","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"cs":{"opcode":"control_if","next":"N[","parent":"oD","inputs":{"CONDITION":[2,"WV"],"SUBSTACK":[2,"N]"]},"fields":{},"shadow":false,"topLevel":false},"WV":{"opcode":"operator_equals","next":null,"parent":"cs","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N]":{"opcode":"data_setvariableto","next":null,"parent":"cs","inputs":{"VALUE":[3,"N^",[10,""]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"N^":{"opcode":"data_itemoflist","next":null,"parent":"N]","inputs":{"INDEX":[3,"N_",[7,"0"]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"N_":{"opcode":"operator_add","next":null,"parent":"N^","inputs":{"NUM1":[3,"N`",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N`":{"opcode":"operator_mathop","next":null,"parent":"N_","inputs":{"NUM":[3,"WW",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WW":{"opcode":"operator_divide","next":null,"parent":"N`","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N[":{"opcode":"data_setvariableto","next":"N{","parent":"cs","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_start","@4/+@;`xIa1GD6lDn;es"]},"shadow":false,"topLevel":false},"N{":{"opcode":"procedures_call","next":"WX","parent":"N[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"WX":{"opcode":"control_stop","next":null,"parent":"N{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cr":{"opcode":"control_if","next":"ct","parent":"cq","inputs":{"CONDITION":[2,"WY"],"SUBSTACK":[2,"oF"]},"fields":{},"shadow":false,"topLevel":false},"WY":{"opcode":"operator_equals","next":null,"parent":"cr","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16392"]]},"fields":{},"shadow":false,"topLevel":false},"QM":{"opcode":"operator_add","next":null,"parent":"oF","inputs":{"NUM1":[3,"WZ",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"WZ":{"opcode":"operator_gt","next":null,"parent":"QM","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"ar(":{"opcode":"operator_mod","next":null,"parent":"oG","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"ar%":{"opcode":"control_stop","next":null,"parent":"oG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ct":{"opcode":"control_if","next":"cu","parent":"cr","inputs":{"CONDITION":[2,"W0"],"SUBSTACK":[2,"jm"]},"fields":{},"shadow":false,"topLevel":false},"W0":{"opcode":"operator_equals","next":null,"parent":"ct","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16394"]]},"fields":{},"shadow":false,"topLevel":false},"QN":{"opcode":"operator_add","next":null,"parent":"jm","inputs":{"NUM1":[3,"N|",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N|":{"opcode":"operator_subtract","next":null,"parent":"QN","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[3,"W1",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W1":{"opcode":"operator_mod","next":null,"parent":"N|","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ar)":{"opcode":"control_stop","next":null,"parent":"jm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cu":{"opcode":"control_if","next":"cv","parent":"ct","inputs":{"CONDITION":[2,"W2"],"SUBSTACK":[2,"oH"]},"fields":{},"shadow":false,"topLevel":false},"W2":{"opcode":"operator_equals","next":null,"parent":"cu","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16395"]]},"fields":{},"shadow":false,"topLevel":false},"ar*":{"opcode":"operator_mod","next":null,"parent":"oI","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"QO":{"opcode":"operator_multiply","next":null,"parent":"oI","inputs":{"NUM1":[3,"W3",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"W3":{"opcode":"operator_mod","next":null,"parent":"QO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jn":{"opcode":"control_if","next":"N}","parent":"oH","inputs":{"CONDITION":[2,"W4"],"SUBSTACK":[2,"N~"]},"fields":{},"shadow":false,"topLevel":false},"W4":{"opcode":"operator_equals","next":null,"parent":"jn","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N~":{"opcode":"data_setvariableto","next":null,"parent":"jn","inputs":{"VALUE":[3,"Oa",[10,""]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"Oa":{"opcode":"data_itemoflist","next":null,"parent":"N~","inputs":{"INDEX":[3,"Ob",[7,"0"]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"Ob":{"opcode":"operator_add","next":null,"parent":"Oa","inputs":{"NUM1":[3,"Oc",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oc":{"opcode":"operator_mathop","next":null,"parent":"Ob","inputs":{"NUM":[3,"W5",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"W5":{"opcode":"operator_divide","next":null,"parent":"Oc","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"N}":{"opcode":"data_setvariableto","next":"W6","parent":"jn","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"W6":{"opcode":"control_stop","next":null,"parent":"N}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cv":{"opcode":"control_if","next":"jo","parent":"cu","inputs":{"CONDITION":[2,"W7"],"SUBSTACK":[2,"oJ"]},"fields":{},"shadow":false,"topLevel":false},"W7":{"opcode":"operator_equals","next":null,"parent":"cv","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16396"]]},"fields":{},"shadow":false,"topLevel":false},"ar+":{"opcode":"operator_letter_of","next":null,"parent":"oJ","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar,":{"opcode":"operator_letter_of","next":null,"parent":"xK","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ar.":{"opcode":"operator_mod","next":null,"parent":"oK","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar-":{"opcode":"control_stop","next":null,"parent":"oK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"jo":{"opcode":"control_if","next":"es","parent":"cv","inputs":{"CONDITION":[2,"W8"],"SUBSTACK":[2,"oL"]},"fields":{},"shadow":false,"topLevel":false},"W8":{"opcode":"operator_equals","next":null,"parent":"jo","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16398"]]},"fields":{},"shadow":false,"topLevel":false},"QP":{"opcode":"operator_add","next":null,"parent":"oL","inputs":{"NUM1":[3,"W9",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"W9":{"opcode":"operator_gt","next":null,"parent":"QP","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"ar:":{"opcode":"operator_mod","next":null,"parent":"oM","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar/":{"opcode":"control_stop","next":null,"parent":"oM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"es":{"opcode":"control_if","next":"cw","parent":"jo","inputs":{"CONDITION":[2,"W!"],"SUBSTACK":[2,"a|"]},"fields":{},"shadow":false,"topLevel":false},"W!":{"opcode":"operator_equals","next":null,"parent":"es","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16399"]]},"fields":{},"shadow":false,"topLevel":false},"a|":{"opcode":"control_if","next":"Od","parent":"es","inputs":{"CONDITION":[2,"W#"],"SUBSTACK":[2,"Oe"]},"fields":{},"shadow":false,"topLevel":false},"W#":{"opcode":"operator_equals","next":null,"parent":"a|","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oe":{"opcode":"data_setvariableto","next":null,"parent":"a|","inputs":{"VALUE":[3,"Of",[10,""]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"Of":{"opcode":"data_itemoflist","next":null,"parent":"Oe","inputs":{"INDEX":[3,"Og",[7,"0"]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"Og":{"opcode":"operator_add","next":null,"parent":"Of","inputs":{"NUM1":[3,"Oh",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oh":{"opcode":"operator_mathop","next":null,"parent":"Og","inputs":{"NUM":[3,"W%",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"W%":{"opcode":"operator_divide","next":null,"parent":"Oh","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Od":{"opcode":"data_setvariableto","next":"W(","parent":"a|","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#noise_start","wLUu:/;$@K16sJ?,vRSu"]},"shadow":false,"topLevel":false},"W(":{"opcode":"control_stop","next":null,"parent":"Od","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cw":{"opcode":"control_if","next":"et","parent":"es","inputs":{"CONDITION":[2,"W)"],"SUBSTACK":[2,"jp"]},"fields":{},"shadow":false,"topLevel":false},"W)":{"opcode":"operator_equals","next":null,"parent":"cw","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16400"]]},"fields":{},"shadow":false,"topLevel":false},"ar=":{"opcode":"operator_mod","next":null,"parent":"jp","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar;":{"opcode":"control_stop","next":null,"parent":"jp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"et":{"opcode":"control_if","next":"cx","parent":"cw","inputs":{"CONDITION":[2,"W*"],"SUBSTACK":[2,"W+"]},"fields":{},"shadow":false,"topLevel":false},"W*":{"opcode":"operator_equals","next":null,"parent":"et","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16401"]]},"fields":{},"shadow":false,"topLevel":false},"W+":{"opcode":"control_stop","next":null,"parent":"et","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cx":{"opcode":"control_if","next":"cy","parent":"et","inputs":{"CONDITION":[2,"W,"],"SUBSTACK":[2,"jq"]},"fields":{},"shadow":false,"topLevel":false},"W,":{"opcode":"operator_equals","next":null,"parent":"cx","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16402"]]},"fields":{},"shadow":false,"topLevel":false},"QQ":{"opcode":"operator_add","next":null,"parent":"jq","inputs":{"NUM1":[1,[4,"49152"]],"NUM2":[3,"W-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W-":{"opcode":"operator_multiply","next":null,"parent":"QQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ar?":{"opcode":"control_stop","next":null,"parent":"jq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cy":{"opcode":"control_if","next":"a}","parent":"cx","inputs":{"CONDITION":[2,"W."],"SUBSTACK":[2,"jr"]},"fields":{},"shadow":false,"topLevel":false},"W.":{"opcode":"operator_equals","next":null,"parent":"cy","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16403"]]},"fields":{},"shadow":false,"topLevel":false},"QR":{"opcode":"operator_add","next":null,"parent":"jr","inputs":{"NUM1":[3,"W/",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"W/":{"opcode":"operator_multiply","next":null,"parent":"QR","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ar@":{"opcode":"control_stop","next":null,"parent":"jr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a}":{"opcode":"control_if","next":"oN","parent":"cy","inputs":{"CONDITION":[2,"W:"],"SUBSTACK":[2,"oO"]},"fields":{},"shadow":false,"topLevel":false},"W:":{"opcode":"operator_equals","next":null,"parent":"a}","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"oO":{"opcode":"data_setvariableto","next":"js","parent":"a}","inputs":{"VALUE":[3,"W;",[10,""]]},"fields":{"VARIABLE":["#sq0_enabled","e..v2zd5D#2(~C2#;wE5"]},"shadow":false,"topLevel":false},"W;":{"opcode":"operator_letter_of","next":null,"parent":"oO","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"js":{"opcode":"data_setvariableto","next":"jt","parent":"oO","inputs":{"VALUE":[3,"W=",[10,""]]},"fields":{"VARIABLE":["#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"]},"shadow":false,"topLevel":false},"W=":{"opcode":"operator_letter_of","next":null,"parent":"js","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jt":{"opcode":"data_setvariableto","next":"ju","parent":"js","inputs":{"VALUE":[3,"W?",[10,""]]},"fields":{"VARIABLE":["#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"]},"shadow":false,"topLevel":false},"W?":{"opcode":"operator_letter_of","next":null,"parent":"jt","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ju":{"opcode":"data_setvariableto","next":"jv","parent":"jt","inputs":{"VALUE":[3,"W@",[10,""]]},"fields":{"VARIABLE":["#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"]},"shadow":false,"topLevel":false},"W@":{"opcode":"operator_letter_of","next":null,"parent":"ju","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jv":{"opcode":"data_setvariableto","next":"a~","parent":"ju","inputs":{"VALUE":[3,"W[",[10,""]]},"fields":{"VARIABLE":["#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"]},"shadow":false,"topLevel":false},"W[":{"opcode":"operator_letter_of","next":null,"parent":"jv","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~":{"opcode":"control_if","next":"ba","parent":"jv","inputs":{"CONDITION":[2,"W]"],"SUBSTACK":[2,"W^"]},"fields":{},"shadow":false,"topLevel":false},"W]":{"opcode":"operator_equals","next":null,"parent":"a~","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W^":{"opcode":"data_setvariableto","next":null,"parent":"a~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"ba":{"opcode":"control_if","next":"bb","parent":"a~","inputs":{"CONDITION":[2,"W_"],"SUBSTACK":[2,"W`"]},"fields":{},"shadow":false,"topLevel":false},"W_":{"opcode":"operator_equals","next":null,"parent":"ba","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W`":{"opcode":"data_setvariableto","next":null,"parent":"ba","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"bb":{"opcode":"control_if","next":"bc","parent":"ba","inputs":{"CONDITION":[2,"W{"],"SUBSTACK":[2,"W|"]},"fields":{},"shadow":false,"topLevel":false},"W{":{"opcode":"operator_equals","next":null,"parent":"bb","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W|":{"opcode":"data_setvariableto","next":null,"parent":"bb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"bc":{"opcode":"control_if","next":")","parent":"bb","inputs":{"CONDITION":[2,"W}"],"SUBSTACK":[2,"W~"]},"fields":{},"shadow":false,"topLevel":false},"W}":{"opcode":"operator_equals","next":null,"parent":"bc","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W~":{"opcode":"data_setvariableto","next":null,"parent":"bc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},")":{"opcode":"control_if_else","next":"Xa","parent":"bc","inputs":{"CONDITION":[2,"Xb"],"SUBSTACK":[2,"Xc"],"SUBSTACK2":[2,"Xd"]},"fields":{},"shadow":false,"topLevel":false},"Xb":{"opcode":"operator_equals","next":null,"parent":")","inputs":{"OPERAND1":[3,[12,"#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Xc":{"opcode":"event_broadcast","next":null,"parent":")","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_start","?5cnTm~BIOy)iiINw1|j"]]},"fields":{},"shadow":false,"topLevel":false},"Xd":{"opcode":"event_broadcast","next":null,"parent":")","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_stop","rKDIUs;/F{C6pMu5`JB^"]]},"fields":{},"shadow":false,"topLevel":false},"Xa":{"opcode":"control_stop","next":null,"parent":")","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oN":{"opcode":"control_if","next":null,"parent":"a}","inputs":{"CONDITION":[2,"Xe"],"SUBSTACK":[2,"Oi"]},"fields":{},"shadow":false,"topLevel":false},"Xe":{"opcode":"operator_equals","next":null,"parent":"oN","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"Oi":{"opcode":"data_setvariableto","next":"bd","parent":"oN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"bd":{"opcode":"control_if","next":"*","parent":"Oi","inputs":{"CONDITION":[2,"jw"],"SUBSTACK":[2,"Oj"]},"fields":{},"shadow":false,"topLevel":false},"jw":{"opcode":"operator_and","next":null,"parent":"bd","inputs":{"OPERAND1":[2,"Ok"],"OPERAND2":[2,"Xf"]},"fields":{},"shadow":false,"topLevel":false},"Ok":{"opcode":"operator_equals","next":null,"parent":"jw","inputs":{"OPERAND1":[3,"Xg",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Xg":{"opcode":"operator_letter_of","next":null,"parent":"Ok","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Xf":{"opcode":"operator_equals","next":null,"parent":"jw","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oj":{"opcode":"data_changevariableby","next":"Xh","parent":"bd","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Xh":{"opcode":"data_setvariableto","next":null,"parent":"Oj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"*":{"opcode":"control_if_else","next":"+","parent":"bd","inputs":{"CONDITION":[2,"Xi"],"SUBSTACK":[2,"Ol"],"SUBSTACK2":[2,"Xj"]},"fields":{},"shadow":false,"topLevel":false},"Xi":{"opcode":"operator_gt","next":null,"parent":"*","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Ol":{"opcode":"data_setvariableto","next":"Om","parent":"*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"Om":{"opcode":"procedures_call","next":"Xk","parent":"Ol","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"Xk":{"opcode":"procedures_call","next":null,"parent":"Om","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"Xj":{"opcode":"data_setvariableto","next":null,"parent":"*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"+":{"opcode":"control_if_else","next":"Xl","parent":"*","inputs":{"CONDITION":[2,"On"],"SUBSTACK":[2,"Xm"],"SUBSTACK2":[2,"Xn"]},"fields":{},"shadow":false,"topLevel":false},"On":{"opcode":"operator_gt","next":null,"parent":"+","inputs":{"OPERAND1":[3,"Xo",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"Xo":{"opcode":"operator_mod","next":null,"parent":"On","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Xm":{"opcode":"data_setvariableto","next":null,"parent":"+","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"Xn":{"opcode":"data_setvariableto","next":null,"parent":"+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"Xl":{"opcode":"control_stop","next":null,"parent":"+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b;":{"opcode":"procedures_definition","next":"b=","parent":null,"inputs":{"custom_block":[1,"p"]},"fields":{},"shadow":false,"topLevel":true,"x":1482,"y":283},"p":{"opcode":"procedures_prototype","next":null,"parent":"b;","inputs":{"l#x`$3Ii.R@[[Y-Y$7n3":[1,"o]"],"J|M%s%=WC@y1;p0_qTxp":[1,"o^"],"V861ZPJ%5|4o/-r{;98V":[1,"y^"],"~)@Xu22o%CdNtwp4oAZ;":[1,"y_"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render4px %s %s %s %s","argumentids":"[\"l#x`$3Ii.R@[[Y-Y$7n3\",\"J|M%s%=WC@y1;p0_qTxp\",\"V861ZPJ%5|4o/-r{;98V\",\"~)@Xu22o%CdNtwp4oAZ;\"]","argumentnames":"[\"x\",\"y\",\"s\",\"d\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"o]":{"opcode":"argument_reporter_string_number","next":null,"parent":"p","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"o^":{"opcode":"argument_reporter_string_number","next":null,"parent":"p","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"y^":{"opcode":"argument_reporter_string_number","next":null,"parent":"p","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"y_":{"opcode":"argument_reporter_string_number","next":null,"parent":"p","inputs":{},"fields":{"VALUE":["d",null]},"shadow":true,"topLevel":false},"b=":{"opcode":"pen_penUp","next":"bf","parent":"b;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bf":{"opcode":"motion_gotoxy","next":"k}","parent":"b=","inputs":{"X":[3,"o_",[4,"0"]],"Y":[3,"jL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o_":{"opcode":"argument_reporter_string_number","next":null,"parent":"bf","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"jL":{"opcode":"argument_reporter_string_number","next":null,"parent":"bf","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"k}":{"opcode":"pen_setPenSizeTo","next":"b?","parent":"bf","inputs":{"SIZE":[3,"o`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o`":{"opcode":"argument_reporter_string_number","next":null,"parent":"k}","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"b?":{"opcode":"data_setvariableto","next":"b@","parent":"k}","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["k","K{h~x6)DC:d*~Zu`CfAX"]},"shadow":false,"topLevel":false},"b@":{"opcode":"data_setvariableto","next":"b[","parent":"b?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","]/R0=fD8X3ukr[?)_:vL"]},"shadow":false,"topLevel":false},"b[":{"opcode":"data_setvariableto","next":"b]","parent":"b@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["j","J^e?eg%kT5zRj~Vb)VXI"]},"shadow":false,"topLevel":false},"b]":{"opcode":"control_repeat","next":null,"parent":"b[","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"lL"]},"fields":{},"shadow":false,"topLevel":false},"lL":{"opcode":"data_setvariableto","next":"cJ","parent":"b]","inputs":{"VALUE":[3,"y{",[10,""]]},"fields":{"VARIABLE":["k","K{h~x6)DC:d*~Zu`CfAX"]},"shadow":false,"topLevel":false},"y{":{"opcode":"operator_divide","next":null,"parent":"lL","inputs":{"NUM1":[3,[12,"k","K{h~x6)DC:d*~Zu`CfAX"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"cJ":{"opcode":"control_if","next":"b^","parent":"lL","inputs":{"CONDITION":[2,"b_"],"SUBSTACK":[2,"lM"]},"fields":{},"shadow":false,"topLevel":false},"b_":{"opcode":"operator_not","next":null,"parent":"cJ","inputs":{"OPERAND":[2,"c|"]},"fields":{},"shadow":false,"topLevel":false},"c|":{"opcode":"operator_equals","next":null,"parent":"b_","inputs":{"OPERAND1":[3,[12,"i","]/R0=fD8X3ukr[?)_:vL"],[10,""]],"OPERAND2":[3,"c}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"c}":{"opcode":"operator_mod","next":null,"parent":"c|","inputs":{"NUM1":[3,"c~",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"c~":{"opcode":"operator_mathop","next":null,"parent":"c}","inputs":{"NUM":[3,"dc",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dc":{"opcode":"operator_divide","next":null,"parent":"c~","inputs":{"NUM1":[3,"o{",[4,"0"]],"NUM2":[3,[12,"k","K{h~x6)DC:d*~Zu`CfAX"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o{":{"opcode":"argument_reporter_string_number","next":null,"parent":"dc","inputs":{},"fields":{"VALUE":["d",null]},"shadow":false,"topLevel":false},"lM":{"opcode":"data_setvariableto","next":"o|","parent":"cJ","inputs":{"VALUE":[3,"xx",[10,""]]},"fields":{"VARIABLE":["j2","OF2DV+zKpqx9z3vPfGKN"]},"shadow":false,"topLevel":false},"xx":{"opcode":"operator_subtract","next":null,"parent":"lM","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"j2","OF2DV+zKpqx9z3vPfGKN"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o|":{"opcode":"procedures_call","next":null,"parent":"lM","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"px","argumentids":"[]","warp":"true"}},"b^":{"opcode":"motion_changexby","next":null,"parent":"cJ","inputs":{"DX":[3,"xy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xy":{"opcode":"argument_reporter_string_number","next":null,"parent":"b^","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"os":{"opcode":"data_changevariableby","next":null,"parent":"a","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["m","8#GN`Bn0{e?U=[@Rvm;~"]},"shadow":false,"topLevel":false},"b{":{"opcode":"operator_multiply","next":null,"parent":"R6","inputs":{"NUM1":[3,"b|",[4,"0"]],"NUM2":[1,[4,"14"]]},"fields":{},"shadow":false,"topLevel":false},"b|":{"opcode":"operator_subtract","next":null,"parent":"b{","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[3,"a[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[":{"opcode":"operator_divide","next":null,"parent":"b|","inputs":{"NUM1":[3,"oA",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oA":{"opcode":"data_lengthoflist","next":null,"parent":"a[","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"dx":{"opcode":"data_itemoflist","next":null,"parent":"R6","inputs":{"INDEX":[3,"oB",[7,"0"]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"oB":{"opcode":"operator_add","next":null,"parent":"dx","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"b}":{"opcode":"pen_setPenColorToColor","next":"dy","parent":"xI","inputs":{"COLOR":[1,[9,"#65ffce"]]},"fields":{},"shadow":false,"topLevel":false},"dy":{"opcode":"procedures_call","next":"xJ","parent":"b}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","warp":"true"}},"xJ":{"opcode":"procedures_call","next":null,"parent":"dy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","warp":"true"}},"dC":{"opcode":"control_forever","next":null,"parent":"b~","inputs":{"SUBSTACK":[2,"jl"]},"fields":{},"shadow":false,"topLevel":false},"jl":{"opcode":"procedures_call","next":null,"parent":"dC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"c","argumentids":"[]","warp":"true"}},"dF":{"opcode":"pen_setPenColorToColor","next":"dG","parent":"ca","inputs":{"COLOR":[1,[9,"#346856"]]},"fields":{},"shadow":false,"topLevel":false},"dG":{"opcode":"pen_setPenSizeTo","next":"cb","parent":"dF","inputs":{"SIZE":[1,[4,"66"]]},"fields":{},"shadow":false,"topLevel":false},"cb":{"opcode":"motion_gotoxy","next":"dI","parent":"dG","inputs":{"X":[1,[4,"-240"]],"Y":[1,[4,"-180"]]},"fields":{},"shadow":false,"topLevel":false},"dI":{"opcode":"pen_penDown","next":"dJ","parent":"cb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"dJ":{"opcode":"motion_changexby","next":"cc","parent":"dI","inputs":{"DX":[1,[4,"1111"]]},"fields":{},"shadow":false,"topLevel":false},"cc":{"opcode":"pen_penUp","next":"dL","parent":"dJ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"dL":{"opcode":"data_setvariableto","next":"dM","parent":"cc","inputs":{"VALUE":[1,[10,"-226"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false},"dM":{"opcode":"pen_setPenColorToColor","next":"cd","parent":"dL","inputs":{"COLOR":[1,[9,"#61f8c9"]]},"fields":{},"shadow":false,"topLevel":false},"cd":{"opcode":"data_setvariableto","next":"2q","parent":"dM","inputs":{"VALUE":[1,[10,"100"]]},"fields":{"VARIABLE":["z","|ke}j~q$D+WWLo05@rUl"]},"shadow":false,"topLevel":false},"d:":{"opcode":"sensing_of","next":null,"parent":"2q","inputs":{"OBJECT":[1,"jq"]},"fields":{"PROPERTY":["FPS",null]},"shadow":false,"topLevel":false},"jq":{"opcode":"sensing_of_object_menu","next":null,"parent":"d:","inputs":{},"fields":{"OBJECT":["Game Boy",null]},"shadow":true,"topLevel":false},"d/":{"opcode":"procedures_call","next":"ce","parent":"2q","inputs":{"rP}-AE-Ca~:%Qi+nQcp9":[3,[12,"v","xM[|Vl:5_:MuhN:9WJ%-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fc %s","argumentids":"[\"rP}-AE-Ca~:%Qi+nQcp9\"]","warp":"false"}},"ce":{"opcode":"procedures_call","next":"2r","parent":"d/","inputs":{";3-J_653j%8j7mnxn*QG":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","warp":"true"}},"oH":{"opcode":"operator_subtract","next":null,"parent":"2r","inputs":{"NUM1":[3,[12,"x","RBD.T_tlTqDvriQZH:[N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"cg":{"opcode":"data_changevariableby","next":"oI","parent":"2r","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false},"oI":{"opcode":"procedures_call","next":null,"parent":"cg","inputs":{";3-J_653j%8j7mnxn*QG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","warp":"true"}},"i?":{"opcode":"procedures_definition","next":"2t","parent":null,"inputs":{"custom_block":[1,"ch"]},"fields":{},"shadow":false,"topLevel":true,"x":3152,"y":966},"ch":{"opcode":"procedures_prototype","next":null,"parent":"i?","inputs":{";3-J_653j%8j7mnxn*QG":[1,"jr"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"jr":{"opcode":"argument_reporter_string_number","next":null,"parent":"ch","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"oE":{"opcode":"argument_reporter_string_number","next":null,"parent":"2t","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"i@":{"opcode":"operator_add","next":null,"parent":"2s","inputs":{"NUM1":[3,"cf",[4,"0"]],"NUM2":[1,[4,"48"]]},"fields":{},"shadow":false,"topLevel":false},"cf":{"opcode":"operator_mod","next":null,"parent":"i@","inputs":{"NUM1":[3,"d=",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"d=":{"opcode":"operator_mathop","next":null,"parent":"cf","inputs":{"NUM":[3,"oF",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"oF":{"opcode":"operator_divide","next":null,"parent":"d=","inputs":{"NUM1":[3,[12,"v","xM[|Vl:5_:MuhN:9WJ%-"],[4,"0"]],"NUM2":[3,[12,"z","|ke}j~q$D+WWLo05@rUl"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"jm":{"opcode":"operator_divide","next":null,"parent":"2u","inputs":{"NUM1":[3,[12,"z","|ke}j~q$D+WWLo05@rUl"],[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"oG":{"opcode":"data_changevariableby","next":null,"parent":"2u","inputs":{"VALUE":[1,[4,"14"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"14e46ec3e2ba471c2adfe8f119052307","md5ext":"14e46ec3e2ba471c2adfe8f119052307.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":25,"visible":false,"x":5,"y":63,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"}],"monitors":[{"id":"`jEk@4|i[#Fk?(8x)AV.-my variable","mode":"default","opcode":"data_variable","params":{"VARIABLE":"my variable"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"BE)e;?PnrdmTcO@x9]LQ","mode":"default","opcode":"data_variable","params":{"VARIABLE":"MenuScroll"},"spriteName":null,"value":0,"width":0,"height":0,"x":4,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"_FiygW_%~W7KsK!n$5T{","mode":"default","opcode":"data_variable","params":{"VARIABLE":"S"},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"mLiY::;)lv|cNt1?Woo3","mode":"list","opcode":"data_listcontents","params":{"LIST":"_rom"},"spriteName":null,"value":[],"width":138,"height":261,"x":178,"y":69,"visible":false},{"id":"M1MRH6V)bg-6jD{ugH=J","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Input"},"spriteName":"screen render2","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"8Tw(LA8~j_|@CGcGVjif","mode":"list","opcode":"data_listcontents","params":{"LIST":"MainHello"},"spriteName":null,"value":[],"width":476,"height":276,"x":0,"y":0,"visible":false},{"id":"/y%V|a=uht4rVd|2*2+a","mode":"default","opcode":"data_variable","params":{"VARIABLE":"DSmode"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":":zUJFFvJ!Vekh7t/nbIN","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.keyboard"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"timer","mode":"default","opcode":"sensing_timer","params":{},"spriteName":null,"value":0,"width":0,"height":0,"x":1,"y":58,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"f]{gYPSu$N}zEo@G9Nl)","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.registers"},"spriteName":"Chip-8","value":[],"width":100,"height":313,"x":378,"y":0,"visible":false},{"id":"}Q8yT0K~Xs{VX;CHfNu/","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.memory"},"spriteName":"Chip-8","value":[],"width":181,"height":246,"x":211,"y":0,"visible":false},{"id":"lUL@WhXBzID`Z-mCVTrh","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.stack"},"spriteName":"Chip-8","value":[],"width":121,"height":199,"x":0,"y":0,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-controller 1 state-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"Mobile Keypad state"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"o9uHH*42(Vb;iI,jwYr2","mode":"list","opcode":"data_listcontents","params":{"LIST":"Menu Theme"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"ht3J,j/C0jl,uH8K:dNy","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":0,"y":113,"visible":false},{"id":"uAm4?3ed1Q#FT#;rW,cx","mode":"large","opcode":"data_variable","params":{"VARIABLE":"c8.Load/Save_Quirk"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":353,"y":238,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"gv+85XB+B[w?)D8r_?)C","mode":"large","opcode":"data_variable","params":{"VARIABLE":"c8.Shift_quirk"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":345,"y":330,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"g/7`YLSnP29ZzyQeb?9I","mode":"slider","opcode":"data_variable","params":{"VARIABLE":"CPF"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":0,"y":226,"visible":false,"sliderMin":0,"sliderMax":120,"isDiscrete":true},{"id":"%F0~QLFTP1H{Enp:A]($","mode":"list","opcode":"data_listcontents","params":{"LIST":"schip8.font"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":42,"visible":false},{"id":"Wi^qSRY3?saxL.IB^T(P","mode":"large","opcode":"data_variable","params":{"VARIABLE":"rom.title"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":201,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"S9{m^Yi?3a7,6K!sHQ@t","mode":"list","opcode":"data_listcontents","params":{"LIST":"schip8.RPL"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":44,"visible":false},{"id":",2huTPQKyTdw0uS0Mmql","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.screenheight"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"/l6Z{skQaA(kN25K`~uO","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.screenwidth"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"D#tUdeeQG3WU9xi$i5/|","mode":"slider","opcode":"data_variable","params":{"VARIABLE":"c8scrnsize"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":308,"y":0,"visible":false,"sliderMin":1,"sliderMax":2,"isDiscrete":true},{"id":"`/97r]y4N7pab+0j,(B.","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy3"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"9:A|TG(!dzYn0uv=D1h3","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy4"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"YiRV7D4$v56yf}?X(y.j","mode":"large","opcode":"data_variable","params":{"VARIABLE":"VIP jumps"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":352,"y":285,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"r(t;~7h#1V?m.J:,GVQv","mode":"large","opcode":"data_variable","params":{"VARIABLE":"SF2091! fix"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":423,"y":329,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"c;0;9@3O4n4FloYvD_w?","mode":"list","opcode":"data_listcontents","params":{"LIST":"OAM"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"AY0ltbJCCbW!P`l`UfON","mode":"list","opcode":"data_listcontents","params":{"LIST":"_pixels"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"I63N$8?MbeN%*VS^[e`a","mode":"list","opcode":"data_listcontents","params":{"LIST":"_memory"},"spriteName":null,"value":[],"width":100,"height":240,"x":378,"y":0,"visible":false},{"id":"T2#e%~#VNwXFGzGd*kbV","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawplane"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":260,"y":47,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"kvRL~`O/o863)hyq|o,_","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawflag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Ozk0Rvi.XHG+tKh4frbx","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen2"},"spriteName":"Chip-8","value":[],"width":439,"height":298,"x":5,"y":43,"visible":false},{"id":"{0m^r8XB06mP:WDHBc!.","mode":"list","opcode":"data_listcontents","params":{"LIST":"display.screen"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"oW{#?FHT;/hE!l+8(A64","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.starting address"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"N4R6^~5?6]M$8p]M}$(Z","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.HPSFlag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Zm~RHQxf]yUfdH)gtna.","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.pc"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":420,"y":286,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"r9s^NIq`=C8N*q$N:QjC","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.I"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":97,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"od4rT?;Bw52y-r9gIuW2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_ROM"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"j^@d4kzPlrC*r`=~=ag9","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.drawmode"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":23,"y":288,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"DO@o4r%E;$$f$zC!7%Qb","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.CompatMode"},"spriteName":null,"value":0,"width":0,"height":0,"x":19,"y":335,"visible":false,"sliderMin":0,"sliderMax":2,"isDiscrete":true},{"id":"TpKJz2LxQD8g%5l=GF^w","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.pitch"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"]qC)w3}-oa/}ILT-dNb=","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Inemu?"},"spriteName":null,"value":0,"width":0,"height":0,"x":132,"y":47,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-temp-","mode":"large","opcode":"data_variable","params":{"VARIABLE":"GUItemp"},"spriteName":null,"value":0,"width":0,"height":0,"x":170,"y":169,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"~kMyjD5[oxb%25@;,!jb","mode":"default","opcode":"data_variable","params":{"VARIABLE":"A"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":212,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"BIIaeU[k,+7^!J2afXkT","mode":"list","opcode":"data_listcontents","params":{"LIST":"VRAM"},"spriteName":null,"value":[],"width":0,"height":0,"x":205,"y":5,"visible":false},{"id":"h54u;;|rg#N(]Z,#OrZM","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.audio_buffer"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":212,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"g}B8%m81]u[qI`b#U@N$","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy5"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-S-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"S2"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ADJlW=I)6p}6xuy9|I*R","mode":"default","opcode":"data_variable","params":{"VARIABLE":"pixel"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-PC-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"PC"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"26y~e9uZ-)1V@_#QCbz=","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Accumulator"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"6)MJ1%:{yyW@[$pAU+RW","mode":"default","opcode":"data_variable","params":{"VARIABLE":"arm7.cycles"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"g28e.W~Kp`M%wes)3?Gr","mode":"default","opcode":"data_variable","params":{"VARIABLE":"clock.m"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"uEtD!M_zC8*GB%@71_@h","mode":"default","opcode":"data_variable","params":{"VARIABLE":"options.vertical_screens"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"S{03QX|)N}3Qs.R+iMd5","mode":"default","opcode":"data_variable","params":{"VARIABLE":"reg.pc"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2|8uqLL4Dl//c4+.iA2j","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Theme Switch Flag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-offset-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"offset"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"y{p*4ZiX`*YO.A*AWy9y_xposition","mode":"default","opcode":"motion_xposition","params":{},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"y{p*4ZiX`*YO.A*AWy9y_yposition","mode":"default","opcode":"motion_yposition","params":{},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":70,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-AND-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"AND"},"spriteName":null,"value":[],"width":0,"height":0,"x":349,"y":128,"visible":false},{"id":"Fp2OyYdk}?8Nbn$hfEg`","mode":"list","opcode":"data_listcontents","params":{"LIST":"ROM"},"spriteName":null,"value":[],"width":0,"height":0,"x":10,"y":13,"visible":false},{"id":"Ok6b#fye79@mqZ]dIPt5","mode":"list","opcode":"data_listcontents","params":{"LIST":"vol"},"spriteName":null,"value":[],"width":214,"height":174,"x":5,"y":5,"visible":false},{"id":"g|w%1=[YgXkc0z(63t|f","mode":"list","opcode":"data_listcontents","params":{"LIST":"volume"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"UrPQMZ+enGUmzM`fAi$,","mode":"list","opcode":"data_listcontents","params":{"LIST":"voice"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-temp.1-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"temp.1"},"spriteName":null,"value":[],"width":0,"height":0,"x":378,"y":0,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-temp.0-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"temp.0"},"spriteName":null,"value":[],"width":135,"height":194,"x":237,"y":0,"visible":false},{"id":"*cu$N5#KACc@_m}ZOQx7","mode":"large","opcode":"data_variable","params":{"VARIABLE":"rom.designation"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"jHyV3Vm:Q@rIq$YA]IYG","mode":"default","opcode":"data_variable","params":{"VARIABLE":"flags.c"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"rSU1^x`,g=a?Z@^[xY+T","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory5"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"E)Xr`w!wLD[:xYMS;Sc^","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.audiobuffer"},"spriteName":null,"value":[],"width":127,"height":223,"x":0,"y":0,"visible":false},{"id":"xMDma1Q3J!y1yjTBt7(F","mode":"list","opcode":"data_listcontents","params":{"LIST":"pitches"},"spriteName":null,"value":[],"width":0,"height":0,"x":283,"y":14,"visible":false},{"id":"*df.:JNR*^GpTa_k=NdQ","mode":"list","opcode":"data_listcontents","params":{"LIST":"wave"},"spriteName":null,"value":[],"width":120,"height":252,"x":358,"y":7,"visible":false},{"id":"1(hsS=.HEnKV_~]$(r+5","mode":"default","opcode":"data_variable","params":{"VARIABLE":"pitch"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":33,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"(ecE`kfJLzw4p#})J_i9","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_pitch"},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-FT.im-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"FT.im"},"spriteName":null,"value":[],"width":0,"height":0,"x":0,"y":202,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-FT.re-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"FT.re"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"xX^EAt/9xIPmtV^FzOj1","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.audio toggle"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":417,"y":280,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|wrT},$[.z]EPbXVhvr[","mode":"list","opcode":"data_listcontents","params":{"LIST":"_colours"},"spriteName":null,"value":[],"width":199,"height":205,"x":279,"y":0,"visible":false},{"id":"AYN*TU~SGNlQh:~mri07","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.sound_timer"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":";V{Hj,Otjvdvg.T^fBD-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawvariety"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"3`C#KsI[WM=%ZSxuHQ!~","mode":"list","opcode":"data_listcontents","params":{"LIST":"mappers"},"spriteName":"Import ROM","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"2qm7j|WZgQAFvgiJG^Rn","mode":"list","opcode":"data_listcontents","params":{"LIST":"prg_rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":115,"y":11,"visible":false},{"id":"#2t_c630N5NI?I=l]FZ]","mode":"list","opcode":"data_listcontents","params":{"LIST":"load"},"spriteName":"Import ROM","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"28|ndmww*C9:h(p(1Xha","mode":"list","opcode":"data_listcontents","params":{"LIST":"prg_banks"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"dkAVj{sdjrdbPacRA(Ya","mode":"list","opcode":"data_listcontents","params":{"LIST":"bin_table"},"spriteName":null,"value":[],"width":285,"height":240,"x":2,"y":0,"visible":false},{"id":"?y(KCJo)9i,S7J!}tsTu","mode":"list","opcode":"data_listcontents","params":{"LIST":"nt_map"},"spriteName":null,"value":[],"width":0,"height":0,"x":92,"y":0,"visible":false},{"id":"!-);EWw5je`a}{IyVf4v","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.NES"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"T*Lc1tcF[lxG@/W!jiQ0","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Frameskip"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":212,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Nacx{A2WY%QGLX/QgF]N","mode":"default","opcode":"data_variable","params":{"VARIABLE":"import.char"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"-7dlmlcLCpV7tl8DS7P}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"i"},"spriteName":"BytePusher","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"H0q(Yr;S8emYQ`u=.co}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"battery"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"3lt5rd5NtHtm.gOc6_3L","mode":"large","opcode":"data_variable","params":{"VARIABLE":"import.status"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":137,"y":195,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2sZ~|=Tg1SFq.9?bA!CG","mode":"default","opcode":"data_variable","params":{"VARIABLE":"data"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"D*/(a|uRL{vFdIeuWJq}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"display.scan_y"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"KV8P%[L0$@Pl6*2;0j}2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"read.return"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"G(YRd^aUK_k)d~bJ8S@h","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.audioflag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"lo_vMT]e;W^6J}L{.;?|","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Velocity"},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":",]Ekn%BbyH4amZqz=+Ar_size","mode":"default","opcode":"looks_size","params":{},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"iQF=oI}+|V%s*{,h}nm{","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":":S.^^KK:vu#%(*yMlfJO","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.memory6"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":212,"visible":false},{"id":"ii:l6Cz,EQ(zK,4|YH9R","mode":"list","opcode":"data_listcontents","params":{"LIST":"Boot-128"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"4M*03Ap*{iT39zNp]4vF","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Romimportflag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"khZ[BR^hh5g2wVjstNx~","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.spritewidth"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"N`et#hF/mNUQ?WM0|0ij","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.spriteheight"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"^R[WOHQM-#~uf#]*`Mv3","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"pulse1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"n4Vk.4K3+)e4)7]IZXt*","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"triangle","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"5Vd}?h-0(QjqLpwAS(EX","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"noise","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":";Xw{G@Fj6{52PEY#;]UT","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"pulse0","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ZU1H]fgUo{pr?8j#775;","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Enable APU"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2YEF=*pQ`ymj}xOTf{?k","mode":"default","opcode":"data_variable","params":{"VARIABLE":"mapper"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":",41reDUn/;X!Ns7I!@{C","mode":"list","opcode":"data_listcontents","params":{"LIST":"chr_rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-Palette-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"Palette"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"q0Aieeo)Q0k-81exFUOK","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8m.collisioncolor"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"jJsF,.RD8,2t*cl*n?p6","mode":"list","opcode":"data_listcontents","params":{"LIST":"PAKROM"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"a,K{HPy[l|6bp/FIJ0WV","mode":"list","opcode":"data_listcontents","params":{"LIST":"logtemp"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"!M?/`s.Bs8q0RAQblZa9","mode":"list","opcode":"data_listcontents","params":{"LIST":"logzz"},"spriteName":null,"value":[],"width":266,"height":360,"x":108,"y":0,"visible":false},{"id":"#yxQVD.W=QA4e-TaHe-w","mode":"list","opcode":"data_listcontents","params":{"LIST":"_gametitle"},"spriteName":null,"value":[],"width":0,"height":0,"x":46,"y":0,"visible":false},{"id":"Jz!(reWdKcB6wz9(@ZOs","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8m.samplerate"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"{uxN85FR2v428H5s1TII","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8m.PCM"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"CMsw9:_o?,7RSBGR-L2C","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.fx0aflag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"i!Gu6~8n7Kk|ypDR{}Pb","mode":"default","opcode":"data_variable","params":{"VARIABLE":"stage width"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"kb{abR#{v#9?Q9G51V95","mode":"default","opcode":"data_variable","params":{"VARIABLE":".RLE segments"},"spriteName":null,"value":0,"width":0,"height":0,"x":35,"y":35,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.1-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.1"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|Wne6DL=-zq^m9{2r`hA","mode":"default","opcode":"data_variable","params":{"VARIABLE":"q"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.0-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.0"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|nN~_d-i:[PsQWv[3,w4_volume","mode":"default","opcode":"sound_volume","params":{},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":155,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"KciKQ4B%I^{Ge#cm.(%/","mode":"list","opcode":"data_listcontents","params":{"LIST":"_scanline"},"spriteName":null,"value":[],"width":0,"height":0,"x":105,"y":5,"visible":false},{"id":"9_eB!Y3}VuUy)u[LEDQh","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory6"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":";%5/]?BxpeXK6De;T-%,","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory1"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"]?ktZ5{ATqh5n-y_rI;)","mode":"list","opcode":"data_listcontents","params":{"LIST":"gui"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"y8$TZGjr(vK|SME``+kg","mode":"list","opcode":"data_listcontents","params":{"LIST":"vram.lcdc"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"q~]_[iVvJ`d|+?RSqc^Y","mode":"list","opcode":"data_listcontents","params":{"LIST":"_DMGCOLORS"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"Au!*6~mqLy!.|jpv|6f!","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_SP"},"spriteName":null,"value":0,"width":0,"height":0,"x":101,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"E$.ShehU4wuDtCF}{|rY","mode":"list","opcode":"data_listcontents","params":{"LIST":"_registers"},"spriteName":null,"value":[],"width":100,"height":260,"x":0,"y":32,"visible":false},{"id":"KoqBef(DQ*bEZsT@-v`L","mode":"list","opcode":"data_listcontents","params":{"LIST":"flag_names"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"JcH|Bk6g8yO74n|tWOIG","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.blendmode"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ZB/w=2p^tT17{[.^{4lN","mode":"list","opcode":"data_listcontents","params":{"LIST":"_r"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"EesKz%n[:9y6^o:vvoD_","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.chip8"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"eF-[:^d06FtrxjRyaneE","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.return"},"spriteName":"Sprite1","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"zbJieX,I^/*TuxDYgB2.","mode":"default","opcode":"data_variable","params":{"VARIABLE":"wram_size"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"%XjU5(A-f?.:2f)2OCXj","mode":"default","opcode":"data_variable","params":{"VARIABLE":"wram_enabled"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"5D)3w-mP8HqcU~;jGYPw","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.GB"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"[t[1fR}eq!?#HcGC2#-V","mode":"list","opcode":"data_listcontents","params":{"LIST":"c"},"spriteName":"BytePusher","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"u{Z6Yo:g|j(7O+@6yd=b","mode":"list","opcode":"data_listcontents","params":{"LIST":"and_table"},"spriteName":null,"value":[],"width":0,"height":0,"x":74,"y":0,"visible":false},{"id":"yYeY/%}@PaP{fMkLU1ve","mode":"list","opcode":"data_listcontents","params":{"LIST":"xor_table"},"spriteName":null,"value":[],"width":139,"height":243,"x":159,"y":72,"visible":false},{"id":"Lwfvqs]/^buKKht}YcaC","mode":"list","opcode":"data_listcontents","params":{"LIST":"or_table"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"lWF?u*+y?xh}I(}~K.X2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"coolnes_regenerate"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ln{MS#PL`8.}h:(_}UB]","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_id"},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"%0@eg_iM4%`6o1lYsAwI","mode":"list","opcode":"data_listcontents","params":{"LIST":"pixel_buffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":105,"y":5,"visible":false},{"id":"*6ctRg,UST)3?h^IgrxZ","mode":"list","opcode":"data_listcontents","params":{"LIST":"oam"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"}^!zcd7*?=frof;O)@)i","mode":"default","opcode":"data_variable","params":{"VARIABLE":"x"},"spriteName":"DS Screens","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Cs^]Xb{z|}3IPS([*+Id","mode":"default","opcode":"data_variable","params":{"VARIABLE":"y"},"spriteName":"DS Screens","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.2-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.2"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":")yF+1`NW6;S!1GicT2N]","mode":"list","opcode":"data_listcontents","params":{"LIST":"_flags"},"spriteName":"SI8080","value":[],"width":100,"height":117,"x":378,"y":241,"visible":false},{"id":":p`%H4!;G.]W;6lcwPAB","mode":"default","opcode":"data_variable","params":{"VARIABLE":"__SIZE"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Sx;#S`yw8}4Z[VDB*X~[","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.cycles"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":93,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Wdv|s)sKi5w2g!ptBTWv","mode":"list","opcode":"data_listcontents","params":{"LIST":"CARTRAM"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"w=hd1PshEda%bO|xM^6q","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_PC"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"mZ)9?(KkB8T|Agp7]MZ9","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.readreturn"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":155,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"m]ROHZvewvW*HDY)ha@)","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.mode"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"j+^-/^#ziTd]J%3izp|U","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.InterruptFlag"},"spriteName":null,"value":0,"width":0,"height":0,"x":209,"y":0,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"g1X0d%+|q`l:YKb?Jj_I","mode":"list","opcode":"data_listcontents","params":{"LIST":"dat"},"spriteName":"font","value":[],"width":155,"height":226,"x":5,"y":5,"visible":false},{"id":"kAMTG-A{dB6Z1S4,`$2$","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_FPS"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"d9/@u6`9MK4Cba;GI38K","mode":"default","opcode":"data_variable","params":{"VARIABLE":"__YSHIFT"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"F_}DPF^fI%3NP^P]}FKY","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_HALT"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":",(xt46oqz;F}4Roa*4l1","mode":"list","opcode":"data_listcontents","params":{"LIST":"_waveBuffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"ki7qXD%gNvvUz@OLl,$4","mode":"list","opcode":"data_listcontents","params":{"LIST":"_waveBuffer2"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"JZ0nOH#MsoLAasA7xYd+","mode":"list","opcode":"data_listcontents","params":{"LIST":".HEX"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"GH;evIT.P{UuSVtHs:`*","mode":"list","opcode":"data_listcontents","params":{"LIST":"*graphicsBuffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"(M5DY~$!E(Xt6VWlGk_1","mode":"list","opcode":"data_listcontents","params":{"LIST":"+AUDIO ENGINE pan"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"Z#J.8^J=g($xQr6Bd]q;","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.wireless.state_1"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"v]0UUq`G]chfwu4/UQ~q","mode":"list","opcode":"data_listcontents","params":{"LIST":"apu"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":41,"visible":false},{"id":"#_[CK=fABC,PAZ_,6!9!","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.flags"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":41,"visible":false},{"id":"pXkI+kwkMT/GFMgtL=VH","mode":"default","opcode":"data_variable","params":{"VARIABLE":"display.scan_x"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"RBD.T_tlTqDvriQZH:[N","mode":"default","opcode":"data_variable","params":{"VARIABLE":"x"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|ke}j~q$D+WWLo05@rUl","mode":"default","opcode":"data_variable","params":{"VARIABLE":"z"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"=Nnh8d@ok|B?)Hea*-9a","mode":"list","opcode":"data_listcontents","params":{"LIST":"8080.Terminal"},"spriteName":null,"value":[],"width":0,"height":0,"x":281,"y":30,"visible":false},{"id":"Ylpv#yntx`3MMU(uD;7(","mode":"default","opcode":"data_variable","params":{"VARIABLE":"y"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"?]mws|{Gz19yl|:g,]z(","mode":"default","opcode":"data_variable","params":{"VARIABLE":"clock.t"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"xYpkP=%}3N3fIXniRLxO","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.SI8080"},"spriteName":null,"value":[],"width":100,"height":278,"x":0,"y":5,"visible":false},{"id":"M}(6FQ$ph-O-oCmv%Unj","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.shift register offset"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-hex-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"hex"},"spriteName":null,"value":[],"width":0,"height":0,"x":196,"y":202,"visible":false},{"id":"@Mu*IPvEI${W#Lm!SQml","mode":"list","opcode":"data_listcontents","params":{"LIST":"m"},"spriteName":null,"value":[],"width":0,"height":0,"x":167,"y":7,"visible":false},{"id":"yuzMq0ho]TXgzPWJIl=#","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.RAM mirror"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"*r-MV7B^PL30%%8PQz%`","mode":"default","opcode":"data_variable","params":{"VARIABLE":"i"},"spriteName":"Game Boy","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"T`~F4~2,O!/[8pu)xO1,","mode":"default","opcode":"data_variable","params":{"VARIABLE":"T1"},"spriteName":"Game Boy","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"`#n=K.W21Z+b9,1$DjCs","mode":"list","opcode":"data_listcontents","params":{"LIST":"$A"},"spriteName":"Game Boy","value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"Ztb;SoN#-D4mbjS9_?T|","mode":"list","opcode":"data_listcontents","params":{"LIST":"$B"},"spriteName":"Game Boy","value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"iGLIHi+i9Aryu]bYNNR[","mode":"list","opcode":"data_listcontents","params":{"LIST":"vram.engine_a.obj"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"uvc)zI]ik{H#R0UEcjSa","mode":"default","opcode":"data_variable","params":{"VARIABLE":"storage.byte"},"spriteName":"HelloWorld","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"~*y,0~Y1ZelwR60?hGDD","mode":"list","opcode":"data_listcontents","params":{"LIST":"buf"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false}],"extensions":["pen","microbit"],"meta":{"semver":"3.0.0","vm":"0.2.0","agent":""}} \ No newline at end of file +{"targets":[{"isStage":true,"name":"Stage","variables":{"`jEk@4|i[#Fk?(8x)AV.-my variable":["my variable",470],"BE)e;?PnrdmTcO@x9]LQ":["MenuScroll",-600],"Wi^qSRY3?saxL.IB^T(P":["rom.title","Default"],"6)MJ1%:{yyW@[$pAU+RW":["arm7.cycles","0"],"q|i3L@-9Yg3eW}Spl-lX":["arm9.cycles",10],"pXkI+kwkMT/GFMgtL=VH":["display.scan_x","0"],"D*/(a|uRL{vFdIeuWJq}":["display.scan_y",263],"uEtD!M_zC8*GB%@71_@h":["options.vertical_screens",0],"/y%V|a=uht4rVd|2*2+a":["DSmode","0"],"26y~e9uZ-)1V@_#QCbz=":["Acc🚽",8],"~kMyjD5[oxb%25@;,!jb":["A",120],"HBshDh%Y+0(5_G*i%?=U-S-":["S2",43],"HBshDh%Y+0(5_G*i%?=U-PC-":["PC",2],"HBshDh%Y+0(5_G*i%?=U-temp-":["GUItemp",50],"HBshDh%Y+0(5_G*i%?=U-mask-":["mask","0"],"HBshDh%Y+0(5_G*i%?=U-offset-":["offset",0],"S{03QX|)N}3Qs.R+iMd5":["reg.pc",20],";1C82k3(=Dty1MVk@`8~":["reg.out",""],"UIt#_f^App(Xeh^B9zjR":["bus.out",""],"g28e.W~Kp`M%wes)3?Gr":["clock.m",24],"?]mws|{Gz19yl|:g,]z(":["clock.t",96],"od4rT?;Bw52y-r9gIuW2":["_ROM","0"],"2|8uqLL4Dl//c4+.iA2j":["Theme Switch Flag","0"],"oW{#?FHT;/hE!l+8(A64":["chip8.starting address",512],"DO@o4r%E;$$f$zC!7%Qb":["chip8.CompatMode","Octo"],"]qC)w3}-oa/}ILT-dNb=":["Inemu?","2"],"w=hd1PshEda%bO|xM^6q":["_PC",16],"Au!*6~mqLy!.|jpv|6f!":["_SP",9212],"F_}DPF^fI%3NP^P]}FKY":["_HALT","0"],"F=zKR.?|B`nQvFM,z(Fw":["__XSHIFT",160],":p`%H4!;G.]W;6lcwPAB":["__SIZE","0"],"d9/@u6`9MK4Cba;GI38K":["__YSHIFT",144],"|Wne6DL=-zq^m9{2r`hA":["q","64"],"1(hsS=.HEnKV_~]$(r+5":["pitch",-333.76316562295915],"flj)QgXS,93H6OayZ`w[-r.0-":["r.0",256],"flj)QgXS,93H6OayZ`w[-r.2-":["r.2",128],"flj)QgXS,93H6OayZ`w[-r.3-":["r.3",0],"flj)QgXS,93H6OayZ`w[-r.1-":["r.1",129],"flj)QgXS,93H6OayZ`w[-r.8-":["r.8",-180],"flj)QgXS,93H6OayZ`w[-r.9-":["r.9",-1.40625],"flj)QgXS,93H6OayZ`w[-r.4-":["r.4",0],"flj)QgXS,93H6OayZ`w[-r.5-":["r.5",0],"flj)QgXS,93H6OayZ`w[-r.7-":["r.7",0],"flj)QgXS,93H6OayZ`w[-r.6-":["r.6",0],"*cu$N5#KACc@_m}ZOQx7":["rom.designation",""],"k5)b[wmY/GqpIVZ[MN!#":["NMI","0"],"PxY`1ASMu4N9720`N$*u":["IRQ",0],"[.c%Zp0y%mFS90_Jf^!0":["address",210],"2sZ~|=Tg1SFq.9?bA!CG":["data",29],"~s-a1kNvmHy%k|6}Y3^~":["bg_color","#000000"],"wf$pnFUa#7qieC$aq~T9":["frame",8561.096328553242],"kG=l#K?vQ345t{T6HPPz":["render_enabled",1],"NU:_6z!NTL[oUrq[!GqQ":["coolnes_convert","0"],"%XjU5(A-f?.:2f)2OCXj":["wram_enabled","1"],"zbJieX,I^/*TuxDYgB2.":["wram_size",8192],"_5s67veUe?q~:arP76/I":["prg_size",16384],"H0q(Yr;S8emYQ`u=.co}":["battery","1"],"T*Lc1tcF[lxG@/W!jiQ0":["Frameskip","1"],"70;C?(`taL+qCsw6v*gi":["chr_ram","0"],"2YEF=*pQ`ymj}xOTf{?k":["mapper",0],"W35mZn3CY:LS+.IAtmge":["chr_size",8192],"lWF?u*+y?xh}I(}~K.X2":["coolnes_regenerate","0"],"}#/T$/!oxFk]}F%H}-cC":["gui_disabled",0],"G(YRd^aUK_k)d~bJ8S@h":["chip8.audioflag","1"],"OF2DV+zKpqx9z3vPfGKN":["j2",-255],"kAMTG-A{dB6Z1S4,`$2$":["_FPS",21.276594470594546],"kb{abR#{v#9?Q9G51V95":[".RLE segments",0],"4M*03Ap*{iT39zNp]4vF":["Romimportflag","0"],"N`et#hF/mNUQ?WM0|0ij":["chip8.spriteheight",1],"n5MwDuyB]-ZSKqim@`ip":["idle_skip",0],"ZU1H]fgUo{pr?8j#775;":["Enable APU","1"],"Jz!(reWdKcB6wz9(@ZOs":["chip8m.samplerate",11025],"i!Gu6~8n7Kk|ypDR{}Pb":["stage width",480],"k%s.$KTqVN5iXl^Zm!/f":["Load Rom Flag","0"],"DJ~1Ck7Y%xr-L5e*i(oz":["j3",256],"w+P+Pep[i1(OdhNI0ghA":["i2",256],"d8yQmxwHD@EL!![dF$O4":["amp","10"],"),FI]}BC9Yl17xV5^-f8":["quality",128],"!+5p_#N7^W]PZ+A=m=oI":["cycles","0"],"m]ROHZvewvW*HDY)ha@)":["8080.mode",99],"j+^-/^#ziTd]J%3izp|U":["8080.InterruptFlag","0"],"!@vTj4c1The8*{(^_*O.":["_S2",0],"j%_uw7vcE;vljqGCEt;-":["-LCDC2",0],"za5df3dC6Lq85;3lun8/":[".GBC?2",0],"*r-MV7B^PL30%%8PQz%`":["i3",0],"T`~F4~2,O!/[8pu)xO1,":["T12",0],"Crf*ltOpxTp[zPgDlY{T":[",c2",0],"W/n=I{ySVA3XJEP{k?=[":[",joypad2",0],"|Cl^=?C:,/{Epnf![x2:":["_T2",0],"ecaYd9sPeo:%`_LsAsJD":["T12",0],"4`Ni_=/i=RIJ0%Y?]=Fn":["_RE2",0],"qOvY4@JXH3Z=q*#gP*-=":["_IF",0],"b#%5IA`afs~P-ErWHe%`":["render2",0],"Yyq0n/?:tZ-1R{!(9E,I":[".IME2",0],"ZnIX}4]R}DE8HyQ,rg57":[".instrID2",0],"ujAlu]pJm2~uaC1iJUQ]":[".instr2",0],"_T_UX}bQ?Q+%Ar.;!SD#":["8080.screenrotation","0"],"Um=PAsB@zaqnQwbwz2%7":["8080.lastout",1],"gn%VUcBWsE?[SfD^`rzY":["__",88],"46oK=P-#sVvKHaV@Dfkc":["+globalVol.R","0"],"S45yp5eu2gCxqZ=8ZQS1":["JIT BLOCKS CREATED",11117],"!tfQB3`_Q_%#68k*+]UW":["INSTRS EXECUTED","0"],"AjM`LssnPuy(6psGEBD+":["DEBUG.TOTALCYCLES","0"],"U?lf^5|4A+7u*FM=9FMT":["framecount",162],"QD*22v(cJ^9PE5yR$bed":["logline","0"],"7-FSvOkEj[!orGBM~vUp":["deltaTime",0.032000184059143066],"zlr~/nTuf%4+EWWaG7Uy":["_frameskip2",0],"1hJ^oX5CBYJY5/xTk7mE":["x0",740971309.1470001],"oId2/c|T8}NSd(N,,B@w":["displayFPS",63.8782995983872],"-cb~TcrrZl$.~s$W.D1}":["+globalVol.L","0"],"i|7Rh#v;TOMTA#`V;t_3":["debugCallsToRender","0"],",vG;q6F?{*W2%-~~m`t=":["input.ROMstr",0]},"lists":{"mLiY::;)lv|cNt1?Woo3":["_rom",["0xA3","0x52","0xF1","0x03","0xA3","0x55","0xF2","0x03","0xA3","0x4F","0xF3","0x03","0xA7","0x78","0xF0","0x03","0xA7","0x63","0xF4","0x03","0xF5","0x03","0x00","0xFF","0x80","0x50","0xA3","0x1F","0xF4","0x1E","0xF0","0x55","0xC0","0x3F","0xA3","0x27","0xF4","0x1E","0x80","0x00","0xF0","0x55","0x80","0x60","0xA3","0x2F","0xF4","0x1E","0xF0","0x55","0xC0","0x3F","0xA3","0x37","0xF4","0x1E","0x80","0x00","0xF0","0x55","0xA3","0x1C","0x74","0x01","0xC9","0x08","0x85","0x94","0x75","0x03","0xC9","0x08","0x86","0x94","0x76","0x04","0x6F","0x08","0x8F","0x47","0x4F","0x00","0x12","0x18","0xF1","0x01","0x6A","0x00","0xF2","0x01","0xA3","0x1F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x27","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x54","0xA3","0x1D","0xD7","0x81","0xF1","0x01","0xA3","0x2F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x37","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x64","0xA3","0x1D","0xD7","0x81","0x7A","0x01","0x6F","0x08","0x8F","0xA7","0x4F","0x00","0x12","0x58","0xF3","0x01","0xA3","0x58","0x6D","0x00","0x6E","0x26","0x7D","0x10","0xDD","0xE0","0x7D","0xF0","0x6F","0x40","0xFF","0x1E","0x7D","0x10","0x4D","0x60","0x7E","0xF0","0x4D","0x60","0x6D","0x00","0x3E","0x06","0x12","0x9E","0x6A","0x00","0xF2","0x01","0xA3","0x1F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x27","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x54","0xA3","0x1C","0xD7","0x81","0xF1","0x01","0xA3","0x2F","0xFA","0x1E","0xF0","0x65","0x87","0x00","0xA3","0x37","0xFA","0x1E","0xF0","0x65","0x88","0x00","0x87","0x74","0x87","0x64","0xA3","0x1E","0xD7","0x81","0x7A","0x01","0x6F","0x08","0x8F","0xA7","0x4F","0x00","0x12","0xB8","0x75","0x02","0x76","0x04","0xA3","0x3F","0xFF","0x55","0xA3","0x3F","0xFF","0x65","0xFF","0x07","0x3F","0x00","0x13","0x02","0x6F","0x02","0xFF","0x15","0x60","0x08","0xE0","0x9E","0x12","0xB6","0x16","0x58","0x81","0x24","0x80","0xF4","0x00","0xEE","0x00","0x00","0xF0","0xC0","0xCC","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFF","0xFF","0x00","0xC4","0xFF","0x40","0x72","0xEE","0x01","0xFF","0x00","0xFF","0x00","0x7F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFE","0x00","0x7E","0x00","0x80","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x80","0xFF","0x80","0xFF","0x00","0x7F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x40","0xFE","0x00","0x7F","0x80","0x80","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xBF","0xC0","0xBF","0x80","0x30","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x40","0x00","0x40","0x40","0xCF","0xC0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFF","0x7F","0x7F","0xBF","0x3F","0x8F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x80","0x3F","0x40","0x40","0x70","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xEF","0xFF","0xFF","0xFF","0x00","0x5F","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x30","0x0F","0x00","0x0F","0xFF","0xA0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xF8","0x00","0xF8","0x00","0xE0","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xF0","0x00","0xF0","0x00","0x10","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x00","0x7F","0x80","0x7F","0xC0","0x3F","0xC1","0x3F","0xE1","0x1F","0xE3","0x1F","0xE3","0x1F","0xF3","0x0F","0xF7","0x0F","0xFF","0x07","0xFF","0x07","0xFF","0x03","0xFF","0x03","0xFF","0x03","0xFF","0x01","0xFF","0x80","0x80","0x3F","0x00","0x3F","0x81","0x3F","0x80","0x1F","0xC2","0x3F","0xC0","0x0F","0xF4","0x0F","0xE4","0x07","0xF8","0x07","0xF0","0x07","0xF0","0x03","0xF8","0x03","0xF8","0x01","0xFC","0x01","0xFC","0x00","0xFE","0x7F","0x00","0xFF","0xC0","0xFF","0xC0","0xFF","0xC0","0xFF","0xE1","0xFF","0xE1","0xFF","0xF3","0xFF","0xF3","0xFF","0xFB","0xF7","0xFF","0xF7","0xFF","0xE7","0xFF","0xE3","0xFF","0xE3","0xFF","0xC1","0xFF","0xC1","0xFF","0x80","0x80","0x00","0x00","0x00","0x80","0x00","0xE1","0x01","0xC0","0x01","0xE2","0x03","0xE0","0x03","0xE4","0x03","0xF4","0x0F","0xF0","0x0B","0xF8","0x13","0xF8","0x11","0xFC","0x01","0xFC","0x20","0xFC","0x00","0xFE","0x3F","0x3F","0x7F","0x7F","0xFF","0xFF","0xFE","0xFF","0xFE","0xFF","0xFD","0xFF","0xFD","0xFF","0xFB","0xFF","0xFB","0xFF","0xFF","0xFB","0xF7","0xFB","0xFF","0xF3","0xEF","0xF1","0xFF","0xE1","0xDF","0xE1","0xDF","0xC0","0x40","0xC0","0x80","0x80","0x00","0x00","0x01","0x00","0x01","0x00","0x02","0x00","0x02","0x01","0x04","0x01","0x04","0x03","0x00","0x07","0x08","0x07","0x00","0x09","0x10","0x03","0x00","0x10","0x20","0x00","0x20","0x20","0x1F","0x80","0xDF","0xC0","0xDF","0xE0","0xEF","0xE0","0xEF","0xF0","0xFF","0xF0","0xF7","0xF1","0xFF","0xF9","0xFB","0xFB","0xFB","0xFF","0xFD","0xFF","0xFD","0xFF","0xFF","0xFF","0xFE","0xFF","0xFF","0xFF","0xFF","0x7F","0xE0","0x40","0x20","0x20","0x60","0x00","0xD0","0x10","0xF0","0x00","0xE0","0x08","0xF8","0x08","0xF0","0x00","0xF4","0x05","0xFC","0x01","0xFA","0x01","0xFE","0x01","0xFC","0x00","0xFF","0x00","0xFE","0x00","0x7F","0x80","0x3F","0xCF","0x7F","0xFF","0x7F","0xBF","0x7F","0xBF","0xFF","0x7F","0xFF","0x7F","0xFE","0xFF","0xFE","0xFF","0xFF","0xFF","0xFD","0xFF","0xFF","0xFF","0xFB","0xFF","0xFB","0xFF","0xF7","0xFB","0xF7","0xFF","0xFF","0xFF","0x00","0x30","0x3F","0x80","0x3F","0xC0","0xFF","0x40","0x7F","0x80","0x7E","0x80","0xFF","0x00","0xFD","0x00","0xFC","0x00","0xFE","0x01","0xF8","0x01","0xFC","0x03","0xF4","0x03","0xF8","0x04","0x68","0x00","0x60","0x07","0xDF","0xFC","0xFF","0xFE","0xFF","0xFC","0xFF","0xF8","0xFF","0xF8","0xFF","0xF0","0xFF","0xE0","0x7F","0xC0","0xFF","0xC0","0xFF","0xC0","0xFF","0x80","0xFF","0x00","0xFF","0x00","0xFC","0x00","0xFC","0x00","0xFC","0x00","0x20","0x02","0x1F","0xFC","0x3F","0xF8","0x3F","0xF0","0x3F","0xF0","0x7F","0xE0","0x00","0x00","0x80","0x20","0xFF","0x80","0xFF","0x80","0xFF","0x00","0xFE","0x00","0xFE","0x00","0x03","0x00","0x0A","0x00","0xF8","0x00","0xFF","0x01","0x00","0xFE","0xA7","0x56","0xF0","0x03","0xA7","0x5D","0xF1","0x03","0xA7","0x66","0xF2","0x03","0xA7","0x63","0xF4","0x03","0xF5","0x03","0xA7","0x60","0xF8","0x03","0x00","0xF3","0x61","0x00","0x6A","0x00","0x6B","0x3A","0x6C","0x00","0x27","0x42","0x61","0x17","0x27","0x42","0x68","0x02","0x69","0x0C","0xF1","0x01","0xA7","0x58","0xDC","0x85","0xDB","0x95","0xF2","0x01","0x6E","0x1E","0x64","0x03","0xF4","0x29","0xDE","0x95","0x65","0x3C","0xF5","0x15","0xF4","0x18","0xF5","0x07","0x35","0x00","0x16","0x9E","0xDE","0x95","0x74","0xFF","0xF4","0x29","0xDE","0x95","0x34","0x00","0x16","0x98","0xDE","0x95","0xF3","0x01","0x00","0xE0","0xF2","0x01","0x6D","0x17","0x6E","0x1A","0xA7","0x78","0xFA","0x33","0xF0","0x65","0xF0","0x29","0xDD","0xE5","0xA7","0x79","0x7D","0x07","0xF0","0x65","0xF0","0x29","0xDD","0xE5","0x7D","0x07","0xA7","0x7A","0xF0","0x65","0xF0","0x29","0xDD","0xE5","0xF1","0x01","0x87","0xC0","0x60","0x05","0xE0","0xA1","0x7C","0x01","0x4C","0x40","0x27","0x32","0x60","0x07","0xE0","0xA1","0x78","0xFF","0x60","0x09","0xE0","0xA1","0x78","0x01","0x7B","0xFE","0x6F","0x40","0x8F","0xB7","0x3F","0x00","0x27","0x3A","0x61","0x00","0x27","0x42","0x61","0x17","0x27","0x42","0xF1","0x01","0xA7","0x58","0xDB","0x95","0xDC","0x85","0x4F","0x01","0x17","0x1E","0xFF","0x07","0x3F","0x00","0x17","0x12","0x6F","0x03","0xFF","0x15","0x16","0xB2","0xF8","0x01","0x00","0xF1","0xA7","0x69","0xDC","0x8F","0x61","0x14","0xF1","0x18","0xFE","0x0A","0x3E","0x08","0x17","0x2A","0x16","0x58","0x7A","0x01","0x6C","0x00","0xF4","0x18","0x00","0xEE","0xC9","0x0F","0x79","0x01","0x6B","0x3E","0x00","0xEE","0x00","0xF1","0x64","0x00","0xF5","0x01","0xA7","0x67","0xD4","0x11","0x74","0x08","0x34","0x40","0x17","0x4A","0x00","0xF3","0x00","0xEE","0x50","0x50","0x50","0xF8","0xD8","0xF8","0x50","0x00","0xB0","0xF0","0xFF","0x00","0x00","0xF3","0x99","0x00","0xFF","0xFF","0xFF","0xF8","0x88","0xF8","0x80","0x80","0x00","0xF8","0x88","0x88","0xF8","0x00","0xA8","0xA8","0xA8","0x50","0x00","0x00","0x00","0xf0"]],"8Tw(LA8~j_|@CGcGVjif":["MainHello",[]],"AY0ltbJCCbW!P`l`UfON":["_pixels",[]],"2^3x|Rqqju,bMtfgid%0":["arm9.rom",[]],"iQF=oI}+|V%s*{,h}nm{":["arm7.rom",[]],"HBshDh%Y+0(5_G*i%?=U-AND-list":["AND",[]],"HBshDh%Y+0(5_G*i%?=U-hex-list":["hex",[]],"HBshDh%Y+0(5_G*i%?=U-Palette-list":["Palette",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"HBshDh%Y+0(5_G*i%?=U-controller 1 state-list":["Mobile Keypad state",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"o9uHH*42(Vb;iI,jwYr2":["Menu Theme",["1","1","2","3","0","0","0","0"]],"E$.ShehU4wuDtCF}{|rY":["_registers",[]],"0#g*goO+jhSwd~1NreFg":["reg_names",[]],"I63N$8?MbeN%*VS^[e`a":["_memory",[]],"KoqBef(DQ*bEZsT@-v`L":["flag_names",[]],"*6ctRg,UST)3?h^IgrxZ":["oam",[]],"y8$TZGjr(vK|SME``+kg":["vram.lcdc",[]],"-:a738GrUS[#_#`8,`@%":["vram.engine_b.obj",[]],"iGLIHi+i9Aryu]bYNNR[":["vram.engine_a.obj",[]],".wS@_(1Qq^rK*BvUIeL=":["vram.engine_b.bg",[]],"f(0D*PHb:{[P[u.%V!V!":["vram.engine_a.bg",[]],"TC(NK4(a9G2=hyz,3gi/":["arm9.standard_palettes",[]],"($T#j?Vp+GTwR+m^G=dx":["arm9.io_ports",[]],"Z$-F@yScmi?NzxiL#9Z}":["core.shared_wram",[]],"9_eB!Y3}VuUy)u[LEDQh":["arm9.memory6",[]],"rSU1^x`,g=a?Z@^[xY+T":["arm9.memory5",[]],"8ZEv{03A@CaKJ(|pk`ZJ":["arm9.memory4",[]],"YA6yOCRUtqW/G7^UVjbW":["arm9.memory3",[]],";ZESGDsO)m0*x9$^rcW0":["arm9.memory2",[]],";%5/]?BxpeXK6De;T-%,":["arm9.memory1",[]],"maIIt!.}+ozpZ,ARCmRi":["arm7.vwram",[]],"Z#J.8^J=g($xQr6Bd]q;":["arm7.wireless.state_1",[]],"*hfP4YR*A??5WtLr/#n9":["arm7.wireless.state_0",[]],"[OgGz#.!E)`2Slmt%$Pa":["arm7.io_ports",[]],"Q]Hi]W=b+k/y*Sg6BSu0":["arm7.wram",[]],":S.^^KK:vu#%(*yMlfJO":["arm7.memory6",[]],"j9b@y^=0+Drg2s/R}(2x":["arm7.memory5",[]],"gX9cZO43r+,(hL2#O2Cp":["arm7.memory4",[]],"njAyQRkE{z;A1-]^jkB{":["arm7.memory3",[]],"QYb|2MR}$=p9XPp0!WTj":["arm7.memory2",[]],"Uvf04Qoh/5TL1wO%-Z.D":["arm7.memory1",[]],"{0m^r8XB06mP:WDHBc!.":["display.screen",[]],"#_[CK=fABC,PAZ_,6!9!":["arm7.flags",["false","false","false","false"]],"Fp2OyYdk}?8Nbn$hfEg`":["ROM",[]],"GH;evIT.P{UuSVtHs:`*":["*graphicsBuffer",[]],"a,K{HPy[l|6bp/FIJ0WV":["logtemp",[]],"!M?/`s.Bs8q0RAQblZa9":["logzz",[]],"xMDma1Q3J!y1yjTBt7(F":["pitches",[40.581605982162166,66.15975679404936,"-1",0]],"2[P;mjw2X?Sv?vbz7D(?":["joypad buttons",[0,0,0,0,0,0,0,0]],"UrPQMZ+enGUmzM`fAi$,":["voice",[3,2,"0",0]],"*df.:JNR*^GpTa_k=NdQ":["wave",[]],"g|w%1=[YgXkc0z(63t|f":["volume",[1.25,1.875,1.875,1.875]],"Ok6b#fye79@mqZ]dIPt5":["vol",[]],"flj)QgXS,93H6OayZ`w[-temp.0-list":["temp.0",[-256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"flj)QgXS,93H6OayZ`w[-temp.1-list":["temp.1",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"flj)QgXS,93H6OayZ`w[-FT.re-list":["FT.re",[-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"flj)QgXS,93H6OayZ`w[-FT.im-list":["FT.im",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"7nRsy`H|tfHd3Y=;qpJ|":["soundnames",["p0","p1","","no"]],"|wrT},$[.z]EPbXVhvr[":["_colours",["0x000000","0x00C4FF","0x4072EE","0x00FFFF","0xF39900","0xF39900","0x0000FF","0xFFFF00","0x880000","0x008800","0x000088","0x888800","0xFF00FF","0x00FFFF","0x880088","0x008888","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"," 0x00FFFFFF"]],"KciKQ4B%I^{Ge#cm.(%/":["_scanline",[0,384]],"E)Xr`w!wLD[:xYMS;Sc^":["chip8.audiobuffer",[]],"2qm7j|WZgQAFvgiJG^Rn":["prg_rom",[76,245,197,96,120,216,162,255,154,173,2,32,16,251,173,2,32,16,251,169,0,141,0,32,141,1,32,141,5,32,141,5,32,173,2,32,162,32,142,6,32,162,0,142,6,32,162,0,160,15,169,0,141,7,32,202,208,250,136,208,247,169,63,141,6,32,169,0,141,6,32,162,0,189,120,255,141,7,32,232,224,32,208,245,169,192,141,23,64,169,0,141,21,64,169,120,133,208,169,251,133,209,169,127,133,211,160,0,140,6,32,140,6,32,169,0,133,215,169,7,133,208,169,195,133,209,32,167,194,32,141,194,162,18,32,97,194,165,213,74,74,74,176,28,74,176,12,74,176,39,74,176,3,76,129,192,76,38,193,32,111,198,198,215,16,219,169,13,133,215,208,213,32,111,198,230,215,165,215,201,14,144,202,169,0,133,215,240,196,32,137,198,165,215,240,6,32,237,192,76,129,192,169,0,133,216,230,215,32,237,192,230,215,165,215,201,14,208,245,169,0,133,215,165,216,240,2,169,255,133,0,32,237,193,76,129,192,165,215,10,170,189,10,193,141,0,2,189,11,193,141,1,2,169,193,72,169,222,72,169,0,133,0,108,0,2,45,199,45,199,219,199,133,200,222,203,248,205,238,206,162,207,116,209,251,212,212,193,74,223,184,219,170,225,169,0,133,215,169,146,133,208,169,196,133,209,32,167,194,32,141,194,162,15,32,97,194,165,213,74,74,74,176,28,74,176,12,74,176,39,74,176,3,76,53,193,76,114,192,32,111,198,198,215,16,219,169,10,133,215,208,213,32,111,198,230,215,165,215,201,11,144,202,169,0,133,215,240,196,32,137,198,165,215,240,6,32,161,193,76,53,193,169,0,133,216,230,215,32,161,193,230,215,165,215,201,11,208,245,169,0,133,215,165,216,240,2,169,255,133,0,32,237,193,76,53,193,165,215,10,170,189,190,193,141,0,2,189,191,193,141,1,2,169,193,72,169,222,72,169,0,133,0,108,0,2,163,198,163,198,30,229,61,231,211,232,22,233,134,235,246,237,102,240,214,242,70,245,169,0,133,0,32,0,217,32,224,218,234,234,234,165,0,240,2,133,216,76,237,193,76,129,192,32,141,194,169,0,133,211,165,215,24,105,4,10,38,211,10,38,211,10,38,211,10,38,211,10,38,211,72,165,211,9,32,141,6,32,104,9,4,141,6,32,165,0,240,29,201,255,240,38,74,74,74,74,170,189,81,194,141,7,32,165,0,41,15,170,189,81,194,141,7,32,76,148,194,169,79,141,7,32,169,75,141,7,32,76,148,194,169,69,141,7,32,169,114,141,7,32,76,148,194,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,165,215,24,105,4,168,169,132,141,0,32,169,32,141,6,32,169,2,141,6,32,169,32,136,200,208,2,169,42,141,7,32,136,202,208,241,169,128,141,0,32,76,148,194,165,210,197,210,240,252,96,169,0,141,5,32,141,5,32,169,0,141,6,32,169,0,141,6,32,96,169,0,141,0,32,141,1,32,32,237,194,169,32,141,6,32,160,0,140,6,32,162,32,177,208,240,32,201,255,240,13,141,7,32,200,208,2,230,209,202,208,237,240,233,200,208,2,230,209,169,32,141,7,32,202,208,248,240,218,169,128,141,0,32,169,14,141,1,32,96,169,32,141,6,32,169,0,141,6,32,162,30,169,32,160,32,141,7,32,136,208,250,202,208,245,96,255,255,255,255,32,32,32,32,45,45,32,82,117,110,32,97,108,108,32,116,101,115,116,115,255,32,32,32,32,45,45,32,66,114,97,110,99,104,32,116,101,115,116,115,255,32,32,32,32,45,45,32,70,108,97,103,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,109,109,101,100,105,97,116,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,109,112,108,105,101,100,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,116,97,99,107,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,99,99,117,109,117,108,97,116,111,114,32,116,101,115,116,115,255,32,32,32,32,45,45,32,40,73,110,100,105,114,101,99,116,44,88,41,32,116,101,115,116,115,255,32,32,32,32,45,45,32,90,101,114,111,112,97,103,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,32,116,101,115,116,115,255,32,32,32,32,45,45,32,40,73,110,100,105,114,101,99,116,41,44,89,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,44,89,32,116,101,115,116,115,255,32,32,32,32,45,45,32,90,101,114,111,112,97,103,101,44,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,65,98,115,111,108,117,116,101,44,88,32,116,101,115,116,115,255,255,255,32,32,32,32,85,112,47,68,111,119,110,58,32,115,101,108,101,99,116,32,116,101,115,116,255,32,32,32,32,32,32,83,116,97,114,116,58,32,114,117,110,32,116,101,115,116,255,32,32,32,32,32,83,101,108,101,99,116,58,32,73,110,118,97,108,105,100,32,111,112,115,33,255,0,255,255,255,255,32,32,32,32,45,45,32,82,117,110,32,97,108,108,32,116,101,115,116,115,255,32,32,32,32,45,45,32,78,79,80,32,116,101,115,116,115,255,32,32,32,32,45,45,32,76,65,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,65,88,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,66,67,32,116,101,115,116,32,40,111,112,99,111,100,101,32,48,69,66,104,41,255,32,32,32,32,45,45,32,68,67,80,32,116,101,115,116,115,255,32,32,32,32,45,45,32,73,83,66,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,76,79,32,116,101,115,116,115,255,32,32,32,32,45,45,32,82,76,65,32,116,101,115,116,115,255,32,32,32,32,45,45,32,83,82,69,32,116,101,115,116,115,255,32,32,32,32,45,45,32,82,82,65,32,116,101,115,116,115,255,255,255,255,255,255,32,32,32,32,85,112,47,68,111,119,110,58,32,115,101,108,101,99,116,32,116,101,115,116,255,32,32,32,32,32,32,83,116,97,114,116,58,32,114,117,110,32,116,101,115,116,255,32,32,32,32,32,83,101,108,101,99,116,58,32,78,111,114,109,97,108,32,111,112,115,255,0,72,138,72,173,2,32,169,32,141,6,32,169,64,141,6,32,230,210,169,0,141,5,32,141,5,32,169,0,141,6,32,169,0,141,6,32,162,9,142,22,64,202,142,22,64,173,22,64,74,38,212,202,208,247,165,212,170,69,214,37,212,133,213,134,214,104,170,104,64,64,162,0,134,0,134,16,134,17,32,45,199,32,219,199,32,133,200,32,222,203,32,248,205,32,238,206,32,162,207,32,116,209,32,251,212,32,0,217,165,0,133,16,169,0,133,0,32,224,218,32,74,223,32,184,219,32,170,225,32,163,198,32,30,229,32,61,231,32,211,232,32,22,233,32,134,235,32,246,237,32,102,240,32,214,242,165,0,133,17,169,0,133,0,32,70,245,165,0,5,16,5,17,240,14,32,111,198,166,0,134,2,166,16,134,3,76,110,198,32,137,198,96,169,3,141,21,64,169,135,141,0,64,169,137,141,1,64,169,240,141,2,64,169,0,141,3,64,96,169,2,141,21,64,169,63,141,4,64,169,154,141,5,64,169,255,141,6,64,169,0,141,7,64,96,160,78,169,255,133,1,32,176,198,32,183,198,96,169,255,72,169,170,208,5,169,52,72,169,85,40,4,169,68,169,100,169,234,234,234,234,8,72,12,169,169,234,234,234,234,8,72,20,169,52,169,84,169,116,169,212,169,244,169,234,234,234,234,8,72,26,58,90,122,218,250,128,137,234,234,234,234,8,72,28,169,169,60,169,169,92,169,169,124,169,169,220,169,169,252,169,169,234,234,234,234,8,72,162,5,104,201,85,240,10,201,170,240,6,104,132,0,76,40,199,104,41,203,201,0,240,6,201,203,240,2,132,0,200,202,208,224,96,234,56,176,4,162,1,134,0,234,24,176,3,76,64,199,162,2,134,0,234,56,144,3,76,75,199,162,3,134,0,234,24,144,4,162,4,134,0,234,169,0,240,4,162,5,134,0,234,169,64,240,3,76,104,199,162,6,134,0,234,169,64,208,4,162,7,134,0,234,169,0,208,3,76,125,199,162,8,134,0,234,169,255,133,1,36,1,112,4,162,9,134,0,234,36,1,80,3,76,150,199,162,10,134,0,234,169,0,133,1,36,1,80,4,162,11,134,0,234,36,1,112,3,76,175,199,162,12,134,0,234,169,0,16,4,162,13,134,0,234,169,128,16,3,76,217,199,162,14,134,0,234,169,128,48,4,162,15,134,0,234,169,0,48,3,76,217,199,162,16,134,0,234,96,234,169,255,133,1,36,1,169,0,56,120,248,8,104,41,239,201,111,240,4,162,17,134,0,234,169,64,133,1,36,1,216,169,16,24,8,104,41,239,201,100,240,4,162,18,134,0,234,169,128,133,1,36,1,248,169,0,56,8,104,41,239,201,47,240,4,162,19,134,0,234,169,255,72,40,208,9,16,7,80,5,144,3,76,53,200,162,20,134,0,234,169,4,72,40,240,9,48,7,112,5,176,3,76,73,200,162,21,134,0,234,248,169,255,133,1,36,1,24,169,0,72,169,255,104,208,9,48,7,80,5,176,3,76,103,200,162,22,134,0,234,169,0,133,1,36,1,56,169,255,72,169,0,104,240,9,16,7,112,5,144,3,76,132,200,162,23,134,0,96,234,24,169,255,133,1,36,1,169,85,9,170,176,11,16,9,201,255,208,5,80,3,76,162,200,162,24,134,0,234,56,184,169,0,9,0,208,9,112,7,144,5,48,3,76,184,200,162,25,134,0,234,24,36,1,169,85,41,170,208,9,80,7,176,5,48,3,76,207,200,162,26,134,0,234,56,184,169,248,41,239,144,11,16,9,201,232,208,5,112,3,76,231,200,162,27,134,0,234,24,36,1,169,95,73,170,176,11,16,9,201,245,208,5,80,3,76,0,201,162,28,134,0,234,56,184,169,112,73,112,208,9,112,7,144,5,48,3,76,22,201,162,29,134,0,234,24,36,1,169,0,105,105,48,11,176,9,201,105,208,5,112,3,76,47,201,162,30,134,0,234,56,248,36,1,169,1,105,105,48,11,176,9,201,107,208,5,112,3,76,73,201,162,31,134,0,234,216,56,184,169,127,105,127,16,11,176,9,201,255,208,5,80,3,76,98,201,162,32,134,0,234,24,36,1,169,127,105,128,16,11,176,9,201,255,208,5,112,3,76,123,201,162,33,134,0,234,56,184,169,127,105,128,208,9,48,7,112,5,144,3,76,145,201,162,34,134,0,234,56,184,169,159,240,9,16,7,112,5,144,3,76,165,201,162,35,134,0,234,24,36,1,169,0,208,9,48,7,80,5,176,3,76,186,201,162,35,134,0,234,36,1,169,64,201,64,48,9,144,7,208,5,80,3,76,208,201,162,36,134,0,234,184,201,63,240,9,48,7,144,5,112,3,76,227,201,162,37,134,0,234,201,65,240,7,16,5,16,3,76,243,201,162,38,134,0,234,169,128,201,0,240,7,16,5,144,3,76,5,202,162,39,134,0,234,201,128,208,7,48,5,144,3,76,21,202,162,40,134,0,234,201,129,176,7,240,5,16,3,76,37,202,162,41,134,0,234,201,127,144,7,240,5,48,3,76,53,202,162,42,134,0,234,36,1,160,64,192,64,208,9,48,7,144,5,80,3,76,75,202,162,43,134,0,234,184,192,63,240,9,48,7,144,5,112,3,76,94,202,162,44,134,0,234,192,65,240,7,16,5,16,3,76,110,202,162,45,134,0,234,160,128,192,0,240,7,16,5,144,3,76,128,202,162,46,134,0,234,192,128,208,7,48,5,144,3,76,144,202,162,47,134,0,234,192,129,176,7,240,5,16,3,76,160,202,162,48,134,0,234,192,127,144,7,240,5,48,3,76,176,202,162,49,134,0,234,36,1,162,64,224,64,208,9,48,7,144,5,80,3,76,198,202,169,50,133,0,234,184,224,63,240,9,48,7,144,5,112,3,76,217,202,169,51,133,0,234,224,65,240,7,16,5,16,3,76,233,202,169,52,133,0,234,162,128,224,0,240,7,16,5,144,3,76,251,202,169,53,133,0,234,224,128,208,7,48,5,144,3,76,11,203,169,54,133,0,234,224,129,176,7,240,5,16,3,76,27,203,169,55,133,0,234,224,127,144,7,240,5,48,3,76,43,203,169,56,133,0,234,56,184,162,159,240,9,16,7,112,5,144,3,76,63,203,162,57,134,0,234,24,36,1,162,0,208,9,48,7,80,5,176,3,76,84,203,162,58,134,0,234,56,184,160,159,240,9,16,7,112,5,144,3,76,104,203,162,59,134,0,234,24,36,1,160,0,208,9,48,7,80,5,176,3,76,125,203,162,60,134,0,234,169,85,162,170,160,51,201,85,208,35,224,170,208,31,192,51,208,27,201,85,208,23,224,170,208,19,192,51,208,15,201,86,240,11,224,171,240,7,192,52,240,3,76,175,203,162,61,134,0,160,113,32,49,249,233,64,32,55,249,200,32,71,249,233,63,32,76,249,200,32,92,249,233,65,32,98,249,200,32,114,249,233,0,32,118,249,200,32,128,249,233,127,32,132,249,96,234,169,255,133,1,169,68,162,85,160,102,232,136,224,86,208,33,192,101,208,29,232,232,136,136,224,88,208,21,192,99,208,17,202,200,224,87,208,11,192,100,208,7,201,68,208,3,76,20,204,162,62,134,0,234,56,162,105,169,150,36,1,160,255,200,208,61,48,59,144,57,80,55,192,0,208,51,200,240,48,48,46,144,44,80,42,24,184,160,0,136,240,35,16,33,176,31,112,29,192,255,208,25,24,136,240,21,16,19,176,17,112,15,192,254,208,11,201,150,208,7,224,105,208,3,76,98,204,162,63,134,0,234,56,160,105,169,150,36,1,162,255,232,208,61,48,59,144,57,80,55,224,0,208,51,232,240,48,48,46,144,44,80,42,24,184,162,0,202,240,35,16,33,176,31,112,29,224,255,208,25,24,202,240,21,16,19,176,17,112,15,224,254,208,11,201,150,208,7,192,105,208,3,76,176,204,162,64,134,0,234,169,133,162,52,160,153,24,36,1,168,240,46,176,44,80,42,16,40,201,133,208,36,224,52,208,32,192,133,208,28,169,0,56,184,168,208,21,144,19,112,17,48,15,201,0,208,11,224,52,208,7,192,0,208,3,76,239,204,162,65,134,0,234,169,133,162,52,160,153,24,36,1,170,240,46,176,44,80,42,16,40,201,133,208,36,224,133,208,32,192,153,208,28,169,0,56,184,170,208,21,144,19,112,17,48,15,201,0,208,11,224,0,208,7,192,153,208,3,76,46,205,162,66,134,0,234,169,133,162,52,160,153,24,36,1,152,240,46,176,44,80,42,16,40,201,153,208,36,224,52,208,32,192,153,208,28,160,0,56,184,152,208,21,144,19,112,17,48,15,201,0,208,11,224,52,208,7,192,0,208,3,76,109,205,162,67,134,0,234,169,133,162,52,160,153,24,36,1,138,240,46,176,44,80,42,48,40,201,52,208,36,224,52,208,32,192,153,208,28,162,0,56,184,138,208,21,144,19,112,17,48,15,201,0,208,11,224,0,208,7,192,153,208,3,76,172,205,162,68,134,0,234,186,142,255,7,160,51,162,105,169,132,24,36,1,154,240,50,16,48,176,46,80,44,201,132,208,40,224,105,208,36,192,51,208,32,160,1,169,4,56,184,162,0,186,240,21,48,19,144,17,112,15,224,105,208,11,201,4,208,7,192,1,208,3,76,243,205,162,69,134,0,174,255,7,154,96,169,255,133,1,186,142,255,7,234,162,128,154,169,51,72,169,105,72,186,224,126,208,32,104,201,105,208,27,104,201,51,208,22,186,224,128,208,17,173,128,1,201,51,208,10,173,127,1,201,105,208,3,76,51,206,162,70,134,0,234,162,128,154,32,61,206,76,91,206,186,224,126,208,25,104,104,186,224,128,208,18,169,0,32,78,206,104,201,77,208,8,104,201,206,208,3,76,95,206,162,71,134,0,234,169,206,72,169,102,72,96,162,119,160,105,24,36,1,169,131,32,102,206,240,36,16,34,176,32,80,30,201,131,208,26,192,105,208,22,224,119,208,18,56,184,169,0,32,102,206,208,9,48,7,144,5,112,3,76,157,206,162,72,134,0,234,169,206,72,169,174,72,169,101,72,169,85,160,136,162,153,64,48,53,80,51,240,49,144,47,201,85,208,43,192,136,208,39,224,153,208,35,169,206,72,169,206,72,169,135,72,169,85,64,16,21,112,19,208,17,144,15,201,85,208,11,192,136,208,7,224,153,208,3,76,233,206,162,73,134,0,174,255,7,154,96,162,85,160,105,169,255,133,1,234,36,1,56,169,1,74,144,29,208,27,48,25,80,23,201,0,208,19,184,169,170,74,176,13,240,11,48,9,112,7,201,85,208,3,76,32,207,162,74,134,0,234,36,1,56,169,128,10,144,30,208,28,48,26,80,24,201,0,208,20,184,56,169,85,10,176,13,240,11,16,9,112,7,201,170,208,3,76,75,207,162,75,134,0,234,36,1,56,169,1,106,144,30,240,28,16,26,80,24,201,128,208,20,184,24,169,85,106,144,13,240,11,48,9,112,7,201,42,208,3,76,118,207,162,76,134,0,234,36,1,56,169,128,42,144,30,240,28,48,26,80,24,201,1,208,20,184,24,169,85,42,176,13,240,11,16,9,112,7,201,170,208,3,76,161,207,162,77,134,0,96,165,0,141,255,7,169,0,133,128,169,2,133,129,169,255,133,1,169,0,133,130,169,3,133,131,133,132,169,0,133,255,169,4,133,0,169,90,141,0,2,169,91,141,0,3,169,92,141,3,3,169,93,141,0,4,162,0,161,128,201,90,208,31,232,232,161,128,201,91,208,23,232,161,128,201,92,208,16,162,0,161,255,201,93,208,8,162,129,161,255,201,90,240,5,169,88,141,255,7,169,170,162,0,129,128,232,232,169,171,129,128,232,169,172,129,128,162,0,169,173,129,255,173,0,2,201,170,208,21,173,0,3,201,171,208,14,173,3,3,201,172,208,7,173,0,4,201,173,240,5,169,89,141,255,7,173,255,7,133,0,169,0,141,0,3,169,170,141,0,2,162,0,160,90,32,182,247,1,128,32,192,247,200,32,206,247,1,130,32,211,247,200,32,223,247,33,128,32,229,247,200,169,239,141,0,3,32,241,247,33,130,32,246,247,200,32,4,248,65,128,32,10,248,200,169,112,141,0,3,32,24,248,65,130,32,29,248,200,169,105,141,0,2,32,41,248,97,128,32,47,248,200,32,61,248,97,128,32,67,248,200,169,127,141,0,2,32,81,248,97,128,32,86,248,200,169,128,141,0,2,32,100,248,97,128,32,106,248,200,32,120,248,97,128,32,125,248,200,169,64,141,0,2,32,137,248,193,128,32,142,248,200,72,169,63,141,0,2,104,32,154,248,193,128,32,156,248,200,72,169,65,141,0,2,104,193,128,32,168,248,200,72,169,0,141,0,2,104,32,178,248,193,128,32,181,248,200,72,169,128,141,0,2,104,193,128,32,191,248,200,72,169,129,141,0,2,104,193,128,32,201,248,200,72,169,127,141,0,2,104,193,128,32,211,248,200,169,64,141,0,2,32,49,249,225,128,32,55,249,200,169,63,141,0,2,32,71,249,225,128,32,76,249,200,169,65,141,0,2,32,92,249,225,128,32,98,249,200,169,0,141,0,2,32,114,249,225,128,32,118,249,200,169,127,141,0,2,32,128,249,225,128,32,132,249,96,169,85,133,120,169,255,133,1,36,1,160,17,162,35,169,0,165,120,240,16,48,14,201,85,208,10,192,17,208,6,224,35,80,2,240,4,169,118,133,0,169,70,36,1,133,120,240,10,16,8,80,6,165,120,201,70,240,4,169,119,133,0,169,85,133,120,36,1,169,17,162,35,160,0,164,120,240,16,48,14,192,85,208,10,201,17,208,6,224,35,80,2,240,4,169,120,133,0,160,70,36,1,132,120,240,10,16,8,80,6,164,120,192,70,240,4,169,121,133,0,36,1,169,85,133,120,160,17,169,35,162,0,166,120,240,16,48,14,224,85,208,10,192,17,208,6,201,35,80,2,240,4,169,122,133,0,162,70,36,1,134,120,240,10,16,8,80,6,166,120,224,70,240,4,169,123,133,0,169,192,133,120,162,51,160,136,169,5,36,120,16,16,80,14,208,12,201,5,208,8,224,51,208,4,192,136,240,4,169,124,133,0,169,3,133,120,169,1,36,120,48,8,112,6,240,4,201,1,240,4,169,125,133,0,160,126,169,170,133,120,32,182,247,5,120,32,192,247,200,169,0,133,120,32,206,247,5,120,32,211,247,200,169,170,133,120,32,223,247,37,120,32,229,247,200,169,239,133,120,32,241,247,37,120,32,246,247,200,169,170,133,120,32,4,248,69,120,32,10,248,200,169,112,133,120,32,24,248,69,120,32,29,248,200,169,105,133,120,32,41,248,101,120,32,47,248,200,32,61,248,101,120,32,67,248,200,169,127,133,120,32,81,248,101,120,32,86,248,200,169,128,133,120,32,100,248,101,120,32,106,248,200,32,120,248,101,120,32,125,248,200,169,64,133,120,32,137,248,197,120,32,142,248,200,72,169,63,133,120,104,32,154,248,197,120,32,156,248,200,72,169,65,133,120,104,197,120,32,168,248,200,72,169,0,133,120,104,32,178,248,197,120,32,181,248,200,72,169,128,133,120,104,197,120,32,191,248,200,72,169,129,133,120,104,197,120,32,201,248,200,72,169,127,133,120,104,197,120,32,211,248,200,169,64,133,120,32,49,249,229,120,32,55,249,200,169,63,133,120,32,71,249,229,120,32,76,249,200,169,65,133,120,32,92,249,229,120,32,98,249,200,169,0,133,120,32,114,249,229,120,32,118,249,200,169,127,133,120,32,128,249,229,120,32,132,249,200,169,64,133,120,32,137,248,170,228,120,32,142,248,200,169,63,133,120,32,154,248,228,120,32,156,248,200,169,65,133,120,228,120,32,168,248,200,169,0,133,120,32,178,248,170,228,120,32,181,248,200,169,128,133,120,228,120,32,191,248,200,169,129,133,120,228,120,32,201,248,200,169,127,133,120,228,120,32,211,248,200,152,170,169,64,133,120,32,221,248,196,120,32,226,248,232,169,63,133,120,32,238,248,196,120,32,240,248,232,169,65,133,120,196,120,32,252,248,232,169,0,133,120,32,6,249,196,120,32,9,249,232,169,128,133,120,196,120,32,19,249,232,169,129,133,120,196,120,32,29,249,232,169,127,133,120,196,120,32,39,249,232,138,168,32,144,249,133,120,70,120,165,120,32,157,249,200,133,120,70,120,165,120,32,173,249,200,32,189,249,133,120,6,120,165,120,32,195,249,200,133,120,6,120,165,120,32,212,249,200,32,228,249,133,120,102,120,165,120,32,234,249,200,133,120,102,120,165,120,32,251,249,200,32,10,250,133,120,38,120,165,120,32,16,250,200,133,120,38,120,165,120,32,33,250,169,255,133,120,133,1,36,1,56,230,120,208,12,48,10,80,8,144,6,165,120,201,0,240,4,169,171,133,0,169,127,133,120,184,24,230,120,240,12,16,10,112,8,176,6,165,120,201,128,240,4,169,172,133,0,169,0,133,120,36,1,56,198,120,240,12,16,10,80,8,144,6,165,120,201,255,240,4,169,173,133,0,169,128,133,120,184,24,198,120,240,12,48,10,112,8,176,6,165,120,201,127,240,4,169,174,133,0,169,1,133,120,198,120,240,4,169,175,133,0,96,169,85,141,120,6,169,255,133,1,36,1,160,17,162,35,169,0,173,120,6,240,16,48,14,201,85,208,10,192,17,208,6,224,35,80,2,240,4,169,176,133,0,169,70,36,1,141,120,6,240,11,16,9,80,7,173,120,6,201,70,240,4,169,177,133,0,169,85,141,120,6,36,1,169,17,162,35,160,0,172,120,6,240,16,48,14,192,85,208,10,201,17,208,6,224,35,80,2,240,4,169,178,133,0,160,70,36,1,140,120,6,240,11,16,9,80,7,172,120,6,192,70,240,4,169,179,133,0,36,1,169,85,141,120,6,160,17,169,35,162,0,174,120,6,240,16,48,14,224,85,208,10,192,17,208,6,201,35,80,2,240,4,169,180,133,0,162,70,36,1,142,120,6,240,11,16,9,80,7,174,120,6,224,70,240,4,169,181,133,0,169,192,141,120,6,162,51,160,136,169,5,44,120,6,16,16,80,14,208,12,201,5,208,8,224,51,208,4,192,136,240,4,169,182,133,0,169,3,141,120,6,169,1,44,120,6,48,8,112,6,240,4,201,1,240,4,169,183,133,0,160,184,169,170,141,120,6,32,182,247,13,120,6,32,192,247,200,169,0,141,120,6,32,206,247,13,120,6,32,211,247,200,169,170,141,120,6,32,223,247,45,120,6,32,229,247,200,169,239,141,120,6,32,241,247,45,120,6,32,246,247,200,169,170,141,120,6,32,4,248,77,120,6,32,10,248,200,169,112,141,120,6,32,24,248,77,120,6,32,29,248,200,169,105,141,120,6,32,41,248,109,120,6,32,47,248,200,32,61,248,109,120,6,32,67,248,200,169,127,141,120,6,32,81,248,109,120,6,32,86,248,200,169,128,141,120,6,32,100,248,109,120,6,32,106,248,200,32,120,248,109,120,6,32,125,248,200,169,64,141,120,6,32,137,248,205,120,6,32,142,248,200,72,169,63,141,120,6,104,32,154,248,205,120,6,32,156,248,200,72,169,65,141,120,6,104,205,120,6,32,168,248,200,72,169,0,141,120,6,104,32,178,248,205,120,6,32,181,248,200,72,169,128,141,120,6,104,205,120,6,32,191,248,200,72,169,129,141,120,6,104,205,120,6,32,201,248,200,72,169,127,141,120,6,104,205,120,6,32,211,248,200,169,64,141,120,6,32,49,249,237,120,6,32,55,249,200,169,63,141,120,6,32,71,249,237,120,6,32,76,249,200,169,65,141,120,6,32,92,249,237,120,6,32,98,249,200,169,0,141,120,6,32,114,249,237,120,6,32,118,249,200,169,127,141,120,6,32,128,249,237,120,6,32,132,249,200,169,64,141,120,6,32,137,248,170,236,120,6,32,142,248,200,169,63,141,120,6,32,154,248,236,120,6,32,156,248,200,169,65,141,120,6,236,120,6,32,168,248,200,169,0,141,120,6,32,178,248,170,236,120,6,32,181,248,200,169,128,141,120,6,236,120,6,32,191,248,200,169,129,141,120,6,236,120,6,32,201,248,200,169,127,141,120,6,236,120,6,32,211,248,200,152,170,169,64,141,120,6,32,221,248,204,120,6,32,226,248,232,169,63,141,120,6,32,238,248,204,120,6,32,240,248,232,169,65,141,120,6,204,120,6,32,252,248,232,169,0,141,120,6,32,6,249,204,120,6,32,9,249,232,169,128,141,120,6,204,120,6,32,19,249,232,169,129,141,120,6,204,120,6,32,29,249,232,169,127,141,120,6,204,120,6,32,39,249,232,138,168,32,144,249,141,120,6,78,120,6,173,120,6,32,157,249,200,141,120,6,78,120,6,173,120,6,32,173,249,200,32,189,249,141,120,6,14,120,6,173,120,6,32,195,249,200,141,120,6,14,120,6,173,120,6,32,212,249,200,32,228,249,141,120,6,110,120,6,173,120,6,32,234,249,200,141,120,6,110,120,6,173,120,6,32,251,249,200,32,10,250,141,120,6,46,120,6,173,120,6,32,16,250,200,141,120,6,46,120,6,173,120,6,32,33,250,169,255,141,120,6,133,1,36,1,56,238,120,6,208,13,48,11,80,9,144,7,173,120,6,201,0,240,4,169,229,133,0,169,127,141,120,6,184,24,238,120,6,240,13,16,11,112,9,176,7,173,120,6,201,128,240,4,169,230,133,0,169,0,141,120,6,36,1,56,206,120,6,240,13,16,11,80,9,144,7,173,120,6,201,255,240,4,169,231,133,0,169,128,141,120,6,184,24,206,120,6,240,13,48,11,112,9,176,7,173,120,6,201,127,240,4,169,232,133,0,169,1,141,120,6,206,120,6,240,4,169,233,133,0,96,169,163,133,51,169,137,141,0,3,169,18,141,69,2,169,255,133,1,162,101,169,0,133,137,169,3,133,138,160,0,56,169,0,184,177,137,240,12,144,10,112,8,201,137,208,4,224,101,240,4,169,234,133,0,169,255,133,151,133,152,36,152,160,52,177,151,201,163,208,2,176,4,169,235,133,0,165,0,72,169,70,133,255,169,1,133,0,160,255,177,255,201,18,240,4,104,169,236,72,104,133,0,162,237,169,0,133,51,169,4,133,52,160,0,24,169,255,133,1,36,1,169,170,141,0,4,169,85,17,51,176,8,16,6,201,255,208,2,112,2,134,0,232,56,184,169,0,17,51,240,6,112,4,144,2,48,2,134,0,232,24,36,1,169,85,49,51,208,6,80,4,176,2,16,2,134,0,232,56,184,169,239,141,0,4,169,248,49,51,144,8,16,6,201,232,208,2,80,2,134,0,232,24,36,1,169,170,141,0,4,169,95,81,51,176,8,16,6,201,245,208,2,112,2,134,0,232,56,184,169,112,141,0,4,81,51,208,6,112,4,144,2,16,2,134,0,232,24,36,1,169,105,141,0,4,169,0,113,51,48,8,176,6,201,105,208,2,80,2,134,0,232,56,36,1,169,0,113,51,48,8,176,6,201,106,208,2,80,2,134,0,232,56,184,169,127,141,0,4,113,51,16,8,176,6,201,255,208,2,112,2,134,0,232,24,36,1,169,128,141,0,4,169,127,113,51,16,8,176,6,201,255,208,2,80,2,134,0,232,56,184,169,128,141,0,4,169,127,113,51,208,6,48,4,112,2,176,2,134,0,232,36,1,169,64,141,0,4,209,51,48,6,144,4,208,2,112,2,134,0,232,184,206,0,4,209,51,240,6,48,4,144,2,80,2,134,0,232,238,0,4,238,0,4,209,51,240,2,48,2,134,0,232,169,0,141,0,4,169,128,209,51,240,4,16,2,176,2,134,0,232,160,128,140,0,4,160,0,209,51,208,4,48,2,176,2,134,0,232,238,0,4,209,51,176,4,240,2,48,2,134,0,232,206,0,4,206,0,4,209,51,144,4,240,2,16,2,134,0,96,169,0,133,51,169,4,133,52,160,0,162,1,36,1,169,64,141,0,4,56,241,51,48,10,144,8,208,6,112,4,201,0,240,2,134,0,232,184,56,169,64,206,0,4,241,51,240,10,48,8,144,6,112,4,201,1,240,2,134,0,232,169,64,56,36,1,238,0,4,238,0,4,241,51,176,10,240,8,16,6,112,4,201,255,240,2,134,0,232,24,169,0,141,0,4,169,128,241,51,144,4,201,127,240,2,134,0,232,56,169,127,141,0,4,169,129,241,51,80,6,144,4,201,2,240,2,134,0,232,169,0,169,135,145,51,173,0,4,201,135,240,2,134,0,232,169,126,141,0,2,169,219,141,1,2,108,0,2,169,0,141,255,2,169,1,141,0,3,169,3,141,0,2,169,169,141,0,1,169,85,141,1,1,169,96,141,2,1,169,169,141,0,3,169,170,141,1,3,169,96,141,2,3,32,181,219,201,170,240,2,134,0,96,108,255,2,169,255,133,1,169,170,133,51,169,187,133,137,162,0,169,102,36,1,56,160,0,180,51,16,18,240,16,80,14,144,12,201,102,208,8,224,0,208,4,192,170,240,4,169,8,133,0,162,138,169,102,184,24,160,0,180,255,16,18,240,16,112,14,176,12,192,187,208,8,201,102,208,4,224,138,240,4,169,9,133,0,36,1,56,160,68,162,0,148,51,165,51,144,24,201,68,208,20,80,18,24,184,160,153,162,128,148,133,165,5,176,6,201,153,208,2,80,4,169,10,133,0,160,11,169,170,162,120,133,120,32,182,247,21,0,32,192,247,200,169,0,133,120,32,206,247,21,0,32,211,247,200,169,170,133,120,32,223,247,53,0,32,229,247,200,169,239,133,120,32,241,247,53,0,32,246,247,200,169,170,133,120,32,4,248,85,0,32,10,248,200,169,112,133,120,32,24,248,85,0,32,29,248,200,169,105,133,120,32,41,248,117,0,32,47,248,200,32,61,248,117,0,32,67,248,200,169,127,133,120,32,81,248,117,0,32,86,248,200,169,128,133,120,32,100,248,117,0,32,106,248,200,32,120,248,117,0,32,125,248,200,169,64,133,120,32,137,248,213,0,32,142,248,200,72,169,63,133,120,104,32,154,248,213,0,32,156,248,200,72,169,65,133,120,104,213,0,32,168,248,200,72,169,0,133,120,104,32,178,248,213,0,32,181,248,200,72,169,128,133,120,104,213,0,32,191,248,200,72,169,129,133,120,104,213,0,32,201,248,200,72,169,127,133,120,104,213,0,32,211,248,200,169,64,133,120,32,49,249,245,0,32,55,249,200,169,63,133,120,32,71,249,245,0,32,76,249,200,169,65,133,120,32,92,249,245,0,32,98,249,200,169,0,133,120,32,114,249,245,0,32,118,249,200,169,127,133,120,32,128,249,245,0,32,132,249,169,170,133,51,169,187,133,137,162,0,160,102,36,1,56,169,0,181,51,16,18,240,16,80,14,144,12,192,102,208,8,224,0,208,4,201,170,240,4,169,34,133,0,162,138,160,102,184,24,169,0,181,255,16,18,240,16,112,14,176,12,201,187,208,8,192,102,208,4,224,138,240,4,169,35,133,0,36,1,56,169,68,162,0,149,51,165,51,144,24,201,68,208,20,80,18,24,184,169,153,162,128,149,133,165,5,176,6,201,153,208,2,80,4,169,36,133,0,160,37,162,120,32,144,249,149,0,86,0,181,0,32,157,249,200,149,0,86,0,181,0,32,173,249,200,32,189,249,149,0,22,0,181,0,32,195,249,200,149,0,22,0,181,0,32,212,249,200,32,228,249,149,0,118,0,181,0,32,234,249,200,149,0,118,0,181,0,32,251,249,200,32,10,250,149,0,54,0,181,0,32,16,250,200,149,0,54,0,181,0,32,33,250,169,255,149,0,133,1,36,1,56,246,0,208,12,48,10,80,8,144,6,181,0,201,0,240,4,169,45,133,0,169,127,149,0,184,24,246,0,240,12,16,10,112,8,176,6,181,0,201,128,240,4,169,46,133,0,169,0,149,0,36,1,56,214,0,240,12,16,10,80,8,144,6,181,0,201,255,240,4,169,47,133,0,169,128,149,0,184,24,214,0,240,12,48,10,112,8,176,6,181,0,201,127,240,4,169,48,133,0,169,1,149,0,214,0,240,4,169,49,133,0,169,51,133,120,169,68,160,120,162,0,56,36,1,182,0,144,18,80,16,48,14,240,12,224,51,208,8,192,120,208,4,201,68,240,4,169,50,133,0,169,151,133,127,169,71,160,255,162,0,24,184,182,128,176,18,112,16,16,14,240,12,224,151,208,8,192,255,208,4,201,71,240,4,169,51,133,0,169,0,133,127,169,71,160,255,162,105,24,184,150,128,176,24,112,22,48,20,240,18,224,105,208,14,192,255,208,10,201,71,208,6,165,127,201,105,240,4,169,52,133,0,169,245,133,79,169,71,160,79,36,1,162,0,56,150,0,144,22,80,20,48,18,208,16,224,0,208,12,192,79,208,8,201,71,208,4,165,79,240,4,169,53,133,0,96,169,137,141,0,3,169,163,133,51,169,18,141,69,2,162,101,160,0,56,169,0,184,185,0,3,240,12,144,10,112,8,201,137,208,4,224,101,240,4,169,54,133,0,169,255,133,1,36,1,160,52,185,255,255,201,163,208,2,176,4,169,55,133,0,169,70,133,255,160,255,185,70,1,201,18,240,4,169,56,133,0,162,57,24,169,255,133,1,36,1,169,170,141,0,4,169,85,160,0,25,0,4,176,8,16,6,201,255,208,2,112,2,134,0,232,56,184,169,0,25,0,4,240,6,112,4,144,2,48,2,134,0,232,24,36,1,169,85,57,0,4,208,6,80,4,176,2,16,2,134,0,232,56,184,169,239,141,0,4,169,248,57,0,4,144,8,16,6,201,232,208,2,80,2,134,0,232,24,36,1,169,170,141,0,4,169,95,89,0,4,176,8,16,6,201,245,208,2,112,2,134,0,232,56,184,169,112,141,0,4,89,0,4,208,6,112,4,144,2,16,2,134,0,232,24,36,1,169,105,141,0,4,169,0,121,0,4,48,8,176,6,201,105,208,2,80,2,134,0,232,56,36,1,169,0,121,0,4,48,8,176,6,201,106,208,2,80,2,134,0,232,56,184,169,127,141,0,4,121,0,4,16,8,176,6,201,255,208,2,112,2,134,0,232,24,36,1,169,128,141,0,4,169,127,121,0,4,16,8,176,6,201,255,208,2,80,2,134,0,232,56,184,169,128,141,0,4,169,127,121,0,4,208,6,48,4,112,2,176,2,134,0,232,36,1,169,64,141,0,4,217,0,4,48,6,144,4,208,2,112,2,134,0,232,184,206,0,4,217,0,4,240,6,48,4,144,2,80,2,134,0,232,238,0,4,238,0,4,217,0,4,240,2,48,2,134,0,232,169,0,141,0,4,169,128,217,0,4,240,4,16,2,176,2,134,0,232,160,128,140,0,4,160,0,217,0,4,208,4,48,2,176,2,134,0,232,238,0,4,217,0,4,176,4,240,2,48,2,134,0,232,206,0,4,206,0,4,217,0,4,144,4,240,2,16,2,134,0,232,36,1,169,64,141,0,4,56,249,0,4,48,10,144,8,208,6,112,4,201,0,240,2,134,0,232,184,56,169,64,206,0,4,249,0,4,240,10,48,8,144,6,112,4,201,1,240,2,134,0,232,169,64,56,36,1,238,0,4,238,0,4,249,0,4,176,10,240,8,16,6,112,4,201,255,240,2,134,0,232,24,169,0,141,0,4,169,128,249,0,4,144,4,201,127,240,2,134,0,232,56,169,127,141,0,4,169,129,249,0,4,80,6,144,4,201,2,240,2,134,0,232,169,0,169,135,153,0,4,173,0,4,201,135,240,2,134,0,96,169,255,133,1,169,170,141,51,6,169,187,141,137,6,162,0,169,102,36,1,56,160,0,188,51,6,16,18,240,16,80,14,144,12,201,102,208,8,224,0,208,4,192,170,240,4,169,81,133,0,162,138,169,102,184,24,160,0,188,255,5,16,18,240,16,112,14,176,12,192,187,208,8,201,102,208,4,224,138,240,4,169,82,133,0,160,83,169,170,162,120,141,120,6,32,182,247,29,0,6,32,192,247,200,169,0,141,120,6,32,206,247,29,0,6,32,211,247,200,169,170,141,120,6,32,223,247,61,0,6,32,229,247,200,169,239,141,120,6,32,241,247,61,0,6,32,246,247,200,169,170,141,120,6,32,4,248,93,0,6,32,10,248,200,169,112,141,120,6,32,24,248,93,0,6,32,29,248,200,169,105,141,120,6,32,41,248,125,0,6,32,47,248,200,32,61,248,125,0,6,32,67,248,200,169,127,141,120,6,32,81,248,125,0,6,32,86,248,200,169,128,141,120,6,32,100,248,125,0,6,32,106,248,200,32,120,248,125,0,6,32,125,248,200,169,64,141,120,6,32,137,248,221,0,6,32,142,248,200,72,169,63,141,120,6,104,32,154,248,221,0,6,32,156,248,200,72,169,65,141,120,6,104,221,0,6,32,168,248,200,72,169,0,141,120,6,104,32,178,248,221,0,6,32,181,248,200,72,169,128,141,120,6,104,221,0,6,32,191,248,200,72,169,129,141,120,6,104,221,0,6,32,201,248,200,72,169,127,141,120,6,104,221,0,6,32,211,248,200,169,64,141,120,6,32,49,249,253,0,6,32,55,249,200,169,63,141,120,6,32,71,249,253,0,6,32,76,249,200,169,65,141,120,6,32,92,249,253,0,6,32,98,249,200,169,0,141,120,6,32,114,249,253,0,6,32,118,249,200,169,127,141,120,6,32,128,249,253,0,6,32,132,249,169,170,141,51,6,169,187,141,137,6,162,0,160,102,36,1,56,169,0,189,51,6,16,18,240,16,80,14,144,12,192,102,208,8,224,0,208,4,201,170,240,4,169,106,133,0,162,138,160,102,184,24,169,0,189,255,5,16,18,240,16,112,14,176,12,201,187,208,8,192,102,208,4,224,138,240,4,169,107,133,0,36,1,56,169,68,162,0,157,51,6,173,51,6,144,26,201,68,208,22,80,20,24,184,169,153,162,128,157,133,5,173,5,6,176,6,201,153,208,2,80,4,169,108,133,0,160,109,162,109,32,144,249,157,0,6,94,0,6,189,0,6,32,157,249,200,157,0,6,94,0,6,189,0,6,32,173,249,200,32,189,249,157,0,6,30,0,6,189,0,6,32,195,249,200,157,0,6,30,0,6,189,0,6,32,212,249,200,32,228,249,157,0,6,126,0,6,189,0,6,32,234,249,200,157,0,6,126,0,6,189,0,6,32,251,249,200,32,10,250,157,0,6,62,0,6,189,0,6,32,16,250,200,157,0,6,62,0,6,189,0,6,32,33,250,169,255,157,0,6,133,1,36,1,56,254,0,6,208,13,48,11,80,9,144,7,189,0,6,201,0,240,4,169,117,133,0,169,127,157,0,6,184,24,254,0,6,240,13,16,11,112,9,176,7,189,0,6,201,128,240,4,169,118,133,0,169,0,157,0,6,36,1,56,222,0,6,240,13,16,11,80,9,144,7,189,0,6,201,255,240,4,169,119,133,0,169,128,157,0,6,184,24,222,0,6,240,13,48,11,112,9,176,7,189,0,6,201,127,240,4,169,120,133,0,169,1,157,0,6,222,0,6,240,4,169,121,133,0,169,51,141,120,6,169,68,160,120,162,0,56,36,1,190,0,6,144,18,80,16,48,14,240,12,224,51,208,8,192,120,208,4,201,68,240,4,169,122,133,0,169,151,141,127,6,169,71,160,255,162,0,24,184,190,128,5,176,18,112,16,16,14,240,12,224,151,208,8,192,255,208,4,201,71,240,4,169,123,133,0,96,169,85,141,128,5,169,170,141,50,4,169,128,133,67,169,5,133,68,169,50,133,69,169,4,133,70,162,3,160,119,169,255,133,1,36,1,56,169,0,163,64,234,234,234,234,240,18,48,16,80,14,144,12,201,85,208,8,224,85,208,4,192,119,240,4,169,124,133,0,162,5,160,51,184,24,169,0,163,64,234,234,234,234,240,18,16,16,112,14,176,12,201,170,208,8,224,170,208,4,192,51,240,4,169,125,133,0,169,135,133,103,169,50,133,104,160,87,36,1,56,169,0,167,103,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,126,133,0,160,83,184,24,169,0,167,104,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,83,240,4,169,127,133,0,169,135,141,119,5,169,50,141,120,5,160,87,36,1,56,169,0,175,119,5,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,128,133,0,160,83,184,24,169,0,175,120,5,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,83,240,4,169,129,133,0,169,255,133,67,169,4,133,68,169,50,133,69,169,4,133,70,169,85,141,128,5,169,170,141,50,4,162,3,160,129,36,1,56,169,0,179,67,234,234,234,234,240,18,48,16,80,14,144,12,201,85,208,8,224,85,208,4,192,129,240,4,169,130,133,0,162,5,160,0,184,24,169,0,179,69,234,234,234,234,240,18,16,16,112,14,176,12,201,170,208,8,224,170,208,4,192,0,240,4,169,131,133,0,169,135,133,103,169,50,133,104,160,87,36,1,56,169,0,183,16,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,87,240,4,169,132,133,0,160,255,184,24,169,0,183,105,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,255,240,4,169,133,133,0,169,135,141,135,5,169,50,141,136,5,160,48,36,1,56,169,0,191,87,5,234,234,234,234,240,18,16,16,80,14,144,12,201,135,208,8,224,135,208,4,192,48,240,4,169,134,133,0,160,64,184,24,169,0,191,72,5,234,234,234,234,240,18,48,16,112,14,176,12,201,50,208,8,224,50,208,4,192,64,240,4,169,135,133,0,96,169,192,133,1,169,0,141,137,4,169,137,133,96,169,4,133,97,160,68,162,23,169,62,36,1,24,131,73,234,234,234,234,208,25,176,23,80,21,16,19,201,62,208,15,192,68,208,11,224,23,208,7,173,137,4,201,22,240,4,169,136,133,0,160,68,162,122,169,102,56,184,131,230,234,234,234,234,240,25,144,23,112,21,48,19,201,102,208,15,192,68,208,11,224,122,208,7,173,137,4,201,98,240,4,169,137,133,0,169,255,133,73,160,68,162,170,169,85,36,1,24,135,73,234,234,234,234,240,24,176,22,80,20,16,18,201,85,208,14,192,68,208,10,224,170,208,6,165,73,201,0,240,4,169,138,133,0,169,0,133,86,160,88,162,239,169,102,56,184,135,86,234,234,234,234,240,24,144,22,112,20,48,18,201,102,208,14,192,88,208,10,224,239,208,6,165,86,201,102,240,4,169,139,133,0,169,255,141,73,5,160,229,162,175,169,245,36,1,24,143,73,5,234,234,234,234,240,25,176,23,80,21,16,19,201,245,208,15,192,229,208,11,224,175,208,7,173,73,5,201,165,240,4,169,140,133,0,169,0,141,86,5,160,88,162,179,169,151,56,184,143,86,5,234,234,234,234,240,25,144,23,112,21,16,19,201,151,208,15,192,88,208,11,224,179,208,7,173,86,5,201,147,240,4,169,141,133,0,169,255,133,73,160,255,162,170,169,85,36,1,24,151,74,234,234,234,234,240,24,176,22,80,20,16,18,201,85,208,14,192,255,208,10,224,170,208,6,165,73,201,0,240,4,169,142,133,0,169,0,133,86,160,6,162,239,169,102,56,184,151,80,234,234,234,234,240,24,144,22,112,20,48,18,201,102,208,14,192,6,208,10,224,239,208,6,165,86,201,102,240,4,169,143,133,0,96,160,144,32,49,249,235,64,234,234,234,234,32,55,249,200,32,71,249,235,63,234,234,234,234,32,76,249,200,32,92,249,235,65,234,234,234,234,32,98,249,200,32,114,249,235,0,234,234,234,234,32,118,249,200,32,128,249,235,127,234,234,234,234,32,132,249,96,169,255,133,1,160,149,162,2,169,71,133,71,169,6,133,72,169,235,141,71,6,32,49,250,195,69,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,195,69,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,195,69,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,200,169,235,133,71,32,49,250,199,71,234,234,234,234,32,55,250,165,71,201,234,240,2,132,0,200,169,0,133,71,32,66,250,199,71,234,234,234,234,32,71,250,165,71,201,255,240,2,132,0,200,169,55,133,71,32,84,250,199,71,234,234,234,234,32,89,250,165,71,201,54,240,2,132,0,200,169,235,141,71,6,32,49,250,207,71,6,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,207,71,6,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,207,71,6,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,169,235,141,71,6,169,72,133,69,169,5,133,70,160,255,32,49,250,211,69,234,234,8,72,160,158,104,40,32,55,250,173,71,6,201,234,240,2,132,0,160,255,169,0,141,71,6,32,66,250,211,69,234,234,8,72,160,159,104,40,32,71,250,173,71,6,201,255,240,2,132,0,160,255,169,55,141,71,6,32,84,250,211,69,234,234,8,72,160,160,104,40,32,89,250,173,71,6,201,54,240,2,132,0,160,161,162,255,169,235,133,71,32,49,250,215,72,234,234,234,234,32,55,250,165,71,201,234,240,2,132,0,200,169,0,133,71,32,66,250,215,72,234,234,234,234,32,71,250,165,71,201,255,240,2,132,0,200,169,55,133,71,32,84,250,215,72,234,234,234,234,32,89,250,165,71,201,54,240,2,132,0,169,235,141,71,6,160,255,32,49,250,219,72,5,234,234,8,72,160,164,104,40,32,55,250,173,71,6,201,234,240,2,132,0,160,255,169,0,141,71,6,32,66,250,219,72,5,234,234,8,72,160,165,104,40,32,71,250,173,71,6,201,255,240,2,132,0,160,255,169,55,141,71,6,32,84,250,219,72,5,234,234,8,72,160,166,104,40,32,89,250,173,71,6,201,54,240,2,132,0,160,167,162,255,169,235,141,71,6,32,49,250,223,72,5,234,234,234,234,32,55,250,173,71,6,201,234,240,2,132,0,200,169,0,141,71,6,32,66,250,223,72,5,234,234,234,234,32,71,250,173,71,6,201,255,240,2,132,0,200,169,55,141,71,6,32,84,250,223,72,5,234,234,234,234,32,89,250,173,71,6,201,54,240,2,132,0,96,169,255,133,1,160,170,162,2,169,71,133,71,169,6,133,72,169,235,141,71,6,32,177,250,227,69,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,227,69,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,227,69,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,200,169,235,133,71,32,177,250,231,71,234,234,234,234,32,183,250,165,71,201,236,240,2,132,0,200,169,255,133,71,32,194,250,231,71,234,234,234,234,32,199,250,165,71,201,0,240,2,132,0,200,169,55,133,71,32,212,250,231,71,234,234,234,234,32,218,250,165,71,201,56,240,2,132,0,200,169,235,141,71,6,32,177,250,239,71,6,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,239,71,6,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,239,71,6,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,169,235,141,71,6,169,72,133,69,169,5,133,70,160,255,32,177,250,243,69,234,234,8,72,160,179,104,40,32,183,250,173,71,6,201,236,240,2,132,0,160,255,169,255,141,71,6,32,194,250,243,69,234,234,8,72,160,180,104,40,32,199,250,173,71,6,201,0,240,2,132,0,160,255,169,55,141,71,6,32,212,250,243,69,234,234,8,72,160,181,104,40,32,218,250,173,71,6,201,56,240,2,132,0,160,182,162,255,169,235,133,71,32,177,250,247,72,234,234,234,234,32,183,250,165,71,201,236,240,2,132,0,200,169,255,133,71,32,194,250,247,72,234,234,234,234,32,199,250,165,71,201,0,240,2,132,0,200,169,55,133,71,32,212,250,247,72,234,234,234,234,32,218,250,165,71,201,56,240,2,132,0,169,235,141,71,6,160,255,32,177,250,251,72,5,234,234,8,72,160,185,104,40,32,183,250,173,71,6,201,236,240,2,132,0,160,255,169,255,141,71,6,32,194,250,251,72,5,234,234,8,72,160,186,104,40,32,199,250,173,71,6,201,0,240,2,132,0,160,255,169,55,141,71,6,32,212,250,251,72,5,234,234,8,72,160,187,104,40,32,218,250,173,71,6,201,56,240,2,132,0,160,188,162,255,169,235,141,71,6,32,177,250,255,72,5,234,234,234,234,32,183,250,173,71,6,201,236,240,2,132,0,200,169,255,141,71,6,32,194,250,255,72,5,234,234,234,234,32,199,250,173,71,6,201,0,240,2,132,0,200,169,55,141,71,6,32,212,250,255,72,5,234,234,234,234,32,218,250,173,71,6,201,56,240,2,132,0,96,169,255,133,1,160,191,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,123,250,3,69,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,3,69,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,3,69,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,200,169,165,133,71,32,123,250,7,71,234,234,234,234,32,129,250,165,71,201,74,240,2,132,0,200,169,41,133,71,32,140,250,7,71,234,234,234,234,32,145,250,165,71,201,82,240,2,132,0,200,169,55,133,71,32,158,250,7,71,234,234,234,234,32,164,250,165,71,201,110,240,2,132,0,200,169,165,141,71,6,32,123,250,15,71,6,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,15,71,6,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,15,71,6,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,123,250,19,69,234,234,8,72,160,200,104,40,32,129,250,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,140,250,19,69,234,234,8,72,160,201,104,40,32,145,250,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,158,250,19,69,234,234,8,72,160,202,104,40,32,164,250,173,71,6,201,110,240,2,132,0,160,203,162,255,169,165,133,71,32,123,250,23,72,234,234,234,234,32,129,250,165,71,201,74,240,2,132,0,200,169,41,133,71,32,140,250,23,72,234,234,234,234,32,145,250,165,71,201,82,240,2,132,0,200,169,55,133,71,32,158,250,23,72,234,234,234,234,32,164,250,165,71,201,110,240,2,132,0,169,165,141,71,6,160,255,32,123,250,27,72,5,234,234,8,72,160,206,104,40,32,129,250,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,140,250,27,72,5,234,234,8,72,160,207,104,40,32,145,250,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,158,250,27,72,5,234,234,8,72,160,208,104,40,32,164,250,173,71,6,201,110,240,2,132,0,160,209,162,255,169,165,141,71,6,32,123,250,31,72,5,234,234,234,234,32,129,250,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,140,250,31,72,5,234,234,234,234,32,145,250,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,158,250,31,72,5,234,234,234,234,32,164,250,173,71,6,201,110,240,2,132,0,96,169,255,133,1,160,212,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,83,251,35,69,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,35,69,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,35,69,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,200,169,165,133,71,32,83,251,39,71,234,234,234,234,32,89,251,165,71,201,74,240,2,132,0,200,169,41,133,71,32,100,251,39,71,234,234,234,234,32,105,251,165,71,201,82,240,2,132,0,200,169,55,133,71,32,104,250,39,71,234,234,234,234,32,110,250,165,71,201,111,240,2,132,0,200,169,165,141,71,6,32,83,251,47,71,6,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,47,71,6,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,47,71,6,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,83,251,51,69,234,234,8,72,160,221,104,40,32,89,251,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,100,251,51,69,234,234,8,72,160,222,104,40,32,105,251,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,104,250,51,69,234,234,8,72,160,223,104,40,32,110,250,173,71,6,201,111,240,2,132,0,160,224,162,255,169,165,133,71,32,83,251,55,72,234,234,234,234,32,89,251,165,71,201,74,240,2,132,0,200,169,41,133,71,32,100,251,55,72,234,234,234,234,32,105,251,165,71,201,82,240,2,132,0,200,169,55,133,71,32,104,250,55,72,234,234,234,234,32,110,250,165,71,201,111,240,2,132,0,169,165,141,71,6,160,255,32,83,251,59,72,5,234,234,8,72,160,227,104,40,32,89,251,173,71,6,201,74,240,2,132,0,160,255,169,41,141,71,6,32,100,251,59,72,5,234,234,8,72,160,228,104,40,32,105,251,173,71,6,201,82,240,2,132,0,160,255,169,55,141,71,6,32,104,250,59,72,5,234,234,8,72,160,229,104,40,32,110,250,173,71,6,201,111,240,2,132,0,160,230,162,255,169,165,141,71,6,32,83,251,63,72,5,234,234,234,234,32,89,251,173,71,6,201,74,240,2,132,0,200,169,41,141,71,6,32,100,251,63,72,5,234,234,234,234,32,105,251,173,71,6,201,82,240,2,132,0,200,169,55,141,71,6,32,104,250,63,72,5,234,234,234,234,32,110,250,173,71,6,201,111,240,2,132,0,96,169,255,133,1,160,233,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,29,251,67,69,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,67,69,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,67,69,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,200,169,165,133,71,32,29,251,71,71,234,234,234,234,32,35,251,165,71,201,82,240,2,132,0,200,169,41,133,71,32,46,251,71,71,234,234,234,234,32,51,251,165,71,201,20,240,2,132,0,200,169,55,133,71,32,64,251,71,71,234,234,234,234,32,70,251,165,71,201,27,240,2,132,0,200,169,165,141,71,6,32,29,251,79,71,6,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,79,71,6,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,79,71,6,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,29,251,83,69,234,234,8,72,160,242,104,40,32,35,251,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,46,251,83,69,234,234,8,72,160,243,104,40,32,51,251,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,64,251,83,69,234,234,8,72,160,244,104,40,32,70,251,173,71,6,201,27,240,2,132,0,160,245,162,255,169,165,133,71,32,29,251,87,72,234,234,234,234,32,35,251,165,71,201,82,240,2,132,0,200,169,41,133,71,32,46,251,87,72,234,234,234,234,32,51,251,165,71,201,20,240,2,132,0,200,169,55,133,71,32,64,251,87,72,234,234,234,234,32,70,251,165,71,201,27,240,2,132,0,169,165,141,71,6,160,255,32,29,251,91,72,5,234,234,8,72,160,248,104,40,32,35,251,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,46,251,91,72,5,234,234,8,72,160,249,104,40,32,51,251,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,64,251,91,72,5,234,234,8,72,160,250,104,40,32,70,251,173,71,6,201,27,240,2,132,0,160,251,162,255,169,165,141,71,6,32,29,251,95,72,5,234,234,234,234,32,35,251,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,46,251,95,72,5,234,234,234,234,32,51,251,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,64,251,95,72,5,234,234,234,234,32,70,251,173,71,6,201,27,240,2,132,0,96,169,255,133,1,160,1,162,2,169,71,133,71,169,6,133,72,169,165,141,71,6,32,233,250,99,69,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,99,69,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,99,69,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,200,169,165,133,71,32,233,250,103,71,234,234,234,234,32,239,250,165,71,201,82,240,2,132,0,200,169,41,133,71,32,250,250,103,71,234,234,234,234,32,255,250,165,71,201,20,240,2,132,0,200,169,55,133,71,32,10,251,103,71,234,234,234,234,32,16,251,165,71,201,155,240,2,132,0,200,169,165,141,71,6,32,233,250,111,71,6,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,111,71,6,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,111,71,6,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,169,165,141,71,6,169,72,133,69,169,5,133,70,160,255,32,233,250,115,69,234,234,8,72,160,10,104,40,32,239,250,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,250,250,115,69,234,234,8,72,160,11,104,40,32,255,250,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,10,251,115,69,234,234,8,72,160,12,104,40,32,16,251,173,71,6,201,155,240,2,132,0,160,13,162,255,169,165,133,71,32,233,250,119,72,234,234,234,234,32,239,250,165,71,201,82,240,2,132,0,200,169,41,133,71,32,250,250,119,72,234,234,234,234,32,255,250,165,71,201,20,240,2,132,0,200,169,55,133,71,32,10,251,119,72,234,234,234,234,32,16,251,165,71,201,155,240,2,132,0,169,165,141,71,6,160,255,32,233,250,123,72,5,234,234,8,72,160,16,104,40,32,239,250,173,71,6,201,82,240,2,132,0,160,255,169,41,141,71,6,32,250,250,123,72,5,234,234,8,72,160,17,104,40,32,255,250,173,71,6,201,20,240,2,132,0,160,255,169,55,141,71,6,32,10,251,123,72,5,234,234,8,72,160,18,104,40,32,16,251,173,71,6,201,155,240,2,132,0,160,19,162,255,169,165,141,71,6,32,233,250,127,72,5,234,234,234,234,32,239,250,173,71,6,201,82,240,2,132,0,200,169,41,141,71,6,32,250,250,127,72,5,234,234,234,234,32,255,250,173,71,6,201,20,240,2,132,0,200,169,55,141,71,6,32,10,251,127,72,5,234,234,234,234,32,16,251,173,71,6,201,155,240,2,132,0,96,24,169,255,133,1,36,1,169,85,96,176,9,16,7,201,255,208,3,80,1,96,132,0,96,56,184,169,0,96,208,7,112,5,144,3,48,1,96,132,0,96,24,36,1,169,85,96,208,7,80,5,176,3,48,1,96,132,0,96,56,184,169,248,96,144,9,16,7,201,232,208,3,112,1,96,132,0,96,24,36,1,169,95,96,176,9,16,7,201,245,208,3,80,1,96,132,0,96,56,184,169,112,96,208,7,112,5,144,3,48,1,96,132,0,96,24,36,1,169,0,96,48,9,176,7,201,105,208,3,112,1,96,132,0,96,56,36,1,169,0,96,48,9,176,7,201,106,208,3,112,1,96,132,0,96,56,184,169,127,96,16,9,176,7,201,255,208,3,80,1,96,132,0,96,24,36,1,169,127,96,16,9,176,7,201,255,208,3,112,1,96,132,0,96,56,184,169,127,96,208,7,48,5,112,3,144,1,96,132,0,96,36,1,169,64,96,48,7,144,5,208,3,80,1,96,132,0,96,184,96,240,7,48,5,144,3,112,1,96,132,0,96,240,5,16,3,16,1,96,132,0,96,169,128,96,240,5,16,3,144,1,96,132,0,96,208,5,48,3,144,1,96,132,0,96,176,5,240,3,16,1,96,132,0,96,144,5,240,3,48,1,96,132,0,96,36,1,160,64,96,48,7,144,5,208,3,80,1,96,134,0,96,184,96,240,7,48,5,144,3,112,1,96,134,0,96,240,5,16,3,16,1,96,134,0,96,160,128,96,240,5,16,3,144,1,96,134,0,96,208,5,48,3,144,1,96,134,0,96,176,5,240,3,16,1,96,134,0,96,144,5,240,3,48,1,96,134,0,96,36,1,169,64,56,96,48,11,144,9,208,7,112,5,201,0,208,1,96,132,0,96,184,56,169,64,96,240,11,48,9,144,7,112,5,201,1,208,1,96,132,0,96,169,64,56,36,1,96,176,11,240,9,16,7,112,5,201,255,208,1,96,132,0,96,24,169,128,96,144,5,201,127,208,1,96,132,0,96,56,169,129,96,80,7,144,5,201,2,208,1,96,132,0,96,162,85,169,255,133,1,234,36,1,56,169,1,96,144,27,208,25,48,23,80,21,201,0,208,17,184,169,170,96,176,11,240,9,48,7,112,5,201,85,208,1,96,132,0,96,36,1,56,169,128,96,144,28,208,26,48,24,80,22,201,0,208,18,184,169,85,56,96,176,11,240,9,16,7,112,5,201,170,208,1,96,132,0,96,36,1,56,169,1,96,144,28,240,26,16,24,80,22,201,128,208,18,184,24,169,85,96,144,11,240,9,48,7,112,5,201,42,208,1,96,132,0,36,1,56,169,128,96,144,28,240,26,48,24,80,22,201,1,208,18,184,24,169,85,96,176,11,240,9,16,7,112,5,201,170,208,1,96,132,0,96,36,1,24,169,64,96,80,44,176,42,48,40,201,64,208,36,96,184,56,169,255,96,112,28,208,26,48,24,144,22,201,255,208,18,96,36,1,169,240,96,80,10,240,8,16,6,144,4,201,240,240,2,132,0,96,36,1,56,169,117,96,80,118,240,116,48,114,176,112,201,101,208,108,96,36,1,24,169,179,96,80,99,144,97,16,95,201,251,208,91,96,184,24,169,195,96,112,83,240,81,16,79,176,77,201,211,208,73,96,36,1,56,169,16,96,80,64,240,62,48,60,176,58,201,126,208,54,96,36,1,24,169,64,96,112,45,176,43,48,41,201,83,208,37,96,184,56,169,255,96,112,29,240,27,16,25,144,23,201,255,208,19,96,36,1,56,169,240,96,112,10,240,8,16,6,144,4,201,184,240,2,132,0,96,36,1,24,169,178,96,112,42,144,40,48,38,201,5,208,34,96,184,24,169,66,96,112,26,48,24,176,22,201,87,208,18,96,36,1,56,169,117,96,112,9,48,7,144,5,201,17,208,1,96,133,0,36,1,24,169,179,96,80,80,144,78,16,76,201,225,208,72,96,184,24,169,66,96,112,64,240,62,48,60,144,58,201,86,208,54,96,36,1,56,169,117,96,80,45,240,43,48,41,144,39,201,110,208,35,96,36,1,24,169,179,96,80,26,144,24,48,22,201,2,208,18,96,184,24,169,66,96,112,10,240,8,48,6,176,4,201,66,240,2,132,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,255,128,128,0,0,0,0,0,255,0,0,0,0,0,1,1,255,1,1,0,0,0,0,0,0,0,0,0,0,0,124,254,0,192,192,254,124,0,254,254,0,240,192,254,254,0,198,198,2,254,198,198,198,0,204,216,0,240,216,204,198,0,198,238,2,214,198,198,198,0,198,198,2,214,206,198,198,0,124,254,2,198,198,254,124,0,252,254,2,252,192,192,192,0,204,204,0,120,48,48,48,0,24,24,24,24,24,24,24,0,252,254,2,6,28,112,254,0,252,254,2,60,60,2,254,0,24,24,216,216,254,24,24,0,254,254,0,128,252,6,254,0,124,254,0,192,252,198,254,0,254,254,6,12,24,16,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,255,255,24,24,24,24,24,24,255,255,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,24,24,0,51,51,102,0,0,0,0,0,102,102,255,102,255,102,102,0,24,62,96,60,6,124,24,0,98,102,12,24,48,102,70,0,60,102,60,56,103,102,63,0,12,12,24,0,0,0,0,0,12,24,48,48,48,24,12,0,48,24,12,12,12,24,48,0,0,102,60,255,60,102,0,0,0,24,24,126,24,24,0,0,0,0,0,0,0,24,24,48,0,0,0,110,59,0,0,0,0,0,0,0,0,24,24,0,0,3,6,12,24,48,96,0,62,99,103,107,115,99,62,0,12,28,12,12,12,12,63,0,62,99,99,14,56,99,127,0,62,99,99,14,99,99,62,0,6,14,30,38,127,6,6,0,127,99,96,126,3,99,62,0,62,99,96,126,99,99,62,0,127,99,6,12,24,24,60,0,62,99,99,62,99,99,62,0,62,99,99,63,3,99,62,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,48,14,24,48,96,48,24,14,0,0,0,126,0,126,0,0,0,112,24,12,6,12,24,112,0,126,99,3,6,28,0,24,24,124,198,206,238,224,230,124,0,28,54,99,127,99,99,99,0,110,115,99,126,99,99,126,0,30,51,96,96,96,51,30,0,108,118,99,99,99,102,124,0,127,49,48,60,48,49,127,0,127,49,48,60,48,48,120,0,30,51,96,103,99,55,29,0,99,99,99,127,99,99,99,0,60,24,24,24,24,24,60,0,31,6,6,6,6,102,60,0,102,102,108,120,108,103,99,0,120,48,96,96,99,99,126,0,99,119,127,107,99,99,99,0,99,115,123,111,103,99,99,0,28,54,99,99,99,54,28,0,110,115,99,126,96,96,96,0,28,54,99,107,103,54,29,0,110,115,99,126,108,103,99,0,62,99,96,62,3,99,62,0,126,90,24,24,24,24,60,0,115,51,99,99,99,118,60,0,115,51,99,99,102,60,24,0,115,51,99,107,127,119,99,0,99,99,54,28,54,99,99,0,51,99,99,54,28,120,112,0,127,99,6,28,51,99,126,0,60,48,48,48,48,48,60,0,64,96,48,24,12,6,2,0,60,12,12,12,12,12,60,0,0,24,60,126,24,24,24,24,0,0,0,0,0,0,255,255,48,48,24,0,0,0,0,0,0,0,63,99,99,103,59,0,96,96,110,115,99,99,62,0,0,0,62,99,96,99,62,0,3,3,59,103,99,99,62,0,0,0,62,97,127,96,62,0,14,24,24,60,24,24,60,0,0,0,62,96,99,99,61,0,96,96,110,115,99,102,103,0,0,0,30,12,12,12,30,0,0,0,63,6,6,6,102,60,96,96,102,110,124,103,99,0,28,12,12,12,12,12,30,0,0,0,110,127,107,98,103,0,0,0,110,115,99,102,103,0,0,0,62,99,99,99,62,0,0,0,62,99,115,110,96,96,0,0,62,99,103,59,3,3,0,0,110,115,99,126,99,0,0,0,62,113,28,71,62,0,6,12,63,24,24,27,14,0,0,0,115,51,99,103,59,0,0,0,115,51,99,102,60,0,0,0,99,107,127,119,99,0,0,0,99,54,28,54,99,0,0,0,51,99,99,63,3,62,0,0,127,14,28,56,127,0,60,66,153,161,161,153,66,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,6,18,51,51,6,18,51,56,6,18,51,58,6,18,51,15,6,18,51,51,6,18,51,56,6,18,51,58,6,18,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,197,4,192,244,197]],"!-);EWw5je`a}{IyVf4v":["controls.NES",["l","k","c","m","w","s","a","d"]],"28|ndmww*C9:h(p(1Xha":["prg_banks",[0,8192,0,8192]],"dkAVj{sdjrdbPacRA(Ya":["bin_table",["00000000","00000001","00000010","00000011","00000100","00000101","00000110","00000111","00001000","00001001","00001010","00001011","00001100","00001101","00001110","00001111","00010000","00010001","00010010","00010011","00010100","00010101","00010110","00010111","00011000","00011001","00011010","00011011","00011100","00011101","00011110","00011111","00100000","00100001","00100010","00100011","00100100","00100101","00100110","00100111","00101000","00101001","00101010","00101011","00101100","00101101","00101110","00101111","00110000","00110001","00110010","00110011","00110100","00110101","00110110","00110111","00111000","00111001","00111010","00111011","00111100","00111101","00111110","00111111","01000000","01000001","01000010","01000011","01000100","01000101","01000110","01000111","01001000","01001001","01001010","01001011","01001100","01001101","01001110","01001111","01010000","01010001","01010010","01010011","01010100","01010101","01010110","01010111","01011000","01011001","01011010","01011011","01011100","01011101","01011110","01011111","01100000","01100001","01100010","01100011","01100100","01100101","01100110","01100111","01101000","01101001","01101010","01101011","01101100","01101101","01101110","01101111","01110000","01110001","01110010","01110011","01110100","01110101","01110110","01110111","01111000","01111001","01111010","01111011","01111100","01111101","01111110","01111111","10000000","10000001","10000010","10000011","10000100","10000101","10000110","10000111","10001000","10001001","10001010","10001011","10001100","10001101","10001110","10001111","10010000","10010001","10010010","10010011","10010100","10010101","10010110","10010111","10011000","10011001","10011010","10011011","10011100","10011101","10011110","10011111","10100000","10100001","10100010","10100011","10100100","10100101","10100110","10100111","10101000","10101001","10101010","10101011","10101100","10101101","10101110","10101111","10110000","10110001","10110010","10110011","10110100","10110101","10110110","10110111","10111000","10111001","10111010","10111011","10111100","10111101","10111110","10111111","11000000","11000001","11000010","11000011","11000100","11000101","11000110","11000111","11001000","11001001","11001010","11001011","11001100","11001101","11001110","11001111","11010000","11010001","11010010","11010011","11010100","11010101","11010110","11010111","11011000","11011001","11011010","11011011","11011100","11011101","11011110","11011111","11100000","11100001","11100010","11100011","11100100","11100101","11100110","11100111","11101000","11101001","11101010","11101011","11101100","11101101","11101110","11101111","11110000","11110001","11110010","11110011","11110100","11110101","11110110","11110111","11111000","11111001","11111010","11111011","11111100","11111101","11111110","11111111"]],"]?ktZ5{ATqh5n-y_rI;)":["gui",[]],"%0@eg_iM4%`6o1lYsAwI":["pixel_buffer",[]],").*ULJU,pB|kwbQcAq=W":["pattern",[]],"?y(KCJo)9i,S7J!}tsTu":["nt_map",["0","0","1","1"]],",41reDUn/;X!Ns7I!@{C":["chr_rom",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,255,128,128,0,0,0,128,128,255,128,128,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,1,1,255,1,1,0,0,0,1,1,255,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,254,0,192,192,254,124,0,124,254,0,192,192,254,124,0,254,254,0,240,192,254,254,0,254,254,0,240,192,254,254,0,198,198,2,254,198,198,198,0,198,198,2,254,198,198,198,0,204,216,0,240,216,204,198,0,204,216,0,240,216,204,198,0,198,238,2,214,198,198,198,0,198,238,2,214,198,198,198,0,198,198,2,214,206,198,198,0,198,198,2,214,206,198,198,0,124,254,2,198,198,254,124,0,124,254,2,198,198,254,124,0,252,254,2,252,192,192,192,0,252,254,2,252,192,192,192,0,204,204,0,120,48,48,48,0,204,204,0,120,48,48,48,0,24,24,24,24,24,24,24,0,24,24,24,24,24,24,24,0,252,254,2,6,28,112,254,0,252,254,2,6,28,112,254,0,252,254,2,60,60,2,254,0,252,254,2,60,60,2,254,0,24,24,216,216,254,24,24,0,24,24,216,216,254,24,24,0,254,254,0,128,252,6,254,0,254,254,0,128,252,6,254,0,124,254,0,192,252,198,254,0,124,254,0,192,252,198,254,0,254,254,6,12,24,16,48,0,254,254,6,12,24,16,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,255,255,24,24,24,24,24,24,255,255,24,24,24,24,24,24,255,255,0,0,0,24,24,24,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,24,24,0,24,24,24,24,0,24,24,0,51,51,102,0,0,0,0,0,51,51,102,0,0,0,0,0,102,102,255,102,255,102,102,0,102,102,255,102,255,102,102,0,24,62,96,60,6,124,24,0,24,62,96,60,6,124,24,0,98,102,12,24,48,102,70,0,98,102,12,24,48,102,70,0,60,102,60,56,103,102,63,0,60,102,60,56,103,102,63,0,12,12,24,0,0,0,0,0,12,12,24,0,0,0,0,0,12,24,48,48,48,24,12,0,12,24,48,48,48,24,12,0,48,24,12,12,12,24,48,0,48,24,12,12,12,24,48,0,0,102,60,255,60,102,0,0,0,102,60,255,60,102,0,0,0,24,24,126,24,24,0,0,0,24,24,126,24,24,0,0,0,0,0,0,0,24,24,48,0,0,0,0,0,24,24,48,0,0,0,110,59,0,0,0,0,0,0,110,59,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,24,24,0,0,3,6,12,24,48,96,0,0,3,6,12,24,48,96,0,62,99,103,107,115,99,62,0,62,99,103,107,115,99,62,0,12,28,12,12,12,12,63,0,12,28,12,12,12,12,63,0,62,99,99,14,56,99,127,0,62,99,99,14,56,99,127,0,62,99,99,14,99,99,62,0,62,99,99,14,99,99,62,0,6,14,30,38,127,6,6,0,6,14,30,38,127,6,6,0,127,99,96,126,3,99,62,0,127,99,96,126,3,99,62,0,62,99,96,126,99,99,62,0,62,99,96,126,99,99,62,0,127,99,6,12,24,24,60,0,127,99,6,12,24,24,60,0,62,99,99,62,99,99,62,0,62,99,99,62,99,99,62,0,62,99,99,63,3,99,62,0,62,99,99,63,3,99,62,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,0,0,0,24,24,0,24,24,48,0,0,24,24,0,24,24,48,14,24,48,96,48,24,14,0,14,24,48,96,48,24,14,0,0,0,126,0,126,0,0,0,0,0,126,0,126,0,0,0,112,24,12,6,12,24,112,0,112,24,12,6,12,24,112,0,126,99,3,6,28,0,24,24,126,99,3,6,28,0,24,24,124,198,206,238,224,230,124,0,124,198,206,238,224,230,124,0,28,54,99,127,99,99,99,0,28,54,99,127,99,99,99,0,110,115,99,126,99,99,126,0,110,115,99,126,99,99,126,0,30,51,96,96,96,51,30,0,30,51,96,96,96,51,30,0,108,118,99,99,99,102,124,0,108,118,99,99,99,102,124,0,127,49,48,60,48,49,127,0,127,49,48,60,48,49,127,0,127,49,48,60,48,48,120,0,127,49,48,60,48,48,120,0,30,51,96,103,99,55,29,0,30,51,96,103,99,55,29,0,99,99,99,127,99,99,99,0,99,99,99,127,99,99,99,0,60,24,24,24,24,24,60,0,60,24,24,24,24,24,60,0,31,6,6,6,6,102,60,0,31,6,6,6,6,102,60,0,102,102,108,120,108,103,99,0,102,102,108,120,108,103,99,0,120,48,96,96,99,99,126,0,120,48,96,96,99,99,126,0,99,119,127,107,99,99,99,0,99,119,127,107,99,99,99,0,99,115,123,111,103,99,99,0,99,115,123,111,103,99,99,0,28,54,99,99,99,54,28,0,28,54,99,99,99,54,28,0,110,115,99,126,96,96,96,0,110,115,99,126,96,96,96,0,28,54,99,107,103,54,29,0,28,54,99,107,103,54,29,0,110,115,99,126,108,103,99,0,110,115,99,126,108,103,99,0,62,99,96,62,3,99,62,0,62,99,96,62,3,99,62,0,126,90,24,24,24,24,60,0,126,90,24,24,24,24,60,0,115,51,99,99,99,118,60,0,115,51,99,99,99,118,60,0,115,51,99,99,102,60,24,0,115,51,99,99,102,60,24,0,115,51,99,107,127,119,99,0,115,51,99,107,127,119,99,0,99,99,54,28,54,99,99,0,99,99,54,28,54,99,99,0,51,99,99,54,28,120,112,0,51,99,99,54,28,120,112,0,127,99,6,28,51,99,126,0,127,99,6,28,51,99,126,0,60,48,48,48,48,48,60,0,60,48,48,48,48,48,60,0,64,96,48,24,12,6,2,0,64,96,48,24,12,6,2,0,60,12,12,12,12,12,60,0,60,12,12,12,12,12,60,0,0,24,60,126,24,24,24,24,0,24,60,126,24,24,24,24,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,48,48,24,0,0,0,0,0,48,48,24,0,0,0,0,0,0,0,63,99,99,103,59,0,0,0,63,99,99,103,59,0,96,96,110,115,99,99,62,0,96,96,110,115,99,99,62,0,0,0,62,99,96,99,62,0,0,0,62,99,96,99,62,0,3,3,59,103,99,99,62,0,3,3,59,103,99,99,62,0,0,0,62,97,127,96,62,0,0,0,62,97,127,96,62,0,14,24,24,60,24,24,60,0,14,24,24,60,24,24,60,0,0,0,62,96,99,99,61,0,0,0,62,96,99,99,61,0,96,96,110,115,99,102,103,0,96,96,110,115,99,102,103,0,0,0,30,12,12,12,30,0,0,0,30,12,12,12,30,0,0,0,63,6,6,6,102,60,0,0,63,6,6,6,102,60,96,96,102,110,124,103,99,0,96,96,102,110,124,103,99,0,28,12,12,12,12,12,30,0,28,12,12,12,12,12,30,0,0,0,110,127,107,98,103,0,0,0,110,127,107,98,103,0,0,0,110,115,99,102,103,0,0,0,110,115,99,102,103,0,0,0,62,99,99,99,62,0,0,0,62,99,99,99,62,0,0,0,62,99,115,110,96,96,0,0,62,99,115,110,96,96,0,0,62,99,103,59,3,3,0,0,62,99,103,59,3,3,0,0,110,115,99,126,99,0,0,0,110,115,99,126,99,0,0,0,62,113,28,71,62,0,0,0,62,113,28,71,62,0,6,12,63,24,24,27,14,0,6,12,63,24,24,27,14,0,0,0,115,51,99,103,59,0,0,0,115,51,99,103,59,0,0,0,115,51,99,102,60,0,0,0,115,51,99,102,60,0,0,0,99,107,127,119,99,0,0,0,99,107,127,119,99,0,0,0,99,54,28,54,99,0,0,0,99,54,28,54,99,0,0,0,51,99,99,63,3,62,0,0,51,99,99,63,3,62,0,0,127,14,28,56,127,0,0,0,127,14,28,56,127,0,60,66,153,161,161,153,66,60,60,66,153,161,161,153,66,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"c[9|smMH$3,uB:vpwT}n":["BIOS",[]],"#yxQVD.W=QA4e-TaHe-w":["_gametitle",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],",lx%]OZrHg|(jHyY#^#E":["text",[]],"JZ0nOH#MsoLAasA7xYd+":[".HEX",[]],"q~]_[iVvJ`d|+?RSqc^Y":["_DMGCOLORS",["#081820","#43654d","#7eb27a","#b9ffa8"]],"(M5DY~$!E(Xt6VWlGk_1":["+AUDIO ENGINE pan",[-1,0,0,0]],"v]0UUq`G]chfwu4/UQ~q":["apu",[15980.11607142857,"0",2,13982.6015625,"0",0,146.79896653543307,"0",447443.25,0,"0"]],"{uxN85FR2v428H5s1TII":["chip8m.PCM",[]],"EesKz%n[:9y6^o:vvoD_":["controls.chip8",["x","1","2","3","q","w","e","a","s","d","z","c","4","r","f","v"]],"5D)3w-mP8HqcU~;jGYPw":["controls.GB",["down arrow","up arrow","left arrow","right arrow","enter","space","x","z"]],"u{Z6Yo:g|j(7O+@6yd=b":["and_table",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,240,241,240,241,240,241,240,241,240,241,240,241,240,241,240,241,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,240,240,242,242,240,240,242,242,240,240,242,242,240,240,242,242,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,240,241,242,243,240,241,242,243,240,241,242,243,240,241,242,243,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,240,240,240,240,244,244,244,244,240,240,240,240,244,244,244,244,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,240,241,240,241,244,245,244,245,240,241,240,241,244,245,244,245,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,240,240,242,242,244,244,246,246,240,240,242,242,244,244,246,246,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,240,241,242,243,244,245,246,247,240,241,242,243,244,245,246,247,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,248,248,248,248,248,248,248,248,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,240,241,240,241,240,241,240,241,248,249,248,249,248,249,248,249,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,240,240,242,242,240,240,242,242,248,248,250,250,248,248,250,250,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,240,241,242,243,240,241,242,243,248,249,250,251,248,249,250,251,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,240,240,240,240,244,244,244,244,248,248,248,248,252,252,252,252,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,240,241,240,241,244,245,244,245,248,249,248,249,252,253,252,253,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,240,240,242,242,244,244,246,246,248,248,250,250,252,252,254,254,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255]],"yYeY/%}@PaP{fMkLU1ve":["xor_table",[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0]],"Lwfvqs]/^buKKht}YcaC":["or_table",[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,1,1,3,3,5,5,7,7,9,9,11,11,13,13,15,15,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,2,3,2,3,6,7,6,7,10,11,10,11,14,15,14,15,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,3,3,3,3,7,7,7,7,11,11,11,11,15,15,15,15,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,4,5,6,7,4,5,6,7,12,13,14,15,12,13,14,15,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,5,5,7,7,5,5,7,7,13,13,15,15,13,13,15,15,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,6,7,6,7,6,7,6,7,14,15,14,15,14,15,14,15,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,7,7,7,7,7,7,7,7,15,15,15,15,15,15,15,15,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,8,9,10,11,12,13,14,15,8,9,10,11,12,13,14,15,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,9,9,11,11,13,13,15,15,9,9,11,11,13,13,15,15,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,10,11,10,11,14,15,14,15,10,11,10,11,14,15,14,15,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,11,11,11,11,15,15,15,15,11,11,11,11,15,15,15,15,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,13,13,15,15,13,13,15,15,13,13,15,15,13,13,15,15,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,14,15,14,15,14,15,14,15,14,15,14,15,14,15,14,15,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]],",(xt46oqz;F}4Roa*4l1":["_waveBuffer",[]],"ki7qXD%gNvvUz@OLl,$4":["_waveBuffer2",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"@Mu*IPvEI${W#Lm!SQml":["m",[192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"~*y,0~Y1ZelwR60?hGDD":["buf",[]],"=Nnh8d@ok|B?)Hea*-9a":["8080.Terminal",[]],"xYpkP=%}3N3fIXniRLxO":["controls.SI8080",["c","enter","space","w","a","d","up arrow","left arrow","right arrow"]],"[sU2JI|(@n8Hh4}M,trk":["_memorydirtyflags",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],";;D#J[s+xqU=v5L_KPks":["_memorydirtyaddresses",[]],"fvlqLLgqWm;4trS;h4~E":["_memorylastdrawndisplay",["0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x23","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x32","0x00","0x00","0x45","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,"0x00",0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x49","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x49","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x49","0x00","0x00","0x31","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x26","0x00","0x00","0x00","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x3E","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x00","0x22","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x3E","0x00","0x3E","0x00","0x00","0x0F",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x45","0x00","0x41","0x00","0x00","0x1F","0x01",0,"0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x49","0x00","0x41","0x00","0x00","0x1F","0x01",0,"0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x51","0x00","0x41","0x00","0x00","0x1F","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x3E","0x00","0x3E","0x00","0x00","0x1F","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0xFF","0x01",0,"0x00",0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x01",0,"0x00",0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x23","0x00","0x7F","0x00","0x00","0x1F","0x01",0,"0x00",0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x45","0x00","0x48","0x00","0x00","0x1F","0x01",0,"0x00",0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x49","0x00","0x4C","0x00","0x00","0x1F","0x01",0,"0x00",0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x49","0x00","0x4A","0x00","0x00","0x1F","0x01",0,"0x00",0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x31","0x00","0x31","0x00","0x00","0x0F","0x01",0,"0x00",0,248,176,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00","0x00",96,0,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x72","0x00","0x7F","0x00","0x00",0,0,0,"0x00","0x00",176,176,0,0,0,0,0,0,0,0,0,24,0,24,0,26,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x49","0x00","0x00",0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,190,0,190,0,61,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x49","0x00","0x00",0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,109,0,109,0,104,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x49","0x00","0x00",0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,61,0,61,0,252,0,0,"0x00","0x00","0x00","0x00","0x4E","0x00","0x41","0x00","0x00",0,0,0,"0x00",0,176,0,0,0,0,0,0,0,0,0,0,60,0,60,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x01",0,"0x00",0,252,0,0,0,0,0,0,0,0,0,0,61,0,61,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x01",0,"0x00",0,255,176,0,0,0,0,0,0,0,0,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x01",0,"0x00",0,255,255,0,0,0,0,0,0,0,0,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00","0x3E","0x00","0x08","0x00","0x00",0,"0x01",0,"0x00",0,255,127,0,"0x00","0x00","0x00",0,0,0,0,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00","0x45","0x00","0x14","0x00","0x00",0,"0x01","0x00","0x00",0,255,63,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x49","0x00","0x22","0x00","0x00",0,"0x01","0x00","0x00",0,255,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x51","0x00","0x41","0x00","0x00",0,"0x01",0,"0x00",0,255,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x3E","0x00","0x00","0x00","0x00",0,"0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,122,0,14,0,14,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,127,0,24,0,24,0,26,0,0,0,0,"0x00",0,"0x00","0x00","0x21","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,109,0,190,0,190,0,61,0,0,0,0,"0x00",0,"0x00","0x00","0x7F","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,236,0,109,0,109,0,104,0,0,0,0,"0x00",0,"0x00","0x00","0x01","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,250,0,61,0,61,0,252,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,250,0,60,0,60,0,252,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,61,0,61,0,104,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,109,0,109,0,61,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,122,0,24,0,24,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x41","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,56,0,14,0,14,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x22","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x14","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x08","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,14,0,14,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,24,0,24,0,26,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,190,0,190,0,61,0,0,"0x00",0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00","0x00",0,0,0,0,0,0,0,"0x00",0,236,0,109,0,109,0,104,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,15,0,0,0,0,0,"0x00",0,250,0,61,0,61,0,252,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,31,0,0,0,0,0,"0x00",0,250,0,60,0,60,0,252,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,63,0,0,0,0,0,"0x00",0,236,0,61,0,61,0,104,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,127,0,0,0,0,0,"0x00",0,109,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,255,0,0,0,0,0,"0x00",0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x00","0x00","0x00","0x01","0x00","0x00","0x00",252,255,0,"0x00","0x00","0x00",0,0,0,122,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x08","0x00","0x00","0x00","0x01","0x00","0x00","0x00",248,255,0,"0x00","0x00","0x00",0,0,0,56,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x08","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,"0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x08","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,240,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,"0x00","0x00","0x00",0,0,0,56,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,"0x00",0,0,0,122,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x3E","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,127,0,24,0,24,0,26,0,0,"0x00","0x00","0x00","0x00","0x45","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,248,255,0,0,0,0,0,0,0,109,0,190,0,190,0,61,0,0,"0x00","0x00","0x00","0x00","0x49","0x00","0x7F","0x00","0x00","0x00","0x01","0x00","0x00",0,252,255,0,0,0,0,0,0,0,236,0,109,0,109,0,104,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,255,255,0,0,0,0,0,0,0,250,0,61,0,61,0,252,0,0,"0x00","0x00","0x00","0x00","0x3E","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,255,255,0,"0x00","0x00","0x00",0,0,0,250,0,60,0,60,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,255,127,0,0,0,0,0,0,0,236,0,61,0,61,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,255,63,0,0,0,0,0,0,0,109,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,255,31,0,0,0,0,0,0,0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00","0x72","0x00","0x08","0x00","0x00","0x00","0x01","0x00","0x00",0,255,15,0,"0x00","0x00","0x00",0,0,0,122,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x08","0x00","0x00","0x00","0x01",0,"0x00",0,0,"0x00","0x00","0x00","0x00","0x00",0,0,0,56,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x51","0x00","0x08","0x00","0x00","0x00","0x01",0,"0x00",0,0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,"0x00",0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x51","0x00","0x08","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x4E","0x00","0x08","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x36","0x00","0x32","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,"0x00","0x00","0x00",0,"0x49","0x00","0x49","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,"0x00","0x00","0x00",0,"0x49","0x00","0x49","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,"0x00","0x00","0x00",0,"0x49","0x00","0x49","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,"0x00","0x00","0x00","0x00","0x36","0x00","0x26","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,252,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,"0x00",0,"0x00",0,"0x3E","0x00","0x3E","0x00","0x00","0x00","0x01","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x45","0x00","0x41","0x00","0x00","0x00",0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x49","0x00","0x41","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00",0,"0x00",0,"0x51","0x00","0x41","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x3E","0x00","0x22","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x3E","0x00","0x00","0x00","0x01","0x00","0x00",0,217,0,0,0,0,0,0,0,0,0,0,24,0,24,0,26,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,241,0,0,0,0,0,0,0,0,0,0,190,0,190,0,61,0,0,"0x00","0x00","0x04","0x00","0x00","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,224,48,0,0,0,0,0,0,0,0,0,109,0,109,0,104,0,0,"0x00","0x00","0x0C","0x00","0x00","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,240,127,0,0,0,0,0,0,0,0,0,61,0,61,0,252,0,0,"0x00","0x00","0x1E","0x00","0x00","0x00","0x3E","0x00","0x00","0x00","0x01","0x00","0x00",0,209,255,0,0,0,0,0,0,0,0,0,60,0,60,0,252,0,0,"0x00","0x00","0x37","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,240,255,0,0,0,0,0,0,0,0,0,61,0,61,0,104,0,0,"0x00","0x00","0x3E","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,224,255,0,"0x00","0x00",0,0,0,0,0,0,109,0,109,0,61,0,0,"0x00","0x00","0x7C","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,208,255,0,0,0,0,0,0,0,0,0,190,0,190,0,26,0,0,"0x00","0x00","0x74","0x00","0x00","0x00","0x7F","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,24,0,24,0,0,0,0,"0x00","0x00","0x7E","0x00","0x00","0x00","0x48","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x7E","0x00","0x00","0x00","0x4C","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x74","0x00","0x00","0x00","0x4A","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x7C","0x00","0x00","0x00","0x31","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,"0x00","0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x3E","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,255,0,0,0,0,"0x00","0x00",0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x37","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",248,255,0,"0x00","0x00",0,"0x00","0x00",0,56,0,0,0,0,0,0,0,0,"0x00","0x00","0x1E","0x00","0x00","0x00","0x00","0x00","0x00","0x3E","0x01","0x00","0x00",0,216,255,0,"0x00","0x00",0,"0x00","0x00",0,122,0,14,0,14,0,0,0,0,"0x00","0x00","0x0C","0x00","0x00","0x00","0x7F","0x00","0x00","0x41","0x01","0x00","0x00",0,241,255,0,"0x00","0x00",0,"0x00","0x00",0,127,0,24,0,24,0,26,0,0,"0x00","0x00","0x04","0x00","0x00","0x00","0x49","0x00","0x00","0x41","0x01","0x00","0x00",0,224,255,0,0,0,0,"0x00","0x00",0,109,0,190,0,190,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x41","0x01","0x00","0x00",0,240,127,0,0,0,0,"0x00","0x00",0,236,0,109,0,109,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x22","0x01","0x00","0x00",0,209,32,0,0,0,0,"0x00","0x00",0,250,0,61,0,61,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,240,16,0,"0x00","0x00",0,"0x00","0x00",0,250,0,60,0,60,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,225,0,0,0,0,0,0,0,0,236,0,61,0,61,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,109,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x48","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,122,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x4C","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,56,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x4A","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x31","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00",0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x0F",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x1F",0,"0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x7F","0x01","0x00","0x1F",0,0,0,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x32","0x00","0x00","0x49","0x01","0x00","0x1F",0,0,0,0,0,0,0,0,0,0,0,0,24,0,24,0,26,0,0,"0x00","0x00",0,0,"0x00","0x00","0x49","0x00","0x00","0x49",0,0,"0x1F",0,0,0,0,0,0,0,0,0,0,0,0,190,0,190,0,61,0,0,"0x00","0x00",0,0,"0x00","0x00","0x49","0x00","0x00","0x49",0,0,"0x7F",0,"0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,109,0,109,0,104,0,0,"0x00","0x00",0,0,"0x00","0x00","0x49","0x00","0x00","0x41",0,0,"0xFF",0,0,0,0,0,0,0,0,0,0,0,0,61,0,61,0,252,0,0,0,0,0,0,"0x00","0x00","0x26","0x00","0x00","0x00",0,0,"0x7F",0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,252,0,0,"0x00","0x00",0,0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x1F",0,0,0,0,0,0,0,0,0,0,0,0,61,0,61,0,104,0,0,"0x00","0x00",0,0,"0x00","0x00","0x00","0x00","0x00","0x00",0,0,"0x1F",0,0,0,0,0,0,0,0,0,0,0,0,109,0,109,0,61,0,0,"0x00","0x00",0,0,"0x00","0x00","0x00","0x00","0x00","0x7F","0x01","0x00","0x1F","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,190,0,190,0,26,0,0,"0x00","0x00",0,0,"0x00","0x00","0x3E","0x00","0x00","0x41","0x01","0x00","0x1F",0,0,0,0,0,0,0,0,0,0,0,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x41","0x01","0x00","0x0F","0x00",0,"0x00","0x00","0x00","0x00",0,0,0,0,0,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x41","0x01","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x41","0x00","0x00","0x3E","0x01","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x22","0x00","0x00","0x00","0x01","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,216,31,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,241,63,0,0,0,0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x3E","0x00","0x00","0x41","0x01","0x00","0x00",0,224,127,0,"0x00","0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x41","0x00","0x00","0x7F","0x01","0x00","0x00",0,240,255,0,"0x00","0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x41","0x00","0x00","0x41","0x01","0x00","0x00",0,208,255,0,"0x00","0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00",0,240,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x3E","0x00","0x00","0x00","0x01","0x00","0x00",0,224,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00",0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x40","0x01","0x00","0x00","0x00",240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x7F","0x00","0x00","0x40","0x01","0x00","0x00","0x00",240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x48","0x00","0x00","0x7F","0x01","0x00","0x00","0x00",240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x4C","0x00","0x00","0x40","0x01","0x00","0x00","0x00",240,176,0,"0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x4A","0x00","0x00","0x40","0x01","0x00","0x00","0x00",248,255,0,"0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x31","0x00","0x00","0x00","0x01","0x00","0x00","0x00",252,255,0,"0x00","0x00",0,"0x00",0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,255,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,127,0,0,0,0,0,0,0,122,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x7F","0x00","0x00","0x00","0x01","0x00","0x00","0x00",255,63,0,0,0,0,"0x00",57,0,127,0,24,0,24,0,26,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x49","0x00","0x00","0x00","0x01",0,"0x00","0x00",255,31,0,0,0,0,"0x00",121,0,109,0,190,0,190,0,61,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x49","0x00","0x00","0x00","0x01",0,"0x00","0x00",255,15,0,0,0,0,"0x00",122,0,236,0,109,0,109,0,104,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x49","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,"0x00",110,0,250,0,61,0,61,0,252,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x41","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,"0x00",236,0,250,0,60,0,60,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,"0x00",250,0,236,0,61,0,61,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",250,0,109,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",236,0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x08","0x00","0x00","0x21","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,110,0,122,0,24,0,24,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x14","0x00","0x00","0x7F","0x01",0,0,0,0,0,0,0,0,0,0,122,0,56,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x22","0x00","0x00","0x01","0x01",0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x41","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00",0,"0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,0,0,0,0,0,0,0,0,56,0,56,0,0,0,0,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x1E",0,0,0,0,0,0,0,0,0,0,0,122,0,122,0,14,0,14,0,0,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x23","0x00","0x00","0x29",0,0,0,0,0,0,0,0,0,0,0,127,0,127,0,24,0,24,0,26,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x45","0x00","0x00","0x49",0,0,0,0,0,0,0,0,0,0,0,109,0,109,0,190,0,190,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x49",0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,236,0,236,0,109,0,109,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x49","0x00","0x00","0x46","0x01",0,0,0,0,0,0,0,0,0,0,250,0,250,0,61,0,61,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x31","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,0,250,0,250,0,60,0,60,0,252,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,0,0,0,0,0,0,0,0,0,236,0,236,0,61,0,61,0,104,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,109,0,109,0,109,0,109,0,61,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,127,0,127,0,190,0,190,0,26,0,0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,122,0,122,0,24,0,24,0,0,"0x00",0,"0x00","0x00",0,"0x00","0x00","0x00","0x41","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,0,0,56,0,56,0,14,0,14,0,0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x22","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x14","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00",0,"0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x08","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x01","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00","0x00"]],"r#2O$_#:wVFDgt/TZcNs":["+sound pitch",["0","0","0","0"]],"OrYiKto@sjk6{OD]/A2,":["+sound volume",["0","0","0","0"]],".9Xgs6=1omb8tCq,9h[y":["+sound channels active",["0","0","0","0"]],"9skes?+O/Q=:LB5Z6/H0":["+sound clones active",["0","0","0","0"]],"!r4^93[Oh0N~+*[obn#:":["+sound duty cycle",["0","0","0","0"]],")Py!(:T5^4W{p2Clro4{":["cpu.AND",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,64,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,96,97,96,97,96,97,96,97,96,97,96,97,96,97,96,97,112,113,112,113,112,113,112,113,112,113,112,113,112,113,112,113,128,129,128,129,128,129,128,129,128,129,128,129,128,129,128,129,144,145,144,145,144,145,144,145,144,145,144,145,144,145,144,145,160,161,160,161,160,161,160,161,160,161,160,161,160,161,160,161,176,177,176,177,176,177,176,177,176,177,176,177,176,177,176,177,192,193,192,193,192,193,192,193,192,193,192,193,192,193,192,193,208,209,208,209,208,209,208,209,208,209,208,209,208,209,208,209,224,225,224,225,224,225,224,225,224,225,224,225,224,225,224,225,240,241,240,241,240,241,240,241,240,241,240,241,240,241,240,241,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,16,16,18,18,16,16,18,18,16,16,18,18,16,16,18,18,32,32,34,34,32,32,34,34,32,32,34,34,32,32,34,34,48,48,50,50,48,48,50,50,48,48,50,50,48,48,50,50,64,64,66,66,64,64,66,66,64,64,66,66,64,64,66,66,80,80,82,82,80,80,82,82,80,80,82,82,80,80,82,82,96,96,98,98,96,96,98,98,96,96,98,98,96,96,98,98,112,112,114,114,112,112,114,114,112,112,114,114,112,112,114,114,128,128,130,130,128,128,130,130,128,128,130,130,128,128,130,130,144,144,146,146,144,144,146,146,144,144,146,146,144,144,146,146,160,160,162,162,160,160,162,162,160,160,162,162,160,160,162,162,176,176,178,178,176,176,178,178,176,176,178,178,176,176,178,178,192,192,194,194,192,192,194,194,192,192,194,194,192,192,194,194,208,208,210,210,208,208,210,210,208,208,210,210,208,208,210,210,224,224,226,226,224,224,226,226,224,224,226,226,224,224,226,226,240,240,242,242,240,240,242,242,240,240,242,242,240,240,242,242,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,16,17,18,19,16,17,18,19,16,17,18,19,16,17,18,19,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,48,49,50,51,48,49,50,51,48,49,50,51,48,49,50,51,64,65,66,67,64,65,66,67,64,65,66,67,64,65,66,67,80,81,82,83,80,81,82,83,80,81,82,83,80,81,82,83,96,97,98,99,96,97,98,99,96,97,98,99,96,97,98,99,112,113,114,115,112,113,114,115,112,113,114,115,112,113,114,115,128,129,130,131,128,129,130,131,128,129,130,131,128,129,130,131,144,145,146,147,144,145,146,147,144,145,146,147,144,145,146,147,160,161,162,163,160,161,162,163,160,161,162,163,160,161,162,163,176,177,178,179,176,177,178,179,176,177,178,179,176,177,178,179,192,193,194,195,192,193,194,195,192,193,194,195,192,193,194,195,208,209,210,211,208,209,210,211,208,209,210,211,208,209,210,211,224,225,226,227,224,225,226,227,224,225,226,227,224,225,226,227,240,241,242,243,240,241,242,243,240,241,242,243,240,241,242,243,0,0,0,0,4,4,4,4,0,0,0,0,4,4,4,4,16,16,16,16,20,20,20,20,16,16,16,16,20,20,20,20,32,32,32,32,36,36,36,36,32,32,32,32,36,36,36,36,48,48,48,48,52,52,52,52,48,48,48,48,52,52,52,52,64,64,64,64,68,68,68,68,64,64,64,64,68,68,68,68,80,80,80,80,84,84,84,84,80,80,80,80,84,84,84,84,96,96,96,96,100,100,100,100,96,96,96,96,100,100,100,100,112,112,112,112,116,116,116,116,112,112,112,112,116,116,116,116,128,128,128,128,132,132,132,132,128,128,128,128,132,132,132,132,144,144,144,144,148,148,148,148,144,144,144,144,148,148,148,148,160,160,160,160,164,164,164,164,160,160,160,160,164,164,164,164,176,176,176,176,180,180,180,180,176,176,176,176,180,180,180,180,192,192,192,192,196,196,196,196,192,192,192,192,196,196,196,196,208,208,208,208,212,212,212,212,208,208,208,208,212,212,212,212,224,224,224,224,228,228,228,228,224,224,224,224,228,228,228,228,240,240,240,240,244,244,244,244,240,240,240,240,244,244,244,244,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,32,33,32,33,36,37,36,37,32,33,32,33,36,37,36,37,48,49,48,49,52,53,52,53,48,49,48,49,52,53,52,53,64,65,64,65,68,69,68,69,64,65,64,65,68,69,68,69,80,81,80,81,84,85,84,85,80,81,80,81,84,85,84,85,96,97,96,97,100,101,100,101,96,97,96,97,100,101,100,101,112,113,112,113,116,117,116,117,112,113,112,113,116,117,116,117,128,129,128,129,132,133,132,133,128,129,128,129,132,133,132,133,144,145,144,145,148,149,148,149,144,145,144,145,148,149,148,149,160,161,160,161,164,165,164,165,160,161,160,161,164,165,164,165,176,177,176,177,180,181,180,181,176,177,176,177,180,181,180,181,192,193,192,193,196,197,196,197,192,193,192,193,196,197,196,197,208,209,208,209,212,213,212,213,208,209,208,209,212,213,212,213,224,225,224,225,228,229,228,229,224,225,224,225,228,229,228,229,240,241,240,241,244,245,244,245,240,241,240,241,244,245,244,245,0,0,2,2,4,4,6,6,0,0,2,2,4,4,6,6,16,16,18,18,20,20,22,22,16,16,18,18,20,20,22,22,32,32,34,34,36,36,38,38,32,32,34,34,36,36,38,38,48,48,50,50,52,52,54,54,48,48,50,50,52,52,54,54,64,64,66,66,68,68,70,70,64,64,66,66,68,68,70,70,80,80,82,82,84,84,86,86,80,80,82,82,84,84,86,86,96,96,98,98,100,100,102,102,96,96,98,98,100,100,102,102,112,112,114,114,116,116,118,118,112,112,114,114,116,116,118,118,128,128,130,130,132,132,134,134,128,128,130,130,132,132,134,134,144,144,146,146,148,148,150,150,144,144,146,146,148,148,150,150,160,160,162,162,164,164,166,166,160,160,162,162,164,164,166,166,176,176,178,178,180,180,182,182,176,176,178,178,180,180,182,182,192,192,194,194,196,196,198,198,192,192,194,194,196,196,198,198,208,208,210,210,212,212,214,214,208,208,210,210,212,212,214,214,224,224,226,226,228,228,230,230,224,224,226,226,228,228,230,230,240,240,242,242,244,244,246,246,240,240,242,242,244,244,246,246,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,32,33,34,35,36,37,38,39,48,49,50,51,52,53,54,55,48,49,50,51,52,53,54,55,64,65,66,67,68,69,70,71,64,65,66,67,68,69,70,71,80,81,82,83,84,85,86,87,80,81,82,83,84,85,86,87,96,97,98,99,100,101,102,103,96,97,98,99,100,101,102,103,112,113,114,115,116,117,118,119,112,113,114,115,116,117,118,119,128,129,130,131,132,133,134,135,128,129,130,131,132,133,134,135,144,145,146,147,148,149,150,151,144,145,146,147,148,149,150,151,160,161,162,163,164,165,166,167,160,161,162,163,164,165,166,167,176,177,178,179,180,181,182,183,176,177,178,179,180,181,182,183,192,193,194,195,196,197,198,199,192,193,194,195,196,197,198,199,208,209,210,211,212,213,214,215,208,209,210,211,212,213,214,215,224,225,226,227,228,229,230,231,224,225,226,227,228,229,230,231,240,241,242,243,244,245,246,247,240,241,242,243,244,245,246,247,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,56,56,56,56,56,56,56,56,64,64,64,64,64,64,64,64,72,72,72,72,72,72,72,72,80,80,80,80,80,80,80,80,88,88,88,88,88,88,88,88,96,96,96,96,96,96,96,96,104,104,104,104,104,104,104,104,112,112,112,112,112,112,112,112,120,120,120,120,120,120,120,120,128,128,128,128,128,128,128,128,136,136,136,136,136,136,136,136,144,144,144,144,144,144,144,144,152,152,152,152,152,152,152,152,160,160,160,160,160,160,160,160,168,168,168,168,168,168,168,168,176,176,176,176,176,176,176,176,184,184,184,184,184,184,184,184,192,192,192,192,192,192,192,192,200,200,200,200,200,200,200,200,208,208,208,208,208,208,208,208,216,216,216,216,216,216,216,216,224,224,224,224,224,224,224,224,232,232,232,232,232,232,232,232,240,240,240,240,240,240,240,240,248,248,248,248,248,248,248,248,0,1,0,1,0,1,0,1,8,9,8,9,8,9,8,9,16,17,16,17,16,17,16,17,24,25,24,25,24,25,24,25,32,33,32,33,32,33,32,33,40,41,40,41,40,41,40,41,48,49,48,49,48,49,48,49,56,57,56,57,56,57,56,57,64,65,64,65,64,65,64,65,72,73,72,73,72,73,72,73,80,81,80,81,80,81,80,81,88,89,88,89,88,89,88,89,96,97,96,97,96,97,96,97,104,105,104,105,104,105,104,105,112,113,112,113,112,113,112,113,120,121,120,121,120,121,120,121,128,129,128,129,128,129,128,129,136,137,136,137,136,137,136,137,144,145,144,145,144,145,144,145,152,153,152,153,152,153,152,153,160,161,160,161,160,161,160,161,168,169,168,169,168,169,168,169,176,177,176,177,176,177,176,177,184,185,184,185,184,185,184,185,192,193,192,193,192,193,192,193,200,201,200,201,200,201,200,201,208,209,208,209,208,209,208,209,216,217,216,217,216,217,216,217,224,225,224,225,224,225,224,225,232,233,232,233,232,233,232,233,240,241,240,241,240,241,240,241,248,249,248,249,248,249,248,249,0,0,2,2,0,0,2,2,8,8,10,10,8,8,10,10,16,16,18,18,16,16,18,18,24,24,26,26,24,24,26,26,32,32,34,34,32,32,34,34,40,40,42,42,40,40,42,42,48,48,50,50,48,48,50,50,56,56,58,58,56,56,58,58,64,64,66,66,64,64,66,66,72,72,74,74,72,72,74,74,80,80,82,82,80,80,82,82,88,88,90,90,88,88,90,90,96,96,98,98,96,96,98,98,104,104,106,106,104,104,106,106,112,112,114,114,112,112,114,114,120,120,122,122,120,120,122,122,128,128,130,130,128,128,130,130,136,136,138,138,136,136,138,138,144,144,146,146,144,144,146,146,152,152,154,154,152,152,154,154,160,160,162,162,160,160,162,162,168,168,170,170,168,168,170,170,176,176,178,178,176,176,178,178,184,184,186,186,184,184,186,186,192,192,194,194,192,192,194,194,200,200,202,202,200,200,202,202,208,208,210,210,208,208,210,210,216,216,218,218,216,216,218,218,224,224,226,226,224,224,226,226,232,232,234,234,232,232,234,234,240,240,242,242,240,240,242,242,248,248,250,250,248,248,250,250,0,1,2,3,0,1,2,3,8,9,10,11,8,9,10,11,16,17,18,19,16,17,18,19,24,25,26,27,24,25,26,27,32,33,34,35,32,33,34,35,40,41,42,43,40,41,42,43,48,49,50,51,48,49,50,51,56,57,58,59,56,57,58,59,64,65,66,67,64,65,66,67,72,73,74,75,72,73,74,75,80,81,82,83,80,81,82,83,88,89,90,91,88,89,90,91,96,97,98,99,96,97,98,99,104,105,106,107,104,105,106,107,112,113,114,115,112,113,114,115,120,121,122,123,120,121,122,123,128,129,130,131,128,129,130,131,136,137,138,139,136,137,138,139,144,145,146,147,144,145,146,147,152,153,154,155,152,153,154,155,160,161,162,163,160,161,162,163,168,169,170,171,168,169,170,171,176,177,178,179,176,177,178,179,184,185,186,187,184,185,186,187,192,193,194,195,192,193,194,195,200,201,202,203,200,201,202,203,208,209,210,211,208,209,210,211,216,217,218,219,216,217,218,219,224,225,226,227,224,225,226,227,232,233,234,235,232,233,234,235,240,241,242,243,240,241,242,243,248,249,250,251,248,249,250,251,0,0,0,0,4,4,4,4,8,8,8,8,12,12,12,12,16,16,16,16,20,20,20,20,24,24,24,24,28,28,28,28,32,32,32,32,36,36,36,36,40,40,40,40,44,44,44,44,48,48,48,48,52,52,52,52,56,56,56,56,60,60,60,60,64,64,64,64,68,68,68,68,72,72,72,72,76,76,76,76,80,80,80,80,84,84,84,84,88,88,88,88,92,92,92,92,96,96,96,96,100,100,100,100,104,104,104,104,108,108,108,108,112,112,112,112,116,116,116,116,120,120,120,120,124,124,124,124,128,128,128,128,132,132,132,132,136,136,136,136,140,140,140,140,144,144,144,144,148,148,148,148,152,152,152,152,156,156,156,156,160,160,160,160,164,164,164,164,168,168,168,168,172,172,172,172,176,176,176,176,180,180,180,180,184,184,184,184,188,188,188,188,192,192,192,192,196,196,196,196,200,200,200,200,204,204,204,204,208,208,208,208,212,212,212,212,216,216,216,216,220,220,220,220,224,224,224,224,228,228,228,228,232,232,232,232,236,236,236,236,240,240,240,240,244,244,244,244,248,248,248,248,252,252,252,252,0,1,0,1,4,5,4,5,8,9,8,9,12,13,12,13,16,17,16,17,20,21,20,21,24,25,24,25,28,29,28,29,32,33,32,33,36,37,36,37,40,41,40,41,44,45,44,45,48,49,48,49,52,53,52,53,56,57,56,57,60,61,60,61,64,65,64,65,68,69,68,69,72,73,72,73,76,77,76,77,80,81,80,81,84,85,84,85,88,89,88,89,92,93,92,93,96,97,96,97,100,101,100,101,104,105,104,105,108,109,108,109,112,113,112,113,116,117,116,117,120,121,120,121,124,125,124,125,128,129,128,129,132,133,132,133,136,137,136,137,140,141,140,141,144,145,144,145,148,149,148,149,152,153,152,153,156,157,156,157,160,161,160,161,164,165,164,165,168,169,168,169,172,173,172,173,176,177,176,177,180,181,180,181,184,185,184,185,188,189,188,189,192,193,192,193,196,197,196,197,200,201,200,201,204,205,204,205,208,209,208,209,212,213,212,213,216,217,216,217,220,221,220,221,224,225,224,225,228,229,228,229,232,233,232,233,236,237,236,237,240,241,240,241,244,245,244,245,248,249,248,249,252,253,252,253,0,0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,90,92,92,94,94,96,96,98,98,100,100,102,102,104,104,106,106,108,108,110,110,112,112,114,114,116,116,118,118,120,120,122,122,124,124,126,126,128,128,130,130,132,132,134,134,136,136,138,138,140,140,142,142,144,144,146,146,148,148,150,150,152,152,154,154,156,156,158,158,160,160,162,162,164,164,166,166,168,168,170,170,172,172,174,174,176,176,178,178,180,180,182,182,184,184,186,186,188,188,190,190,192,192,194,194,196,196,198,198,200,200,202,202,204,204,206,206,208,208,210,210,212,212,214,214,216,216,218,218,220,220,222,222,224,224,226,226,228,228,230,230,232,232,234,234,236,236,238,238,240,240,242,242,244,244,246,246,248,248,250,250,252,252,254,254,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255]],"f1px_T*CLMwDBHN(:N-~":["cpu.OR",[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,1,1,3,3,5,5,7,7,9,9,11,11,13,13,15,15,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,2,3,2,3,6,7,6,7,10,11,10,11,14,15,14,15,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,3,3,3,3,7,7,7,7,11,11,11,11,15,15,15,15,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,4,5,6,7,4,5,6,7,12,13,14,15,12,13,14,15,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,5,5,7,7,5,5,7,7,13,13,15,15,13,13,15,15,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,6,7,6,7,6,7,6,7,14,15,14,15,14,15,14,15,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,7,7,7,7,7,7,7,7,15,15,15,15,15,15,15,15,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,8,9,10,11,12,13,14,15,8,9,10,11,12,13,14,15,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,9,9,11,11,13,13,15,15,9,9,11,11,13,13,15,15,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,10,11,10,11,14,15,14,15,10,11,10,11,14,15,14,15,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,11,11,11,11,15,15,15,15,11,11,11,11,15,15,15,15,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,13,13,15,15,13,13,15,15,13,13,15,15,13,13,15,15,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,14,15,14,15,14,15,14,15,14,15,14,15,14,15,14,15,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,17,17,19,19,21,21,23,23,25,25,27,27,29,29,31,31,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,18,19,18,19,22,23,22,23,26,27,26,27,30,31,30,31,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,19,19,19,19,23,23,23,23,27,27,27,27,31,31,31,31,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,20,21,22,23,20,21,22,23,28,29,30,31,28,29,30,31,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,21,21,23,23,21,21,23,23,29,29,31,31,29,29,31,31,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,22,23,22,23,22,23,22,23,30,31,30,31,30,31,30,31,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,23,23,23,23,23,23,23,23,31,31,31,31,31,31,31,31,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,24,25,26,27,28,29,30,31,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,25,25,27,27,29,29,31,31,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,26,27,26,27,30,31,30,31,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,27,27,27,27,31,31,31,31,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,28,29,30,31,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,29,29,31,31,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,30,31,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,33,33,35,35,37,37,39,39,41,41,43,43,45,45,47,47,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,34,35,34,35,38,39,38,39,42,43,42,43,46,47,46,47,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,35,35,35,35,39,39,39,39,43,43,43,43,47,47,47,47,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,36,37,38,39,36,37,38,39,44,45,46,47,44,45,46,47,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,37,37,39,39,37,37,39,39,45,45,47,47,45,45,47,47,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,38,39,38,39,38,39,38,39,46,47,46,47,46,47,46,47,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,39,39,39,39,39,39,39,39,47,47,47,47,47,47,47,47,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,40,41,42,43,44,45,46,47,40,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,41,41,43,43,45,45,47,47,41,41,43,43,45,45,47,47,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,42,43,42,43,46,47,46,47,42,43,42,43,46,47,46,47,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,43,43,43,43,47,47,47,47,43,43,43,43,47,47,47,47,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,45,45,47,47,45,45,47,47,45,45,47,47,45,45,47,47,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,46,47,46,47,46,47,46,47,46,47,46,47,46,47,46,47,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,49,49,51,51,53,53,55,55,57,57,59,59,61,61,63,63,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,50,51,50,51,54,55,54,55,58,59,58,59,62,63,62,63,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,52,53,54,55,52,53,54,55,60,61,62,63,60,61,62,63,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,53,53,55,55,53,53,55,55,61,61,63,63,61,61,63,63,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,54,55,54,55,54,55,54,55,62,63,62,63,62,63,62,63,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,55,55,55,55,55,55,55,55,63,63,63,63,63,63,63,63,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,56,57,58,59,60,61,62,63,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,57,57,59,59,61,61,63,63,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,58,59,58,59,62,63,62,63,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,59,59,59,59,63,63,63,63,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,60,61,62,63,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,61,61,63,63,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,62,63,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,65,65,67,67,69,69,71,71,73,73,75,75,77,77,79,79,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,66,67,66,67,70,71,70,71,74,75,74,75,78,79,78,79,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,67,67,67,67,71,71,71,71,75,75,75,75,79,79,79,79,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,68,69,70,71,68,69,70,71,76,77,78,79,76,77,78,79,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,69,69,71,71,69,69,71,71,77,77,79,79,77,77,79,79,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,70,71,70,71,70,71,70,71,78,79,78,79,78,79,78,79,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,71,71,71,71,71,71,71,71,79,79,79,79,79,79,79,79,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,72,73,74,75,76,77,78,79,72,73,74,75,76,77,78,79,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,73,73,75,75,77,77,79,79,73,73,75,75,77,77,79,79,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,74,75,74,75,78,79,78,79,74,75,74,75,78,79,78,79,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,75,75,75,75,79,79,79,79,75,75,75,75,79,79,79,79,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,76,77,78,79,76,77,78,79,76,77,78,79,76,77,78,79,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,77,77,79,79,77,77,79,79,77,77,79,79,77,77,79,79,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,78,79,78,79,78,79,78,79,78,79,78,79,78,79,78,79,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,81,81,83,83,85,85,87,87,89,89,91,91,93,93,95,95,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,82,83,82,83,86,87,86,87,90,91,90,91,94,95,94,95,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,83,83,83,83,87,87,87,87,91,91,91,91,95,95,95,95,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,84,85,86,87,84,85,86,87,92,93,94,95,92,93,94,95,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,85,85,87,87,85,85,87,87,93,93,95,95,93,93,95,95,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,86,87,86,87,86,87,86,87,94,95,94,95,94,95,94,95,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,87,87,87,87,87,87,87,87,95,95,95,95,95,95,95,95,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,88,89,90,91,92,93,94,95,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,89,89,91,91,93,93,95,95,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,90,91,90,91,94,95,94,95,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,91,91,91,91,95,95,95,95,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,92,93,94,95,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,93,93,95,95,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,94,95,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,97,97,99,99,101,101,103,103,105,105,107,107,109,109,111,111,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,98,99,98,99,102,103,102,103,106,107,106,107,110,111,110,111,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,99,99,99,99,103,103,103,103,107,107,107,107,111,111,111,111,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,100,101,102,103,100,101,102,103,108,109,110,111,108,109,110,111,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,101,101,103,103,101,101,103,103,109,109,111,111,109,109,111,111,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,102,103,102,103,102,103,102,103,110,111,110,111,110,111,110,111,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,103,103,103,103,103,103,103,103,111,111,111,111,111,111,111,111,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,104,105,106,107,108,109,110,111,104,105,106,107,108,109,110,111,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,105,105,107,107,109,109,111,111,105,105,107,107,109,109,111,111,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,106,107,106,107,110,111,110,111,106,107,106,107,110,111,110,111,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,107,107,107,107,111,111,111,111,107,107,107,107,111,111,111,111,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,108,109,110,111,108,109,110,111,108,109,110,111,108,109,110,111,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,109,109,111,111,109,109,111,111,109,109,111,111,109,109,111,111,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,110,111,110,111,110,111,110,111,110,111,110,111,110,111,110,111,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,113,113,115,115,117,117,119,119,121,121,123,123,125,125,127,127,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,114,115,114,115,118,119,118,119,122,123,122,123,126,127,126,127,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,115,115,115,115,119,119,119,119,123,123,123,123,127,127,127,127,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,116,117,118,119,116,117,118,119,124,125,126,127,124,125,126,127,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,117,117,119,119,117,117,119,119,125,125,127,127,125,125,127,127,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,118,119,118,119,118,119,118,119,126,127,126,127,126,127,126,127,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,119,119,119,119,119,119,119,119,127,127,127,127,127,127,127,127,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,120,121,122,123,124,125,126,127,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,121,121,123,123,125,125,127,127,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,122,123,122,123,126,127,126,127,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,123,123,123,123,127,127,127,127,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,124,125,126,127,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,125,125,127,127,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,126,127,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,129,129,131,131,133,133,135,135,137,137,139,139,141,141,143,143,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,130,131,130,131,134,135,134,135,138,139,138,139,142,143,142,143,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,131,131,131,131,135,135,135,135,139,139,139,139,143,143,143,143,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,132,133,134,135,132,133,134,135,140,141,142,143,140,141,142,143,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,133,133,135,135,133,133,135,135,141,141,143,143,141,141,143,143,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,134,135,134,135,134,135,134,135,142,143,142,143,142,143,142,143,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,135,135,135,135,135,135,135,135,143,143,143,143,143,143,143,143,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,136,137,138,139,140,141,142,143,136,137,138,139,140,141,142,143,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,137,137,139,139,141,141,143,143,137,137,139,139,141,141,143,143,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,138,139,138,139,142,143,142,143,138,139,138,139,142,143,142,143,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,139,139,139,139,143,143,143,143,139,139,139,139,143,143,143,143,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,140,141,142,143,140,141,142,143,140,141,142,143,140,141,142,143,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,141,141,143,143,141,141,143,143,141,141,143,143,141,141,143,143,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,142,143,142,143,142,143,142,143,142,143,142,143,142,143,142,143,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,145,145,147,147,149,149,151,151,153,153,155,155,157,157,159,159,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,146,147,146,147,150,151,150,151,154,155,154,155,158,159,158,159,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,147,147,147,147,151,151,151,151,155,155,155,155,159,159,159,159,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,148,149,150,151,148,149,150,151,156,157,158,159,156,157,158,159,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,149,149,151,151,149,149,151,151,157,157,159,159,157,157,159,159,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,150,151,150,151,150,151,150,151,158,159,158,159,158,159,158,159,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,151,151,151,151,151,151,151,151,159,159,159,159,159,159,159,159,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,152,153,154,155,156,157,158,159,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,153,153,155,155,157,157,159,159,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,154,155,154,155,158,159,158,159,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,155,155,155,155,159,159,159,159,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,156,157,158,159,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,157,157,159,159,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,161,161,163,163,165,165,167,167,169,169,171,171,173,173,175,175,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,162,163,162,163,166,167,166,167,170,171,170,171,174,175,174,175,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,163,163,163,163,167,167,167,167,171,171,171,171,175,175,175,175,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,164,165,166,167,164,165,166,167,172,173,174,175,172,173,174,175,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,165,165,167,167,165,165,167,167,173,173,175,175,173,173,175,175,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,166,167,166,167,166,167,166,167,174,175,174,175,174,175,174,175,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,167,167,167,167,167,167,167,167,175,175,175,175,175,175,175,175,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,168,169,170,171,172,173,174,175,168,169,170,171,172,173,174,175,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,169,169,171,171,173,173,175,175,169,169,171,171,173,173,175,175,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,170,171,170,171,174,175,174,175,170,171,170,171,174,175,174,175,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,171,171,171,171,175,175,175,175,171,171,171,171,175,175,175,175,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,172,173,174,175,172,173,174,175,172,173,174,175,172,173,174,175,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,173,173,175,175,173,173,175,175,173,173,175,175,173,173,175,175,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,174,175,174,175,174,175,174,175,174,175,174,175,174,175,174,175,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,177,177,179,179,181,181,183,183,185,185,187,187,189,189,191,191,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,178,179,178,179,182,183,182,183,186,187,186,187,190,191,190,191,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,179,179,179,179,183,183,183,183,187,187,187,187,191,191,191,191,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,180,181,182,183,180,181,182,183,188,189,190,191,188,189,190,191,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,181,181,183,183,181,181,183,183,189,189,191,191,189,189,191,191,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,182,183,182,183,182,183,182,183,190,191,190,191,190,191,190,191,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,183,183,183,183,183,183,183,183,191,191,191,191,191,191,191,191,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,184,185,186,187,188,189,190,191,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,185,185,187,187,189,189,191,191,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,186,187,186,187,190,191,190,191,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,187,187,187,187,191,191,191,191,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,188,189,190,191,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,189,189,191,191,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,190,191,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,193,193,195,195,197,197,199,199,201,201,203,203,205,205,207,207,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,194,195,194,195,198,199,198,199,202,203,202,203,206,207,206,207,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,195,195,195,195,199,199,199,199,203,203,203,203,207,207,207,207,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,196,197,198,199,196,197,198,199,204,205,206,207,204,205,206,207,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,197,197,199,199,197,197,199,199,205,205,207,207,205,205,207,207,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,198,199,198,199,198,199,198,199,206,207,206,207,206,207,206,207,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,199,199,199,199,199,199,199,199,207,207,207,207,207,207,207,207,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,200,201,202,203,204,205,206,207,200,201,202,203,204,205,206,207,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,201,201,203,203,205,205,207,207,201,201,203,203,205,205,207,207,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,202,203,202,203,206,207,206,207,202,203,202,203,206,207,206,207,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,203,203,203,203,207,207,207,207,203,203,203,203,207,207,207,207,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,204,205,206,207,204,205,206,207,204,205,206,207,204,205,206,207,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,205,205,207,207,205,205,207,207,205,205,207,207,205,205,207,207,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,206,207,206,207,206,207,206,207,206,207,206,207,206,207,206,207,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,209,209,211,211,213,213,215,215,217,217,219,219,221,221,223,223,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,210,211,210,211,214,215,214,215,218,219,218,219,222,223,222,223,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,211,211,211,211,215,215,215,215,219,219,219,219,223,223,223,223,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,212,213,214,215,212,213,214,215,220,221,222,223,220,221,222,223,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,213,213,215,215,213,213,215,215,221,221,223,223,221,221,223,223,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,214,215,214,215,214,215,214,215,222,223,222,223,222,223,222,223,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,215,215,215,215,215,215,215,215,223,223,223,223,223,223,223,223,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,216,217,218,219,220,221,222,223,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,217,217,219,219,221,221,223,223,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,218,219,218,219,222,223,222,223,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,219,219,219,219,223,223,223,223,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,220,221,222,223,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,221,221,223,223,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,222,223,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,225,225,227,227,229,229,231,231,233,233,235,235,237,237,239,239,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,226,227,226,227,230,231,230,231,234,235,234,235,238,239,238,239,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,227,227,227,227,231,231,231,231,235,235,235,235,239,239,239,239,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,228,229,230,231,228,229,230,231,236,237,238,239,236,237,238,239,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,229,229,231,231,229,229,231,231,237,237,239,239,237,237,239,239,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,230,231,230,231,230,231,230,231,238,239,238,239,238,239,238,239,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,231,231,231,231,231,231,231,231,239,239,239,239,239,239,239,239,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,232,233,234,235,236,237,238,239,232,233,234,235,236,237,238,239,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,233,233,235,235,237,237,239,239,233,233,235,235,237,237,239,239,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,234,235,234,235,238,239,238,239,234,235,234,235,238,239,238,239,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,235,235,235,235,239,239,239,239,235,235,235,235,239,239,239,239,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,236,237,238,239,236,237,238,239,236,237,238,239,236,237,238,239,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,237,237,239,239,237,237,239,239,237,237,239,239,237,237,239,239,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,238,239,238,239,238,239,238,239,238,239,238,239,238,239,238,239,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,241,241,243,243,245,245,247,247,249,249,251,251,253,253,255,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,242,243,242,243,246,247,246,247,250,251,250,251,254,255,254,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,243,243,243,243,247,247,247,247,251,251,251,251,255,255,255,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,244,245,246,247,244,245,246,247,252,253,254,255,252,253,254,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,245,245,247,247,245,245,247,247,253,253,255,255,253,253,255,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,246,247,246,247,246,247,246,247,254,255,254,255,254,255,254,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,247,247,247,247,247,247,247,247,255,255,255,255,255,255,255,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,248,249,250,251,252,253,254,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,249,249,251,251,253,253,255,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,250,251,250,251,254,255,254,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,251,251,251,251,255,255,255,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,252,253,254,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,253,253,255,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]],"uswSWlTlHX6y.g*]!d$!":["cpu.XOR",[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,241,240,243,242,245,244,247,246,249,248,251,250,253,252,255,254,225,224,227,226,229,228,231,230,233,232,235,234,237,236,239,238,209,208,211,210,213,212,215,214,217,216,219,218,221,220,223,222,193,192,195,194,197,196,199,198,201,200,203,202,205,204,207,206,177,176,179,178,181,180,183,182,185,184,187,186,189,188,191,190,161,160,163,162,165,164,167,166,169,168,171,170,173,172,175,174,145,144,147,146,149,148,151,150,153,152,155,154,157,156,159,158,129,128,131,130,133,132,135,134,137,136,139,138,141,140,143,142,113,112,115,114,117,116,119,118,121,120,123,122,125,124,127,126,97,96,99,98,101,100,103,102,105,104,107,106,109,108,111,110,81,80,83,82,85,84,87,86,89,88,91,90,93,92,95,94,65,64,67,66,69,68,71,70,73,72,75,74,77,76,79,78,49,48,51,50,53,52,55,54,57,56,59,58,61,60,63,62,33,32,35,34,37,36,39,38,41,40,43,42,45,44,47,46,17,16,19,18,21,20,23,22,25,24,27,26,29,28,31,30,1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14,242,243,240,241,246,247,244,245,250,251,248,249,254,255,252,253,226,227,224,225,230,231,228,229,234,235,232,233,238,239,236,237,210,211,208,209,214,215,212,213,218,219,216,217,222,223,220,221,194,195,192,193,198,199,196,197,202,203,200,201,206,207,204,205,178,179,176,177,182,183,180,181,186,187,184,185,190,191,188,189,162,163,160,161,166,167,164,165,170,171,168,169,174,175,172,173,146,147,144,145,150,151,148,149,154,155,152,153,158,159,156,157,130,131,128,129,134,135,132,133,138,139,136,137,142,143,140,141,114,115,112,113,118,119,116,117,122,123,120,121,126,127,124,125,98,99,96,97,102,103,100,101,106,107,104,105,110,111,108,109,82,83,80,81,86,87,84,85,90,91,88,89,94,95,92,93,66,67,64,65,70,71,68,69,74,75,72,73,78,79,76,77,50,51,48,49,54,55,52,53,58,59,56,57,62,63,60,61,34,35,32,33,38,39,36,37,42,43,40,41,46,47,44,45,18,19,16,17,22,23,20,21,26,27,24,25,30,31,28,29,2,3,0,1,6,7,4,5,10,11,8,9,14,15,12,13,243,242,241,240,247,246,245,244,251,250,249,248,255,254,253,252,227,226,225,224,231,230,229,228,235,234,233,232,239,238,237,236,211,210,209,208,215,214,213,212,219,218,217,216,223,222,221,220,195,194,193,192,199,198,197,196,203,202,201,200,207,206,205,204,179,178,177,176,183,182,181,180,187,186,185,184,191,190,189,188,163,162,161,160,167,166,165,164,171,170,169,168,175,174,173,172,147,146,145,144,151,150,149,148,155,154,153,152,159,158,157,156,131,130,129,128,135,134,133,132,139,138,137,136,143,142,141,140,115,114,113,112,119,118,117,116,123,122,121,120,127,126,125,124,99,98,97,96,103,102,101,100,107,106,105,104,111,110,109,108,83,82,81,80,87,86,85,84,91,90,89,88,95,94,93,92,67,66,65,64,71,70,69,68,75,74,73,72,79,78,77,76,51,50,49,48,55,54,53,52,59,58,57,56,63,62,61,60,35,34,33,32,39,38,37,36,43,42,41,40,47,46,45,44,19,18,17,16,23,22,21,20,27,26,25,24,31,30,29,28,3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12,244,245,246,247,240,241,242,243,252,253,254,255,248,249,250,251,228,229,230,231,224,225,226,227,236,237,238,239,232,233,234,235,212,213,214,215,208,209,210,211,220,221,222,223,216,217,218,219,196,197,198,199,192,193,194,195,204,205,206,207,200,201,202,203,180,181,182,183,176,177,178,179,188,189,190,191,184,185,186,187,164,165,166,167,160,161,162,163,172,173,174,175,168,169,170,171,148,149,150,151,144,145,146,147,156,157,158,159,152,153,154,155,132,133,134,135,128,129,130,131,140,141,142,143,136,137,138,139,116,117,118,119,112,113,114,115,124,125,126,127,120,121,122,123,100,101,102,103,96,97,98,99,108,109,110,111,104,105,106,107,84,85,86,87,80,81,82,83,92,93,94,95,88,89,90,91,68,69,70,71,64,65,66,67,76,77,78,79,72,73,74,75,52,53,54,55,48,49,50,51,60,61,62,63,56,57,58,59,36,37,38,39,32,33,34,35,44,45,46,47,40,41,42,43,20,21,22,23,16,17,18,19,28,29,30,31,24,25,26,27,4,5,6,7,0,1,2,3,12,13,14,15,8,9,10,11,245,244,247,246,241,240,243,242,253,252,255,254,249,248,251,250,229,228,231,230,225,224,227,226,237,236,239,238,233,232,235,234,213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218,197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202,181,180,183,182,177,176,179,178,189,188,191,190,185,184,187,186,165,164,167,166,161,160,163,162,173,172,175,174,169,168,171,170,149,148,151,150,145,144,147,146,157,156,159,158,153,152,155,154,133,132,135,134,129,128,131,130,141,140,143,142,137,136,139,138,117,116,119,118,113,112,115,114,125,124,127,126,121,120,123,122,101,100,103,102,97,96,99,98,109,108,111,110,105,104,107,106,85,84,87,86,81,80,83,82,93,92,95,94,89,88,91,90,69,68,71,70,65,64,67,66,77,76,79,78,73,72,75,74,53,52,55,54,49,48,51,50,61,60,63,62,57,56,59,58,37,36,39,38,33,32,35,34,45,44,47,46,41,40,43,42,21,20,23,22,17,16,19,18,29,28,31,30,25,24,27,26,5,4,7,6,1,0,3,2,13,12,15,14,9,8,11,10,246,247,244,245,242,243,240,241,254,255,252,253,250,251,248,249,230,231,228,229,226,227,224,225,238,239,236,237,234,235,232,233,214,215,212,213,210,211,208,209,222,223,220,221,218,219,216,217,198,199,196,197,194,195,192,193,206,207,204,205,202,203,200,201,182,183,180,181,178,179,176,177,190,191,188,189,186,187,184,185,166,167,164,165,162,163,160,161,174,175,172,173,170,171,168,169,150,151,148,149,146,147,144,145,158,159,156,157,154,155,152,153,134,135,132,133,130,131,128,129,142,143,140,141,138,139,136,137,118,119,116,117,114,115,112,113,126,127,124,125,122,123,120,121,102,103,100,101,98,99,96,97,110,111,108,109,106,107,104,105,86,87,84,85,82,83,80,81,94,95,92,93,90,91,88,89,70,71,68,69,66,67,64,65,78,79,76,77,74,75,72,73,54,55,52,53,50,51,48,49,62,63,60,61,58,59,56,57,38,39,36,37,34,35,32,33,46,47,44,45,42,43,40,41,22,23,20,21,18,19,16,17,30,31,28,29,26,27,24,25,6,7,4,5,2,3,0,1,14,15,12,13,10,11,8,9,247,246,245,244,243,242,241,240,255,254,253,252,251,250,249,248,231,230,229,228,227,226,225,224,239,238,237,236,235,234,233,232,215,214,213,212,211,210,209,208,223,222,221,220,219,218,217,216,199,198,197,196,195,194,193,192,207,206,205,204,203,202,201,200,183,182,181,180,179,178,177,176,191,190,189,188,187,186,185,184,167,166,165,164,163,162,161,160,175,174,173,172,171,170,169,168,151,150,149,148,147,146,145,144,159,158,157,156,155,154,153,152,135,134,133,132,131,130,129,128,143,142,141,140,139,138,137,136,119,118,117,116,115,114,113,112,127,126,125,124,123,122,121,120,103,102,101,100,99,98,97,96,111,110,109,108,107,106,105,104,87,86,85,84,83,82,81,80,95,94,93,92,91,90,89,88,71,70,69,68,67,66,65,64,79,78,77,76,75,74,73,72,55,54,53,52,51,50,49,48,63,62,61,60,59,58,57,56,39,38,37,36,35,34,33,32,47,46,45,44,43,42,41,40,23,22,21,20,19,18,17,16,31,30,29,28,27,26,25,24,7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8,248,249,250,251,252,253,254,255,240,241,242,243,244,245,246,247,232,233,234,235,236,237,238,239,224,225,226,227,228,229,230,231,216,217,218,219,220,221,222,223,208,209,210,211,212,213,214,215,200,201,202,203,204,205,206,207,192,193,194,195,196,197,198,199,184,185,186,187,188,189,190,191,176,177,178,179,180,181,182,183,168,169,170,171,172,173,174,175,160,161,162,163,164,165,166,167,152,153,154,155,156,157,158,159,144,145,146,147,148,149,150,151,136,137,138,139,140,141,142,143,128,129,130,131,132,133,134,135,120,121,122,123,124,125,126,127,112,113,114,115,116,117,118,119,104,105,106,107,108,109,110,111,96,97,98,99,100,101,102,103,88,89,90,91,92,93,94,95,80,81,82,83,84,85,86,87,72,73,74,75,76,77,78,79,64,65,66,67,68,69,70,71,56,57,58,59,60,61,62,63,48,49,50,51,52,53,54,55,40,41,42,43,44,45,46,47,32,33,34,35,36,37,38,39,24,25,26,27,28,29,30,31,16,17,18,19,20,21,22,23,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,249,248,251,250,253,252,255,254,241,240,243,242,245,244,247,246,233,232,235,234,237,236,239,238,225,224,227,226,229,228,231,230,217,216,219,218,221,220,223,222,209,208,211,210,213,212,215,214,201,200,203,202,205,204,207,206,193,192,195,194,197,196,199,198,185,184,187,186,189,188,191,190,177,176,179,178,181,180,183,182,169,168,171,170,173,172,175,174,161,160,163,162,165,164,167,166,153,152,155,154,157,156,159,158,145,144,147,146,149,148,151,150,137,136,139,138,141,140,143,142,129,128,131,130,133,132,135,134,121,120,123,122,125,124,127,126,113,112,115,114,117,116,119,118,105,104,107,106,109,108,111,110,97,96,99,98,101,100,103,102,89,88,91,90,93,92,95,94,81,80,83,82,85,84,87,86,73,72,75,74,77,76,79,78,65,64,67,66,69,68,71,70,57,56,59,58,61,60,63,62,49,48,51,50,53,52,55,54,41,40,43,42,45,44,47,46,33,32,35,34,37,36,39,38,25,24,27,26,29,28,31,30,17,16,19,18,21,20,23,22,9,8,11,10,13,12,15,14,1,0,3,2,5,4,7,6,250,251,248,249,254,255,252,253,242,243,240,241,246,247,244,245,234,235,232,233,238,239,236,237,226,227,224,225,230,231,228,229,218,219,216,217,222,223,220,221,210,211,208,209,214,215,212,213,202,203,200,201,206,207,204,205,194,195,192,193,198,199,196,197,186,187,184,185,190,191,188,189,178,179,176,177,182,183,180,181,170,171,168,169,174,175,172,173,162,163,160,161,166,167,164,165,154,155,152,153,158,159,156,157,146,147,144,145,150,151,148,149,138,139,136,137,142,143,140,141,130,131,128,129,134,135,132,133,122,123,120,121,126,127,124,125,114,115,112,113,118,119,116,117,106,107,104,105,110,111,108,109,98,99,96,97,102,103,100,101,90,91,88,89,94,95,92,93,82,83,80,81,86,87,84,85,74,75,72,73,78,79,76,77,66,67,64,65,70,71,68,69,58,59,56,57,62,63,60,61,50,51,48,49,54,55,52,53,42,43,40,41,46,47,44,45,34,35,32,33,38,39,36,37,26,27,24,25,30,31,28,29,18,19,16,17,22,23,20,21,10,11,8,9,14,15,12,13,2,3,0,1,6,7,4,5,251,250,249,248,255,254,253,252,243,242,241,240,247,246,245,244,235,234,233,232,239,238,237,236,227,226,225,224,231,230,229,228,219,218,217,216,223,222,221,220,211,210,209,208,215,214,213,212,203,202,201,200,207,206,205,204,195,194,193,192,199,198,197,196,187,186,185,184,191,190,189,188,179,178,177,176,183,182,181,180,171,170,169,168,175,174,173,172,163,162,161,160,167,166,165,164,155,154,153,152,159,158,157,156,147,146,145,144,151,150,149,148,139,138,137,136,143,142,141,140,131,130,129,128,135,134,133,132,123,122,121,120,127,126,125,124,115,114,113,112,119,118,117,116,107,106,105,104,111,110,109,108,99,98,97,96,103,102,101,100,91,90,89,88,95,94,93,92,83,82,81,80,87,86,85,84,75,74,73,72,79,78,77,76,67,66,65,64,71,70,69,68,59,58,57,56,63,62,61,60,51,50,49,48,55,54,53,52,43,42,41,40,47,46,45,44,35,34,33,32,39,38,37,36,27,26,25,24,31,30,29,28,19,18,17,16,23,22,21,20,11,10,9,8,15,14,13,12,3,2,1,0,7,6,5,4,252,253,254,255,248,249,250,251,244,245,246,247,240,241,242,243,236,237,238,239,232,233,234,235,228,229,230,231,224,225,226,227,220,221,222,223,216,217,218,219,212,213,214,215,208,209,210,211,204,205,206,207,200,201,202,203,196,197,198,199,192,193,194,195,188,189,190,191,184,185,186,187,180,181,182,183,176,177,178,179,172,173,174,175,168,169,170,171,164,165,166,167,160,161,162,163,156,157,158,159,152,153,154,155,148,149,150,151,144,145,146,147,140,141,142,143,136,137,138,139,132,133,134,135,128,129,130,131,124,125,126,127,120,121,122,123,116,117,118,119,112,113,114,115,108,109,110,111,104,105,106,107,100,101,102,103,96,97,98,99,92,93,94,95,88,89,90,91,84,85,86,87,80,81,82,83,76,77,78,79,72,73,74,75,68,69,70,71,64,65,66,67,60,61,62,63,56,57,58,59,52,53,54,55,48,49,50,51,44,45,46,47,40,41,42,43,36,37,38,39,32,33,34,35,28,29,30,31,24,25,26,27,20,21,22,23,16,17,18,19,12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3,253,252,255,254,249,248,251,250,245,244,247,246,241,240,243,242,237,236,239,238,233,232,235,234,229,228,231,230,225,224,227,226,221,220,223,222,217,216,219,218,213,212,215,214,209,208,211,210,205,204,207,206,201,200,203,202,197,196,199,198,193,192,195,194,189,188,191,190,185,184,187,186,181,180,183,182,177,176,179,178,173,172,175,174,169,168,171,170,165,164,167,166,161,160,163,162,157,156,159,158,153,152,155,154,149,148,151,150,145,144,147,146,141,140,143,142,137,136,139,138,133,132,135,134,129,128,131,130,125,124,127,126,121,120,123,122,117,116,119,118,113,112,115,114,109,108,111,110,105,104,107,106,101,100,103,102,97,96,99,98,93,92,95,94,89,88,91,90,85,84,87,86,81,80,83,82,77,76,79,78,73,72,75,74,69,68,71,70,65,64,67,66,61,60,63,62,57,56,59,58,53,52,55,54,49,48,51,50,45,44,47,46,41,40,43,42,37,36,39,38,33,32,35,34,29,28,31,30,25,24,27,26,21,20,23,22,17,16,19,18,13,12,15,14,9,8,11,10,5,4,7,6,1,0,3,2,254,255,252,253,250,251,248,249,246,247,244,245,242,243,240,241,238,239,236,237,234,235,232,233,230,231,228,229,226,227,224,225,222,223,220,221,218,219,216,217,214,215,212,213,210,211,208,209,206,207,204,205,202,203,200,201,198,199,196,197,194,195,192,193,190,191,188,189,186,187,184,185,182,183,180,181,178,179,176,177,174,175,172,173,170,171,168,169,166,167,164,165,162,163,160,161,158,159,156,157,154,155,152,153,150,151,148,149,146,147,144,145,142,143,140,141,138,139,136,137,134,135,132,133,130,131,128,129,126,127,124,125,122,123,120,121,118,119,116,117,114,115,112,113,110,111,108,109,106,107,104,105,102,103,100,101,98,99,96,97,94,95,92,93,90,91,88,89,86,87,84,85,82,83,80,81,78,79,76,77,74,75,72,73,70,71,68,69,66,67,64,65,62,63,60,61,58,59,56,57,54,55,52,53,50,51,48,49,46,47,44,45,42,43,40,41,38,39,36,37,34,35,32,33,30,31,28,29,26,27,24,25,22,23,20,21,18,19,16,17,14,15,12,13,10,11,8,9,6,7,4,5,2,3,0,1,255,254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231,230,229,228,227,226,225,224,223,222,221,220,219,218,217,216,215,214,213,212,211,210,209,208,207,206,205,204,203,202,201,200,199,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165,164,163,162,161,160,159,158,157,156,155,154,153,152,151,150,149,148,147,146,145,144,143,142,141,140,139,138,137,136,135,134,133,132,131,130,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0]],":TYuQ{k^?W|-(h*HoRHY":["debug.hex",[]],"ZI6jT*maN/O:dSK7N^[]":["debug.logfile",[]],"Tx$_:cz6Jr3p-!vZktx)":["keys",[0,0,0,0,0,0,0,0]],"KpS4?xDdr8vRoQwO#$-1":["+sound clone duty cycle",["0","0","0","0"]],"NQ)87@,pNCswi9RIO:aK":["+sound envelope timer",["0","0","0","0"]],"w7.09Is,(.^,-Ux0jw.b":["+sound length timer",["0","0","0","0"]]},"broadcasts":{"oauq{1.?KIC%2JlgJq^:":"get_rom","onPsFYdb^;g,DoWfegZ6":"Chip-8","JCga`c%_Lh.vS^Oi-]%~":"Launch Emulator","!2(a]?F2a@E8z]_J[5|e":"Launch EmulatorWaitd","z5-P7L^,~Tl$WbM;J[:d":"un-needed broadcast","~aYLGw3tAmLz}I]nV`xz":"fade_out","!J7PA/A8Vo=COeNoxT48":"stop_scripts","UJX@vI^YiH#tJAcG0`PO":"HelloInter","gofV]+|49LxJ]7Ibhwn8":"start game",";hlm4HQ+D)yZ$]6D9TXl":"exit emulator","xB|em[!gg`ddhH3H,iB6":"get_theme","SbKns6%SF_audjA)ak#n":"Load_Prebuilt_game","*~j7B^$jo;Babt$i@0p-":"render_screen","x8INpJ;)l|hiI!g`;GE|":"Project not saving fix","i``63/!/.F6oLg73$p#5":"GUI_Emulator_Select","eUXr-]/_0N]qtaXLt(ye":"prune","`NRJ+e5K0Tj^PUuZG!,Z":"wave","#z59?3=sivtfq@){KBjG":"sound.updatech8buffer","1$IbL{2UD4|fdA:ahKxG":"wave create",".+sr=pJUQmu{0)%LLjC}":"BytePusher","nXk!G*y_h@WG)9_e/VKR":"Nuke all lists","Pi~qDSlxleRjJ@ah)D#o":"WAVE-8_drawkeys","O7?o@Pl6XR6dG~oq]ZEc":"create sound","q@nrUic%_jFs,BP#Pz@]":"emulate!!","a/*ydNVQOyIS;1P2=ed*":"pause","so.q}ABBns#?n!myeYQ(":"unpause","/]Pw*,JgP~%ctRqLaCr]":"init","SnQYRZP^Bda`yWbPz,$[":"make_tables","a,=[Gay5*+98NY%7e1=p":"draw","ET.1ru=%3YXJv8(/!(4S":"5b","0|$coU#Vlwnj!3!NWjhi":"display_size","?5cnTm~BIOy)iiINw1|j":"dmc_start","rKDIUs;/F{C6pMu5`JB^":"dmc_stop","X8}7lXU4UNdr2{s]fs4c":"sound.updateMC8buffer","5F;%8N/Qr^Di?+)(*eE.":"8080","g91@,@Kt00yu7FuRXO~I":"get_controls","5V0sDNDr+0A=YC_`nb#{":"remapwave8","DcmIuyN[t=e,sXx3*Ij3":"logomove","Hl=mTBLxLS*0,~TGH|OS":"CP/M Call","!(hs25J7|{;5#Cu=Hf~s":"Load_base64","|c=UL-|1:KK,V8,g?krF":"WAVE-8 reset","1amq:*wJaAnoe7q=5[5t":"clonekiller","#azR?e|zZPviPwY:dM%T":"reset emulator","7m=3YPBU?W]n9k?^($RV":"+audioEngineUpdateAll","^z1|H-hoS6S+QODIuSdP":"+turnoffaudio","I_(AeXui8E/6)MsAd^JH":"drawFPScounter"},"blocks":{"a*t":{"opcode":"event_whenflagclicked","next":"k}","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":971,"y":-526},"k}":{"opcode":"data_setvariableto","next":"ai","parent":"a*t","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Load Rom Flag","k%s.$KTqVN5iXl^Zm!/f"]},"shadow":false,"topLevel":false},"ai":{"opcode":"control_if","next":"*u","parent":"k}","inputs":{"CONDITION":[2,"a*u"],"SUBSTACK":[2,"o_"]},"fields":{},"shadow":false,"topLevel":false},"a*u":{"opcode":"operator_equals","next":null,"parent":"ai","inputs":{"OPERAND1":[3,[12,"coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"o_":{"opcode":"looks_switchbackdropto","next":"*v","parent":"ai","inputs":{"BACKDROP":[1,"a*v"]},"fields":{},"shadow":false,"topLevel":false},"a*v":{"opcode":"looks_backdrops","next":null,"parent":"o_","inputs":{},"fields":{"BACKDROP":["Gradient2",null]},"shadow":true,"topLevel":false},"*v":{"opcode":"data_setvariableto","next":"*w","parent":"o_","inputs":{"VALUE":[1,[10,"Rebuilding Tables..."]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"*w":{"opcode":"data_showvariable","next":"*x","parent":"*v","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"*x":{"opcode":"event_broadcastandwait","next":"a*w","parent":"*w","inputs":{"BROADCAST_INPUT":[1,[11,"make_tables","SnQYRZP^Bda`yWbPz,$["]]},"fields":{},"shadow":false,"topLevel":false},"a*w":{"opcode":"data_setvariableto","next":null,"parent":"*x","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"]},"shadow":false,"topLevel":false},"*u":{"opcode":"data_hidevariable","next":"*y","parent":"ai","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"*y":{"opcode":"data_setvariableto","next":"a*x","parent":"*u","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"a*x":{"opcode":"event_broadcast","next":null,"parent":"*y","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a*y":{"opcode":"event_whenbroadcastreceived","next":"eZ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]},"shadow":false,"topLevel":true,"x":1527,"y":754},"eZ":{"opcode":"control_stop","next":"Zc","parent":"a*y","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"Zc":{"opcode":"control_repeat","next":"e!","parent":"eZ","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"a*z"]},"fields":{},"shadow":false,"topLevel":false},"a*z":{"opcode":"sound_changevolumeby","next":null,"parent":"Zc","inputs":{"VOLUME":[1,[4,"-10"]]},"fields":{},"shadow":false,"topLevel":false},"e!":{"opcode":"sound_stopallsounds","next":"Zd","parent":"Zc","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Zd":{"opcode":"control_if","next":null,"parent":"e!","inputs":{"CONDITION":[2,"a*A"],"SUBSTACK":[2,"*z"]},"fields":{},"shadow":false,"topLevel":false},"a*A":{"opcode":"operator_equals","next":null,"parent":"Zd","inputs":{"OPERAND1":[3,[12,"Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*z":{"opcode":"event_broadcastandwait","next":"a*B","parent":"Zd","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"a*B":{"opcode":"event_broadcast","next":null,"parent":"*z","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a*C":{"opcode":"event_whenbroadcastreceived","next":"*A","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":369,"y":64},"*A":{"opcode":"data_setvariableto","next":"*B","parent":"a*C","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"]},"shadow":false,"topLevel":false},"*B":{"opcode":"sound_stopallsounds","next":"NM","parent":"*A","inputs":{},"fields":{},"shadow":false,"topLevel":false},"NM":{"opcode":"looks_switchbackdropto","next":"*C","parent":"*B","inputs":{"BACKDROP":[3,"a*D","a*E"]},"fields":{},"shadow":false,"topLevel":false},"a*D":{"opcode":"data_itemoflist","next":null,"parent":"NM","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*E":{"opcode":"looks_backdrops","next":null,"parent":"NM","inputs":{},"fields":{"BACKDROP":["Gradient",null]},"shadow":true,"topLevel":false},"*C":{"opcode":"pen_clear","next":"*D","parent":"NM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*D":{"opcode":"microbit_displayClear","next":"*E","parent":"*C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*E":{"opcode":"sound_setvolumeto","next":"*F","parent":"*D","inputs":{"VOLUME":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"*F":{"opcode":"control_forever","next":null,"parent":"*E","inputs":{"SUBSTACK":[2,"Ic"]},"fields":{},"shadow":false,"topLevel":false},"Ic":{"opcode":"sound_playuntildone","next":null,"parent":"*F","inputs":{"SOUND_MENU":[3,"*G","a*F"]},"fields":{},"shadow":false,"topLevel":false},"*G":{"opcode":"operator_add","next":null,"parent":"Ic","inputs":{"NUM1":[3,"a*G",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a*G":{"opcode":"data_itemoflist","next":null,"parent":"*G","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*F":{"opcode":"sound_sounds_menu","next":null,"parent":"Ic","inputs":{},"fields":{"SOUND_MENU":["Purple Planet Music - Chilled - Global Tech",null]},"shadow":true,"topLevel":false},"a*H":{"opcode":"event_whenbroadcastreceived","next":"*H","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":387,"y":2655},"*H":{"opcode":"control_wait","next":"*I","parent":"a*H","inputs":{"DURATION":[1,[5,"2"]]},"fields":{},"shadow":false,"topLevel":false},"*I":{"opcode":"control_forever","next":null,"parent":"*H","inputs":{"SUBSTACK":[2,"o`"]},"fields":{},"shadow":false,"topLevel":false},"o`":{"opcode":"control_if","next":null,"parent":"*I","inputs":{"CONDITION":[2,"*J"],"SUBSTACK":[2,"NN"]},"fields":{},"shadow":false,"topLevel":false},"*J":{"opcode":"operator_not","next":null,"parent":"o`","inputs":{"OPERAND":[2,"a*I"]},"fields":{},"shadow":false,"topLevel":false},"a*I":{"opcode":"operator_equals","next":null,"parent":"*J","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"NN":{"opcode":"control_if","next":"NO","parent":"o`","inputs":{"CONDITION":[2,"o{"],"SUBSTACK":[2,"NP"]},"fields":{},"shadow":false,"topLevel":false},"o{":{"opcode":"operator_or","next":null,"parent":"NN","inputs":{"OPERAND1":[2,"o|"],"OPERAND2":[2,"*K"]},"fields":{},"shadow":false,"topLevel":false},"o|":{"opcode":"operator_or","next":null,"parent":"o{","inputs":{"OPERAND1":[2,"*L"],"OPERAND2":[2,"*M"]},"fields":{},"shadow":false,"topLevel":false},"*L":{"opcode":"sensing_keypressed","next":null,"parent":"o|","inputs":{"KEY_OPTION":[1,"a*J"]},"fields":{},"shadow":false,"topLevel":false},"a*J":{"opcode":"sensing_keyoptions","next":null,"parent":"*L","inputs":{},"fields":{"KEY_OPTION":["right arrow",null]},"shadow":true,"topLevel":false},"*M":{"opcode":"sensing_keypressed","next":null,"parent":"o|","inputs":{"KEY_OPTION":[1,"a*K"]},"fields":{},"shadow":false,"topLevel":false},"a*K":{"opcode":"sensing_keyoptions","next":null,"parent":"*M","inputs":{},"fields":{"KEY_OPTION":["d",null]},"shadow":true,"topLevel":false},"*K":{"opcode":"microbit_isTilted","next":null,"parent":"o{","inputs":{"DIRECTION":[1,"a*L"]},"fields":{},"shadow":false,"topLevel":false},"a*L":{"opcode":"microbit_menu_tiltDirectionAny","next":null,"parent":"*K","inputs":{},"fields":{"tiltDirectionAny":["right",null]},"shadow":true,"topLevel":false},"NP":{"opcode":"sound_play","next":"NQ","parent":"NN","inputs":{"SOUND_MENU":[3,"*N","a*M"]},"fields":{},"shadow":false,"topLevel":false},"*N":{"opcode":"operator_add","next":null,"parent":"NP","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a*N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*N":{"opcode":"data_itemoflist","next":null,"parent":"*N","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*M":{"opcode":"sound_sounds_menu","next":null,"parent":"NP","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"NQ":{"opcode":"control_repeat","next":"cW","parent":"NP","inputs":{"TIMES":[3,"*O",[6,"0"]],"SUBSTACK":[2,"*P"]},"fields":{},"shadow":false,"topLevel":false},"*O":{"opcode":"operator_multiply","next":null,"parent":"NQ","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"*Q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*Q":{"opcode":"operator_add","next":null,"parent":"*O","inputs":{"NUM1":[3,"a*O",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*O":{"opcode":"argument_reporter_boolean","next":null,"parent":"*Q","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"*P":{"opcode":"data_changevariableby","next":null,"parent":"NQ","inputs":{"VALUE":[3,"*R",[4,"0"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"*R":{"opcode":"operator_divide","next":null,"parent":"*P","inputs":{"NUM1":[1,[4,"-50"]],"NUM2":[3,"*S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*S":{"opcode":"operator_add","next":null,"parent":"*R","inputs":{"NUM1":[3,"a*P",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*P":{"opcode":"argument_reporter_boolean","next":null,"parent":"*S","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"cW":{"opcode":"control_if","next":"a*Q","parent":"NQ","inputs":{"CONDITION":[2,"o}"],"SUBSTACK":[2,"a*R"]},"fields":{},"shadow":false,"topLevel":false},"o}":{"opcode":"operator_or","next":null,"parent":"cW","inputs":{"OPERAND1":[2,"a*S"],"OPERAND2":[2,"*T"]},"fields":{},"shadow":false,"topLevel":false},"a*S":{"opcode":"operator_gt","next":null,"parent":"o}","inputs":{"OPERAND1":[1,[10,"-1600"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*T":{"opcode":"operator_not","next":null,"parent":"o}","inputs":{"OPERAND":[2,"*U"]},"fields":{},"shadow":false,"topLevel":false},"*U":{"opcode":"operator_equals","next":null,"parent":"*T","inputs":{"OPERAND1":[3,"a*T",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*T":{"opcode":"operator_mod","next":null,"parent":"*U","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"a*R":{"opcode":"data_setvariableto","next":null,"parent":"cW","inputs":{"VALUE":[1,[10,"200"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"a*Q":{"opcode":"control_wait","next":null,"parent":"cW","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"NO":{"opcode":"control_if","next":"Id","parent":"NN","inputs":{"CONDITION":[2,"Ie"],"SUBSTACK":[2,"cX"]},"fields":{},"shadow":false,"topLevel":false},"Ie":{"opcode":"operator_or","next":null,"parent":"NO","inputs":{"OPERAND1":[2,"If"],"OPERAND2":[2,"*V"]},"fields":{},"shadow":false,"topLevel":false},"If":{"opcode":"operator_or","next":null,"parent":"Ie","inputs":{"OPERAND1":[2,"*W"],"OPERAND2":[2,"*X"]},"fields":{},"shadow":false,"topLevel":false},"*W":{"opcode":"sensing_keypressed","next":null,"parent":"If","inputs":{"KEY_OPTION":[1,"a*U"]},"fields":{},"shadow":false,"topLevel":false},"a*U":{"opcode":"sensing_keyoptions","next":null,"parent":"*W","inputs":{},"fields":{"KEY_OPTION":["left arrow",null]},"shadow":true,"topLevel":false},"*X":{"opcode":"sensing_keypressed","next":null,"parent":"If","inputs":{"KEY_OPTION":[1,"a*V"]},"fields":{},"shadow":false,"topLevel":false},"a*V":{"opcode":"sensing_keyoptions","next":null,"parent":"*X","inputs":{},"fields":{"KEY_OPTION":["a",null]},"shadow":true,"topLevel":false},"*V":{"opcode":"microbit_isTilted","next":null,"parent":"Ie","inputs":{"DIRECTION":[1,"a*W"]},"fields":{},"shadow":false,"topLevel":false},"a*W":{"opcode":"microbit_menu_tiltDirectionAny","next":null,"parent":"*V","inputs":{},"fields":{"tiltDirectionAny":["left",null]},"shadow":true,"topLevel":false},"cX":{"opcode":"sound_play","next":"k~","parent":"NO","inputs":{"SOUND_MENU":[3,"*Y","a*X"]},"fields":{},"shadow":false,"topLevel":false},"*Y":{"opcode":"operator_add","next":null,"parent":"cX","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a*Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*Y":{"opcode":"data_itemoflist","next":null,"parent":"*Y","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*X":{"opcode":"sound_sounds_menu","next":null,"parent":"cX","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"k~":{"opcode":"control_repeat","next":"la","parent":"cX","inputs":{"TIMES":[3,"*Z",[6,"0"]],"SUBSTACK":[2,"*!"]},"fields":{},"shadow":false,"topLevel":false},"*Z":{"opcode":"operator_multiply","next":null,"parent":"k~","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"*#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*#":{"opcode":"operator_add","next":null,"parent":"*Z","inputs":{"NUM1":[3,"a*Z",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*Z":{"opcode":"argument_reporter_boolean","next":null,"parent":"*#","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"*!":{"opcode":"data_changevariableby","next":null,"parent":"k~","inputs":{"VALUE":[3,"*%",[4,"0"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"*%":{"opcode":"operator_divide","next":null,"parent":"*!","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"*(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*(":{"opcode":"operator_add","next":null,"parent":"*%","inputs":{"NUM1":[3,"a*!",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*!":{"opcode":"argument_reporter_boolean","next":null,"parent":"*(","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"la":{"opcode":"control_if","next":"a*#","parent":"k~","inputs":{"CONDITION":[2,"Ig"],"SUBSTACK":[2,"a*%"]},"fields":{},"shadow":false,"topLevel":false},"Ig":{"opcode":"operator_or","next":null,"parent":"la","inputs":{"OPERAND1":[2,"a*("],"OPERAND2":[2,"*)"]},"fields":{},"shadow":false,"topLevel":false},"a*(":{"opcode":"operator_gt","next":null,"parent":"Ig","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"*)":{"opcode":"operator_not","next":null,"parent":"Ig","inputs":{"OPERAND":[2,"**"]},"fields":{},"shadow":false,"topLevel":false},"**":{"opcode":"operator_equals","next":null,"parent":"*)","inputs":{"OPERAND1":[3,"a*)",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*)":{"opcode":"operator_mod","next":null,"parent":"**","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"a*%":{"opcode":"data_setvariableto","next":null,"parent":"la","inputs":{"VALUE":[1,[10,"-1600"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"a*#":{"opcode":"control_wait","next":null,"parent":"la","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"Id":{"opcode":"control_if","next":null,"parent":"NO","inputs":{"CONDITION":[2,"Ih"],"SUBSTACK":[2,"*+"]},"fields":{},"shadow":false,"topLevel":false},"Ih":{"opcode":"operator_and","next":null,"parent":"Id","inputs":{"OPERAND1":[2,"Ii"],"OPERAND2":[2,"*,"]},"fields":{},"shadow":false,"topLevel":false},"Ii":{"opcode":"operator_or","next":null,"parent":"Ih","inputs":{"OPERAND1":[2,"Ij"],"OPERAND2":[2,"*-"]},"fields":{},"shadow":false,"topLevel":false},"Ij":{"opcode":"operator_or","next":null,"parent":"Ii","inputs":{"OPERAND1":[2,"*."],"OPERAND2":[2,"*/"]},"fields":{},"shadow":false,"topLevel":false},"*.":{"opcode":"sensing_keypressed","next":null,"parent":"Ij","inputs":{"KEY_OPTION":[1,"a**"]},"fields":{},"shadow":false,"topLevel":false},"a**":{"opcode":"sensing_keyoptions","next":null,"parent":"*.","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"*/":{"opcode":"sensing_keypressed","next":null,"parent":"Ij","inputs":{"KEY_OPTION":[1,"a*+"]},"fields":{},"shadow":false,"topLevel":false},"a*+":{"opcode":"sensing_keyoptions","next":null,"parent":"*/","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"*-":{"opcode":"microbit_isButtonPressed","next":null,"parent":"Ii","inputs":{"BTN":[1,"a*,"]},"fields":{},"shadow":false,"topLevel":false},"a*,":{"opcode":"microbit_menu_buttons","next":null,"parent":"*-","inputs":{},"fields":{"buttons":["A",null]},"shadow":true,"topLevel":false},"*,":{"opcode":"operator_equals","next":null,"parent":"Ih","inputs":{"OPERAND1":[3,"a*-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*-":{"opcode":"operator_mod","next":null,"parent":"*,","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"*+":{"opcode":"event_broadcast","next":"lb","parent":"Id","inputs":{"BROADCAST_INPUT":[1,[11,"GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]]},"fields":{},"shadow":false,"topLevel":false},"lb":{"opcode":"control_if_else","next":null,"parent":"*+","inputs":{"CONDITION":[2,"Ik"],"SUBSTACK":[2,"*:"],"SUBSTACK2":[2,"*;"]},"fields":{},"shadow":false,"topLevel":false},"Ik":{"opcode":"operator_and","next":null,"parent":"lb","inputs":{"OPERAND1":[2,"a*."],"OPERAND2":[2,"a*/"]},"fields":{},"shadow":false,"topLevel":false},"a*.":{"opcode":"operator_gt","next":null,"parent":"Ik","inputs":{"OPERAND1":[1,[10,"-200"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*/":{"opcode":"operator_equals","next":null,"parent":"Ik","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*:":{"opcode":"control_stop","next":"a*:","parent":"lb","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a*:":{"opcode":"control_stop","next":null,"parent":"*:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"*;":{"opcode":"control_wait_until","next":null,"parent":"lb","inputs":{"CONDITION":[2,"*="]},"fields":{},"shadow":false,"topLevel":false},"*=":{"opcode":"operator_not","next":null,"parent":"*;","inputs":{"OPERAND":[2,"Il"]},"fields":{},"shadow":false,"topLevel":false},"Il":{"opcode":"operator_or","next":null,"parent":"*=","inputs":{"OPERAND1":[2,"Im"],"OPERAND2":[2,"NR"]},"fields":{},"shadow":false,"topLevel":false},"Im":{"opcode":"operator_or","next":null,"parent":"Il","inputs":{"OPERAND1":[2,"NS"],"OPERAND2":[2,"NT"]},"fields":{},"shadow":false,"topLevel":false},"NS":{"opcode":"sensing_keypressed","next":null,"parent":"Im","inputs":{"KEY_OPTION":[1,"a*;"]},"fields":{},"shadow":false,"topLevel":false},"a*;":{"opcode":"sensing_keyoptions","next":null,"parent":"NS","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"NT":{"opcode":"sensing_keypressed","next":null,"parent":"Im","inputs":{"KEY_OPTION":[1,"a*="]},"fields":{},"shadow":false,"topLevel":false},"a*=":{"opcode":"sensing_keyoptions","next":null,"parent":"NT","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"NR":{"opcode":"microbit_isButtonPressed","next":null,"parent":"Il","inputs":{"BTN":[1,"a*?"]},"fields":{},"shadow":false,"topLevel":false},"a*?":{"opcode":"microbit_menu_buttons","next":null,"parent":"NR","inputs":{},"fields":{"buttons":["A",null]},"shadow":true,"topLevel":false},"a*@":{"opcode":"event_whenbroadcastreceived","next":"o~","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_theme","xB|em[!gg`ddhH3H,iB6"]},"shadow":false,"topLevel":true,"x":369,"y":568},"o~":{"opcode":"microbit_displaySymbol","next":"pa","parent":"a*@","inputs":{"MATRIX":[1,"a*["]},"fields":{},"shadow":false,"topLevel":false},"a*[":{"opcode":"matrix","next":null,"parent":"o~","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"pa":{"opcode":"sensing_askandwait","next":"pb","parent":"o~","inputs":{"QUESTION":[3,"*?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*?":{"opcode":"operator_join","next":null,"parent":"pa","inputs":{"STRING1":[1,[10,"Paste your 8-digit theme code now. (Current code: "]],"STRING2":[3,"*@",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"*@":{"opcode":"operator_join","next":null,"parent":"*?","inputs":{"STRING1":[3,"pc",[10,""]],"STRING2":[1,[10,")"]]},"fields":{},"shadow":false,"topLevel":false},"pc":{"opcode":"operator_join","next":null,"parent":"*@","inputs":{"STRING1":[3,"pd",[10,""]],"STRING2":[3,"pe",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pd":{"opcode":"operator_join","next":null,"parent":"pc","inputs":{"STRING1":[3,"pf",[10,""]],"STRING2":[3,"pg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pf":{"opcode":"operator_join","next":null,"parent":"pd","inputs":{"STRING1":[3,"a*]",[10,""]],"STRING2":[3,"a*^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*]":{"opcode":"data_itemoflist","next":null,"parent":"pf","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*^":{"opcode":"data_itemoflist","next":null,"parent":"pf","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"pg":{"opcode":"operator_join","next":null,"parent":"pd","inputs":{"STRING1":[3,"a*_",[10,""]],"STRING2":[3,"a*`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*_":{"opcode":"data_itemoflist","next":null,"parent":"pg","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*`":{"opcode":"data_itemoflist","next":null,"parent":"pg","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"pe":{"opcode":"operator_join","next":null,"parent":"pc","inputs":{"STRING1":[3,"ph",[10,""]],"STRING2":[3,"pi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ph":{"opcode":"operator_join","next":null,"parent":"pe","inputs":{"STRING1":[3,"a*{",[10,""]],"STRING2":[3,"a*|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*{":{"opcode":"data_itemoflist","next":null,"parent":"ph","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*|":{"opcode":"data_itemoflist","next":null,"parent":"ph","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"pi":{"opcode":"operator_join","next":null,"parent":"pe","inputs":{"STRING1":[3,"a*}",[10,""]],"STRING2":[3,"a*~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a*}":{"opcode":"data_itemoflist","next":null,"parent":"pi","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a*~":{"opcode":"data_itemoflist","next":null,"parent":"pi","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"pb":{"opcode":"procedures_call","next":"*[","parent":"pa","inputs":{"Y5U!10,iILijcuE`/_rN":[3,"a+a",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"decrypt %s","argumentids":"[\"Y5U!10,iILijcuE`/_rN\"]","warp":"false"}},"a+a":{"opcode":"sensing_answer","next":null,"parent":"pb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*[":{"opcode":"microbit_displayClear","next":"*]","parent":"pb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*]":{"opcode":"data_setvariableto","next":"a+b","parent":"*[","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"]},"shadow":false,"topLevel":false},"a+b":{"opcode":"event_broadcast","next":null,"parent":"*]","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"*^":{"opcode":"procedures_definition","next":"lc","parent":null,"inputs":{"custom_block":[1,"*_"]},"fields":{},"shadow":false,"topLevel":true,"x":340,"y":1019},"*_":{"opcode":"procedures_prototype","next":null,"parent":"*^","inputs":{"Y5U!10,iILijcuE`/_rN":[1,"a+c"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"decrypt %s","argumentids":"[\"Y5U!10,iILijcuE`/_rN\"]","argumentnames":"[\"Decryption\"]","argumentdefaults":"[\"\"]","warp":"false"}},"a+c":{"opcode":"argument_reporter_string_number","next":null,"parent":"*_","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":true,"topLevel":false},"lc":{"opcode":"control_if_else","next":null,"parent":"*^","inputs":{"CONDITION":[2,"*`"],"SUBSTACK":[2,"NU"],"SUBSTACK2":[2,"*{"]},"fields":{},"shadow":false,"topLevel":false},"*`":{"opcode":"operator_gt","next":null,"parent":"lc","inputs":{"OPERAND1":[3,"*|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*|":{"opcode":"operator_length","next":null,"parent":"*`","inputs":{"STRING":[3,"a+d",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+d":{"opcode":"argument_reporter_string_number","next":null,"parent":"*|","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"NU":{"opcode":"control_if_else","next":null,"parent":"lc","inputs":{"CONDITION":[2,"*}"],"SUBSTACK":[2,"pj"],"SUBSTACK2":[2,"*~"]},"fields":{},"shadow":false,"topLevel":false},"*}":{"opcode":"operator_equals","next":null,"parent":"NU","inputs":{"OPERAND1":[3,"a+e",[10,""]],"OPERAND2":[1,[10,"random"]]},"fields":{},"shadow":false,"topLevel":false},"a+e":{"opcode":"argument_reporter_string_number","next":null,"parent":"*}","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"pj":{"opcode":"data_replaceitemoflist","next":"pk","parent":"NU","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a+f",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+f":{"opcode":"operator_random","next":null,"parent":"pj","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"pk":{"opcode":"data_replaceitemoflist","next":"pl","parent":"pj","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"a+g",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+g":{"opcode":"operator_random","next":null,"parent":"pk","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"pl":{"opcode":"data_replaceitemoflist","next":"pm","parent":"pk","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"a+h",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+h":{"opcode":"operator_random","next":null,"parent":"pl","inputs":{"FROM":[1,[4,"2"]],"TO":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"pm":{"opcode":"data_replaceitemoflist","next":"pn","parent":"pl","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"a+i",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+i":{"opcode":"operator_random","next":null,"parent":"pm","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"pn":{"opcode":"data_replaceitemoflist","next":"po","parent":"pm","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"a+j",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+j":{"opcode":"operator_random","next":null,"parent":"pn","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"po":{"opcode":"data_replaceitemoflist","next":"pp","parent":"pn","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"a+k",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+k":{"opcode":"operator_random","next":null,"parent":"po","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"pp":{"opcode":"data_replaceitemoflist","next":"+a","parent":"po","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"a+l",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+l":{"opcode":"operator_random","next":null,"parent":"pp","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+a":{"opcode":"data_replaceitemoflist","next":null,"parent":"pp","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"a+m",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+m":{"opcode":"operator_random","next":null,"parent":"+a","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*~":{"opcode":"data_deletealloflist","next":"+b","parent":"NU","inputs":{},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+b":{"opcode":"data_setvariableto","next":"pq","parent":"*~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Acc🚽","26y~e9uZ-)1V@_#QCbz="]},"shadow":false,"topLevel":false},"pq":{"opcode":"control_repeat","next":null,"parent":"+b","inputs":{"TIMES":[3,"+c",[6,"0"]],"SUBSTACK":[2,"+d"]},"fields":{},"shadow":false,"topLevel":false},"+c":{"opcode":"operator_length","next":null,"parent":"pq","inputs":{"STRING":[3,"a+n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+n":{"opcode":"argument_reporter_string_number","next":null,"parent":"+c","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"+d":{"opcode":"data_changevariableby","next":"+e","parent":"pq","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["Acc🚽","26y~e9uZ-)1V@_#QCbz="]},"shadow":false,"topLevel":false},"+e":{"opcode":"data_addtolist","next":null,"parent":"+d","inputs":{"ITEM":[3,"+f",[10,""]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+f":{"opcode":"operator_letter_of","next":null,"parent":"+e","inputs":{"LETTER":[3,[12,"Acc🚽","26y~e9uZ-)1V@_#QCbz="],[6,"0"]],"STRING":[3,"a+o",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+o":{"opcode":"argument_reporter_string_number","next":null,"parent":"+f","inputs":{},"fields":{"VALUE":["Decryption",null]},"shadow":false,"topLevel":false},"*{":{"opcode":"data_replaceitemoflist","next":"+g","parent":"lc","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+g":{"opcode":"data_replaceitemoflist","next":"+h","parent":"*{","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+h":{"opcode":"data_replaceitemoflist","next":"+i","parent":"+g","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+i":{"opcode":"data_replaceitemoflist","next":"+j","parent":"+h","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+j":{"opcode":"data_replaceitemoflist","next":"+k","parent":"+i","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+k":{"opcode":"data_replaceitemoflist","next":"+l","parent":"+j","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"+l":{"opcode":"data_replaceitemoflist","next":"a+p","parent":"+k","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a+p":{"opcode":"data_replaceitemoflist","next":null,"parent":"+l","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false}},"comments":{"e#":{"blockId":"f","x":1545,"y":5753,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"aI":{"blockId":"a","x":2285,"y":1415,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},"aJ":{"blockId":"L","x":12131,"y":2152,"width":200,"height":200,"minimized":true,"text":"5"},"aK":{"blockId":"M","x":12131,"y":2392,"width":200,"height":200,"minimized":true,"text":"6"},"a,":{"blockId":"N","x":12135,"y":2632,"width":200,"height":200,"minimized":true,"text":"7"},"a-":{"blockId":"O","x":12131,"y":2872,"width":200,"height":200,"minimized":true,"text":"8"},"a.":{"blockId":"aj","x":12131,"y":3112,"width":200,"height":200,"minimized":true,"text":"9"},"a/":{"blockId":"ak","x":12135,"y":3352,"width":200,"height":200,"minimized":true,"text":"A"},"bL":{"blockId":"g","x":360,"y":494,"width":200,"height":200,"minimized":true,"text":"0x2AC - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"aL":{"blockId":"d","x":1827,"y":2451,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aM":{"blockId":"cY","x":1826,"y":3635,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"e%":{"blockId":"cZ","x":1780,"y":4779,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"pr":{"blockId":"h","x":1625,"y":5982,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"ps":{"blockId":"al","x":1604,"y":6174,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"pt":{"blockId":"am","x":1605,"y":6379,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"a:":{"blockId":"c!","x":1751,"y":6544,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"i":{"blockId":"j","x":1616,"y":9433,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"a+q":{"blockId":"Ze","x":1525,"y":12167,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"pu":{"blockId":"m","x":1547,"y":12616,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"e(":{"blockId":"n","x":1890,"y":12873,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"pv":{"blockId":"P","x":1569,"y":13153,"width":200,"height":200,"minimized":true,"text":"0010 (Mega-Chip) - Disable Megachip mode"},"bZ,":{"blockId":null,"x":844,"y":67,"width":1095,"height":240,"minimized":false,"text":"GUIDE TO THEME CODES:\n-Letter 1: Chooses music track 1-9. (Ex: 1 = play 2nd sound in backdrop, 2 = play 3rd sound in backdrop)\n-Letter 2: Chooses backdrop for main menu. (Ex. 1 = Backdrop #1 [Which is \"Gradient\"]) (hex value, \n-Letter 3: Sets the Y position of the tiles: ([value]*50) - 230\n-Letter 4: If this is 0, the logo does not appear. Any other value will cause it to display (does not affect height like in Executec's Wave Menu Customizer)\n-Letter 5: The first digit of the color value used for the logo and menu tiles\n-Letter 6: The second digit of the color value used for the logo and menu tiles\n-Letter 7: Special menu flag - changes how icons move\n-Letter 8: Special Emu flag - 0 for normal emulator layout, 1 for alt"},"bZ-":{"blockId":null,"x":462,"y":-212,"width":350,"height":150,"minimized":false,"text":"Configuration for https://turbowarp.org/\nYou can move, resize, and minimize this comment, but don't edit it by hand. This comment can be deleted to remove the stored settings.\n{\"framerate\":60} // _twconfig_"}},"currentCostume":3,"costumes":[{"name":"Gradient","bitmapResolution":1,"dataFormat":"svg","assetId":"51bdeafd6882cfffb782a6aab9a1b417","md5ext":"51bdeafd6882cfffb782a6aab9a1b417.svg","rotationCenterX":359.259,"rotationCenterY":183.618795},{"name":"WDS menu theme","bitmapResolution":2,"dataFormat":"png","assetId":"2693c857c44627834f8336f9887e42d0","md5ext":"2693c857c44627834f8336f9887e42d0.png","rotationCenterX":480,"rotationCenterY":360},{"name":"Chip-8","bitmapResolution":1,"dataFormat":"svg","assetId":"f938bfeece32792ba2718cb6495d57c5","md5ext":"f938bfeece32792ba2718cb6495d57c5.svg","rotationCenterX":356.10508500000003,"rotationCenterY":193.5},{"name":"Game Boy","bitmapResolution":1,"dataFormat":"svg","assetId":"1d08b958fae50344d057710f5a6a3cd3","md5ext":"1d08b958fae50344d057710f5a6a3cd3.svg","rotationCenterX":366.29646465892597,"rotationCenterY":200.44556037277152},{"name":"HelloWorld","bitmapResolution":1,"dataFormat":"svg","assetId":"e4d955b6cfc775a43fe5d1b9ea07dd2a","md5ext":"e4d955b6cfc775a43fe5d1b9ea07dd2a.svg","rotationCenterX":347.08859000000007,"rotationCenterY":210},{"name":"Black","bitmapResolution":1,"dataFormat":"svg","assetId":"f85368d91ee392416ca1eaa1440c0adf","md5ext":"f85368d91ee392416ca1eaa1440c0adf.svg","rotationCenterX":337.50000000000006,"rotationCenterY":180.5},{"name":"screen","bitmapResolution":1,"dataFormat":"svg","assetId":"759219d5c8f29a8e007b354561635343","md5ext":"759219d5c8f29a8e007b354561635343.svg","rotationCenterX":240,"rotationCenterY":180.31433},{"name":"NES","bitmapResolution":2,"dataFormat":"png","assetId":"38b1374bdf8cf1b105c406161a56f1f7","md5ext":"38b1374bdf8cf1b105c406161a56f1f7.png","rotationCenterX":480,"rotationCenterY":360},{"name":"SI8080","bitmapResolution":1,"dataFormat":"svg","assetId":"5ff235798c5446fb71987a34f8aa7b66","md5ext":"5ff235798c5446fb71987a34f8aa7b66.svg","rotationCenterX":352.5,"rotationCenterY":226},{"name":"backdrop1","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"BytePusher","bitmapResolution":2,"dataFormat":"png","assetId":"a16ca25547941108ececb1be532f9f20","md5ext":"a16ca25547941108ececb1be532f9f20.png","rotationCenterX":438,"rotationCenterY":355},{"name":"Gradient2","bitmapResolution":1,"dataFormat":"svg","assetId":"64d71ca977274c77420f2dac75427b5e","md5ext":"64d71ca977274c77420f2dac75427b5e.svg","rotationCenterX":359.52402000000006,"rotationCenterY":179.87586499999998},{"name":"angry","bitmapResolution":2,"dataFormat":"png","assetId":"879ca525179af0f24bd499596fbce825","md5ext":"879ca525179af0f24bd499596fbce825.png","rotationCenterX":123,"rotationCenterY":64}],"sounds":[{"name":"ping-bing","assetId":"2e8cb3fd485e0c82f52a768c13f6d354","dataFormat":"wav","format":"","rate":48000,"sampleCount":15812,"md5ext":"2e8cb3fd485e0c82f52a768c13f6d354.wav"},{"name":"Slide WDS","assetId":"ceabc6ee6f56f4c82fd9755ca443d497","dataFormat":"wav","format":"","rate":48000,"sampleCount":19339,"md5ext":"ceabc6ee6f56f4c82fd9755ca443d497.wav"},{"name":"Purple Planet Music - Chilled - Global Tech","assetId":"60c0f16e86df1d94f16777e09cfcbd6a","dataFormat":"wav","rate":22050,"sampleCount":2026921,"md5ext":"60c0f16e86df1d94f16777e09cfcbd6a.wav"},{"name":"WDS-Menu","assetId":"2d59971c9a589b079e7ad65140961869","dataFormat":"mp3","rate":48000,"sampleCount":6012342,"md5ext":"2d59971c9a589b079e7ad65140961869.mp3"},{"name":"12 Special Stamps","assetId":"f9501b167681484f7387fd2ac62ea186","dataFormat":"mp3","rate":48000,"sampleCount":2589257,"md5ext":"f9501b167681484f7387fd2ac62ea186.mp3"},{"name":"Get Stickbugged Lol","assetId":"0dacf47808238baf7ac3219f07892016","dataFormat":"mp3","rate":48000,"sampleCount":4256496,"md5ext":"0dacf47808238baf7ac3219f07892016.mp3"}],"volume":0,"layerOrder":0,"tempo":60,"videoTransparency":50,"videoState":"on","textToSpeechLanguage":"en"},{"isStage":false,"name":"nothing","variables":{},"lists":{},"broadcasts":{},"blocks":{},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":19,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"HelloWorld","variables":{"M1MRH6V)bg-6jD{ugH=J":["Input","0"],"|vEUSf.D@`%N,D.^3/|b":["Ahello","1"],"Nacx{A2WY%QGLX/QgF]N":["import.char",0],"^agx?=rasT|:*cBkFdeB":["import.binary",0],"3lt5rd5NtHtm.gOc6_3L":["import.status",0],"2gur[deD.u_*HDC_JLPm":["import.read_return",0],"zsxII[X,wz?xvCvofbsI":["import.rom_length",0],"LihSp{MQuQGg`jIcI]x(":["import.dummy",0],"4alDl:(*zINs=KzJfNuw":["import.ascii",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"uAm4?3ed1Q#FT#;rW,cx":["chip8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["chip8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["speed (CPF)",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"IoL_ukas[]D_ug%.x83m":["import.percent",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"S:$!kD9d2^^Zt4F0Bbpw":["chip8.HPS",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpqFO)Ai_xwJZInrX[!~":["load",0],"Mh+n98ZN{1B*npNt5f45":["temp",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode",0],"lo_vMT]e;W^6J}L{.;?|":["Velocity",0],"_FiygW_%~W7KsK!n$5T{":["S",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Hf?;Y:LWGAxk[p?1562`":["chip8.audio",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"0Gx#lEQQyAoSQ1SH~+fu":["Load ROMs: _rom",[]],"#2t_c630N5NI?I=l]FZ]":["load",[]],"3`C#KsI[WM=%ZSxuHQ!~":["mappers",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"NV":{"opcode":"procedures_definition","next":"pw","parent":null,"inputs":{"custom_block":[1,"NW"]},"fields":{},"shadow":false,"topLevel":true,"x":921,"y":64},"NW":{"opcode":"procedures_prototype","next":null,"parent":"NV","inputs":{"Qi31Z;B$.Clm/kthjb4$":[1,"a+r"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"Qi31Z;B$.Clm/kthjb4$\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a+r":{"opcode":"argument_reporter_string_number","next":null,"parent":"NW","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"pw":{"opcode":"data_setvariableto","next":"NX","parent":"NV","inputs":{"VALUE":[3,"a+s",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a+s":{"opcode":"argument_reporter_string_number","next":null,"parent":"pw","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"NX":{"opcode":"data_deletealloflist","next":"NY","parent":"pw","inputs":{},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"NY":{"opcode":"control_repeat","next":"px","parent":"NX","inputs":{"TIMES":[3,"a+t",[6,"0"]],"SUBSTACK":[2,"a+u"]},"fields":{},"shadow":false,"topLevel":false},"a+t":{"opcode":"argument_reporter_string_number","next":null,"parent":"NY","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"a+u":{"opcode":"data_addtolist","next":null,"parent":"NY","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"px":{"opcode":"control_repeat","next":null,"parent":"NY","inputs":{"TIMES":[3,"NZ",[6,"0"]],"SUBSTACK":[2,"N!"]},"fields":{},"shadow":false,"topLevel":false},"NZ":{"opcode":"operator_round","next":null,"parent":"px","inputs":{"NUM":[3,"py",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"py":{"opcode":"operator_divide","next":null,"parent":"NZ","inputs":{"NUM1":[3,"N#",[4,"0"]],"NUM2":[3,"a+v",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N#":{"opcode":"operator_mathop","next":null,"parent":"py","inputs":{"NUM":[3,"a+w",[4,"0"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"a+w":{"opcode":"argument_reporter_string_number","next":null,"parent":"N#","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"a+v":{"opcode":"operator_mathop","next":null,"parent":"py","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"N!":{"opcode":"data_setvariableto","next":"N%","parent":"px","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"N%":{"opcode":"data_setvariableto","next":"pz","parent":"N!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"pz":{"opcode":"data_setvariableto","next":"pA","parent":"N%","inputs":{"VALUE":[3,"N(",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"N(":{"opcode":"operator_mathop","next":null,"parent":"pz","inputs":{"NUM":[3,"a+x",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a+x":{"opcode":"operator_divide","next":null,"parent":"N(","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pA":{"opcode":"control_repeat","next":null,"parent":"pz","inputs":{"TIMES":[3,"a+y",[6,"0"]],"SUBSTACK":[2,"N)"]},"fields":{},"shadow":false,"topLevel":false},"a+y":{"opcode":"argument_reporter_string_number","next":null,"parent":"pA","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"N)":{"opcode":"data_replaceitemoflist","next":"N*","parent":"pA","inputs":{"INDEX":[3,"a+z",[7,"0"]],"ITEM":[3,"N+",[10,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a+z":{"opcode":"operator_add","next":null,"parent":"N)","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N+":{"opcode":"operator_join","next":null,"parent":"N)","inputs":{"STRING1":[3,"N,",[10,""]],"STRING2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"N,":{"opcode":"data_itemoflist","next":null,"parent":"N+","inputs":{"INDEX":[3,"a+A",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a+A":{"opcode":"operator_add","next":null,"parent":"N,","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N*":{"opcode":"data_changevariableby","next":"Zf","parent":"N)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Zf":{"opcode":"control_if","next":null,"parent":"N*","inputs":{"CONDITION":[2,"N-"],"SUBSTACK":[2,"+m"]},"fields":{},"shadow":false,"topLevel":false},"N-":{"opcode":"operator_equals","next":null,"parent":"Zf","inputs":{"OPERAND1":[3,"a+B",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+B":{"opcode":"operator_mod","next":null,"parent":"N-","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"+m":{"opcode":"data_setvariableto","next":null,"parent":"Zf","inputs":{"VALUE":[3,"a+C",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a+C":{"opcode":"operator_subtract","next":null,"parent":"+m","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"N.":{"opcode":"procedures_definition","next":"N/","parent":null,"inputs":{"custom_block":[1,"a+D"]},"fields":{},"shadow":false,"topLevel":true,"x":6941,"y":64},"a+D":{"opcode":"procedures_prototype","next":null,"parent":"N.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"N/":{"opcode":"control_repeat_until","next":"N:","parent":"N.","inputs":{"CONDITION":[2,"Zg"],"SUBSTACK":[2,"a+E"]},"fields":{},"shadow":false,"topLevel":false},"Zg":{"opcode":"operator_or","next":null,"parent":"N/","inputs":{"OPERAND1":[2,"N;"],"OPERAND2":[2,"N="]},"fields":{},"shadow":false,"topLevel":false},"N;":{"opcode":"operator_equals","next":null,"parent":"Zg","inputs":{"OPERAND1":[3,"a+F",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+F":{"opcode":"data_itemoflist","next":null,"parent":"N;","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"N=":{"opcode":"operator_equals","next":null,"parent":"Zg","inputs":{"OPERAND1":[3,"a+G",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+G":{"opcode":"data_itemoflist","next":null,"parent":"N=","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+E":{"opcode":"data_deleteoflist","next":null,"parent":"N/","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"N:":{"opcode":"data_replaceitemoflist","next":"pB","parent":"N/","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"pB":{"opcode":"control_repeat","next":null,"parent":"N:","inputs":{"TIMES":[3,"N?",[6,"0"]],"SUBSTACK":[2,"a+H"]},"fields":{},"shadow":false,"topLevel":false},"N?":{"opcode":"operator_subtract","next":null,"parent":"pB","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"a+I",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+I":{"opcode":"data_lengthoflist","next":null,"parent":"N?","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+H":{"opcode":"data_addtolist","next":null,"parent":"pB","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"N@":{"opcode":"procedures_definition","next":"N[","parent":null,"inputs":{"custom_block":[1,"a+J"]},"fields":{},"shadow":false,"topLevel":true,"x":7864,"y":64},"a+J":{"opcode":"procedures_prototype","next":null,"parent":"N@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_bitwise init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"N[":{"opcode":"data_deletealloflist","next":"N]","parent":"N@","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"N]":{"opcode":"data_deletealloflist","next":"pC","parent":"N[","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"pC":{"opcode":"control_repeat","next":"N^","parent":"N]","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"N_"]},"fields":{},"shadow":false,"topLevel":false},"N_":{"opcode":"data_addtolist","next":"a+K","parent":"pC","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+K":{"opcode":"data_addtolist","next":null,"parent":"N_","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"N^":{"opcode":"data_deletealloflist","next":"pD","parent":"pC","inputs":{},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"pD":{"opcode":"control_repeat","next":"N`","parent":"N^","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"pE"]},"fields":{},"shadow":false,"topLevel":false},"pE":{"opcode":"control_repeat","next":"a+L","parent":"pD","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"N{"]},"fields":{},"shadow":false,"topLevel":false},"N{":{"opcode":"data_setvariableto","next":"N|","parent":"pE","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"N|":{"opcode":"data_setvariableto","next":"pF","parent":"N{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"pF":{"opcode":"control_repeat","next":"+n","parent":"N|","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"N}"]},"fields":{},"shadow":false,"topLevel":false},"N}":{"opcode":"data_changevariableby","next":"N~","parent":"pF","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"N~":{"opcode":"data_setvariableto","next":null,"parent":"N}","inputs":{"VALUE":[3,"Oa",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Oa":{"opcode":"operator_join","next":null,"parent":"N~","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"Ob",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ob":{"opcode":"operator_round","next":null,"parent":"Oa","inputs":{"NUM":[3,"pG",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pG":{"opcode":"operator_and","next":null,"parent":"Ob","inputs":{"OPERAND1":[2,"a+M"],"OPERAND2":[2,"a+N"]},"fields":{},"shadow":false,"topLevel":false},"a+M":{"opcode":"data_itemoflist","next":null,"parent":"pG","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+N":{"opcode":"data_itemoflist","next":null,"parent":"pG","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"+n":{"opcode":"procedures_call","next":"Oc","parent":"pF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"Oc":{"opcode":"data_addtolist","next":null,"parent":"+n","inputs":{"ITEM":[3,"a+O",[10,""]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"a+O":{"opcode":"operator_round","next":null,"parent":"Oc","inputs":{"NUM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a+L":{"opcode":"procedures_call","next":null,"parent":"pE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"N`":{"opcode":"data_deletealloflist","next":"pH","parent":"pD","inputs":{},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"pH":{"opcode":"control_repeat","next":"+o","parent":"N`","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"pI"]},"fields":{},"shadow":false,"topLevel":false},"pI":{"opcode":"control_repeat","next":"a+P","parent":"pH","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"+p"]},"fields":{},"shadow":false,"topLevel":false},"+p":{"opcode":"data_setvariableto","next":"+q","parent":"pI","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"+q":{"opcode":"data_setvariableto","next":"pJ","parent":"+p","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"pJ":{"opcode":"control_repeat","next":"+r","parent":"+q","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"+s"]},"fields":{},"shadow":false,"topLevel":false},"+s":{"opcode":"data_changevariableby","next":"+t","parent":"pJ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"+t":{"opcode":"data_setvariableto","next":null,"parent":"+s","inputs":{"VALUE":[3,"+u",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"+u":{"opcode":"operator_join","next":null,"parent":"+t","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"+v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+v":{"opcode":"operator_round","next":null,"parent":"+u","inputs":{"NUM":[3,"pK",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pK":{"opcode":"operator_or","next":null,"parent":"+v","inputs":{"OPERAND1":[2,"a+Q"],"OPERAND2":[2,"a+R"]},"fields":{},"shadow":false,"topLevel":false},"a+Q":{"opcode":"data_itemoflist","next":null,"parent":"pK","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+R":{"opcode":"data_itemoflist","next":null,"parent":"pK","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"+r":{"opcode":"procedures_call","next":"+w","parent":"pJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"+w":{"opcode":"data_addtolist","next":null,"parent":"+r","inputs":{"ITEM":[3,"a+S",[10,""]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"a+S":{"opcode":"operator_round","next":null,"parent":"+w","inputs":{"NUM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a+P":{"opcode":"procedures_call","next":null,"parent":"pI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"+o":{"opcode":"data_deletealloflist","next":"+x","parent":"pH","inputs":{},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"+x":{"opcode":"control_repeat","next":null,"parent":"+o","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"pL"]},"fields":{},"shadow":false,"topLevel":false},"pL":{"opcode":"control_repeat","next":"a+T","parent":"+x","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"Od"]},"fields":{},"shadow":false,"topLevel":false},"Od":{"opcode":"data_setvariableto","next":"Oe","parent":"pL","inputs":{"VALUE":[1,[10,"0b"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Oe":{"opcode":"data_setvariableto","next":"pM","parent":"Od","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"pM":{"opcode":"control_repeat","next":"Of","parent":"Oe","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"Og"]},"fields":{},"shadow":false,"topLevel":false},"Og":{"opcode":"data_changevariableby","next":"Oh","parent":"pM","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Oh":{"opcode":"data_setvariableto","next":null,"parent":"Og","inputs":{"VALUE":[3,"Oi",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Oi":{"opcode":"operator_join","next":null,"parent":"Oh","inputs":{"STRING1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"STRING2":[3,"Oj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Oj":{"opcode":"operator_round","next":null,"parent":"Oi","inputs":{"NUM":[3,"Ok",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ok":{"opcode":"operator_not","next":null,"parent":"Oj","inputs":{"OPERAND":[2,"pN"]},"fields":{},"shadow":false,"topLevel":false},"pN":{"opcode":"operator_equals","next":null,"parent":"Ok","inputs":{"OPERAND1":[3,"a+U",[10,""]],"OPERAND2":[3,"a+V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+U":{"opcode":"data_itemoflist","next":null,"parent":"pN","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a+V":{"opcode":"data_itemoflist","next":null,"parent":"pN","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"Of":{"opcode":"procedures_call","next":"Ol","parent":"pM","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incA","argumentids":"[]","warp":"false"}},"Ol":{"opcode":"data_addtolist","next":null,"parent":"Of","inputs":{"ITEM":[3,"a+W",[10,""]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"a+W":{"opcode":"operator_round","next":null,"parent":"Ol","inputs":{"NUM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a+T":{"opcode":"procedures_call","next":null,"parent":"pL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","warp":"false"}},"+y":{"opcode":"procedures_definition","next":"Om","parent":null,"inputs":{"custom_block":[1,"a+X"]},"fields":{},"shadow":false,"topLevel":true,"x":6941,"y":536},"a+X":{"opcode":"procedures_prototype","next":null,"parent":"+y","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$incB","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Om":{"opcode":"control_repeat_until","next":"+z","parent":"+y","inputs":{"CONDITION":[2,"pO"],"SUBSTACK":[2,"a+Y"]},"fields":{},"shadow":false,"topLevel":false},"pO":{"opcode":"operator_or","next":null,"parent":"Om","inputs":{"OPERAND1":[2,"+A"],"OPERAND2":[2,"+B"]},"fields":{},"shadow":false,"topLevel":false},"+A":{"opcode":"operator_equals","next":null,"parent":"pO","inputs":{"OPERAND1":[3,"a+Z",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+Z":{"opcode":"data_itemoflist","next":null,"parent":"+A","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"+B":{"opcode":"operator_equals","next":null,"parent":"pO","inputs":{"OPERAND1":[3,"a+!",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+!":{"opcode":"data_itemoflist","next":null,"parent":"+B","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+Y":{"opcode":"data_deleteoflist","next":null,"parent":"Om","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"+z":{"opcode":"data_replaceitemoflist","next":"pP","parent":"Om","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"pP":{"opcode":"control_repeat","next":null,"parent":"+z","inputs":{"TIMES":[3,"+C",[6,"0"]],"SUBSTACK":[2,"a+#"]},"fields":{},"shadow":false,"topLevel":false},"+C":{"opcode":"operator_subtract","next":null,"parent":"pP","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"a+%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a+%":{"opcode":"data_lengthoflist","next":null,"parent":"+C","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+#":{"opcode":"data_addtolist","next":null,"parent":"pP","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a+(":{"opcode":"event_whenbroadcastreceived","next":"+D","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["HelloInter","UJX@vI^YiH#tJAcG0`PO"]},"shadow":false,"topLevel":true,"x":921,"y":1048},"+D":{"opcode":"event_broadcast","next":"+E","parent":"a+(","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"+E":{"opcode":"data_showlist","next":"+F","parent":"+D","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"+F":{"opcode":"data_addtolist","next":"+G","parent":"+E","inputs":{"ITEM":[1,[10,"Ultimate \"Hello,World\" Esolang Interpreter Wave edition by oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"+G":{"opcode":"data_addtolist","next":"+H","parent":"+F","inputs":{"ITEM":[1,[10,">>>"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"+H":{"opcode":"control_clear_counter","next":"On","parent":"+G","inputs":{},"fields":{},"shadow":false,"topLevel":false},"On":{"opcode":"data_setvariableto","next":"Oo","parent":"+H","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"Oo":{"opcode":"data_setvariableto","next":"Op","parent":"On","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"Op":{"opcode":"control_forever","next":null,"parent":"Oo","inputs":{"SUBSTACK":[2,"Oq"]},"fields":{},"shadow":false,"topLevel":false},"Oq":{"opcode":"sensing_askandwait","next":"pQ","parent":"Op","inputs":{"QUESTION":[1,[10,"Type commands here."]]},"fields":{},"shadow":false,"topLevel":false},"pQ":{"opcode":"data_addtolist","next":"pR","parent":"Oq","inputs":{"ITEM":[3,"Or",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Or":{"opcode":"operator_join","next":null,"parent":"pQ","inputs":{"STRING1":[1,[10,">>>"]],"STRING2":[3,"a+)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a+)":{"opcode":"sensing_answer","next":null,"parent":"Or","inputs":{},"fields":{},"shadow":false,"topLevel":false},"pR":{"opcode":"data_setvariableto","next":"aN","parent":"pQ","inputs":{"VALUE":[3,"a+*",[10,""]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"a+*":{"opcode":"sensing_answer","next":null,"parent":"pR","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aN":{"opcode":"control_if_else","next":"a++","parent":"pR","inputs":{"CONDITION":[2,"pS"],"SUBSTACK":[2,"a+,"],"SUBSTACK2":[2,"ld"]},"fields":{},"shadow":false,"topLevel":false},"pS":{"opcode":"operator_or","next":null,"parent":"aN","inputs":{"OPERAND1":[2,"pT"],"OPERAND2":[2,"pU"]},"fields":{},"shadow":false,"topLevel":false},"pT":{"opcode":"operator_or","next":null,"parent":"pS","inputs":{"OPERAND1":[2,"a+-"],"OPERAND2":[2,"a+."]},"fields":{},"shadow":false,"topLevel":false},"a+-":{"opcode":"operator_equals","next":null,"parent":"pT","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"hw"]]},"fields":{},"shadow":false,"topLevel":false},"a+.":{"opcode":"operator_equals","next":null,"parent":"pT","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"H"]]},"fields":{},"shadow":false,"topLevel":false},"pU":{"opcode":"operator_or","next":null,"parent":"pS","inputs":{"OPERAND1":[2,"a+/"],"OPERAND2":[2,"pV"]},"fields":{},"shadow":false,"topLevel":false},"a+/":{"opcode":"operator_equals","next":null,"parent":"pU","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Hello World"]]},"fields":{},"shadow":false,"topLevel":false},"pV":{"opcode":"operator_or","next":null,"parent":"pU","inputs":{"OPERAND1":[2,"a+:"],"OPERAND2":[2,"pW"]},"fields":{},"shadow":false,"topLevel":false},"a+:":{"opcode":"operator_equals","next":null,"parent":"pV","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Hello, World"]]},"fields":{},"shadow":false,"topLevel":false},"pW":{"opcode":"operator_and","next":null,"parent":"pV","inputs":{"OPERAND1":[2,"a+;"],"OPERAND2":[2,"a+="]},"fields":{},"shadow":false,"topLevel":false},"a+;":{"opcode":"operator_contains","next":null,"parent":"pW","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Hello"]]},"fields":{},"shadow":false,"topLevel":false},"a+=":{"opcode":"operator_contains","next":null,"parent":"pW","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10," World"]]},"fields":{},"shadow":false,"topLevel":false},"a+,":{"opcode":"data_addtolist","next":null,"parent":"aN","inputs":{"ITEM":[1,[10,"Hello, World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"ld":{"opcode":"control_if_else","next":null,"parent":"aN","inputs":{"CONDITION":[2,"a+?"],"SUBSTACK":[2,"a+@"],"SUBSTACK2":[2,"Os"]},"fields":{},"shadow":false,"topLevel":false},"a+?":{"opcode":"operator_equals","next":null,"parent":"ld","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"w"]]},"fields":{},"shadow":false,"topLevel":false},"a+@":{"opcode":"data_addtolist","next":null,"parent":"ld","inputs":{"ITEM":[1,[10,"World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Os":{"opcode":"control_if_else","next":null,"parent":"ld","inputs":{"CONDITION":[2,"a+["],"SUBSTACK":[2,"a+]"],"SUBSTACK2":[2,"Ot"]},"fields":{},"shadow":false,"topLevel":false},"a+[":{"opcode":"operator_equals","next":null,"parent":"Os","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"hh"]]},"fields":{},"shadow":false,"topLevel":false},"a+]":{"opcode":"data_addtolist","next":null,"parent":"Os","inputs":{"ITEM":[1,[10,"Hello, Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Ot":{"opcode":"control_if_else","next":null,"parent":"Os","inputs":{"CONDITION":[2,"a+^"],"SUBSTACK":[2,"a+_"],"SUBSTACK2":[2,"Ou"]},"fields":{},"shadow":false,"topLevel":false},"a+^":{"opcode":"operator_equals","next":null,"parent":"Ot","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"ww"]]},"fields":{},"shadow":false,"topLevel":false},"a+_":{"opcode":"data_addtolist","next":null,"parent":"Ot","inputs":{"ITEM":[1,[10,"World, World!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Ou":{"opcode":"control_if_else","next":null,"parent":"Ot","inputs":{"CONDITION":[2,"a+`"],"SUBSTACK":[2,"a+{"],"SUBSTACK2":[2,"Ov"]},"fields":{},"shadow":false,"topLevel":false},"a+`":{"opcode":"operator_equals","next":null,"parent":"Ou","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"HWorld h"]]},"fields":{},"shadow":false,"topLevel":false},"a+{":{"opcode":"data_addtolist","next":null,"parent":"Ou","inputs":{"ITEM":[1,[10,"Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Ov":{"opcode":"control_if_else","next":null,"parent":"Ou","inputs":{"CONDITION":[2,"a+|"],"SUBSTACK":[2,"a+}"],"SUBSTACK2":[2,"Ow"]},"fields":{},"shadow":false,"topLevel":false},"a+|":{"opcode":"operator_equals","next":null,"parent":"Ov","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"wh"]]},"fields":{},"shadow":false,"topLevel":false},"a+}":{"opcode":"data_addtolist","next":null,"parent":"Ov","inputs":{"ITEM":[1,[10,"World, Hello!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Ow":{"opcode":"control_if_else","next":null,"parent":"Ov","inputs":{"CONDITION":[2,"a+~"],"SUBSTACK":[2,"Ox"],"SUBSTACK2":[2,"Oy"]},"fields":{},"shadow":false,"topLevel":false},"a+~":{"opcode":"operator_equals","next":null,"parent":"Ow","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"clear"]]},"fields":{},"shadow":false,"topLevel":false},"Ox":{"opcode":"data_deletealloflist","next":"Oz","parent":"Ow","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Oz":{"opcode":"data_showlist","next":"OA","parent":"Ox","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OA":{"opcode":"data_addtolist","next":"OB","parent":"Oz","inputs":{"ITEM":[1,[10,"Ultimate \"Hello,World\" Esolang Interpreter Wave edition by oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OB":{"opcode":"data_addtolist","next":"a,a","parent":"OA","inputs":{"ITEM":[1,[10,">>>"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,a":{"opcode":"data_setvariableto","next":null,"parent":"OB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"Oy":{"opcode":"control_if_else","next":null,"parent":"Ow","inputs":{"CONDITION":[2,"OC"],"SUBSTACK":[2,"OD"],"SUBSTACK2":[2,"OE"]},"fields":{},"shadow":false,"topLevel":false},"OC":{"opcode":"operator_equals","next":null,"parent":"Oy","inputs":{"OPERAND1":[3,"pX",[10,""]],"OPERAND2":[1,[10,"load"]]},"fields":{},"shadow":false,"topLevel":false},"pX":{"opcode":"operator_join","next":null,"parent":"OC","inputs":{"STRING1":[3,"a,b",[10,""]],"STRING2":[3,"pY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,b":{"opcode":"operator_letter_of","next":null,"parent":"pX","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pY":{"opcode":"operator_join","next":null,"parent":"pX","inputs":{"STRING1":[3,"a,c",[10,""]],"STRING2":[3,"pZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,c":{"opcode":"operator_letter_of","next":null,"parent":"pY","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"pZ":{"opcode":"operator_join","next":null,"parent":"pY","inputs":{"STRING1":[3,"a,d",[10,""]],"STRING2":[3,"a,e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,d":{"opcode":"operator_letter_of","next":null,"parent":"pZ","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,e":{"opcode":"operator_letter_of","next":null,"parent":"pZ","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"OD":{"opcode":"control_if_else","next":null,"parent":"Oy","inputs":{"CONDITION":[2,"a,f"],"SUBSTACK":[2,"OF"],"SUBSTACK2":[2,"e)"]},"fields":{},"shadow":false,"topLevel":false},"a,f":{"opcode":"operator_contains","next":null,"parent":"OD","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Rocket Launcher"]]},"fields":{},"shadow":false,"topLevel":false},"OF":{"opcode":"data_setvariableto","next":"a,g","parent":"OD","inputs":{"VALUE":[1,[10,"00E0A260600761386219D027D127A25E60006118D011700830401214681E69112258600FE09E12246008F018225879FF22586002F015F007300012366001F0183900122C00E0640CC520C640D65174FF34001248691A122EA268D89700EEFF0080808080808080002070707070F85000"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,g":{"opcode":"event_broadcast","next":null,"parent":"OF","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"e)":{"opcode":"control_if_else","next":null,"parent":"OD","inputs":{"CONDITION":[2,"a,h"],"SUBSTACK":[2,"OG"],"SUBSTACK2":[2,"e*"]},"fields":{},"shadow":false,"topLevel":false},"a,h":{"opcode":"operator_contains","next":null,"parent":"e)","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"1P Pong"]]},"fields":{},"shadow":false,"topLevel":false},"OG":{"opcode":"data_setvariableto","next":"a,i","parent":"e)","inputs":{"VALUE":[1,[10,"6A026B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB68D70C00A7DFE40007D026000601F8D02DCD6A2F0D67186848794603F8602611F871246021278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146500D4557415F229D45500EE808080808080800000000000"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,i":{"opcode":"event_broadcast","next":null,"parent":"OG","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"e*":{"opcode":"control_if_else","next":null,"parent":"e)","inputs":{"CONDITION":[2,"a,j"],"SUBSTACK":[2,"OH"],"SUBSTACK2":[2,"e+"]},"fields":{},"shadow":false,"topLevel":false},"a,j":{"opcode":"operator_contains","next":null,"parent":"e*","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Breakout"]]},"fields":{},"shadow":false,"topLevel":false},"OH":{"opcode":"data_setvariableto","next":"a,k","parent":"e*","inputs":{"VALUE":[1,[10,"A2CC6A0661036B086000D01170087BFF3B00120A71027AFF3A00120666006714A2CD6020611ED011631D623F820277FF470012AAFF0AA2CBD23165FFC401340164FFA2CD6C006E04EEA16CFE6E06EEA16C02D01180C4D0114F01129842006401423F64FF430012CE431F12A4A2CBD23182448354D2313F011242431E12986A02FA187601A2CA1288D231C401340164FFC5013501650112426A03FA18A2CBD23173FF1236A2CBD2311228A2CDD011A2F0F633F2656318641BF029D3457305F129D3457305F229D34512C8F080FFFFA2DE63156210D325A2E3631DD32512AAEE8ACE8C8AEE88CC88EE"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,k":{"opcode":"event_broadcast","next":null,"parent":"OH","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"e+":{"opcode":"control_if_else","next":null,"parent":"e*","inputs":{"CONDITION":[2,"a,l"],"SUBSTACK":[2,"OI"],"SUBSTACK2":[2,"OJ"]},"fields":{},"shadow":false,"topLevel":false},"a,l":{"opcode":"operator_contains","next":null,"parent":"e+","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Pong 2"]]},"fields":{},"shadow":false,"topLevel":false},"OI":{"opcode":"data_setvariableto","next":"a,m","parent":"e+","inputs":{"VALUE":[1,[10,"22FC6B0C6C3F6D0CA2EADAB6DCD66E0022D4660368026060F015F0073000121AC717770869FFA2F0D671A2EADAB6DCD66001E0A17BFE6004E0A17B02601F8B02DAB6600CE0A17DFE600DE0A17D02601F8D02DCD6A2F0D67186848794603F8602611F871246001278463F1282471F69FF47006901D671122A68026301807080B5128A68FE630A807080D53F0112A2610280153F0112BA80153F0112C880153F0112C26020F01822D48E3422D4663E3301660368FE33016802121679FF49FE69FF12C87901490269016004F0187601464076FE126CA2F2FE33F265F12964146502D4557415F229D45500EE808080808080800000000000C0C0C000FF006B206C00A2F6DBC47C043C2013026A006B006C1FA2FADAB1DAC17A083A401312A2F66A006B20DBA100EE"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,m":{"opcode":"event_broadcast","next":null,"parent":"OI","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"OJ":{"opcode":"control_if_else","next":null,"parent":"e+","inputs":{"CONDITION":[2,"a,n"],"SUBSTACK":[2,"OK"],"SUBSTACK2":[2,"e,"]},"fields":{},"shadow":false,"topLevel":false},"a,n":{"opcode":"operator_contains","next":null,"parent":"OJ","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"Keypad test"]]},"fields":{},"shadow":false,"topLevel":false},"OK":{"opcode":"data_setvariableto","next":"a,o","parent":"OJ","inputs":{"VALUE":[1,[10,"6014610AF20A00E0F229D0151204"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,o":{"opcode":"event_broadcast","next":null,"parent":"OK","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"e,":{"opcode":"control_if_else","next":null,"parent":"OJ","inputs":{"CONDITION":[2,"a,p"],"SUBSTACK":[2,"OL"],"SUBSTACK2":[2,"e-"]},"fields":{},"shadow":false,"topLevel":false},"a,p":{"opcode":"operator_contains","next":null,"parent":"e,","inputs":{"STRING1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"STRING2":[1,[10,"16 color test"]]},"fields":{},"shadow":false,"topLevel":false},"OL":{"opcode":"data_setvariableto","next":"a,q","parent":"e,","inputs":{"VALUE":[1,[10,"F301A21860046104D0127102F701D0127102FF01D012121633330F0F5555FFFF00"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,q":{"opcode":"event_broadcast","next":null,"parent":"OL","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"e-":{"opcode":"control_if_else","next":null,"parent":"e,","inputs":{"CONDITION":[2,"a,r"],"SUBSTACK":[2,"OM"],"SUBSTACK2":[2,"ON"]},"fields":{},"shadow":false,"topLevel":false},"a,r":{"opcode":"operator_equals","next":null,"parent":"e-","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Load CHIP8"]]},"fields":{},"shadow":false,"topLevel":false},"OM":{"opcode":"sensing_askandwait","next":"p!","parent":"e-","inputs":{"QUESTION":[1,[10,"Paste CHIP-8 rom in hex now."]]},"fields":{},"shadow":false,"topLevel":false},"p!":{"opcode":"data_setvariableto","next":"a,s","parent":"OM","inputs":{"VALUE":[3,"a,t",[10,""]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,t":{"opcode":"sensing_answer","next":null,"parent":"p!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,s":{"opcode":"event_broadcast","next":null,"parent":"p!","inputs":{"BROADCAST_INPUT":[1,[11,"Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]]},"fields":{},"shadow":false,"topLevel":false},"ON":{"opcode":"sensing_askandwait","next":"p#","parent":"e-","inputs":{"QUESTION":[1,[10,"Paste CHIP-8 rom in base64 now."]]},"fields":{},"shadow":false,"topLevel":false},"p#":{"opcode":"data_setvariableto","next":"a,u","parent":"ON","inputs":{"VALUE":[3,"a,v",[10,""]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,v":{"opcode":"sensing_answer","next":null,"parent":"p#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,u":{"opcode":"event_broadcast","next":null,"parent":"p#","inputs":{"BROADCAST_INPUT":[1,[11,"Load_base64","!(hs25J7|{;5#Cu=Hf~s"]]},"fields":{},"shadow":false,"topLevel":false},"OE":{"opcode":"control_if_else","next":null,"parent":"Oy","inputs":{"CONDITION":[2,"a,w"],"SUBSTACK":[2,"OO"],"SUBSTACK2":[2,"OP"]},"fields":{},"shadow":false,"topLevel":false},"a,w":{"opcode":"operator_equals","next":null,"parent":"OE","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"+"]]},"fields":{},"shadow":false,"topLevel":false},"OO":{"opcode":"control_incr_counter","next":"OQ","parent":"OE","inputs":{},"fields":{},"shadow":false,"topLevel":false},"OQ":{"opcode":"data_addtolist","next":null,"parent":"OO","inputs":{"ITEM":[3,"a,x",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,x":{"opcode":"control_get_counter","next":null,"parent":"OQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"OP":{"opcode":"control_if_else","next":null,"parent":"OE","inputs":{"CONDITION":[2,"a,y"],"SUBSTACK":[2,"OR"],"SUBSTACK2":[2,"c#"]},"fields":{},"shadow":false,"topLevel":false},"a,y":{"opcode":"operator_equals","next":null,"parent":"OP","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"credits"]]},"fields":{},"shadow":false,"topLevel":false},"OR":{"opcode":"data_addtolist","next":"OS","parent":"OP","inputs":{"ITEM":[1,[10,"Wave Multi-Emulator credits"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OS":{"opcode":"data_addtolist","next":"OT","parent":"OR","inputs":{"ITEM":[1,[10,"Concept: @Geotale/@EmulatorsOnScratch"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OT":{"opcode":"data_addtolist","next":"OU","parent":"OS","inputs":{"ITEM":[1,[10,"Menu: @Geotale @Executec @oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OU":{"opcode":"data_addtolist","next":"OV","parent":"OT","inputs":{"ITEM":[1,[10,"WAVE-8: @Geotale @oxiti8 @Kouzeru @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OV":{"opcode":"data_addtolist","next":"OW","parent":"OU","inputs":{"ITEM":[1,[10,"rrGBC: @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OW":{"opcode":"data_addtolist","next":"OX","parent":"OV","inputs":{"ITEM":[1,[10,"Nintendo DS Emulator: @Geotale/@EmulatorsOnScratch"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OX":{"opcode":"data_addtolist","next":"OY","parent":"OW","inputs":{"ITEM":[1,[10,"Cool NES Emulator: @GenericHeroGuy"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OY":{"opcode":"data_addtolist","next":"OZ","parent":"OX","inputs":{"ITEM":[1,[10,"Bytepusher: @52525rr"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"OZ":{"opcode":"data_addtolist","next":"O!","parent":"OY","inputs":{"ITEM":[1,[10,"UHWEI Wave Edition: @oxiti8"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O!":{"opcode":"data_addtolist","next":"O#","parent":"OZ","inputs":{"ITEM":[1,[10,"SI8080: @oxiti8, @Kouzeru for renderer"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O#":{"opcode":"data_addtolist","next":"O%","parent":"O!","inputs":{"ITEM":[1,[10,"Music: Purple Planet Music - Chilled - Global Tech, Nintendo 3DS HOME menu BGM, Mario Paint - Special Stamps"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O%":{"opcode":"data_addtolist","next":"O(","parent":"O#","inputs":{"ITEM":[1,[10,"Special Thanks: StinkerB06 and Tobiasvl for helping with DXYN "]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O(":{"opcode":"data_addtolist","next":"O)","parent":"O%","inputs":{"ITEM":[1,[10,"@AArt1256, @52525rr, and @Kouzeru for help with XO-CHIP"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O)":{"opcode":"data_addtolist","next":"O*","parent":"O(","inputs":{"ITEM":[1,[10,"Gulrak for the help with documenting Megachip"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O*":{"opcode":"data_addtolist","next":"a,z","parent":"O)","inputs":{"ITEM":[1,[10,"CHIP8 Wave logo ROM by @AArt1256"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,z":{"opcode":"data_addtolist","next":null,"parent":"O*","inputs":{"ITEM":[1,[10,"Thanks to everyone who has contributed to the project over the past 3 years!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"c#":{"opcode":"control_if_else","next":null,"parent":"OP","inputs":{"CONDITION":[2,"a,A"],"SUBSTACK":[2,"O+"],"SUBSTACK2":[2,"b["]},"fields":{},"shadow":false,"topLevel":false},"a,A":{"opcode":"operator_equals","next":null,"parent":"c#","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Exit"]]},"fields":{},"shadow":false,"topLevel":false},"O+":{"opcode":"data_addtolist","next":"O,","parent":"c#","inputs":{"ITEM":[1,[10,"Exiting..."]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O,":{"opcode":"event_broadcast","next":"O-","parent":"O+","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"O-":{"opcode":"data_hidelist","next":"O.","parent":"O,","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O.":{"opcode":"data_deletealloflist","next":"O/","parent":"O-","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O/":{"opcode":"event_broadcastandwait","next":"O:","parent":"O.","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"O:":{"opcode":"event_broadcast","next":"a,B","parent":"O/","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a,B":{"opcode":"control_stop","next":null,"parent":"O:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b[":{"opcode":"control_if_else","next":null,"parent":"c#","inputs":{"CONDITION":[2,"a,C"],"SUBSTACK":[2,"O;"],"SUBSTACK2":[2,"e."]},"fields":{},"shadow":false,"topLevel":false},"a,C":{"opcode":"operator_equals","next":null,"parent":"b[","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"Set start address"]]},"fields":{},"shadow":false,"topLevel":false},"O;":{"opcode":"sensing_askandwait","next":"p%","parent":"b[","inputs":{"QUESTION":[1,[10,"What address will Chip8 programs start at?"]]},"fields":{},"shadow":false,"topLevel":false},"p%":{"opcode":"data_setvariableto","next":"O=","parent":"O;","inputs":{"VALUE":[3,"O?",[10,""]]},"fields":{"VARIABLE":["chip8.starting address","oW{#?FHT;/hE!l+8(A64"]},"shadow":false,"topLevel":false},"O?":{"opcode":"operator_mod","next":null,"parent":"p%","inputs":{"NUM1":[3,"a,D",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"a,D":{"opcode":"sensing_answer","next":null,"parent":"O?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"O=":{"opcode":"data_addtolist","next":null,"parent":"p%","inputs":{"ITEM":[3,"a,E",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,E":{"opcode":"operator_join","next":null,"parent":"O=","inputs":{"STRING1":[1,[10,"Chip8 starting address set to "]],"STRING2":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"e.":{"opcode":"control_if_else","next":null,"parent":"b[","inputs":{"CONDITION":[2,"a,F"],"SUBSTACK":[2,"O@"],"SUBSTACK2":[2,"a,G"]},"fields":{},"shadow":false,"topLevel":false},"a,F":{"opcode":"operator_equals","next":null,"parent":"e.","inputs":{"OPERAND1":[3,[12,"Input","M1MRH6V)bg-6jD{ugH=J"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"O@":{"opcode":"data_setvariableto","next":"p(","parent":"e.","inputs":{"VALUE":[1,[10,"99"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"p(":{"opcode":"control_repeat_until","next":null,"parent":"O@","inputs":{"CONDITION":[2,"O["],"SUBSTACK":[2,"aO"]},"fields":{},"shadow":false,"topLevel":false},"O[":{"opcode":"operator_not","next":null,"parent":"p(","inputs":{"OPERAND":[2,"a,H"]},"fields":{},"shadow":false,"topLevel":false},"a,H":{"opcode":"operator_gt","next":null,"parent":"O[","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO":{"opcode":"control_if_else","next":"O]","parent":"p(","inputs":{"CONDITION":[2,"a,I"],"SUBSTACK":[2,"O^"],"SUBSTACK2":[2,"O_"]},"fields":{},"shadow":false,"topLevel":false},"a,I":{"opcode":"operator_equals","next":null,"parent":"aO","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O^":{"opcode":"data_addtolist","next":null,"parent":"aO","inputs":{"ITEM":[3,"O`",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O`":{"opcode":"operator_join","next":null,"parent":"O^","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[3,"O{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"O{":{"opcode":"operator_join","next":null,"parent":"O`","inputs":{"STRING1":[1,[10," bottle of pop on the wall, "]],"STRING2":[3,"a,J",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,J":{"opcode":"operator_join","next":null,"parent":"O{","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottle of pop."]]},"fields":{},"shadow":false,"topLevel":false},"O_":{"opcode":"data_addtolist","next":null,"parent":"aO","inputs":{"ITEM":[3,"O|",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"O|":{"opcode":"operator_join","next":null,"parent":"O_","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[3,"O}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"O}":{"opcode":"operator_join","next":null,"parent":"O|","inputs":{"STRING1":[1,[10," bottles of pop on the wall, "]],"STRING2":[3,"a,K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,K":{"opcode":"operator_join","next":null,"parent":"O}","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottles of pop."]]},"fields":{},"shadow":false,"topLevel":false},"O]":{"opcode":"data_changevariableby","next":"b]","parent":"aO","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["Ahello","|vEUSf.D@`%N,D.^3/|b"]},"shadow":false,"topLevel":false},"b]":{"opcode":"control_if_else","next":null,"parent":"O]","inputs":{"CONDITION":[2,"a,L"],"SUBSTACK":[2,"O~"],"SUBSTACK2":[2,"b^"]},"fields":{},"shadow":false,"topLevel":false},"a,L":{"opcode":"operator_gt","next":null,"parent":"b]","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O~":{"opcode":"data_addtolist","next":null,"parent":"b]","inputs":{"ITEM":[3,"+I",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"+I":{"opcode":"operator_join","next":null,"parent":"O~","inputs":{"STRING1":[1,[10,"Take one down, pass it around, "]],"STRING2":[3,"a,M",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,M":{"opcode":"operator_join","next":null,"parent":"+I","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottles of pop on the wall."]]},"fields":{},"shadow":false,"topLevel":false},"b^":{"opcode":"control_if_else","next":null,"parent":"b]","inputs":{"CONDITION":[2,"a,N"],"SUBSTACK":[2,"+J"],"SUBSTACK2":[2,"a,O"]},"fields":{},"shadow":false,"topLevel":false},"a,N":{"opcode":"operator_equals","next":null,"parent":"b^","inputs":{"OPERAND1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"+J":{"opcode":"data_addtolist","next":null,"parent":"b^","inputs":{"ITEM":[3,"Pa",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"Pa":{"opcode":"operator_join","next":null,"parent":"+J","inputs":{"STRING1":[1,[10,"Take one down, pass it around, "]],"STRING2":[3,"a,P",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,P":{"opcode":"operator_join","next":null,"parent":"Pa","inputs":{"STRING1":[3,[12,"Ahello","|vEUSf.D@`%N,D.^3/|b"],[10,""]],"STRING2":[1,[10," bottle of pop on the wall."]]},"fields":{},"shadow":false,"topLevel":false},"a,O":{"opcode":"data_addtolist","next":null,"parent":"b^","inputs":{"ITEM":[1,[10,"Take one down, pass it around, no more bottles of pop on the wall."]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,G":{"opcode":"data_addtolist","next":null,"parent":"e.","inputs":{"ITEM":[1,[10," "]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a++":{"opcode":"data_setvariableto","next":null,"parent":"aN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Input","M1MRH6V)bg-6jD{ugH=J"]},"shadow":false,"topLevel":false},"a,Q":{"opcode":"event_whenflagclicked","next":"Pb","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1001,"y":7904},"Pb":{"opcode":"looks_hide","next":"+K","parent":"a,Q","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+K":{"opcode":"data_hidelist","next":"a,R","parent":"Pb","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,R":{"opcode":"data_deletealloflist","next":null,"parent":"+K","inputs":{},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,S":{"opcode":"event_whenbroadcastreceived","next":"a,T","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]},"shadow":false,"topLevel":true,"x":921,"y":7632},"a,T":{"opcode":"data_addtolist","next":null,"parent":"a,S","inputs":{"ITEM":[1,[10,"ROM Loaded!"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"a,U":{"opcode":"event_broadcast","next":"+L","parent":null,"inputs":{"BROADCAST_INPUT":[1,[11,"Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]]},"fields":{},"shadow":false,"topLevel":true,"x":38,"y":286},"+L":{"opcode":"data_setvariableto","next":"+M","parent":"a,U","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Frameskip","T*Lc1tcF[lxG@/W!jiQ0"]},"shadow":false,"topLevel":false},"+M":{"opcode":"data_replaceitemoflist","next":"+N","parent":"+L","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"l"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+N":{"opcode":"data_replaceitemoflist","next":"+O","parent":"+M","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"k"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+O":{"opcode":"data_replaceitemoflist","next":"+P","parent":"+N","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"c"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+P":{"opcode":"data_replaceitemoflist","next":"+Q","parent":"+O","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"m"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+Q":{"opcode":"data_replaceitemoflist","next":"+R","parent":"+P","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+R":{"opcode":"data_replaceitemoflist","next":"+S","parent":"+Q","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"s"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+S":{"opcode":"data_replaceitemoflist","next":"+T","parent":"+R","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"+T":{"opcode":"data_replaceitemoflist","next":"Pc","parent":"+S","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"Pc":{"opcode":"data_replaceitemoflist","next":"Pd","parent":"+T","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pd":{"opcode":"data_replaceitemoflist","next":"Pe","parent":"Pc","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pe":{"opcode":"data_replaceitemoflist","next":"Pf","parent":"Pd","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pf":{"opcode":"data_replaceitemoflist","next":"Pg","parent":"Pe","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pg":{"opcode":"data_replaceitemoflist","next":"Ph","parent":"Pf","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Ph":{"opcode":"data_replaceitemoflist","next":"Pi","parent":"Pg","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pi":{"opcode":"data_replaceitemoflist","next":"Pj","parent":"Ph","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pj":{"opcode":"data_replaceitemoflist","next":"Pk","parent":"Pi","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Pk":{"opcode":"data_replaceitemoflist","next":"Pl","parent":"Pj","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"x"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pl":{"opcode":"data_replaceitemoflist","next":"Pm","parent":"Pk","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pm":{"opcode":"data_replaceitemoflist","next":"Pn","parent":"Pl","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"2"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pn":{"opcode":"data_replaceitemoflist","next":"Po","parent":"Pm","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"3"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Po":{"opcode":"data_replaceitemoflist","next":"+U","parent":"Pn","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"q"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"+U":{"opcode":"data_replaceitemoflist","next":"+V","parent":"Po","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"+V":{"opcode":"data_replaceitemoflist","next":"+W","parent":"+U","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"e"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"+W":{"opcode":"data_replaceitemoflist","next":"+X","parent":"+V","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"+X":{"opcode":"data_replaceitemoflist","next":"Pp","parent":"+W","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[1,[10,"s"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pp":{"opcode":"data_replaceitemoflist","next":"Pq","parent":"+X","inputs":{"INDEX":[1,[7,"10"]],"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pq":{"opcode":"data_replaceitemoflist","next":"Pr","parent":"Pp","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[1,[10,"z"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pr":{"opcode":"data_replaceitemoflist","next":"Ps","parent":"Pq","inputs":{"INDEX":[1,[7,"12"]],"ITEM":[1,[10,"c"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Ps":{"opcode":"data_replaceitemoflist","next":"Pt","parent":"Pr","inputs":{"INDEX":[1,[7,"13"]],"ITEM":[1,[10,"4"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pt":{"opcode":"data_replaceitemoflist","next":"Pu","parent":"Ps","inputs":{"INDEX":[1,[7,"14"]],"ITEM":[1,[10,"r"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pu":{"opcode":"data_replaceitemoflist","next":"Pv","parent":"Pt","inputs":{"INDEX":[1,[7,"15"]],"ITEM":[1,[10,"f"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pv":{"opcode":"data_replaceitemoflist","next":"Pw","parent":"Pu","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"v"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"Pw":{"opcode":"data_replaceitemoflist","next":"+Y","parent":"Pv","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"down arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+Y":{"opcode":"data_replaceitemoflist","next":"+Z","parent":"Pw","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"up arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+Z":{"opcode":"data_replaceitemoflist","next":"+!","parent":"+Y","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"left arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+!":{"opcode":"data_replaceitemoflist","next":"+#","parent":"+Z","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"right arrow"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+#":{"opcode":"data_replaceitemoflist","next":"+%","parent":"+!","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"enter"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+%":{"opcode":"data_replaceitemoflist","next":"+(","parent":"+#","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"space"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+(":{"opcode":"data_replaceitemoflist","next":"+)","parent":"+%","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[1,[10,"x"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+)":{"opcode":"data_replaceitemoflist","next":"+*","parent":"+(","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"z"]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"+*":{"opcode":"data_deletealloflist","next":"++","parent":"+)","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"++":{"opcode":"data_addtolist","next":"+,","parent":"+*","inputs":{"ITEM":[1,[10,"c"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"+,":{"opcode":"data_addtolist","next":"Px","parent":"++","inputs":{"ITEM":[1,[10,"enter"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"Px":{"opcode":"data_addtolist","next":"Py","parent":"+,","inputs":{"ITEM":[1,[10,"space"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"Py":{"opcode":"data_addtolist","next":"Pz","parent":"Px","inputs":{"ITEM":[1,[10,"w"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"Pz":{"opcode":"data_addtolist","next":"PA","parent":"Py","inputs":{"ITEM":[1,[10,"a"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"PA":{"opcode":"data_addtolist","next":"PB","parent":"Pz","inputs":{"ITEM":[1,[10,"d"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"PB":{"opcode":"data_addtolist","next":"PC","parent":"PA","inputs":{"ITEM":[1,[10,"up arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"PC":{"opcode":"data_addtolist","next":"a,V","parent":"PB","inputs":{"ITEM":[1,[10,"left arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"a,V":{"opcode":"data_addtolist","next":null,"parent":"PC","inputs":{"ITEM":[1,[10,"right arrow"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"a,W":{"opcode":"event_broadcast","next":"a,X","parent":null,"inputs":{"BROADCAST_INPUT":[1,[11,"Nuke all lists","nXk!G*y_h@WG)9_e/VKR"]]},"fields":{},"shadow":false,"topLevel":true,"x":585,"y":71},"a,X":{"opcode":"data_setvariableto","next":null,"parent":"a,W","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a,Y":{"opcode":"event_whenbroadcastreceived","next":"PD","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["make_tables","SnQYRZP^Bda`yWbPz,$["]},"shadow":false,"topLevel":true,"x":48,"y":64},"PD":{"opcode":"procedures_call","next":"a,Z","parent":"a,Y","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"_bitwise init","argumentids":"[]","warp":"true"}},"a,Z":{"opcode":"procedures_call","next":null,"parent":"PD","inputs":{"Qi31Z;B$.Clm/kthjb4$":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"Qi31Z;B$.Clm/kthjb4$\"]","warp":"true"}}},"comments":{"p)":{"blockId":"e/","x":913,"y":3041,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"p*":{"blockId":"e:","x":4254,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"p+":{"blockId":"e;","x":4254,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"14e46ec3e2ba471c2adfe8f119052307","md5ext":"14e46ec3e2ba471c2adfe8f119052307.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":2,"visible":false,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"synthesizer","variables":{"ln{MS#PL`8.}h:(_}UB]":["_id",1],"(ecE`kfJLzw4p#})J_i9":["_pitch",-260.0666536999344],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0],"hrlmIBq6fq*lN*RPBh*J":["c8.Wrap_mode",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]],"$I%$ZSrMoNE4j:0:k6^m":["chip8.screen3",[]],"eIbd*$2o]f7xY6t6CmU;":["chip8.screen4",[]]},"broadcasts":{},"blocks":{"PE":{"opcode":"procedures_definition","next":"PF","parent":null,"inputs":{"custom_block":[1,"PG"]},"fields":{},"shadow":false,"topLevel":true,"x":1152,"y":3042},"PG":{"opcode":"procedures_prototype","next":null,"parent":"PE","inputs":{"w5XJ!30u%BMD,Rj4C9eX":[1,"a,!"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick %s","argumentids":"[\"w5XJ!30u%BMD,Rj4C9eX\"]","argumentnames":"[\"sample\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a,!":{"opcode":"argument_reporter_string_number","next":null,"parent":"PG","inputs":{},"fields":{"VALUE":["sample",null]},"shadow":true,"topLevel":false},"PF":{"opcode":"data_deletealloflist","next":"PH","parent":"PE","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"PH":{"opcode":"data_setvariableto","next":"p,","parent":"PF","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"p,":{"opcode":"control_repeat","next":"PI","parent":"PH","inputs":{"TIMES":[1,[6,"64"]],"SUBSTACK":[2,"p-"]},"fields":{},"shadow":false,"topLevel":false},"p-":{"opcode":"data_addtolist","next":"a,#","parent":"p,","inputs":{"ITEM":[3,"PJ",[10,""]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"PJ":{"opcode":"data_itemoflist","next":null,"parent":"p-","inputs":{"INDEX":[3,"PK",[7,"0"]]},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"PK":{"opcode":"operator_add","next":null,"parent":"PJ","inputs":{"NUM1":[3,"a,%",[4,"0"]],"NUM2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,%":{"opcode":"argument_reporter_string_number","next":null,"parent":"PK","inputs":{},"fields":{"VALUE":["sample",null]},"shadow":false,"topLevel":false},"a,#":{"opcode":"data_changevariableby","next":null,"parent":"p-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"PI":{"opcode":"procedures_call","next":"PL","parent":"p,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","warp":"true"}},"PL":{"opcode":"procedures_call","next":"a,(","parent":"PI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","warp":"true"}},"a,(":{"opcode":"procedures_call","next":null,"parent":"PL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","warp":"true"}},"PM":{"opcode":"procedures_definition","next":"PN","parent":null,"inputs":{"custom_block":[1,"a,)"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":0},"a,)":{"opcode":"procedures_prototype","next":null,"parent":"PM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"PN":{"opcode":"data_setvariableto","next":"PO","parent":"PM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"PO":{"opcode":"data_setvariableto","next":"PP","parent":"PN","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["q","|Wne6DL=-zq^m9{2r`hA"]},"shadow":false,"topLevel":false},"PP":{"opcode":"data_setvariableto","next":"PQ","parent":"PO","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"PQ":{"opcode":"control_repeat","next":null,"parent":"PP","inputs":{"TIMES":[1,[6,"63"]],"SUBSTACK":[2,"p."]},"fields":{},"shadow":false,"topLevel":false},"p.":{"opcode":"control_create_clone_of","next":"a,*","parent":"PQ","inputs":{"CLONE_OPTION":[1,"a,+"]},"fields":{},"shadow":false,"topLevel":false},"a,+":{"opcode":"control_create_clone_of_menu","next":null,"parent":"p.","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a,*":{"opcode":"data_changevariableby","next":null,"parent":"p.","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["_id","ln{MS#PL`8.}h:(_}UB]"]},"shadow":false,"topLevel":false},"a,,":{"opcode":"event_whenbroadcastreceived","next":"PR","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":2112},"PR":{"opcode":"control_forever","next":null,"parent":"a,,","inputs":{"SUBSTACK":[2,"b_"]},"fields":{},"shadow":false,"topLevel":false},"b_":{"opcode":"control_if","next":"e=","parent":"PR","inputs":{"CONDITION":[2,"a,-"],"SUBSTACK":[2,"b`"]},"fields":{},"shadow":false,"topLevel":false},"a,-":{"opcode":"operator_equals","next":null,"parent":"b_","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"b`":{"opcode":"control_if","next":"PS","parent":"b_","inputs":{"CONDITION":[2,"PT"],"SUBSTACK":[2,"PU"]},"fields":{},"shadow":false,"topLevel":false},"PT":{"opcode":"operator_not","next":null,"parent":"b`","inputs":{"OPERAND":[2,"PV"]},"fields":{},"shadow":false,"topLevel":false},"PV":{"opcode":"operator_equals","next":null,"parent":"PT","inputs":{"OPERAND1":[3,"a,.",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,.":{"opcode":"sound_volume","next":null,"parent":"PV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"PU":{"opcode":"sound_setvolumeto","next":"a,/","parent":"b`","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,/":{"opcode":"sound_stopallsounds","next":null,"parent":"PU","inputs":{},"fields":{},"shadow":false,"topLevel":false},"PS":{"opcode":"control_wait_until","next":null,"parent":"b`","inputs":{"CONDITION":[2,"a,:"]},"fields":{},"shadow":false,"topLevel":false},"a,:":{"opcode":"operator_gt","next":null,"parent":"PS","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"e=":{"opcode":"control_if_else","next":null,"parent":"b_","inputs":{"CONDITION":[2,"a,;"],"SUBSTACK":[2,"p/"],"SUBSTACK2":[2,"p:"]},"fields":{},"shadow":false,"topLevel":false},"a,;":{"opcode":"operator_gt","next":null,"parent":"e=","inputs":{"OPERAND1":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[10,""]],"OPERAND2":[3,[12,"q","|Wne6DL=-zq^m9{2r`hA"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"p/":{"opcode":"control_if","next":null,"parent":"e=","inputs":{"CONDITION":[2,"PW"],"SUBSTACK":[2,"a,="]},"fields":{},"shadow":false,"topLevel":false},"PW":{"opcode":"operator_gt","next":null,"parent":"p/","inputs":{"OPERAND1":[3,"a,?",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,?":{"opcode":"sound_volume","next":null,"parent":"PW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,=":{"opcode":"sound_setvolumeto","next":null,"parent":"p/","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p:":{"opcode":"control_if","next":null,"parent":"e=","inputs":{"CONDITION":[2,"PX"],"SUBSTACK":[2,"PY"]},"fields":{},"shadow":false,"topLevel":false},"PX":{"opcode":"operator_not","next":null,"parent":"p:","inputs":{"OPERAND":[2,"p;"]},"fields":{},"shadow":false,"topLevel":false},"p;":{"opcode":"operator_equals","next":null,"parent":"PX","inputs":{"OPERAND1":[3,"a,@",[10,""]],"OPERAND2":[3,"a,[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a,@":{"opcode":"sound_volume","next":null,"parent":"p;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a,[":{"opcode":"data_itemoflist","next":null,"parent":"p;","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,"0"]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"PY":{"opcode":"sound_setvolumeto","next":null,"parent":"p:","inputs":{"VOLUME":[3,"a,]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,]":{"opcode":"data_itemoflist","next":null,"parent":"PY","inputs":{"INDEX":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],[7,"0"]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"a,^":{"opcode":"event_whenbroadcastreceived","next":"PZ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":6864},"PZ":{"opcode":"sound_setvolumeto","next":"P!","parent":"a,^","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P!":{"opcode":"control_forever","next":null,"parent":"PZ","inputs":{"SUBSTACK":[2,"b{"]},"fields":{},"shadow":false,"topLevel":false},"b{":{"opcode":"control_if","next":"P#","parent":"P!","inputs":{"CONDITION":[2,"P%"],"SUBSTACK":[2,"P("]},"fields":{},"shadow":false,"topLevel":false},"P%":{"opcode":"operator_equals","next":null,"parent":"b{","inputs":{"OPERAND1":[3,"a,_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,_":{"opcode":"sound_volume","next":null,"parent":"P%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"P(":{"opcode":"control_wait_until","next":null,"parent":"b{","inputs":{"CONDITION":[2,"P)"]},"fields":{},"shadow":false,"topLevel":false},"P)":{"opcode":"operator_gt","next":null,"parent":"P(","inputs":{"OPERAND1":[3,"a,`",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a,`":{"opcode":"sound_volume","next":null,"parent":"P)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"P#":{"opcode":"sound_playuntildone","next":null,"parent":"b{","inputs":{"SOUND_MENU":[3,[12,"_id","ln{MS#PL`8.}h:(_}UB]"],"a,{"]},"fields":{},"shadow":false,"topLevel":false},"a,{":{"opcode":"sound_sounds_menu","next":null,"parent":"P#","inputs":{},"fields":{"SOUND_MENU":["sine15",null]},"shadow":true,"topLevel":false},"a,|":{"opcode":"event_whenbroadcastreceived","next":"P*","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave","`NRJ+e5K0Tj^PUuZG!,Z"]},"shadow":false,"topLevel":true,"x":0,"y":7280},"P*":{"opcode":"control_forever","next":null,"parent":"a,|","inputs":{"SUBSTACK":[2,"p="]},"fields":{},"shadow":false,"topLevel":false},"p=":{"opcode":"control_if","next":null,"parent":"P*","inputs":{"CONDITION":[2,"p?"],"SUBSTACK":[2,"P+"]},"fields":{},"shadow":false,"topLevel":false},"p?":{"opcode":"operator_and","next":null,"parent":"p=","inputs":{"OPERAND1":[2,"P,"],"OPERAND2":[2,"P-"]},"fields":{},"shadow":false,"topLevel":false},"P,":{"opcode":"operator_not","next":null,"parent":"p?","inputs":{"OPERAND":[2,"a,}"]},"fields":{},"shadow":false,"topLevel":false},"a,}":{"opcode":"operator_equals","next":null,"parent":"P,","inputs":{"OPERAND1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"P-":{"opcode":"operator_not","next":null,"parent":"p?","inputs":{"OPERAND":[2,"a,~"]},"fields":{},"shadow":false,"topLevel":false},"a,~":{"opcode":"operator_equals","next":null,"parent":"P-","inputs":{"OPERAND1":[3,[12,"_pitch","(ecE`kfJLzw4p#})J_i9"],[10,""]],"OPERAND2":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"P+":{"opcode":"data_setvariableto","next":"a-a","parent":"p=","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[10,""]]},"fields":{"VARIABLE":["_pitch","(ecE`kfJLzw4p#})J_i9"]},"shadow":false,"topLevel":false},"a-a":{"opcode":"sound_seteffectto","next":null,"parent":"P+","inputs":{"VALUE":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[4,"0"]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"a-b":{"opcode":"event_whenbroadcastreceived","next":"P.","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["wave create","1$IbL{2UD4|fdA:ahKxG"]},"shadow":false,"topLevel":true,"x":77,"y":7673},"P.":{"opcode":"control_stop","next":"P/","parent":"a-b","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"P/":{"opcode":"procedures_call","next":"a-c","parent":"P.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","warp":"true"}},"a-c":{"opcode":"event_broadcast","next":null,"parent":"P/","inputs":{"BROADCAST_INPUT":[1,[11,"wave","`NRJ+e5K0Tj^PUuZG!,Z"]]},"fields":{},"shadow":false,"topLevel":false},"a-d":{"opcode":"event_whenbroadcastreceived","next":"P:","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["prune","eUXr-]/_0N]qtaXLt(ye"]},"shadow":false,"topLevel":true,"x":0,"y":7992},"P:":{"opcode":"data_deletealloflist","next":"P;","parent":"a-d","inputs":{},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"P;":{"opcode":"data_deletealloflist","next":"+-","parent":"P:","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"+-":{"opcode":"data_deletealloflist","next":"+.","parent":"P;","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"+.":{"opcode":"data_deletealloflist","next":"+/","parent":"+-","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"+/":{"opcode":"data_deletealloflist","next":"+:","parent":"+.","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"+:":{"opcode":"data_deletealloflist","next":"a-e","parent":"+/","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a-e":{"opcode":"control_delete_this_clone","next":null,"parent":"+:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+;":{"opcode":"procedures_definition","next":"+=","parent":null,"inputs":{"custom_block":[1,"a-f"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":976},"a-f":{"opcode":"procedures_prototype","next":null,"parent":"+;","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"+=":{"opcode":"data_deletealloflist","next":"+?","parent":"+;","inputs":{},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"+?":{"opcode":"control_clear_counter","next":"+@","parent":"+=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"+@":{"opcode":"control_repeat","next":null,"parent":"+?","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"+["]},"fields":{},"shadow":false,"topLevel":false},"+[":{"opcode":"data_setvariableto","next":"+]","parent":"+@","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"+]":{"opcode":"control_incr_counter","next":"P=","parent":"+[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"P=":{"opcode":"control_repeat","next":null,"parent":"+]","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"p@"]},"fields":{},"shadow":false,"topLevel":false},"p@":{"opcode":"data_setvariableto","next":"P?","parent":"P=","inputs":{"VALUE":[3,"a-g",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a-g":{"opcode":"operator_divide","next":null,"parent":"p@","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P?":{"opcode":"data_addtolist","next":null,"parent":"p@","inputs":{"ITEM":[3,"P@",[10,""]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"P@":{"opcode":"operator_multiply","next":null,"parent":"P?","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"P[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P[":{"opcode":"operator_mod","next":null,"parent":"P@","inputs":{"NUM1":[3,"P]",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P]":{"opcode":"operator_mathop","next":null,"parent":"P[","inputs":{"NUM":[3,"P^",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"P^":{"opcode":"operator_divide","next":null,"parent":"P]","inputs":{"NUM1":[3,"P_",[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P_":{"opcode":"data_itemoflist","next":null,"parent":"P^","inputs":{"INDEX":[3,"a-h",[7,"0"]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"a-h":{"opcode":"control_get_counter","next":null,"parent":"P_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-i":{"opcode":"event_whenbroadcastreceived","next":"P`","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["sound.updatech8buffer","#z59?3=sivtfq@){KBjG"]},"shadow":false,"topLevel":true,"x":0,"y":3040},"P`":{"opcode":"procedures_call","next":"P{","parent":"a-i","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert buffer to bits","argumentids":"[]","warp":"true"}},"P{":{"opcode":"procedures_call","next":"P|","parent":"P`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","warp":"true"}},"P|":{"opcode":"procedures_call","next":"a-j","parent":"P{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","warp":"true"}},"a-j":{"opcode":"procedures_call","next":null,"parent":"P|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","warp":"true"}},"P}":{"opcode":"procedures_definition","next":"P~","parent":null,"inputs":{"custom_block":[1,"a-k"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":440},"a-k":{"opcode":"procedures_prototype","next":null,"parent":"P}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apply to vol","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"P~":{"opcode":"data_setvariableto","next":"Qa","parent":"P}","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Qa":{"opcode":"data_deletealloflist","next":"p[","parent":"P~","inputs":{},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"p[":{"opcode":"control_repeat","next":null,"parent":"Qa","inputs":{"TIMES":[3,"a-l",[6,"0"]],"SUBSTACK":[2,"Qb"]},"fields":{},"shadow":false,"topLevel":false},"a-l":{"opcode":"data_lengthoflist","next":null,"parent":"p[","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"Qb":{"opcode":"data_changevariableby","next":"p]","parent":"p[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"p]":{"opcode":"data_setvariableto","next":"Zh","parent":"Qb","inputs":{"VALUE":[3,"a-m",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a-m":{"opcode":"data_itemoflist","next":null,"parent":"p]","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Zh":{"opcode":"data_setvariableto","next":"Qc","parent":"p]","inputs":{"VALUE":[3,"a-n",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a-n":{"opcode":"data_itemoflist","next":null,"parent":"Zh","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"Qc":{"opcode":"data_addtolist","next":null,"parent":"Zh","inputs":{"ITEM":[3,"Qd",[10,""]]},"fields":{"LIST":["vol","Ok6b#fye79@mqZ]dIPt5"]},"shadow":false,"topLevel":false},"Qd":{"opcode":"operator_multiply","next":null,"parent":"Qc","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"Qe",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qe":{"opcode":"operator_mathop","next":null,"parent":"Qd","inputs":{"NUM":[3,"Zi",[4,"0"]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"Zi":{"opcode":"operator_add","next":null,"parent":"Qe","inputs":{"NUM1":[3,"a-o",[4,"0"]],"NUM2":[3,"a-p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-o":{"opcode":"operator_multiply","next":null,"parent":"Zi","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-p":{"opcode":"operator_multiply","next":null,"parent":"Zi","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]],"NUM2":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qf":{"opcode":"procedures_definition","next":"Qg","parent":null,"inputs":{"custom_block":[1,"a-q"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":1592},"a-q":{"opcode":"procedures_prototype","next":null,"parent":"Qf","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"put Input","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Qg":{"opcode":"data_deletealloflist","next":"Qh","parent":"Qf","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Qh":{"opcode":"data_deletealloflist","next":"Qi","parent":"Qg","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"Qi":{"opcode":"control_clear_counter","next":"Qj","parent":"Qh","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Qj":{"opcode":"control_repeat","next":null,"parent":"Qi","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"Qk"]},"fields":{},"shadow":false,"topLevel":false},"Qk":{"opcode":"control_incr_counter","next":"Zj","parent":"Qj","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Zj":{"opcode":"data_addtolist","next":"Ql","parent":"Qk","inputs":{"ITEM":[3,"Qm",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Qm":{"opcode":"operator_divide","next":null,"parent":"Zj","inputs":{"NUM1":[3,"Qn",[4,"0"]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Qn":{"opcode":"data_itemoflist","next":null,"parent":"Qm","inputs":{"INDEX":[3,"a-r",[7,"0"]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"a-r":{"opcode":"control_get_counter","next":null,"parent":"Qn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Ql":{"opcode":"data_addtolist","next":null,"parent":"Zj","inputs":{"ITEM":[3,"Qo",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Qo":{"opcode":"operator_divide","next":null,"parent":"Ql","inputs":{"NUM1":[3,"Qp",[4,"0"]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Qp":{"opcode":"data_itemoflist","next":null,"parent":"Qo","inputs":{"INDEX":[3,"a-s",[7,"0"]]},"fields":{"LIST":["wave","*df.:JNR*^GpTa_k=NdQ"]},"shadow":false,"topLevel":false},"a-s":{"opcode":"control_get_counter","next":null,"parent":"Qp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-t":{"opcode":"event_whenbroadcastreceived","next":"Qq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":4,"y":8468},"Qq":{"opcode":"control_stop","next":"Qr","parent":"a-t","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"Qr":{"opcode":"event_broadcast","next":"a-u","parent":"Qq","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"a-u":{"opcode":"sound_stopallsounds","next":null,"parent":"Qr","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Qs":{"opcode":"procedures_definition","next":"+^","parent":null,"inputs":{"custom_block":[1,"a-v"]},"fields":{},"shadow":false,"topLevel":true,"x":0,"y":3336},"a-v":{"opcode":"procedures_prototype","next":null,"parent":"Qs","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[false]","warp":"true"}},"+^":{"opcode":"data_deletealloflist","next":"+_","parent":"Qs","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"+_":{"opcode":"data_deletealloflist","next":"aP","parent":"+^","inputs":{},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"aP":{"opcode":"control_if_else","next":"Qt","parent":"+_","inputs":{"CONDITION":[2,"Zk"],"SUBSTACK":[2,"Qu"],"SUBSTACK2":[2,"+`"]},"fields":{},"shadow":false,"topLevel":false},"Zk":{"opcode":"operator_lt","next":null,"parent":"aP","inputs":{"OPERAND1":[3,"a-w",[10,""]],"OPERAND2":[3,"a-x",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a-w":{"opcode":"data_lengthoflist","next":null,"parent":"Zk","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"a-x":{"opcode":"data_lengthoflist","next":null,"parent":"Zk","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"Qu":{"opcode":"data_setvariableto","next":null,"parent":"aP","inputs":{"VALUE":[3,"a-y",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-y":{"opcode":"data_lengthoflist","next":null,"parent":"Qu","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"+`":{"opcode":"data_setvariableto","next":null,"parent":"aP","inputs":{"VALUE":[3,"a-z",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-z":{"opcode":"data_lengthoflist","next":null,"parent":"+`","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Qt":{"opcode":"data_changevariableby","next":"+{","parent":"aP","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"+{":{"opcode":"data_setvariableto","next":"+|","parent":"Qt","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"+|":{"opcode":"data_setvariableto","next":"b|","parent":"+{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"b|":{"opcode":"control_repeat_until","next":"Zl","parent":"+|","inputs":{"CONDITION":[2,"a-A"],"SUBSTACK":[2,"+}"]},"fields":{},"shadow":false,"topLevel":false},"a-A":{"opcode":"operator_gt","next":null,"parent":"b|","inputs":{"OPERAND1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]],"OPERAND2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"+}":{"opcode":"data_changevariableby","next":"a-B","parent":"b|","inputs":{"VALUE":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a-B":{"opcode":"data_changevariableby","next":null,"parent":"+}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"Zl":{"opcode":"control_repeat","next":"+~","parent":"b|","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,"0"]],"SUBSTACK":[2,"In"]},"fields":{},"shadow":false,"topLevel":false},"In":{"opcode":"data_setvariableto","next":",a","parent":"Zl","inputs":{"VALUE":[3,"a-C",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-C":{"opcode":"data_lengthoflist","next":null,"parent":"In","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},",a":{"opcode":"data_setvariableto","next":"Io","parent":"In","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Io":{"opcode":"control_repeat","next":",b","parent":",a","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,"0"]],"SUBSTACK":[2,"Ip"]},"fields":{},"shadow":false,"topLevel":false},"Ip":{"opcode":"data_setvariableto","next":"Iq","parent":"Io","inputs":{"VALUE":[3,"a-D",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a-D":{"opcode":"operator_multiply","next":null,"parent":"Ip","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Iq":{"opcode":"data_changevariableby","next":",c","parent":"Ip","inputs":{"VALUE":[3,"a-E",[4,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a-E":{"opcode":"operator_mod","next":null,"parent":"Iq","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},",c":{"opcode":"data_setvariableto","next":null,"parent":"Iq","inputs":{"VALUE":[3,",d",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},",d":{"opcode":"operator_mathop","next":null,"parent":",c","inputs":{"NUM":[3,"a-F",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a-F":{"opcode":"operator_divide","next":null,"parent":",d","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},",b":{"opcode":"data_changevariableby","next":"Ir","parent":"Io","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Ir":{"opcode":"data_addtolist","next":",e","parent":",b","inputs":{"ITEM":[3,"Qv",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Qv":{"opcode":"operator_add","next":null,"parent":"Ir","inputs":{"NUM1":[3,"a-G",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-G":{"opcode":"data_itemoflist","next":null,"parent":"Qv","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"0"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},",e":{"opcode":"data_addtolist","next":null,"parent":"Ir","inputs":{"ITEM":[3,"Qw",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"Qw":{"opcode":"operator_add","next":null,"parent":",e","inputs":{"NUM1":[3,"a-H",[4,"0"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-H":{"opcode":"data_itemoflist","next":null,"parent":"Qw","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"0"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"+~":{"opcode":"data_setvariableto","next":"Is","parent":"Zl","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Is":{"opcode":"control_repeat","next":"Qx","parent":"+~","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,"0"]],"SUBSTACK":[2,"Qy"]},"fields":{},"shadow":false,"topLevel":false},"Qy":{"opcode":"data_setvariableto","next":"It","parent":"Is","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"It":{"opcode":"data_setvariableto","next":"Iu","parent":"Qy","inputs":{"VALUE":[3,"a-I",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a-I":{"opcode":"operator_divide","next":null,"parent":"It","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Iu":{"opcode":"control_repeat","next":"a-J","parent":"It","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,"0"]],"SUBSTACK":[2,"Qz"]},"fields":{},"shadow":false,"topLevel":false},"Qz":{"opcode":"data_setvariableto","next":"Iv","parent":"Iu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"Iv":{"opcode":"data_setvariableto","next":"Iw","parent":"Qz","inputs":{"VALUE":[3,"a-K",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"a-K":{"opcode":"operator_divide","next":null,"parent":"Iv","inputs":{"NUM1":[1,[4,"-180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Iw":{"opcode":"control_repeat","next":"a-L","parent":"Iv","inputs":{"TIMES":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,"0"]],"SUBSTACK":[2,"QA"]},"fields":{},"shadow":false,"topLevel":false},"QA":{"opcode":"data_changevariableby","next":"Zm","parent":"Iw","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Zm":{"opcode":"data_setvariableto","next":"Zn","parent":"QA","inputs":{"VALUE":[3,"a-M",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a-M":{"opcode":"operator_mathop","next":null,"parent":"Zm","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,"0"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"Zn":{"opcode":"data_setvariableto","next":"Zo","parent":"Zm","inputs":{"VALUE":[3,"a-N",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"a-N":{"opcode":"operator_mathop","next":null,"parent":"Zn","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"Zo":{"opcode":"data_setvariableto","next":"Zp","parent":"Zn","inputs":{"VALUE":[3,"a-O",[10,""]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"a-O":{"opcode":"data_itemoflist","next":null,"parent":"Zo","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"Zp":{"opcode":"data_setvariableto","next":"Zq","parent":"Zo","inputs":{"VALUE":[3,"a-P",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"a-P":{"opcode":"data_itemoflist","next":null,"parent":"Zp","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"Zq":{"opcode":"data_setvariableto","next":"p^","parent":"Zp","inputs":{"VALUE":[3,"p_",[10,""]]},"fields":{"VARIABLE":["r.6","flj)QgXS,93H6OayZ`w[-r.6-"]},"shadow":false,"topLevel":false},"p_":{"opcode":"operator_subtract","next":null,"parent":"Zq","inputs":{"NUM1":[3,"a-Q",[4,"0"]],"NUM2":[3,"a-R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-Q":{"opcode":"operator_multiply","next":null,"parent":"p_","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,"0"]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-R":{"opcode":"operator_multiply","next":null,"parent":"p_","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"0"]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p^":{"opcode":"data_setvariableto","next":"p`","parent":"Zq","inputs":{"VALUE":[3,"p{",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"p{":{"opcode":"operator_add","next":null,"parent":"p^","inputs":{"NUM1":[3,"a-S",[4,"0"]],"NUM2":[3,"a-T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-S":{"opcode":"operator_multiply","next":null,"parent":"p{","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,"0"]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-T":{"opcode":"operator_multiply","next":null,"parent":"p{","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"0"]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p`":{"opcode":"data_changevariableby","next":"p|","parent":"p^","inputs":{"VALUE":[3,"a-U",[4,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-U":{"opcode":"operator_subtract","next":null,"parent":"p`","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p|":{"opcode":"data_setvariableto","next":"p}","parent":"p`","inputs":{"VALUE":[3,"a-V",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a-V":{"opcode":"data_itemoflist","next":null,"parent":"p|","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"p}":{"opcode":"data_setvariableto","next":"p~","parent":"p|","inputs":{"VALUE":[3,"a-W",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"a-W":{"opcode":"data_itemoflist","next":null,"parent":"p}","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"p~":{"opcode":"data_replaceitemoflist","next":"qa","parent":"p}","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a-X",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a-X":{"opcode":"operator_add","next":null,"parent":"p~","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"0"]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qa":{"opcode":"data_replaceitemoflist","next":"QB","parent":"p~","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a-Y",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a-Y":{"opcode":"operator_add","next":null,"parent":"qa","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"0"]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QB":{"opcode":"data_changevariableby","next":"qb","parent":"qa","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"qb":{"opcode":"data_replaceitemoflist","next":"qc","parent":"QB","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a-Z",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a-Z":{"opcode":"operator_subtract","next":null,"parent":"qb","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"0"]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qc":{"opcode":"data_replaceitemoflist","next":"qd","parent":"qb","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"a-!",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a-!":{"opcode":"operator_subtract","next":null,"parent":"qc","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"0"]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qd":{"opcode":"data_changevariableby","next":"a-#","parent":"qc","inputs":{"VALUE":[3,"a-%",[4,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-%":{"opcode":"operator_subtract","next":null,"parent":"qd","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-#":{"opcode":"data_changevariableby","next":null,"parent":"qd","inputs":{"VALUE":[3,[12,"r.9","flj)QgXS,93H6OayZ`w[-r.9-"],[4,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"a-L":{"opcode":"data_changevariableby","next":null,"parent":"Iw","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a-J":{"opcode":"data_changevariableby","next":null,"parent":"Iu","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Qx":{"opcode":"data_deletealloflist","next":"QC","parent":"Is","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"QC":{"opcode":"data_deletealloflist","next":"qe","parent":"Qx","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"qe":{"opcode":"data_setvariableto","next":"QD","parent":"QC","inputs":{"VALUE":[3,"QE",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"QE":{"opcode":"operator_mathop","next":null,"parent":"qe","inputs":{"NUM":[3,"a-(",[4,"0"]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"a-(":{"opcode":"data_lengthoflist","next":null,"parent":"QE","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"QD":{"opcode":"control_clear_counter","next":"qf","parent":"qe","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qf":{"opcode":"control_repeat","next":null,"parent":"QD","inputs":{"TIMES":[3,"a-)",[6,"0"]],"SUBSTACK":[2,"QF"]},"fields":{},"shadow":false,"topLevel":false},"a-)":{"opcode":"data_lengthoflist","next":null,"parent":"qf","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"QF":{"opcode":"control_incr_counter","next":"qg","parent":"qf","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qg":{"opcode":"data_addtolist","next":"QG","parent":"QF","inputs":{"ITEM":[3,"QH",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"QH":{"opcode":"operator_divide","next":null,"parent":"qg","inputs":{"NUM1":[3,"QI",[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QI":{"opcode":"data_itemoflist","next":null,"parent":"QH","inputs":{"INDEX":[3,"a-*",[7,"0"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a-*":{"opcode":"control_get_counter","next":null,"parent":"QI","inputs":{},"fields":{},"shadow":false,"topLevel":false},"QG":{"opcode":"data_addtolist","next":null,"parent":"qg","inputs":{"ITEM":[3,"QJ",[10,""]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"QJ":{"opcode":"operator_divide","next":null,"parent":"QG","inputs":{"NUM1":[3,"QK",[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QK":{"opcode":"data_itemoflist","next":null,"parent":"QJ","inputs":{"INDEX":[3,"a-+",[7,"0"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a-+":{"opcode":"control_get_counter","next":null,"parent":"QK","inputs":{},"fields":{},"shadow":false,"topLevel":false},"QL":{"opcode":"control_if_else","next":null,"parent":null,"inputs":{"SUBSTACK":[2,"QM"]},"fields":{},"shadow":false,"topLevel":true,"x":551,"y":4979},"QM":{"opcode":"data_setvariableto","next":null,"parent":"QL","inputs":{"VALUE":[3,"a-,",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"a-,":{"opcode":"operator_divide","next":null,"parent":"QM","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZ.":{"opcode":"event_broadcastandwait","next":null,"parent":null,"inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":true,"x":369,"y":7816}},"comments":{"bZ/":{"blockId":"bZ:","x":-115,"y":3086,"width":200,"height":200,"minimized":true,"text":"fft"},"bZ;":{"blockId":"bZ=","x":-88,"y":3186,"width":200,"height":200,"minimized":true,"text":"inverse fft"},"bZ?":{"blockId":"bZ@","x":395,"y":2270,"width":200,"height":200,"minimized":true,"text":"This affects the height of the \"wave\" in the background."}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"vsine1","assetId":"d2a0d4559613ef2bfc40167edd8c5c4b","dataFormat":"wav","rate":48000,"sampleCount":3072000,"md5ext":"d2a0d4559613ef2bfc40167edd8c5c4b.wav"},{"name":"vsine2","assetId":"f8843c06c36a01ac5928d2a27d144d89","dataFormat":"wav","rate":48000,"sampleCount":1536000,"md5ext":"f8843c06c36a01ac5928d2a27d144d89.wav"},{"name":"vsine3","assetId":"03c7be5de5e3a3e34dec160853ac5f25","dataFormat":"wav","rate":48000,"sampleCount":1024000,"md5ext":"03c7be5de5e3a3e34dec160853ac5f25.wav"},{"name":"vsine4","assetId":"844b136c1c36a43805b45d2d93cd7e31","dataFormat":"wav","rate":48000,"sampleCount":768000,"md5ext":"844b136c1c36a43805b45d2d93cd7e31.wav"},{"name":"vsine5","assetId":"ff957600839bbd58abd52aad2531b67d","dataFormat":"wav","rate":48000,"sampleCount":614400,"md5ext":"ff957600839bbd58abd52aad2531b67d.wav"},{"name":"vsine6","assetId":"b314e31977e690f46450433836c24a4f","dataFormat":"wav","rate":48000,"sampleCount":512000,"md5ext":"b314e31977e690f46450433836c24a4f.wav"},{"name":"vsine7","assetId":"0a1229ba60dd4bdac663c0f64615577a","dataFormat":"wav","rate":48000,"sampleCount":438857,"md5ext":"0a1229ba60dd4bdac663c0f64615577a.wav"},{"name":"vsine8","assetId":"4b936c35b563d559de3122f775393009","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"4b936c35b563d559de3122f775393009.wav"},{"name":"vsine9","assetId":"4147dc61054ccd96f596638c7f298dce","dataFormat":"wav","rate":48000,"sampleCount":341333,"md5ext":"4147dc61054ccd96f596638c7f298dce.wav"},{"name":"vsine10","assetId":"497d0c2eb954ace427b95695e9badbaf","dataFormat":"wav","rate":48000,"sampleCount":307200,"md5ext":"497d0c2eb954ace427b95695e9badbaf.wav"},{"name":"vsine11","assetId":"3aa72c565867b6324d52d29884b9010a","dataFormat":"wav","rate":48000,"sampleCount":279272,"md5ext":"3aa72c565867b6324d52d29884b9010a.wav"},{"name":"vsine12","assetId":"7ffe6b116e37894f3fcbc9f54aab09c0","dataFormat":"wav","rate":48000,"sampleCount":256000,"md5ext":"7ffe6b116e37894f3fcbc9f54aab09c0.wav"},{"name":"vsine13","assetId":"7e1f020e1ea02f5cb1089d5e29de3718","dataFormat":"wav","rate":48000,"sampleCount":236307,"md5ext":"7e1f020e1ea02f5cb1089d5e29de3718.wav"},{"name":"vsine14","assetId":"6ef07ef8283bf79a39f0657f5e87519c","dataFormat":"wav","rate":48000,"sampleCount":219428,"md5ext":"6ef07ef8283bf79a39f0657f5e87519c.wav"},{"name":"vsine15","assetId":"3c958dab6e860e14d79da9e0935cd105","dataFormat":"wav","rate":48000,"sampleCount":204799,"md5ext":"3c958dab6e860e14d79da9e0935cd105.wav"},{"name":"vsine16","assetId":"2780f6f2e63ec9e15b77d3416be9de04","dataFormat":"wav","rate":48000,"sampleCount":192000,"md5ext":"2780f6f2e63ec9e15b77d3416be9de04.wav"},{"name":"vsine17","assetId":"43541ccad018dc3238c62edf73da152a","dataFormat":"wav","rate":48000,"sampleCount":180705,"md5ext":"43541ccad018dc3238c62edf73da152a.wav"},{"name":"vsine18","assetId":"6ef2d0b9c6e95ddbf6118d4fde71a465","dataFormat":"wav","rate":48000,"sampleCount":170666,"md5ext":"6ef2d0b9c6e95ddbf6118d4fde71a465.wav"},{"name":"vsine19","assetId":"0975abf37c53d2a4cc80a9134c6bff05","dataFormat":"wav","rate":48000,"sampleCount":161684,"md5ext":"0975abf37c53d2a4cc80a9134c6bff05.wav"},{"name":"vsine20","assetId":"e0011396c77640d6bf922b06fd0472de","dataFormat":"wav","rate":48000,"sampleCount":153600,"md5ext":"e0011396c77640d6bf922b06fd0472de.wav"},{"name":"vsine21","assetId":"0ed2d10f73d3e122c5a6675e99b65b8f","dataFormat":"wav","rate":48000,"sampleCount":146285,"md5ext":"0ed2d10f73d3e122c5a6675e99b65b8f.wav"},{"name":"vsine22","assetId":"beab5e4215949d6a42f1459b2ef3a76c","dataFormat":"wav","rate":48000,"sampleCount":139636,"md5ext":"beab5e4215949d6a42f1459b2ef3a76c.wav"},{"name":"vsine23","assetId":"dbb8656cbc1bd4be2925369f23d6898b","dataFormat":"wav","rate":48000,"sampleCount":133565,"md5ext":"dbb8656cbc1bd4be2925369f23d6898b.wav"},{"name":"vsine24","assetId":"fb0488ad64a0ad315e4876a7f17b2d57","dataFormat":"wav","rate":48000,"sampleCount":128000,"md5ext":"fb0488ad64a0ad315e4876a7f17b2d57.wav"},{"name":"vsine25","assetId":"d829dd50bcaeccb2f717ab7520792f63","dataFormat":"wav","rate":48000,"sampleCount":122880,"md5ext":"d829dd50bcaeccb2f717ab7520792f63.wav"},{"name":"vsine26","assetId":"2c511d98e28e3c61ff073634e743d1ff","dataFormat":"wav","rate":48000,"sampleCount":118153,"md5ext":"2c511d98e28e3c61ff073634e743d1ff.wav"},{"name":"vsine27","assetId":"ee1a06586e105bd1fa0649f814c37e59","dataFormat":"wav","rate":48000,"sampleCount":113777,"md5ext":"ee1a06586e105bd1fa0649f814c37e59.wav"},{"name":"vsine28","assetId":"45f2e5a14e0184577e79c38391f1162d","dataFormat":"wav","rate":48000,"sampleCount":109714,"md5ext":"45f2e5a14e0184577e79c38391f1162d.wav"},{"name":"vsine29","assetId":"d37c1ab5fb39b216ae2aa483fbf76554","dataFormat":"wav","rate":48000,"sampleCount":105931,"md5ext":"d37c1ab5fb39b216ae2aa483fbf76554.wav"},{"name":"vsine30","assetId":"4c309aee9cc10a42856d5f024e6152d1","dataFormat":"wav","rate":48000,"sampleCount":102399,"md5ext":"4c309aee9cc10a42856d5f024e6152d1.wav"},{"name":"vsine31","assetId":"b5f8f985aef44882ecddfeff9aa6340c","dataFormat":"wav","rate":48000,"sampleCount":99096,"md5ext":"b5f8f985aef44882ecddfeff9aa6340c.wav"},{"name":"vsine32","assetId":"05ded0c8f25e8b03626035df7af32cd0","dataFormat":"wav","rate":48000,"sampleCount":96000,"md5ext":"05ded0c8f25e8b03626035df7af32cd0.wav"},{"name":"vsine33","assetId":"64e74ea408d52d689380f15a59967677","dataFormat":"wav","rate":48000,"sampleCount":93090,"md5ext":"64e74ea408d52d689380f15a59967677.wav"},{"name":"vsine34","assetId":"ae72bc4141df65ff360b8b5937edad3f","dataFormat":"wav","rate":48000,"sampleCount":90352,"md5ext":"ae72bc4141df65ff360b8b5937edad3f.wav"},{"name":"vsine35","assetId":"e7981802fa80be778f5d27c3f3f5bf1c","dataFormat":"wav","rate":48000,"sampleCount":87771,"md5ext":"e7981802fa80be778f5d27c3f3f5bf1c.wav"},{"name":"vsine36","assetId":"fc492a5b4a980d499e4c2e0b88cd4fd9","dataFormat":"wav","rate":48000,"sampleCount":85333,"md5ext":"fc492a5b4a980d499e4c2e0b88cd4fd9.wav"},{"name":"vsine37","assetId":"77d4c2f43b84c3c484969dd515ce266e","dataFormat":"wav","rate":48000,"sampleCount":83027,"md5ext":"77d4c2f43b84c3c484969dd515ce266e.wav"},{"name":"vsine38","assetId":"1ab5e24c20e085722e88f3d59e7bbb4c","dataFormat":"wav","rate":48000,"sampleCount":80842,"md5ext":"1ab5e24c20e085722e88f3d59e7bbb4c.wav"},{"name":"vsine39","assetId":"f06a529769a7725df49c4c4aac922c13","dataFormat":"wav","rate":48000,"sampleCount":78769,"md5ext":"f06a529769a7725df49c4c4aac922c13.wav"},{"name":"vsine40","assetId":"162f68962d9559fb21fc6f9772ed973a","dataFormat":"wav","rate":48000,"sampleCount":76800,"md5ext":"162f68962d9559fb21fc6f9772ed973a.wav"},{"name":"vsine41","assetId":"b0f370580e412c58b81f8d1ce2381ba2","dataFormat":"wav","rate":48000,"sampleCount":74926,"md5ext":"b0f370580e412c58b81f8d1ce2381ba2.wav"},{"name":"vsine42","assetId":"312bbeed8e1f79b76827cf55d344a6e7","dataFormat":"wav","rate":48000,"sampleCount":73142,"md5ext":"312bbeed8e1f79b76827cf55d344a6e7.wav"},{"name":"vsine43","assetId":"7d414df6a72804b9171aed13b73912bb","dataFormat":"wav","rate":48000,"sampleCount":71441,"md5ext":"7d414df6a72804b9171aed13b73912bb.wav"},{"name":"vsine44","assetId":"3131d7a4c3bfde5fd9f75fbacb287d76","dataFormat":"wav","rate":48000,"sampleCount":69818,"md5ext":"3131d7a4c3bfde5fd9f75fbacb287d76.wav"},{"name":"vsine45","assetId":"e928ecbd8ca4d05a2c2fadc4cf61fc7b","dataFormat":"wav","rate":48000,"sampleCount":68266,"md5ext":"e928ecbd8ca4d05a2c2fadc4cf61fc7b.wav"},{"name":"vsine46","assetId":"c42ea2946bd6238e0876097f284c9d8a","dataFormat":"wav","rate":48000,"sampleCount":66782,"md5ext":"c42ea2946bd6238e0876097f284c9d8a.wav"},{"name":"vsine47","assetId":"994c26c4fad9622f43794109082625e4","dataFormat":"wav","rate":48000,"sampleCount":65361,"md5ext":"994c26c4fad9622f43794109082625e4.wav"},{"name":"vsine48","assetId":"ff9f8c0b224ddfab0d7c3fb88c735518","dataFormat":"wav","rate":48000,"sampleCount":64000,"md5ext":"ff9f8c0b224ddfab0d7c3fb88c735518.wav"},{"name":"vsine49","assetId":"618f16364b2db662bfb30d7a16bd975e","dataFormat":"wav","rate":48000,"sampleCount":62693,"md5ext":"618f16364b2db662bfb30d7a16bd975e.wav"},{"name":"vsine50","assetId":"c0690f5fa67a536653f87470a490ab2f","dataFormat":"wav","rate":48000,"sampleCount":61440,"md5ext":"c0690f5fa67a536653f87470a490ab2f.wav"},{"name":"vsine51","assetId":"d372fa5d244ac9914c9c1a35b7a13e5d","dataFormat":"wav","rate":48000,"sampleCount":60235,"md5ext":"d372fa5d244ac9914c9c1a35b7a13e5d.wav"},{"name":"vsine52","assetId":"ec504ca1f5f7d3cb1213ab862075bd87","dataFormat":"wav","rate":48000,"sampleCount":59076,"md5ext":"ec504ca1f5f7d3cb1213ab862075bd87.wav"},{"name":"vsine53","assetId":"70fa8a1643893f74a8cb776337986114","dataFormat":"wav","rate":48000,"sampleCount":57962,"md5ext":"70fa8a1643893f74a8cb776337986114.wav"},{"name":"vsine54","assetId":"ae0ecad466337ae0fc0d5849a449b2f8","dataFormat":"wav","rate":48000,"sampleCount":56888,"md5ext":"ae0ecad466337ae0fc0d5849a449b2f8.wav"},{"name":"vsine55","assetId":"ce8b1e438b332913b2dfff32f86e3445","dataFormat":"wav","rate":48000,"sampleCount":55854,"md5ext":"ce8b1e438b332913b2dfff32f86e3445.wav"},{"name":"vsine56","assetId":"35d84d62eb66e3ebcefdf24ce23c8f24","dataFormat":"wav","rate":48000,"sampleCount":54857,"md5ext":"35d84d62eb66e3ebcefdf24ce23c8f24.wav"},{"name":"vsine57","assetId":"8541f109885e4c6cc8360d109f0d40bb","dataFormat":"wav","rate":48000,"sampleCount":53894,"md5ext":"8541f109885e4c6cc8360d109f0d40bb.wav"},{"name":"vsine58","assetId":"31b337b514b02d981037ddb613fcfe9f","dataFormat":"wav","rate":48000,"sampleCount":52965,"md5ext":"31b337b514b02d981037ddb613fcfe9f.wav"},{"name":"vsine59","assetId":"89398c1bf95f5d7f944ad7fbf447cbfe","dataFormat":"wav","rate":48000,"sampleCount":52067,"md5ext":"89398c1bf95f5d7f944ad7fbf447cbfe.wav"},{"name":"vsine60","assetId":"e44a9c02905cb8918fc1e61136c8620e","dataFormat":"wav","rate":48000,"sampleCount":51199,"md5ext":"e44a9c02905cb8918fc1e61136c8620e.wav"},{"name":"vsine61","assetId":"b7c073a45be2b82f6e92b5bf6f1795f0","dataFormat":"wav","rate":48000,"sampleCount":50360,"md5ext":"b7c073a45be2b82f6e92b5bf6f1795f0.wav"},{"name":"vsine62","assetId":"6cdb0c2cf7548c6c363dc69ca1c15198","dataFormat":"wav","rate":48000,"sampleCount":49548,"md5ext":"6cdb0c2cf7548c6c363dc69ca1c15198.wav"},{"name":"vsine63","assetId":"4f12887efc0f0fe00c5380ca0b8b92ab","dataFormat":"wav","rate":48000,"sampleCount":48761,"md5ext":"4f12887efc0f0fe00c5380ca0b8b92ab.wav"},{"name":"vsine64","assetId":"4a5ae48a071ddbe91adc61f47c42bb38","dataFormat":"wav","rate":48000,"sampleCount":48000,"md5ext":"4a5ae48a071ddbe91adc61f47c42bb38.wav"}],"volume":0,"layerOrder":7,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite3","variables":{"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0]},"lists":{},"broadcasts":{},"blocks":{"bM":{"opcode":"motion_gotoxy","next":"QN","parent":"le","inputs":{"X":[3,"a--",[4,"0"]],"Y":[3,"a-.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QO":{"opcode":"looks_hide","next":"a-/","parent":"QP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-:":{"opcode":"event_whenbroadcastreceived","next":"QQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1719,"y":68},"QQ":{"opcode":"control_stop","next":"QP","parent":"a-:","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"QP":{"opcode":"motion_gotoxy","next":"QO","parent":"QQ","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-/":{"opcode":"control_delete_this_clone","next":null,"parent":"QO","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a-;":{"opcode":"event_whenbroadcastreceived","next":"a-=","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["WAVE-8_drawkeys","Pi~qDSlxleRjJ@ah)D#o"]},"shadow":false,"topLevel":true,"x":824,"y":93},"a-=":{"opcode":"procedures_call","next":null,"parent":"a-;","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,[10,"-67"]],"P=n#4paHx7[.aGU2jnRF":[1,[10,"-39"]],".A{XL/=aJQD9Mf6Si7J1":[1,[10,"4"]],"!WwY,eYr76KH6sejF{8b":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","warp":"true"}},"a-?":{"opcode":"control_start_as_clone","next":"qh","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"qh":{"opcode":"looks_setsizeto","next":"QR","parent":"a-?","inputs":{"SIZE":[3,"QS",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QS":{"opcode":"operator_subtract","next":null,"parent":"qh","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"QT",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"QT":{"opcode":"operator_multiply","next":null,"parent":"QS","inputs":{"NUM1":[3,"a-@",[4,"0"]],"NUM2":[1,[4,"25"]]},"fields":{},"shadow":false,"topLevel":false},"a-@":{"opcode":"data_itemoflist","next":null,"parent":"QT","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"QR":{"opcode":"control_forever","next":null,"parent":"qh","inputs":{"SUBSTACK":[2,"qi"]},"fields":{},"shadow":false,"topLevel":false},"qi":{"opcode":"control_if_else","next":null,"parent":"QR","inputs":{"CONDITION":[2,"qj"],"SUBSTACK":[2,"qk"],"SUBSTACK2":[2,"ql"]},"fields":{},"shadow":false,"topLevel":false},"qj":{"opcode":"operator_and","next":null,"parent":"qi","inputs":{"OPERAND1":[2,"a-["],"OPERAND2":[2,"QU"]},"fields":{},"shadow":false,"topLevel":false},"a-[":{"opcode":"sensing_mousedown","next":null,"parent":"qj","inputs":{},"fields":{},"shadow":false,"topLevel":false},"QU":{"opcode":"sensing_touchingobject","next":null,"parent":"qj","inputs":{"TOUCHINGOBJECTMENU":[1,"a-]"]},"fields":{},"shadow":false,"topLevel":false},"a-]":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"QU","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"qk":{"opcode":"data_replaceitemoflist","next":"a-^","parent":"qi","inputs":{"INDEX":[3,"qm",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"qm":{"opcode":"operator_subtract","next":null,"parent":"qk","inputs":{"NUM1":[3,"a-_",[4,"0"]],"NUM2":[3,"QV",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-_":{"opcode":"looks_costumenumbername","next":null,"parent":"qm","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"QV":{"opcode":"operator_multiply","next":null,"parent":"qm","inputs":{"NUM1":[3,"a-`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a-`":{"opcode":"data_itemoflist","next":null,"parent":"QV","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a-^":{"opcode":"looks_seteffectto","next":null,"parent":"qk","inputs":{"VALUE":[1,[4,"-20"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"ql":{"opcode":"data_replaceitemoflist","next":"a-{","parent":"qi","inputs":{"INDEX":[3,"qn",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"qn":{"opcode":"operator_subtract","next":null,"parent":"ql","inputs":{"NUM1":[3,"a-|",[4,"0"]],"NUM2":[3,"QW",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a-|":{"opcode":"looks_costumenumbername","next":null,"parent":"qn","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"QW":{"opcode":"operator_multiply","next":null,"parent":"qn","inputs":{"NUM1":[3,"a-}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a-}":{"opcode":"data_itemoflist","next":null,"parent":"QW","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a-{":{"opcode":"looks_seteffectto","next":null,"parent":"ql","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"QX":{"opcode":"procedures_definition","next":"QY","parent":null,"inputs":{"custom_block":[1,"aQ"]},"fields":{},"shadow":false,"topLevel":true,"x":971,"y":580},"aQ":{"opcode":"procedures_prototype","next":null,"parent":"QX","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,"a-~"],"P=n#4paHx7[.aGU2jnRF":[1,"a.a"],".A{XL/=aJQD9Mf6Si7J1":[1,"a.b"],"!WwY,eYr76KH6sejF{8b":[1,"a.c"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","argumentnames":"[\"Xstart\",\"Ystart\",\"rows\",\"columns\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"a-~":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ","inputs":{},"fields":{"VALUE":["Xstart",null]},"shadow":true,"topLevel":false},"a.a":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ","inputs":{},"fields":{"VALUE":["Ystart",null]},"shadow":true,"topLevel":false},"a.b":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":true,"topLevel":false},"a.c":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":true,"topLevel":false},"QY":{"opcode":"looks_show","next":"qo","parent":"QX","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qo":{"opcode":"looks_seteffectto","next":"le","parent":"QY","inputs":{"VALUE":[3,"QZ",[4,"0"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"QZ":{"opcode":"operator_subtract","next":null,"parent":"qo","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"Q!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q!":{"opcode":"operator_multiply","next":null,"parent":"QZ","inputs":{"NUM1":[3,"a.d",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a.d":{"opcode":"data_itemoflist","next":null,"parent":"Q!","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"le":{"opcode":"looks_switchcostumeto","next":"bM","parent":"qo","inputs":{"COSTUME":[3,"Q#","a.e"]},"fields":{},"shadow":false,"topLevel":false},"Q#":{"opcode":"operator_multiply","next":null,"parent":"le","inputs":{"NUM1":[3,"a.f",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a.f":{"opcode":"data_itemoflist","next":null,"parent":"Q#","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a.e":{"opcode":"looks_costume","next":null,"parent":null,"inputs":{},"fields":{"COSTUME":["16",null]},"shadow":true,"topLevel":true,"x":1114,"y":764},"a--":{"opcode":"argument_reporter_string_number","next":null,"parent":"bM","inputs":{},"fields":{"VALUE":["Xstart",null]},"shadow":false,"topLevel":false},"a-.":{"opcode":"argument_reporter_string_number","next":null,"parent":"bM","inputs":{},"fields":{"VALUE":["Ystart",null]},"shadow":false,"topLevel":false},"QN":{"opcode":"data_deletealloflist","next":"a;","parent":"bM","inputs":{},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"a;":{"opcode":"control_repeat","next":"Q%","parent":"QN","inputs":{"TIMES":[3,"qp",[6,"0"]],"SUBSTACK":[2,"a.g"]},"fields":{},"shadow":false,"topLevel":false},"qp":{"opcode":"operator_multiply","next":null,"parent":"a;","inputs":{"NUM1":[3,"a.h",[4,"0"]],"NUM2":[3,"a.i",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.h":{"opcode":"argument_reporter_string_number","next":null,"parent":"qp","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":false,"topLevel":false},"a.i":{"opcode":"argument_reporter_string_number","next":null,"parent":"qp","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":false,"topLevel":false},"a.g":{"opcode":"data_addtolist","next":null,"parent":"a;","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"Q%":{"opcode":"control_repeat","next":"a.j","parent":"a;","inputs":{"TIMES":[3,"a.k",[6,"0"]],"SUBSTACK":[2,",f"]},"fields":{},"shadow":false,"topLevel":false},"a.k":{"opcode":"argument_reporter_string_number","next":null,"parent":"Q%","inputs":{},"fields":{"VALUE":["rows",null]},"shadow":false,"topLevel":false},",f":{"opcode":"motion_setx","next":"Q(","parent":"Q%","inputs":{"X":[1,[4,"-67"]]},"fields":{},"shadow":false,"topLevel":false},"Q(":{"opcode":"control_repeat","next":"a.l","parent":",f","inputs":{"TIMES":[3,"a.m",[6,"0"]],"SUBSTACK":[2,",g"]},"fields":{},"shadow":false,"topLevel":false},"a.m":{"opcode":"argument_reporter_string_number","next":null,"parent":"Q(","inputs":{},"fields":{"VALUE":["columns",null]},"shadow":false,"topLevel":false},",g":{"opcode":"looks_nextcostume","next":"qq","parent":"Q(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qq":{"opcode":"control_create_clone_of","next":"a.n","parent":",g","inputs":{"CLONE_OPTION":[1,"a.o"]},"fields":{},"shadow":false,"topLevel":false},"a.o":{"opcode":"control_create_clone_of_menu","next":null,"parent":"qq","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a.n":{"opcode":"motion_changexby","next":null,"parent":"qq","inputs":{"DX":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},"a.l":{"opcode":"motion_changeyby","next":null,"parent":"Q(","inputs":{"DY":[1,[4,"-40"]]},"fields":{},"shadow":false,"topLevel":false},"a.j":{"opcode":"looks_hide","next":null,"parent":"Q%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.p":{"opcode":"event_whenbroadcastreceived","next":"a.q","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["WAVE-8 reset","|c=UL-|1:KK,V8,g?krF"]},"shadow":false,"topLevel":true,"x":610,"y":39},"a.q":{"opcode":"control_delete_this_clone","next":null,"parent":"a.p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.r":{"opcode":"event_whenbroadcastreceived","next":"a.s","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["remapwave8","5V0sDNDr+0A=YC_`nb#{"]},"shadow":false,"topLevel":true,"x":1133,"y":304},"a.s":{"opcode":"procedures_call","next":null,"parent":"a.r","inputs":{"IZO5U.JG1{hlx?uY-Zug":[1,[10,"-67"]],"P=n#4paHx7[.aGU2jnRF":[1,[10,"105"]],".A{XL/=aJQD9Mf6Si7J1":[1,[10,"4"]],"!WwY,eYr76KH6sejF{8b":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw Keys starting at %s %s With %s rows and %s columns","argumentids":"[\"IZO5U.JG1{hlx?uY-Zug\",\"P=n#4paHx7[.aGU2jnRF\",\".A{XL/=aJQD9Mf6Si7J1\",\"!WwY,eYr76KH6sejF{8b\"]","warp":"true"}},"a.t":{"opcode":"looks_show","next":",h","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1825,"y":266},",h":{"opcode":"looks_seteffectto","next":",i","parent":"a.t","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},",i":{"opcode":"looks_setsizeto","next":",j","parent":",h","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},",j":{"opcode":"looks_switchcostumeto","next":null,"parent":",i","inputs":{"COSTUME":[1,"a.u"]},"fields":{},"shadow":false,"topLevel":false},"a.u":{"opcode":"looks_costume","next":null,"parent":",j","inputs":{},"fields":{"COSTUME":["costume1",null]},"shadow":true,"topLevel":false}},"comments":{},"currentCostume":15,"costumes":[{"name":"1","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"2","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"3","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"4","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"5","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"6","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"7","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"8","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"9","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"10","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"11","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"12","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"13","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"14","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"15","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"16","bitmapResolution":2,"dataFormat":"png","assetId":"afd218dcb5e3cc3c27bb775de7934102","md5ext":"afd218dcb5e3cc3c27bb775de7934102.png","rotationCenterX":45,"rotationCenterY":40},{"name":"17","bitmapResolution":2,"dataFormat":"png","assetId":"1436f96369704e7e69a60f43dbca2084","md5ext":"1436f96369704e7e69a60f43dbca2084.png","rotationCenterX":56,"rotationCenterY":74},{"name":"18","bitmapResolution":2,"dataFormat":"png","assetId":"0ad18e85db82014b60e95cc5c3d5738d","md5ext":"0ad18e85db82014b60e95cc5c3d5738d.png","rotationCenterX":56,"rotationCenterY":74},{"name":"25","bitmapResolution":2,"dataFormat":"png","assetId":"9feb84674a1dcc30ae85c2cf49ca3a2e","md5ext":"9feb84674a1dcc30ae85c2cf49ca3a2e.png","rotationCenterX":56,"rotationCenterY":74},{"name":"c","bitmapResolution":2,"dataFormat":"png","assetId":"047d56bdf32d6903ca44431b71e728b5","md5ext":"047d56bdf32d6903ca44431b71e728b5.png","rotationCenterX":56,"rotationCenterY":74},{"name":"19","bitmapResolution":2,"dataFormat":"png","assetId":"b5b210d1fc8eb486ccb2fc916c258fdf","md5ext":"b5b210d1fc8eb486ccb2fc916c258fdf.png","rotationCenterX":56,"rotationCenterY":74},{"name":"20","bitmapResolution":2,"dataFormat":"png","assetId":"fa7dd571071e3c99014191f086d18c68","md5ext":"fa7dd571071e3c99014191f086d18c68.png","rotationCenterX":56,"rotationCenterY":74},{"name":"21","bitmapResolution":2,"dataFormat":"png","assetId":"911fa08b976bb79be5ca6331167bc88f","md5ext":"911fa08b976bb79be5ca6331167bc88f.png","rotationCenterX":56,"rotationCenterY":74},{"name":"d","bitmapResolution":2,"dataFormat":"png","assetId":"7e019c91684e0f84d00130c188b56a78","md5ext":"7e019c91684e0f84d00130c188b56a78.png","rotationCenterX":56,"rotationCenterY":74},{"name":"22","bitmapResolution":2,"dataFormat":"png","assetId":"856be3759f14194996271dd779da7a7a","md5ext":"856be3759f14194996271dd779da7a7a.png","rotationCenterX":56,"rotationCenterY":74},{"name":"23","bitmapResolution":2,"dataFormat":"png","assetId":"5d8e272826680dbca5f5f7f853a86dee","md5ext":"5d8e272826680dbca5f5f7f853a86dee.png","rotationCenterX":56,"rotationCenterY":74},{"name":"24","bitmapResolution":2,"dataFormat":"png","assetId":"d98dab2b4abbd7a70dc7414b04bcae8f","md5ext":"d98dab2b4abbd7a70dc7414b04bcae8f.png","rotationCenterX":56,"rotationCenterY":74},{"name":"e","bitmapResolution":2,"dataFormat":"png","assetId":"e7f6f4dbf45e5ee1c63a47be816a9833","md5ext":"e7f6f4dbf45e5ee1c63a47be816a9833.png","rotationCenterX":56,"rotationCenterY":74},{"name":"a","bitmapResolution":2,"dataFormat":"png","assetId":"146b24464e0c0bc585071c34b8e80751","md5ext":"146b24464e0c0bc585071c34b8e80751.png","rotationCenterX":56,"rotationCenterY":74},{"name":"0","bitmapResolution":2,"dataFormat":"png","assetId":"e01696ebf60250767c050f061ebc8add","md5ext":"e01696ebf60250767c050f061ebc8add.png","rotationCenterX":56,"rotationCenterY":74},{"name":"b","bitmapResolution":2,"dataFormat":"png","assetId":"bce7e2aede44d85200de99d7f2b60539","md5ext":"bce7e2aede44d85200de99d7f2b60539.png","rotationCenterX":56,"rotationCenterY":74},{"name":"f","bitmapResolution":2,"dataFormat":"png","assetId":"9daf5ab134f81ec5d1defbe17b210301","md5ext":"9daf5ab134f81ec5d1defbe17b210301.png","rotationCenterX":56,"rotationCenterY":74}],"sounds":[],"volume":100,"layerOrder":17,"visible":false,"x":0,"y":0,"size":58.257663020492465,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Icon Template 1","variables":{"lo_vMT]e;W^6J}L{.;?|":["Velocity",-5],"_FiygW_%~W7KsK!n$5T{":["S",0],"M1MRH6V)bg-6jD{ugH=J":["Input",0],"|vEUSf.D@`%N,D.^3/|b":["Ahello",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"P;qur_QvQJdLi~`CMsNs":["mchip8sprite width",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"a.v":{"opcode":"control_start_as_clone","next":",k","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1574,"y":645},",k":{"opcode":"looks_show","next":",l","parent":"a.v","inputs":{},"fields":{},"shadow":false,"topLevel":false},",l":{"opcode":"looks_setsizeto","next":",m","parent":",k","inputs":{"SIZE":[1,[4,"52"]]},"fields":{},"shadow":false,"topLevel":false},",m":{"opcode":"control_forever","next":null,"parent":",l","inputs":{"SUBSTACK":[2,"qr"]},"fields":{},"shadow":false,"topLevel":false},"qr":{"opcode":"control_wait_until","next":",n","parent":",m","inputs":{"CONDITION":[2,",o"]},"fields":{},"shadow":false,"topLevel":false},",o":{"opcode":"operator_lt","next":null,"parent":"qr","inputs":{"OPERAND1":[3,"Q)",[10,""]],"OPERAND2":[1,[10,"74"]]},"fields":{},"shadow":false,"topLevel":false},"Q)":{"opcode":"operator_mathop","next":null,"parent":",o","inputs":{"NUM":[3,"a.w",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a.w":{"opcode":"motion_xposition","next":null,"parent":"Q)","inputs":{},"fields":{},"shadow":false,"topLevel":false},",n":{"opcode":"looks_setsizeto","next":"Q*","parent":"qr","inputs":{"SIZE":[1,[4,"55"]]},"fields":{},"shadow":false,"topLevel":false},"Q*":{"opcode":"data_setvariableto","next":"qs","parent":",n","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"qs":{"opcode":"control_wait_until","next":"Q+","parent":"Q*","inputs":{"CONDITION":[2,"Q,"]},"fields":{},"shadow":false,"topLevel":false},"Q,":{"opcode":"operator_lt","next":null,"parent":"qs","inputs":{"OPERAND1":[1,[10,"74"]],"OPERAND2":[3,"Q-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Q-":{"opcode":"operator_mathop","next":null,"parent":"Q,","inputs":{"NUM":[3,"a.x",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a.x":{"opcode":"motion_xposition","next":null,"parent":"Q-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Q+":{"opcode":"looks_setsizeto","next":"a.y","parent":"qs","inputs":{"SIZE":[1,[4,"98"]]},"fields":{},"shadow":false,"topLevel":false},"a.y":{"opcode":"data_setvariableto","next":null,"parent":"Q+","inputs":{"VALUE":[1,[10,"-5"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"a.z":{"opcode":"control_start_as_clone","next":"Q.","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1950,"y":873},"Q.":{"opcode":"looks_seteffectto","next":"Q/","parent":"a.z","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"Q/":{"opcode":"looks_show","next":"e?","parent":"Q.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"e?":{"opcode":"motion_gotoxy","next":"Q:","parent":"Q/","inputs":{"X":[3,"Q;",[4,"0"]],"Y":[3,"Q=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q;":{"opcode":"operator_add","next":null,"parent":"e?","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[3,"Q?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q?":{"opcode":"operator_multiply","next":null,"parent":"Q;","inputs":{"NUM1":[3,"Q@",[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"Q@":{"opcode":"operator_subtract","next":null,"parent":"Q?","inputs":{"NUM1":[3,"a.A",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.A":{"opcode":"looks_costumenumbername","next":null,"parent":"Q@","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Q=":{"opcode":"operator_subtract","next":null,"parent":"e?","inputs":{"NUM1":[3,"qt",[4,"0"]],"NUM2":[1,[4,"230"]]},"fields":{},"shadow":false,"topLevel":false},"qt":{"opcode":"operator_add","next":null,"parent":"Q=","inputs":{"NUM1":[3,"Q[",[4,"0"]],"NUM2":[3,"qu",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q[":{"opcode":"operator_multiply","next":null,"parent":"qt","inputs":{"NUM1":[3,"a.B",[4,"0"]],"NUM2":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"a.B":{"opcode":"data_itemoflist","next":null,"parent":"Q[","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"qu":{"opcode":"operator_multiply","next":null,"parent":"qt","inputs":{"NUM1":[3,"Q]",[4,"0"]],"NUM2":[3,"qv",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q]":{"opcode":"operator_multiply","next":null,"parent":"qu","inputs":{"NUM1":[3,"a.C",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.C":{"opcode":"operator_mathop","next":null,"parent":"Q]","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"qv":{"opcode":"operator_multiply","next":null,"parent":"qu","inputs":{"NUM1":[3,"Q^",[4,"0"]],"NUM2":[3,"Q_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q^":{"opcode":"operator_equals","next":null,"parent":"qv","inputs":{"OPERAND1":[3,"a.D",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.D":{"opcode":"data_itemoflist","next":null,"parent":"Q^","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Q_":{"opcode":"operator_lt","next":null,"parent":"qv","inputs":{"OPERAND1":[3,"Q`",[10,""]],"OPERAND2":[1,[10,"74"]]},"fields":{},"shadow":false,"topLevel":false},"Q`":{"opcode":"operator_mathop","next":null,"parent":"Q_","inputs":{"NUM":[3,"a.E",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a.E":{"opcode":"motion_xposition","next":null,"parent":"Q`","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Q:":{"opcode":"control_repeat","next":"Q{","parent":"e?","inputs":{"TIMES":[3,"Q|",[6,"0"]],"SUBSTACK":[2,"Q}"]},"fields":{},"shadow":false,"topLevel":false},"Q|":{"opcode":"operator_multiply","next":null,"parent":"Q:","inputs":{"NUM1":[1,[4,"11"]],"NUM2":[3,"Q~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Q~":{"opcode":"operator_add","next":null,"parent":"Q|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a.F",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.F":{"opcode":"argument_reporter_boolean","next":null,"parent":"Q~","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"Q}":{"opcode":"looks_changeeffectby","next":null,"parent":"Q:","inputs":{"CHANGE":[3,"Ra",[4,"0"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"Ra":{"opcode":"operator_multiply","next":null,"parent":"Q}","inputs":{"NUM1":[1,[4,"-5"]],"NUM2":[3,"Rb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rb":{"opcode":"operator_subtract","next":null,"parent":"Ra","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"a.G",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.G":{"opcode":"argument_reporter_boolean","next":null,"parent":"Rb","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"Q{":{"opcode":"control_forever","next":null,"parent":"Q:","inputs":{"SUBSTACK":[2,"e@"]},"fields":{},"shadow":false,"topLevel":false},"e@":{"opcode":"motion_gotoxy","next":"qw","parent":"Q{","inputs":{"X":[3,"Rc",[4,"0"]],"Y":[3,"Rd",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rc":{"opcode":"operator_add","next":null,"parent":"e@","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[3,"Re",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Re":{"opcode":"operator_multiply","next":null,"parent":"Rc","inputs":{"NUM1":[3,"Rf",[4,"0"]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"Rf":{"opcode":"operator_subtract","next":null,"parent":"Re","inputs":{"NUM1":[3,"a.H",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.H":{"opcode":"looks_costumenumbername","next":null,"parent":"Rf","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Rd":{"opcode":"operator_subtract","next":null,"parent":"e@","inputs":{"NUM1":[3,"qx",[4,"0"]],"NUM2":[1,[4,"230"]]},"fields":{},"shadow":false,"topLevel":false},"qx":{"opcode":"operator_add","next":null,"parent":"Rd","inputs":{"NUM1":[3,"Rg",[4,"0"]],"NUM2":[3,"qy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rg":{"opcode":"operator_multiply","next":null,"parent":"qx","inputs":{"NUM1":[3,"a.I",[4,"0"]],"NUM2":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"a.I":{"opcode":"data_itemoflist","next":null,"parent":"Rg","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"qy":{"opcode":"operator_multiply","next":null,"parent":"qx","inputs":{"NUM1":[3,"Rh",[4,"0"]],"NUM2":[3,"qz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rh":{"opcode":"operator_multiply","next":null,"parent":"qy","inputs":{"NUM1":[3,"a.J",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.J":{"opcode":"operator_mathop","next":null,"parent":"Rh","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"qz":{"opcode":"operator_multiply","next":null,"parent":"qy","inputs":{"NUM1":[3,"Ri",[4,"0"]],"NUM2":[3,"Rj",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ri":{"opcode":"operator_equals","next":null,"parent":"qz","inputs":{"OPERAND1":[3,"a.K",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.K":{"opcode":"data_itemoflist","next":null,"parent":"Ri","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"Rj":{"opcode":"operator_lt","next":null,"parent":"qz","inputs":{"OPERAND1":[3,"Rk",[10,""]],"OPERAND2":[1,[10,"74"]]},"fields":{},"shadow":false,"topLevel":false},"Rk":{"opcode":"operator_mathop","next":null,"parent":"Rj","inputs":{"NUM":[3,"a.L",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a.L":{"opcode":"motion_xposition","next":null,"parent":"Rk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qw":{"opcode":"data_setvariableto","next":"Rl","parent":"e@","inputs":{"VALUE":[3,"a.M",[10,""]]},"fields":{"VARIABLE":["S","_FiygW_%~W7KsK!n$5T{"]},"shadow":false,"topLevel":false},"a.M":{"opcode":"looks_size","next":null,"parent":"qw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Rl":{"opcode":"looks_setsizeto","next":"e[","parent":"qw","inputs":{"SIZE":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"e[":{"opcode":"control_if_else","next":"a.N","parent":"Rl","inputs":{"CONDITION":[2,"Rm"],"SUBSTACK":[2,"a.O"],"SUBSTACK2":[2,"a.P"]},"fields":{},"shadow":false,"topLevel":false},"Rm":{"opcode":"sensing_touchingobject","next":null,"parent":"e[","inputs":{"TOUCHINGOBJECTMENU":[1,"a.Q"]},"fields":{},"shadow":false,"topLevel":false},"a.Q":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"Rm","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_edge_",null]},"shadow":true,"topLevel":false},"a.O":{"opcode":"looks_seteffectto","next":null,"parent":"e[","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a.P":{"opcode":"looks_seteffectto","next":null,"parent":"e[","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a.N":{"opcode":"looks_setsizeto","next":null,"parent":"e[","inputs":{"SIZE":[3,[12,"S","_FiygW_%~W7KsK!n$5T{"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.R":{"opcode":"control_start_as_clone","next":"Rn","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2288,"y":1758},"Rn":{"opcode":"data_setvariableto","next":"Ro","parent":"a.R","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"Ro":{"opcode":"control_forever","next":null,"parent":"Rn","inputs":{"SUBSTACK":[2,"Rp"]},"fields":{},"shadow":false,"topLevel":false},"Rp":{"opcode":"looks_changesizeby","next":"e]","parent":"Ro","inputs":{"CHANGE":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"e]":{"opcode":"control_if_else","next":"Rq","parent":"Rp","inputs":{"CONDITION":[2,"Rr"],"SUBSTACK":[2,"a.S"],"SUBSTACK2":[2,"Rs"]},"fields":{},"shadow":false,"topLevel":false},"Rr":{"opcode":"operator_lt","next":null,"parent":"e]","inputs":{"OPERAND1":[3,"a.T",[10,""]],"OPERAND2":[1,[10,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"a.T":{"opcode":"operator_mathop","next":null,"parent":"Rr","inputs":{"NUM":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a.S":{"opcode":"data_setvariableto","next":null,"parent":"e]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"Rs":{"opcode":"data_setvariableto","next":null,"parent":"e]","inputs":{"VALUE":[3,"a.U",[10,""]]},"fields":{"VARIABLE":["Velocity","lo_vMT]e;W^6J}L{.;?|"]},"shadow":false,"topLevel":false},"a.U":{"opcode":"operator_multiply","next":null,"parent":"Rs","inputs":{"NUM1":[3,[12,"Velocity","lo_vMT]e;W^6J}L{.;?|"],[4,"0"]],"NUM2":[1,[4,"0.9"]]},"fields":{},"shadow":false,"topLevel":false},"Rq":{"opcode":"looks_seteffectto","next":null,"parent":"e]","inputs":{"VALUE":[3,"Rt",[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"Rt":{"opcode":"operator_subtract","next":null,"parent":"Rq","inputs":{"NUM1":[3,"a.V",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a.V":{"opcode":"looks_size","next":null,"parent":"Rt","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.W":{"opcode":"event_whenthisspriteclicked","next":"qA","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1404,"y":204},"qA":{"opcode":"data_setvariableto","next":"a.X","parent":"a.W","inputs":{"VALUE":[3,"Ru",[10,""]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"Ru":{"opcode":"operator_multiply","next":null,"parent":"qA","inputs":{"NUM1":[3,"Rv",[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"Rv":{"opcode":"operator_subtract","next":null,"parent":"Ru","inputs":{"NUM1":[3,"a.Y",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a.Y":{"opcode":"looks_costumenumbername","next":null,"parent":"Rv","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"a.X":{"opcode":"event_broadcast","next":null,"parent":"qA","inputs":{"BROADCAST_INPUT":[1,[11,"GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]]},"fields":{},"shadow":false,"topLevel":false},"a.Z":{"opcode":"event_whenbroadcastreceived","next":"qB","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]},"shadow":false,"topLevel":true,"x":2147,"y":672},"qB":{"opcode":"control_wait","next":"a.!","parent":"a.Z","inputs":{"DURATION":[3,"Rw",[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rw":{"opcode":"operator_subtract","next":null,"parent":"qB","inputs":{"NUM1":[1,[4,"0.5"]],"NUM2":[3,"Rx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rx":{"opcode":"operator_multiply","next":null,"parent":"Rw","inputs":{"NUM1":[1,[4,"0.25"]],"NUM2":[3,"a.#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.#":{"opcode":"argument_reporter_boolean","next":null,"parent":"Rx","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"a.!":{"opcode":"control_delete_this_clone","next":null,"parent":"qB","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.%":{"opcode":"event_whenbroadcastreceived","next":"Ry","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":2147,"y":64},"Ry":{"opcode":"data_setvariableto","next":",p","parent":"a.%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},",p":{"opcode":"looks_cleargraphiceffects","next":"qC","parent":"Ry","inputs":{},"fields":{},"shadow":false,"topLevel":false},"qC":{"opcode":"looks_seteffectto","next":",q","parent":",p","inputs":{"VALUE":[3,",r",[4,"0"]]},"fields":{"EFFECT":["COLOR",null]},"shadow":false,"topLevel":false},",r":{"opcode":"operator_join","next":null,"parent":"qC","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"qD",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"qD":{"opcode":"operator_join","next":null,"parent":",r","inputs":{"STRING1":[3,"a.(",[10,""]],"STRING2":[3,"a.)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a.(":{"opcode":"data_itemoflist","next":null,"parent":"qD","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a.)":{"opcode":"data_itemoflist","next":null,"parent":"qD","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},",q":{"opcode":"looks_hide","next":",s","parent":"qC","inputs":{},"fields":{},"shadow":false,"topLevel":false},",s":{"opcode":"control_wait","next":"qE","parent":",q","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"qE":{"opcode":"looks_switchcostumeto","next":",t","parent":",s","inputs":{"COSTUME":[1,"a.*"]},"fields":{},"shadow":false,"topLevel":false},"a.*":{"opcode":"looks_costume","next":null,"parent":"qE","inputs":{},"fields":{"COSTUME":["0import",null]},"shadow":true,"topLevel":false},",t":{"opcode":"control_repeat","next":null,"parent":"qE","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"qF"]},"fields":{},"shadow":false,"topLevel":false},"qF":{"opcode":"control_create_clone_of","next":"a.+","parent":",t","inputs":{"CLONE_OPTION":[1,"a.,"]},"fields":{},"shadow":false,"topLevel":false},"a.,":{"opcode":"control_create_clone_of_menu","next":null,"parent":"qF","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a.+":{"opcode":"looks_nextcostume","next":null,"parent":"qF","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a.-":{"opcode":"event_whenbroadcastreceived","next":"a..","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1655,"y":460},"a..":{"opcode":"control_delete_this_clone","next":null,"parent":"a.-","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{"bZ[":{"blockId":"bZ]","x":836.9477482862434,"y":2407.7371399176955,"width":200,"height":200,"minimized":true,"text":"Was originially going to use EmulatorsOnScratch's NIntendo DS Emulator, Project could no longer save due to the 4MB of RAM in the lists"}},"currentCostume":10,"costumes":[{"name":"0import","bitmapResolution":1,"dataFormat":"svg","assetId":"8945fe6cebc9f94d17cdede6705cce05","md5ext":"8945fe6cebc9f94d17cdede6705cce05.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659},{"name":"0remap","bitmapResolution":1,"dataFormat":"svg","assetId":"055eb27115bb03ab4b8a45d347c58007","md5ext":"055eb27115bb03ab4b8a45d347c58007.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"0Rom","bitmapResolution":1,"dataFormat":"svg","assetId":"de1a879c7714195d88636ee7886200cd","md5ext":"de1a879c7714195d88636ee7886200cd.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659},{"name":"2W8","bitmapResolution":1,"dataFormat":"svg","assetId":"59ae8592eef8327353523c139f62df65","md5ext":"59ae8592eef8327353523c139f62df65.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"2GB","bitmapResolution":1,"dataFormat":"svg","assetId":"9a7a6201bcbd4e652a151309062ac720","md5ext":"9a7a6201bcbd4e652a151309062ac720.svg","rotationCenterX":71.51432499999999,"rotationCenterY":104.989155},{"name":"1DS","bitmapResolution":1,"dataFormat":"svg","assetId":"3f8ffc17fe59c9b69193b6032fde959d","md5ext":"3f8ffc17fe59c9b69193b6032fde959d.svg","rotationCenterX":71.96054500000014,"rotationCenterY":105.02659},{"name":"2NES","bitmapResolution":1,"dataFormat":"svg","assetId":"088ca8aec29f40da4fd7e56773a57308","md5ext":"088ca8aec29f40da4fd7e56773a57308.svg","rotationCenterX":71.96055042857145,"rotationCenterY":105.02659},{"name":"0BP","bitmapResolution":1,"dataFormat":"svg","assetId":"3b2eee0ea8daf95b8e98f0440c363bfc","md5ext":"3b2eee0ea8daf95b8e98f0440c363bfc.svg","rotationCenterX":71.96055500000003,"rotationCenterY":105.02659},{"name":"2UHWEI","bitmapResolution":1,"dataFormat":"svg","assetId":"bf5938324760cd3bee8e55c7c5199045","md5ext":"bf5938324760cd3bee8e55c7c5199045.svg","rotationCenterX":71.96052500000002,"rotationCenterY":105.02659},{"name":"0S8080","bitmapResolution":1,"dataFormat":"svg","assetId":"5fef243e1e66f3969d9bb3faffe3f3ba","md5ext":"5fef243e1e66f3969d9bb3faffe3f3ba.svg","rotationCenterX":71.96049500000004,"rotationCenterY":105.02659},{"name":"2DS","bitmapResolution":1,"dataFormat":"svg","assetId":"0c9f5f87b7ab320543b18ef6eb5845a4","md5ext":"0c9f5f87b7ab320543b18ef6eb5845a4.svg","rotationCenterX":71.96054500000011,"rotationCenterY":105.02659},{"name":"1W8","bitmapResolution":1,"dataFormat":"svg","assetId":"0243ceedbe28dac137c06653cae134ca","md5ext":"0243ceedbe28dac137c06653cae134ca.svg","rotationCenterX":71.96056752698698,"rotationCenterY":72.2372},{"name":"2N64","bitmapResolution":1,"dataFormat":"svg","assetId":"7ea6684aaa1c4d6b3b04f768da84d3d7","md5ext":"7ea6684aaa1c4d6b3b04f768da84d3d7.svg","rotationCenterX":71.960565,"rotationCenterY":105.02659}],"sounds":[{"name":"select","assetId":"65eb4aaa919adcce058cc10a7ed6af29","dataFormat":"wav","format":"","rate":48000,"sampleCount":35108,"md5ext":"65eb4aaa919adcce058cc10a7ed6af29.wav"},{"name":"423930__mudkip2016__correct","assetId":"2b8df150fec576ea0df648ffc581e51e","dataFormat":"wav","rate":48000,"sampleCount":30712,"md5ext":"2b8df150fec576ea0df648ffc581e51e.wav"}],"volume":100,"layerOrder":20,"visible":false,"x":-74,"y":-110,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite2","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0],"hrlmIBq6fq*lN*RPBh*J":["c8.Wrap_mode",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"a./":{"opcode":"event_whenthisspriteclicked","next":"Rz","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"Rz":{"opcode":"sound_play","next":"RA","parent":"a./","inputs":{"SOUND_MENU":[3,",u","a.:"]},"fields":{},"shadow":false,"topLevel":false},",u":{"opcode":"operator_add","next":null,"parent":"Rz","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a.;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.;":{"opcode":"data_itemoflist","next":null,"parent":",u","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"a.:":{"opcode":"sound_sounds_menu","next":null,"parent":"Rz","inputs":{},"fields":{"SOUND_MENU":["ping-bing",null]},"shadow":true,"topLevel":false},"RA":{"opcode":"control_repeat","next":"c%","parent":"Rz","inputs":{"TIMES":[3,",v",[6,"0"]],"SUBSTACK":[2,",w"]},"fields":{},"shadow":false,"topLevel":false},",v":{"opcode":"operator_multiply","next":null,"parent":"RA","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,",x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",x":{"opcode":"operator_add","next":null,"parent":",v","inputs":{"NUM1":[3,"a.=",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a.=":{"opcode":"argument_reporter_boolean","next":null,"parent":",x","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},",w":{"opcode":"data_changevariableby","next":null,"parent":"RA","inputs":{"VALUE":[3,"qG",[4,"0"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"qG":{"opcode":"operator_divide","next":null,"parent":",w","inputs":{"NUM1":[3,",y",[4,"0"]],"NUM2":[3,"RB",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",y":{"opcode":"operator_subtract","next":null,"parent":"qG","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"RC",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RC":{"opcode":"operator_divide","next":null,"parent":",y","inputs":{"NUM1":[3,"a.?",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a.?":{"opcode":"looks_costumenumbername","next":null,"parent":"RC","inputs":{},"fields":{"NUMBER_NAME":["name",null]},"shadow":false,"topLevel":false},"RB":{"opcode":"operator_add","next":null,"parent":"qG","inputs":{"NUM1":[3,"a.@",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a.@":{"opcode":"argument_reporter_boolean","next":null,"parent":"RB","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"c%":{"opcode":"control_if","next":"c(","parent":"RA","inputs":{"CONDITION":[2,"qH"],"SUBSTACK":[2,"a.["]},"fields":{},"shadow":false,"topLevel":false},"qH":{"opcode":"operator_or","next":null,"parent":"c%","inputs":{"OPERAND1":[2,"a.]"],"OPERAND2":[2,"RD"]},"fields":{},"shadow":false,"topLevel":false},"a.]":{"opcode":"operator_gt","next":null,"parent":"qH","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"RD":{"opcode":"operator_not","next":null,"parent":"qH","inputs":{"OPERAND":[2,"RE"]},"fields":{},"shadow":false,"topLevel":false},"RE":{"opcode":"operator_equals","next":null,"parent":"RD","inputs":{"OPERAND1":[3,"a.^",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.^":{"opcode":"operator_mod","next":null,"parent":"RE","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a.[":{"opcode":"data_setvariableto","next":null,"parent":"c%","inputs":{"VALUE":[1,[10,"-1600"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"c(":{"opcode":"control_if","next":"a._","parent":"c%","inputs":{"CONDITION":[2,"qI"],"SUBSTACK":[2,"a.`"]},"fields":{},"shadow":false,"topLevel":false},"qI":{"opcode":"operator_or","next":null,"parent":"c(","inputs":{"OPERAND1":[2,"a.{"],"OPERAND2":[2,"RF"]},"fields":{},"shadow":false,"topLevel":false},"a.{":{"opcode":"operator_gt","next":null,"parent":"qI","inputs":{"OPERAND1":[1,[10,"-1600"]],"OPERAND2":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"RF":{"opcode":"operator_not","next":null,"parent":"qI","inputs":{"OPERAND":[2,"RG"]},"fields":{},"shadow":false,"topLevel":false},"RG":{"opcode":"operator_equals","next":null,"parent":"RF","inputs":{"OPERAND1":[3,"a.|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a.|":{"opcode":"operator_mod","next":null,"parent":"RG","inputs":{"NUM1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a.`":{"opcode":"data_setvariableto","next":null,"parent":"c(","inputs":{"VALUE":[1,[10,"200"]]},"fields":{"VARIABLE":["MenuScroll","BE)e;?PnrdmTcO@x9]LQ"]},"shadow":false,"topLevel":false},"a._":{"opcode":"control_wait","next":null,"parent":"c(","inputs":{"DURATION":[1,[5,"0.1"]]},"fields":{},"shadow":false,"topLevel":false},"a.}":{"opcode":"control_start_as_clone","next":"RH","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":784},"RH":{"opcode":"looks_seteffectto","next":"RI","parent":"a.}","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"RI":{"opcode":"looks_show","next":"RJ","parent":"RH","inputs":{},"fields":{},"shadow":false,"topLevel":false},"RJ":{"opcode":"control_repeat","next":null,"parent":"RI","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"a.~"]},"fields":{},"shadow":false,"topLevel":false},"a.~":{"opcode":"looks_changeeffectby","next":null,"parent":"RJ","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"a/a":{"opcode":"control_start_as_clone","next":"RK","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":1136},"RK":{"opcode":"control_forever","next":null,"parent":"a/a","inputs":{"SUBSTACK":[2,"c)"]},"fields":{},"shadow":false,"topLevel":false},"c)":{"opcode":"control_if_else","next":null,"parent":"RK","inputs":{"CONDITION":[2,"qJ"],"SUBSTACK":[2,"qK"],"SUBSTACK2":[2,",z"]},"fields":{},"shadow":false,"topLevel":false},"qJ":{"opcode":"operator_and","next":null,"parent":"c)","inputs":{"OPERAND1":[2,"a/b"],"OPERAND2":[2,",A"]},"fields":{},"shadow":false,"topLevel":false},"a/b":{"opcode":"sensing_mousedown","next":null,"parent":"qJ","inputs":{},"fields":{},"shadow":false,"topLevel":false},",A":{"opcode":"sensing_touchingobject","next":null,"parent":"qJ","inputs":{"TOUCHINGOBJECTMENU":[1,"a/c"]},"fields":{},"shadow":false,"topLevel":false},"a/c":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":",A","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"qK":{"opcode":"sound_play","next":"RL","parent":"c)","inputs":{"SOUND_MENU":[1,"a/d"]},"fields":{},"shadow":false,"topLevel":false},"a/d":{"opcode":"sound_sounds_menu","next":null,"parent":"qK","inputs":{},"fields":{"SOUND_MENU":["Press WDS",null]},"shadow":true,"topLevel":false},"RL":{"opcode":"looks_seteffectto","next":"RM","parent":"qK","inputs":{"VALUE":[1,[4,"-20"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"RM":{"opcode":"looks_setsizeto","next":"qL","parent":"RL","inputs":{"SIZE":[1,[4,"90"]]},"fields":{},"shadow":false,"topLevel":false},"qL":{"opcode":"control_wait_until","next":"RN","parent":"RM","inputs":{"CONDITION":[2,"RO"]},"fields":{},"shadow":false,"topLevel":false},"RO":{"opcode":"operator_not","next":null,"parent":"qL","inputs":{"OPERAND":[2,"a/e"]},"fields":{},"shadow":false,"topLevel":false},"a/e":{"opcode":"sensing_mousedown","next":null,"parent":"RO","inputs":{},"fields":{},"shadow":false,"topLevel":false},"RN":{"opcode":"sound_play","next":null,"parent":"qL","inputs":{"SOUND_MENU":[1,"a/f"]},"fields":{},"shadow":false,"topLevel":false},"a/f":{"opcode":"sound_sounds_menu","next":null,"parent":"RN","inputs":{},"fields":{"SOUND_MENU":["Release WDS",null]},"shadow":true,"topLevel":false},",z":{"opcode":"looks_setsizeto","next":"a/g","parent":"c)","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a/g":{"opcode":"looks_seteffectto","next":null,"parent":",z","inputs":{"VALUE":[1,[4,"0"]]},"fields":{"EFFECT":["BRIGHTNESS",null]},"shadow":false,"topLevel":false},"a/h":{"opcode":"event_whenbroadcastreceived","next":"a/i","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":48,"y":2448},"a/i":{"opcode":"control_delete_this_clone","next":null,"parent":"a/h","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a/j":{"opcode":"event_whenbroadcastreceived","next":"RP","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":48,"y":1800},"RP":{"opcode":"looks_hide","next":"RQ","parent":"a/j","inputs":{},"fields":{},"shadow":false,"topLevel":false},"RQ":{"opcode":"motion_pointindirection","next":"RR","parent":"RP","inputs":{"DIRECTION":[1,[8,"90"]]},"fields":{},"shadow":false,"topLevel":false},"RR":{"opcode":"motion_setrotationstyle","next":"RS","parent":"RQ","inputs":{},"fields":{"STYLE":["left-right",null]},"shadow":false,"topLevel":false},"RS":{"opcode":"control_wait","next":"qM","parent":"RR","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"qM":{"opcode":"looks_switchcostumeto","next":"RT","parent":"RS","inputs":{"COSTUME":[1,"a/k"]},"fields":{},"shadow":false,"topLevel":false},"a/k":{"opcode":"looks_costume","next":null,"parent":"qM","inputs":{},"fields":{"COSTUME":["200",null]},"shadow":true,"topLevel":false},"RT":{"opcode":"motion_gotoxy","next":"qN","parent":"qM","inputs":{"X":[1,[4,"200"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qN":{"opcode":"control_create_clone_of","next":"qO","parent":"RT","inputs":{"CLONE_OPTION":[1,"a/l"]},"fields":{},"shadow":false,"topLevel":false},"a/l":{"opcode":"control_create_clone_of_menu","next":null,"parent":"qN","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"qO":{"opcode":"looks_switchcostumeto","next":"RU","parent":"qN","inputs":{"COSTUME":[1,"a/m"]},"fields":{},"shadow":false,"topLevel":false},"a/m":{"opcode":"looks_costume","next":null,"parent":"qO","inputs":{},"fields":{"COSTUME":["-200",null]},"shadow":true,"topLevel":false},"RU":{"opcode":"motion_gotoxy","next":"qP","parent":"qO","inputs":{"X":[1,[4,"-200"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"qP":{"opcode":"control_create_clone_of","next":"a/n","parent":"RU","inputs":{"CLONE_OPTION":[1,"a/o"]},"fields":{},"shadow":false,"topLevel":false},"a/o":{"opcode":"control_create_clone_of_menu","next":null,"parent":"qP","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"a/n":{"opcode":"control_delete_this_clone","next":null,"parent":"qP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a/p":{"opcode":"event_whenbroadcastreceived","next":"a/q","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":355,"y":1900},"a/q":{"opcode":"control_delete_this_clone","next":null,"parent":"a/p","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{"e#":{"blockId":"f","x":1656,"y":5827,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"aI":{"blockId":"a","x":2404,"y":1489,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},"aJ":{"blockId":"L","x":12130,"y":2200,"width":200,"height":200,"minimized":true,"text":"5"},"aK":{"blockId":"M","x":12130,"y":2440,"width":200,"height":200,"minimized":true,"text":"6"},"bN":{"blockId":"b}","x":12130,"y":808,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"bO":{"blockId":"b~","x":12130,"y":1000,"width":200,"height":200,"minimized":true,"text":"0"},"bP":{"blockId":"ca","x":12134,"y":1240,"width":200,"height":200,"minimized":true,"text":"1"},"bQ":{"blockId":"(","x":12130,"y":1480,"width":200,"height":200,"minimized":true,"text":"2"},"bR":{"blockId":"c*","x":12130,"y":1720,"width":200,"height":200,"minimized":true,"text":"3"},"bS":{"blockId":"c+","x":12134,"y":1960,"width":200,"height":200,"minimized":true,"text":"4"},"a,":{"blockId":"N","x":12134,"y":2680,"width":200,"height":200,"minimized":true,"text":"7"},"a-":{"blockId":"O","x":12130,"y":2920,"width":200,"height":200,"minimized":true,"text":"8"},"a.":{"blockId":"aj","x":12130,"y":3160,"width":200,"height":200,"minimized":true,"text":"9"},"a/":{"blockId":"ak","x":12134,"y":3400,"width":200,"height":200,"minimized":true,"text":"A"},"bL":{"blockId":"g","x":393,"y":726,"width":200,"height":200,"minimized":false,"text":"0x1260 - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"aL":{"blockId":"d","x":1941,"y":2525,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aM":{"blockId":"cY","x":1940,"y":3709,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"e%":{"blockId":"cZ","x":1891,"y":4853,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"a:":{"blockId":"c!","x":1861,"y":6066,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"}},"currentCostume":1,"costumes":[{"name":"200","bitmapResolution":1,"dataFormat":"svg","assetId":"3d5a6e502f4702a8015d31a8eb9090e1","md5ext":"3d5a6e502f4702a8015d31a8eb9090e1.svg","rotationCenterX":17.036829203835964,"rotationCenterY":19.901146274402436},{"name":"-200","bitmapResolution":1,"dataFormat":"svg","assetId":"94d087707b37cd1e53b694f40239cd89","md5ext":"94d087707b37cd1e53b694f40239cd89.svg","rotationCenterX":17.036839539277054,"rotationCenterY":19.901140666773188}],"sounds":[{"name":"ping-bing","assetId":"6b1e75f6e47b21c0677b493c4b9e184f","dataFormat":"wav","format":"","rate":48000,"sampleCount":15812,"md5ext":"6b1e75f6e47b21c0677b493c4b9e184f.wav"},{"name":"Slide WDS","assetId":"4ab00ed9fc637a727a779a33a16a5d7b","dataFormat":"wav","format":"","rate":48000,"sampleCount":71749,"md5ext":"4ab00ed9fc637a727a779a33a16a5d7b.wav"},{"name":"Press WDS","assetId":"b55bf6c344c1f5e7e5323eccf819c175","dataFormat":"wav","format":"","rate":48000,"sampleCount":4761,"md5ext":"b55bf6c344c1f5e7e5323eccf819c175.wav"},{"name":"Release WDS","assetId":"e451e63632f213a5e0d001249c3d40f4","dataFormat":"wav","format":"","rate":48000,"sampleCount":6375,"md5ext":"e451e63632f213a5e0d001249c3d40f4.wav"}],"volume":100,"layerOrder":1,"visible":false,"x":-200,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"left-right"},{"isStage":false,"name":"Chip-8","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",724],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",8193],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",35],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",796],"{a[B7#cNJicY#22S6G[g":["chip8.rand",206],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer","0"],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",1],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk","0"],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk","0"],"g/7`YLSnP29ZzyQeb?9I":["CPF",120],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight","64"],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth","128"],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize","6"],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",3],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",1],"YiRV7D4$v56yf}?X(y.j":["VIP jumps","1"],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix","0"],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",1],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag","300"],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag","0"],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode","Fast/Sharp"],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch","64"],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer","1"],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",1],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle","0"],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety","0"],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",64],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor","255"],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag","0"],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode","0"],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0],"hrlmIBq6fq*lN*RPBh*J":["c8.Wrap_mode","1"]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[34,"0","0","0",8,82,100,132,34,8,3,"0","0",0,6,1]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",["0x7C","0xC6","0xCE","0xDE","0xD6","0xF6","0xE6","0xC6","0x7C","0x00","0x10","0x30","0xF0","0x30","0x30","0x30","0x30","0x30","0xFC","0x00","0x78","0xCC","0xCC","0x0C","0x18","0x30","0x60","0xCC","0xFC","0x00","0x78","0xCC","0x0C","0x0C","0x38","0x0C","0x0C","0xCC","0x78","0x00","0x0C","0x1C","0x3C","0x6C","0xCC","0xFE","0x0C","0x0C","0x1E","0x00","0xFC","0xC0","0xC0","0xC0","0xF8","0x0C","0x0C","0xCC","0x78","0x00","0x38","0x60","0xC0","0xC0","0xF8","0xCC","0xCC","0xCC","0x78","0x00","0xFE","0xC6","0xC6","0x06","0x0C","0x18","0x30","0x30","0x30","0x00","0x78","0xCC","0xCC","0xEC","0x78","0xDC","0xCC","0xCC","0x78","0x00","0x7C","0xC6","0xC6","0xC6","0x7E","0x0C","0x18","0x30","0x70","0x00","0x30","0x78","0xCC","0xCC","0xCC","0xFC","0xCC","0xCC","0xCC","0x00","0xFC","0x66","0x66","0x66","0x7C","0x66","0x66","0x66","0xFC","0x00","0x3C","0x66","0xC6","0xC0","0xC0","0xC0","0xC6","0x66","0x3C","0x00","0xF8","0x6C","0x66","0x66","0x66","0x66","0x66","0x6C","0xF8","0x00","0xFE","0x62","0x60","0x64","0x7C","0x64","0x60","0x62","0xFE","0x00","0xFE","0x66","0x62","0x64","0x7C","0x64","0x60","0x60","0xF0","0x00"]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",["00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00"]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",["0x00","0x01","0x63","0x02","0x35","0x00","0x11","0x24","0xF3","0x29","0x21","0x70","0x80","0x40","0x80","0x06","0x80","0x06","0x80","0x06","0x80","0x06","0xF0","0x29","0x21","0x70","0xF4","0x29","0x21","0x70","0xA1","0x76","0x21","0x70","0x75","0xFF","0x21","0x66","0x87","0x80","0x87","0x0E","0x87","0x0E","0x87","0x0E","0x87","0x0E","0x21","0x66","0x88","0x74","0xA0","0x00","0xF4","0x1E","0x80","0x30","0x61","0x80","0xF1","0x1E","0xF1","0x1E","0x70","0xFF","0x30","0x00","0x11","0x3C","0x80","0x80","0xF0","0x55","0x74","0x01","0x44","0x00","0x73","0x01","0x43","0x10","0x12","0x00","0x35","0x27","0x11","0x04","0x65","0x00","0x46","0x18","0x11","0x62","0x76","0x06","0x11","0x04","0x00","0x00","0x11","0x04","0xA1","0x7A","0xD5","0x66","0xF8","0x0A","0xD5","0x66","0xF8","0x29","0xD5","0x65","0x75","0x05","0x00","0xEE","0x00","0x40","0x00","0x40","0x00","0x00","0x00","0x00","0x00","0xF0"]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]],"$I%$ZSrMoNE4j:0:k6^m":["chip8.screen3",[]],"eIbd*$2o]f7xY6t6CmU;":["chip8.screen4",[]]},"broadcasts":{},"blocks":{"cb":{"opcode":"control_if","next":")","parent":"e^","inputs":{"CONDITION":[2,",C"],"SUBSTACK":[2,"e_"]},"fields":{},"shadow":false,"topLevel":false,"comment":",B"},"cc":{"opcode":"control_if","next":"cd","parent":")","inputs":{"CONDITION":[2,",E"],"SUBSTACK":[2,"ce"]},"fields":{},"shadow":false,"topLevel":false,"comment":",D"},"cd":{"opcode":"control_if","next":"cf","parent":"cc","inputs":{"CONDITION":[2,",G"],"SUBSTACK":[2,",H"]},"fields":{},"shadow":false,"topLevel":false,"comment":",F"},"cg":{"opcode":"control_if","next":"ch","parent":"c,","inputs":{"CONDITION":[2,"RV"],"SUBSTACK":[2,"qQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":",I"},"ch":{"opcode":"control_if","next":"an","parent":"cg","inputs":{"CONDITION":[2,",K"],"SUBSTACK":[2,"e`"]},"fields":{},"shadow":false,"topLevel":false,"comment":",J"},"ci":{"opcode":"control_if","next":"ck","parent":"cj","inputs":{"CONDITION":[2,"RW"],"SUBSTACK":[2,"qR"]},"fields":{},"shadow":false,"topLevel":false,"comment":",L"},"cj":{"opcode":"control_if","next":"ci","parent":"e{","inputs":{"CONDITION":[2,",N"],"SUBSTACK":[2,"qS"]},"fields":{},"shadow":false,"topLevel":false,"comment":",M"},"ck":{"opcode":"control_if","next":"cl","parent":"ci","inputs":{"CONDITION":[2,",P"],"SUBSTACK":[2,"qT"]},"fields":{},"shadow":false,"topLevel":false,"comment":",O"},"cf":{"opcode":"control_if","next":"e|","parent":"cd","inputs":{"CONDITION":[2,",R"],"SUBSTACK":[2,",S"]},"fields":{},"shadow":false,"topLevel":false,"comment":",Q"},"cm":{"opcode":"control_if","next":"e}","parent":"*","inputs":{"CONDITION":[2,",U"],"SUBSTACK":[2,"cn"]},"fields":{},"shadow":false,"topLevel":false,"comment":",T"},",V":{"opcode":"operator_lt","next":null,"parent":"+","inputs":{"OPERAND1":[3,"a/r",[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},",W":{"opcode":"data_addtolist","next":"qU","parent":"+","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},",G":{"opcode":"operator_lt","next":null,"parent":"cd","inputs":{"OPERAND1":[3,"a/s",[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},",H":{"opcode":"data_setvariableto","next":"Ix","parent":"cd","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},",X":{"opcode":"operator_gt","next":null,"parent":"qV","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,",Y",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",Y":{"opcode":"operator_mod","next":null,"parent":",X","inputs":{"NUM1":[3,"a/t",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",Z":{"opcode":"data_itemoflist","next":null,"parent":"c-","inputs":{"INDEX":[3,"a/u",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},",!":{"opcode":"operator_equals","next":null,"parent":"e~","inputs":{"OPERAND1":[3,"a/v",[10,""]],"OPERAND2":[1,[10,"0x85"]]},"fields":{},"shadow":false,"topLevel":false},",#":{"opcode":"operator_add","next":null,"parent":"qW","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"RX",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",%":{"opcode":"operator_mathop","next":null,"parent":"qX","inputs":{"NUM":[3,"qY",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},",(":{"opcode":"operator_mathop","next":null,"parent":",)","inputs":{"NUM":[3,",*",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},",)":{"opcode":"operator_add","next":null,"parent":",+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,",(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},",*":{"opcode":"operator_divide","next":null,"parent":",(","inputs":{"NUM1":[3,"a/w",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",+":{"opcode":"data_itemoflist","next":null,"parent":"qZ","inputs":{"INDEX":[3,",)",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},",,":{"opcode":"operator_equals","next":null,"parent":"co","inputs":{"OPERAND1":[3,",-",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},",-":{"opcode":"operator_mod","next":null,"parent":",,","inputs":{"NUM1":[3,"a/x",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",.":{"opcode":"operator_mod","next":null,"parent":",P","inputs":{"NUM1":[3,"a/y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",/":{"opcode":"data_changevariableby","next":"a/z","parent":"fa","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},",:":{"opcode":"data_setvariableto","next":"Iy","parent":"fb","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},",;":{"opcode":"data_itemoflist","next":null,"parent":"q!","inputs":{"INDEX":[3,"a/A",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},",=":{"opcode":"control_repeat","next":null,"parent":"c.","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"ao"]},"fields":{},"shadow":false,"topLevel":false},",?":{"opcode":"operator_mod","next":null,"parent":"q#","inputs":{"NUM1":[3,",@",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},",@":{"opcode":"operator_mathop","next":null,"parent":",?","inputs":{"NUM":[3,"q%",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},",[":{"opcode":"data_addtolist","next":"ca","parent":"RY","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},",]":{"opcode":"operator_mod","next":null,"parent":",^","inputs":{"NUM1":[3,"a/B",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",_":{"opcode":"data_itemoflist","next":null,"parent":"ap","inputs":{"INDEX":[3,",`",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},",{":{"opcode":"operator_lt","next":null,"parent":"fc","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"a/C",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",|":{"opcode":"data_changevariableby","next":",}","parent":"q(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},",}":{"opcode":"data_replaceitemoflist","next":null,"parent":",|","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,",~",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"-a":{"opcode":"operator_mod","next":null,"parent":"-b","inputs":{"NUM1":[3,"a/D",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-b":{"opcode":"operator_equals","next":null,"parent":",","inputs":{"OPERAND1":[3,"-a",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"-c":{"opcode":"operator_add","next":null,"parent":"-d","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-e":{"opcode":"operator_mod","next":null,"parent":"-c","inputs":{"NUM1":[3,"a/E",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-f":{"opcode":"data_replaceitemoflist","next":"-g","parent":"fd","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-g":{"opcode":"data_replaceitemoflist","next":null,"parent":"-f","inputs":{"INDEX":[3,"-h",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-i":{"opcode":"data_setvariableto","next":null,"parent":"cp","inputs":{"VALUE":[3,"q)",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"-j":{"opcode":"operator_mod","next":null,"parent":"-k","inputs":{"NUM1":[3,"a/F",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-k":{"opcode":"operator_equals","next":null,"parent":"cp","inputs":{"OPERAND1":[3,"-j",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"-l":{"opcode":"data_deletealloflist","next":"-m","parent":"cq","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"-n":{"opcode":"operator_mod","next":null,"parent":"-o","inputs":{"NUM1":[3,"a/G",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-o":{"opcode":"operator_add","next":null,"parent":"-p","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-p":{"opcode":"data_itemoflist","next":null,"parent":"-q","inputs":{"INDEX":[3,"-o",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-r":{"opcode":"operator_add","next":null,"parent":"q*","inputs":{"NUM1":[3,"a/H",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"-s":{"opcode":"operator_equals","next":null,"parent":"fe","inputs":{"OPERAND1":[3,"-t",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-t":{"opcode":"operator_mod","next":null,"parent":"-s","inputs":{"NUM1":[3,"a/I",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-u":{"opcode":"operator_mathop","next":null,"parent":"-v","inputs":{"NUM":[3,"-w",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"-v":{"opcode":"operator_add","next":null,"parent":"-x","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-w":{"opcode":"operator_divide","next":null,"parent":"-u","inputs":{"NUM1":[3,"a/J",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-y":{"opcode":"operator_divide","next":null,"parent":"-z","inputs":{"NUM1":[3,"a/K",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-A":{"opcode":"operator_mod","next":null,"parent":"-B","inputs":{"NUM1":[3,"a/L",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-C":{"opcode":"data_setvariableto","next":"-D","parent":"q+","inputs":{"VALUE":[1,[10,"VIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"-D":{"opcode":"data_setvariableto","next":"-E","parent":"-C","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"-F":{"opcode":"data_itemoflist","next":null,"parent":"RZ","inputs":{"INDEX":[3,"-G",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-G":{"opcode":"operator_add","next":null,"parent":"-F","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-H",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-H":{"opcode":"operator_mathop","next":null,"parent":"-G","inputs":{"NUM":[3,"-I",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"-J":{"opcode":"operator_lt","next":null,"parent":"-","inputs":{"OPERAND1":[3,"a/M",[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"-K":{"opcode":"operator_equals","next":null,"parent":"cr","inputs":{"OPERAND1":[3,"a/N",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-L":{"opcode":"data_itemoflist","next":null,"parent":"qS","inputs":{"INDEX":[3,"-M",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-M":{"opcode":"operator_add","next":null,"parent":"-L","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-O":{"opcode":"operator_multiply","next":null,"parent":"-P","inputs":{"NUM1":[3,"-Q",[4,"0"]],"NUM2":[1,[4,"120"]]},"fields":{},"shadow":false,"topLevel":false},"-Q":{"opcode":"operator_divide","next":null,"parent":"-O","inputs":{"NUM1":[3,"a/O",[4,"0"]],"NUM2":[1,[4,"48"]]},"fields":{},"shadow":false,"topLevel":false},"-R":{"opcode":"operator_mod","next":null,"parent":"-S","inputs":{"NUM1":[3,"a/P",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-S":{"opcode":"operator_add","next":null,"parent":"-T","inputs":{"NUM1":[3,"-R",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-T":{"opcode":"data_itemoflist","next":null,"parent":"-U","inputs":{"INDEX":[3,"-S",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-U":{"opcode":"operator_mod","next":null,"parent":"ao","inputs":{"NUM1":[3,"-T",[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-V":{"opcode":"operator_equals","next":null,"parent":"cs","inputs":{"OPERAND1":[3,"a/Q",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"-W":{"opcode":"operator_mod","next":null,"parent":"q,","inputs":{"NUM1":[3,"a/R",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-X":{"opcode":"data_addtolist","next":"R!","parent":"-Y","inputs":{"ITEM":[1,[10,"0x555555"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"-Z":{"opcode":"operator_equals","next":null,"parent":"q-","inputs":{"OPERAND1":[3,"-!",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-#":{"opcode":"operator_subtract","next":null,"parent":"q.","inputs":{"NUM1":[3,"q/",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-%":{"opcode":"data_setvariableto","next":"a/S","parent":"ct","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"-(":{"opcode":"operator_equals","next":null,"parent":"q:","inputs":{"OPERAND1":[3,"a/T",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-)":{"opcode":"operator_equals","next":null,"parent":"q;","inputs":{"OPERAND1":[3,"-*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-*":{"opcode":"operator_mod","next":null,"parent":"-)","inputs":{"NUM1":[3,"a/U",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-+":{"opcode":"pen_clear","next":"-,","parent":"q=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"--":{"opcode":"sound_stopallsounds","next":"-/","parent":"-.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"-/":{"opcode":"procedures_call","next":"-:","parent":"--","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.reset","argumentids":"[]","warp":"true"}},"-;":{"opcode":"operator_equals","next":null,"parent":"cu","inputs":{"OPERAND1":[3,"-=",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"-=":{"opcode":"operator_mod","next":null,"parent":"-;","inputs":{"NUM1":[3,"a/V",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-?":{"opcode":"operator_equals","next":null,"parent":".","inputs":{"OPERAND1":[3,"a/W",[10,""]],"OPERAND2":[1,[10,"0x07"]]},"fields":{},"shadow":false,"topLevel":false},"-@":{"opcode":"operator_lt","next":null,"parent":"q?","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"-[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"-[":{"opcode":"data_itemoflist","next":null,"parent":"-@","inputs":{"INDEX":[3,"a/X",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"-]":{"opcode":"operator_multiply","next":null,"parent":"q@","inputs":{"NUM1":[3,"-^",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"-^":{"opcode":"operator_subtract","next":null,"parent":"-]","inputs":{"NUM1":[3,"a/Y",[4,"0"]],"NUM2":[1,[4,"93"]]},"fields":{},"shadow":false,"topLevel":false},"-_":{"opcode":"operator_mod","next":null,"parent":"-`","inputs":{"NUM1":[3,"a/Z",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-`":{"opcode":"operator_add","next":null,"parent":"-{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-{":{"opcode":"data_itemoflist","next":null,"parent":"q[","inputs":{"INDEX":[3,"-`",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-|":{"opcode":"operator_equals","next":null,"parent":"m","inputs":{"OPERAND1":[3,"a/!",[10,""]],"OPERAND2":[1,[10,"0xFE"]]},"fields":{},"shadow":false,"topLevel":false},"-}":{"opcode":"operator_divide","next":null,"parent":"ff","inputs":{"NUM1":[3,"a/#",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"T":{"opcode":"control_if","next":"cv","parent":"q]","inputs":{"CONDITION":[2,",^"],"SUBSTACK":[2,"a="]},"fields":{},"shadow":false,"topLevel":false,"comment":"-~"},")":{"opcode":"control_if","next":"cc","parent":"cb","inputs":{"CONDITION":[2,"R#"],"SUBSTACK":[2,"Iz"]},"fields":{},"shadow":false,"topLevel":false,"comment":".a"},".b":{"opcode":"data_itemoflist","next":null,"parent":".c","inputs":{"INDEX":[3,"a/%",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},".d":{"opcode":"data_changevariableby","next":"IA","parent":"c/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},".e":{"opcode":"operator_add","next":null,"parent":"fg","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".f":{"opcode":"operator_mod","next":null,"parent":".e","inputs":{"NUM1":[3,"a/(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".g":{"opcode":"operator_mathop","next":null,"parent":"fg","inputs":{"NUM":[3,"q^",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".h":{"opcode":"data_changevariableby","next":"a/)","parent":"fh","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},".i":{"opcode":"operator_multiply","next":null,"parent":"q_","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,".j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".j":{"opcode":"data_itemoflist","next":null,"parent":".i","inputs":{"INDEX":[3,"a/*",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},".k":{"opcode":"operator_lt","next":null,"parent":"c,","inputs":{"OPERAND1":[3,"a/+",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},".l":{"opcode":"data_setvariableto","next":"IB","parent":".m","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},".n":{"opcode":"data_itemoflist","next":null,"parent":"IC","inputs":{"INDEX":[3,".o",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".o":{"opcode":"operator_add","next":null,"parent":".n","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".p":{"opcode":"operator_mathop","next":null,"parent":".o","inputs":{"NUM":[3,".q",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".q":{"opcode":"operator_divide","next":null,"parent":".p","inputs":{"NUM1":[3,"a/,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".r":{"opcode":"control_incr_counter","next":"ID","parent":".s","inputs":{},"fields":{},"shadow":false,"topLevel":false},".s":{"opcode":"data_changevariableby","next":".r","parent":"q`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},".t":{"opcode":"operator_mod","next":null,"parent":",U","inputs":{"NUM1":[3,"a/-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",U":{"opcode":"operator_equals","next":null,"parent":"cm","inputs":{"OPERAND1":[3,".t",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},".u":{"opcode":"operator_equals","next":null,"parent":"q{","inputs":{"OPERAND1":[3,"a/.",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},".v":{"opcode":"operator_mathop","next":null,"parent":"q|","inputs":{"NUM":[3,"q}",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".w":{"opcode":"operator_mathop","next":null,"parent":".x","inputs":{"NUM":[3,".y",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".y":{"opcode":"operator_divide","next":null,"parent":".w","inputs":{"NUM1":[3,".z",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},".z":{"opcode":"data_itemoflist","next":null,"parent":".y","inputs":{"INDEX":[3,".A",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".A":{"opcode":"operator_add","next":null,"parent":".z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".B",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".B":{"opcode":"operator_mod","next":null,"parent":".A","inputs":{"NUM1":[3,"a//",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".C":{"opcode":"operator_add","next":null,"parent":".D","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".D":{"opcode":"data_itemoflist","next":null,"parent":"q^","inputs":{"INDEX":[3,".C",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".E":{"opcode":"operator_mod","next":null,"parent":".C","inputs":{"NUM1":[3,"a/:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".F":{"opcode":"operator_equals","next":null,"parent":".G","inputs":{"OPERAND1":[3,".H",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},".G":{"opcode":"operator_not","next":null,"parent":"fi","inputs":{"OPERAND":[2,".F"]},"fields":{},"shadow":false,"topLevel":false},".I":{"opcode":"operator_gt","next":null,"parent":"q~","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a/;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".J":{"opcode":"operator_multiply","next":null,"parent":"IE","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a/=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".K":{"opcode":"operator_equals","next":null,"parent":"IF","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,".L",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".L":{"opcode":"data_itemoflist","next":null,"parent":".K","inputs":{"INDEX":[3,"a/?",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},".M":{"opcode":"operator_mod","next":null,"parent":".N","inputs":{"NUM1":[3,".O",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},".N":{"opcode":"operator_add","next":null,"parent":".P","inputs":{"NUM1":[3,".M",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},".O":{"opcode":"operator_add","next":null,"parent":".M","inputs":{"NUM1":[3,".Q",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".Q":{"opcode":"data_itemoflist","next":null,"parent":".O","inputs":{"INDEX":[3,".R",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".R":{"opcode":"operator_add","next":null,"parent":".Q","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".S":{"opcode":"operator_mod","next":null,"parent":".R","inputs":{"NUM1":[3,"a/@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".T":{"opcode":"data_deletealloflist","next":".m","parent":".U","inputs":{},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},".V":{"opcode":"operator_equals","next":null,"parent":"*","inputs":{"OPERAND1":[3,".W",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},".W":{"opcode":"operator_mod","next":null,"parent":".V","inputs":{"NUM1":[3,"a/[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".X":{"opcode":"data_setvariableto","next":null,"parent":"cr","inputs":{"VALUE":[3,"a/]",[10,""]]},"fields":{"VARIABLE":["chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"]},"shadow":false,"topLevel":false},".Y":{"opcode":"operator_equals","next":null,"parent":"n","inputs":{"OPERAND1":[3,"a/^",[10,""]],"OPERAND2":[1,[10,"0xFF"]]},"fields":{},"shadow":false,"topLevel":false},".Z":{"opcode":"operator_equals","next":null,"parent":"ra","inputs":{"OPERAND1":[3,".!",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},".!":{"opcode":"data_itemoflist","next":null,"parent":".Z","inputs":{"INDEX":[3,"a/_",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},".#":{"opcode":"operator_add","next":null,"parent":"qS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".%":{"opcode":"operator_mod","next":null,"parent":".#","inputs":{"NUM1":[3,"a/`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".(":{"opcode":"data_addtolist","next":"a/{","parent":"IG","inputs":{"ITEM":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},".)":{"opcode":"motion_changeyby","next":null,"parent":"cq","inputs":{"DY":[3,"a/|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".*":{"opcode":"operator_lt","next":null,"parent":"cq","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,".+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".+":{"opcode":"operator_add","next":null,"parent":".*","inputs":{"NUM1":[3,".,",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},".,":{"opcode":"operator_mathop","next":null,"parent":".+","inputs":{"NUM":[3,"a/}",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".-":{"opcode":"operator_mod","next":null,"parent":"..","inputs":{"NUM1":[3,"a/~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"..":{"opcode":"operator_add","next":null,"parent":"./","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"./":{"opcode":"data_itemoflist","next":null,"parent":".:","inputs":{"INDEX":[3,"..",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".;":{"opcode":"operator_add","next":null,"parent":"qR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".=":{"opcode":"operator_mod","next":null,"parent":".;","inputs":{"NUM1":[3,"a:a",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".?":{"opcode":"operator_divide","next":null,"parent":".@","inputs":{"NUM1":[3,"a:b",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".[":{"opcode":"operator_not","next":null,"parent":"rb","inputs":{"OPERAND":[2,"a:c"]},"fields":{},"shadow":false,"topLevel":false},".]":{"opcode":"data_itemoflist","next":null,"parent":".^","inputs":{"INDEX":[3,"._",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},".^":{"opcode":"operator_mod","next":null,"parent":"fj","inputs":{"NUM1":[3,".]",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"._":{"opcode":"operator_add","next":null,"parent":".]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".{":{"opcode":"operator_divide","next":null,"parent":".|","inputs":{"NUM1":[3,"a:d",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".|":{"opcode":"operator_mathop","next":null,"parent":".}","inputs":{"NUM":[3,".{",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".}":{"opcode":"operator_add","next":null,"parent":".~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},".~":{"opcode":"data_itemoflist","next":null,"parent":"rc","inputs":{"INDEX":[3,".}",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"/a":{"opcode":"data_itemoflist","next":null,"parent":"/b","inputs":{"INDEX":[3,"a:e",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"/b":{"opcode":"operator_join","next":null,"parent":"rd","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"/a",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/c":{"opcode":"data_replaceitemoflist","next":null,"parent":"re","inputs":{"INDEX":[3,"/d",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"/e":{"opcode":"operator_multiply","next":null,"parent":"IH","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a:f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/f":{"opcode":"data_itemoflist","next":null,"parent":"R%","inputs":{"INDEX":[3,"a:g",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"/g":{"opcode":"operator_equals","next":null,"parent":"a?","inputs":{"OPERAND1":[3,"a:h",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"/h":{"opcode":"data_setvariableto","next":"cw","parent":"fk","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"/i":{"opcode":"operator_divide","next":null,"parent":"/j","inputs":{"NUM1":[3,"a:i",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"/j":{"opcode":"operator_mathop","next":null,"parent":"R(","inputs":{"NUM":[3,"/i",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/k":{"opcode":"operator_mod","next":null,"parent":"/l","inputs":{"NUM1":[3,"/m",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/l":{"opcode":"operator_add","next":null,"parent":"/n","inputs":{"NUM1":[3,"/k",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"/m":{"opcode":"operator_mathop","next":null,"parent":"/k","inputs":{"NUM":[3,"/o",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/p":{"opcode":"data_changevariableby","next":"rf","parent":"ff","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"/q":{"opcode":"data_changevariableby","next":"a:j","parent":"fl","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"/r":{"opcode":"operator_mod","next":null,"parent":",`","inputs":{"NUM1":[3,"a:k",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/s":{"opcode":"operator_multiply","next":null,"parent":"aq","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"/t",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/t":{"opcode":"operator_mod","next":null,"parent":"/s","inputs":{"NUM1":[3,"a:l",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/u":{"opcode":"operator_multiply","next":null,"parent":"rg","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"/v",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/v":{"opcode":"operator_mod","next":null,"parent":"/u","inputs":{"NUM1":[3,"a:m",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/w":{"opcode":"operator_multiply","next":null,"parent":"rh","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"/x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/x":{"opcode":"data_itemoflist","next":null,"parent":"/w","inputs":{"INDEX":[3,"a:n",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/y":{"opcode":"operator_mod","next":null,"parent":"/z","inputs":{"NUM1":[3,"a:o",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/":{"opcode":"control_if","next":"+","parent":"fm","inputs":{"CONDITION":[2,"/B"],"SUBSTACK":[2,"ri"]},"fields":{},"shadow":false,"topLevel":false,"comment":"/A"},"+":{"opcode":"control_if","next":"c","parent":"/","inputs":{"CONDITION":[2,",V"],"SUBSTACK":[2,",W"]},"fields":{},"shadow":false,"topLevel":false,"comment":"/C"},"/D":{"opcode":"data_itemoflist","next":null,"parent":"rj","inputs":{"INDEX":[3,"/E",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"/E":{"opcode":"operator_add","next":null,"parent":"/D","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,".@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/F":{"opcode":"data_setvariableto","next":"/G","parent":"rk","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"/G":{"opcode":"data_setvariableto","next":"/H","parent":"/F","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"/I":{"opcode":"operator_equals","next":null,"parent":"cx","inputs":{"OPERAND1":[3,"/J",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"/K":{"opcode":"operator_mathop","next":null,"parent":"rl","inputs":{"NUM":[3,"rm",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/L":{"opcode":"data_itemoflist","next":null,"parent":"rn","inputs":{"INDEX":[3,"/M",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/M":{"opcode":"operator_add","next":null,"parent":"/L","inputs":{"NUM1":[3,"a:p",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"/N":{"opcode":"control_incr_counter","next":"/O","parent":"ar","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/O":{"opcode":"data_changevariableby","next":"/P","parent":"/N","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"/P":{"opcode":"data_replaceitemoflist","next":null,"parent":"/O","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]],"ITEM":[3,"/Q",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/R":{"opcode":"operator_add","next":null,"parent":"ro","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"/S",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/S":{"opcode":"operator_mod","next":null,"parent":"/R","inputs":{"NUM1":[3,"a:q",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/T":{"opcode":"operator_equals","next":null,"parent":"fn","inputs":{"OPERAND1":[3,"/U",[10,""]],"OPERAND2":[3,[12,"chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"/V":{"opcode":"data_itemoflist","next":null,"parent":"/W","inputs":{"INDEX":[3,"a:r",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/X":{"opcode":"operator_mod","next":null,"parent":"/Y","inputs":{"NUM1":[3,"a:s",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/Y":{"opcode":"operator_equals","next":null,"parent":"cy","inputs":{"OPERAND1":[3,"/X",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"/Z":{"opcode":"data_addtolist","next":"/#","parent":"/!","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"/!":{"opcode":"data_deletealloflist","next":"/Z","parent":"/%","inputs":{},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"/#":{"opcode":"data_addtolist","next":"-Y","parent":"/Z","inputs":{"ITEM":[1,[10,"0xFFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"/(":{"opcode":"operator_add","next":null,"parent":"/)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"/*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/)":{"opcode":"data_itemoflist","next":null,"parent":"/+","inputs":{"INDEX":[3,"/(",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"/*":{"opcode":"operator_mod","next":null,"parent":"/(","inputs":{"NUM1":[3,"a:t",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/,":{"opcode":"procedures_definition","next":"/-","parent":null,"inputs":{"custom_block":[1,"a:u"]},"fields":{},"shadow":false,"topLevel":true,"x":8603,"y":2014},"/.":{"opcode":"operator_mod","next":null,"parent":"//","inputs":{"NUM1":[3,"a:v",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"//":{"opcode":"operator_add","next":null,"parent":"Zr","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"/.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/:":{"opcode":"operator_mod","next":null,"parent":"Zr","inputs":{"NUM1":[3,"/;",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"/;":{"opcode":"operator_multiply","next":null,"parent":"/:","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"-x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/=":{"opcode":"data_showvariable","next":"/@","parent":"/?","inputs":{},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"/?":{"opcode":"data_showvariable","next":"/=","parent":"/[","inputs":{},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"/@":{"opcode":"data_showvariable","next":"/]","parent":"/=","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"/[":{"opcode":"data_showvariable","next":"/?","parent":"/^","inputs":{},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"/_":{"opcode":"data_deletealloflist","next":"/{","parent":"/`","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"/`":{"opcode":"data_deletealloflist","next":"/_","parent":"-,","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"/|":{"opcode":"data_addtolist","next":"/~","parent":"/}","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":a":{"opcode":"operator_mod","next":null,"parent":"Zs","inputs":{"NUM1":[3,"a:w",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":b":{"opcode":"operator_equals","next":null,"parent":"ct","inputs":{"OPERAND1":[3,"a:x",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},":c":{"opcode":"operator_add","next":null,"parent":"Zt","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":d":{"opcode":"operator_mod","next":null,"parent":":c","inputs":{"NUM1":[3,"a:y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":e":{"opcode":"control_incr_counter","next":"Zu","parent":":f","inputs":{},"fields":{},"shadow":false,"topLevel":false},":f":{"opcode":"data_changevariableby","next":":e","parent":"Zv","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},":g":{"opcode":"operator_mod","next":null,"parent":":h","inputs":{"NUM1":[3,"a:z",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":h":{"opcode":"operator_lt","next":null,"parent":"q]","inputs":{"OPERAND1":[3,":g",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},",N":{"opcode":"operator_equals","next":null,"parent":"cj","inputs":{"OPERAND1":[3,":i",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},":j":{"opcode":"operator_multiply","next":null,"parent":"Zw","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,":k",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":k":{"opcode":"operator_mod","next":null,"parent":":j","inputs":{"NUM1":[3,"a:A",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":l":{"opcode":"operator_mod","next":null,"parent":"Zx","inputs":{"NUM1":[3,":m",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},":m":{"opcode":"operator_mathop","next":null,"parent":":l","inputs":{"NUM":[3,"/+",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/+":{"opcode":"operator_divide","next":null,"parent":":m","inputs":{"NUM1":[3,"/)",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":n":{"opcode":"operator_divide","next":null,"parent":":o","inputs":{"NUM1":[3,"R)",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},":o":{"opcode":"operator_mathop","next":null,"parent":"Zy","inputs":{"NUM":[3,":n",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},":p":{"opcode":"operator_equals","next":null,"parent":"Zz","inputs":{"OPERAND1":[3,"a:B",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},":q":{"opcode":"operator_equals","next":null,"parent":"ZA","inputs":{"OPERAND1":[3,"a:C",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},":r":{"opcode":"operator_mathop","next":null,"parent":"rp","inputs":{"NUM":[3,"rq",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},":s":{"opcode":"data_addtolist","next":":u","parent":":t","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":u":{"opcode":"data_addtolist","next":"b~","parent":":s","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":v":{"opcode":"data_addtolist","next":":x","parent":":w","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":x":{"opcode":"data_addtolist","next":":y","parent":":v","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":z":{"opcode":"operator_equals","next":null,"parent":"II","inputs":{"OPERAND1":[3,"a:D",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},",P":{"opcode":"operator_equals","next":null,"parent":"ck","inputs":{"OPERAND1":[3,",.",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},":A":{"opcode":"operator_mod","next":null,"parent":":B","inputs":{"NUM1":[3,"a:E",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":B":{"opcode":"operator_equals","next":null,"parent":":","inputs":{"OPERAND1":[3,":A",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},":C":{"opcode":"data_setvariableto","next":":D","parent":"-E","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},":E":{"opcode":"data_setvariableto","next":"a:F","parent":"q+","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},".c":{"opcode":"operator_lt","next":null,"parent":"IJ","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,".b",[10,""]]},"fields":{},"shadow":false,"topLevel":false},":F":{"opcode":"data_itemoflist","next":null,"parent":":G","inputs":{"INDEX":[3,":H",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":G":{"opcode":"operator_multiply","next":null,"parent":"rr","inputs":{"NUM1":[3,":F",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"cY":{"opcode":"control_if","next":"cZ","parent":"d","inputs":{"CONDITION":[2,"rs"],"SUBSTACK":[2,"fo"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aM"},"cZ":{"opcode":"control_if","next":"f","parent":"cY","inputs":{"CONDITION":[2,":I"],"SUBSTACK":[2,":J"]},"fields":{},"shadow":false,"topLevel":false,"comment":"e%"},"c!":{"opcode":"control_if","next":"j","parent":"f","inputs":{"CONDITION":[2,":K"],"SUBSTACK":[2,"fp"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a:"},"c*":{"opcode":"data_addtolist","next":":w","parent":":L","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bR"},"c+":{"opcode":"data_addtolist","next":":M","parent":":y","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bS"},"c:":{"opcode":"control_if","next":"as","parent":"fq","inputs":{"CONDITION":[2,":N"],"SUBSTACK":[2,"rt"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a:G"},":O":{"opcode":"operator_mathop","next":null,"parent":":P","inputs":{"NUM":[3,":Q",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},":P":{"opcode":"operator_add","next":null,"parent":":R","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":O",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":Q":{"opcode":"operator_divide","next":null,"parent":":O","inputs":{"NUM1":[3,"a:H",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":S":{"opcode":"operator_add","next":null,"parent":":T","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":U",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":T":{"opcode":"data_itemoflist","next":null,"parent":"ru","inputs":{"INDEX":[3,":S",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},":U":{"opcode":"operator_mod","next":null,"parent":":S","inputs":{"NUM1":[3,"a:I",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":V":{"opcode":"data_replaceitemoflist","next":"a:J","parent":"cz","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},":W":{"opcode":"operator_equals","next":null,"parent":"fr","inputs":{"OPERAND1":[3,"a:K",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},":X":{"opcode":"operator_multiply","next":null,"parent":":Y","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,"a:L",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":Y":{"opcode":"operator_mathop","next":null,"parent":":Z","inputs":{"NUM":[3,":X",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},":!":{"opcode":"looks_say","next":"R*","parent":"a:M","inputs":{"MESSAGE":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},":#":{"opcode":"operator_mod","next":null,"parent":":%","inputs":{"NUM1":[3,"R+",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},":%":{"opcode":"operator_multiply","next":null,"parent":"rv","inputs":{"NUM1":[3,":#",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},":(":{"opcode":"data_addtolist","next":":*","parent":":)","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":)":{"opcode":"data_addtolist","next":":(","parent":"L","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":*":{"opcode":"data_addtolist","next":":+","parent":":(","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":+":{"opcode":"data_addtolist","next":"M","parent":":*","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":,":{"opcode":"data_changevariableby","next":"rw","parent":"aR","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},":-":{"opcode":"operator_mod","next":null,"parent":":.","inputs":{"NUM1":[3,"a:N",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":.":{"opcode":"operator_equals","next":null,"parent":"rx","inputs":{"OPERAND1":[3,":-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},":/":{"opcode":"data_itemoflist","next":null,"parent":"ry","inputs":{"INDEX":[3,"::",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"::":{"opcode":"operator_add","next":null,"parent":":/","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,":;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":;":{"opcode":"operator_mod","next":null,"parent":"::","inputs":{"NUM1":[3,"a:O",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},":=":{"opcode":"data_addtolist","next":"N","parent":":?","inputs":{"ITEM":[1,[10,"0x40"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":?":{"opcode":"data_addtolist","next":":=","parent":"R,","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":@":{"opcode":"operator_equals","next":null,"parent":"rz","inputs":{"OPERAND1":[3,":[",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},":[":{"opcode":"data_itemoflist","next":null,"parent":":@","inputs":{"INDEX":[3,":]",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},":]":{"opcode":"operator_add","next":null,"parent":":[","inputs":{"NUM1":[3,"R-",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},":^":{"opcode":"operator_add","next":null,"parent":":_","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},":_":{"opcode":"data_itemoflist","next":null,"parent":":`","inputs":{"INDEX":[3,":^",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},":{":{"opcode":"data_addtolist","next":"O","parent":":|","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":}":{"opcode":"data_addtolist","next":":~","parent":"N","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";a":{"opcode":"operator_add","next":null,"parent":"rA","inputs":{"NUM1":[3,"a:P",[4,"0"]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},";b":{"opcode":"operator_add","next":null,"parent":"R/","inputs":{"NUM1":[3,";c",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";d":{"opcode":"data_setvariableto","next":"fs","parent":"rB","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},";e":{"opcode":"operator_equals","next":null,"parent":"c;","inputs":{"OPERAND1":[3,"a:Q",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},",C":{"opcode":"operator_lt","next":null,"parent":"cb","inputs":{"OPERAND1":[3,"a:R",[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},";f":{"opcode":"operator_add","next":null,"parent":";g","inputs":{"NUM1":[3,"a:S",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";g":{"opcode":"data_itemoflist","next":null,"parent":";h","inputs":{"INDEX":[3,";f",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},";h":{"opcode":"pen_setPenColorToColor","next":null,"parent":";i","inputs":{"COLOR":[3,";g",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},";j":{"opcode":"data_itemoflist","next":null,"parent":"qR","inputs":{"INDEX":[3,";k",[7,"0"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},";k":{"opcode":"operator_add","next":null,"parent":";j","inputs":{"NUM1":[3,"qZ",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";l":{"opcode":"data_addtolist","next":";n","parent":";m","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";m":{"opcode":"data_addtolist","next":";l","parent":";o","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";n":{"opcode":"data_addtolist","next":"(","parent":";l","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";o":{"opcode":"data_addtolist","next":";m","parent":"ca","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";p":{"opcode":"data_setvariableto","next":"rC","parent":";q","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},";q":{"opcode":"data_setvariableto","next":";p","parent":"ft","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},";r":{"opcode":"data_addtolist","next":";t","parent":";s","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";s":{"opcode":"data_addtolist","next":";r","parent":"(","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";u":{"opcode":"data_addtolist","next":";w","parent":";v","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";x":{"opcode":"data_addtolist","next":";y","parent":"ak","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/B":{"opcode":"operator_lt","next":null,"parent":"/","inputs":{"OPERAND1":[3,"a:T",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},",^":{"opcode":"operator_equals","next":null,"parent":"T","inputs":{"OPERAND1":[3,",]",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},",~":{"opcode":"operator_mod","next":null,"parent":",}","inputs":{"NUM1":[3,";z",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},";z":{"opcode":"operator_add","next":null,"parent":",~","inputs":{"NUM1":[3,"a:U",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";A":{"opcode":"operator_equals","next":null,"parent":"f","inputs":{"OPERAND1":[3,"a:V",[10,""]],"OPERAND2":[1,[10,"0xEE"]]},"fields":{},"shadow":false,"topLevel":false},";B":{"opcode":"operator_equals","next":null,"parent":"fk","inputs":{"OPERAND1":[3,"a:W",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},";C":{"opcode":"operator_lt","next":null,"parent":"fb","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"a:X",[10,""]]},"fields":{},"shadow":false,"topLevel":false},";D":{"opcode":"operator_equals","next":null,"parent":"h","inputs":{"OPERAND1":[3,"a:Y",[10,""]],"OPERAND2":[1,[10,"0xF1"]]},"fields":{},"shadow":false,"topLevel":false},";E":{"opcode":"data_setvariableto","next":"a:Z","parent":"h","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},";F":{"opcode":"data_hidevariable","next":";G","parent":"a:!","inputs":{},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},";G":{"opcode":"data_hidevariable","next":";H","parent":";F","inputs":{},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},";H":{"opcode":"data_hidevariable","next":";I","parent":";G","inputs":{},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},";I":{"opcode":"data_hidevariable","next":";J","parent":";H","inputs":{},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},";J":{"opcode":"data_hidevariable","next":";K","parent":";I","inputs":{},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},";K":{"opcode":"data_hidevariable","next":";L","parent":";J","inputs":{},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},";L":{"opcode":"data_setvariableto","next":";M","parent":";K","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"]},"shadow":false,"topLevel":false},";M":{"opcode":"data_hidelist","next":";N","parent":";L","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},";N":{"opcode":"data_hidevariable","next":";O","parent":";M","inputs":{},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},";O":{"opcode":"data_setvariableto","next":";P","parent":";N","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},";Q":{"opcode":"operator_round","next":null,"parent":"rD","inputs":{"NUM":[3,";R",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"R:":{"opcode":"operator_lt","next":null,"parent":"e|","inputs":{"OPERAND1":[3,"a:#",[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"R;":{"opcode":"operator_equals","next":null,"parent":"fu","inputs":{"OPERAND1":[3,"a:%",[10,""]],"OPERAND2":[1,[10,"0x9e"]]},"fields":{},"shadow":false,"topLevel":false},"R=":{"opcode":"operator_add","next":null,"parent":"fv","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R?":{"opcode":"operator_mod","next":null,"parent":"R=","inputs":{"NUM1":[3,"a:(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"R@":{"opcode":"operator_mathop","next":null,"parent":"rE","inputs":{"NUM":[3,"a:)",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"R[":{"opcode":"operator_add","next":null,"parent":"R]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R]":{"opcode":"data_itemoflist","next":null,"parent":"rF","inputs":{"INDEX":[3,"R[",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"R^":{"opcode":"operator_mod","next":null,"parent":"R[","inputs":{"NUM1":[3,"a:*",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"R_":{"opcode":"operator_add","next":null,"parent":"R`","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R|":{"opcode":"operator_add","next":null,"parent":"R-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"R~":{"opcode":"data_deletealloflist","next":"Sb","parent":"Sa","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Sa":{"opcode":"data_deletealloflist","next":"R~","parent":"Sc","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"Sb":{"opcode":"data_deletealloflist","next":"b}","parent":"R~","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"Sc":{"opcode":"data_hidelist","next":"Sa","parent":"Sd","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Sd":{"opcode":"data_hidelist","next":"Sc","parent":"Se","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"Sf":{"opcode":"operator_multiply","next":null,"parent":"rG","inputs":{"NUM1":[3,"a:+",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Sg":{"opcode":"operator_not","next":null,"parent":"rH","inputs":{"OPERAND":[2,"Sh"]},"fields":{},"shadow":false,"topLevel":false},"Sh":{"opcode":"operator_equals","next":null,"parent":"Sg","inputs":{"OPERAND1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]],"OPERAND2":[3,"a:,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Si":{"opcode":"operator_divide","next":null,"parent":"R.","inputs":{"NUM1":[3,"a:-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Sj":{"opcode":"pen_penDown","next":"rI","parent":"Sk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Sl":{"opcode":"operator_add","next":null,"parent":"Sm","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Sn",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Sm":{"opcode":"data_itemoflist","next":null,"parent":"So","inputs":{"INDEX":[3,"Sl",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Sn":{"opcode":"operator_mathop","next":null,"parent":"Sl","inputs":{"NUM":[3,"Sp",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"So":{"opcode":"operator_add","next":null,"parent":"Sq","inputs":{"NUM1":[3,"Sm",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sp":{"opcode":"operator_divide","next":null,"parent":"Sn","inputs":{"NUM1":[3,"a:.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Sr":{"opcode":"data_addtolist","next":"Ss","parent":"R!","inputs":{"ITEM":[1,[10,"0x00FF00"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"St":{"opcode":"operator_lt","next":null,"parent":"q-","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"Su",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Su":{"opcode":"data_itemoflist","next":null,"parent":"St","inputs":{"INDEX":[3,"a:/",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Sv":{"opcode":"operator_mod","next":null,"parent":"Sw","inputs":{"NUM1":[3,"a::",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";S":{"opcode":"data_deletealloflist","next":";U","parent":";T","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";T":{"opcode":"data_deletealloflist","next":";S","parent":";V","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},";U":{"opcode":"data_deletealloflist","next":";W","parent":";S","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},";X":{"opcode":"data_setvariableto","next":";V","parent":"R*","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},";V":{"opcode":"data_hidevariable","next":";T","parent":";X","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},";W":{"opcode":"data_deletealloflist","next":";Y","parent":";U","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},";Z":{"opcode":"data_setvariableto","next":";!","parent":"fw","inputs":{"VALUE":[1,[10,"SCHIP+HPS"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},";!":{"opcode":"data_setvariableto","next":";#","parent":";Z","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},";#":{"opcode":"data_setvariableto","next":"Sx","parent":";!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"Sx":{"opcode":"data_setvariableto","next":"a:;","parent":";#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"Sy":{"opcode":"operator_mod","next":null,"parent":"rJ","inputs":{"NUM1":[3,"a:=",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Sz":{"opcode":"operator_divide","next":null,"parent":"R{","inputs":{"NUM1":[3,"a:?",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"SA":{"opcode":"data_setvariableto","next":null,"parent":"fx","inputs":{"VALUE":[3,"SB",[10,""]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"SB":{"opcode":"operator_add","next":null,"parent":"SA","inputs":{"NUM1":[3,"SC",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"SC":{"opcode":"operator_mod","next":null,"parent":"SB","inputs":{"NUM1":[3,"a:@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"SD":{"opcode":"operator_add","next":null,"parent":"q!","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"SE":{"opcode":"data_setvariableto","next":null,"parent":"fr","inputs":{"VALUE":[3,"a:[",[10,""]]},"fields":{"VARIABLE":["chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"]},"shadow":false,"topLevel":false},"SF":{"opcode":"operator_multiply","next":null,"parent":"rL","inputs":{"NUM1":[3,"a:]",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"SG":{"opcode":"data_replaceitemoflist","next":null,"parent":"SH","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]],"ITEM":[3,"R%",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"SH":{"opcode":"data_changevariableby","next":"SG","parent":"SI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"SJ":{"opcode":"operator_mod","next":null,"parent":"rM","inputs":{"NUM1":[3,"a:^",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"SK":{"opcode":"data_changevariableby","next":null,"parent":"fy","inputs":{"VALUE":[3,"SL",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"SL":{"opcode":"operator_subtract","next":null,"parent":"SK","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"SM",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"SM":{"opcode":"operator_multiply","next":null,"parent":"SL","inputs":{"NUM1":[3,"a:_",[4,""]],"NUM2":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"SN":{"opcode":"data_itemoflist","next":null,"parent":"rN","inputs":{"INDEX":[3,"a:`",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"SO":{"opcode":"data_setvariableto","next":"SP","parent":"m","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"SP":{"opcode":"procedures_call","next":"a:{","parent":"SO","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"SQ":{"opcode":"event_broadcast","next":"a:|","parent":"fz","inputs":{"BROADCAST_INPUT":[1,[11,"sound.updatech8buffer","#z59?3=sivtfq@){KBjG"]]},"fields":{},"shadow":false,"topLevel":false},"SR":{"opcode":"operator_mathop","next":null,"parent":"rO","inputs":{"NUM":[3,"RZ",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"SS":{"opcode":"operator_mathop","next":null,"parent":"ST","inputs":{"NUM":[3,"SU",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},";%":{"opcode":"operator_equals","next":null,"parent":"rP","inputs":{"OPERAND1":[3,"a:}",[10,""]],"OPERAND2":[1,[10,"0xe0"]]},"fields":{},"shadow":false,"topLevel":false},";(":{"opcode":"operator_multiply","next":null,"parent":"rQ","inputs":{"NUM1":[3,"a:~",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},";)":{"opcode":"operator_multiply","next":null,"parent":"rR","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,";*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";*":{"opcode":"data_itemoflist","next":null,"parent":";)","inputs":{"INDEX":[3,"a;a",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";+":{"opcode":"operator_mod","next":null,"parent":"Zx","inputs":{"NUM1":[3,";,",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},";,":{"opcode":"operator_mathop","next":null,"parent":";+","inputs":{"NUM":[3,";-",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},";.":{"opcode":"operator_lt","next":null,"parent":"fm","inputs":{"OPERAND1":[3,"a;b",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},";/":{"opcode":"operator_lt","next":null,"parent":"fA","inputs":{"OPERAND1":[3,"a;c",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},";:":{"opcode":"operator_equals","next":null,"parent":"aR","inputs":{"OPERAND1":[3,"a;d",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"SV":{"opcode":"data_replaceitemoflist","next":"fd","parent":"fg","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"SW":{"opcode":"operator_equals","next":null,"parent":"fB","inputs":{"OPERAND1":[3,"SX",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"SX":{"opcode":"operator_mod","next":null,"parent":"SW","inputs":{"NUM1":[3,"a;e",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"SY":{"opcode":"data_itemoflist","next":null,"parent":"rS","inputs":{"INDEX":[3,"SZ",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"S!":{"opcode":"data_itemoflist","next":null,"parent":"rS","inputs":{"INDEX":[3,"S#",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"S#":{"opcode":"operator_add","next":null,"parent":"S!","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"S%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"S%":{"opcode":"operator_mathop","next":null,"parent":"S#","inputs":{"NUM":[3,"S(",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"S(":{"opcode":"operator_divide","next":null,"parent":"S%","inputs":{"NUM1":[3,"a;f",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"S)":{"opcode":"data_setvariableto","next":"rT","parent":"Q","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"S*":{"opcode":"control_stop","next":"a;g","parent":"S+","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"S,":{"opcode":"data_setvariableto","next":null,"parent":"a;h","inputs":{"VALUE":[3,"S-",[10,""]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"S-":{"opcode":"operator_mod","next":null,"parent":"S,","inputs":{"NUM1":[3,"a;i",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"S.":{"opcode":"data_setvariableto","next":null,"parent":"a;j","inputs":{"VALUE":[3,"S/",[10,""]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"S/":{"opcode":"operator_mod","next":null,"parent":"S.","inputs":{"NUM1":[3,"a;k",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"S:":{"opcode":"data_setvariableto","next":null,"parent":"a;l","inputs":{"VALUE":[3,"S;",[10,""]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"S;":{"opcode":"operator_mod","next":null,"parent":"S:","inputs":{"NUM1":[3,"a;m",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"S=":{"opcode":"data_setvariableto","next":null,"parent":"a;n","inputs":{"VALUE":[3,"S?",[10,""]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"S?":{"opcode":"operator_mod","next":null,"parent":"S=","inputs":{"NUM1":[3,"a;o",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"S@":{"opcode":"pen_clear","next":"S[","parent":"c=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"S]":{"opcode":"operator_equals","next":null,"parent":"rq","inputs":{"OPERAND1":[3,"a;p",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"S^":{"opcode":"data_addtolist","next":null,"parent":"rU","inputs":{"ITEM":[3,"S_",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"S_":{"opcode":"operator_mathop","next":null,"parent":"S^","inputs":{"NUM":[3,"IK",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"S`":{"opcode":"operator_mathop","next":null,"parent":"rU","inputs":{"NUM":[3,"IL",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"S{":{"opcode":"operator_equals","next":null,"parent":"IL","inputs":{"OPERAND1":[3,"a;q",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"S|":{"opcode":"operator_multiply","next":null,"parent":"IG","inputs":{"NUM1":[3,"a;r",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"S}":{"opcode":"operator_divide","next":null,"parent":"S~","inputs":{"NUM1":[3,"a;s",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"S~":{"opcode":"operator_mathop","next":null,"parent":"Ta","inputs":{"NUM":[3,"S}",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ta":{"opcode":"operator_add","next":null,"parent":"R+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"S~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Tb":{"opcode":"data_setvariableto","next":"IM","parent":"Iy","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"Tc":{"opcode":"data_itemoflist","next":null,"parent":"rN","inputs":{"INDEX":[3,"a;t",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Td":{"opcode":"data_changevariableby","next":"a;u","parent":"fi","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"Te":{"opcode":"data_setvariableto","next":"IN","parent":"Tf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"Tf":{"opcode":"data_setvariableto","next":"Te","parent":";","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"Tg":{"opcode":"operator_join","next":null,"parent":"Th","inputs":{"STRING1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]],"STRING2":[3,"Ti",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Th":{"opcode":"operator_join","next":null,"parent":"Tj","inputs":{"STRING1":[1,[10," I: "]],"STRING2":[3,"Tg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Tk":{"opcode":"data_setvariableto","next":"Tl","parent":"fC","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"Tl":{"opcode":"data_setvariableto","next":"fD","parent":"Tk","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"Tm":{"opcode":"operator_round","next":null,"parent":"IO","inputs":{"NUM":[3,"a;v",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Tn":{"opcode":"data_addtolist","next":"To","parent":"Ss","inputs":{"ITEM":[1,[10,"0xFFFF00"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Tp":{"opcode":"data_setvariableto","next":"Tq","parent":"aS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"Tr":{"opcode":"data_replaceitemoflist","next":"Ts","parent":"fE","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Tt":{"opcode":"data_itemoflist","next":null,"parent":"Tu","inputs":{"INDEX":[3,"a;w",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Tu":{"opcode":"operator_equals","next":null,"parent":"IJ","inputs":{"OPERAND1":[3,"Tt",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Tv":{"opcode":"data_itemoflist","next":null,"parent":"IP","inputs":{"INDEX":[3,";;",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},";;":{"opcode":"operator_add","next":null,"parent":"Tv","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";=":{"opcode":"operator_mod","next":null,"parent":";;","inputs":{"NUM1":[3,"a;x",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";?":{"opcode":"operator_mod","next":null,"parent":";@","inputs":{"NUM1":[3,"a;y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";@":{"opcode":"operator_add","next":null,"parent":"fF","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";[":{"opcode":"operator_mod","next":null,"parent":";]","inputs":{"NUM1":[3,"a;z",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";^":{"opcode":"operator_mod","next":null,"parent":";_","inputs":{"NUM1":[3,"a;A",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";`":{"opcode":"operator_multiply","next":null,"parent":"IQ","inputs":{"NUM1":[1,[4,"5"]],"NUM2":[3,";{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Tw":{"opcode":"data_addtolist","next":"rV","parent":"Tx","inputs":{"ITEM":[1,[10,"0x008888"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Ty":{"opcode":"operator_mod","next":null,"parent":"Tz","inputs":{"NUM1":[3,"a;B",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Tz":{"opcode":"operator_add","next":null,"parent":"TA","inputs":{"NUM1":[3,"Ty",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"TB":{"opcode":"data_addtolist","next":"L","parent":"TC","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"TD":{"opcode":"data_setvariableto","next":"TF","parent":"TE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},"TE":{"opcode":"data_setvariableto","next":"TD","parent":"TG","inputs":{"VALUE":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"TF":{"opcode":"data_showvariable","next":"Se","parent":"TD","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"TG":{"opcode":"procedures_definition","next":"TE","parent":null,"inputs":{"custom_block":[1,"a;C"]},"fields":{},"shadow":false,"topLevel":true,"x":12045,"y":194},"TH":{"opcode":"operator_add","next":null,"parent":"TI","inputs":{"NUM1":[3,"R(",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},";|":{"opcode":"operator_mod","next":null,"parent":";}","inputs":{"NUM1":[3,"a;D",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},";}":{"opcode":"operator_multiply","next":null,"parent":"rW","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,";|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RX":{"opcode":"operator_mod","next":null,"parent":",#","inputs":{"NUM1":[3,"a;E",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"TJ":{"opcode":"data_changevariableby","next":"a;F","parent":"fx","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"R#":{"opcode":"operator_lt","next":null,"parent":")","inputs":{"OPERAND1":[3,"a;G",[10,""]],"OPERAND2":[1,[10,"176"]]},"fields":{},"shadow":false,"topLevel":false},"TK":{"opcode":"operator_equals","next":null,"parent":"aT","inputs":{"OPERAND1":[3,"a;H",[10,""]],"OPERAND2":[1,[10,"0x21"]]},"fields":{},"shadow":false,"topLevel":false},"TL":{"opcode":"data_itemoflist","next":null,"parent":"rX","inputs":{"INDEX":[3,"a;I",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"TM":{"opcode":"data_deletealloflist","next":"rY","parent":"fG","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"TN":{"opcode":"operator_mod","next":null,"parent":"TO","inputs":{"NUM1":[3,"a;J",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"TO":{"opcode":"operator_multiply","next":null,"parent":"rZ","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"TN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TP":{"opcode":"operator_gt","next":null,"parent":"cw","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a;K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TQ":{"opcode":"pen_penUp","next":"TR","parent":"rI","inputs":{},"fields":{},"shadow":false,"topLevel":false},"TS":{"opcode":"operator_equals","next":null,"parent":"o","inputs":{"OPERAND1":[3,"a;L",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"TT":{"opcode":"operator_not","next":null,"parent":"fH","inputs":{"OPERAND":[2,"TU"]},"fields":{},"shadow":false,"topLevel":false},"TU":{"opcode":"operator_equals","next":null,"parent":"TT","inputs":{"OPERAND1":[3,"a;M",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TR":{"opcode":"motion_changeyby","next":null,"parent":"TQ","inputs":{"DY":[3,"a;N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"TV":{"opcode":"procedures_definition","next":"TW","parent":null,"inputs":{"custom_block":[1,"a;O"]},"fields":{},"shadow":false,"topLevel":true,"x":9358,"y":74},"TW":{"opcode":"data_deletealloflist","next":"r!","parent":"TV","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"TX":{"opcode":"procedures_definition","next":"TY","parent":null,"inputs":{"custom_block":[1,"TZ"]},"fields":{},"shadow":false,"topLevel":true,"x":4340,"y":1695},"TY":{"opcode":"data_setvariableto","next":null,"parent":"TX","inputs":{"VALUE":[3,"r#",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"TZ":{"opcode":"procedures_prototype","next":null,"parent":"TX","inputs":{"hW9qrsR8.:i`r8E},#u7":[1,"a;P"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Convert %s to hex","argumentids":"[\"hW9qrsR8.:i`r8E},#u7\"]","argumentnames":"[\"Decimal Number\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"T!":{"opcode":"data_changevariableby","next":"a;Q","parent":"r%","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"T#":{"opcode":"data_itemoflist","next":null,"parent":"r%","inputs":{"INDEX":[3,"T%",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"T%":{"opcode":"operator_add","next":null,"parent":"T#","inputs":{"NUM1":[3,"T(",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T(":{"opcode":"operator_mod","next":null,"parent":"T%","inputs":{"NUM1":[3,"a;R",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"T)":{"opcode":"operator_equals","next":null,"parent":"bT","inputs":{"OPERAND1":[3,"T*",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"T*":{"opcode":"operator_mod","next":null,"parent":"T)","inputs":{"NUM1":[3,"a;S",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"T+":{"opcode":"operator_add","next":null,"parent":"r(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"T,",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T,":{"opcode":"operator_mathop","next":null,"parent":"T+","inputs":{"NUM":[3,"r)",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"T-":{"opcode":"operator_mod","next":null,"parent":"r)","inputs":{"NUM1":[3,"a;T",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"T.":{"opcode":"pen_clear","next":"T:","parent":"T/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"T:":{"opcode":"data_setvariableto","next":"a;U","parent":"T.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"T;":{"opcode":"data_deletealloflist","next":"T=","parent":"a;V","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"T?":{"opcode":"data_deletealloflist","next":"T[","parent":"T@","inputs":{},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"T]":{"opcode":"data_deletealloflist","next":"T^","parent":"T[","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"T[":{"opcode":"data_deletealloflist","next":"T]","parent":"T?","inputs":{},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"T^":{"opcode":"data_setvariableto","next":"T_","parent":"T]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"]},"shadow":false,"topLevel":false},"T_":{"opcode":"data_setvariableto","next":"T`","parent":"T^","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"T`":{"opcode":"data_setvariableto","next":"T{","parent":"T_","inputs":{"VALUE":[1,[10,"120"]]},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"T{":{"opcode":"data_setvariableto","next":"T|","parent":"T`","inputs":{"VALUE":[1,[10,"Octo"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"T}":{"opcode":"operator_add","next":null,"parent":"T~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Ua",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"T~":{"opcode":"data_itemoflist","next":null,"parent":"Ub","inputs":{"INDEX":[3,"T}",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Ua":{"opcode":"operator_mod","next":null,"parent":"T}","inputs":{"NUM1":[3,"a;W",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ub":{"opcode":"operator_add","next":null,"parent":"Uc","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,"T~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Uc":{"opcode":"operator_mod","next":null,"parent":"r*","inputs":{"NUM1":[3,"Ub",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Ud":{"opcode":"operator_lt","next":null,"parent":"c","inputs":{"OPERAND1":[3,"a;X",[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Ue":{"opcode":"data_addtolist","next":"Ug","parent":"Uf","inputs":{"ITEM":[1,[10,"0xFF00FF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Ug":{"opcode":"data_addtolist","next":"Tx","parent":"Ue","inputs":{"ITEM":[1,[10,"0x00FFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Uh":{"opcode":"data_itemoflist","next":null,"parent":"Ui","inputs":{"INDEX":[3,"a;Y",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Ui":{"opcode":"operator_equals","next":null,"parent":"r+","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"Uh",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Uj":{"opcode":"data_replaceitemoflist","next":"a;Z","parent":"fI","inputs":{"INDEX":[1,[7,"256"]],"ITEM":[1,[10,"0x00FFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Uk":{"opcode":"data_addtolist","next":"Um","parent":"Ul","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Ul":{"opcode":"data_addtolist","next":"Uk","parent":"Un","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Um":{"opcode":"data_addtolist","next":"Uo","parent":"Uk","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Un":{"opcode":"data_addtolist","next":"Ul","parent":"Up","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Up":{"opcode":"data_addtolist","next":"Un","parent":"Uq","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Ur":{"opcode":"pen_penUp","next":"a;!","parent":"c/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Us":{"opcode":"operator_divide","next":null,"parent":"c/","inputs":{"NUM1":[3,"a;#",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ut":{"opcode":"data_addtolist","next":"Uu","parent":"b~","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Uu":{"opcode":"data_addtolist","next":"RY","parent":"Ut","inputs":{"ITEM":[1,[10,"0x60"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Uv":{"opcode":"operator_subtract","next":null,"parent":";~","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"=a",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=a":{"opcode":"operator_multiply","next":null,"parent":"Uv","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"=b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=c":{"opcode":"event_broadcastandwait","next":"fJ","parent":"g","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"=d":{"opcode":"control_wait","next":"=e","parent":"fJ","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=e":{"opcode":"control_forever","next":null,"parent":"=d","inputs":{"SUBSTACK":[2,"=f"]},"fields":{},"shadow":false,"topLevel":false},"=g":{"opcode":"procedures_call","next":"fK","parent":"c?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.get_keyboard","argumentids":"[]","warp":"true"}},"=h":{"opcode":"operator_mod","next":null,"parent":"=i","inputs":{"NUM1":[3,"a;%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=i":{"opcode":"operator_lt","next":null,"parent":"r,","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,"=h",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=j":{"opcode":"data_setvariableto","next":"r-","parent":"=k","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"=l":{"opcode":"operator_join","next":null,"parent":"Ti","inputs":{"STRING1":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]],"STRING2":[3,"r.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=m":{"opcode":"operator_mathop","next":null,"parent":"r/","inputs":{"NUM":[3,"=n",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"=n":{"opcode":"operator_divide","next":null,"parent":"=m","inputs":{"NUM1":[3,"=o",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Uw":{"opcode":"data_setvariableto","next":null,"parent":"c@","inputs":{"VALUE":[3,"R/",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"Ux":{"opcode":"data_itemoflist","next":null,"parent":"r:","inputs":{"INDEX":[3,"Uy",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Uz":{"opcode":"operator_equals","next":null,"parent":"a@","inputs":{"OPERAND1":[3,"a;(",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"UA":{"opcode":"operator_add","next":null,"parent":"R)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"UB",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UC":{"opcode":"operator_join","next":null,"parent":"r;","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"UD",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"UD":{"opcode":"data_itemoflist","next":null,"parent":"UC","inputs":{"INDEX":[3,"a;)",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"UE":{"opcode":"data_itemoflist","next":null,"parent":"at","inputs":{"INDEX":[3,"a;*",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"UF":{"opcode":"operator_mod","next":null,"parent":"UG","inputs":{"NUM1":[3,"a;+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"UG":{"opcode":"operator_add","next":null,"parent":"fL","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"UF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UH":{"opcode":"data_addtolist","next":"R,","parent":"M","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"UI":{"opcode":"operator_mathop","next":null,"parent":"r=","inputs":{"NUM":[3,"a;,",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"UJ":{"opcode":"data_deletealloflist","next":"r?","parent":"rY","inputs":{},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"RV":{"opcode":"operator_equals","next":null,"parent":"cg","inputs":{"OPERAND1":[3,"UK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UK":{"opcode":"operator_mod","next":null,"parent":"RV","inputs":{"NUM1":[3,"a;-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"r@":{"opcode":"data_setvariableto","next":"c[","parent":"UL","inputs":{"VALUE":[3,"a;.",[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"UL":{"opcode":"data_setvariableto","next":"r@","parent":"cw","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"UM":{"opcode":"data_itemoflist","next":null,"parent":"r[","inputs":{"INDEX":[3,"UN",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"UN":{"opcode":"operator_add","next":null,"parent":"UM","inputs":{"NUM1":[3,"a;/",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UO":{"opcode":"operator_equals","next":null,"parent":"c]","inputs":{"OPERAND1":[3,"a;:",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UP":{"opcode":"operator_mathop","next":null,"parent":"r]","inputs":{"NUM":[3,"r^",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"UQ":{"opcode":"operator_equals","next":null,"parent":"r^","inputs":{"OPERAND1":[3,"a;;",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UR":{"opcode":"operator_mathop","next":null,"parent":"r_","inputs":{"NUM":[3,"q:",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"US":{"opcode":"operator_equals","next":null,"parent":"fM","inputs":{"OPERAND1":[3,"a;=",[10,""]],"OPERAND2":[1,[10,"0x00"]]},"fields":{},"shadow":false,"topLevel":false},"UT":{"opcode":"operator_lt","next":null,"parent":"r`","inputs":{"OPERAND1":[1,[10,"191"]],"OPERAND2":[3,"a;?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"UU":{"opcode":"operator_lt","next":null,"parent":"r`","inputs":{"OPERAND1":[3,"a;@",[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},"UV":{"opcode":"data_setvariableto","next":"r{","parent":"fN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"UW":{"opcode":"operator_mod","next":null,"parent":"r{","inputs":{"NUM1":[3,"a;[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"UX":{"opcode":"data_changevariableby","next":"a;]","parent":"fO","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"UY":{"opcode":"operator_equals","next":null,"parent":"fP","inputs":{"OPERAND1":[3,"a;^",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UZ":{"opcode":"data_insertatlist","next":"a;_","parent":"fP","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"U!":{"opcode":"operator_lt","next":null,"parent":"fQ","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"a;`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"U#":{"opcode":"data_insertatlist","next":"a;{","parent":"fQ","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"U%":{"opcode":"operator_lt","next":null,"parent":"au","inputs":{"OPERAND1":[3,"a;|",[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"U(":{"opcode":"operator_add","next":null,"parent":"fR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"U)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U*":{"opcode":"operator_mod","next":null,"parent":"fR","inputs":{"NUM1":[3,"r|",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"U)":{"opcode":"operator_mod","next":null,"parent":"U(","inputs":{"NUM1":[3,"a;}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"U+":{"opcode":"data_itemoflist","next":null,"parent":"r|","inputs":{"INDEX":[3,"U,",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"U,":{"opcode":"operator_add","next":null,"parent":"U+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"U-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U-":{"opcode":"operator_mod","next":null,"parent":"U,","inputs":{"NUM1":[3,"a;~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"U.":{"opcode":"operator_equals","next":null,"parent":"r}","inputs":{"OPERAND1":[3,"a=a",[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"U/":{"opcode":"data_setvariableto","next":"U;","parent":"U:","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"U;":{"opcode":"data_setvariableto","next":"a=b","parent":"U/","inputs":{"VALUE":[1,[10,"704"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"=f":{"opcode":"procedures_call","next":"c?","parent":"=e","inputs":{"SAQ$kmM{QR,tYZNrfC!d":[3,[12,"CPF","g/7`YLSnP29ZzyQeb?9I"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.frame %s","argumentids":"[\"SAQ$kmM{QR,tYZNrfC!d\"]","warp":"true"}},"U=":{"opcode":"operator_equals","next":null,"parent":"r~","inputs":{"OPERAND1":[3,"a=c",[10,""]],"OPERAND2":[1,[10,"A"]]},"fields":{},"shadow":false,"topLevel":false},"U?":{"opcode":"operator_not","next":null,"parent":"r~","inputs":{"OPERAND":[2,"a=d"]},"fields":{},"shadow":false,"topLevel":false},"U@":{"opcode":"procedures_call","next":null,"parent":"fK","inputs":{"xIM*U}brWQXSeCoRBOgN":[3,"a=e",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Fx0A %s","argumentids":"[\"xIM*U}brWQXSeCoRBOgN\"]","warp":"true"}},"U[":{"opcode":"sensing_keypressed","next":null,"parent":"fS","inputs":{"KEY_OPTION":[1,"a=f"]},"fields":{},"shadow":false,"topLevel":false},"U]":{"opcode":"data_showlist","next":"U^","parent":"fS","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"U^":{"opcode":"data_showlist","next":"fT","parent":"U]","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"U_":{"opcode":"operator_add","next":null,"parent":"Ts","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"U`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"U`":{"opcode":"operator_mod","next":null,"parent":"U_","inputs":{"NUM1":[3,"a=g",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"U{":{"opcode":"data_changevariableby","next":"sb","parent":"sa","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"U|":{"opcode":"data_setvariableto","next":"U}","parent":"sc","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"U}":{"opcode":"data_setvariableto","next":null,"parent":"U|","inputs":{"VALUE":[3,"U~",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"U~":{"opcode":"data_itemoflist","next":null,"parent":"U}","inputs":{"INDEX":[3,"Va",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Va":{"opcode":"operator_add","next":null,"parent":"U~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Vb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Vb":{"opcode":"operator_mathop","next":null,"parent":"Va","inputs":{"NUM":[3,"Vc",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vc":{"opcode":"operator_divide","next":null,"parent":"Vb","inputs":{"NUM1":[3,"a=h",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vd":{"opcode":"operator_add","next":null,"parent":"Ve","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Vf",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Vg":{"opcode":"operator_divide","next":null,"parent":"Vh","inputs":{"NUM1":[3,"a=i",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vh":{"opcode":"operator_mathop","next":null,"parent":"Vi","inputs":{"NUM":[3,"Vg",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Vi":{"opcode":"operator_add","next":null,"parent":"Vj","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Vh",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Vj":{"opcode":"data_itemoflist","next":null,"parent":"sd","inputs":{"INDEX":[3,"Vi",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Vk":{"opcode":"data_itemoflist","next":null,"parent":"fU","inputs":{"INDEX":[3,"a=j",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Vl":{"opcode":"operator_add","next":null,"parent":"se","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"rx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Vm":{"opcode":"operator_mod","next":null,"parent":"Vn","inputs":{"NUM1":[3,"a=k",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vn":{"opcode":"operator_lt","next":null,"parent":"e{","inputs":{"OPERAND1":[3,"Vm",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"=p":{"opcode":"operator_equals","next":null,"parent":"fd","inputs":{"OPERAND1":[3,"-d",[10,""]],"OPERAND2":[1,[10,"NaN"]]},"fields":{},"shadow":false,"topLevel":false},"=q":{"opcode":"operator_not","next":null,"parent":"fV","inputs":{"OPERAND":[2,"a=l"]},"fields":{},"shadow":false,"topLevel":false},"=r":{"opcode":"operator_mathop","next":null,"parent":"sf","inputs":{"NUM":[3,"ZB",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"=s":{"opcode":"operator_equals","next":null,"parent":"ZB","inputs":{"OPERAND1":[3,"a=m",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"=t":{"opcode":"data_setvariableto","next":"fX","parent":"fW","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"=u":{"opcode":"operator_join","next":null,"parent":"ZC","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"=v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=v":{"opcode":"data_itemoflist","next":null,"parent":"=u","inputs":{"INDEX":[3,"a=n",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"=w":{"opcode":"operator_divide","next":null,"parent":"-N","inputs":{"NUM1":[3,"a=o",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"RW":{"opcode":"operator_equals","next":null,"parent":"ci","inputs":{"OPERAND1":[3,"Vo",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Vo":{"opcode":"operator_mod","next":null,"parent":"RW","inputs":{"NUM1":[3,"a=p",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vp":{"opcode":"data_setvariableto","next":null,"parent":"=","inputs":{"VALUE":[3,"Vq",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"Vq":{"opcode":"operator_mod","next":null,"parent":"Vp","inputs":{"NUM1":[3,"a=q",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Vr":{"opcode":"data_itemoflist","next":null,"parent":"Vs","inputs":{"INDEX":[3,"Vt",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Vt":{"opcode":"operator_add","next":null,"parent":"Vr","inputs":{"NUM1":[3,"a=r",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Vu":{"opcode":"data_setvariableto","next":"=x","parent":"Vv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"Vv":{"opcode":"data_setvariableto","next":"Vu","parent":"=y","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},"=x":{"opcode":"data_setvariableto","next":"=z","parent":"Vu","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"=A":{"opcode":"operator_multiply","next":null,"parent":"ZD","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"=B",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=B":{"opcode":"data_itemoflist","next":null,"parent":"=A","inputs":{"INDEX":[3,"a=s",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"=C":{"opcode":"operator_lt","next":null,"parent":"fq","inputs":{"OPERAND1":[3,"a=t",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=D":{"opcode":"operator_mod","next":null,"parent":"rt","inputs":{"NUM1":[3,"a=u",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=E":{"opcode":"data_deletealloflist","next":"ZF","parent":"ZE","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"=F":{"opcode":"data_itemoflist","next":null,"parent":"ro","inputs":{"INDEX":[3,"=G",[7,"0"]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"=G":{"opcode":"operator_add","next":null,"parent":"=F","inputs":{"NUM1":[3,"ZG",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Vw":{"opcode":"operator_subtract","next":null,"parent":"c^","inputs":{"NUM1":[1,[4,"65536"]],"NUM2":[3,"a=v",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Vx":{"opcode":"operator_subtract","next":null,"parent":"ZH","inputs":{"NUM1":[3,"a=w",[4,"0"]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"Vy":{"opcode":"data_replaceitemoflist","next":null,"parent":"ZI","inputs":{"INDEX":[3,"Vz",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"Vz":{"opcode":"operator_add","next":null,"parent":"Vy","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ZJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VA":{"opcode":"operator_multiply","next":null,"parent":"ZJ","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a=x",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VB":{"opcode":"pen_penDown","next":"ff","parent":"r-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"VC":{"opcode":"data_itemoflist","next":null,"parent":"r-","inputs":{"INDEX":[3,"VD",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"VD":{"opcode":"operator_add","next":null,"parent":"VC","inputs":{"NUM1":[3,"a=y",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VE":{"opcode":"data_itemoflist","next":null,"parent":"q_","inputs":{"INDEX":[3,"a=z",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"VF":{"opcode":"operator_round","next":null,"parent":"ZK","inputs":{"NUM":[3,"VG",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VG":{"opcode":"operator_mathop","next":null,"parent":"VF","inputs":{"NUM":[3,"VH",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"VH":{"opcode":"operator_multiply","next":null,"parent":"VG","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,"a=A",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VI":{"opcode":"data_itemoflist","next":null,"parent":"VJ","inputs":{"INDEX":[3,"a=B",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"VJ":{"opcode":"operator_equals","next":null,"parent":"sg","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"VI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VK":{"opcode":"operator_divide","next":null,"parent":"UB","inputs":{"NUM1":[3,"a=C",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"VL":{"opcode":"operator_equals","next":null,"parent":"a[","inputs":{"OPERAND1":[3,"a=D",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"VM":{"opcode":"operator_equals","next":null,"parent":"?","inputs":{"OPERAND1":[3,"a=E",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"VN":{"opcode":"data_addtolist","next":"VP","parent":"VO","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"VQ":{"opcode":"data_deleteoflist","next":"a=F","parent":"sh","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},":K":{"opcode":"operator_equals","next":null,"parent":"c!","inputs":{"OPERAND1":[3,"a=G",[10,""]],"OPERAND2":[1,[10,"0xFB"]]},"fields":{},"shadow":false,"topLevel":false},"VR":{"opcode":"data_setvariableto","next":"@","parent":"fp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"VS":{"opcode":"data_setvariableto","next":null,"parent":"@","inputs":{"VALUE":[3,"a=H",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"VT":{"opcode":"operator_equals","next":null,"parent":"fY","inputs":{"OPERAND1":[3,"a=I",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"VU":{"opcode":"data_setvariableto","next":"fZ","parent":"fY","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"VV":{"opcode":"operator_gt","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a=J",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VW":{"opcode":"data_setvariableto","next":"VX","parent":"fZ","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"VX":{"opcode":"data_setvariableto","next":"f!","parent":"VW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"VY":{"opcode":"operator_lt","next":null,"parent":"fW","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"a=K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",S":{"opcode":"control_clear_counter","next":"=H","parent":"cf","inputs":{},"fields":{},"shadow":false,"topLevel":false},"=H":{"opcode":"data_setvariableto","next":"rj","parent":",S","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"=I":{"opcode":"data_setvariableto","next":"f#","parent":"si","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"=J":{"opcode":"operator_not","next":null,"parent":"q;","inputs":{"OPERAND":[2,"a=L"]},"fields":{},"shadow":false,"topLevel":false},"=K":{"opcode":"operator_equals","next":null,"parent":"c.","inputs":{"OPERAND1":[3,"a=M",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"=L":{"opcode":"operator_gt","next":null,"parent":"q~","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,"a=N",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=M":{"opcode":"operator_equals","next":null,"parent":"f%","inputs":{"OPERAND1":[3,"a=O",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"=N":{"opcode":"data_changevariableby","next":"sc","parent":"f%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"=O":{"opcode":"data_hidelist","next":"a=P","parent":"sj","inputs":{},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"=P":{"opcode":"sound_setvolumeto","next":null,"parent":"f(","inputs":{"VOLUME":[3,"a=Q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=Q":{"opcode":"sensing_keypressed","next":null,"parent":"f(","inputs":{"KEY_OPTION":[1,"a=R"]},"fields":{},"shadow":false,"topLevel":false},"=R":{"opcode":"control_stop","next":"=S","parent":"f(","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"=S":{"opcode":"event_broadcast","next":"a=S","parent":"=R","inputs":{"BROADCAST_INPUT":[1,[11,"WAVE-8 reset","|c=UL-|1:KK,V8,g?krF"]]},"fields":{},"shadow":false,"topLevel":false},"as":{"opcode":"control_if","next":"aU","parent":"c:","inputs":{"CONDITION":[2,"=T"],"SUBSTACK":[2,"=U"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a=T"},"av":{"opcode":"control_if","next":"f)","parent":"f%","inputs":{"CONDITION":[2,"=W"],"SUBSTACK":[2,"=X"]},"fields":{},"shadow":false,"topLevel":false,"comment":"=V"},"an":{"opcode":"control_if","next":",","parent":"ch","inputs":{"CONDITION":[2,"/z"],"SUBSTACK":[2,"sk"]},"fields":{},"shadow":false,"topLevel":false,"comment":"=Y"},"aw":{"opcode":"control_if","next":"P","parent":"m","inputs":{"CONDITION":[2,"=!"],"SUBSTACK":[2,"=y"]},"fields":{},"shadow":false,"topLevel":false,"comment":"=Z"},".x":{"opcode":"operator_mod","next":null,"parent":"c_","inputs":{"NUM1":[3,".w",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"=#":{"opcode":"operator_equals","next":null,"parent":"=%","inputs":{"OPERAND1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]],"OPERAND2":[3,"a=U",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=%":{"opcode":"operator_not","next":null,"parent":"sl","inputs":{"OPERAND":[2,"=#"]},"fields":{},"shadow":false,"topLevel":false},"=(":{"opcode":"data_addtolist","next":"a=V","parent":"sm","inputs":{"ITEM":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"=)":{"opcode":"operator_multiply","next":null,"parent":"sm","inputs":{"NUM1":[3,"a=W",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=*":{"opcode":"operator_multiply","next":null,"parent":"sn","inputs":{"NUM1":[3,"a=X",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=+":{"opcode":"control_repeat","next":null,"parent":"=,","inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"cq"]},"fields":{},"shadow":false,"topLevel":false},"=-":{"opcode":"operator_multiply","next":null,"parent":"so","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,"=.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=.":{"opcode":"operator_gt","next":null,"parent":"=-","inputs":{"OPERAND1":[3,"sp",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"-m":{"opcode":"control_clear_counter","next":"sq","parent":"-l","inputs":{},"fields":{},"shadow":false,"topLevel":false},"=/":{"opcode":"operator_not","next":null,"parent":"ZI","inputs":{"OPERAND":[2,"a=Y"]},"fields":{},"shadow":false,"topLevel":false},"=:":{"opcode":"data_itemoflist","next":null,"parent":"=;","inputs":{"INDEX":[3,"a=Z",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"=;":{"opcode":"operator_equals","next":null,"parent":"sr","inputs":{"OPERAND1":[3,"=:",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"==":{"opcode":"operator_add","next":null,"parent":"=?","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"=@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/J":{"opcode":"operator_mod","next":null,"parent":"/I","inputs":{"NUM1":[3,"a=!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=[":{"opcode":"operator_add","next":null,"parent":"/U","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"f*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=]":{"opcode":"data_deletealloflist","next":"f+","parent":"sb","inputs":{},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"=^":{"opcode":"operator_mod","next":null,"parent":"=_","inputs":{"NUM1":[3,"a=#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=_":{"opcode":"operator_equals","next":null,"parent":"lf","inputs":{"OPERAND1":[3,"=^",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"=`":{"opcode":"operator_multiply","next":null,"parent":"ax","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"={",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"={":{"opcode":"data_itemoflist","next":null,"parent":"=`","inputs":{"INDEX":[3,"a=%",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"=|":{"opcode":"operator_equals","next":null,"parent":"cA","inputs":{"OPERAND1":[3,"=}",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"=}":{"opcode":"operator_mod","next":null,"parent":"=|","inputs":{"NUM1":[3,"a=(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=~":{"opcode":"operator_add","next":null,"parent":"r/","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?a",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?b":{"opcode":"operator_gt","next":null,"parent":"fX","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a=)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},",E":{"opcode":"operator_lt","next":null,"parent":"cc","inputs":{"OPERAND1":[3,"a=*",[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"?c":{"opcode":"operator_add","next":null,"parent":"ss","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?d":{"opcode":"operator_mod","next":null,"parent":"?c","inputs":{"NUM1":[3,"a=+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",R":{"opcode":"operator_lt","next":null,"parent":"cf","inputs":{"OPERAND1":[3,"a=,",[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"?e":{"opcode":"operator_equals","next":null,"parent":"IR","inputs":{"OPERAND1":[3,"a=-",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"?f":{"opcode":"operator_gt","next":null,"parent":"IS","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,"a=.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"?g":{"opcode":"operator_lt","next":null,"parent":"e^","inputs":{"OPERAND1":[3,"a=/",[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"?h":{"opcode":"operator_not","next":null,"parent":"?i","inputs":{"OPERAND":[2,"a=:"]},"fields":{},"shadow":false,"topLevel":false},"?i":{"opcode":"operator_round","next":null,"parent":"IT","inputs":{"NUM":[3,"?h",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"?j":{"opcode":"operator_gt","next":null,"parent":"?k","inputs":{"OPERAND1":[3,"Zx",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"?l":{"opcode":"control_clear_counter","next":"ar","parent":"?m","inputs":{},"fields":{},"shadow":false,"topLevel":false},"?m":{"opcode":"data_setvariableto","next":"?l","parent":"f,","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"?n":{"opcode":"data_showvariable","next":"a=;","parent":"?o","inputs":{},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"?o":{"opcode":"data_showvariable","next":"?n","parent":"?p","inputs":{},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"?p":{"opcode":"data_showvariable","next":"?o","parent":"/]","inputs":{},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"?q":{"opcode":"operator_add","next":null,"parent":"?r","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?s":{"opcode":"operator_mod","next":null,"parent":"?q","inputs":{"NUM1":[3,"a==",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?t":{"opcode":"operator_equals","next":null,"parent":"aS","inputs":{"OPERAND1":[3,"a=?",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"?u":{"opcode":"data_itemoflist","next":null,"parent":"?v","inputs":{"INDEX":[3,"a=@",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"?w":{"opcode":"operator_lt","next":null,"parent":"sr","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"?x",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"?x":{"opcode":"data_itemoflist","next":null,"parent":"?w","inputs":{"INDEX":[3,"a=[",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"?y":{"opcode":"operator_mod","next":null,"parent":"sp","inputs":{"NUM1":[3,"?z",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"?z":{"opcode":"operator_mathop","next":null,"parent":"?y","inputs":{"NUM":[3,"a=]",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"?A":{"opcode":"data_itemoflist","next":null,"parent":"f-","inputs":{"INDEX":[3,"a=^",[7,"0"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"?B":{"opcode":"operator_equals","next":null,"parent":"c@","inputs":{"OPERAND1":[3,"a=_",[10,""]],"OPERAND2":[1,[10,"0xA2"]]},"fields":{},"shadow":false,"topLevel":false},"?C":{"opcode":"data_setvariableto","next":"?E","parent":"?D","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["chip8.pitch","TpKJz2LxQD8g%5l=GF^w"]},"shadow":false,"topLevel":false},"?D":{"opcode":"data_setvariableto","next":"?C","parent":"IB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"?E":{"opcode":"data_setvariableto","next":"?F","parent":"?C","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"?G":{"opcode":"data_addtolist","next":"?I","parent":"?H","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"?J":{"opcode":"operator_mathop","next":null,"parent":"IU","inputs":{"NUM":[3,"II",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"?K":{"opcode":"data_addtolist","next":"ay","parent":"aT","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"?L":{"opcode":"data_itemoflist","next":null,"parent":"ay","inputs":{"INDEX":[3,"?M",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"?M":{"opcode":"operator_add","next":null,"parent":"?L","inputs":{"NUM1":[3,"?N",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"?N":{"opcode":"operator_mod","next":null,"parent":"?M","inputs":{"NUM1":[3,"?O",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"?P":{"opcode":"event_broadcast","next":"a=`","parent":"IV","inputs":{"BROADCAST_INPUT":[1,[11,"sound.updateMC8buffer","X8}7lXU4UNdr2{s]fs4c"]]},"fields":{},"shadow":false,"topLevel":false},"?Q":{"opcode":"operator_not","next":null,"parent":"e_","inputs":{"OPERAND":[2,"IP"]},"fields":{},"shadow":false,"topLevel":false},"?R":{"opcode":"data_setvariableto","next":"?S","parent":"fX","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"?S":{"opcode":"data_setvariableto","next":"fC","parent":"?R","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"?T":{"opcode":"operator_add","next":null,"parent":"?U","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?V",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-h":{"opcode":"operator_add","next":null,"parent":"-g","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?W",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?W":{"opcode":"operator_mod","next":null,"parent":"-h","inputs":{"NUM1":[3,"a={",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"/W":{"opcode":"data_replaceitemoflist","next":null,"parent":"?X","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"/V",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"?X":{"opcode":"data_changevariableby","next":"/W","parent":"c`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"/-":{"opcode":"motion_sety","next":"?Y","parent":"/,","inputs":{"Y":[1,[4,"173"]]},"fields":{},"shadow":false,"topLevel":false},"?Y":{"opcode":"data_setvariableto","next":"cB","parent":"/-","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"?Z":{"opcode":"operator_mathop","next":null,"parent":"st","inputs":{"NUM":[3,"su",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"?!":{"opcode":"pen_clear","next":"?#","parent":"P","inputs":{},"fields":{},"shadow":false,"topLevel":false},"?#":{"opcode":"data_setvariableto","next":"?%","parent":"?!","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"?%":{"opcode":"data_setvariableto","next":"?(","parent":"?#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"?(":{"opcode":"data_setvariableto","next":"?)","parent":"?%","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"?)":{"opcode":"procedures_call","next":"a=|","parent":"?(","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"?*":{"opcode":"data_replaceitemoflist","next":"?+","parent":"rV","inputs":{"INDEX":[1,[7,"256"]],"ITEM":[1,[10," 0x00FFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"?,":{"opcode":"data_setvariableto","next":"sa","parent":"sv","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"?-":{"opcode":"operator_mod","next":null,"parent":"?.","inputs":{"NUM1":[3,"a=}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?/":{"opcode":"data_itemoflist","next":null,"parent":"sw","inputs":{"INDEX":[3,"a=~",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"?:":{"opcode":"data_itemoflist","next":null,"parent":"?;","inputs":{"INDEX":[3,"?=",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"?;":{"opcode":"operator_add","next":null,"parent":";c","inputs":{"NUM1":[3,"?:",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?=":{"opcode":"operator_add","next":null,"parent":"?:","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"??",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"??":{"opcode":"operator_mod","next":null,"parent":"?=","inputs":{"NUM1":[3,"a?a",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?@":{"opcode":"operator_add","next":null,"parent":"?[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?[":{"opcode":"data_itemoflist","next":null,"parent":"sx","inputs":{"INDEX":[3,"?@",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"?]":{"opcode":"operator_mod","next":null,"parent":"?@","inputs":{"NUM1":[3,"a?b",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?^":{"opcode":"operator_equals","next":null,"parent":"[","inputs":{"OPERAND1":[3,"a?c",[10,""]],"OPERAND2":[1,[10,"0x1e"]]},"fields":{},"shadow":false,"topLevel":false},"?_":{"opcode":"operator_equals","next":null,"parent":"aV","inputs":{"OPERAND1":[3,"a?d",[10,""]],"OPERAND2":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false},"?`":{"opcode":"data_addtolist","next":"?{","parent":"Uo","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"?{":{"opcode":"data_addtolist","next":"?|","parent":"?`","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":Z":{"opcode":"operator_round","next":null,"parent":"sy","inputs":{"NUM":[3,":Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?}":{"opcode":"operator_equals","next":null,"parent":"sz","inputs":{"OPERAND1":[3,"a?e",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"?~":{"opcode":"data_itemoflist","next":null,"parent":"@a","inputs":{"INDEX":[3,"@b",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@a":{"opcode":"operator_multiply","next":null,"parent":"@c","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,"?~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@b":{"opcode":"operator_add","next":null,"parent":"?~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@c":{"opcode":"operator_add","next":null,"parent":"qQ","inputs":{"NUM1":[3,"@a",[4,"0"]],"NUM2":[1,[4,"80"]]},"fields":{},"shadow":false,"topLevel":false},"@d":{"opcode":"operator_mod","next":null,"parent":"@b","inputs":{"NUM1":[3,"a?f",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},",K":{"opcode":"operator_equals","next":null,"parent":"ch","inputs":{"OPERAND1":[3,"@e",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"@f":{"opcode":"operator_not","next":null,"parent":"@g","inputs":{"OPERAND":[2,"a?g"]},"fields":{},"shadow":false,"topLevel":false},"@g":{"opcode":"operator_round","next":null,"parent":"sA","inputs":{"NUM":[3,"@f",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"@h":{"opcode":"operator_mod","next":null,"parent":"@i","inputs":{"NUM1":[3,"a?h",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@i":{"opcode":"operator_add","next":null,"parent":"c`","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@j":{"opcode":"operator_equals","next":null,"parent":"f.","inputs":{"OPERAND1":[3,"a?i",[10,""]],"OPERAND2":[1,[10,"0x75"]]},"fields":{},"shadow":false,"topLevel":false},"@k":{"opcode":"operator_lt","next":null,"parent":"rb","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,"@l",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"@l":{"opcode":"operator_mod","next":null,"parent":"@k","inputs":{"NUM1":[3,"a?j",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@m":{"opcode":"data_itemoflist","next":null,"parent":"sB","inputs":{"INDEX":[3,"@n",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@n":{"opcode":"operator_add","next":null,"parent":"@m","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@p":{"opcode":"data_itemoflist","next":null,"parent":"?O","inputs":{"INDEX":[3,"@q",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@q":{"opcode":"operator_add","next":null,"parent":"@p","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@r",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@s":{"opcode":"sound_cleareffects","next":"-.","parent":"@t","inputs":{},"fields":{},"shadow":false,"topLevel":false},"@t":{"opcode":"event_broadcastandwait","next":"@s","parent":"@u","inputs":{"BROADCAST_INPUT":[1,[11,"prune","eUXr-]/_0N]qtaXLt(ye"]]},"fields":{},"shadow":false,"topLevel":false},"@v":{"opcode":"data_setvariableto","next":"@w","parent":"r?","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"]},"shadow":false,"topLevel":false},"@w":{"opcode":"data_setvariableto","next":"@x","parent":"@v","inputs":{"VALUE":[1,[10,"32"]]},"fields":{"VARIABLE":["chip8.screenheight",",2huTPQKyTdw0uS0Mmql"]},"shadow":false,"topLevel":false},"@x":{"opcode":"data_setvariableto","next":"@y","parent":"@w","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"@y":{"opcode":"data_deletealloflist","next":".U","parent":"@x","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},".U":{"opcode":"data_deletealloflist","next":".T","parent":"@y","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"/{":{"opcode":"data_deletealloflist","next":"a?k","parent":"/_","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@z":{"opcode":"operator_equals","next":null,"parent":"q}","inputs":{"OPERAND1":[3,"a?l",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"@A":{"opcode":"operator_add","next":null,"parent":"@B","inputs":{"NUM1":[3,"@C",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"@C":{"opcode":"operator_mod","next":null,"parent":"@A","inputs":{"NUM1":[3,"a?m",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@D":{"opcode":"procedures_prototype","next":null,"parent":"@E","inputs":{"xIM*U}brWQXSeCoRBOgN":[1,"a?n"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Fx0A %s","argumentids":"[\"xIM*U}brWQXSeCoRBOgN\"]","argumentnames":"[\"x\"]","argumentdefaults":"[\"\"]","warp":"true"}},"@E":{"opcode":"procedures_definition","next":"sC","parent":null,"inputs":{"custom_block":[1,"@D"]},"fields":{},"shadow":false,"topLevel":true,"x":3168,"y":41374},"@F":{"opcode":"operator_multiply","next":null,"parent":"sD","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a?o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@G":{"opcode":"operator_mod","next":null,"parent":"sE","inputs":{"NUM1":[3,"Zy",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"@H":{"opcode":"data_addtolist","next":"a?p","parent":"rk","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"@I":{"opcode":"operator_equals","next":null,"parent":"fE","inputs":{"OPERAND1":[3,"@J",[10,""]],"OPERAND2":[1,[10,"NaN"]]},"fields":{},"shadow":false,"topLevel":false},"@J":{"opcode":"data_itemoflist","next":null,"parent":"@I","inputs":{"INDEX":[3,"@K",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@L":{"opcode":"data_itemoflist","next":null,"parent":"sF","inputs":{"INDEX":[3,"@M",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@M":{"opcode":"operator_add","next":null,"parent":"@L","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@N":{"opcode":"operator_mod","next":null,"parent":"@M","inputs":{"NUM1":[3,"a?q",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@O":{"opcode":"data_addtolist","next":"Uf","parent":"@P","inputs":{"ITEM":[1,[10,"0x000088"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"@Q":{"opcode":"data_addtolist","next":"@S","parent":"@R","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@R":{"opcode":"data_addtolist","next":"@Q","parent":"O","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@S":{"opcode":"data_addtolist","next":"@T","parent":"@Q","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@T":{"opcode":"data_addtolist","next":"aj","parent":"@S","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@U":{"opcode":"data_itemoflist","next":null,"parent":"@V","inputs":{"INDEX":[3,"a?r",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@V":{"opcode":"operator_equals","next":null,"parent":"q?","inputs":{"OPERAND1":[3,"@U",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@W":{"opcode":"operator_equals","next":null,"parent":"cC","inputs":{"OPERAND1":[3,"a?s",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@X":{"opcode":"operator_mathop","next":null,"parent":"sG","inputs":{"NUM":[3,"Zz",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@Y":{"opcode":"operator_mod","next":null,"parent":"Zt","inputs":{"NUM1":[3,"@Z",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"@!":{"opcode":"operator_mathop","next":null,"parent":"@#","inputs":{"NUM":[3,"@%",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"@#":{"opcode":"operator_add","next":null,"parent":"@(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@%":{"opcode":"operator_divide","next":null,"parent":"@!","inputs":{"NUM1":[3,"a?t",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@(":{"opcode":"data_itemoflist","next":null,"parent":"ry","inputs":{"INDEX":[3,"@#",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-B":{"opcode":"operator_equals","next":null,"parent":"aW","inputs":{"OPERAND1":[3,"-A",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},";R":{"opcode":"operator_lt","next":null,"parent":";Q","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"a?u",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"R`":{"opcode":"data_itemoflist","next":null,"parent":"rF","inputs":{"INDEX":[3,"R_",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@)":{"opcode":"operator_not","next":null,"parent":"re","inputs":{"OPERAND":[2,"a?v"]},"fields":{},"shadow":false,"topLevel":false},"@*":{"opcode":"operator_multiply","next":null,"parent":"rc","inputs":{"NUM1":[3,"@+",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"@,":{"opcode":"data_setvariableto","next":"rk","parent":"@-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"@-":{"opcode":"data_deletealloflist","next":"@,","parent":"@.","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"@/":{"opcode":"data_itemoflist","next":null,"parent":"@:","inputs":{"INDEX":[3,"a?w",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"@;":{"opcode":"operator_mod","next":null,"parent":"@=","inputs":{"NUM1":[3,"a?x",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@=":{"opcode":"operator_add","next":null,"parent":"sH","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@?":{"opcode":"operator_mod","next":null,"parent":"sH","inputs":{"NUM1":[3,"rv",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"@@":{"opcode":"data_addtolist","next":"Uq","parent":"@[","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@[":{"opcode":"data_addtolist","next":"@@","parent":";w","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@]":{"opcode":"operator_mod","next":null,"parent":"@^","inputs":{"NUM1":[3,"a?y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@^":{"opcode":"operator_add","next":null,"parent":"q#","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@_":{"opcode":"data_itemoflist","next":null,"parent":"]","inputs":{"INDEX":[3,"a?z",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@`":{"opcode":"operator_not","next":null,"parent":"sI","inputs":{"OPERAND":[2,"sJ"]},"fields":{},"shadow":false,"topLevel":false},"@{":{"opcode":"operator_add","next":null,"parent":"@|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"@}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@~":{"opcode":"data_setvariableto","next":"sK","parent":"[a","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"[a":{"opcode":"procedures_definition","next":"@~","parent":null,"inputs":{"custom_block":[1,"[b"]},"fields":{},"shadow":false,"topLevel":true,"x":4164,"y":119},"[c":{"opcode":"operator_mod","next":null,"parent":"[d","inputs":{"NUM1":[3,"a?A",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},".H":{"opcode":"data_itemoflist","next":null,"parent":".F","inputs":{"INDEX":[3,"a?B",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"[e":{"opcode":"data_addtolist","next":"/}","parent":"[f","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"[f":{"opcode":"data_addtolist","next":"[e","parent":"?|","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"/}":{"opcode":"data_addtolist","next":"/|","parent":"[e","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":i":{"opcode":"operator_mod","next":null,"parent":",N","inputs":{"NUM1":[3,"a?C",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[g":{"opcode":"operator_divide","next":null,"parent":"[h","inputs":{"NUM1":[3,"a?D",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[h":{"opcode":"operator_mathop","next":null,"parent":"[i","inputs":{"NUM":[3,"[g",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[j":{"opcode":"data_setvariableto","next":null,"parent":"ce","inputs":{"VALUE":[3,"ap",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"[k":{"opcode":"data_setvariableto","next":null,"parent":"ce","inputs":{"VALUE":[3,"sL",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"[l":{"opcode":"data_setvariableto","next":"cD","parent":"sM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"[m":{"opcode":"data_setvariableto","next":null,"parent":"cD","inputs":{"VALUE":[3,"a?E",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"[n":{"opcode":"data_addtolist","next":"TC","parent":":M","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"R-":{"opcode":"data_itemoflist","next":null,"parent":":]","inputs":{"INDEX":[3,"R|",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"R.":{"opcode":"operator_mathop","next":null,"parent":":^","inputs":{"NUM":[3,"Si",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},".@":{"opcode":"operator_mathop","next":null,"parent":"/E","inputs":{"NUM":[3,".?",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[o":{"opcode":"operator_add","next":null,"parent":"[p","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[r":{"opcode":"operator_divide","next":null,"parent":"[q","inputs":{"NUM1":[3,"a?F",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[s":{"opcode":"operator_mod","next":null,"parent":"[t","inputs":{"NUM1":[3,"a?G",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[t":{"opcode":"operator_add","next":null,"parent":"qT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[s",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[u":{"opcode":"operator_not","next":null,"parent":"sN","inputs":{"OPERAND":[2,"a?H"]},"fields":{},"shadow":false,"topLevel":false},"/Q":{"opcode":"operator_mathop","next":null,"parent":"/P","inputs":{"NUM":[3,"[v",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[v":{"opcode":"data_itemoflist","next":null,"parent":"/Q","inputs":{"INDEX":[3,"a?I",[7,"0"]]},"fields":{"LIST":["Boot-128","ii:l6Cz,EQ(zK,4|YH9R"]},"shadow":false,"topLevel":false},"[w":{"opcode":"operator_equals","next":null,"parent":"sO","inputs":{"OPERAND1":[3,"[x",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[x":{"opcode":"data_itemoflist","next":null,"parent":"[w","inputs":{"INDEX":[3,"[y",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"[y":{"opcode":"operator_add","next":null,"parent":"[x","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"IE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?U":{"opcode":"data_itemoflist","next":null,"parent":";-","inputs":{"INDEX":[3,"?T",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"?V":{"opcode":"operator_mathop","next":null,"parent":"?T","inputs":{"NUM":[3,"[z",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[A":{"opcode":"operator_not","next":null,"parent":"r,","inputs":{"OPERAND":[2,"a?J"]},"fields":{},"shadow":false,"topLevel":false},"[B":{"opcode":"operator_add","next":null,"parent":"[C","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[D",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[C":{"opcode":"data_itemoflist","next":null,"parent":"sP","inputs":{"INDEX":[3,"[B",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[D":{"opcode":"operator_mod","next":null,"parent":"[B","inputs":{"NUM1":[3,"a?K",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[E":{"opcode":"control_repeat","next":null,"parent":"cB","inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"f/"]},"fields":{},"shadow":false,"topLevel":false},"[F":{"opcode":"operator_equals","next":null,"parent":"sQ","inputs":{"OPERAND1":[3,"a?L",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"[G":{"opcode":"data_setvariableto","next":"sR","parent":"fD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"[H":{"opcode":"data_changevariableby","next":"a?M","parent":"VZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"[I":{"opcode":"operator_equals","next":null,"parent":"j","inputs":{"OPERAND1":[3,"a?N",[10,""]],"OPERAND2":[1,[10,"0xFC"]]},"fields":{},"shadow":false,"topLevel":false},"[J":{"opcode":"data_setvariableto","next":"[L","parent":"[K","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"[M":{"opcode":"operator_multiply","next":null,"parent":"Zy","inputs":{"NUM1":[3,"[N",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"[O":{"opcode":"operator_add","next":null,"parent":"[N","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[P",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[Q":{"opcode":"operator_not","next":null,"parent":"V!","inputs":{"OPERAND":[2,"sB"]},"fields":{},"shadow":false,"topLevel":false},"[R":{"opcode":"operator_add","next":null,"parent":"[S","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[S":{"opcode":"data_itemoflist","next":null,"parent":"sS","inputs":{"INDEX":[3,"[R",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[T":{"opcode":"operator_mathop","next":null,"parent":"[R","inputs":{"NUM":[3,"[U",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[U":{"opcode":"operator_divide","next":null,"parent":"[T","inputs":{"NUM1":[3,"a?O",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[V":{"opcode":"data_itemoflist","next":null,"parent":"[W","inputs":{"INDEX":[3,"[d",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[W":{"opcode":"operator_divide","next":null,"parent":"[X","inputs":{"NUM1":[3,"[V",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"[Y":{"opcode":"data_replaceitemoflist","next":"a?P","parent":"[Z","inputs":{"INDEX":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[7,"0"]],"ITEM":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"[!":{"opcode":"data_setvariableto","next":"a?Q","parent":"sT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"[#":{"opcode":"operator_add","next":null,"parent":"sU","inputs":{"NUM1":[3,"[%",[4,"0"]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"[%":{"opcode":"operator_divide","next":null,"parent":"[#","inputs":{"NUM1":[3,"-P",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"-P":{"opcode":"operator_subtract","next":null,"parent":"[%","inputs":{"NUM1":[3,"-O",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"-Y":{"opcode":"data_addtolist","next":"-X","parent":"/#","inputs":{"ITEM":[1,[10,"0xAAAAAA"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"/~":{"opcode":"data_addtolist","next":"/%","parent":"/|","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"-!":{"opcode":"data_itemoflist","next":null,"parent":"-Z","inputs":{"INDEX":[3,"a?R",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Sk":{"opcode":"motion_setx","next":"Sj","parent":"a?S","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"Ss":{"opcode":"data_addtolist","next":"Tn","parent":"Sr","inputs":{"ITEM":[1,[10,"0x0000FF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"To":{"opcode":"data_addtolist","next":"@P","parent":"Tn","inputs":{"ITEM":[1,[10,"0x880000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Sw":{"opcode":"operator_add","next":null,"parent":"[(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Sv",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[)":{"opcode":"operator_equals","next":null,"parent":"^","inputs":{"OPERAND1":[3,"a?T",[10,""]],"OPERAND2":[1,[10,"0x18"]]},"fields":{},"shadow":false,"topLevel":false},"[*":{"opcode":"operator_multiply","next":null,"parent":"IV","inputs":{"NUM1":[1,[4,"120"]],"NUM2":[3,"sV",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[+":{"opcode":"operator_mathop","next":null,"parent":"sV","inputs":{"NUM":[3,"a?U",[4,"0"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},":|":{"opcode":"data_addtolist","next":":{","parent":":~","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":~":{"opcode":"data_addtolist","next":":|","parent":":}","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"[,":{"opcode":"motion_setx","next":"[.","parent":"[-","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"[.":{"opcode":"data_setvariableto","next":"r[","parent":"[,","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"[/":{"opcode":"pen_penDown","next":"c/","parent":"r[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"[:":{"opcode":"data_itemoflist","next":null,"parent":"sF","inputs":{"INDEX":[3,"[;",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},";i":{"opcode":"data_changevariableby","next":";h","parent":"rf","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},":R":{"opcode":"data_itemoflist","next":null,"parent":"ru","inputs":{"INDEX":[3,":P",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[=":{"opcode":"operator_mathop","next":null,"parent":"[?","inputs":{"NUM":[3,"[@",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[?":{"opcode":"operator_add","next":null,"parent":"[[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[@":{"opcode":"operator_divide","next":null,"parent":"[=","inputs":{"NUM1":[3,"a?V",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[[":{"opcode":"data_itemoflist","next":null,"parent":"q^","inputs":{"INDEX":[3,"[?",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[]":{"opcode":"operator_add","next":null,"parent":"sE","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[^":{"opcode":"operator_mod","next":null,"parent":"[]","inputs":{"NUM1":[3,"a?W",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[_":{"opcode":"operator_mathop","next":null,"parent":"sW","inputs":{"NUM":[3,"sz",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"[`":{"opcode":"procedures_call","next":"a?X","parent":"[{","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"128"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"[{":{"opcode":"data_setvariableto","next":"[`","parent":"n","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["c8scrnsize","D#tUdeeQG3WU9xi$i5/|"]},"shadow":false,"topLevel":false},"[|":{"opcode":"operator_round","next":null,"parent":"sX","inputs":{"NUM":[3,"a?Y",[4,""]]},"fields":{},"shadow":false,"topLevel":false},".:":{"opcode":"operator_add","next":null,"parent":"=b","inputs":{"NUM1":[3,"./",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"[}":{"opcode":"data_setvariableto","next":"]a","parent":"[~","inputs":{"VALUE":[1,[10,"0x"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"[~":{"opcode":"data_setvariableto","next":"[}","parent":"aU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"]a":{"opcode":"data_setvariableto","next":"az","parent":"[}","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"?+":{"opcode":"data_setvariableto","next":"c{","parent":"?*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"]b":{"opcode":"data_itemoflist","next":null,"parent":"q%","inputs":{"INDEX":[3,"]c",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"]c":{"opcode":"operator_add","next":null,"parent":"]b","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]d":{"opcode":"operator_mod","next":null,"parent":"]c","inputs":{"NUM1":[3,"a?Z",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=?":{"opcode":"data_itemoflist","next":null,"parent":"q%","inputs":{"INDEX":[3,"==",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@|":{"opcode":"data_itemoflist","next":null,"parent":"rm","inputs":{"INDEX":[3,"@{",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"]e":{"opcode":"data_itemoflist","next":null,"parent":"ZG","inputs":{"INDEX":[3,"]f",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"]f":{"opcode":"operator_add","next":null,"parent":"]e","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]h":{"opcode":"operator_mod","next":null,"parent":"SZ","inputs":{"NUM1":[3,"a?!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]i":{"opcode":"data_setvariableto","next":"V#","parent":"]j","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"]k":{"opcode":"data_setvariableto","next":"sY","parent":"V#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"=@":{"opcode":"operator_mathop","next":null,"parent":"==","inputs":{"NUM":[3,"]l",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]m":{"opcode":"operator_join","next":null,"parent":"]n","inputs":{"STRING1":[3,"Tj",[10,""]],"STRING2":[1,[10,")"]]},"fields":{},"shadow":false,"topLevel":false},"Tj":{"opcode":"operator_join","next":null,"parent":"]m","inputs":{"STRING1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]],"STRING2":[3,"Th",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]o":{"opcode":"operator_round","next":null,"parent":"]p","inputs":{"NUM":[3,"a?#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]q":{"opcode":"data_setvariableto","next":"sT","parent":"]r","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"]r":{"opcode":"data_setvariableto","next":"]q","parent":"V%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"]s":{"opcode":"data_setvariableto","next":null,"parent":"V%","inputs":{"VALUE":[3,"a?%",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"]t":{"opcode":"data_setvariableto","next":"fI","parent":"Tq","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"Tq":{"opcode":"data_setvariableto","next":"]t","parent":"Tp","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},";]":{"opcode":"operator_add","next":null,"parent":"@+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]u":{"opcode":"operator_mathop","next":null,"parent":"sZ","inputs":{"NUM":[3,"sQ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]v":{"opcode":"data_setvariableto","next":"]w","parent":"cE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"]w":{"opcode":"control_repeat","next":null,"parent":"]v","inputs":{"TIMES":[3,[12,"chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"],[6,"0"]],"SUBSTACK":[2,"s!"]},"fields":{},"shadow":false,"topLevel":false},"@B":{"opcode":"data_itemoflist","next":null,"parent":"s!","inputs":{"INDEX":[3,"@A",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Vf":{"opcode":"operator_mod","next":null,"parent":"Vd","inputs":{"NUM1":[3,"a?(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]x":{"opcode":"operator_multiply","next":null,"parent":"s#","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"]y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]y":{"opcode":"data_itemoflist","next":null,"parent":"]x","inputs":{"INDEX":[3,"a?)",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"-x":{"opcode":"data_itemoflist","next":null,"parent":"/;","inputs":{"INDEX":[3,"-v",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-z":{"opcode":"operator_mathop","next":null,"parent":"[;","inputs":{"NUM":[3,"-y",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]z":{"opcode":"data_setvariableto","next":"a?*","parent":"T|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"]A":{"opcode":"data_setvariableto","next":null,"parent":"a?+","inputs":{"VALUE":[3,"]B",[10,""]]},"fields":{"VARIABLE":["chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"]},"shadow":false,"topLevel":false},"]B":{"opcode":"operator_mod","next":null,"parent":"]A","inputs":{"NUM1":[3,"a?,",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"]C":{"opcode":"operator_lt","next":null,"parent":"]D","inputs":{"OPERAND1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[10,""]],"OPERAND2":[3,"a?-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]D":{"opcode":"operator_not","next":null,"parent":"cF","inputs":{"OPERAND":[2,"]C"]},"fields":{},"shadow":false,"topLevel":false},"]E":{"opcode":"operator_gt","next":null,"parent":"Iy","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a?.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]F":{"opcode":"data_itemoflist","next":null,"parent":"qT","inputs":{"INDEX":[3,"]G",[7,"0"]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"]G":{"opcode":"operator_add","next":null,"parent":"]F","inputs":{"NUM1":[3,"rc",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"]H":{"opcode":"operator_mod","next":null,"parent":"]I","inputs":{"NUM1":[3,"a?/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]I":{"opcode":"operator_equals","next":null,"parent":"cv","inputs":{"OPERAND1":[3,"]H",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"]J":{"opcode":"operator_multiply","next":null,"parent":"s%","inputs":{"NUM1":[1,[4,"65536"]],"NUM2":[3,"a?:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/U":{"opcode":"data_itemoflist","next":null,"parent":"/T","inputs":{"INDEX":[3,"=[",[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"?a":{"opcode":"operator_mod","next":null,"parent":"=~","inputs":{"NUM1":[3,"a?;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]K":{"opcode":"operator_equals","next":null,"parent":"s(","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"]L",[10,""]]},"fields":{},"shadow":false,"topLevel":false},".P":{"opcode":"data_itemoflist","next":null,"parent":"s)","inputs":{"INDEX":[3,".N",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"]M":{"opcode":"operator_join","next":null,"parent":"s*","inputs":{"STRING1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"STRING2":[3,"s+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]N":{"opcode":"operator_multiply","next":null,"parent":"s,","inputs":{"NUM1":[3,"a?=",[4,"0"]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]O":{"opcode":"data_itemoflist","next":null,"parent":"]P","inputs":{"INDEX":[3,"a??",[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"]P":{"opcode":"operator_add","next":null,"parent":"]Q","inputs":{"NUM1":[3,"]O",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},":t":{"opcode":"data_addtolist","next":":s","parent":"b}","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";t":{"opcode":"data_addtolist","next":":L","parent":";r","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@}":{"opcode":"operator_mod","next":null,"parent":"@{","inputs":{"NUM1":[3,"a?@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@P":{"opcode":"data_addtolist","next":"@O","parent":"To","inputs":{"ITEM":[1,[10,"0x008800"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"]R":{"opcode":"operator_add","next":null,"parent":"]S","inputs":{"NUM1":[3,"]T",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"]S":{"opcode":"operator_lt","next":null,"parent":"f/","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,"]R",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]T":{"opcode":"operator_mathop","next":null,"parent":"]R","inputs":{"NUM":[3,"a?[",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]U":{"opcode":"operator_equals","next":null,"parent":"s-","inputs":{"OPERAND1":[3,"]V",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]V":{"opcode":"data_itemoflist","next":null,"parent":"]U","inputs":{"INDEX":[3,"a?]",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"]W":{"opcode":"data_itemoflist","next":null,"parent":"]X","inputs":{"INDEX":[3,"a?^",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"]X":{"opcode":"operator_lt","next":null,"parent":"s-","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"]W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]Y":{"opcode":"data_setvariableto","next":null,"parent":"ft","inputs":{"VALUE":[3,"a?_",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"]Z":{"opcode":"data_setvariableto","next":"a?`","parent":"rC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"?.":{"opcode":"operator_add","next":null,"parent":"rO","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"?-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-d":{"opcode":"data_itemoflist","next":null,"parent":"=p","inputs":{"INDEX":[3,"-c",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},";~":{"opcode":"operator_equals","next":null,"parent":"s.","inputs":{"OPERAND1":[3,"Uv",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"]!":{"opcode":"operator_add","next":null,"parent":"=o","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]#":{"opcode":"operator_mod","next":null,"parent":"]!","inputs":{"NUM1":[3,"a?{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"-,":{"opcode":"data_deletealloflist","next":"/`","parent":"-+","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},";_":{"opcode":"operator_add","next":null,"parent":";{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,";^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";{":{"opcode":"data_itemoflist","next":null,"parent":";`","inputs":{"INDEX":[3,";_",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Tx":{"opcode":"data_addtolist","next":"Tw","parent":"Ug","inputs":{"ITEM":[1,[10,"0x880088"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"Uf":{"opcode":"data_addtolist","next":"Ue","parent":"@O","inputs":{"ITEM":[1,[10,"0x888800"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"[N":{"opcode":"data_itemoflist","next":null,"parent":"[M","inputs":{"INDEX":[3,"[O",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[d":{"opcode":"operator_add","next":null,"parent":"[V","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[c",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[Z":{"opcode":"data_changevariableby","next":"[Y","parent":"s/","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"TC":{"opcode":"data_addtolist","next":"TB","parent":"[n","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"@Z":{"opcode":"operator_multiply","next":null,"parent":"@Y","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"?r",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]%":{"opcode":"operator_equals","next":null,"parent":"qY","inputs":{"OPERAND1":[3,"a?|",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"](":{"opcode":"operator_mathop","next":null,"parent":"r!","inputs":{"NUM":[3,"q{",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"])":{"opcode":"data_deletealloflist","next":"]*","parent":"[L","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"]*":{"opcode":"data_deletealloflist","next":"]+","parent":"])","inputs":{},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"],":{"opcode":"operator_mathop","next":null,"parent":"s:","inputs":{"NUM":[3,"ZA",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]-":{"opcode":"data_itemoflist","next":null,"parent":"].","inputs":{"INDEX":[3,"]/",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"].":{"opcode":"operator_multiply","next":null,"parent":"qZ","inputs":{"NUM1":[3,"]-",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"]/":{"opcode":"operator_add","next":null,"parent":"]-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"];":{"opcode":"data_addtolist","next":"a?}","parent":"]=","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"]=":{"opcode":"data_addtolist","next":"];","parent":"]?","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"/d":{"opcode":"operator_add","next":null,"parent":"/c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"IH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]l":{"opcode":"operator_divide","next":null,"parent":"=@","inputs":{"NUM1":[3,"a?~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?|":{"opcode":"data_addtolist","next":"[f","parent":"?{","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"R%":{"opcode":"operator_mathop","next":null,"parent":"SG","inputs":{"NUM":[3,"/f",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/o":{"opcode":"operator_divide","next":null,"parent":"/m","inputs":{"NUM1":[3,"a@a",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"]@":{"opcode":"operator_add","next":null,"parent":"][","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]]":{"opcode":"operator_mathop","next":null,"parent":"]@","inputs":{"NUM":[3,"]^",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]^":{"opcode":"operator_divide","next":null,"parent":"]]","inputs":{"NUM1":[3,"a@b",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]_":{"opcode":"operator_equals","next":null,"parent":"IW","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"]`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]`":{"opcode":"data_itemoflist","next":null,"parent":"]_","inputs":{"INDEX":[3,"a@c",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"]{":{"opcode":"data_replaceitemoflist","next":null,"parent":"fV","inputs":{"INDEX":[3,"]|",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"]|":{"opcode":"operator_add","next":null,"parent":"]{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"sD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]}":{"opcode":"operator_add","next":null,"parent":"]L","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"]~":{"opcode":"data_itemoflist","next":null,"parent":"]}","inputs":{"INDEX":[3,"a@d",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"=k":{"opcode":"motion_setx","next":"=j","parent":"s,","inputs":{"X":[1,[4,"-192"]]},"fields":{},"shadow":false,"topLevel":false},"R/":{"opcode":"data_itemoflist","next":null,"parent":"Uw","inputs":{"INDEX":[3,";b",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"[K":{"opcode":"procedures_definition","next":"[J","parent":null,"inputs":{"custom_block":[1,"IX"]},"fields":{},"shadow":false,"topLevel":true,"x":2164,"y":745},"[;":{"opcode":"operator_add","next":null,"parent":"[:","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"-z",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"[X":{"opcode":"operator_mathop","next":null,"parent":"e`","inputs":{"NUM":[3,"[W",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Uy":{"opcode":"operator_add","next":null,"parent":"Ux","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^a",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^a":{"opcode":"operator_mod","next":null,"parent":"Uy","inputs":{"NUM1":[3,"a@e",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?k":{"opcode":"operator_multiply","next":null,"parent":"IY","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,"?j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"/%":{"opcode":"data_addtolist","next":"/!","parent":"/~","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^b":{"opcode":"operator_equals","next":null,"parent":";","inputs":{"OPERAND1":[3,"^c",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"^c":{"opcode":"operator_mod","next":null,"parent":"^b","inputs":{"NUM1":[3,"a@f",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^d":{"opcode":"data_setvariableto","next":null,"parent":"a@g","inputs":{"VALUE":[3,"^e",[10,""]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"^e":{"opcode":"operator_mod","next":null,"parent":"^d","inputs":{"NUM1":[3,"a@h",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"^f":{"opcode":"data_addtolist","next":"^g","parent":";y","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";v":{"opcode":"data_addtolist","next":";u","parent":"^g","inputs":{"ITEM":[1,[10,"0xe0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},";y":{"opcode":"data_addtolist","next":"^f","parent":";x","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"R*":{"opcode":"data_setvariableto","next":";X","parent":":!","inputs":{"VALUE":[1,[10,"512"]]},"fields":{"VARIABLE":["chip8.starting address","oW{#?FHT;/hE!l+8(A64"]},"shadow":false,"topLevel":false},"@e":{"opcode":"operator_mod","next":null,"parent":",K","inputs":{"NUM1":[3,"a@i",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^h":{"opcode":"operator_not","next":null,"parent":"IZ","inputs":{"OPERAND":[2,"a@j"]},"fields":{},"shadow":false,"topLevel":false},"^i":{"opcode":"data_setvariableto","next":"a@k","parent":"V(","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"^j":{"opcode":"operator_equals","next":null,"parent":"IK","inputs":{"OPERAND1":[3,"a@l",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"/n":{"opcode":"operator_letter_of","next":null,"parent":"I!","inputs":{"LETTER":[3,"/l",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"R(":{"opcode":"operator_mod","next":null,"parent":"TH","inputs":{"NUM1":[3,"/j",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^k":{"opcode":"data_setvariableto","next":"I#","parent":"Ix","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"^l":{"opcode":"operator_add","next":null,"parent":"V)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^m":{"opcode":"operator_mod","next":null,"parent":"^l","inputs":{"NUM1":[3,"a@m",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^n":{"opcode":"operator_multiply","next":null,"parent":"rX","inputs":{"NUM1":[3,"a@n",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"^o":{"opcode":"operator_lt","next":null,"parent":"_","inputs":{"OPERAND1":[3,"a@o",[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"^p":{"opcode":"operator_divide","next":null,"parent":"]g","inputs":{"NUM1":[3,"a@p",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"]g":{"opcode":"operator_mathop","next":null,"parent":"]f","inputs":{"NUM":[3,"^p",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Uo":{"opcode":"data_addtolist","next":"?`","parent":"Um","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Ts":{"opcode":"data_replaceitemoflist","next":null,"parent":"Tr","inputs":{"INDEX":[3,"U_",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-E":{"opcode":"data_setvariableto","next":":C","parent":"-D","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"]},"shadow":false,"topLevel":false},"^q":{"opcode":"data_changevariableby","next":"Vs","parent":"IA","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"Vs":{"opcode":"pen_setPenColorToColor","next":null,"parent":"^q","inputs":{"COLOR":[3,"Vr",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"^r":{"opcode":"operator_equals","next":null,"parent":"aU","inputs":{"OPERAND1":[3,"a@q",[10,""]],"OPERAND2":[1,[10,"0x03"]]},"fields":{},"shadow":false,"topLevel":false},"^s":{"opcode":"data_addtolist","next":"s;","parent":"cy","inputs":{"ITEM":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[10,""]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"^t":{"opcode":"operator_mod","next":null,"parent":"^u","inputs":{"NUM1":[3,"a@r",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^u":{"opcode":"operator_gt","next":null,"parent":"s=","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"^t",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"^v":{"opcode":"operator_not","next":null,"parent":"s?","inputs":{"OPERAND":[2,"s@"]},"fields":{},"shadow":false,"topLevel":false},"^w":{"opcode":"operator_gt","next":null,"parent":"IS","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a@s",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Sq":{"opcode":"operator_multiply","next":null,"parent":"^x","inputs":{"NUM1":[3,"So",[4,"0"]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"^y":{"opcode":"operator_equals","next":null,"parent":"P","inputs":{"OPERAND1":[3,"a@t",[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"^z":{"opcode":"operator_lt","next":null,"parent":"rs","inputs":{"OPERAND1":[3,"a@u",[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"^A":{"opcode":"data_changevariableby","next":"lf","parent":"cC","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"R+":{"opcode":"data_itemoflist","next":null,"parent":":#","inputs":{"INDEX":[3,"Ta",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"IM":{"opcode":"data_setvariableto","next":"V*","parent":"Tb","inputs":{"VALUE":[3,"a@v",[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"R}":{"opcode":"operator_mod","next":null,"parent":"R|","inputs":{"NUM1":[3,"a@w",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"?v":{"opcode":"operator_equals","next":null,"parent":"s[","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"?u",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"^B":{"opcode":"data_itemoflist","next":null,"parent":"^C","inputs":{"INDEX":[3,"a@x",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^C":{"opcode":"operator_lt","next":null,"parent":"ra","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"^B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ve":{"opcode":"data_itemoflist","next":null,"parent":"s]","inputs":{"INDEX":[3,"Vd",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"-q":{"opcode":"operator_multiply","next":null,"parent":"ZG","inputs":{"NUM1":[3,"-p",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"R)":{"opcode":"data_itemoflist","next":null,"parent":":n","inputs":{"INDEX":[3,"UA",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@o":{"opcode":"operator_mod","next":null,"parent":"@n","inputs":{"NUM1":[3,"a@y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"R,":{"opcode":"data_addtolist","next":":?","parent":"UH","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"RZ":{"opcode":"operator_divide","next":null,"parent":"SR","inputs":{"NUM1":[3,"-F",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"@+":{"opcode":"data_itemoflist","next":null,"parent":"@*","inputs":{"INDEX":[3,";]",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"@.":{"opcode":"data_setvariableto","next":"@-","parent":"?F","inputs":{"VALUE":[1,[10,"255"]]},"fields":{"VARIABLE":["chip8m.collisioncolor","q0Aieeo)Q0k-81exFUOK"]},"shadow":false,"topLevel":false},"ST":{"opcode":"operator_mod","next":null,"parent":"sp","inputs":{"NUM1":[3,"SS",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"TA":{"opcode":"data_itemoflist","next":null,"parent":"s^","inputs":{"INDEX":[3,"Tz",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[b":{"opcode":"procedures_prototype","next":null,"parent":"[a","inputs":{"SAQ$kmM{QR,tYZNrfC!d":[1,"a@z"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.frame %s","argumentids":"[\"SAQ$kmM{QR,tYZNrfC!d\"]","argumentnames":"[\"cycles\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"^D":{"opcode":"operator_equals","next":null,"parent":"sK","inputs":{"OPERAND1":[3,"a@A",[10,""]],"OPERAND2":[3,[12,"A","~kMyjD5[oxb%25@;,!jb"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"^E":{"opcode":"data_setvariableto","next":null,"parent":"?","inputs":{"VALUE":[3,"a@B",[10,""]]},"fields":{"VARIABLE":["chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"]},"shadow":false,"topLevel":false},"^F":{"opcode":"operator_equals","next":null,"parent":"V+","inputs":{"OPERAND1":[3,"a@C",[10,""]],"OPERAND2":[1,[10,"0xFD"]]},"fields":{},"shadow":false,"topLevel":false},"^G":{"opcode":"operator_add","next":null,"parent":"^H","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"s_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^H":{"opcode":"data_itemoflist","next":null,"parent":"^I","inputs":{"INDEX":[3,"^G",[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"^I":{"opcode":"operator_equals","next":null,"parent":"V,","inputs":{"OPERAND1":[3,"^H",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^J":{"opcode":"operator_multiply","next":null,"parent":"s_","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a@D",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^K":{"opcode":"operator_not","next":null,"parent":"s`","inputs":{"OPERAND":[2,"a@E"]},"fields":{},"shadow":false,"topLevel":false},"^L":{"opcode":"data_replaceitemoflist","next":null,"parent":"s`","inputs":{"INDEX":[3,"^M",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"^M":{"opcode":"operator_add","next":null,"parent":"^L","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"s{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^N":{"opcode":"operator_equals","next":null,"parent":"`","inputs":{"OPERAND1":[3,"a@F",[10,""]],"OPERAND2":[1,[10,"0x15"]]},"fields":{},"shadow":false,"topLevel":false},"]Q":{"opcode":"data_itemoflist","next":null,"parent":"s|","inputs":{"INDEX":[3,"]P",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"[q":{"opcode":"operator_mathop","next":null,"parent":"[o","inputs":{"NUM":[3,"[r",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"/]":{"opcode":"data_showvariable","next":"?p","parent":"/@","inputs":{},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"[p":{"opcode":"data_itemoflist","next":null,"parent":"q[","inputs":{"INDEX":[3,"[o",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"^O":{"opcode":"operator_mathop","next":null,"parent":"rv","inputs":{"NUM":[3,":`",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},":`":{"opcode":"operator_divide","next":null,"parent":"^O","inputs":{"NUM1":[3,":_",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"[P":{"opcode":"operator_mathop","next":null,"parent":"[O","inputs":{"NUM":[3,"^P",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^P":{"opcode":"operator_divide","next":null,"parent":"[P","inputs":{"NUM1":[3,"a@G",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[L":{"opcode":"data_deletealloflist","next":"])","parent":"[J","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"^Q":{"opcode":"data_itemoflist","next":null,"parent":"rm","inputs":{"INDEX":[3,"[i",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"[i":{"opcode":"operator_add","next":null,"parent":"^Q","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"[h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-I":{"opcode":"operator_divide","next":null,"parent":"-H","inputs":{"NUM1":[3,"a@H",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^R":{"opcode":"data_itemoflist","next":null,"parent":"^S","inputs":{"INDEX":[3,"a@I",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^S":{"opcode":"operator_multiply","next":null,"parent":"rr","inputs":{"NUM1":[3,"^R",[4,"0"]],"NUM2":[1,[4,"16777216"]]},"fields":{},"shadow":false,"topLevel":false},":D":{"opcode":"data_setvariableto","next":"a@J","parent":":C","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"^T":{"opcode":"data_deletealloflist","next":"^U","parent":"T=","inputs":{},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"^V":{"opcode":"pen_clear","next":"/^","parent":"/H","inputs":{},"fields":{},"shadow":false,"topLevel":false},"/H":{"opcode":"data_setvariableto","next":"^V","parent":"/G","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"^x":{"opcode":"operator_mod","next":null,"parent":"fF","inputs":{"NUM1":[3,"Sq",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"^W":{"opcode":"operator_equals","next":null,"parent":"cl","inputs":{"OPERAND1":[3,"^X",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"^Y":{"opcode":"operator_mod","next":null,"parent":"@K","inputs":{"NUM1":[3,"a@K",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"@K":{"opcode":"operator_add","next":null,"parent":"@J","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^Z":{"opcode":"operator_mod","next":null,"parent":"^!","inputs":{"NUM1":[3,"a@L",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^!":{"opcode":"operator_add","next":null,"parent":"s}","inputs":{"NUM1":[3,"^Z",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"R{":{"opcode":"operator_mathop","next":null,"parent":"R_","inputs":{"NUM":[3,"Sz",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"?H":{"opcode":"data_addtolist","next":"?G","parent":"IB","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"][":{"opcode":"data_itemoflist","next":null,"parent":"IP","inputs":{"INDEX":[3,"]@",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"]L":{"opcode":"data_itemoflist","next":null,"parent":"]K","inputs":{"INDEX":[3,"]}",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"?O":{"opcode":"operator_add","next":null,"parent":"?N","inputs":{"NUM1":[3,"@p",[4,"0"]],"NUM2":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"-.":{"opcode":"sound_setvolumeto","next":"--","parent":"@s","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},";c":{"opcode":"operator_mod","next":null,"parent":";b","inputs":{"NUM1":[3,"?;",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"^g":{"opcode":"data_addtolist","next":";v","parent":"^f","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"Uq":{"opcode":"data_addtolist","next":"Up","parent":"@@","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"R!":{"opcode":"data_addtolist","next":"Sr","parent":"-X","inputs":{"ITEM":[1,[10,"0xFF0000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"[(":{"opcode":"data_itemoflist","next":null,"parent":"s~","inputs":{"INDEX":[3,"Sw",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"Ti":{"opcode":"operator_join","next":null,"parent":"Tg","inputs":{"STRING1":[1,[10," DT: "]],"STRING2":[3,"=l",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"SU":{"opcode":"operator_divide","next":null,"parent":"SS","inputs":{"NUM1":[3,"a@M",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"?F":{"opcode":"data_setvariableto","next":"@.","parent":"?E","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.blendmode","JcH|Bk6g8yO74n|tWOIG"]},"shadow":false,"topLevel":false},"-N":{"opcode":"operator_mathop","next":null,"parent":"-M","inputs":{"NUM":[3,"=w",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"]:":{"opcode":"operator_mod","next":null,"parent":"]/","inputs":{"NUM1":[3,"a@N",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=b":{"opcode":"data_itemoflist","next":null,"parent":"=a","inputs":{"INDEX":[3,".:",[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"^X":{"opcode":"operator_mod","next":null,"parent":"^W","inputs":{"NUM1":[3,"a@O",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"[z":{"opcode":"operator_divide","next":null,"parent":"?V","inputs":{"NUM1":[3,"a@P",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^U":{"opcode":"data_deletealloflist","next":"T@","parent":"^T","inputs":{},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"/^":{"opcode":"pen_setPenSizeTo","next":"/[","parent":"^V","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"RY":{"opcode":"data_addtolist","next":",[","parent":"Uu","inputs":{"ITEM":[1,[10,"0x20"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},",`":{"opcode":"operator_add","next":null,"parent":",_","inputs":{"NUM1":[3,"/r",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},".`":{"opcode":"operator_mod","next":null,"parent":"._","inputs":{"NUM1":[3,"a@Q",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^#":{"opcode":"data_itemoflist","next":null,"parent":"sk","inputs":{"INDEX":[3,"^%",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"^%":{"opcode":"operator_add","next":null,"parent":"^#","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^(":{"opcode":"operator_mod","next":null,"parent":"^%","inputs":{"NUM1":[3,"a@R",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^)":{"opcode":"operator_lt","next":null,"parent":"V-","inputs":{"OPERAND1":[3,"a@S",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^*":{"opcode":"operator_equals","next":null,"parent":"ta","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"^+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"^+":{"opcode":"data_itemoflist","next":null,"parent":"^*","inputs":{"INDEX":[3,"a@T",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^,":{"opcode":"operator_add","next":null,"parent":"f:","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^-":{"opcode":"operator_mod","next":null,"parent":"^,","inputs":{"NUM1":[3,"a@U",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"^.":{"opcode":"data_addtolist","next":"VO","parent":"aj","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^/":{"opcode":"data_deletealloflist","next":"^:","parent":"f/","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"^:":{"opcode":"control_clear_counter","next":"aA","parent":"^/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"^;":{"opcode":"data_itemoflist","next":null,"parent":"f;","inputs":{"INDEX":[3,"a@V",[7,"0"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"^=":{"opcode":"data_itemoflist","next":null,"parent":"IC","inputs":{"INDEX":[3,"^?",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"^?":{"opcode":"operator_add","next":null,"parent":"^=","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"^@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"^@":{"opcode":"operator_mod","next":null,"parent":"^?","inputs":{"NUM1":[3,"a@W",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"=z":{"opcode":"procedures_call","next":"a@X","parent":"=x","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"256"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},";-":{"opcode":"operator_divide","next":null,"parent":";,","inputs":{"NUM1":[3,"?U",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UB":{"opcode":"operator_mathop","next":null,"parent":"UA","inputs":{"NUM":[3,"VK",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"VP":{"opcode":"data_addtolist","next":"ak","parent":"VN","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":H":{"opcode":"operator_add","next":null,"parent":":F","inputs":{"NUM1":[3,"a@Y",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"^[":{"opcode":"operator_multiply","next":null,"parent":"rn","inputs":{"NUM1":[3,"^]",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"^]":{"opcode":"data_itemoflist","next":null,"parent":"^[","inputs":{"INDEX":[3,"^^",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^_":{"opcode":"operator_mathop","next":null,"parent":"ZL","inputs":{"NUM":[3,"IR",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"^`":{"opcode":"operator_equals","next":null,"parent":"su","inputs":{"OPERAND1":[3,"a@Z",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"^{":{"opcode":"operator_lt","next":null,"parent":"rs","inputs":{"OPERAND1":[1,[10,"174"]],"OPERAND2":[3,"a@!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"=o":{"opcode":"data_itemoflist","next":null,"parent":"=n","inputs":{"INDEX":[3,"]!",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"?r":{"opcode":"data_itemoflist","next":null,"parent":"@Z","inputs":{"INDEX":[3,"?q",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},";w":{"opcode":"data_addtolist","next":"@[","parent":";u","inputs":{"ITEM":[1,[10,"0x80"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"^^":{"opcode":"operator_add","next":null,"parent":"^]","inputs":{"NUM1":[3,"a@#",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"VO":{"opcode":"data_addtolist","next":"VN","parent":"^.","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a;C":{"opcode":"procedures_prototype","next":null,"parent":"TG","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Se":{"opcode":"data_setvariableto","next":"Sd","parent":"TF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},"b}":{"opcode":"data_addtolist","next":":t","parent":"Sb","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bN"},"b~":{"opcode":"data_addtolist","next":"Ut","parent":":u","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bO"},"ca":{"opcode":"data_addtolist","next":";o","parent":",[","inputs":{"ITEM":[1,[10,"0x70"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bP"},"(":{"opcode":"data_addtolist","next":";s","parent":";n","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"bQ"},":L":{"opcode":"data_addtolist","next":"c*","parent":";t","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":w":{"opcode":"data_addtolist","next":":v","parent":"c*","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":y":{"opcode":"data_addtolist","next":"c+","parent":":x","inputs":{"ITEM":[1,[10,"0x10"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},":M":{"opcode":"data_addtolist","next":"[n","parent":"c+","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"L":{"opcode":"data_addtolist","next":":)","parent":"TB","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false,"comment":"aJ"},"M":{"opcode":"data_addtolist","next":"UH","parent":":+","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"aK"},"N":{"opcode":"data_addtolist","next":":}","parent":":=","inputs":{"ITEM":[1,[10,"0x40"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a,"},"O":{"opcode":"data_addtolist","next":"@R","parent":":{","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a-"},"aj":{"opcode":"data_addtolist","next":"^.","parent":"@T","inputs":{"ITEM":[1,[10,"0xf0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a."},"ak":{"opcode":"data_addtolist","next":";x","parent":"VP","inputs":{"ITEM":[1,[10,"0x90"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false,"comment":"a/"},"rV":{"opcode":"control_repeat","next":"?*","parent":"Tw","inputs":{"TIMES":[1,[6,"240"]],"SUBSTACK":[2,"a@%"]},"fields":{},"shadow":false,"topLevel":false},"a@%":{"opcode":"data_addtolist","next":null,"parent":"rV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"c{":{"opcode":"control_repeat","next":"c^","parent":"?+","inputs":{"TIMES":[3,"a@(",[6,"0"]],"SUBSTACK":[2,"r="]},"fields":{},"shadow":false,"topLevel":false},"a@(":{"opcode":"data_lengthoflist","next":null,"parent":"c{","inputs":{},"fields":{"LIST":["schip8.font","%F0~QLFTP1H{Enp:A]($"]},"shadow":false,"topLevel":false},"r=":{"opcode":"data_addtolist","next":"a@)","parent":"c{","inputs":{"ITEM":[3,"UI",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a;,":{"opcode":"data_itemoflist","next":null,"parent":"UI","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["schip8.font","%F0~QLFTP1H{Enp:A]($"]},"shadow":false,"topLevel":false},"a@)":{"opcode":"data_changevariableby","next":null,"parent":"r=","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"c^":{"opcode":"control_repeat","next":"f,","parent":"c{","inputs":{"TIMES":[3,"Vw",[6,"0"]],"SUBSTACK":[2,"a@*"]},"fields":{},"shadow":false,"topLevel":false},"a=v":{"opcode":"data_lengthoflist","next":null,"parent":"Vw","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a@*":{"opcode":"data_addtolist","next":null,"parent":"c^","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"f,":{"opcode":"control_if","next":"?m","parent":"c^","inputs":{"CONDITION":[2,"ZH"],"SUBSTACK":[2,"ZM"]},"fields":{},"shadow":false,"topLevel":false},"ZH":{"opcode":"operator_gt","next":null,"parent":"f,","inputs":{"OPERAND1":[3,"a@+",[10,""]],"OPERAND2":[3,"Vx",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a@+":{"opcode":"data_lengthoflist","next":null,"parent":"ZH","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a=w":{"opcode":"data_lengthoflist","next":null,"parent":"Vx","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"ZM":{"opcode":"control_repeat","next":null,"parent":"f,","inputs":{"TIMES":[3,"rA",[6,"0"]],"SUBSTACK":[2,"a@,"]},"fields":{},"shadow":false,"topLevel":false},"rA":{"opcode":"operator_subtract","next":null,"parent":"ZM","inputs":{"NUM1":[3,";a",[4,"0"]],"NUM2":[3,"a@-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:P":{"opcode":"data_lengthoflist","next":null,"parent":";a","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a@-":{"opcode":"data_lengthoflist","next":null,"parent":"rA","inputs":{},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a@,":{"opcode":"data_addtolist","next":null,"parent":"ZM","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"ar":{"opcode":"control_repeat","next":"^|","parent":"?l","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"/N"]},"fields":{},"shadow":false,"topLevel":false},"a?I":{"opcode":"control_get_counter","next":null,"parent":"[v","inputs":{},"fields":{},"shadow":false,"topLevel":false},"^|":{"opcode":"data_setvariableto","next":"^}","parent":"ar","inputs":{"VALUE":[3,[12,"chip8.starting address","oW{#?FHT;/hE!l+8(A64"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"^}":{"opcode":"control_clear_counter","next":"fG","parent":"^|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"fG":{"opcode":"control_repeat","next":"TM","parent":"^}","inputs":{"TIMES":[3,"a@.",[6,"0"]],"SUBSTACK":[2,"SI"]},"fields":{},"shadow":false,"topLevel":false},"a@.":{"opcode":"data_lengthoflist","next":null,"parent":"fG","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"SI":{"opcode":"control_incr_counter","next":"SH","parent":"fG","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a:g":{"opcode":"control_get_counter","next":null,"parent":"/f","inputs":{},"fields":{},"shadow":false,"topLevel":false},"rY":{"opcode":"control_repeat","next":"UJ","parent":"TM","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a@/"]},"fields":{},"shadow":false,"topLevel":false},"a@/":{"opcode":"data_addtolist","next":null,"parent":"rY","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"r?":{"opcode":"control_repeat","next":"@v","parent":"UJ","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a@:"]},"fields":{},"shadow":false,"topLevel":false},"a@:":{"opcode":"data_addtolist","next":null,"parent":"r?","inputs":{"ITEM":[1,[10,"00"]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"IB":{"opcode":"control_repeat","next":"?D","parent":".l","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"?H"]},"fields":{},"shadow":false,"topLevel":false},"rk":{"opcode":"control_repeat","next":"/F","parent":"@,","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"@H"]},"fields":{},"shadow":false,"topLevel":false},"a?p":{"opcode":"data_addtolist","next":null,"parent":"@H","inputs":{"ITEM":[1,[10,"255"]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"a=;":{"opcode":"sensing_resettimer","next":null,"parent":"?n","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a@z":{"opcode":"argument_reporter_string_number","next":null,"parent":"[b","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":true,"topLevel":false},"sK":{"opcode":"control_repeat_until","next":"cz","parent":"@~","inputs":{"CONDITION":[2,"^D"],"SUBSTACK":[2,"^~"]},"fields":{},"shadow":false,"topLevel":false},"a@A":{"opcode":"argument_reporter_string_number","next":null,"parent":"^D","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"rN":{"opcode":"procedures_call","next":null,"parent":"^~","inputs":{"Gru`{{yajzXR|i2r[=dY":[3,"Tc",[10,""]],"gAh@^I[11@/Q9eU(-Qdz":[3,"SN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.opcode %s %s","argumentids":"[\"Gru`{{yajzXR|i2r[=dY\",\"gAh@^I[11@/Q9eU(-Qdz\"]","warp":"true"}},"a;t":{"opcode":"operator_add","next":null,"parent":"Tc","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:`":{"opcode":"operator_add","next":null,"parent":"SN","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"^~":{"opcode":"data_changevariableby","next":"rN","parent":"sK","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"cz":{"opcode":"control_if_else","next":"ZN","parent":"sK","inputs":{"CONDITION":[2,"a@;"],"SUBSTACK":[2,"sU"],"SUBSTACK2":[2,":V"]},"fields":{},"shadow":false,"topLevel":false},"a@;":{"opcode":"operator_gt","next":null,"parent":"cz","inputs":{"OPERAND1":[3,[12,"chip8.sound_timer","AYN*TU~SGNlQh:~mri07"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"sU":{"opcode":"data_replaceitemoflist","next":"q@","parent":"cz","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"[#",[10,""]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"a/O":{"opcode":"operator_subtract","next":null,"parent":"-Q","inputs":{"NUM1":[3,[12,"chip8.pitch","TpKJz2LxQD8g%5l=GF^w"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"q@":{"opcode":"data_setvariableto","next":"fz","parent":"sU","inputs":{"VALUE":[3,"-]",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"a/Y":{"opcode":"data_itemoflist","next":null,"parent":"-^","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"fz":{"opcode":"control_if","next":"a@=","parent":"q@","inputs":{"CONDITION":[2,"a@?"],"SUBSTACK":[2,"SQ"]},"fields":{},"shadow":false,"topLevel":false},"a@?":{"opcode":"operator_equals","next":null,"parent":"fz","inputs":{"OPERAND1":[3,[12,"chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a:|":{"opcode":"data_setvariableto","next":null,"parent":"SQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"a@=":{"opcode":"data_changevariableby","next":null,"parent":"fz","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},"a:J":{"opcode":"data_setvariableto","next":null,"parent":":V","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"ZN":{"opcode":"control_if","next":null,"parent":"cz","inputs":{"CONDITION":[2,"a@@"],"SUBSTACK":[2,"a@["]},"fields":{},"shadow":false,"topLevel":false},"a@@":{"opcode":"operator_gt","next":null,"parent":"ZN","inputs":{"OPERAND1":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@[":{"opcode":"data_changevariableby","next":null,"parent":"ZN","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},"a?n":{"opcode":"argument_reporter_string_number","next":null,"parent":"@D","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"sC":{"opcode":"control_if_else","next":null,"parent":"@E","inputs":{"CONDITION":[2,"a@]"],"SUBSTACK":[2,"s("],"SUBSTACK2":[2,"rB"]},"fields":{},"shadow":false,"topLevel":false},"a@]":{"opcode":"operator_lt","next":null,"parent":"sC","inputs":{"OPERAND1":[1,[10,"17"]],"OPERAND2":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s(":{"opcode":"control_if","next":null,"parent":"sC","inputs":{"CONDITION":[2,"]K"],"SUBSTACK":[2,"_a"]},"fields":{},"shadow":false,"topLevel":false},"a@d":{"opcode":"argument_reporter_string_number","next":null,"parent":"]~","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"_a":{"opcode":"data_setvariableto","next":"a@^","parent":"s(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"a@^":{"opcode":"data_changevariableby","next":null,"parent":"_a","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"rB":{"opcode":"control_if","next":null,"parent":"sC","inputs":{"CONDITION":[2,"a@_"],"SUBSTACK":[2,";d"]},"fields":{},"shadow":false,"topLevel":false},"a@_":{"opcode":"data_listcontainsitem","next":null,"parent":"rB","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"fs":{"opcode":"control_repeat","next":"a@`","parent":";d","inputs":{"TIMES":[3,"a@{",[6,"0"]],"SUBSTACK":[2,"c;"]},"fields":{},"shadow":false,"topLevel":false},"a@{":{"opcode":"data_lengthoflist","next":null,"parent":"fs","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"c;":{"opcode":"control_if","next":"a@|","parent":"fs","inputs":{"CONDITION":[2,";e"],"SUBSTACK":[2,"ZO"]},"fields":{},"shadow":false,"topLevel":false},"a:Q":{"opcode":"data_itemoflist","next":null,"parent":";e","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"ZO":{"opcode":"data_replaceitemoflist","next":null,"parent":"c;","inputs":{"INDEX":[3,"a@}",[7,"0"]],"ITEM":[3,"a@~",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a@}":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZO","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"a@~":{"opcode":"operator_subtract","next":null,"parent":"ZO","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@|":{"opcode":"data_changevariableby","next":null,"parent":"c;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a@`":{"opcode":"data_changevariableby","next":null,"parent":"fs","inputs":{"VALUE":[1,[4,"17"]]},"fields":{"VARIABLE":["chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"]},"shadow":false,"topLevel":false},"IX":{"opcode":"procedures_prototype","next":null,"parent":"[K","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,"a[a"],"x?$mmA.wDn:,20tFR{r?":[1,"a[b"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","argumentnames":"[\"horizontal\",\"vertical\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a[a":{"opcode":"argument_reporter_string_number","next":null,"parent":"IX","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":true,"topLevel":false},"a[b":{"opcode":"argument_reporter_string_number","next":null,"parent":"IX","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":true,"topLevel":false},"ZP":{"opcode":"data_setvariableto","next":"ZQ","parent":"]+","inputs":{"VALUE":[3,"a[c",[10,""]]},"fields":{"VARIABLE":["chip8.screenheight",",2huTPQKyTdw0uS0Mmql"]},"shadow":false,"topLevel":false},"a[c":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZP","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":false,"topLevel":false},"ZQ":{"opcode":"data_setvariableto","next":"ZR","parent":"ZP","inputs":{"VALUE":[3,"a[d",[10,""]]},"fields":{"VARIABLE":["chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"]},"shadow":false,"topLevel":false},"a[d":{"opcode":"argument_reporter_string_number","next":null,"parent":"ZQ","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":false,"topLevel":false},"ZR":{"opcode":"control_repeat_until","next":null,"parent":"ZQ","inputs":{"CONDITION":[2,"q."],"SUBSTACK":[2,"]?"]},"fields":{},"shadow":false,"topLevel":false},"q.":{"opcode":"operator_equals","next":null,"parent":"ZR","inputs":{"OPERAND1":[3,"-#",[10,""]],"OPERAND2":[3,"a[e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q/":{"opcode":"operator_multiply","next":null,"parent":"-#","inputs":{"NUM1":[3,"a[f",[4,"0"]],"NUM2":[3,"a[g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[f":{"opcode":"argument_reporter_string_number","next":null,"parent":"q/","inputs":{},"fields":{"VALUE":["horizontal",null]},"shadow":false,"topLevel":false},"a[g":{"opcode":"argument_reporter_string_number","next":null,"parent":"q/","inputs":{},"fields":{"VALUE":["vertical",null]},"shadow":false,"topLevel":false},"a[e":{"opcode":"data_lengthoflist","next":null,"parent":"q.","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"]?":{"opcode":"data_addtolist","next":"]=","parent":"ZR","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a:u":{"opcode":"procedures_prototype","next":null,"parent":"/,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"cB":{"opcode":"control_if_else","next":"a[h","parent":"?Y","inputs":{"CONDITION":[2,"ZS"],"SUBSTACK":[2,"[E"],"SUBSTACK2":[2,"=,"]},"fields":{},"shadow":false,"topLevel":false},"ZS":{"opcode":"operator_or","next":null,"parent":"cB","inputs":{"OPERAND1":[2,"a[i"],"OPERAND2":[2,"a[j"]},"fields":{},"shadow":false,"topLevel":false},"a[i":{"opcode":"operator_equals","next":null,"parent":"ZS","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Accurate/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"a[j":{"opcode":"operator_equals","next":null,"parent":"ZS","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"f/":{"opcode":"control_if_else","next":null,"parent":"[E","inputs":{"CONDITION":[2,"]S"],"SUBSTACK":[2,"^/"],"SUBSTACK2":[2,"ZT"]},"fields":{},"shadow":false,"topLevel":false},"a?[":{"opcode":"operator_divide","next":null,"parent":"]T","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aA":{"opcode":"data_addtolist","next":"Zv","parent":"^:","inputs":{"ITEM":[3,"ZU",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"Zv":{"opcode":"control_repeat","next":"sn","parent":"aA","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,":f"]},"fields":{},"shadow":false,"topLevel":false},"Zu":{"opcode":"data_setvariableto","next":"sl","parent":":e","inputs":{"VALUE":[3,"tb",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"sl":{"opcode":"control_if","next":null,"parent":"Zu","inputs":{"CONDITION":[2,"=%"],"SUBSTACK":[2,"sm"]},"fields":{},"shadow":false,"topLevel":false},"a=U":{"opcode":"data_itemoflist","next":null,"parent":"=#","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"sm":{"opcode":"data_addtolist","next":"=(","parent":"sl","inputs":{"ITEM":[3,"=)",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a=W":{"opcode":"control_get_counter","next":null,"parent":"=)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a=V":{"opcode":"control_clear_counter","next":null,"parent":"=(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"sn":{"opcode":"data_addtolist","next":"[-","parent":"Zv","inputs":{"ITEM":[3,"=*",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a=X":{"opcode":"control_get_counter","next":null,"parent":"=*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"[-":{"opcode":"control_repeat","next":null,"parent":"sn","inputs":{"TIMES":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[6,"0"]],"SUBSTACK":[2,"[,"]},"fields":{},"shadow":false,"topLevel":false},"r[":{"opcode":"pen_setPenColorToColor","next":"[/","parent":"[.","inputs":{"COLOR":[3,"UM",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a;/":{"opcode":"data_itemoflist","next":null,"parent":"UN","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"c/":{"opcode":"control_repeat","next":"Ur","parent":"[/","inputs":{"TIMES":[3,"Us",[6,"0"]],"SUBSTACK":[2,".d"]},"fields":{},"shadow":false,"topLevel":false},"a;#":{"opcode":"data_lengthoflist","next":null,"parent":"Us","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"IA":{"opcode":"motion_changexby","next":"^q","parent":".d","inputs":{"DX":[3,"a[k",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[k":{"opcode":"data_itemoflist","next":null,"parent":"IA","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a=r":{"opcode":"data_itemoflist","next":null,"parent":"Vt","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a;!":{"opcode":"motion_changeyby","next":null,"parent":"Ur","inputs":{"DY":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"ZT":{"opcode":"motion_changeyby","next":"a[l","parent":"f/","inputs":{"DY":[3,"a[m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[m":{"opcode":"operator_subtract","next":null,"parent":"ZT","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[l":{"opcode":"data_changevariableby","next":null,"parent":"ZT","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"=,":{"opcode":"pen_setPenSizeTo","next":"=+","parent":"cB","inputs":{"SIZE":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"cq":{"opcode":"control_if_else","next":".)","parent":"=+","inputs":{"CONDITION":[2,".*"],"SUBSTACK":[2,"-l"],"SUBSTACK2":[2,"a[n"]},"fields":{},"shadow":false,"topLevel":false},"a/}":{"opcode":"operator_divide","next":null,"parent":".,","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"sq":{"opcode":"data_addtolist","next":"q`","parent":"-m","inputs":{"ITEM":[3,"rL",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"rL":{"opcode":"operator_add","next":null,"parent":"sq","inputs":{"NUM1":[3,"a[o",[4,"0"]],"NUM2":[3,"SF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[o":{"opcode":"data_itemoflist","next":null,"parent":"rL","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a:]":{"opcode":"data_itemoflist","next":null,"parent":"SF","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"q`":{"opcode":"control_repeat","next":"s,","parent":"sq","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,".s"]},"fields":{},"shadow":false,"topLevel":false},"ID":{"opcode":"data_setvariableto","next":"rH","parent":".r","inputs":{"VALUE":[3,"tc",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"rG":{"opcode":"operator_add","next":null,"parent":"tc","inputs":{"NUM1":[3,"a[p",[4,"0"]],"NUM2":[3,"Sf",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[p":{"opcode":"data_itemoflist","next":null,"parent":"rG","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a:+":{"opcode":"data_itemoflist","next":null,"parent":"Sf","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"rH":{"opcode":"control_if","next":null,"parent":"ID","inputs":{"CONDITION":[2,"Sg"],"SUBSTACK":[2,"IG"]},"fields":{},"shadow":false,"topLevel":false},"a:,":{"opcode":"data_itemoflist","next":null,"parent":"Sh","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"IG":{"opcode":"data_addtolist","next":".(","parent":"rH","inputs":{"ITEM":[3,"S|",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a;r":{"opcode":"control_get_counter","next":null,"parent":"S|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a/{":{"opcode":"control_clear_counter","next":null,"parent":".(","inputs":{},"fields":{},"shadow":false,"topLevel":false},"s,":{"opcode":"data_addtolist","next":"=k","parent":"q`","inputs":{"ITEM":[3,"]N",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a?=":{"opcode":"control_get_counter","next":null,"parent":"]N","inputs":{},"fields":{},"shadow":false,"topLevel":false},"r-":{"opcode":"pen_setPenColorToColor","next":"VB","parent":"=j","inputs":{"COLOR":[3,"VC",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a=y":{"opcode":"data_itemoflist","next":null,"parent":"VD","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"ff":{"opcode":"control_repeat","next":"s|","parent":"VB","inputs":{"TIMES":[3,"-}",[6,"0"]],"SUBSTACK":[2,"/p"]},"fields":{},"shadow":false,"topLevel":false},"a/#":{"opcode":"data_lengthoflist","next":null,"parent":"-}","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"rf":{"opcode":"motion_changexby","next":";i","parent":"/p","inputs":{"DX":[3,"a[q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[q":{"opcode":"data_itemoflist","next":null,"parent":"rf","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a:S":{"opcode":"data_itemoflist","next":null,"parent":";f","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"s|":{"opcode":"pen_setPenColorToColor","next":"a[r","parent":"ff","inputs":{"COLOR":[3,"]Q",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a??":{"opcode":"operator_subtract","next":null,"parent":"]O","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a[r":{"opcode":"pen_penUp","next":null,"parent":"s|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a[n":{"opcode":"data_changevariableby","next":null,"parent":"cq","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a/|":{"opcode":"operator_subtract","next":null,"parent":".)","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[h":{"opcode":"data_setvariableto","next":null,"parent":"cB","inputs":{"VALUE":[1,[10,"300"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"a?S":{"opcode":"control_repeat","next":null,"parent":null,"inputs":{"TIMES":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[6,"0"]],"SUBSTACK":[2,"Sk"]},"fields":{},"shadow":false,"topLevel":true,"x":10673,"y":4537},"rI":{"opcode":"control_repeat","next":"TQ","parent":"Sj","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"cG"]},"fields":{},"shadow":false,"topLevel":false},"cG":{"opcode":"control_if_else","next":"fH","parent":"rI","inputs":{"CONDITION":[2,"td"],"SUBSTACK":[2,"c]"],"SUBSTACK2":[2,"o"]},"fields":{},"shadow":false,"topLevel":false},"td":{"opcode":"operator_equals","next":null,"parent":"cG","inputs":{"OPERAND1":[3,"a[s",[10,""]],"OPERAND2":[3,"a[t",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a[s":{"opcode":"data_itemoflist","next":null,"parent":"td","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a[t":{"opcode":"data_itemoflist","next":null,"parent":"td","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"c]":{"opcode":"control_if_else","next":null,"parent":"cG","inputs":{"CONDITION":[2,"UO"],"SUBSTACK":[2,"a[u"],"SUBSTACK2":[2,"a[v"]},"fields":{},"shadow":false,"topLevel":false},"a;:":{"opcode":"data_itemoflist","next":null,"parent":"UO","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a[u":{"opcode":"pen_setPenColorToColor","next":null,"parent":"c]","inputs":{"COLOR":[1,[9,"#ffff00"]]},"fields":{},"shadow":false,"topLevel":false},"a[v":{"opcode":"pen_setPenColorToColor","next":null,"parent":"c]","inputs":{"COLOR":[1,[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"o":{"opcode":"control_if_else","next":null,"parent":"cG","inputs":{"CONDITION":[2,"TS"],"SUBSTACK":[2,"a[w"],"SUBSTACK2":[2,"a[x"]},"fields":{},"shadow":false,"topLevel":false},"a;L":{"opcode":"data_itemoflist","next":null,"parent":"TS","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a[w":{"opcode":"pen_setPenColorToColor","next":null,"parent":"o","inputs":{"COLOR":[1,[9,"#00ff00"]]},"fields":{},"shadow":false,"topLevel":false},"a[x":{"opcode":"pen_setPenColorToColor","next":null,"parent":"o","inputs":{"COLOR":[1,[9,"#ff0000"]]},"fields":{},"shadow":false,"topLevel":false},"fH":{"opcode":"control_if","next":"a[y","parent":"cG","inputs":{"CONDITION":[2,"TT"],"SUBSTACK":[2,"a[z"]},"fields":{},"shadow":false,"topLevel":false},"a;M":{"opcode":"operator_mod","next":null,"parent":"TU","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[z":{"opcode":"motion_changexby","next":null,"parent":"fH","inputs":{"DX":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[y":{"opcode":"data_changevariableby","next":null,"parent":"fH","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a;N":{"opcode":"operator_subtract","next":null,"parent":"TR","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"c8scrnsize","D#tUdeeQG3WU9xi$i5/|"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;O":{"opcode":"procedures_prototype","next":null,"parent":"TV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.get_keyboard","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"r!":{"opcode":"data_addtolist","next":"q|","parent":"TW","inputs":{"ITEM":[3,"](",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"q{":{"opcode":"operator_or","next":null,"parent":"](","inputs":{"OPERAND1":[2,"te"],"OPERAND2":[2,".u"]},"fields":{},"shadow":false,"topLevel":false},"te":{"opcode":"sensing_keypressed","next":null,"parent":"q{","inputs":{"KEY_OPTION":[3,"a[A","a[B"]},"fields":{},"shadow":false,"topLevel":false},"a[A":{"opcode":"data_itemoflist","next":null,"parent":"te","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[B":{"opcode":"sensing_keyoptions","next":null,"parent":"te","inputs":{},"fields":{"KEY_OPTION":["x",null]},"shadow":true,"topLevel":false},"a/.":{"opcode":"data_itemoflist","next":null,"parent":".u","inputs":{"INDEX":[1,[7,"14"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"q|":{"opcode":"data_addtolist","next":"sW","parent":"r!","inputs":{"ITEM":[3,".v",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"q}":{"opcode":"operator_or","next":null,"parent":".v","inputs":{"OPERAND1":[2,"tf"],"OPERAND2":[2,"@z"]},"fields":{},"shadow":false,"topLevel":false},"tf":{"opcode":"sensing_keypressed","next":null,"parent":"q}","inputs":{"KEY_OPTION":[3,"a[C","a[D"]},"fields":{},"shadow":false,"topLevel":false},"a[C":{"opcode":"data_itemoflist","next":null,"parent":"tf","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[D":{"opcode":"sensing_keyoptions","next":null,"parent":"tf","inputs":{},"fields":{"KEY_OPTION":["1",null]},"shadow":true,"topLevel":false},"a?l":{"opcode":"data_itemoflist","next":null,"parent":"@z","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"sW":{"opcode":"data_addtolist","next":"sZ","parent":"q|","inputs":{"ITEM":[3,"[_",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"sz":{"opcode":"operator_or","next":null,"parent":"[_","inputs":{"OPERAND1":[2,"tg"],"OPERAND2":[2,"?}"]},"fields":{},"shadow":false,"topLevel":false},"tg":{"opcode":"sensing_keypressed","next":null,"parent":"sz","inputs":{"KEY_OPTION":[3,"a[E","a[F"]},"fields":{},"shadow":false,"topLevel":false},"a[E":{"opcode":"data_itemoflist","next":null,"parent":"tg","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[F":{"opcode":"sensing_keyoptions","next":null,"parent":"tg","inputs":{},"fields":{"KEY_OPTION":["2",null]},"shadow":true,"topLevel":false},"a?e":{"opcode":"data_itemoflist","next":null,"parent":"?}","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"sZ":{"opcode":"data_addtolist","next":"ZL","parent":"sW","inputs":{"ITEM":[3,"]u",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"sQ":{"opcode":"operator_or","next":null,"parent":"]u","inputs":{"OPERAND1":[2,"th"],"OPERAND2":[2,"[F"]},"fields":{},"shadow":false,"topLevel":false},"th":{"opcode":"sensing_keypressed","next":null,"parent":"sQ","inputs":{"KEY_OPTION":[3,"a[G","a[H"]},"fields":{},"shadow":false,"topLevel":false},"a[G":{"opcode":"data_itemoflist","next":null,"parent":"th","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[H":{"opcode":"sensing_keyoptions","next":null,"parent":"th","inputs":{},"fields":{"KEY_OPTION":["3",null]},"shadow":true,"topLevel":false},"a?L":{"opcode":"data_itemoflist","next":null,"parent":"[F","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"ZL":{"opcode":"data_addtolist","next":"sG","parent":"sZ","inputs":{"ITEM":[3,"^_",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"IR":{"opcode":"operator_or","next":null,"parent":"^_","inputs":{"OPERAND1":[2,"ti"],"OPERAND2":[2,"?e"]},"fields":{},"shadow":false,"topLevel":false},"ti":{"opcode":"sensing_keypressed","next":null,"parent":"IR","inputs":{"KEY_OPTION":[3,"a[I","a[J"]},"fields":{},"shadow":false,"topLevel":false},"a[I":{"opcode":"data_itemoflist","next":null,"parent":"ti","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[J":{"opcode":"sensing_keyoptions","next":null,"parent":"ti","inputs":{},"fields":{"KEY_OPTION":["q",null]},"shadow":true,"topLevel":false},"a=-":{"opcode":"data_itemoflist","next":null,"parent":"?e","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"sG":{"opcode":"data_addtolist","next":"r]","parent":"ZL","inputs":{"ITEM":[3,"@X",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"Zz":{"opcode":"operator_or","next":null,"parent":"@X","inputs":{"OPERAND1":[2,"tj"],"OPERAND2":[2,":p"]},"fields":{},"shadow":false,"topLevel":false},"tj":{"opcode":"sensing_keypressed","next":null,"parent":"Zz","inputs":{"KEY_OPTION":[3,"a[K","a[L"]},"fields":{},"shadow":false,"topLevel":false},"a[K":{"opcode":"data_itemoflist","next":null,"parent":"tj","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[L":{"opcode":"sensing_keyoptions","next":null,"parent":"tj","inputs":{},"fields":{"KEY_OPTION":["w",null]},"shadow":true,"topLevel":false},"a:B":{"opcode":"data_itemoflist","next":null,"parent":":p","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"r]":{"opcode":"data_addtolist","next":"r_","parent":"sG","inputs":{"ITEM":[3,"UP",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"r^":{"opcode":"operator_or","next":null,"parent":"UP","inputs":{"OPERAND1":[2,"tk"],"OPERAND2":[2,"UQ"]},"fields":{},"shadow":false,"topLevel":false},"tk":{"opcode":"sensing_keypressed","next":null,"parent":"r^","inputs":{"KEY_OPTION":[3,"a[M","a[N"]},"fields":{},"shadow":false,"topLevel":false},"a[M":{"opcode":"data_itemoflist","next":null,"parent":"tk","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[N":{"opcode":"sensing_keyoptions","next":null,"parent":"tk","inputs":{},"fields":{"KEY_OPTION":["e",null]},"shadow":true,"topLevel":false},"a;;":{"opcode":"data_itemoflist","next":null,"parent":"UQ","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"r_":{"opcode":"data_addtolist","next":"sf","parent":"r]","inputs":{"ITEM":[3,"UR",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"q:":{"opcode":"operator_or","next":null,"parent":"UR","inputs":{"OPERAND1":[2,"tl"],"OPERAND2":[2,"-("]},"fields":{},"shadow":false,"topLevel":false},"tl":{"opcode":"sensing_keypressed","next":null,"parent":"q:","inputs":{"KEY_OPTION":[3,"a[O","a[P"]},"fields":{},"shadow":false,"topLevel":false},"a[O":{"opcode":"data_itemoflist","next":null,"parent":"tl","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[P":{"opcode":"sensing_keyoptions","next":null,"parent":"tl","inputs":{},"fields":{"KEY_OPTION":["a",null]},"shadow":true,"topLevel":false},"a/T":{"opcode":"data_itemoflist","next":null,"parent":"-(","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"sf":{"opcode":"data_addtolist","next":"st","parent":"r_","inputs":{"ITEM":[3,"=r",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"ZB":{"opcode":"operator_or","next":null,"parent":"=r","inputs":{"OPERAND1":[2,"tm"],"OPERAND2":[2,"=s"]},"fields":{},"shadow":false,"topLevel":false},"tm":{"opcode":"sensing_keypressed","next":null,"parent":"ZB","inputs":{"KEY_OPTION":[3,"a[Q","a[R"]},"fields":{},"shadow":false,"topLevel":false},"a[Q":{"opcode":"data_itemoflist","next":null,"parent":"tm","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[R":{"opcode":"sensing_keyoptions","next":null,"parent":"tm","inputs":{},"fields":{"KEY_OPTION":["s",null]},"shadow":true,"topLevel":false},"a=m":{"opcode":"data_itemoflist","next":null,"parent":"=s","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"st":{"opcode":"data_addtolist","next":"IU","parent":"sf","inputs":{"ITEM":[3,"?Z",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"su":{"opcode":"operator_or","next":null,"parent":"?Z","inputs":{"OPERAND1":[2,"tn"],"OPERAND2":[2,"^`"]},"fields":{},"shadow":false,"topLevel":false},"tn":{"opcode":"sensing_keypressed","next":null,"parent":"su","inputs":{"KEY_OPTION":[3,"a[S","a[T"]},"fields":{},"shadow":false,"topLevel":false},"a[S":{"opcode":"data_itemoflist","next":null,"parent":"tn","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[T":{"opcode":"sensing_keyoptions","next":null,"parent":"tn","inputs":{},"fields":{"KEY_OPTION":["d",null]},"shadow":true,"topLevel":false},"a@Z":{"opcode":"data_itemoflist","next":null,"parent":"^`","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"IU":{"opcode":"data_addtolist","next":"qX","parent":"st","inputs":{"ITEM":[3,"?J",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"II":{"opcode":"operator_or","next":null,"parent":"?J","inputs":{"OPERAND1":[2,"to"],"OPERAND2":[2,":z"]},"fields":{},"shadow":false,"topLevel":false},"to":{"opcode":"sensing_keypressed","next":null,"parent":"II","inputs":{"KEY_OPTION":[3,"a[U","a[V"]},"fields":{},"shadow":false,"topLevel":false},"a[U":{"opcode":"data_itemoflist","next":null,"parent":"to","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[V":{"opcode":"sensing_keyoptions","next":null,"parent":"to","inputs":{},"fields":{"KEY_OPTION":["z",null]},"shadow":true,"topLevel":false},"a:D":{"opcode":"data_itemoflist","next":null,"parent":":z","inputs":{"INDEX":[1,[7,"13"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"qX":{"opcode":"data_addtolist","next":"s:","parent":"IU","inputs":{"ITEM":[3,",%",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"qY":{"opcode":"operator_or","next":null,"parent":",%","inputs":{"OPERAND1":[2,"tp"],"OPERAND2":[2,"]%"]},"fields":{},"shadow":false,"topLevel":false},"tp":{"opcode":"sensing_keypressed","next":null,"parent":"qY","inputs":{"KEY_OPTION":[3,"a[W","a[X"]},"fields":{},"shadow":false,"topLevel":false},"a[W":{"opcode":"data_itemoflist","next":null,"parent":"tp","inputs":{"INDEX":[1,[7,"12"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[X":{"opcode":"sensing_keyoptions","next":null,"parent":"tp","inputs":{},"fields":{"KEY_OPTION":["c",null]},"shadow":true,"topLevel":false},"a?|":{"opcode":"data_itemoflist","next":null,"parent":"]%","inputs":{"INDEX":[1,[7,"15"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"s:":{"opcode":"data_addtolist","next":"rp","parent":"qX","inputs":{"ITEM":[3,"],",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"ZA":{"opcode":"operator_or","next":null,"parent":"],","inputs":{"OPERAND1":[2,"tq"],"OPERAND2":[2,":q"]},"fields":{},"shadow":false,"topLevel":false},"tq":{"opcode":"sensing_keypressed","next":null,"parent":"ZA","inputs":{"KEY_OPTION":[3,"a[Y","a[Z"]},"fields":{},"shadow":false,"topLevel":false},"a[Y":{"opcode":"data_itemoflist","next":null,"parent":"tq","inputs":{"INDEX":[1,[7,"13"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[Z":{"opcode":"sensing_keyoptions","next":null,"parent":"tq","inputs":{},"fields":{"KEY_OPTION":["4",null]},"shadow":true,"topLevel":false},"a:C":{"opcode":"data_itemoflist","next":null,"parent":":q","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"rp":{"opcode":"data_addtolist","next":"rU","parent":"s:","inputs":{"ITEM":[3,":r",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"rq":{"opcode":"operator_or","next":null,"parent":":r","inputs":{"OPERAND1":[2,"tr"],"OPERAND2":[2,"S]"]},"fields":{},"shadow":false,"topLevel":false},"tr":{"opcode":"sensing_keypressed","next":null,"parent":"rq","inputs":{"KEY_OPTION":[3,"a[!","a[#"]},"fields":{},"shadow":false,"topLevel":false},"a[!":{"opcode":"data_itemoflist","next":null,"parent":"tr","inputs":{"INDEX":[1,[7,"14"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[#":{"opcode":"sensing_keyoptions","next":null,"parent":"tr","inputs":{},"fields":{"KEY_OPTION":["r",null]},"shadow":true,"topLevel":false},"a;p":{"opcode":"data_itemoflist","next":null,"parent":"S]","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"rU":{"opcode":"data_addtolist","next":"S^","parent":"rp","inputs":{"ITEM":[3,"S`",[10,""]]},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"IL":{"opcode":"operator_or","next":null,"parent":"S`","inputs":{"OPERAND1":[2,"ts"],"OPERAND2":[2,"S{"]},"fields":{},"shadow":false,"topLevel":false},"ts":{"opcode":"sensing_keypressed","next":null,"parent":"IL","inputs":{"KEY_OPTION":[3,"a[%","a[("]},"fields":{},"shadow":false,"topLevel":false},"a[%":{"opcode":"data_itemoflist","next":null,"parent":"ts","inputs":{"INDEX":[1,[7,"15"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[(":{"opcode":"sensing_keyoptions","next":null,"parent":"ts","inputs":{},"fields":{"KEY_OPTION":["f",null]},"shadow":true,"topLevel":false},"a;q":{"opcode":"data_itemoflist","next":null,"parent":"S{","inputs":{"INDEX":[1,[7,"12"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"IK":{"opcode":"operator_or","next":null,"parent":"S_","inputs":{"OPERAND1":[2,"tt"],"OPERAND2":[2,"^j"]},"fields":{},"shadow":false,"topLevel":false},"tt":{"opcode":"sensing_keypressed","next":null,"parent":"IK","inputs":{"KEY_OPTION":[3,"a[)","a[*"]},"fields":{},"shadow":false,"topLevel":false},"a[)":{"opcode":"data_itemoflist","next":null,"parent":"tt","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"a[*":{"opcode":"sensing_keyoptions","next":null,"parent":"tt","inputs":{},"fields":{"KEY_OPTION":["v",null]},"shadow":true,"topLevel":false},"a@l":{"opcode":"data_itemoflist","next":null,"parent":"^j","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":["Mobile Keypad state","HBshDh%Y+0(5_G*i%?=U-controller 1 state-list"]},"shadow":false,"topLevel":false},"a;P":{"opcode":"argument_reporter_string_number","next":null,"parent":"TZ","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":true,"topLevel":false},"r#":{"opcode":"operator_join","next":null,"parent":"TY","inputs":{"STRING1":[3,"tu",[10,""]],"STRING2":[3,"I!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"tu":{"opcode":"operator_join","next":null,"parent":"r#","inputs":{"STRING1":[3,"_b",[10,""]],"STRING2":[3,"_c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_b":{"opcode":"operator_letter_of","next":null,"parent":"tu","inputs":{"LETTER":[3,"_d",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"_d":{"opcode":"operator_add","next":null,"parent":"_b","inputs":{"NUM1":[3,"_e",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_e":{"opcode":"operator_mod","next":null,"parent":"_d","inputs":{"NUM1":[3,"a[+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a[+":{"opcode":"argument_reporter_string_number","next":null,"parent":"_e","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"_c":{"opcode":"operator_letter_of","next":null,"parent":"tu","inputs":{"LETTER":[3,"_f",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"_f":{"opcode":"operator_add","next":null,"parent":"_c","inputs":{"NUM1":[3,"_g",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_g":{"opcode":"operator_mod","next":null,"parent":"_f","inputs":{"NUM1":[3,"_h",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"_h":{"opcode":"operator_mathop","next":null,"parent":"_g","inputs":{"NUM":[3,"_i",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_i":{"opcode":"operator_divide","next":null,"parent":"_h","inputs":{"NUM1":[3,"a[,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a[,":{"opcode":"argument_reporter_string_number","next":null,"parent":"_i","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"I!":{"opcode":"operator_join","next":null,"parent":"r#","inputs":{"STRING1":[3,"TI",[10,""]],"STRING2":[3,"/n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"TI":{"opcode":"operator_letter_of","next":null,"parent":"I!","inputs":{"LETTER":[3,"TH",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"a:i":{"opcode":"argument_reporter_string_number","next":null,"parent":"/i","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"a@a":{"opcode":"argument_reporter_string_number","next":null,"parent":"/o","inputs":{},"fields":{"VALUE":["Decimal Number",null]},"shadow":false,"topLevel":false},"a[-":{"opcode":"event_whenbroadcastreceived","next":"cH","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Chip-8","onPsFYdb^;g,DoWfegZ6"]},"shadow":false,"topLevel":true,"x":-739,"y":444},"cH":{"opcode":"control_if_else","next":"a[.","parent":"a[-","inputs":{"CONDITION":[2,"a[/"],"SUBSTACK":[2,"_j"],"SUBSTACK2":[2,"a[:"]},"fields":{},"shadow":false,"topLevel":false},"a[/":{"opcode":"operator_equals","next":null,"parent":"cH","inputs":{"OPERAND1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"OPERAND2":[1,[10,"SpaceFight2091 "]]},"fields":{},"shadow":false,"topLevel":false},"_j":{"opcode":"data_setvariableto","next":"a[;","parent":"cH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"a[;":{"opcode":"data_setvariableto","next":null,"parent":"_j","inputs":{"VALUE":[1,[10,"SCHIP"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"a[:":{"opcode":"data_setvariableto","next":null,"parent":"cH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["SF2091! fix","r(t;~7h#1V?m.J:,GVQv"]},"shadow":false,"topLevel":false},"a[.":{"opcode":"event_broadcast","next":null,"parent":"cH","inputs":{"BROADCAST_INPUT":[1,[11,"WAVE-8 reset","|c=UL-|1:KK,V8,g?krF"]]},"fields":{},"shadow":false,"topLevel":false},"_k":{"opcode":"procedures_definition","next":"_l","parent":null,"inputs":{"custom_block":[1,"tv"]},"fields":{},"shadow":false,"topLevel":true,"x":1722,"y":1606},"tv":{"opcode":"procedures_prototype","next":null,"parent":"_k","inputs":{"Gru`{{yajzXR|i2r[=dY":[1,"a[="],"gAh@^I[11@/Q9eU(-Qdz":[1,"a[?"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.opcode %s %s","argumentids":"[\"Gru`{{yajzXR|i2r[=dY\",\"gAh@^I[11@/Q9eU(-Qdz\"]","argumentnames":"[\"op1\",\"op2\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"a[=":{"opcode":"argument_reporter_string_number","next":null,"parent":"tv","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":true,"topLevel":false},"a[?":{"opcode":"argument_reporter_string_number","next":null,"parent":"tv","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":true,"topLevel":false},"_l":{"opcode":"data_changevariableby","next":"a","parent":"_k","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a":{"opcode":"control_if","next":"fM","parent":"_l","inputs":{"CONDITION":[2,"tw"],"SUBSTACK":[2,"f="]},"fields":{},"shadow":false,"topLevel":false,"comment":"aI"},"tw":{"opcode":"operator_or","next":null,"parent":"a","inputs":{"OPERAND1":[2,"tx"],"OPERAND2":[2,"ty"]},"fields":{},"shadow":false,"topLevel":false},"tx":{"opcode":"operator_and","next":null,"parent":"tw","inputs":{"OPERAND1":[2,"_m"],"OPERAND2":[2,"_n"]},"fields":{},"shadow":false,"topLevel":false},"_m":{"opcode":"operator_equals","next":null,"parent":"tx","inputs":{"OPERAND1":[3,"a[@",[10,""]],"OPERAND2":[1,[10,"0x00"]]},"fields":{},"shadow":false,"topLevel":false},"a[@":{"opcode":"argument_reporter_string_number","next":null,"parent":"_m","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"_n":{"opcode":"operator_equals","next":null,"parent":"tx","inputs":{"OPERAND1":[3,"a[[",[10,""]],"OPERAND2":[1,[10,"0xe0"]]},"fields":{},"shadow":false,"topLevel":false},"a[[":{"opcode":"argument_reporter_string_number","next":null,"parent":"_n","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"ty":{"opcode":"operator_and","next":null,"parent":"tw","inputs":{"OPERAND1":[2,"_o"],"OPERAND2":[2,"_p"]},"fields":{},"shadow":false,"topLevel":false},"_o":{"opcode":"operator_equals","next":null,"parent":"ty","inputs":{"OPERAND1":[3,"a[]",[10,""]],"OPERAND2":[1,[10,"0x02"]]},"fields":{},"shadow":false,"topLevel":false},"a[]":{"opcode":"argument_reporter_string_number","next":null,"parent":"_o","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"_p":{"opcode":"operator_equals","next":null,"parent":"ty","inputs":{"OPERAND1":[3,"a[^",[10,""]],"OPERAND2":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"a[^":{"opcode":"argument_reporter_string_number","next":null,"parent":"_p","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"f=":{"opcode":"control_if","next":"a[_","parent":"a","inputs":{"CONDITION":[2,"a[`"],"SUBSTACK":[2,"_q"]},"fields":{},"shadow":false,"topLevel":false},"a[`":{"opcode":"operator_lt","next":null,"parent":"f=","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_q":{"opcode":"data_setvariableto","next":"f?","parent":"f=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"f?":{"opcode":"control_if","next":"f@","parent":"_q","inputs":{"CONDITION":[2,"rP"],"SUBSTACK":[2,"a[{"]},"fields":{},"shadow":false,"topLevel":false},"rP":{"opcode":"operator_and","next":null,"parent":"f?","inputs":{"OPERAND1":[2,";%"],"OPERAND2":[2,"a[|"]},"fields":{},"shadow":false,"topLevel":false},"a:}":{"opcode":"argument_reporter_string_number","next":null,"parent":";%","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a[|":{"opcode":"operator_equals","next":null,"parent":"rP","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"a[{":{"opcode":"procedures_call","next":null,"parent":"f?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"f@":{"opcode":"control_if","next":"f[","parent":"f?","inputs":{"CONDITION":[2,"_r"],"SUBSTACK":[2,"_s"]},"fields":{},"shadow":false,"topLevel":false},"_s":{"opcode":"data_deletealloflist","next":"tz","parent":"f@","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"tz":{"opcode":"control_repeat","next":null,"parent":"_s","inputs":{"TIMES":[3,"a[}",[6,"0"]],"SUBSTACK":[2,"a[~"]},"fields":{},"shadow":false,"topLevel":false},"a[}":{"opcode":"operator_multiply","next":null,"parent":"tz","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a[~":{"opcode":"data_addtolist","next":null,"parent":"tz","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"f[":{"opcode":"control_if","next":"f]","parent":"f@","inputs":{"CONDITION":[2,"a]a"],"SUBSTACK":[2,"_t"]},"fields":{},"shadow":false,"topLevel":false},"a]a":{"opcode":"operator_lt","next":null,"parent":"f[","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_t":{"opcode":"data_deletealloflist","next":"tA","parent":"f[","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"tA":{"opcode":"control_repeat","next":null,"parent":"_t","inputs":{"TIMES":[3,"a]b",[6,"0"]],"SUBSTACK":[2,"a]c"]},"fields":{},"shadow":false,"topLevel":false},"a]b":{"opcode":"operator_multiply","next":null,"parent":"tA","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]c":{"opcode":"data_addtolist","next":null,"parent":"tA","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a[_":{"opcode":"control_stop","next":null,"parent":"f=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fM":{"opcode":"control_if","next":"fm","parent":"a","inputs":{"CONDITION":[2,"US"],"SUBSTACK":[2,"d"]},"fields":{},"shadow":false,"topLevel":false},"a;=":{"opcode":"argument_reporter_string_number","next":null,"parent":"US","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"d":{"opcode":"control_if","next":"cY","parent":"fM","inputs":{"CONDITION":[2,"r`"],"SUBSTACK":[2,"fN"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aL"},"r`":{"opcode":"operator_and","next":null,"parent":"d","inputs":{"OPERAND1":[2,"UT"],"OPERAND2":[2,"UU"]},"fields":{},"shadow":false,"topLevel":false},"a;?":{"opcode":"argument_reporter_string_number","next":null,"parent":"UT","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a;@":{"opcode":"argument_reporter_string_number","next":null,"parent":"UU","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fN":{"opcode":"control_if","next":"a]d","parent":"d","inputs":{"CONDITION":[2,"a]e"],"SUBSTACK":[2,"UV"]},"fields":{},"shadow":false,"topLevel":false},"a]e":{"opcode":"operator_lt","next":null,"parent":"fN","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r{":{"opcode":"data_setvariableto","next":"f^","parent":"UV","inputs":{"VALUE":[3,"UW",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a;[":{"opcode":"argument_reporter_string_number","next":null,"parent":"UW","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"f^":{"opcode":"control_if","next":"tB","parent":"r{","inputs":{"CONDITION":[2,"tC"],"SUBSTACK":[2,"f_"]},"fields":{},"shadow":false,"topLevel":false},"tC":{"opcode":"operator_and","next":null,"parent":"f^","inputs":{"OPERAND1":[2,"a]f"],"OPERAND2":[2,"a]g"]},"fields":{},"shadow":false,"topLevel":false},"a]f":{"opcode":"operator_equals","next":null,"parent":"tC","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"a]g":{"opcode":"operator_equals","next":null,"parent":"tC","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"fO":{"opcode":"control_if_else","next":null,"parent":"f_","inputs":{"CONDITION":[2,"a]h"],"SUBSTACK":[2,"UX"],"SUBSTACK2":[2,"a]i"]},"fields":{},"shadow":false,"topLevel":false},"a]h":{"opcode":"operator_equals","next":null,"parent":"fO","inputs":{"OPERAND1":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;]":{"opcode":"data_setvariableto","next":null,"parent":"UX","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"a]i":{"opcode":"data_setvariableto","next":null,"parent":"fO","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"tB":{"opcode":"control_repeat","next":null,"parent":"f^","inputs":{"TIMES":[3,"a]j",[6,"0"]],"SUBSTACK":[2,"fP"]},"fields":{},"shadow":false,"topLevel":false},"a]j":{"opcode":"operator_multiply","next":null,"parent":"tB","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fP":{"opcode":"control_if","next":"fQ","parent":"tB","inputs":{"CONDITION":[2,"UY"],"SUBSTACK":[2,"UZ"]},"fields":{},"shadow":false,"topLevel":false},"a;_":{"opcode":"data_deleteoflist","next":null,"parent":"UZ","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"fQ":{"opcode":"control_if","next":"f`","parent":"fP","inputs":{"CONDITION":[2,"U!"],"SUBSTACK":[2,"U#"]},"fields":{},"shadow":false,"topLevel":false},"a;{":{"opcode":"data_deleteoflist","next":null,"parent":"U#","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a]d":{"opcode":"control_stop","next":null,"parent":"fN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"rs":{"opcode":"operator_and","next":null,"parent":"cY","inputs":{"OPERAND1":[2,"^{"],"OPERAND2":[2,"^z"]},"fields":{},"shadow":false,"topLevel":false},"a@!":{"opcode":"argument_reporter_string_number","next":null,"parent":"^{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a@u":{"opcode":"argument_reporter_string_number","next":null,"parent":"^z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fo":{"opcode":"control_if","next":"a]k","parent":"cY","inputs":{"CONDITION":[2,"a]l"],"SUBSTACK":[2,"_u"]},"fields":{},"shadow":false,"topLevel":false},"a]l":{"opcode":"operator_lt","next":null,"parent":"fo","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_u":{"opcode":"data_setvariableto","next":"Zs","parent":"fo","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"Zs":{"opcode":"data_setvariableto","next":"f{","parent":"_u","inputs":{"VALUE":[3,":a",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a:w":{"opcode":"argument_reporter_string_number","next":null,"parent":":a","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"tD":{"opcode":"control_repeat","next":null,"parent":"f{","inputs":{"TIMES":[3,"a]m",[6,"0"]],"SUBSTACK":[2,"f|"]},"fields":{},"shadow":false,"topLevel":false},"a]m":{"opcode":"operator_multiply","next":null,"parent":"tD","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f|":{"opcode":"control_if","next":"f}","parent":"tD","inputs":{"CONDITION":[2,"_v"],"SUBSTACK":[2,"_w"]},"fields":{},"shadow":false,"topLevel":false},"a]n":{"opcode":"data_deleteoflist","next":null,"parent":"_w","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"f}":{"opcode":"control_if","next":"f~","parent":"f|","inputs":{"CONDITION":[2,"_x"],"SUBSTACK":[2,"_y"]},"fields":{},"shadow":false,"topLevel":false},"a]k":{"opcode":"control_stop","next":null,"parent":"fo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},":I":{"opcode":"operator_equals","next":null,"parent":"cZ","inputs":{"OPERAND1":[3,"a]o",[10,""]],"OPERAND2":[1,[10,"0xE1"]]},"fields":{},"shadow":false,"topLevel":false},"a]o":{"opcode":"argument_reporter_string_number","next":null,"parent":":I","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},":J":{"opcode":"data_setvariableto","next":"ga","parent":"cZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"ga":{"opcode":"control_if","next":"a]p","parent":":J","inputs":{"CONDITION":[2,"a]q"],"SUBSTACK":[2,"_z"]},"fields":{},"shadow":false,"topLevel":false},"a]q":{"opcode":"operator_lt","next":null,"parent":"ga","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_z":{"opcode":"data_setvariableto","next":"gb","parent":"ga","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"gb":{"opcode":"control_if","next":"_A","parent":"_z","inputs":{"CONDITION":[2,"_B"],"SUBSTACK":[2,"tE"]},"fields":{},"shadow":false,"topLevel":false},"tE":{"opcode":"control_repeat","next":null,"parent":"gb","inputs":{"TIMES":[3,"a]r",[6,"0"]],"SUBSTACK":[2,"_C"]},"fields":{},"shadow":false,"topLevel":false},"a]r":{"opcode":"operator_multiply","next":null,"parent":"tE","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_C":{"opcode":"data_changevariableby","next":"_D","parent":"tE","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"_D":{"opcode":"data_replaceitemoflist","next":null,"parent":"_C","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"_E",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"_E":{"opcode":"operator_mod","next":null,"parent":"_D","inputs":{"NUM1":[3,"_F",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_F":{"opcode":"operator_add","next":null,"parent":"_E","inputs":{"NUM1":[3,"a]s",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a]s":{"opcode":"data_itemoflist","next":null,"parent":"_F","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"_A":{"opcode":"data_setvariableto","next":"fc","parent":"gb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"fc":{"opcode":"control_if","next":"_G","parent":"_A","inputs":{"CONDITION":[2,",{"],"SUBSTACK":[2,"q("]},"fields":{},"shadow":false,"topLevel":false},"q(":{"opcode":"control_repeat","next":null,"parent":"fc","inputs":{"TIMES":[3,"a]t",[6,"0"]],"SUBSTACK":[2,",|"]},"fields":{},"shadow":false,"topLevel":false},"a]t":{"opcode":"operator_multiply","next":null,"parent":"q(","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:U":{"opcode":"data_itemoflist","next":null,"parent":";z","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a]p":{"opcode":"control_stop","next":null,"parent":"ga","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"f":{"opcode":"control_if","next":"c!","parent":"cZ","inputs":{"CONDITION":[2,";A"],"SUBSTACK":[2,"sh"]},"fields":{},"shadow":false,"topLevel":false,"comment":"e#"},"a:V":{"opcode":"argument_reporter_string_number","next":null,"parent":";A","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sh":{"opcode":"data_setvariableto","next":"VQ","parent":"f","inputs":{"VALUE":[3,"a]u",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a]u":{"opcode":"data_itemoflist","next":null,"parent":"sh","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.stack","lUL@WhXBzID`Z-mCVTrh"]},"shadow":false,"topLevel":false},"a=F":{"opcode":"control_stop","next":null,"parent":"VQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a=G":{"opcode":"argument_reporter_string_number","next":null,"parent":":K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fp":{"opcode":"control_if","next":"a]v","parent":"c!","inputs":{"CONDITION":[2,"a]w"],"SUBSTACK":[2,"VR"]},"fields":{},"shadow":false,"topLevel":false},"a]w":{"opcode":"operator_lt","next":null,"parent":"fp","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"@":{"opcode":"control_if_else","next":"fY","parent":"VR","inputs":{"CONDITION":[2,"a]x"],"SUBSTACK":[2,"VS"],"SUBSTACK2":[2,"a]y"]},"fields":{},"shadow":false,"topLevel":false},"a]x":{"opcode":"operator_equals","next":null,"parent":"@","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"a=H":{"opcode":"operator_divide","next":null,"parent":"VS","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a]y":{"opcode":"data_setvariableto","next":null,"parent":"@","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"fY":{"opcode":"control_if","next":"fW","parent":"@","inputs":{"CONDITION":[2,"VT"],"SUBSTACK":[2,"VU"]},"fields":{},"shadow":false,"topLevel":false},"fZ":{"opcode":"control_repeat_until","next":"a]z","parent":"VU","inputs":{"CONDITION":[2,"VV"],"SUBSTACK":[2,"VW"]},"fields":{},"shadow":false,"topLevel":false},"a=J":{"opcode":"operator_multiply","next":null,"parent":"VV","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f!":{"opcode":"control_repeat","next":"]j","parent":"VX","inputs":{"TIMES":[3,"a]A",[6,"0"]],"SUBSTACK":[2,"tF"]},"fields":{},"shadow":false,"topLevel":false},"a]A":{"opcode":"operator_subtract","next":null,"parent":"f!","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"tF":{"opcode":"data_setvariableto","next":"a]B","parent":"f!","inputs":{"VALUE":[3,"@:",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"@:":{"opcode":"operator_join","next":null,"parent":"tF","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"@/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?w":{"opcode":"operator_add","next":null,"parent":"@/","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]B":{"opcode":"data_changevariableby","next":null,"parent":"tF","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"]j":{"opcode":"data_setvariableto","next":"]i","parent":"f!","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"V#":{"opcode":"control_repeat","next":"]k","parent":"]i","inputs":{"TIMES":[3,"a]C",[6,"0"]],"SUBSTACK":[2,"fh"]},"fields":{},"shadow":false,"topLevel":false},"a]C":{"opcode":"operator_length","next":null,"parent":"V#","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"fh":{"opcode":"data_replaceitemoflist","next":".h","parent":"V#","inputs":{"INDEX":[3,"a]D",[7,"0"]],"ITEM":[3,"a]E",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a]D":{"opcode":"operator_add","next":null,"parent":"fh","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]E":{"opcode":"operator_letter_of","next":null,"parent":"fh","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a/)":{"opcode":"data_changevariableby","next":null,"parent":".h","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"sY":{"opcode":"control_repeat","next":"a]F","parent":"]k","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"tG"]},"fields":{},"shadow":false,"topLevel":false},"tG":{"opcode":"data_replaceitemoflist","next":"a]G","parent":"sY","inputs":{"INDEX":[3,"a]H",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a]H":{"opcode":"operator_add","next":null,"parent":"tG","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]G":{"opcode":"data_changevariableby","next":null,"parent":"tG","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a]F":{"opcode":"data_changevariableby","next":null,"parent":"sY","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a]z":{"opcode":"data_setvariableto","next":null,"parent":"fZ","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"fW":{"opcode":"control_if","next":"gc","parent":"fY","inputs":{"CONDITION":[2,"VY"],"SUBSTACK":[2,"=t"]},"fields":{},"shadow":false,"topLevel":false},"fX":{"opcode":"control_repeat_until","next":"a]I","parent":"=t","inputs":{"CONDITION":[2,"?b"],"SUBSTACK":[2,"?R"]},"fields":{},"shadow":false,"topLevel":false},"a=)":{"opcode":"operator_multiply","next":null,"parent":"?b","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fC":{"opcode":"control_repeat","next":"Tk","parent":"?S","inputs":{"TIMES":[3,"a]J",[6,"0"]],"SUBSTACK":[2,"rd"]},"fields":{},"shadow":false,"topLevel":false},"a]J":{"opcode":"operator_subtract","next":null,"parent":"fC","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rd":{"opcode":"data_setvariableto","next":"a]K","parent":"fC","inputs":{"VALUE":[3,"/b",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a:e":{"opcode":"operator_add","next":null,"parent":"/a","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]K":{"opcode":"data_changevariableby","next":null,"parent":"rd","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"fD":{"opcode":"control_repeat","next":"[G","parent":"Tl","inputs":{"TIMES":[3,"a]L",[6,"0"]],"SUBSTACK":[2,"VZ"]},"fields":{},"shadow":false,"topLevel":false},"a]L":{"opcode":"operator_length","next":null,"parent":"fD","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"VZ":{"opcode":"data_replaceitemoflist","next":"[H","parent":"fD","inputs":{"INDEX":[3,"a]M",[7,"0"]],"ITEM":[3,"a]N",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a]M":{"opcode":"operator_add","next":null,"parent":"VZ","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]N":{"opcode":"operator_letter_of","next":null,"parent":"VZ","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a?M":{"opcode":"data_changevariableby","next":null,"parent":"[H","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"sR":{"opcode":"control_repeat","next":"a]O","parent":"[G","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"tH"]},"fields":{},"shadow":false,"topLevel":false},"tH":{"opcode":"data_replaceitemoflist","next":"a]P","parent":"sR","inputs":{"INDEX":[3,"a]Q",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a]Q":{"opcode":"operator_add","next":null,"parent":"tH","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]P":{"opcode":"data_changevariableby","next":null,"parent":"tH","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a]O":{"opcode":"data_changevariableby","next":null,"parent":"sR","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a]I":{"opcode":"data_setvariableto","next":null,"parent":"fX","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a]v":{"opcode":"control_stop","next":null,"parent":"fp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j":{"opcode":"control_if","next":"h","parent":"c!","inputs":{"CONDITION":[2,"[I"],"SUBSTACK":[2,"sM"]},"fields":{},"shadow":false,"topLevel":false,"comment":"i"},"a?N":{"opcode":"argument_reporter_string_number","next":null,"parent":"[I","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sM":{"opcode":"control_if","next":null,"parent":"j","inputs":{"CONDITION":[2,"a]R"],"SUBSTACK":[2,"[l"]},"fields":{},"shadow":false,"topLevel":false},"a]R":{"opcode":"operator_lt","next":null,"parent":"sM","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"cD":{"opcode":"control_if_else","next":"fk","parent":"[l","inputs":{"CONDITION":[2,"a]S"],"SUBSTACK":[2,"[m"],"SUBSTACK2":[2,"a]T"]},"fields":{},"shadow":false,"topLevel":false},"a]S":{"opcode":"operator_equals","next":null,"parent":"cD","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"a?E":{"opcode":"operator_divide","next":null,"parent":"[m","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a]T":{"opcode":"data_setvariableto","next":null,"parent":"cD","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"fk":{"opcode":"control_if","next":"fb","parent":"cD","inputs":{"CONDITION":[2,";B"],"SUBSTACK":[2,"/h"]},"fields":{},"shadow":false,"topLevel":false},"cw":{"opcode":"control_repeat_until","next":null,"parent":"/h","inputs":{"CONDITION":[2,"TP"],"SUBSTACK":[2,"UL"]},"fields":{},"shadow":false,"topLevel":false},"a;K":{"opcode":"operator_multiply","next":null,"parent":"TP","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c[":{"opcode":"control_repeat","next":"ft","parent":"r@","inputs":{"TIMES":[3,"a]U",[6,"0"]],"SUBSTACK":[2,"ZC"]},"fields":{},"shadow":false,"topLevel":false},"a]U":{"opcode":"operator_subtract","next":null,"parent":"c[","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ZC":{"opcode":"data_setvariableto","next":"a]V","parent":"c[","inputs":{"VALUE":[3,"=u",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a=n":{"opcode":"operator_add","next":null,"parent":"=v","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]V":{"opcode":"data_changevariableby","next":null,"parent":"ZC","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"ft":{"opcode":"control_repeat","next":";q","parent":"c[","inputs":{"TIMES":[3,"a]W",[6,"0"]],"SUBSTACK":[2,"]Y"]},"fields":{},"shadow":false,"topLevel":false},"a]W":{"opcode":"operator_divide","next":null,"parent":"ft","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a?_":{"opcode":"operator_join","next":null,"parent":"]Y","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"rC":{"opcode":"control_repeat","next":"]Z","parent":";p","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"fa"]},"fields":{},"shadow":false,"topLevel":false},"fa":{"opcode":"data_replaceitemoflist","next":",/","parent":"rC","inputs":{"INDEX":[3,"a]X",[7,"0"]],"ITEM":[3,"a]Y",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"a]X":{"opcode":"operator_add","next":null,"parent":"fa","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]Y":{"opcode":"operator_letter_of","next":null,"parent":"fa","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a/z":{"opcode":"data_changevariableby","next":null,"parent":",/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"a?`":{"opcode":"data_changevariableby","next":null,"parent":"]Z","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"fb":{"opcode":"control_if","next":"gd","parent":"fk","inputs":{"CONDITION":[2,";C"],"SUBSTACK":[2,",:"]},"fields":{},"shadow":false,"topLevel":false},"Iy":{"opcode":"control_repeat_until","next":null,"parent":",:","inputs":{"CONDITION":[2,"]E"],"SUBSTACK":[2,"Tb"]},"fields":{},"shadow":false,"topLevel":false},"a?.":{"opcode":"operator_multiply","next":null,"parent":"]E","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V*":{"opcode":"control_repeat","next":"V%","parent":"IM","inputs":{"TIMES":[3,"a]Z",[6,"0"]],"SUBSTACK":[2,"r;"]},"fields":{},"shadow":false,"topLevel":false},"a]Z":{"opcode":"operator_subtract","next":null,"parent":"V*","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"r;":{"opcode":"data_setvariableto","next":"a]!","parent":"V*","inputs":{"VALUE":[3,"UC",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a;)":{"opcode":"operator_add","next":null,"parent":"UD","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a]!":{"opcode":"data_changevariableby","next":null,"parent":"r;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"V%":{"opcode":"control_repeat","next":"]r","parent":"V*","inputs":{"TIMES":[3,"a]#",[6,"0"]],"SUBSTACK":[2,"]s"]},"fields":{},"shadow":false,"topLevel":false},"a]#":{"opcode":"operator_divide","next":null,"parent":"V%","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a?%":{"opcode":"operator_join","next":null,"parent":"]s","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"sT":{"opcode":"control_repeat","next":"[!","parent":"]q","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"fl"]},"fields":{},"shadow":false,"topLevel":false},"fl":{"opcode":"data_replaceitemoflist","next":"/q","parent":"sT","inputs":{"INDEX":[3,"a]%",[7,"0"]],"ITEM":[3,"a](",[10,""]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a]%":{"opcode":"operator_add","next":null,"parent":"fl","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a](":{"opcode":"operator_letter_of","next":null,"parent":"fl","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a:j":{"opcode":"data_changevariableby","next":null,"parent":"/q","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"a?Q":{"opcode":"data_changevariableby","next":null,"parent":"[!","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a])":{"opcode":"control_stop","next":null,"parent":"ge","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"h":{"opcode":"control_if","next":"al","parent":"j","inputs":{"CONDITION":[2,";D"],"SUBSTACK":[2,";E"]},"fields":{},"shadow":false,"topLevel":false,"comment":"pr"},"a:Y":{"opcode":"argument_reporter_string_number","next":null,"parent":";D","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a:Z":{"opcode":"control_stop","next":null,"parent":";E","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"al":{"opcode":"control_if","next":"am","parent":"h","inputs":{"CONDITION":[2,"_H"],"SUBSTACK":[2,"_I"]},"fields":{},"shadow":false,"topLevel":false,"comment":"ps"},"_H":{"opcode":"operator_equals","next":null,"parent":"al","inputs":{"OPERAND1":[3,"a]*",[10,""]],"OPERAND2":[1,[10,"0xF2"]]},"fields":{},"shadow":false,"topLevel":false},"a]*":{"opcode":"argument_reporter_string_number","next":null,"parent":"_H","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"_I":{"opcode":"data_setvariableto","next":"a]+","parent":"al","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"a]+":{"opcode":"control_stop","next":null,"parent":"_I","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"am":{"opcode":"control_if","next":"n","parent":"al","inputs":{"CONDITION":[2,"_J"],"SUBSTACK":[2,"_K"]},"fields":{},"shadow":false,"topLevel":false,"comment":"pt"},"_J":{"opcode":"operator_equals","next":null,"parent":"am","inputs":{"OPERAND1":[3,"a],",[10,""]],"OPERAND2":[1,[10,"0xF3"]]},"fields":{},"shadow":false,"topLevel":false},"a],":{"opcode":"argument_reporter_string_number","next":null,"parent":"_J","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"_K":{"opcode":"data_setvariableto","next":"a]-","parent":"am","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"]},"shadow":false,"topLevel":false},"a]-":{"opcode":"control_stop","next":null,"parent":"_K","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n":{"opcode":"control_if","next":"m","parent":"am","inputs":{"CONDITION":[2,".Y"],"SUBSTACK":[2,"[{"]},"fields":{},"shadow":false,"topLevel":false,"comment":"e("},"a/^":{"opcode":"argument_reporter_string_number","next":null,"parent":".Y","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a?X":{"opcode":"control_stop","next":null,"parent":"[`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m":{"opcode":"control_if","next":"aw","parent":"n","inputs":{"CONDITION":[2,"-|"],"SUBSTACK":[2,"SO"]},"fields":{},"shadow":false,"topLevel":false,"comment":"pu"},"a/!":{"opcode":"argument_reporter_string_number","next":null,"parent":"-|","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a:{":{"opcode":"control_stop","next":null,"parent":"SP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"=!":{"opcode":"operator_equals","next":null,"parent":"aw","inputs":{"OPERAND1":[3,"a].",[10,""]],"OPERAND2":[1,[10,"0x11"]]},"fields":{},"shadow":false,"topLevel":false},"a].":{"opcode":"argument_reporter_string_number","next":null,"parent":"=!","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"=y":{"opcode":"data_setvariableto","next":"Vv","parent":"aw","inputs":{"VALUE":[1,[10,"Megachip"]]},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"a@X":{"opcode":"control_stop","next":null,"parent":"=z","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"P":{"opcode":"control_if","next":"V+","parent":"aw","inputs":{"CONDITION":[2,"^y"],"SUBSTACK":[2,"?!"]},"fields":{},"shadow":false,"topLevel":false,"comment":"pv"},"a@t":{"opcode":"argument_reporter_string_number","next":null,"parent":"^y","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a=|":{"opcode":"control_stop","next":null,"parent":"?)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"V+":{"opcode":"control_if","next":"a]/","parent":"P","inputs":{"CONDITION":[2,"^F"],"SUBSTACK":[2,"q="]},"fields":{},"shadow":false,"topLevel":false},"a@C":{"opcode":"argument_reporter_string_number","next":null,"parent":"^F","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q=":{"opcode":"control_stop","next":"-+","parent":"V+","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"},"comment":"a]:"},"a?k":{"opcode":"event_broadcast","next":null,"parent":"/{","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"a]/":{"opcode":"control_stop","next":null,"parent":"V+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fm":{"opcode":"control_if","next":"/","parent":"fM","inputs":{"CONDITION":[2,";."],"SUBSTACK":[2,"gf"]},"fields":{},"shadow":false,"topLevel":false},"a;b":{"opcode":"argument_reporter_string_number","next":null,"parent":";.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gf":{"opcode":"control_if","next":"a];","parent":"fm","inputs":{"CONDITION":[2,"a]="],"SUBSTACK":[2,"fA"]},"fields":{},"shadow":false,"topLevel":false},"a]=":{"opcode":"operator_equals","next":null,"parent":"gf","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"fA":{"opcode":"control_if_else","next":null,"parent":"gf","inputs":{"CONDITION":[2,";/"],"SUBSTACK":[2,"aR"],"SUBSTACK2":[2,"a@"]},"fields":{},"shadow":false,"topLevel":false},"a;c":{"opcode":"argument_reporter_string_number","next":null,"parent":";/","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR":{"opcode":"control_if","next":"aS","parent":"fA","inputs":{"CONDITION":[2,";:"],"SUBSTACK":[2,":,"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a]?"},"a;d":{"opcode":"argument_reporter_string_number","next":null,"parent":";:","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"rw":{"opcode":"data_setvariableto","next":"a]@","parent":":,","inputs":{"VALUE":[3,"rQ",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"rQ":{"opcode":"operator_add","next":null,"parent":"rw","inputs":{"NUM1":[3,";(",[4,"0"]],"NUM2":[3,"rR",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:~":{"opcode":"argument_reporter_string_number","next":null,"parent":";(","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rR":{"opcode":"operator_add","next":null,"parent":"rQ","inputs":{"NUM1":[3,";)",[4,"0"]],"NUM2":[3,"a][",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;a":{"opcode":"operator_subtract","next":null,"parent":";*","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a][":{"opcode":"data_itemoflist","next":null,"parent":"rR","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a]@":{"opcode":"control_stop","next":null,"parent":"rw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aS":{"opcode":"control_if","next":"a[","parent":"aR","inputs":{"CONDITION":[2,"?t"],"SUBSTACK":[2,"Tp"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a]]"},"a=?":{"opcode":"argument_reporter_string_number","next":null,"parent":"?t","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fI":{"opcode":"control_repeat","next":"Uj","parent":"]t","inputs":{"TIMES":[3,"a]^",[6,"0"]],"SUBSTACK":[2,"s/"]},"fields":{},"shadow":false,"topLevel":false},"a]^":{"opcode":"argument_reporter_string_number","next":null,"parent":"fI","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"s/":{"opcode":"data_setvariableto","next":"[Z","parent":"fI","inputs":{"VALUE":[3,"tI",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"tI":{"opcode":"operator_add","next":null,"parent":"s/","inputs":{"NUM1":[3,"rr",[4,"0"]],"NUM2":[3,"rn",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rr":{"opcode":"operator_add","next":null,"parent":"tI","inputs":{"NUM1":[3,"^S",[4,"0"]],"NUM2":[3,":G",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@I":{"opcode":"operator_add","next":null,"parent":"^R","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@Y":{"opcode":"operator_add","next":null,"parent":":H","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rn":{"opcode":"operator_add","next":null,"parent":"tI","inputs":{"NUM1":[3,"^[",[4,"0"]],"NUM2":[3,"/L",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@#":{"opcode":"operator_add","next":null,"parent":"^^","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:p":{"opcode":"operator_add","next":null,"parent":"/M","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?P":{"opcode":"data_changevariableby","next":null,"parent":"[Y","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a;Z":{"opcode":"control_stop","next":null,"parent":"Uj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a[":{"opcode":"control_if","next":"cr","parent":"aS","inputs":{"CONDITION":[2,"VL"],"SUBSTACK":[2,"?"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a]_"},"a=D":{"opcode":"argument_reporter_string_number","next":null,"parent":"VL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"?":{"opcode":"control_if_else","next":"a]`","parent":"a[","inputs":{"CONDITION":[2,"VM"],"SUBSTACK":[2,"a]{"],"SUBSTACK2":[2,"^E"]},"fields":{},"shadow":false,"topLevel":false},"a=E":{"opcode":"argument_reporter_string_number","next":null,"parent":"VM","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a]{":{"opcode":"data_setvariableto","next":null,"parent":"?","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"]},"shadow":false,"topLevel":false},"a@B":{"opcode":"argument_reporter_string_number","next":null,"parent":"^E","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a]`":{"opcode":"control_stop","next":null,"parent":"?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cr":{"opcode":"control_if_else","next":null,"parent":"a[","inputs":{"CONDITION":[2,"-K"],"SUBSTACK":[2,"a]}"],"SUBSTACK2":[2,".X"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a]|"},"a/N":{"opcode":"argument_reporter_string_number","next":null,"parent":"-K","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a]}":{"opcode":"data_setvariableto","next":null,"parent":"cr","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["chip8.spriteheight","N`et#hF/mNUQ?WM0|0ij"]},"shadow":false,"topLevel":false},"a/]":{"opcode":"argument_reporter_string_number","next":null,"parent":".X","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a@":{"opcode":"control_if","next":"a?","parent":"fA","inputs":{"CONDITION":[2,"Uz"],"SUBSTACK":[2,"a^a"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a]~"},"a;(":{"opcode":"argument_reporter_string_number","next":null,"parent":"Uz","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^a":{"opcode":"control_stop","next":null,"parent":"a@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a?":{"opcode":"control_if","next":"ct","parent":"a@","inputs":{"CONDITION":[2,"/g"],"SUBSTACK":[2,"sv"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^b"},"a:h":{"opcode":"argument_reporter_string_number","next":null,"parent":"/g","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"sv":{"opcode":"data_setvariableto","next":"?,","parent":"a?","inputs":{"VALUE":[3,"a^c",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a^c":{"opcode":"operator_add","next":null,"parent":"sv","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sa":{"opcode":"data_setvariableto","next":"U{","parent":"?,","inputs":{"VALUE":[3,"rX",[10,""]]},"fields":{"VARIABLE":["chip8m.samplerate","Jz!(reWdKcB6wz9(@ZOs"]},"shadow":false,"topLevel":false},"rX":{"opcode":"operator_add","next":null,"parent":"sa","inputs":{"NUM1":[3,"^n",[4,"0"]],"NUM2":[3,"TL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@n":{"opcode":"data_itemoflist","next":null,"parent":"^n","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a;I":{"opcode":"operator_add","next":null,"parent":"TL","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sb":{"opcode":"data_setvariableto","next":"=]","parent":"U{","inputs":{"VALUE":[3,"a^d",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a^d":{"opcode":"operator_add","next":null,"parent":"sb","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"f+":{"opcode":"control_repeat","next":"IV","parent":"=]","inputs":{"TIMES":[3,"s%",[6,"0"]],"SUBSTACK":[2,"tJ"]},"fields":{},"shadow":false,"topLevel":false},"s%":{"opcode":"operator_add","next":null,"parent":"f+","inputs":{"NUM1":[3,"]J",[4,"0"]],"NUM2":[3,"q_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?:":{"opcode":"data_itemoflist","next":null,"parent":"]J","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"q_":{"opcode":"operator_add","next":null,"parent":"s%","inputs":{"NUM1":[3,".i",[4,"0"]],"NUM2":[3,"VE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/*":{"opcode":"operator_add","next":null,"parent":".j","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=z":{"opcode":"operator_add","next":null,"parent":"VE","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"tJ":{"opcode":"data_addtolist","next":"a^e","parent":"f+","inputs":{"ITEM":[3,"a^f",[10,""]]},"fields":{"LIST":["chip8m.PCM","{uxN85FR2v428H5s1TII"]},"shadow":false,"topLevel":false},"a^f":{"opcode":"data_itemoflist","next":null,"parent":"tJ","inputs":{"INDEX":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a^e":{"opcode":"data_changevariableby","next":null,"parent":"tJ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"IV":{"opcode":"data_setvariableto","next":"?P","parent":"f+","inputs":{"VALUE":[3,"[*",[10,""]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"sV":{"opcode":"operator_divide","next":null,"parent":"[*","inputs":{"NUM1":[3,"[+",[4,"0"]],"NUM2":[3,"a^g",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?U":{"opcode":"operator_divide","next":null,"parent":"[+","inputs":{"NUM1":[3,[12,"chip8m.samplerate","Jz!(reWdKcB6wz9(@ZOs"],[4,"0"]],"NUM2":[1,[4,"4000"]]},"fields":{},"shadow":false,"topLevel":false},"a^g":{"opcode":"operator_mathop","next":null,"parent":"sV","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"a=`":{"opcode":"control_stop","next":null,"parent":"?P","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ct":{"opcode":"control_if","next":"cs","parent":"a?","inputs":{"CONDITION":[2,":b"],"SUBSTACK":[2,"-%"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^h"},"a:x":{"opcode":"argument_reporter_string_number","next":null,"parent":":b","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a/S":{"opcode":"control_stop","next":null,"parent":"-%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cs":{"opcode":"control_if","next":"fr","parent":"ct","inputs":{"CONDITION":[2,"-V"],"SUBSTACK":[2,"q,"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^i"},"a/Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"-V","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q,":{"opcode":"data_setvariableto","next":"a^j","parent":"cs","inputs":{"VALUE":[3,"-W",[10,""]]},"fields":{"VARIABLE":["chip8.blendmode","JcH|Bk6g8yO74n|tWOIG"]},"shadow":false,"topLevel":false},"a/R":{"opcode":"argument_reporter_string_number","next":null,"parent":"-W","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^j":{"opcode":"control_stop","next":null,"parent":"q,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fr":{"opcode":"control_if","next":null,"parent":"cs","inputs":{"CONDITION":[2,":W"],"SUBSTACK":[2,"SE"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^k"},"a:K":{"opcode":"argument_reporter_string_number","next":null,"parent":":W","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:[":{"opcode":"argument_reporter_string_number","next":null,"parent":"SE","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a];":{"opcode":"control_stop","next":null,"parent":"gf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a:T":{"opcode":"argument_reporter_string_number","next":null,"parent":"/B","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ri":{"opcode":"data_setvariableto","next":"a^l","parent":"/","inputs":{"VALUE":[3,"rW",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"rW":{"opcode":"operator_add","next":null,"parent":"ri","inputs":{"NUM1":[3,";}",[4,"0"]],"NUM2":[3,"a^m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;D":{"opcode":"argument_reporter_string_number","next":null,"parent":";|","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^m":{"opcode":"argument_reporter_string_number","next":null,"parent":"rW","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^l":{"opcode":"control_stop","next":null,"parent":"ri","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a/r":{"opcode":"argument_reporter_string_number","next":null,"parent":",V","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"qU":{"opcode":"data_setvariableto","next":"a^n","parent":",W","inputs":{"VALUE":[3,"Zw",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"Zw":{"opcode":"operator_add","next":null,"parent":"qU","inputs":{"NUM1":[3,":j",[4,"0"]],"NUM2":[3,"a^o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:A":{"opcode":"argument_reporter_string_number","next":null,"parent":":k","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^o":{"opcode":"argument_reporter_string_number","next":null,"parent":"Zw","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^n":{"opcode":"control_stop","next":null,"parent":"qU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c":{"opcode":"control_if","next":"-","parent":"+","inputs":{"CONDITION":[2,"Ud"],"SUBSTACK":[2,"gg"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_L"},"a;X":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ud","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gg":{"opcode":"control_if","next":"a^p","parent":"c","inputs":{"CONDITION":[2,"r:"],"SUBSTACK":[2,"gh"]},"fields":{},"shadow":false,"topLevel":false},"r:":{"opcode":"operator_equals","next":null,"parent":"gg","inputs":{"OPERAND1":[3,"a^q",[10,""]],"OPERAND2":[3,"Ux",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a^q":{"opcode":"argument_reporter_string_number","next":null,"parent":"r:","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a@e":{"opcode":"argument_reporter_string_number","next":null,"parent":"^a","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gh":{"opcode":"control_if","next":"a^r","parent":"gg","inputs":{"CONDITION":[2,"ta"],"SUBSTACK":[2,"a^s"]},"fields":{},"shadow":false,"topLevel":false},"ta":{"opcode":"operator_or","next":null,"parent":"gh","inputs":{"OPERAND1":[2,"^*"],"OPERAND2":[2,"ra"]},"fields":{},"shadow":false,"topLevel":false},"a@T":{"opcode":"operator_add","next":null,"parent":"^+","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ra":{"opcode":"operator_and","next":null,"parent":"ta","inputs":{"OPERAND1":[2,"^C"],"OPERAND2":[2,".Z"]},"fields":{},"shadow":false,"topLevel":false},"a@x":{"opcode":"operator_add","next":null,"parent":"^B","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/_":{"opcode":"operator_add","next":null,"parent":".!","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^s":{"opcode":"data_changevariableby","next":null,"parent":"gh","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^r":{"opcode":"data_changevariableby","next":null,"parent":"gh","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^p":{"opcode":"control_stop","next":null,"parent":"gg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"-":{"opcode":"control_if","next":"_","parent":"c","inputs":{"CONDITION":[2,"-J"],"SUBSTACK":[2,"V!"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_M"},"a/M":{"opcode":"argument_reporter_string_number","next":null,"parent":"-J","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"V!":{"opcode":"control_if","next":"a^t","parent":"-","inputs":{"CONDITION":[2,"[Q"],"SUBSTACK":[2,"gi"]},"fields":{},"shadow":false,"topLevel":false},"sB":{"opcode":"operator_equals","next":null,"parent":"[Q","inputs":{"OPERAND1":[3,"a^u",[10,""]],"OPERAND2":[3,"@m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a^u":{"opcode":"argument_reporter_string_number","next":null,"parent":"sB","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a@y":{"opcode":"argument_reporter_string_number","next":null,"parent":"@o","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gi":{"opcode":"control_if","next":"a^v","parent":"V!","inputs":{"CONDITION":[2,"sg"],"SUBSTACK":[2,"a^w"]},"fields":{},"shadow":false,"topLevel":false},"sg":{"opcode":"operator_or","next":null,"parent":"gi","inputs":{"OPERAND1":[2,"VJ"],"OPERAND2":[2,"IJ"]},"fields":{},"shadow":false,"topLevel":false},"a=B":{"opcode":"operator_add","next":null,"parent":"VI","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IJ":{"opcode":"operator_and","next":null,"parent":"sg","inputs":{"OPERAND1":[2,".c"],"OPERAND2":[2,"Tu"]},"fields":{},"shadow":false,"topLevel":false},"a/%":{"opcode":"operator_add","next":null,"parent":".b","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;w":{"opcode":"operator_add","next":null,"parent":"Tt","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^w":{"opcode":"data_changevariableby","next":null,"parent":"gi","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^v":{"opcode":"data_changevariableby","next":null,"parent":"gi","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^t":{"opcode":"control_stop","next":null,"parent":"V!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"_":{"opcode":"control_if","next":"{","parent":"-","inputs":{"CONDITION":[2,"^o"],"SUBSTACK":[2,"fe"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_N"},"a@o":{"opcode":"argument_reporter_string_number","next":null,"parent":"^o","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fe":{"opcode":"control_if","next":"fB","parent":"_","inputs":{"CONDITION":[2,"-s"],"SUBSTACK":[2,"gj"]},"fields":{},"shadow":false,"topLevel":false},"a/I":{"opcode":"argument_reporter_string_number","next":null,"parent":"-t","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gj":{"opcode":"control_if","next":"a^x","parent":"fe","inputs":{"CONDITION":[2,"ry"],"SUBSTACK":[2,"gk"]},"fields":{},"shadow":false,"topLevel":false},"ry":{"opcode":"operator_equals","next":null,"parent":"gj","inputs":{"OPERAND1":[3,":/",[10,""]],"OPERAND2":[3,"@(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a:O":{"opcode":"argument_reporter_string_number","next":null,"parent":":;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a?t":{"opcode":"argument_reporter_string_number","next":null,"parent":"@%","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gk":{"opcode":"control_if","next":"a^y","parent":"gj","inputs":{"CONDITION":[2,"tK"],"SUBSTACK":[2,"a^z"]},"fields":{},"shadow":false,"topLevel":false},"tK":{"opcode":"operator_and","next":null,"parent":"gk","inputs":{"OPERAND1":[2,"_O"],"OPERAND2":[2,"_P"]},"fields":{},"shadow":false,"topLevel":false},"_O":{"opcode":"operator_lt","next":null,"parent":"tK","inputs":{"OPERAND1":[1,[10,"239"]],"OPERAND2":[3,"_Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_Q":{"opcode":"data_itemoflist","next":null,"parent":"_O","inputs":{"INDEX":[3,"a^A",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a^A":{"opcode":"operator_add","next":null,"parent":"_Q","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"_P":{"opcode":"operator_equals","next":null,"parent":"tK","inputs":{"OPERAND1":[3,"_R",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_R":{"opcode":"data_itemoflist","next":null,"parent":"_P","inputs":{"INDEX":[3,"a^B",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a^B":{"opcode":"operator_add","next":null,"parent":"_R","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^z":{"opcode":"data_changevariableby","next":null,"parent":"gk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^y":{"opcode":"data_changevariableby","next":null,"parent":"gk","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a^x":{"opcode":"control_stop","next":null,"parent":"gj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fB":{"opcode":"control_if","next":"Q","parent":"fe","inputs":{"CONDITION":[2,"SW"],"SUBSTACK":[2,"gl"]},"fields":{},"shadow":false,"topLevel":false},"a;e":{"opcode":"argument_reporter_string_number","next":null,"parent":"SX","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gl":{"opcode":"control_if","next":"a^C","parent":"fB","inputs":{"CONDITION":[2,"rS"],"SUBSTACK":[2,"gm"]},"fields":{},"shadow":false,"topLevel":false},"rS":{"opcode":"operator_gt","next":null,"parent":"gl","inputs":{"OPERAND1":[3,"SY",[10,""]],"OPERAND2":[3,"S!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"SZ":{"opcode":"operator_add","next":null,"parent":"SY","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"]h",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?!":{"opcode":"argument_reporter_string_number","next":null,"parent":"]h","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a;f":{"opcode":"argument_reporter_string_number","next":null,"parent":"S(","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gm":{"opcode":"control_if","next":"tL","parent":"gl","inputs":{"CONDITION":[2,"r+"],"SUBSTACK":[2,"a^D"]},"fields":{},"shadow":false,"topLevel":false},"r+":{"opcode":"operator_or","next":null,"parent":"gm","inputs":{"OPERAND1":[2,"Ui"],"OPERAND2":[2,"q-"]},"fields":{},"shadow":false,"topLevel":false},"a;Y":{"opcode":"operator_add","next":null,"parent":"Uh","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q-":{"opcode":"operator_and","next":null,"parent":"r+","inputs":{"OPERAND1":[2,"St"],"OPERAND2":[2,"-Z"]},"fields":{},"shadow":false,"topLevel":false},"a:/":{"opcode":"operator_add","next":null,"parent":"Su","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?R":{"opcode":"operator_add","next":null,"parent":"-!","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^D":{"opcode":"data_changevariableby","next":null,"parent":"gm","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"tL":{"opcode":"data_changevariableby","next":null,"parent":"gm","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"_S"},"a^C":{"opcode":"control_stop","next":null,"parent":"gl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Q":{"opcode":"control_if_else","next":"S)","parent":"fB","inputs":{"CONDITION":[2,"tM"],"SUBSTACK":[2,"a^E"],"SUBSTACK2":[2,"a^F"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_T"},"tM":{"opcode":"operator_gt","next":null,"parent":"Q","inputs":{"OPERAND1":[3,"_U",[10,""]],"OPERAND2":[3,"_V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"_U":{"opcode":"operator_mod","next":null,"parent":"tM","inputs":{"NUM1":[3,"a^G",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^G":{"opcode":"argument_reporter_string_number","next":null,"parent":"_U","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"_V":{"opcode":"operator_mathop","next":null,"parent":"tM","inputs":{"NUM":[3,"_W",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_W":{"opcode":"operator_divide","next":null,"parent":"_V","inputs":{"NUM1":[3,"a^H",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^H":{"opcode":"argument_reporter_string_number","next":null,"parent":"_W","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^E":{"opcode":"data_setvariableto","next":null,"parent":"Q","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a^F":{"opcode":"data_setvariableto","next":null,"parent":"Q","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"rT":{"opcode":"data_setvariableto","next":"bU","parent":"S)","inputs":{"VALUE":[3,"a^I",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a^I":{"opcode":"operator_add","next":null,"parent":"rT","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bU":{"opcode":"control_if","next":"bT","parent":"rT","inputs":{"CONDITION":[2,"_Y"],"SUBSTACK":[2,"gn"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_X"},"_Y":{"opcode":"operator_equals","next":null,"parent":"bU","inputs":{"OPERAND1":[3,"_Z",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_Z":{"opcode":"operator_mod","next":null,"parent":"_Y","inputs":{"NUM1":[3,"a^J",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^J":{"opcode":"argument_reporter_string_number","next":null,"parent":"_Z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gn":{"opcode":"control_repeat","next":"a^K","parent":"bU","inputs":{"TIMES":[3,"_!",[6,"0"]],"SUBSTACK":[2,"r%"]},"fields":{},"shadow":false,"topLevel":false},"_!":{"opcode":"operator_add","next":null,"parent":"gn","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_#":{"opcode":"operator_mathop","next":null,"parent":"_!","inputs":{"NUM":[3,"tN",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"tN":{"opcode":"operator_subtract","next":null,"parent":"_#","inputs":{"NUM1":[3,"_%",[4,"0"]],"NUM2":[3,"_(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_%":{"opcode":"operator_mod","next":null,"parent":"tN","inputs":{"NUM1":[3,"a^L",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^L":{"opcode":"argument_reporter_string_number","next":null,"parent":"_%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"_(":{"opcode":"operator_mathop","next":null,"parent":"tN","inputs":{"NUM":[3,"_)",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_)":{"opcode":"operator_divide","next":null,"parent":"_(","inputs":{"NUM1":[3,"a^M",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^M":{"opcode":"argument_reporter_string_number","next":null,"parent":"_)","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"r%":{"opcode":"data_replaceitemoflist","next":"T!","parent":"gn","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]],"ITEM":[3,"T#",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a;R":{"opcode":"argument_reporter_string_number","next":null,"parent":"T(","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a;Q":{"opcode":"data_changevariableby","next":null,"parent":"T!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a^K":{"opcode":"control_stop","next":null,"parent":"gn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bT":{"opcode":"control_if","next":"a^N","parent":"bU","inputs":{"CONDITION":[2,"T)"],"SUBSTACK":[2,"r("]},"fields":{},"shadow":false,"topLevel":false,"comment":"_*"},"a;S":{"opcode":"argument_reporter_string_number","next":null,"parent":"T*","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"r(":{"opcode":"control_repeat","next":null,"parent":"bT","inputs":{"TIMES":[3,"T+",[6,"0"]],"SUBSTACK":[2,"go"]},"fields":{},"shadow":false,"topLevel":false},"r)":{"opcode":"operator_subtract","next":null,"parent":"T,","inputs":{"NUM1":[3,"T-",[4,"0"]],"NUM2":[3,"_+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;T":{"opcode":"argument_reporter_string_number","next":null,"parent":"T-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"_+":{"opcode":"operator_mathop","next":null,"parent":"r)","inputs":{"NUM":[3,"_,",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"_,":{"opcode":"operator_divide","next":null,"parent":"_+","inputs":{"NUM1":[3,"a^O",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^O":{"opcode":"argument_reporter_string_number","next":null,"parent":"_,","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"go":{"opcode":"data_replaceitemoflist","next":"_-","parent":"r(","inputs":{"INDEX":[3,"_.",[7,"0"]],"ITEM":[3,"a^P",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"_.":{"opcode":"operator_add","next":null,"parent":"go","inputs":{"NUM1":[3,"_/",[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_/":{"opcode":"operator_mod","next":null,"parent":"_.","inputs":{"NUM1":[3,"a^Q",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"_/","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^P":{"opcode":"data_itemoflist","next":null,"parent":"go","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"_-":{"opcode":"data_changevariableby","next":"a^R","parent":"go","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a^R":{"opcode":"data_changevariableby","next":null,"parent":"_-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a^N":{"opcode":"control_stop","next":null,"parent":"bT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"{":{"opcode":"control_if","next":"au","parent":"_","inputs":{"CONDITION":[2,"_;"],"SUBSTACK":[2,"gp"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_:"},"_;":{"opcode":"operator_lt","next":null,"parent":"{","inputs":{"OPERAND1":[3,"a^S",[10,""]],"OPERAND2":[1,[10,"112"]]},"fields":{},"shadow":false,"topLevel":false},"a^S":{"opcode":"argument_reporter_string_number","next":null,"parent":"_;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gp":{"opcode":"data_replaceitemoflist","next":"a^T","parent":"{","inputs":{"INDEX":[3,"_=",[7,"0"]],"ITEM":[3,"a^U",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"_=":{"opcode":"operator_add","next":null,"parent":"gp","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"_?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_?":{"opcode":"operator_mod","next":null,"parent":"_=","inputs":{"NUM1":[3,"a^V",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^V":{"opcode":"argument_reporter_string_number","next":null,"parent":"_?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^U":{"opcode":"argument_reporter_string_number","next":null,"parent":"gp","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^T":{"opcode":"control_stop","next":null,"parent":"gp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"au":{"opcode":"control_if","next":"e^","parent":"{","inputs":{"CONDITION":[2,"U%"],"SUBSTACK":[2,"fR"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_@"},"a;|":{"opcode":"argument_reporter_string_number","next":null,"parent":"U%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fR":{"opcode":"data_replaceitemoflist","next":"a^W","parent":"au","inputs":{"INDEX":[3,"U(",[7,"0"]],"ITEM":[3,"U*",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;}":{"opcode":"argument_reporter_string_number","next":null,"parent":"U)","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"r|":{"opcode":"operator_add","next":null,"parent":"U*","inputs":{"NUM1":[3,"a^X",[4,"0"]],"NUM2":[3,"U+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^X":{"opcode":"argument_reporter_string_number","next":null,"parent":"r|","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a;~":{"opcode":"argument_reporter_string_number","next":null,"parent":"U-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^W":{"opcode":"control_stop","next":null,"parent":"fR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e^":{"opcode":"control_if","next":"cb","parent":"au","inputs":{"CONDITION":[2,"?g"],"SUBSTACK":[2,"q]"]},"fields":{},"shadow":false,"topLevel":false},"a=/":{"opcode":"argument_reporter_string_number","next":null,"parent":"?g","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q]":{"opcode":"control_if_else","next":null,"parent":"e^","inputs":{"CONDITION":[2,":h"],"SUBSTACK":[2,"e{"],"SUBSTACK2":[2,"T"]},"fields":{},"shadow":false,"topLevel":false},"a:z":{"opcode":"argument_reporter_string_number","next":null,"parent":":g","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e{":{"opcode":"control_if_else","next":null,"parent":"q]","inputs":{"CONDITION":[2,"Vn"],"SUBSTACK":[2,"cj"],"SUBSTACK2":[2,":"]},"fields":{},"shadow":false,"topLevel":false},"a=k":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vm","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a?C":{"opcode":"argument_reporter_string_number","next":null,"parent":":i","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qS":{"opcode":"data_replaceitemoflist","next":"a^Y","parent":"cj","inputs":{"INDEX":[3,".#",[7,"0"]],"ITEM":[3,"-L",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a/`":{"opcode":"argument_reporter_string_number","next":null,"parent":".%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a=o":{"opcode":"argument_reporter_string_number","next":null,"parent":"=w","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^Y":{"opcode":"control_stop","next":null,"parent":"qS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a=p":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vo","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qR":{"opcode":"data_replaceitemoflist","next":null,"parent":"ci","inputs":{"INDEX":[3,".;",[7,"0"]],"ITEM":[3,";j",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:a":{"opcode":"argument_reporter_string_number","next":null,"parent":".=","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"qZ":{"opcode":"operator_add","next":null,"parent":";k","inputs":{"NUM1":[3,"].",[4,"0"]],"NUM2":[3,",+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@N":{"opcode":"argument_reporter_string_number","next":null,"parent":"]:","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a/w":{"opcode":"argument_reporter_string_number","next":null,"parent":",*","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a/y":{"opcode":"argument_reporter_string_number","next":null,"parent":",.","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qT":{"opcode":"data_replaceitemoflist","next":null,"parent":"ck","inputs":{"INDEX":[3,"[t",[7,"0"]],"ITEM":[3,"]F",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?G":{"opcode":"argument_reporter_string_number","next":null,"parent":"[s","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"rc":{"opcode":"operator_add","next":null,"parent":"]G","inputs":{"NUM1":[3,"@*",[4,"0"]],"NUM2":[3,".~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;z":{"opcode":"argument_reporter_string_number","next":null,"parent":";[","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:d":{"opcode":"argument_reporter_string_number","next":null,"parent":".{","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cl":{"opcode":"control_if","next":"gq","parent":"ck","inputs":{"CONDITION":[2,"^W"],"SUBSTACK":[2,"ro"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^Z"},"a@O":{"opcode":"argument_reporter_string_number","next":null,"parent":"^X","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"ro":{"opcode":"data_replaceitemoflist","next":null,"parent":"cl","inputs":{"INDEX":[3,"/R",[7,"0"]],"ITEM":[3,"=F",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:q":{"opcode":"argument_reporter_string_number","next":null,"parent":"/S","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ZG":{"opcode":"operator_add","next":null,"parent":"=G","inputs":{"NUM1":[3,"-q",[4,"0"]],"NUM2":[3,"]e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/G":{"opcode":"argument_reporter_string_number","next":null,"parent":"-n","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a@p":{"opcode":"argument_reporter_string_number","next":null,"parent":"^p","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gq":{"opcode":"control_if","next":"a^!","parent":"cl","inputs":{"CONDITION":[2,"a^#"],"SUBSTACK":[2,"a^%"]},"fields":{},"shadow":false,"topLevel":false},"a^#":{"opcode":"operator_equals","next":null,"parent":"gq","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"a^%":{"opcode":"data_replaceitemoflist","next":null,"parent":"gq","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a^!":{"opcode":"control_stop","next":null,"parent":"gq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},":":{"opcode":"control_if","next":"*","parent":"e{","inputs":{"CONDITION":[2,":B"],"SUBSTACK":[2,"tO"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_["},"a:E":{"opcode":"argument_reporter_string_number","next":null,"parent":":A","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"tO":{"opcode":"data_setvariableto","next":"fL","parent":":","inputs":{"VALUE":[3,"IC",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"IC":{"opcode":"operator_add","next":null,"parent":"tO","inputs":{"NUM1":[3,"^=",[4,"0"]],"NUM2":[3,".n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@W":{"opcode":"argument_reporter_string_number","next":null,"parent":"^@","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a/,":{"opcode":"argument_reporter_string_number","next":null,"parent":".q","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fL":{"opcode":"data_replaceitemoflist","next":"q*","parent":"tO","inputs":{"INDEX":[3,"UG",[7,"0"]],"ITEM":[3,"a^(",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;+":{"opcode":"argument_reporter_string_number","next":null,"parent":"UF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^(":{"opcode":"operator_mod","next":null,"parent":"fL","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q*":{"opcode":"data_replaceitemoflist","next":"a^)","parent":"fL","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"-r",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a/H":{"opcode":"operator_gt","next":null,"parent":"-r","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"a^)":{"opcode":"control_stop","next":null,"parent":"q*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"*":{"opcode":"control_if","next":"cm","parent":":","inputs":{"CONDITION":[2,".V"],"SUBSTACK":[2,"tP"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_]"},"a/[":{"opcode":"argument_reporter_string_number","next":null,"parent":".W","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"tP":{"opcode":"data_setvariableto","next":"f:","parent":"*","inputs":{"VALUE":[3,"sF",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"sF":{"opcode":"operator_subtract","next":null,"parent":"tP","inputs":{"NUM1":[3,"@L",[4,"0"]],"NUM2":[3,"[:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?q":{"opcode":"argument_reporter_string_number","next":null,"parent":"@N","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a/K":{"opcode":"argument_reporter_string_number","next":null,"parent":"-y","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"f:":{"opcode":"data_replaceitemoflist","next":"sA","parent":"tP","inputs":{"INDEX":[3,"^,",[7,"0"]],"ITEM":[3,"a^*",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a@U":{"opcode":"argument_reporter_string_number","next":null,"parent":"^-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^*":{"opcode":"operator_mod","next":null,"parent":"f:","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"sA":{"opcode":"data_replaceitemoflist","next":"a^+","parent":"f:","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"@g",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?g":{"opcode":"operator_lt","next":null,"parent":"@f","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^+":{"opcode":"control_stop","next":null,"parent":"sA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a/-":{"opcode":"argument_reporter_string_number","next":null,"parent":".t","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cn":{"opcode":"control_if_else","next":"tQ","parent":"cm","inputs":{"CONDITION":[2,"a^,"],"SUBSTACK":[2,"sd"],"SUBSTACK2":[2,"sP"]},"fields":{},"shadow":false,"topLevel":false},"a^,":{"opcode":"operator_equals","next":null,"parent":"cn","inputs":{"OPERAND1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sd":{"opcode":"data_setvariableto","next":"rO","parent":"cn","inputs":{"VALUE":[3,"Vj",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a=i":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vg","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rO":{"opcode":"data_replaceitemoflist","next":null,"parent":"sd","inputs":{"INDEX":[3,"?.",[7,"0"]],"ITEM":[3,"SR",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a=}":{"opcode":"argument_reporter_string_number","next":null,"parent":"?-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a@H":{"opcode":"argument_reporter_string_number","next":null,"parent":"-I","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sP":{"opcode":"data_setvariableto","next":"r/","parent":"cn","inputs":{"VALUE":[3,"[C",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a?K":{"opcode":"argument_reporter_string_number","next":null,"parent":"[D","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"r/":{"opcode":"data_replaceitemoflist","next":null,"parent":"sP","inputs":{"INDEX":[3,"=~",[7,"0"]],"ITEM":[3,"=m",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?;":{"opcode":"argument_reporter_string_number","next":null,"parent":"?a","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a?{":{"opcode":"argument_reporter_string_number","next":null,"parent":"]#","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"tQ":{"opcode":"data_replaceitemoflist","next":"a^-","parent":"cn","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"a^.",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a^.":{"opcode":"operator_mod","next":null,"parent":"tQ","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a^-":{"opcode":"control_stop","next":null,"parent":"tQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e}":{"opcode":"data_setvariableto","next":"V)","parent":"cm","inputs":{"VALUE":[3,"q[",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"a^/"},"q[":{"opcode":"operator_subtract","next":null,"parent":"e}","inputs":{"NUM1":[3,"[p",[4,"0"]],"NUM2":[3,"-{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?F":{"opcode":"argument_reporter_string_number","next":null,"parent":"[r","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a/Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"-_","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"V)":{"opcode":"data_replaceitemoflist","next":"IT","parent":"e}","inputs":{"INDEX":[3,"^l",[7,"0"]],"ITEM":[3,"a^:",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a@m":{"opcode":"argument_reporter_string_number","next":null,"parent":"^m","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^:":{"opcode":"operator_mod","next":null,"parent":"V)","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"IT":{"opcode":"data_replaceitemoflist","next":"a^;","parent":"V)","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"?i",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a=:":{"opcode":"operator_lt","next":null,"parent":"?h","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^;":{"opcode":"control_stop","next":null,"parent":"IT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a/B":{"opcode":"argument_reporter_string_number","next":null,"parent":",]","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a=":{"opcode":"control_if_else","next":"IO","parent":"T","inputs":{"CONDITION":[2,"a^="],"SUBSTACK":[2,"sS"],"SUBSTACK2":[2,"s]"]},"fields":{},"shadow":false,"topLevel":false},"a^=":{"opcode":"operator_equals","next":null,"parent":"a=","inputs":{"OPERAND1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sS":{"opcode":"data_setvariableto","next":"Zr","parent":"a=","inputs":{"VALUE":[3,"[S",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a?O":{"opcode":"argument_reporter_string_number","next":null,"parent":"[U","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"Zr":{"opcode":"data_replaceitemoflist","next":null,"parent":"sS","inputs":{"INDEX":[3,"//",[7,"0"]],"ITEM":[3,"/:",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:v":{"opcode":"argument_reporter_string_number","next":null,"parent":"/.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a/J":{"opcode":"argument_reporter_string_number","next":null,"parent":"-w","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"s]":{"opcode":"data_setvariableto","next":"Zt","parent":"a=","inputs":{"VALUE":[3,"Ve",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a?(":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vf","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zt":{"opcode":"data_replaceitemoflist","next":null,"parent":"s]","inputs":{"INDEX":[3,":c",[7,"0"]],"ITEM":[3,"@Y",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:y":{"opcode":"argument_reporter_string_number","next":null,"parent":":d","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a==":{"opcode":"argument_reporter_string_number","next":null,"parent":"?s","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"IO":{"opcode":"data_replaceitemoflist","next":"a^?","parent":"a=","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"Tm",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;v":{"opcode":"operator_gt","next":null,"parent":"Tm","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"a^?":{"opcode":"control_stop","next":null,"parent":"IO","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cv":{"opcode":"control_if","next":"cu","parent":"T","inputs":{"CONDITION":[2,"]I"],"SUBSTACK":[2,"sH"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^@"},"a?/":{"opcode":"argument_reporter_string_number","next":null,"parent":"]H","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sH":{"opcode":"data_replaceitemoflist","next":"a^[","parent":"cv","inputs":{"INDEX":[3,"@=",[7,"0"]],"ITEM":[3,"@?",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?x":{"opcode":"argument_reporter_string_number","next":null,"parent":"@;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"rv":{"opcode":"operator_add","next":null,"parent":"@?","inputs":{"NUM1":[3,"^O",[4,"0"]],"NUM2":[3,":%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:-":{"opcode":"argument_reporter_string_number","next":null,"parent":"Si","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a;s":{"opcode":"argument_reporter_string_number","next":null,"parent":"S}","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^[":{"opcode":"control_stop","next":null,"parent":"sH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cu":{"opcode":"control_if","next":";","parent":"cv","inputs":{"CONDITION":[2,"-;"],"SUBSTACK":[2,"sE"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^]"},"a/V":{"opcode":"argument_reporter_string_number","next":null,"parent":"-=","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sE":{"opcode":"data_replaceitemoflist","next":"a^^","parent":"cu","inputs":{"INDEX":[3,"[]",[7,"0"]],"ITEM":[3,"@G",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?W":{"opcode":"argument_reporter_string_number","next":null,"parent":"[^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Zy":{"opcode":"operator_add","next":null,"parent":"@G","inputs":{"NUM1":[3,"[M",[4,"0"]],"NUM2":[3,":o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@G":{"opcode":"argument_reporter_string_number","next":null,"parent":"^P","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a=C":{"opcode":"argument_reporter_string_number","next":null,"parent":"VK","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^^":{"opcode":"control_stop","next":null,"parent":"sE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},";":{"opcode":"control_if","next":"cI","parent":"cu","inputs":{"CONDITION":[2,"^b"],"SUBSTACK":[2,"Tf"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^_"},"a@f":{"opcode":"argument_reporter_string_number","next":null,"parent":"^c","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"IN":{"opcode":"control_repeat","next":"sX","parent":"Te","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"ZK"]},"fields":{},"shadow":false,"topLevel":false},"ZK":{"opcode":"data_setvariableto","next":"IY","parent":"IN","inputs":{"VALUE":[3,"VF",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a=A":{"opcode":"operator_mathop","next":null,"parent":"VH","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"IY":{"opcode":"data_changevariableby","next":"a^`","parent":"ZK","inputs":{"VALUE":[3,"?k",[4,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"Zx":{"opcode":"operator_add","next":null,"parent":"?j","inputs":{"NUM1":[3,";+",[4,"0"]],"NUM2":[3,":l",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@P":{"opcode":"argument_reporter_string_number","next":null,"parent":"[z","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a:t":{"opcode":"argument_reporter_string_number","next":null,"parent":"/*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a^`":{"opcode":"data_changevariableby","next":null,"parent":"IY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"sX":{"opcode":"data_replaceitemoflist","next":"a^{","parent":"IN","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"[|",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?Y":{"opcode":"operator_gt","next":null,"parent":"[|","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a^{":{"opcode":"control_stop","next":null,"parent":"sX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cI":{"opcode":"control_if","next":"cx","parent":";","inputs":{"CONDITION":[2,"_^"],"SUBSTACK":[2,"fF"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a^|"},"_^":{"opcode":"operator_equals","next":null,"parent":"cI","inputs":{"OPERAND1":[3,"__",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"__":{"opcode":"operator_mod","next":null,"parent":"_^","inputs":{"NUM1":[3,"a^}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a^}":{"opcode":"argument_reporter_string_number","next":null,"parent":"__","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fF":{"opcode":"data_replaceitemoflist","next":"a^~","parent":"cI","inputs":{"INDEX":[3,";@",[7,"0"]],"ITEM":[3,"^x",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;y":{"opcode":"argument_reporter_string_number","next":null,"parent":";?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:.":{"opcode":"argument_reporter_string_number","next":null,"parent":"Sp","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a^~":{"opcode":"control_stop","next":null,"parent":"fF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cx":{"opcode":"control_if","next":"aW","parent":"cI","inputs":{"CONDITION":[2,"/I"],"SUBSTACK":[2,"rl"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_a"},"a=!":{"opcode":"argument_reporter_string_number","next":null,"parent":"/J","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rl":{"opcode":"data_setvariableto","next":"fv","parent":"cx","inputs":{"VALUE":[3,"/K",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"rm":{"opcode":"operator_multiply","next":null,"parent":"/K","inputs":{"NUM1":[3,"@|",[4,"0"]],"NUM2":[3,"^Q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?@":{"opcode":"argument_reporter_string_number","next":null,"parent":"@}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a?D":{"opcode":"argument_reporter_string_number","next":null,"parent":"[g","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fv":{"opcode":"data_replaceitemoflist","next":"rE","parent":"rl","inputs":{"INDEX":[3,"R=",[7,"0"]],"ITEM":[3,"a_b",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:(":{"opcode":"argument_reporter_string_number","next":null,"parent":"R?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_b":{"opcode":"operator_mod","next":null,"parent":"fv","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"rE":{"opcode":"data_replaceitemoflist","next":"a_c","parent":"fv","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"R@",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a:)":{"opcode":"operator_divide","next":null,"parent":"R@","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a_c":{"opcode":"control_stop","next":null,"parent":"rE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aW":{"opcode":"control_if","next":"tR","parent":"cx","inputs":{"CONDITION":[2,"-B"],"SUBSTACK":[2,"I%"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_d"},"a/L":{"opcode":"argument_reporter_string_number","next":null,"parent":"-A","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"I%":{"opcode":"data_setvariableto","next":"q#","parent":"aW","inputs":{"VALUE":[3,"rF",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"rF":{"opcode":"operator_mod","next":null,"parent":"I%","inputs":{"NUM1":[3,"R]",[4,"0"]],"NUM2":[3,"R`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:*":{"opcode":"argument_reporter_string_number","next":null,"parent":"R^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:?":{"opcode":"argument_reporter_string_number","next":null,"parent":"Sz","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"q#":{"opcode":"data_replaceitemoflist","next":"I(","parent":"I%","inputs":{"INDEX":[3,"@^",[7,"0"]],"ITEM":[3,",?",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?y":{"opcode":"argument_reporter_string_number","next":null,"parent":"@]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q%":{"opcode":"operator_divide","next":null,"parent":",@","inputs":{"NUM1":[3,"]b",[4,"0"]],"NUM2":[3,"=?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?Z":{"opcode":"argument_reporter_string_number","next":null,"parent":"]d","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a?~":{"opcode":"argument_reporter_string_number","next":null,"parent":"]l","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"I(":{"opcode":"data_replaceitemoflist","next":"fE","parent":"q#","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"a_e",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a_e":{"opcode":"operator_mathop","next":null,"parent":"I(","inputs":{"NUM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"fE":{"opcode":"control_if","next":"a_f","parent":"I(","inputs":{"CONDITION":[2,"@I"],"SUBSTACK":[2,"Tr"]},"fields":{},"shadow":false,"topLevel":false},"a@K":{"opcode":"argument_reporter_string_number","next":null,"parent":"^Y","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a=g":{"opcode":"argument_reporter_string_number","next":null,"parent":"U`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_f":{"opcode":"control_stop","next":null,"parent":"fE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"tR":{"opcode":"data_replaceitemoflist","next":"I)","parent":"aW","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false,"comment":"a_g"},"I)":{"opcode":"data_setvariableto","next":"fg","parent":"tR","inputs":{"VALUE":[3,"ru",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"ru":{"opcode":"operator_mod","next":null,"parent":"I)","inputs":{"NUM1":[3,":R",[4,"0"]],"NUM2":[3,":T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:H":{"opcode":"argument_reporter_string_number","next":null,"parent":":Q","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a:I":{"opcode":"argument_reporter_string_number","next":null,"parent":":U","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fg":{"opcode":"data_replaceitemoflist","next":"SV","parent":"I)","inputs":{"INDEX":[3,".e",[7,"0"]],"ITEM":[3,".g",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a/(":{"opcode":"argument_reporter_string_number","next":null,"parent":".f","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q^":{"opcode":"operator_divide","next":null,"parent":".g","inputs":{"NUM1":[3,"[[",[4,"0"]],"NUM2":[3,".D",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?V":{"opcode":"argument_reporter_string_number","next":null,"parent":"[@","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a/:":{"opcode":"argument_reporter_string_number","next":null,"parent":".E","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fd":{"opcode":"control_if","next":"a_h","parent":"SV","inputs":{"CONDITION":[2,"=p"],"SUBSTACK":[2,"-f"]},"fields":{},"shadow":false,"topLevel":false},"a/E":{"opcode":"argument_reporter_string_number","next":null,"parent":"-e","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a={":{"opcode":"argument_reporter_string_number","next":null,"parent":"?W","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_h":{"opcode":"control_stop","next":null,"parent":"fd","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a:R":{"opcode":"argument_reporter_string_number","next":null,"parent":",C","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"e_":{"opcode":"control_if","next":"a_i","parent":"cb","inputs":{"CONDITION":[2,"?Q"],"SUBSTACK":[2,"gr"]},"fields":{},"shadow":false,"topLevel":false},"IP":{"opcode":"operator_equals","next":null,"parent":"?Q","inputs":{"OPERAND1":[3,"Tv",[10,""]],"OPERAND2":[3,"][",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a;x":{"opcode":"argument_reporter_string_number","next":null,"parent":";=","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a@b":{"opcode":"argument_reporter_string_number","next":null,"parent":"]^","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gr":{"opcode":"control_if","next":"a_j","parent":"e_","inputs":{"CONDITION":[2,"IW"],"SUBSTACK":[2,"a_k"]},"fields":{},"shadow":false,"topLevel":false},"IW":{"opcode":"operator_or","next":null,"parent":"gr","inputs":{"OPERAND1":[2,"]_"],"OPERAND2":[2,"s-"]},"fields":{},"shadow":false,"topLevel":false},"a@c":{"opcode":"operator_add","next":null,"parent":"]`","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"s-":{"opcode":"operator_and","next":null,"parent":"IW","inputs":{"OPERAND1":[2,"]X"],"OPERAND2":[2,"]U"]},"fields":{},"shadow":false,"topLevel":false},"a?^":{"opcode":"operator_add","next":null,"parent":"]W","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?]":{"opcode":"operator_add","next":null,"parent":"]V","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_k":{"opcode":"data_changevariableby","next":null,"parent":"gr","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a_j":{"opcode":"data_changevariableby","next":null,"parent":"gr","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a_i":{"opcode":"control_stop","next":null,"parent":"e_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a;G":{"opcode":"argument_reporter_string_number","next":null,"parent":"R#","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Iz":{"opcode":"data_setvariableto","next":"a_l","parent":")","inputs":{"VALUE":[3,"rZ",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"rZ":{"opcode":"operator_add","next":null,"parent":"Iz","inputs":{"NUM1":[3,"TO",[4,"0"]],"NUM2":[3,"a_m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a;J":{"opcode":"argument_reporter_string_number","next":null,"parent":"TN","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_m":{"opcode":"argument_reporter_string_number","next":null,"parent":"rZ","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a_l":{"opcode":"control_stop","next":null,"parent":"Iz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a=*":{"opcode":"argument_reporter_string_number","next":null,"parent":",E","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ce":{"opcode":"control_if_else","next":"a_n","parent":"cc","inputs":{"CONDITION":[2,"a_o"],"SUBSTACK":[2,"[j"],"SUBSTACK2":[2,"[k"]},"fields":{},"shadow":false,"topLevel":false},"a_o":{"opcode":"operator_equals","next":null,"parent":"ce","inputs":{"OPERAND1":[3,[12,"VIP jumps","YiRV7D4$v56yf}?X(y.j"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ap":{"opcode":"operator_add","next":null,"parent":"[j","inputs":{"NUM1":[3,",_",[4,"0"]],"NUM2":[3,"aq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:k":{"opcode":"argument_reporter_string_number","next":null,"parent":"/r","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aq":{"opcode":"operator_add","next":null,"parent":"ap","inputs":{"NUM1":[3,"/s",[4,"0"]],"NUM2":[3,"a_p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:l":{"opcode":"argument_reporter_string_number","next":null,"parent":"/t","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_p":{"opcode":"argument_reporter_string_number","next":null,"parent":"aq","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sL":{"opcode":"operator_add","next":null,"parent":"[k","inputs":{"NUM1":[3,"a_q",[4,"0"]],"NUM2":[3,"rg",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_q":{"opcode":"data_itemoflist","next":null,"parent":"sL","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"rg":{"opcode":"operator_add","next":null,"parent":"sL","inputs":{"NUM1":[3,"/u",[4,"0"]],"NUM2":[3,"a_r",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:m":{"opcode":"argument_reporter_string_number","next":null,"parent":"/v","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_r":{"opcode":"argument_reporter_string_number","next":null,"parent":"rg","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a_n":{"opcode":"control_stop","next":null,"parent":"ce","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a/s":{"opcode":"argument_reporter_string_number","next":null,"parent":",G","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ix":{"opcode":"data_setvariableto","next":"^k","parent":",H","inputs":{"VALUE":[3,"a_s",[10,""]]},"fields":{"VARIABLE":["chip8.rand","{a[B7#cNJicY#22S6G[g"]},"shadow":false,"topLevel":false},"a_s":{"opcode":"operator_random","next":null,"parent":"Ix","inputs":{"FROM":[1,[4,"0"]],"TO":[1,[4,"255"]]},"fields":{},"shadow":false,"topLevel":false},"I#":{"opcode":"control_repeat","next":"ss","parent":"^k","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"sy"]},"fields":{},"shadow":false,"topLevel":false},"sy":{"opcode":"data_setvariableto","next":"so","parent":"I#","inputs":{"VALUE":[3,":Z",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a:L":{"opcode":"operator_mathop","next":null,"parent":":X","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"so":{"opcode":"data_changevariableby","next":"a_t","parent":"sy","inputs":{"VALUE":[3,"=-",[4,"0"]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"sp":{"opcode":"operator_add","next":null,"parent":"=.","inputs":{"NUM1":[3,"ST",[4,"0"]],"NUM2":[3,"?y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@M":{"opcode":"argument_reporter_string_number","next":null,"parent":"SU","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a=]":{"opcode":"operator_divide","next":null,"parent":"?z","inputs":{"NUM1":[3,[12,"chip8.rand","{a[B7#cNJicY#22S6G[g"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_t":{"opcode":"data_changevariableby","next":null,"parent":"so","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"ss":{"opcode":"data_replaceitemoflist","next":"a_u","parent":"I#","inputs":{"INDEX":[3,"?c",[7,"0"]],"ITEM":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a=+":{"opcode":"argument_reporter_string_number","next":null,"parent":"?d","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a_u":{"opcode":"control_stop","next":null,"parent":"ss","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a=,":{"opcode":"argument_reporter_string_number","next":null,"parent":",R","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"rj":{"opcode":"data_setvariableto","next":"c|","parent":"=H","inputs":{"VALUE":[3,"/D",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a:b":{"opcode":"argument_reporter_string_number","next":null,"parent":".?","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"c|":{"opcode":"control_if","next":"rD","parent":"rj","inputs":{"CONDITION":[2,"a_v"],"SUBSTACK":[2,"cE"]},"fields":{},"shadow":false,"topLevel":false},"a_v":{"opcode":"operator_gt","next":null,"parent":"c|","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"cE":{"opcode":"control_if_else","next":null,"parent":"c|","inputs":{"CONDITION":[2,"cJ"],"SUBSTACK":[2,"]v"],"SUBSTACK2":[2,"se"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_w"},"cJ":{"opcode":"operator_and","next":null,"parent":"cE","inputs":{"OPERAND1":[2,"a_x"],"OPERAND2":[2,"a_y"]},"fields":{},"shadow":false,"topLevel":false},"a_x":{"opcode":"operator_equals","next":null,"parent":"cJ","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"a_y":{"opcode":"operator_gt","next":null,"parent":"cJ","inputs":{"OPERAND1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"s!":{"opcode":"data_setvariableto","next":"gs","parent":"]w","inputs":{"VALUE":[3,"@B",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a?m":{"opcode":"argument_reporter_string_number","next":null,"parent":"@C","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gs":{"opcode":"control_repeat","next":"a_z","parent":"s!","inputs":{"TIMES":[3,[12,"chip8.spritewidth","khZ[BR^hh5g2wVjstNx~"],[6,"0"]],"SUBSTACK":[2,"fi"]},"fields":{},"shadow":false,"topLevel":false},"fi":{"opcode":"control_if","next":"Td","parent":"gs","inputs":{"CONDITION":[2,".G"],"SUBSTACK":[2,"fn"]},"fields":{},"shadow":false,"topLevel":false},"a?B":{"opcode":"operator_add","next":null,"parent":".H","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fn":{"opcode":"control_if","next":"q!","parent":"fi","inputs":{"CONDITION":[2,"/T"],"SUBSTACK":[2,"a_A"]},"fields":{},"shadow":false,"topLevel":false},"f*":{"opcode":"operator_add","next":null,"parent":"=[","inputs":{"NUM1":[3,"a_B",[4,"0"]],"NUM2":[3,"a_C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_B":{"opcode":"operator_mod","next":null,"parent":"f*","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a_C":{"opcode":"operator_multiply","next":null,"parent":"f*","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_A":{"opcode":"control_incr_counter","next":null,"parent":"fn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"q!":{"opcode":"data_replaceitemoflist","next":null,"parent":"fn","inputs":{"INDEX":[3,"SD",[7,"0"]],"ITEM":[3,",;",[10,""]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"rK":{"opcode":"operator_add","next":null,"parent":"SD","inputs":{"NUM1":[3,"a_D",[4,"0"]],"NUM2":[3,"a_E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_D":{"opcode":"operator_mod","next":null,"parent":"rK","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a_E":{"opcode":"operator_multiply","next":null,"parent":"rK","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/A":{"opcode":"operator_add","next":null,"parent":",;","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;u":{"opcode":"data_changevariableby","next":null,"parent":"Td","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a_z":{"opcode":"data_changevariableby","next":null,"parent":"gs","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"se":{"opcode":"data_setvariableto","next":"si","parent":"cE","inputs":{"VALUE":[3,"Vl",[10,""]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"rx":{"opcode":"operator_and","next":null,"parent":"Vl","inputs":{"OPERAND1":[2,":."],"OPERAND2":[2,"I*"]},"fields":{},"shadow":false,"topLevel":false},"a:N":{"opcode":"argument_reporter_string_number","next":null,"parent":":-","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"I*":{"opcode":"operator_or","next":null,"parent":"rx","inputs":{"OPERAND1":[2,"a_F"],"OPERAND2":[2,"a_G"]},"fields":{},"shadow":false,"topLevel":false},"a_F":{"opcode":"operator_equals","next":null,"parent":"I*","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"a_G":{"opcode":"operator_equals","next":null,"parent":"I*","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"si":{"opcode":"data_setvariableto","next":"=I","parent":"se","inputs":{"VALUE":[3,"a_H",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a_H":{"opcode":"operator_mod","next":null,"parent":"si","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"f#":{"opcode":"control_if","next":"=","parent":"=I","inputs":{"CONDITION":[2,"I+"],"SUBSTACK":[2,"a_I"]},"fields":{},"shadow":false,"topLevel":false},"a_I":{"opcode":"data_setvariableto","next":null,"parent":"f#","inputs":{"VALUE":[3,[12,"CPF","g/7`YLSnP29ZzyQeb?9I"],[10,""]]},"fields":{"VARIABLE":["A","~kMyjD5[oxb%25@;,!jb"]},"shadow":false,"topLevel":false},"=":{"opcode":"control_if_else","next":"cF","parent":"f#","inputs":{"CONDITION":[2,"q;"],"SUBSTACK":[2,"a_J"],"SUBSTACK2":[2,"Vp"]},"fields":{},"shadow":false,"topLevel":false},"q;":{"opcode":"operator_and","next":null,"parent":"=","inputs":{"OPERAND1":[2,"-)"],"OPERAND2":[2,"=J"]},"fields":{},"shadow":false,"topLevel":false},"a/U":{"opcode":"argument_reporter_string_number","next":null,"parent":"-*","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a=L":{"opcode":"operator_equals","next":null,"parent":"=J","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"a_J":{"opcode":"data_setvariableto","next":null,"parent":"=","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a=q":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vq","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cF":{"opcode":"control_if_else","next":"c.","parent":"=","inputs":{"CONDITION":[2,"]D"],"SUBSTACK":[2,"I,"],"SUBSTACK2":[2,"a_K"]},"fields":{},"shadow":false,"topLevel":false},"a?-":{"opcode":"operator_add","next":null,"parent":"]C","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"I,":{"opcode":"control_if","next":null,"parent":"cF","inputs":{"CONDITION":[2,"a_L"],"SUBSTACK":[2,"a_M"]},"fields":{},"shadow":false,"topLevel":false},"a_L":{"opcode":"operator_gt","next":null,"parent":"I,","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a_M":{"opcode":"data_setvariableto","next":null,"parent":"I,","inputs":{"VALUE":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"a_K":{"opcode":"data_setvariableto","next":null,"parent":"cF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"c.":{"opcode":"control_if","next":"f%","parent":"cF","inputs":{"CONDITION":[2,"=K"],"SUBSTACK":[2,",="]},"fields":{},"shadow":false,"topLevel":false},"ao":{"opcode":"data_setvariableto","next":"I-","parent":",=","inputs":{"VALUE":[3,"-U",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a/P":{"opcode":"argument_reporter_string_number","next":null,"parent":"-R","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"I-":{"opcode":"control_repeat","next":"a_N","parent":"ao","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"]"]},"fields":{},"shadow":false,"topLevel":false},"]":{"opcode":"data_setvariableto","next":"I.","parent":"I-","inputs":{"VALUE":[3,"@_",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"a?z":{"opcode":"operator_add","next":null,"parent":"@_","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I.":{"opcode":"control_repeat","next":"a_O","parent":"]","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"gt"]},"fields":{},"shadow":false,"topLevel":false},"gt":{"opcode":"control_if","next":"rJ","parent":"I.","inputs":{"CONDITION":[2,"sI"],"SUBSTACK":[2,"sO"]},"fields":{},"shadow":false,"topLevel":false},"sI":{"opcode":"operator_and","next":null,"parent":"gt","inputs":{"OPERAND1":[2,"a_P"],"OPERAND2":[2,"@`"]},"fields":{},"shadow":false,"topLevel":false},"a_P":{"opcode":"operator_gt","next":null,"parent":"sI","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"sJ":{"opcode":"operator_and","next":null,"parent":"@`","inputs":{"OPERAND1":[2,"q~"],"OPERAND2":[2,"a_Q"]},"fields":{},"shadow":false,"topLevel":false},"q~":{"opcode":"operator_or","next":null,"parent":"sJ","inputs":{"OPERAND1":[2,".I"],"OPERAND2":[2,"=L"]},"fields":{},"shadow":false,"topLevel":false},"a/;":{"opcode":"operator_subtract","next":null,"parent":".I","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=N":{"opcode":"operator_subtract","next":null,"parent":"=L","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_Q":{"opcode":"operator_equals","next":null,"parent":"sJ","inputs":{"OPERAND1":[3,[12,"c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"sO":{"opcode":"control_if_else","next":null,"parent":"gt","inputs":{"CONDITION":[2,"[w"],"SUBSTACK":[2,"ZI"],"SUBSTACK2":[2,"re"]},"fields":{},"shadow":false,"topLevel":false},"IE":{"opcode":"operator_add","next":null,"parent":"[y","inputs":{"NUM1":[3,"a_R",[4,"0"]],"NUM2":[3,".J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_R":{"opcode":"operator_mod","next":null,"parent":"IE","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a/=":{"opcode":"operator_mod","next":null,"parent":".J","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ZI":{"opcode":"control_if","next":null,"parent":"sO","inputs":{"CONDITION":[2,"=/"],"SUBSTACK":[2,"Vy"]},"fields":{},"shadow":false,"topLevel":false},"a=Y":{"opcode":"operator_equals","next":null,"parent":"=/","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ZJ":{"opcode":"operator_add","next":null,"parent":"Vz","inputs":{"NUM1":[3,"a_S",[4,"0"]],"NUM2":[3,"VA",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_S":{"opcode":"operator_mod","next":null,"parent":"ZJ","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=x":{"opcode":"operator_mod","next":null,"parent":"VA","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"re":{"opcode":"control_if","next":"a_T","parent":"sO","inputs":{"CONDITION":[2,"@)"],"SUBSTACK":[2,"/c"]},"fields":{},"shadow":false,"topLevel":false},"a?v":{"opcode":"operator_equals","next":null,"parent":"@)","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IH":{"opcode":"operator_add","next":null,"parent":"/d","inputs":{"NUM1":[3,"a_U",[4,"0"]],"NUM2":[3,"/e",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_U":{"opcode":"operator_mod","next":null,"parent":"IH","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:f":{"opcode":"operator_mod","next":null,"parent":"/e","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_T":{"opcode":"control_incr_counter","next":null,"parent":"re","inputs":{},"fields":{},"shadow":false,"topLevel":false},"rJ":{"opcode":"data_setvariableto","next":"a_V","parent":"gt","inputs":{"VALUE":[3,"Sy",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"a:=":{"opcode":"operator_multiply","next":null,"parent":"Sy","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_V":{"opcode":"data_changevariableby","next":null,"parent":"rJ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a_O":{"opcode":"data_changevariableby","next":null,"parent":"I.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a_N":{"opcode":"data_changevariableby","next":null,"parent":"I-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"f%":{"opcode":"control_if","next":"av","parent":"c.","inputs":{"CONDITION":[2,"=M"],"SUBSTACK":[2,"=N"]},"fields":{},"shadow":false,"topLevel":false},"sc":{"opcode":"data_changevariableby","next":"U|","parent":"=N","inputs":{"VALUE":[3,"a_W",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a_W":{"opcode":"operator_multiply","next":null,"parent":"sc","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=h":{"opcode":"argument_reporter_string_number","next":null,"parent":"Vc","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"=X":{"opcode":"control_repeat","next":null,"parent":"av","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"s^"]},"fields":{},"shadow":false,"topLevel":false},"s^":{"opcode":"data_setvariableto","next":"I/","parent":"=X","inputs":{"VALUE":[3,"TA",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a;B":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ty","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"I/":{"opcode":"control_repeat","next":"a_X","parent":"s^","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"sw"]},"fields":{},"shadow":false,"topLevel":false},"sw":{"opcode":"data_setvariableto","next":"tS","parent":"I/","inputs":{"VALUE":[3,"?/",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"a=~":{"opcode":"operator_add","next":null,"parent":"?/","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"tS":{"opcode":"control_repeat","next":"a_Y","parent":"sw","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"gu"]},"fields":{},"shadow":false,"topLevel":false},"gu":{"opcode":"control_if","next":"rM","parent":"tS","inputs":{"CONDITION":[2,"s?"],"SUBSTACK":[2,"V,"]},"fields":{},"shadow":false,"topLevel":false},"s?":{"opcode":"operator_and","next":null,"parent":"gu","inputs":{"OPERAND1":[2,"a_Z"],"OPERAND2":[2,"^v"]},"fields":{},"shadow":false,"topLevel":false},"a_Z":{"opcode":"operator_gt","next":null,"parent":"s?","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"s@":{"opcode":"operator_and","next":null,"parent":"^v","inputs":{"OPERAND1":[2,"IS"],"OPERAND2":[2,"a_!"]},"fields":{},"shadow":false,"topLevel":false},"IS":{"opcode":"operator_or","next":null,"parent":"s@","inputs":{"OPERAND1":[2,"^w"],"OPERAND2":[2,"?f"]},"fields":{},"shadow":false,"topLevel":false},"a@s":{"opcode":"operator_subtract","next":null,"parent":"^w","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=.":{"opcode":"operator_subtract","next":null,"parent":"?f","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_!":{"opcode":"operator_equals","next":null,"parent":"s@","inputs":{"OPERAND1":[3,[12,"c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"V,":{"opcode":"control_if_else","next":null,"parent":"gu","inputs":{"CONDITION":[2,"^I"],"SUBSTACK":[2,"s`"],"SUBSTACK2":[2,"fV"]},"fields":{},"shadow":false,"topLevel":false},"s_":{"opcode":"operator_add","next":null,"parent":"^G","inputs":{"NUM1":[3,"a_#",[4,"0"]],"NUM2":[3,"^J",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_#":{"opcode":"operator_mod","next":null,"parent":"s_","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a@D":{"opcode":"operator_mod","next":null,"parent":"^J","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s`":{"opcode":"control_if","next":null,"parent":"V,","inputs":{"CONDITION":[2,"^K"],"SUBSTACK":[2,"^L"]},"fields":{},"shadow":false,"topLevel":false},"a@E":{"opcode":"operator_equals","next":null,"parent":"^K","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"s{":{"opcode":"operator_add","next":null,"parent":"^M","inputs":{"NUM1":[3,"a_%",[4,"0"]],"NUM2":[3,"_`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_%":{"opcode":"operator_mod","next":null,"parent":"s{","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"_`":{"opcode":"operator_multiply","next":null,"parent":"s{","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a_(",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_(":{"opcode":"operator_mod","next":null,"parent":"_`","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fV":{"opcode":"control_if","next":"a_)","parent":"V,","inputs":{"CONDITION":[2,"=q"],"SUBSTACK":[2,"]{"]},"fields":{},"shadow":false,"topLevel":false},"a=l":{"opcode":"operator_equals","next":null,"parent":"=q","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sD":{"opcode":"operator_add","next":null,"parent":"]|","inputs":{"NUM1":[3,"a_*",[4,"0"]],"NUM2":[3,"@F",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_*":{"opcode":"operator_mod","next":null,"parent":"sD","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?o":{"opcode":"operator_mod","next":null,"parent":"@F","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_)":{"opcode":"control_incr_counter","next":null,"parent":"fV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"rM":{"opcode":"data_setvariableto","next":"a_+","parent":"gu","inputs":{"VALUE":[3,"SJ",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"a:^":{"opcode":"operator_multiply","next":null,"parent":"SJ","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_+":{"opcode":"data_changevariableby","next":null,"parent":"rM","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a_Y":{"opcode":"data_changevariableby","next":null,"parent":"tS","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a_X":{"opcode":"data_changevariableby","next":null,"parent":"I/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a:_":{"opcode":"operator_multiply","next":null,"parent":"SM","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rD":{"opcode":"data_replaceitemoflist","next":"a_,","parent":"c|","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,";Q",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a?u":{"opcode":"control_get_counter","next":null,"parent":";R","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a_,":{"opcode":"control_stop","next":null,"parent":"rD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e|":{"opcode":"control_if","next":"cC","parent":"cf","inputs":{"CONDITION":[2,"R:"],"SUBSTACK":[2,"fu"]},"fields":{},"shadow":false,"topLevel":false},"a:#":{"opcode":"argument_reporter_string_number","next":null,"parent":"R:","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fu":{"opcode":"control_if_else","next":"a_-","parent":"e|","inputs":{"CONDITION":[2,"R;"],"SUBSTACK":[2,"rz"],"SUBSTACK2":[2,"s."]},"fields":{},"shadow":false,"topLevel":false},"a:%":{"opcode":"argument_reporter_string_number","next":null,"parent":"R;","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rz":{"opcode":"control_if","next":null,"parent":"fu","inputs":{"CONDITION":[2,":@"],"SUBSTACK":[2,"gv"]},"fields":{},"shadow":false,"topLevel":false},"a@w":{"opcode":"argument_reporter_string_number","next":null,"parent":"R}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gv":{"opcode":"control_if","next":"ZV","parent":"rz","inputs":{"CONDITION":[2,"s["],"SUBSTACK":[2,"a_."]},"fields":{},"shadow":false,"topLevel":false},"s[":{"opcode":"operator_or","next":null,"parent":"gv","inputs":{"OPERAND1":[2,"?v"],"OPERAND2":[2,"sr"]},"fields":{},"shadow":false,"topLevel":false},"a=@":{"opcode":"operator_add","next":null,"parent":"?u","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sr":{"opcode":"operator_and","next":null,"parent":"s[","inputs":{"OPERAND1":[2,"?w"],"OPERAND2":[2,"=;"]},"fields":{},"shadow":false,"topLevel":false},"a=[":{"opcode":"operator_add","next":null,"parent":"?x","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=Z":{"opcode":"operator_add","next":null,"parent":"=:","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_.":{"opcode":"data_changevariableby","next":null,"parent":"gv","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"ZV":{"opcode":"data_changevariableby","next":null,"parent":"gv","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"_{"},"s.":{"opcode":"control_if","next":null,"parent":"fu","inputs":{"CONDITION":[2,";~"],"SUBSTACK":[2,"gw"]},"fields":{},"shadow":false,"topLevel":false},"a/~":{"opcode":"argument_reporter_string_number","next":null,"parent":".-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gw":{"opcode":"control_if","next":"lg","parent":"s.","inputs":{"CONDITION":[2,"IF"],"SUBSTACK":[2,"a_/"]},"fields":{},"shadow":false,"topLevel":false},"IF":{"opcode":"operator_or","next":null,"parent":"gw","inputs":{"OPERAND1":[2,".K"],"OPERAND2":[2,"q?"]},"fields":{},"shadow":false,"topLevel":false},"a/?":{"opcode":"operator_add","next":null,"parent":".L","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q?":{"opcode":"operator_and","next":null,"parent":"IF","inputs":{"OPERAND1":[2,"-@"],"OPERAND2":[2,"@V"]},"fields":{},"shadow":false,"topLevel":false},"a/X":{"opcode":"operator_add","next":null,"parent":"-[","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?r":{"opcode":"operator_add","next":null,"parent":"@U","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a_/":{"opcode":"data_changevariableby","next":null,"parent":"gw","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"lg":{"opcode":"data_changevariableby","next":null,"parent":"gw","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false,"comment":"_|"},"a_-":{"opcode":"control_stop","next":null,"parent":"fu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cC":{"opcode":"control_if","next":"fq","parent":"e|","inputs":{"CONDITION":[2,"@W"],"SUBSTACK":[2,"^A"]},"fields":{},"shadow":false,"topLevel":false},"a?s":{"opcode":"argument_reporter_string_number","next":null,"parent":"@W","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"lf":{"opcode":"control_if","next":"cA","parent":"^A","inputs":{"CONDITION":[2,"=_"],"SUBSTACK":[2,"tT"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_:"},"a=#":{"opcode":"argument_reporter_string_number","next":null,"parent":"=^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"tT":{"opcode":"data_setvariableto","next":"a_;","parent":"lf","inputs":{"VALUE":[3,"ax",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"ax":{"opcode":"operator_add","next":null,"parent":"tT","inputs":{"NUM1":[3,"=`",[4,"0"]],"NUM2":[3,"a_=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=%":{"opcode":"operator_subtract","next":null,"parent":"={","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_=":{"opcode":"data_itemoflist","next":null,"parent":"ax","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a_;":{"opcode":"control_stop","next":null,"parent":"tT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cA":{"opcode":"control_if","next":"cy","parent":"lf","inputs":{"CONDITION":[2,"=|"],"SUBSTACK":[2,"tU"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_?"},"a=(":{"opcode":"argument_reporter_string_number","next":null,"parent":"=}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"tU":{"opcode":"data_setvariableto","next":"a_@","parent":"cA","inputs":{"VALUE":[3,"s#",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"s#":{"opcode":"operator_add","next":null,"parent":"tU","inputs":{"NUM1":[3,"]x",[4,"0"]],"NUM2":[3,"a_[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a?)":{"opcode":"operator_subtract","next":null,"parent":"]y","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_[":{"opcode":"data_itemoflist","next":null,"parent":"s#","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a_@":{"opcode":"control_stop","next":null,"parent":"tU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cy":{"opcode":"control_if","next":"cp","parent":"cA","inputs":{"CONDITION":[2,"/Y"],"SUBSTACK":[2,"^s"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_]"},"a:s":{"opcode":"argument_reporter_string_number","next":null,"parent":"/X","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"s;":{"opcode":"data_setvariableto","next":"a_^","parent":"^s","inputs":{"VALUE":[3,"rh",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"rh":{"opcode":"operator_add","next":null,"parent":"s;","inputs":{"NUM1":[3,"/w",[4,"0"]],"NUM2":[3,"a__",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a:n":{"opcode":"operator_subtract","next":null,"parent":"/x","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a__":{"opcode":"data_itemoflist","next":null,"parent":"rh","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a_^":{"opcode":"control_stop","next":null,"parent":"s;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cp":{"opcode":"control_if","next":"a_`","parent":"cy","inputs":{"CONDITION":[2,"-k"],"SUBSTACK":[2,"-i"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a_{"},"a/F":{"opcode":"argument_reporter_string_number","next":null,"parent":"-j","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"q)":{"opcode":"operator_add","next":null,"parent":"-i","inputs":{"NUM1":[3,"a_|",[4,"0"]],"NUM2":[3,"ZD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a_|":{"opcode":"data_itemoflist","next":null,"parent":"q)","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"ZD":{"opcode":"operator_add","next":null,"parent":"q)","inputs":{"NUM1":[3,"=A",[4,"0"]],"NUM2":[3,"a_}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=s":{"opcode":"operator_subtract","next":null,"parent":"=B","inputs":{"NUM1":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a_}":{"opcode":"data_itemoflist","next":null,"parent":"ZD","inputs":{"INDEX":[3,[12,"chip8.pc","Zm~RHQxf]yUfdH)gtna."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a_`":{"opcode":"control_stop","next":null,"parent":"cp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"fq":{"opcode":"control_if","next":"`","parent":"cC","inputs":{"CONDITION":[2,"=C"],"SUBSTACK":[2,"c:"]},"fields":{},"shadow":false,"topLevel":false},"a=t":{"opcode":"argument_reporter_string_number","next":null,"parent":"=C","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},":N":{"opcode":"operator_equals","next":null,"parent":"c:","inputs":{"OPERAND1":[3,"a_~",[10,""]],"OPERAND2":[1,[10,"0x01"]]},"fields":{},"shadow":false,"topLevel":false},"a_~":{"opcode":"argument_reporter_string_number","next":null,"parent":":N","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"rt":{"opcode":"data_setvariableto","next":"a`a","parent":"c:","inputs":{"VALUE":[3,"=D",[10,""]]},"fields":{"VARIABLE":["chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"]},"shadow":false,"topLevel":false},"a=u":{"opcode":"argument_reporter_string_number","next":null,"parent":"=D","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`a":{"opcode":"control_stop","next":null,"parent":"rt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"=T":{"opcode":"operator_equals","next":null,"parent":"as","inputs":{"OPERAND1":[3,"a`b",[10,""]],"OPERAND2":[1,[10,"0x02"]]},"fields":{},"shadow":false,"topLevel":false},"a`b":{"opcode":"argument_reporter_string_number","next":null,"parent":"=T","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"=U":{"opcode":"data_setvariableto","next":"ZE","parent":"as","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.audioflag","G(YRd^aUK_k)d~bJ8S@h"]},"shadow":false,"topLevel":false},"ZE":{"opcode":"data_setvariableto","next":"=E","parent":"=U","inputs":{"VALUE":[3,"a`c",[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a`c":{"opcode":"operator_add","next":null,"parent":"ZE","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ZF":{"opcode":"control_repeat","next":"a`d","parent":"=E","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"tV"]},"fields":{},"shadow":false,"topLevel":false},"tV":{"opcode":"data_addtolist","next":"a`e","parent":"ZF","inputs":{"ITEM":[3,"a`f",[10,""]]},"fields":{"LIST":["chip8.audiobuffer","E)Xr`w!wLD[:xYMS;Sc^"]},"shadow":false,"topLevel":false},"a`f":{"opcode":"data_itemoflist","next":null,"parent":"tV","inputs":{"INDEX":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a`e":{"opcode":"data_changevariableby","next":null,"parent":"tV","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a`d":{"opcode":"control_stop","next":null,"parent":"ZF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aU":{"opcode":"control_if","next":".","parent":"as","inputs":{"CONDITION":[2,"^r"],"SUBSTACK":[2,"[~"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`g"},"a@q":{"opcode":"argument_reporter_string_number","next":null,"parent":"^r","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"az":{"opcode":"control_repeat","next":"s}","parent":"]a","inputs":{"TIMES":[1,[6,"3"]],"SUBSTACK":[2,"at"]},"fields":{},"shadow":false,"topLevel":false},"at":{"opcode":"procedures_call","next":"s*","parent":"az","inputs":{"hW9qrsR8.:i`r8E},#u7":[3,"UE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Convert %s to hex","argumentids":"[\"hW9qrsR8.:i`r8E},#u7\"]","warp":"true"}},"a;*":{"opcode":"operator_add","next":null,"parent":"UE","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s*":{"opcode":"data_setvariableto","next":"a`h","parent":"at","inputs":{"VALUE":[3,"]M",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"s+":{"opcode":"operator_join","next":null,"parent":"]M","inputs":{"STRING1":[3,"a`i",[10,""]],"STRING2":[3,"a`j",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a`i":{"opcode":"operator_letter_of","next":null,"parent":"s+","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a`j":{"opcode":"operator_letter_of","next":null,"parent":"s+","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a`h":{"opcode":"data_changevariableby","next":null,"parent":"s*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"s}":{"opcode":"data_replaceitemoflist","next":"a`k","parent":"az","inputs":{"INDEX":[3,"^!",[7,"0"]],"ITEM":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a@L":{"opcode":"argument_reporter_string_number","next":null,"parent":"^Z","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`k":{"opcode":"control_stop","next":null,"parent":"s}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},".":{"opcode":"control_if","next":"cK","parent":"aU","inputs":{"CONDITION":[2,"-?"],"SUBSTACK":[2,"qW"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_}"},"a/W":{"opcode":"argument_reporter_string_number","next":null,"parent":"-?","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qW":{"opcode":"data_replaceitemoflist","next":"a`l","parent":".","inputs":{"INDEX":[3,",#",[7,"0"]],"ITEM":[3,[12,"chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"],[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;E":{"opcode":"argument_reporter_string_number","next":null,"parent":"RX","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`l":{"opcode":"control_stop","next":null,"parent":"qW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cK":{"opcode":"control_if","next":"fx","parent":".","inputs":{"CONDITION":[2,"a`n"],"SUBSTACK":[2,"a`o"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`m"},"a`n":{"opcode":"operator_equals","next":null,"parent":"cK","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"a`o":{"opcode":"procedures_call","next":null,"parent":"cK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"fx":{"opcode":"control_if","next":"TJ","parent":"cK","inputs":{"CONDITION":[2,"a`p"],"SUBSTACK":[2,"SA"]},"fields":{},"shadow":false,"topLevel":false},"a`p":{"opcode":"operator_lt","next":null,"parent":"fx","inputs":{"OPERAND1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},"a:@":{"opcode":"argument_reporter_string_number","next":null,"parent":"SC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a;F":{"opcode":"control_stop","next":null,"parent":"TJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"`":{"opcode":"control_if","next":"^","parent":"fq","inputs":{"CONDITION":[2,"^N"],"SUBSTACK":[2,"s~"]},"fields":{},"shadow":false,"topLevel":false,"comment":"_~"},"a@F":{"opcode":"argument_reporter_string_number","next":null,"parent":"^N","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"s~":{"opcode":"data_setvariableto","next":"a`q","parent":"`","inputs":{"VALUE":[3,"[(",[10,""]]},"fields":{"VARIABLE":["chip8.delay_timer","4?BO{y/NB$*D3Srd3Fd1"]},"shadow":false,"topLevel":false},"a::":{"opcode":"argument_reporter_string_number","next":null,"parent":"Sv","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`q":{"opcode":"control_stop","next":null,"parent":"s~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"^":{"opcode":"control_if","next":"[","parent":"`","inputs":{"CONDITION":[2,"[)"],"SUBSTACK":[2,"sx"]},"fields":{},"shadow":false,"topLevel":false,"comment":"`a"},"a?T":{"opcode":"argument_reporter_string_number","next":null,"parent":"[)","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sx":{"opcode":"data_setvariableto","next":"a`r","parent":"^","inputs":{"VALUE":[3,"?[",[10,""]]},"fields":{"VARIABLE":["chip8.sound_timer","AYN*TU~SGNlQh:~mri07"]},"shadow":false,"topLevel":false},"a?b":{"opcode":"argument_reporter_string_number","next":null,"parent":"?]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`r":{"opcode":"control_stop","next":null,"parent":"sx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"[":{"opcode":"control_if","next":"cL","parent":"^","inputs":{"CONDITION":[2,"?^"],"SUBSTACK":[2,"r*"]},"fields":{},"shadow":false,"topLevel":false,"comment":"`b"},"a?c":{"opcode":"argument_reporter_string_number","next":null,"parent":"?^","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"r*":{"opcode":"data_setvariableto","next":"gx","parent":"[","inputs":{"VALUE":[3,"Uc",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a;W":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ua","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"gx":{"opcode":"control_if","next":"a`s","parent":"r*","inputs":{"CONDITION":[2,"a`t"],"SUBSTACK":[2,"a`u"]},"fields":{},"shadow":false,"topLevel":false},"a`t":{"opcode":"operator_equals","next":null,"parent":"gx","inputs":{"OPERAND1":[3,[12,"SF2091! fix","r(t;~7h#1V?m.J:,GVQv"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`u":{"opcode":"data_replaceitemoflist","next":null,"parent":"gx","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a`s":{"opcode":"control_stop","next":null,"parent":"gx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aV":{"opcode":"control_if","next":"aT","parent":"cL","inputs":{"CONDITION":[2,"?_"],"SUBSTACK":[2,"s)"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`v"},"a?d":{"opcode":"argument_reporter_string_number","next":null,"parent":"?_","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"s)":{"opcode":"data_setvariableto","next":"a`w","parent":"aV","inputs":{"VALUE":[3,".P",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"a/@":{"opcode":"argument_reporter_string_number","next":null,"parent":".S","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`w":{"opcode":"control_stop","next":null,"parent":"s)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aT":{"opcode":"control_if","next":"|","parent":"aV","inputs":{"CONDITION":[2,"TK"],"SUBSTACK":[2,"?K"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`x"},"a;H":{"opcode":"argument_reporter_string_number","next":null,"parent":"TK","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"ay":{"opcode":"data_setvariableto","next":"a`y","parent":"?K","inputs":{"VALUE":[3,"?L",[10,""]]},"fields":{"VARIABLE":["chip8.pc","Zm~RHQxf]yUfdH)gtna."]},"shadow":false,"topLevel":false},"@r":{"opcode":"operator_mod","next":null,"parent":"@q","inputs":{"NUM1":[3,"a`z",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a`z":{"opcode":"argument_reporter_string_number","next":null,"parent":"@r","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`y":{"opcode":"control_stop","next":null,"parent":"ay","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"|":{"opcode":"control_if","next":"c,","parent":"aT","inputs":{"CONDITION":[2,"`d"],"SUBSTACK":[2,"IQ"]},"fields":{},"shadow":false,"topLevel":false,"comment":"`c"},"`d":{"opcode":"operator_equals","next":null,"parent":"|","inputs":{"OPERAND1":[3,"a`A",[10,""]],"OPERAND2":[1,[10,"0x29"]]},"fields":{},"shadow":false,"topLevel":false},"a`A":{"opcode":"argument_reporter_string_number","next":null,"parent":"`d","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"IQ":{"opcode":"data_setvariableto","next":"a`B","parent":"|","inputs":{"VALUE":[3,";`",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a;A":{"opcode":"argument_reporter_string_number","next":null,"parent":";^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`B":{"opcode":"control_stop","next":null,"parent":"IQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c,":{"opcode":"control_if","next":"cM","parent":"|","inputs":{"CONDITION":[2,".k"],"SUBSTACK":[2,"cg"]},"fields":{},"shadow":false,"topLevel":false},"a/+":{"opcode":"argument_reporter_string_number","next":null,"parent":".k","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a;-":{"opcode":"argument_reporter_string_number","next":null,"parent":"UK","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"qQ":{"opcode":"data_setvariableto","next":"a`C","parent":"cg","inputs":{"VALUE":[3,"@c",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a?f":{"opcode":"argument_reporter_string_number","next":null,"parent":"@d","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`C":{"opcode":"control_stop","next":null,"parent":"qQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a@i":{"opcode":"argument_reporter_string_number","next":null,"parent":"@e","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"e`":{"opcode":"data_replaceitemoflist","next":"c_","parent":"ch","inputs":{"INDEX":[3,"a`D",[7,"0"]],"ITEM":[3,"[X",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a`D":{"opcode":"operator_add","next":null,"parent":"e`","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?A":{"opcode":"argument_reporter_string_number","next":null,"parent":"[c","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"c_":{"opcode":"data_replaceitemoflist","next":"fj","parent":"e`","inputs":{"INDEX":[3,"a`E",[7,"0"]],"ITEM":[3,".x",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a`E":{"opcode":"operator_add","next":null,"parent":"c_","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a//":{"opcode":"argument_reporter_string_number","next":null,"parent":".B","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"fj":{"opcode":"data_replaceitemoflist","next":"a`F","parent":"c_","inputs":{"INDEX":[3,"a`G",[7,"0"]],"ITEM":[3,".^",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a`G":{"opcode":"operator_add","next":null,"parent":"fj","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a@Q":{"opcode":"argument_reporter_string_number","next":null,"parent":".`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a`F":{"opcode":"control_stop","next":null,"parent":"fj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"/z":{"opcode":"operator_equals","next":null,"parent":"an","inputs":{"OPERAND1":[3,"/y",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a:o":{"opcode":"argument_reporter_string_number","next":null,"parent":"/y","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"sk":{"opcode":"data_setvariableto","next":"V-","parent":"an","inputs":{"VALUE":[3,"^#",[10,""]]},"fields":{"VARIABLE":["chip8.pitch","TpKJz2LxQD8g%5l=GF^w"]},"shadow":false,"topLevel":false},"a@R":{"opcode":"argument_reporter_string_number","next":null,"parent":"^(","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"V-":{"opcode":"control_if","next":"a`H","parent":"sk","inputs":{"CONDITION":[2,"^)"],"SUBSTACK":[2,"a`I"]},"fields":{},"shadow":false,"topLevel":false},"a@S":{"opcode":"data_itemoflist","next":null,"parent":"^)","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["pitches","xMDma1Q3J!y1yjTBt7(F"]},"shadow":false,"topLevel":false},"a`I":{"opcode":"data_setvariableto","next":null,"parent":"V-","inputs":{"VALUE":[1,[10,"-400"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"a`H":{"opcode":"control_stop","next":null,"parent":"V-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},",":{"opcode":"control_if","next":"co","parent":"an","inputs":{"CONDITION":[2,"-b"],"SUBSTACK":[2,"a`K"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`J"},"a/D":{"opcode":"argument_reporter_string_number","next":null,"parent":"-a","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a`K":{"opcode":"control_stop","next":null,"parent":",","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"co":{"opcode":"control_if","next":"gy","parent":",","inputs":{"CONDITION":[2,",,"],"SUBSTACK":[2,"a`M"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`L"},"a/x":{"opcode":"argument_reporter_string_number","next":null,"parent":",-","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a`M":{"opcode":"control_stop","next":null,"parent":"co","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"gy":{"opcode":"control_if","next":"a`N","parent":"co","inputs":{"CONDITION":[2,"`e"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`O"},"`e":{"opcode":"operator_equals","next":null,"parent":"gy","inputs":{"OPERAND1":[3,"`f",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"`f":{"opcode":"operator_mod","next":null,"parent":"`e","inputs":{"NUM1":[3,"a`P",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a`P":{"opcode":"argument_reporter_string_number","next":null,"parent":"`f","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a`N":{"opcode":"control_stop","next":null,"parent":"gy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cM":{"opcode":"control_if","next":"gz","parent":"c,","inputs":{"CONDITION":[2,"`h"],"SUBSTACK":[2,"`i"]},"fields":{},"shadow":false,"topLevel":false,"comment":"`g"},"`h":{"opcode":"operator_equals","next":null,"parent":"cM","inputs":{"OPERAND1":[3,"a`Q",[10,""]],"OPERAND2":[1,[10,"0x55"]]},"fields":{},"shadow":false,"topLevel":false},"a`Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"`h","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"`i":{"opcode":"data_setvariableto","next":"gA","parent":"cM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"gA":{"opcode":"control_repeat","next":"gB","parent":"`i","inputs":{"TIMES":[3,"`j",[6,"0"]],"SUBSTACK":[2,"`k"]},"fields":{},"shadow":false,"topLevel":false},"`j":{"opcode":"operator_add","next":null,"parent":"gA","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"`l",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`l":{"opcode":"operator_mod","next":null,"parent":"`j","inputs":{"NUM1":[3,"a`R",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a`R":{"opcode":"argument_reporter_string_number","next":null,"parent":"`l","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"`k":{"opcode":"data_changevariableby","next":"tW","parent":"gA","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"tW":{"opcode":"data_replaceitemoflist","next":null,"parent":"`k","inputs":{"INDEX":[3,"a`S",[7,"0"]],"ITEM":[3,"a`T",[10,""]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a`S":{"opcode":"operator_add","next":null,"parent":"tW","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`T":{"opcode":"data_itemoflist","next":null,"parent":"tW","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"gB":{"opcode":"control_if","next":"a`U","parent":"gA","inputs":{"CONDITION":[2,"a`V"],"SUBSTACK":[2,"a`W"]},"fields":{},"shadow":false,"topLevel":false},"a`V":{"opcode":"operator_equals","next":null,"parent":"gB","inputs":{"OPERAND1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`W":{"opcode":"data_changevariableby","next":null,"parent":"gB","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a`U":{"opcode":"control_stop","next":null,"parent":"gB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"gz":{"opcode":"control_if","next":"f.","parent":"cM","inputs":{"CONDITION":[2,"`m"],"SUBSTACK":[2,"gC"]},"fields":{},"shadow":false,"topLevel":false},"`m":{"opcode":"operator_equals","next":null,"parent":"gz","inputs":{"OPERAND1":[3,"a`X",[10,""]],"OPERAND2":[1,[10,"0x65"]]},"fields":{},"shadow":false,"topLevel":false},"a`X":{"opcode":"argument_reporter_string_number","next":null,"parent":"`m","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gC":{"opcode":"data_setvariableto","next":"c`","parent":"gz","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"`n"},"c`":{"opcode":"control_repeat","next":"gD","parent":"gC","inputs":{"TIMES":[3,"@i",[6,"0"]],"SUBSTACK":[2,"?X"]},"fields":{},"shadow":false,"topLevel":false},"a?h":{"opcode":"argument_reporter_string_number","next":null,"parent":"@h","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:r":{"opcode":"operator_add","next":null,"parent":"/V","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"gD":{"opcode":"control_if","next":"a`Y","parent":"c`","inputs":{"CONDITION":[2,"a`Z"],"SUBSTACK":[2,"a`!"]},"fields":{},"shadow":false,"topLevel":false},"a`Z":{"opcode":"operator_equals","next":null,"parent":"gD","inputs":{"OPERAND1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`!":{"opcode":"data_changevariableby","next":null,"parent":"gD","inputs":{"VALUE":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a`Y":{"opcode":"control_stop","next":null,"parent":"gD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"f.":{"opcode":"control_if","next":"e~","parent":"gz","inputs":{"CONDITION":[2,"@j"],"SUBSTACK":[2,"gE"]},"fields":{},"shadow":false,"topLevel":false},"a?i":{"opcode":"argument_reporter_string_number","next":null,"parent":"@j","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gE":{"opcode":"data_setvariableto","next":"cN","parent":"f.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"`o"},"cN":{"opcode":"control_if_else","next":"a`#","parent":"gE","inputs":{"CONDITION":[2,"rb"],"SUBSTACK":[2,"tX"],"SUBSTACK2":[2,"qV"]},"fields":{},"shadow":false,"topLevel":false},"rb":{"opcode":"operator_and","next":null,"parent":"cN","inputs":{"OPERAND1":[2,"@k"],"OPERAND2":[2,".["]},"fields":{},"shadow":false,"topLevel":false},"a?j":{"opcode":"argument_reporter_string_number","next":null,"parent":"@l","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:c":{"opcode":"operator_equals","next":null,"parent":".[","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"tX":{"opcode":"control_repeat_until","next":null,"parent":"cN","inputs":{"CONDITION":[2,"a`%"],"SUBSTACK":[2,"fU"]},"fields":{},"shadow":false,"topLevel":false},"a`%":{"opcode":"operator_gt","next":null,"parent":"tX","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"fU":{"opcode":"data_replaceitemoflist","next":"a`(","parent":"tX","inputs":{"INDEX":[3,"a`)",[7,"0"]],"ITEM":[3,"Vk",[10,""]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"a`)":{"opcode":"operator_add","next":null,"parent":"fU","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=j":{"opcode":"operator_add","next":null,"parent":"Vk","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`(":{"opcode":"data_changevariableby","next":null,"parent":"fU","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"qV":{"opcode":"control_repeat_until","next":null,"parent":"cN","inputs":{"CONDITION":[2,",X"],"SUBSTACK":[2,"c-"]},"fields":{},"shadow":false,"topLevel":false},"a/t":{"opcode":"argument_reporter_string_number","next":null,"parent":",Y","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"c-":{"opcode":"data_replaceitemoflist","next":"a`*","parent":"qV","inputs":{"INDEX":[3,"a`+",[7,"0"]],"ITEM":[3,",Z",[10,""]]},"fields":{"LIST":["schip8.RPL","S9{m^Yi?3a7,6K!sHQ@t"]},"shadow":false,"topLevel":false},"a`+":{"opcode":"operator_add","next":null,"parent":"c-","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a/u":{"opcode":"operator_add","next":null,"parent":",Z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`*":{"opcode":"data_changevariableby","next":null,"parent":"c-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a`#":{"opcode":"control_stop","next":null,"parent":"cN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"e~":{"opcode":"control_if","next":"c@","parent":"f.","inputs":{"CONDITION":[2,",!"],"SUBSTACK":[2,"gF"]},"fields":{},"shadow":false,"topLevel":false},"a/v":{"opcode":"argument_reporter_string_number","next":null,"parent":",!","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gF":{"opcode":"data_setvariableto","next":"a]","parent":"e~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false,"comment":"`p"},"a]":{"opcode":"control_if_else","next":"a`,","parent":"gF","inputs":{"CONDITION":[2,"r,"],"SUBSTACK":[2,"tY"],"SUBSTACK2":[2,"s="]},"fields":{},"shadow":false,"topLevel":false},"r,":{"opcode":"operator_and","next":null,"parent":"a]","inputs":{"OPERAND1":[2,"=i"],"OPERAND2":[2,"[A"]},"fields":{},"shadow":false,"topLevel":false},"a;%":{"opcode":"argument_reporter_string_number","next":null,"parent":"=h","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a?J":{"opcode":"operator_equals","next":null,"parent":"[A","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"tY":{"opcode":"control_repeat_until","next":null,"parent":"a]","inputs":{"CONDITION":[2,"a`-"],"SUBSTACK":[2,"f;"]},"fields":{},"shadow":false,"topLevel":false},"a`-":{"opcode":"operator_gt","next":null,"parent":"tY","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"f;":{"opcode":"data_replaceitemoflist","next":"a`.","parent":"tY","inputs":{"INDEX":[3,"a`/",[7,"0"]],"ITEM":[3,"^;",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a`/":{"opcode":"operator_add","next":null,"parent":"f;","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a@V":{"opcode":"operator_add","next":null,"parent":"^;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`.":{"opcode":"data_changevariableby","next":null,"parent":"f;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"s=":{"opcode":"control_repeat_until","next":null,"parent":"a]","inputs":{"CONDITION":[2,"^u"],"SUBSTACK":[2,"f-"]},"fields":{},"shadow":false,"topLevel":false},"a@r":{"opcode":"argument_reporter_string_number","next":null,"parent":"^t","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"f-":{"opcode":"data_replaceitemoflist","next":"a`:","parent":"s=","inputs":{"INDEX":[3,"a`;",[7,"0"]],"ITEM":[3,"?A",[10,""]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a`;":{"opcode":"operator_add","next":null,"parent":"f-","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a=^":{"opcode":"operator_add","next":null,"parent":"?A","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`:":{"opcode":"data_changevariableby","next":null,"parent":"f-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a`,":{"opcode":"control_stop","next":null,"parent":"a]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c@":{"opcode":"control_if","next":null,"parent":"e~","inputs":{"CONDITION":[2,"?B"],"SUBSTACK":[2,"Uw"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a`="},"a=_":{"opcode":"argument_reporter_string_number","next":null,"parent":"?B","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"a?a":{"opcode":"argument_reporter_string_number","next":null,"parent":"??","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a:M":{"opcode":"event_whenflagclicked","next":":!","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":8554,"y":1368},"`q":{"opcode":"data_deletealloflist","next":"`s","parent":"`r","inputs":{},"fields":{"LIST":["chip8.keyboard",":zUJFFvJ!Vekh7t/nbIN"]},"shadow":false,"topLevel":false},"`s":{"opcode":"data_setvariableto","next":"a`?","parent":"`q","inputs":{"VALUE":[1,[10,"Fast/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"a`?":{"opcode":"control_delete_this_clone","next":null,"parent":"`s","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a:!":{"opcode":"event_whenbroadcastreceived","next":";F","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":8401,"y":281},";P":{"opcode":"data_hidevariable","next":"`t","parent":";O","inputs":{},"fields":{"VARIABLE":["chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"]},"shadow":false,"topLevel":false},"`t":{"opcode":"data_hidevariable","next":"`u","parent":";P","inputs":{},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"`u":{"opcode":"data_hidevariable","next":"S+","parent":"`t","inputs":{},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"S+":{"opcode":"data_hidelist","next":"S*","parent":"`u","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"a;g":{"opcode":"control_delete_this_clone","next":null,"parent":"S*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a;h":{"opcode":"event_whenkeypressed","next":"S,","parent":null,"inputs":{},"fields":{"KEY_OPTION":["5",null]},"shadow":false,"topLevel":true,"x":11130,"y":64},"a;i":{"opcode":"operator_add","next":null,"parent":"S-","inputs":{"NUM1":[3,[12,"c8.Load/Save_Quirk","uAm4?3ed1Q#FT#;rW,cx"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;j":{"opcode":"event_whenkeypressed","next":"S.","parent":null,"inputs":{},"fields":{"KEY_OPTION":["6",null]},"shadow":false,"topLevel":true,"x":9728,"y":1408},"a;k":{"opcode":"operator_add","next":null,"parent":"S/","inputs":{"NUM1":[3,[12,"c8.Shift_quirk","gv+85XB+B[w?)D8r_?)C"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;l":{"opcode":"event_whenkeypressed","next":"S:","parent":null,"inputs":{},"fields":{"KEY_OPTION":["8",null]},"shadow":false,"topLevel":true,"x":11130,"y":1056},"a;m":{"opcode":"operator_add","next":null,"parent":"S;","inputs":{"NUM1":[3,[12,"VIP jumps","YiRV7D4$v56yf}?X(y.j"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;n":{"opcode":"event_whenkeypressed","next":"S=","parent":null,"inputs":{},"fields":{"KEY_OPTION":["n",null]},"shadow":false,"topLevel":true,"x":11153,"y":623},"a;o":{"opcode":"operator_add","next":null,"parent":"S?","inputs":{"NUM1":[3,[12,"SF2091! fix","r(t;~7h#1V?m.J:,GVQv"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a`@":{"opcode":"event_whenkeypressed","next":"tZ","parent":null,"inputs":{},"fields":{"KEY_OPTION":["7",null]},"shadow":false,"topLevel":true,"x":10343,"y":1910},"tZ":{"opcode":"control_if","next":null,"parent":"a`@","inputs":{"CONDITION":[2,"a`["],"SUBSTACK":[2,"gG"]},"fields":{},"shadow":false,"topLevel":false},"a`[":{"opcode":"operator_equals","next":null,"parent":"tZ","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"gG":{"opcode":"control_if_else","next":null,"parent":"tZ","inputs":{"CONDITION":[2,"a`]"],"SUBSTACK":[2,"a`^"],"SUBSTACK2":[2,"c="]},"fields":{},"shadow":false,"topLevel":false},"a`]":{"opcode":"operator_equals","next":null,"parent":"gG","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"a`^":{"opcode":"data_setvariableto","next":null,"parent":"gG","inputs":{"VALUE":[1,[10,"Accurate/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"c=":{"opcode":"control_if_else","next":null,"parent":"gG","inputs":{"CONDITION":[2,"a`_"],"SUBSTACK":[2,"S@"],"SUBSTACK2":[2,"gH"]},"fields":{},"shadow":false,"topLevel":false},"a`_":{"opcode":"operator_equals","next":null,"parent":"c=","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Accurate/Sharp"]]},"fields":{},"shadow":false,"topLevel":false},"S[":{"opcode":"data_setvariableto","next":"a``","parent":"S@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"a``":{"opcode":"data_setvariableto","next":null,"parent":"S[","inputs":{"VALUE":[1,[10,"Fast/Classic"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"gH":{"opcode":"control_if_else","next":null,"parent":"c=","inputs":{"CONDITION":[2,"a`{"],"SUBSTACK":[2,"a`|"],"SUBSTACK2":[2,"T/"]},"fields":{},"shadow":false,"topLevel":false},"a`{":{"opcode":"operator_equals","next":null,"parent":"gH","inputs":{"OPERAND1":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]],"OPERAND2":[1,[10,"Fast/Classic"]]},"fields":{},"shadow":false,"topLevel":false},"a`|":{"opcode":"data_setvariableto","next":null,"parent":"gH","inputs":{"VALUE":[1,[10,"Accurate/Classic"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"T/":{"opcode":"pen_setPenSizeTo","next":"T.","parent":"gH","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;U":{"opcode":"data_setvariableto","next":null,"parent":"T:","inputs":{"VALUE":[1,[10,"Fast/Sharp"]]},"fields":{"VARIABLE":["chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"]},"shadow":false,"topLevel":false},"a`}":{"opcode":"event_whenkeypressed","next":"IZ","parent":null,"inputs":{},"fields":{"KEY_OPTION":["0",null]},"shadow":false,"topLevel":true,"x":10620,"y":89},"IZ":{"opcode":"control_if","next":null,"parent":"a`}","inputs":{"CONDITION":[2,"^h"],"SUBSTACK":[2,"V("]},"fields":{},"shadow":false,"topLevel":false},"a@j":{"opcode":"operator_equals","next":null,"parent":"^h","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"V(":{"opcode":"control_if_else","next":null,"parent":"IZ","inputs":{"CONDITION":[2,"a`~"],"SUBSTACK":[2,"^i"],"SUBSTACK2":[2,"fw"]},"fields":{},"shadow":false,"topLevel":false},"a`~":{"opcode":"operator_equals","next":null,"parent":"V(","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Octo"]]},"fields":{},"shadow":false,"topLevel":false},"a@k":{"opcode":"data_setvariableto","next":null,"parent":"^i","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"fw":{"opcode":"control_if_else","next":null,"parent":"V(","inputs":{"CONDITION":[2,"a{a"],"SUBSTACK":[2,";Z"],"SUBSTACK2":[2,"q+"]},"fields":{},"shadow":false,"topLevel":false},"a{a":{"opcode":"operator_equals","next":null,"parent":"fw","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP"]]},"fields":{},"shadow":false,"topLevel":false},"a:;":{"opcode":"data_setvariableto","next":null,"parent":"Sx","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"q+":{"opcode":"control_if_else","next":null,"parent":"fw","inputs":{"CONDITION":[2,"a{b"],"SUBSTACK":[2,"-C"],"SUBSTACK2":[2,":E"]},"fields":{},"shadow":false,"topLevel":false},"a{b":{"opcode":"operator_equals","next":null,"parent":"q+","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"a@J":{"opcode":"data_setvariableto","next":null,"parent":":D","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"a:F":{"opcode":"data_setvariableto","next":null,"parent":":E","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"a;V":{"opcode":"event_whenbroadcastreceived","next":"T;","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":7759,"y":936},"T=":{"opcode":"data_deletealloflist","next":"^T","parent":"T;","inputs":{},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"T@":{"opcode":"data_deletealloflist","next":"T?","parent":"^U","inputs":{},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"T|":{"opcode":"data_setvariableto","next":"]z","parent":"T{","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["VIP jumps","YiRV7D4$v56yf}?X(y.j"]},"shadow":false,"topLevel":false},"a?*":{"opcode":"data_setvariableto","next":null,"parent":"]z","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"]},"shadow":false,"topLevel":false},"a?+":{"opcode":"event_whenkeypressed","next":"]A","parent":null,"inputs":{},"fields":{"KEY_OPTION":["m",null]},"shadow":false,"topLevel":true,"x":10963,"y":1279},"a?,":{"opcode":"operator_add","next":null,"parent":"]B","inputs":{"NUM1":[3,[12,"chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{c":{"opcode":"event_whenbroadcastreceived","next":"@u","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["WAVE-8 reset","|c=UL-|1:KK,V8,g?krF"]},"shadow":false,"topLevel":true,"x":-194,"y":647},"@u":{"opcode":"control_stop","next":"@t","parent":"a{c","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"-:":{"opcode":"event_broadcast","next":"g","parent":"-/","inputs":{"BROADCAST_INPUT":[1,[11,"WAVE-8_drawkeys","Pi~qDSlxleRjJ@ah)D#o"]]},"fields":{},"shadow":false,"topLevel":false},"g":{"opcode":"control_if","next":"=c","parent":"-:","inputs":{"CONDITION":[2,"r}"],"SUBSTACK":[2,"U:"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bL"},"r}":{"opcode":"operator_and","next":null,"parent":"g","inputs":{"OPERAND1":[2,"`v"],"OPERAND2":[2,"U."]},"fields":{},"shadow":false,"topLevel":false},"`v":{"opcode":"operator_equals","next":null,"parent":"r}","inputs":{"OPERAND1":[3,"a{d",[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"a{d":{"opcode":"data_itemoflist","next":null,"parent":"`v","inputs":{"INDEX":[1,[7,"513"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a=a":{"opcode":"data_itemoflist","next":null,"parent":"U.","inputs":{"INDEX":[1,[7,"514"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"U:":{"opcode":"data_setvariableto","next":"U/","parent":"g","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.drawflag","kvRL~`O/o863)hyq|o,_"]},"shadow":false,"topLevel":false},"a=b":{"opcode":"procedures_call","next":null,"parent":"U;","inputs":{"`lG9l]5qvKV5oZCT3g%a":[1,[10,"64"]],"x?$mmA.wDn:,20tFR{r?":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Screen Resize %s %s","argumentids":"[\"`lG9l]5qvKV5oZCT3g%a\",\"x?$mmA.wDn:,20tFR{r?\"]","warp":"true"}},"fJ":{"opcode":"control_if","next":"=d","parent":"=c","inputs":{"CONDITION":[2,"a{e"],"SUBSTACK":[2,"a{f"]},"fields":{},"shadow":false,"topLevel":false},"a{e":{"opcode":"operator_equals","next":null,"parent":"fJ","inputs":{"OPERAND1":[3,[12,"chip8.audio toggle","xX^EAt/9xIPmtV^FzOj1"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{f":{"opcode":"event_broadcastandwait","next":null,"parent":"fJ","inputs":{"BROADCAST_INPUT":[1,[11,"wave create","1$IbL{2UD4|fdA:ahKxG"]]},"fields":{},"shadow":false,"topLevel":false},"c?":{"opcode":"control_if","next":"=g","parent":"=f","inputs":{"CONDITION":[2,"sN"],"SUBSTACK":[2,"a{g"]},"fields":{},"shadow":false,"topLevel":false},"sN":{"opcode":"operator_and","next":null,"parent":"c?","inputs":{"OPERAND1":[2,"[u"],"OPERAND2":[2,"r~"]},"fields":{},"shadow":false,"topLevel":false},"a?H":{"opcode":"operator_equals","next":null,"parent":"[u","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"r~":{"opcode":"operator_or","next":null,"parent":"sN","inputs":{"OPERAND1":[2,"U="],"OPERAND2":[2,"U?"]},"fields":{},"shadow":false,"topLevel":false},"a=c":{"opcode":"operator_letter_of","next":null,"parent":"U=","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"chip8.drawmode","j^@d4kzPlrC*r`=~=ag9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a=d":{"opcode":"operator_equals","next":null,"parent":"U?","inputs":{"OPERAND1":[3,[12,"chip8.drawflag","kvRL~`O/o863)hyq|o,_"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"a{g":{"opcode":"procedures_call","next":null,"parent":"c?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"fK":{"opcode":"control_if","next":"fS","parent":"=g","inputs":{"CONDITION":[2,"a{h"],"SUBSTACK":[2,"U@"]},"fields":{},"shadow":false,"topLevel":false},"a{h":{"opcode":"operator_gt","next":null,"parent":"fK","inputs":{"OPERAND1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a=e":{"opcode":"operator_mod","next":null,"parent":"U@","inputs":{"NUM1":[3,[12,"chip8.fx0aflag","CMsw9:_o?,7RSBGR-L2C"],[4,"0"]],"NUM2":[1,[4,"17"]]},"fields":{},"shadow":false,"topLevel":false},"fS":{"opcode":"control_if","next":"f(","parent":"fK","inputs":{"CONDITION":[2,"U["],"SUBSTACK":[2,"U]"]},"fields":{},"shadow":false,"topLevel":false},"a=f":{"opcode":"sensing_keyoptions","next":null,"parent":"U[","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"fT":{"opcode":"control_if","next":"t!","parent":"U^","inputs":{"CONDITION":[2,"`w"],"SUBSTACK":[2,"a{i"]},"fields":{},"shadow":false,"topLevel":false},"`w":{"opcode":"operator_not","next":null,"parent":"fT","inputs":{"OPERAND":[2,"a{j"]},"fields":{},"shadow":false,"topLevel":false},"a{j":{"opcode":"operator_equals","next":null,"parent":"`w","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"Megachip"]]},"fields":{},"shadow":false,"topLevel":false},"a{i":{"opcode":"procedures_call","next":null,"parent":"fT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"chip8.render","argumentids":"[]","warp":"true"}},"t!":{"opcode":"sensing_askandwait","next":"sj","parent":"fT","inputs":{"QUESTION":[3,"]n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"]n":{"opcode":"operator_join","next":null,"parent":"t!","inputs":{"STRING1":[1,[10,"Type the number of Cycles Per Frame to run at. (PC: "]],"STRING2":[3,"]m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r.":{"opcode":"operator_join","next":null,"parent":"=l","inputs":{"STRING1":[3,"a{k",[10,""]],"STRING2":[3,"a{l",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{k":{"opcode":"operator_join","next":null,"parent":"r.","inputs":{"STRING1":[1,[10," ST: "]],"STRING2":[3,[12,"chip8.sound_timer","AYN*TU~SGNlQh:~mri07"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{l":{"opcode":"operator_join","next":null,"parent":"r.","inputs":{"STRING1":[1,[10," HPS: "]],"STRING2":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sj":{"opcode":"data_setvariableto","next":"=O","parent":"t!","inputs":{"VALUE":[3,"]p",[10,""]]},"fields":{"VARIABLE":["CPF","g/7`YLSnP29ZzyQeb?9I"]},"shadow":false,"topLevel":false},"]p":{"opcode":"operator_mathop","next":null,"parent":"sj","inputs":{"NUM":[3,"]o",[4,"0"]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"a?#":{"opcode":"sensing_answer","next":null,"parent":"]o","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a=P":{"opcode":"data_hidelist","next":null,"parent":"=O","inputs":{},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"f(":{"opcode":"control_if","next":"=P","parent":"fS","inputs":{"CONDITION":[2,"=Q"],"SUBSTACK":[2,"=R"]},"fields":{},"shadow":false,"topLevel":false},"a=R":{"opcode":"sensing_keyoptions","next":null,"parent":"=Q","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"a=S":{"opcode":"control_stop","next":null,"parent":"=S","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a=Q":{"opcode":"sound_volume","next":null,"parent":"=P","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a@g":{"opcode":"event_whenkeypressed","next":"^d","parent":null,"inputs":{},"fields":{"KEY_OPTION":["9",null]},"shadow":false,"topLevel":true,"x":11184,"y":838},"a@h":{"opcode":"operator_add","next":null,"parent":"^e","inputs":{"NUM1":[3,[12,"c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a?}":{"opcode":"data_addtolist","next":null,"parent":"];","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"]+":{"opcode":"data_deletealloflist","next":"ZP","parent":"]*","inputs":{},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{m":{"opcode":"operator_mod","next":null,"parent":"_r","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_r":{"opcode":"operator_equals","next":null,"parent":"f@","inputs":{"OPERAND1":[3,"a{m",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a;^":{"opcode":"operator_mod","next":null,"parent":"UY","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_v":{"opcode":"operator_equals","next":null,"parent":"f|","inputs":{"OPERAND1":[3,"a{n",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{n":{"opcode":"operator_mod","next":null,"parent":"_v","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"_B":{"opcode":"operator_equals","next":null,"parent":"gb","inputs":{"OPERAND1":[3,"a{o",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{o":{"opcode":"operator_mod","next":null,"parent":"_B","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a=I":{"opcode":"operator_mod","next":null,"parent":"VT","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a:W":{"opcode":"operator_mod","next":null,"parent":";B","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a=M":{"opcode":"operator_mod","next":null,"parent":"=K","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{p":{"opcode":"operator_mod","next":null,"parent":"=W","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"=W":{"opcode":"operator_gt","next":null,"parent":"av","inputs":{"OPERAND1":[3,"a{p",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"t#":{"opcode":"operator_add","next":null,"parent":"tc","inputs":{"NUM1":[3,"`x",[4,""]],"NUM2":[3,"`y",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"`x":{"opcode":"operator_multiply","next":null,"parent":"t#","inputs":{"NUM1":[3,"a{q",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a{q":{"opcode":"data_itemoflist","next":null,"parent":"`x","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"tc":{"opcode":"operator_add","next":null,"parent":"ID","inputs":{"NUM1":[3,"rG",[4,""]],"NUM2":[3,"t#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"`y":{"opcode":"operator_multiply","next":null,"parent":"t#","inputs":{"NUM1":[3,"a{r",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a{r":{"opcode":"data_itemoflist","next":null,"parent":"`y","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"tb":{"opcode":"operator_add","next":null,"parent":"Zu","inputs":{"NUM1":[3,"t%",[4,""]],"NUM2":[3,"t(",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t%":{"opcode":"operator_add","next":null,"parent":"tb","inputs":{"NUM1":[3,"a{s",[4,"0"]],"NUM2":[3,"`z",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{s":{"opcode":"data_itemoflist","next":null,"parent":"t%","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"`z":{"opcode":"operator_multiply","next":null,"parent":"t%","inputs":{"NUM1":[3,"a{t",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{t":{"opcode":"data_itemoflist","next":null,"parent":"`z","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"t(":{"opcode":"operator_add","next":null,"parent":"tb","inputs":{"NUM1":[3,"`A",[4,""]],"NUM2":[3,"`B",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"`A":{"opcode":"operator_multiply","next":null,"parent":"t(","inputs":{"NUM1":[3,"a{u",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a{u":{"opcode":"data_itemoflist","next":null,"parent":"`A","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"`B":{"opcode":"operator_multiply","next":null,"parent":"t(","inputs":{"NUM1":[3,"a{v",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a{v":{"opcode":"data_itemoflist","next":null,"parent":"`B","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"ZU":{"opcode":"operator_add","next":null,"parent":"aA","inputs":{"NUM1":[3,"t)",[4,""]],"NUM2":[3,"t*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t)":{"opcode":"operator_add","next":null,"parent":"ZU","inputs":{"NUM1":[3,"a{w",[4,"0"]],"NUM2":[3,"`C",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{w":{"opcode":"data_itemoflist","next":null,"parent":"t)","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"`C":{"opcode":"operator_multiply","next":null,"parent":"t)","inputs":{"NUM1":[3,"a{x",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a{x":{"opcode":"data_itemoflist","next":null,"parent":"`C","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"t*":{"opcode":"operator_add","next":null,"parent":"ZU","inputs":{"NUM1":[3,"`D",[4,""]],"NUM2":[3,"`E",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"`D":{"opcode":"operator_multiply","next":null,"parent":"t*","inputs":{"NUM1":[3,"a{y",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a{y":{"opcode":"data_itemoflist","next":null,"parent":"`D","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"`E":{"opcode":"operator_multiply","next":null,"parent":"t*","inputs":{"NUM1":[3,"a{z",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a{z":{"opcode":"data_itemoflist","next":null,"parent":"`E","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a=O":{"opcode":"operator_mod","next":null,"parent":"=M","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a:X":{"opcode":"operator_mod","next":null,"parent":";C","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"gd":{"opcode":"control_if","next":"ge","parent":"fb","inputs":{"CONDITION":[2,"`F"],"SUBSTACK":[2,"`G"]},"fields":{},"shadow":false,"topLevel":false},"`F":{"opcode":"operator_lt","next":null,"parent":"gd","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a{A",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{A":{"opcode":"operator_mod","next":null,"parent":"`F","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"`G":{"opcode":"data_setvariableto","next":"t+","parent":"gd","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"t+":{"opcode":"control_repeat_until","next":null,"parent":"`G","inputs":{"CONDITION":[2,"`H"],"SUBSTACK":[2,"`I"]},"fields":{},"shadow":false,"topLevel":false},"`H":{"opcode":"operator_gt","next":null,"parent":"t+","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a{B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{B":{"opcode":"operator_multiply","next":null,"parent":"`H","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`I":{"opcode":"data_setvariableto","next":"t,","parent":"t+","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"t,":{"opcode":"data_setvariableto","next":"gI","parent":"`I","inputs":{"VALUE":[3,"a{C",[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"gI":{"opcode":"control_repeat","next":"gJ","parent":"t,","inputs":{"TIMES":[3,"a{D",[6,"0"]],"SUBSTACK":[2,"t-"]},"fields":{},"shadow":false,"topLevel":false},"a{D":{"opcode":"operator_subtract","next":null,"parent":"gI","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"t-":{"opcode":"data_setvariableto","next":"a{E","parent":"gI","inputs":{"VALUE":[3,"`J",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`J":{"opcode":"operator_join","next":null,"parent":"t-","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"`K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`K":{"opcode":"data_itemoflist","next":null,"parent":"`J","inputs":{"INDEX":[3,"a{F",[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a{F":{"opcode":"operator_add","next":null,"parent":"`K","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{E":{"opcode":"data_changevariableby","next":null,"parent":"t-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"gJ":{"opcode":"control_repeat","next":"`L","parent":"gI","inputs":{"TIMES":[3,"a{G",[6,"0"]],"SUBSTACK":[2,"`M"]},"fields":{},"shadow":false,"topLevel":false},"a{G":{"opcode":"operator_divide","next":null,"parent":"gJ","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"`M":{"opcode":"data_setvariableto","next":null,"parent":"gJ","inputs":{"VALUE":[3,"a{H",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a{H":{"opcode":"operator_join","next":null,"parent":"`M","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"`L":{"opcode":"data_setvariableto","next":"`N","parent":"gJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`N":{"opcode":"data_setvariableto","next":"t.","parent":"`L","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"t.":{"opcode":"control_repeat","next":"`O","parent":"`N","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"gK"]},"fields":{},"shadow":false,"topLevel":false},"gK":{"opcode":"data_replaceitemoflist","next":"`P","parent":"t.","inputs":{"INDEX":[3,"a{I",[7,"0"]],"ITEM":[3,"a{J",[10,""]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a{I":{"opcode":"operator_add","next":null,"parent":"gK","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{J":{"opcode":"operator_letter_of","next":null,"parent":"gK","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`P":{"opcode":"data_changevariableby","next":"a{K","parent":"gK","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{K":{"opcode":"data_changevariableby","next":null,"parent":"`P","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"`O":{"opcode":"data_setvariableto","next":"a{L","parent":"t.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{L":{"opcode":"data_changevariableby","next":null,"parent":"`O","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"ge":{"opcode":"control_if","next":"a])","parent":"gd","inputs":{"CONDITION":[2,"a{M"],"SUBSTACK":[2,"`Q"]},"fields":{},"shadow":false,"topLevel":false},"a{M":{"opcode":"operator_lt","next":null,"parent":"ge","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`Q":{"opcode":"data_setvariableto","next":"t/","parent":"ge","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"t/":{"opcode":"control_repeat_until","next":null,"parent":"`Q","inputs":{"CONDITION":[2,"`R"],"SUBSTACK":[2,"`S"]},"fields":{},"shadow":false,"topLevel":false},"`R":{"opcode":"operator_gt","next":null,"parent":"t/","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a{N",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{N":{"opcode":"operator_multiply","next":null,"parent":"`R","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`S":{"opcode":"data_setvariableto","next":"t:","parent":"t/","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"t:":{"opcode":"data_setvariableto","next":"gL","parent":"`S","inputs":{"VALUE":[3,"a{O",[10,"4"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"gL":{"opcode":"control_repeat","next":"gM","parent":"t:","inputs":{"TIMES":[3,"a{P",[6,"0"]],"SUBSTACK":[2,"t;"]},"fields":{},"shadow":false,"topLevel":false},"a{P":{"opcode":"operator_subtract","next":null,"parent":"gL","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"t;":{"opcode":"data_setvariableto","next":"a{Q","parent":"gL","inputs":{"VALUE":[3,"`T",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`T":{"opcode":"operator_join","next":null,"parent":"t;","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"`U",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`U":{"opcode":"data_itemoflist","next":null,"parent":"`T","inputs":{"INDEX":[3,"a{R",[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{R":{"opcode":"operator_add","next":null,"parent":"`U","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{Q":{"opcode":"data_changevariableby","next":null,"parent":"t;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"gM":{"opcode":"control_repeat","next":"`V","parent":"gL","inputs":{"TIMES":[3,"a{S",[6,"0"]],"SUBSTACK":[2,"`W"]},"fields":{},"shadow":false,"topLevel":false},"a{S":{"opcode":"operator_divide","next":null,"parent":"gM","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"`W":{"opcode":"data_setvariableto","next":null,"parent":"gM","inputs":{"VALUE":[3,"a{T",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a{T":{"opcode":"operator_join","next":null,"parent":"`W","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[1,[10,"00"]]},"fields":{},"shadow":false,"topLevel":false},"`V":{"opcode":"data_setvariableto","next":"`X","parent":"gM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`X":{"opcode":"data_setvariableto","next":"t=","parent":"`V","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"t=":{"opcode":"control_repeat","next":"`Y","parent":"`X","inputs":{"TIMES":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[6,"0"]],"SUBSTACK":[2,"gN"]},"fields":{},"shadow":false,"topLevel":false},"gN":{"opcode":"data_replaceitemoflist","next":"`Z","parent":"t=","inputs":{"INDEX":[3,"a{U",[7,"0"]],"ITEM":[3,"a{V",[10,""]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{U":{"opcode":"operator_add","next":null,"parent":"gN","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{V":{"opcode":"operator_letter_of","next":null,"parent":"gN","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`Z":{"opcode":"data_changevariableby","next":"a{W","parent":"gN","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{W":{"opcode":"data_changevariableby","next":null,"parent":"`Z","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"`Y":{"opcode":"data_setvariableto","next":"a{X","parent":"t=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{X":{"opcode":"data_changevariableby","next":null,"parent":"`Y","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a=K":{"opcode":"operator_mod","next":null,"parent":"VY","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"gc":{"opcode":"control_if","next":"t?","parent":"fW","inputs":{"CONDITION":[2,"`!"],"SUBSTACK":[2,"`#"]},"fields":{},"shadow":false,"topLevel":false},"`!":{"opcode":"operator_lt","next":null,"parent":"gc","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a{Y",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{Y":{"opcode":"operator_mod","next":null,"parent":"`!","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"`#":{"opcode":"data_setvariableto","next":"gO","parent":"gc","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"gO":{"opcode":"control_repeat_until","next":"a{Z","parent":"`#","inputs":{"CONDITION":[2,"`%"],"SUBSTACK":[2,"`("]},"fields":{},"shadow":false,"topLevel":false},"`%":{"opcode":"operator_gt","next":null,"parent":"gO","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a{!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{!":{"opcode":"operator_multiply","next":null,"parent":"`%","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`(":{"opcode":"data_setvariableto","next":"`)","parent":"gO","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`)":{"opcode":"data_setvariableto","next":"t@","parent":"`(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"t@":{"opcode":"control_repeat","next":"`*","parent":"`)","inputs":{"TIMES":[3,"a{#",[6,"0"]],"SUBSTACK":[2,"t["]},"fields":{},"shadow":false,"topLevel":false},"a{#":{"opcode":"operator_subtract","next":null,"parent":"t@","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"t[":{"opcode":"data_setvariableto","next":"a{%","parent":"t@","inputs":{"VALUE":[3,"`+",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`+":{"opcode":"operator_join","next":null,"parent":"t[","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"`,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`,":{"opcode":"data_itemoflist","next":null,"parent":"`+","inputs":{"INDEX":[3,"a{(",[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a{(":{"opcode":"operator_add","next":null,"parent":"`,","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{%":{"opcode":"data_changevariableby","next":null,"parent":"t[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`*":{"opcode":"data_setvariableto","next":"`-","parent":"t@","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`-":{"opcode":"data_setvariableto","next":"t]","parent":"`*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"t]":{"opcode":"control_repeat","next":"`.","parent":"`-","inputs":{"TIMES":[3,"a{)",[6,"0"]],"SUBSTACK":[2,"t^"]},"fields":{},"shadow":false,"topLevel":false},"a{)":{"opcode":"operator_length","next":null,"parent":"t]","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"t^":{"opcode":"data_replaceitemoflist","next":"`/","parent":"t]","inputs":{"INDEX":[3,"a{*",[7,"0"]],"ITEM":[3,"a{+",[10,""]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a{*":{"opcode":"operator_add","next":null,"parent":"t^","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{+":{"opcode":"operator_letter_of","next":null,"parent":"t^","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`/":{"opcode":"data_changevariableby","next":"a{,","parent":"t^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{,":{"opcode":"data_changevariableby","next":null,"parent":"`/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"`.":{"opcode":"data_setvariableto","next":"t_","parent":"t]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"t_":{"opcode":"control_repeat","next":"a{-","parent":"`.","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"t`"]},"fields":{},"shadow":false,"topLevel":false},"t`":{"opcode":"data_replaceitemoflist","next":"a{.","parent":"t_","inputs":{"INDEX":[3,"a{/",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a{/":{"opcode":"operator_add","next":null,"parent":"t`","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{.":{"opcode":"data_changevariableby","next":null,"parent":"t`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{-":{"opcode":"data_changevariableby","next":null,"parent":"t_","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a{Z":{"opcode":"data_setvariableto","next":null,"parent":"gO","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"t?":{"opcode":"control_if","next":null,"parent":"gc","inputs":{"CONDITION":[2,"a{:"],"SUBSTACK":[2,"`:"]},"fields":{},"shadow":false,"topLevel":false},"a{:":{"opcode":"operator_lt","next":null,"parent":"t?","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`:":{"opcode":"data_setvariableto","next":"t{","parent":"t?","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"t{":{"opcode":"control_repeat_until","next":"a{;","parent":"`:","inputs":{"CONDITION":[2,"`;"],"SUBSTACK":[2,"`="]},"fields":{},"shadow":false,"topLevel":false},"`;":{"opcode":"operator_gt","next":null,"parent":"t{","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a{=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a{=":{"opcode":"operator_multiply","next":null,"parent":"`;","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`=":{"opcode":"data_setvariableto","next":"`?","parent":"t{","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`?":{"opcode":"data_setvariableto","next":"t|","parent":"`=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"t|":{"opcode":"control_repeat","next":"`@","parent":"`?","inputs":{"TIMES":[3,"a{?",[6,"0"]],"SUBSTACK":[2,"t}"]},"fields":{},"shadow":false,"topLevel":false},"a{?":{"opcode":"operator_subtract","next":null,"parent":"t|","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"t}":{"opcode":"data_setvariableto","next":"a{@","parent":"t|","inputs":{"VALUE":[3,"`[",[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"`[":{"opcode":"operator_join","next":null,"parent":"t}","inputs":{"STRING1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]],"STRING2":[3,"`]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"`]":{"opcode":"data_itemoflist","next":null,"parent":"`[","inputs":{"INDEX":[3,"a{[",[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{[":{"opcode":"operator_add","next":null,"parent":"`]","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{@":{"opcode":"data_changevariableby","next":null,"parent":"t}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`@":{"opcode":"data_setvariableto","next":"`^","parent":"t|","inputs":{"VALUE":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"`^":{"opcode":"data_setvariableto","next":"t~","parent":"`@","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"t~":{"opcode":"control_repeat","next":"`_","parent":"`^","inputs":{"TIMES":[3,"a{]",[6,"0"]],"SUBSTACK":[2,"ua"]},"fields":{},"shadow":false,"topLevel":false},"a{]":{"opcode":"operator_length","next":null,"parent":"t~","inputs":{"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ua":{"opcode":"data_replaceitemoflist","next":"``","parent":"t~","inputs":{"INDEX":[3,"a{^",[7,"0"]],"ITEM":[3,"a{_",[10,""]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{^":{"opcode":"operator_add","next":null,"parent":"ua","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{_":{"opcode":"operator_letter_of","next":null,"parent":"ua","inputs":{"LETTER":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"STRING":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"``":{"opcode":"data_changevariableby","next":"a{`","parent":"ua","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{`":{"opcode":"data_changevariableby","next":null,"parent":"``","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy5","g}B8%m81]u[qI`b#U@N$"]},"shadow":false,"topLevel":false},"`_":{"opcode":"data_setvariableto","next":"ub","parent":"t~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"ub":{"opcode":"control_repeat","next":"a{{","parent":"`_","inputs":{"TIMES":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[6,"0"]],"SUBSTACK":[2,"uc"]},"fields":{},"shadow":false,"topLevel":false},"uc":{"opcode":"data_replaceitemoflist","next":"a{|","parent":"ub","inputs":{"INDEX":[3,"a{}",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a{}":{"opcode":"operator_add","next":null,"parent":"uc","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a{|":{"opcode":"data_changevariableby","next":null,"parent":"uc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a{{":{"opcode":"data_changevariableby","next":null,"parent":"ub","inputs":{"VALUE":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a{;":{"opcode":"data_setvariableto","next":null,"parent":"t{","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"f)":{"opcode":"control_if","next":"cO","parent":"av","inputs":{"CONDITION":[2,"`{"],"SUBSTACK":[2,"`|"]},"fields":{},"shadow":false,"topLevel":false},"`|":{"opcode":"data_changevariableby","next":"ud","parent":"f)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"ud":{"opcode":"data_changevariableby","next":"`}","parent":"`|","inputs":{"VALUE":[3,"a{~",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a{~":{"opcode":"operator_multiply","next":null,"parent":"ud","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"`}":{"opcode":"data_setvariableto","next":"`~","parent":"ud","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"`~":{"opcode":"data_setvariableto","next":null,"parent":"`}","inputs":{"VALUE":[3,"{a",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"{a":{"opcode":"data_itemoflist","next":null,"parent":"`~","inputs":{"INDEX":[3,"{b",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"{b":{"opcode":"operator_add","next":null,"parent":"{a","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{c",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{c":{"opcode":"operator_mathop","next":null,"parent":"{b","inputs":{"NUM":[3,"{d",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{d":{"opcode":"operator_divide","next":null,"parent":"{c","inputs":{"NUM1":[3,"a|a",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a|a":{"opcode":"argument_reporter_string_number","next":null,"parent":"{d","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"cO":{"opcode":"control_if","next":"ue","parent":"f)","inputs":{"CONDITION":[2,"{e"],"SUBSTACK":[2,"{f"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a|b"},"{e":{"opcode":"operator_gt","next":null,"parent":"cO","inputs":{"OPERAND1":[3,"a|c",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a|c":{"opcode":"operator_mod","next":null,"parent":"{e","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"{f":{"opcode":"control_repeat","next":null,"parent":"cO","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"uf"]},"fields":{},"shadow":false,"topLevel":false},"uf":{"opcode":"data_setvariableto","next":"ug","parent":"{f","inputs":{"VALUE":[3,"{g",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"{g":{"opcode":"data_itemoflist","next":null,"parent":"uf","inputs":{"INDEX":[3,"{h",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"{h":{"opcode":"operator_add","next":null,"parent":"{g","inputs":{"NUM1":[3,"{i",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{i":{"opcode":"operator_mod","next":null,"parent":"{h","inputs":{"NUM1":[3,"a|d",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a|d":{"opcode":"argument_reporter_string_number","next":null,"parent":"{i","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ug":{"opcode":"control_repeat","next":"a|e","parent":"uf","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"uh"]},"fields":{},"shadow":false,"topLevel":false},"uh":{"opcode":"data_setvariableto","next":"ui","parent":"ug","inputs":{"VALUE":[3,"{j",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"{j":{"opcode":"data_itemoflist","next":null,"parent":"uh","inputs":{"INDEX":[3,"a|f",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a|f":{"opcode":"operator_add","next":null,"parent":"{j","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ui":{"opcode":"control_repeat","next":"a|g","parent":"uh","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"uj"]},"fields":{},"shadow":false,"topLevel":false},"uj":{"opcode":"control_if","next":"ZW","parent":"ui","inputs":{"CONDITION":[2,"ZX"],"SUBSTACK":[2,"uk"]},"fields":{},"shadow":false,"topLevel":false},"ZX":{"opcode":"operator_and","next":null,"parent":"uj","inputs":{"OPERAND1":[2,"a|h"],"OPERAND2":[2,"{k"]},"fields":{},"shadow":false,"topLevel":false},"a|h":{"opcode":"operator_gt","next":null,"parent":"ZX","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"{k":{"opcode":"operator_not","next":null,"parent":"ZX","inputs":{"OPERAND":[2,"ZY"]},"fields":{},"shadow":false,"topLevel":false},"ZY":{"opcode":"operator_and","next":null,"parent":"{k","inputs":{"OPERAND1":[2,"ZZ"],"OPERAND2":[2,"a|i"]},"fields":{},"shadow":false,"topLevel":false},"ZZ":{"opcode":"operator_or","next":null,"parent":"ZY","inputs":{"OPERAND1":[2,"{l"],"OPERAND2":[2,"{m"]},"fields":{},"shadow":false,"topLevel":false},"{l":{"opcode":"operator_gt","next":null,"parent":"ZZ","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a|j",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|j":{"opcode":"operator_subtract","next":null,"parent":"{l","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{m":{"opcode":"operator_gt","next":null,"parent":"ZZ","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,"a|k",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|k":{"opcode":"operator_subtract","next":null,"parent":"{m","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|i":{"opcode":"operator_equals","next":null,"parent":"ZY","inputs":{"OPERAND1":[3,[12,"c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uk":{"opcode":"control_if_else","next":null,"parent":"uj","inputs":{"CONDITION":[2,"{n"],"SUBSTACK":[2,"I:"],"SUBSTACK2":[2,"gP"]},"fields":{},"shadow":false,"topLevel":false},"{n":{"opcode":"operator_equals","next":null,"parent":"uk","inputs":{"OPERAND1":[3,"{o",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{o":{"opcode":"data_itemoflist","next":null,"parent":"{n","inputs":{"INDEX":[3,"{p",[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"{p":{"opcode":"operator_add","next":null,"parent":"{o","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"I;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"I;":{"opcode":"operator_add","next":null,"parent":"{p","inputs":{"NUM1":[3,"a|l",[4,"0"]],"NUM2":[3,"{q",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|l":{"opcode":"operator_mod","next":null,"parent":"I;","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{q":{"opcode":"operator_multiply","next":null,"parent":"I;","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|m",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|m":{"opcode":"operator_mod","next":null,"parent":"{q","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"I:":{"opcode":"control_if","next":null,"parent":"uk","inputs":{"CONDITION":[2,"{r"],"SUBSTACK":[2,"{s"]},"fields":{},"shadow":false,"topLevel":false},"{r":{"opcode":"operator_not","next":null,"parent":"I:","inputs":{"OPERAND":[2,"a|n"]},"fields":{},"shadow":false,"topLevel":false},"a|n":{"opcode":"operator_equals","next":null,"parent":"{r","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"{s":{"opcode":"data_replaceitemoflist","next":null,"parent":"I:","inputs":{"INDEX":[3,"{t",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"{t":{"opcode":"operator_add","next":null,"parent":"{s","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"I=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"I=":{"opcode":"operator_add","next":null,"parent":"{t","inputs":{"NUM1":[3,"a|o",[4,"0"]],"NUM2":[3,"{u",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|o":{"opcode":"operator_mod","next":null,"parent":"I=","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{u":{"opcode":"operator_multiply","next":null,"parent":"I=","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|p":{"opcode":"operator_mod","next":null,"parent":"{u","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"gP":{"opcode":"control_if","next":"a|q","parent":"uk","inputs":{"CONDITION":[2,"{v"],"SUBSTACK":[2,"{w"]},"fields":{},"shadow":false,"topLevel":false},"{v":{"opcode":"operator_not","next":null,"parent":"gP","inputs":{"OPERAND":[2,"a|r"]},"fields":{},"shadow":false,"topLevel":false},"a|r":{"opcode":"operator_equals","next":null,"parent":"{v","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{w":{"opcode":"data_replaceitemoflist","next":null,"parent":"gP","inputs":{"INDEX":[3,"{x",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"{x":{"opcode":"operator_add","next":null,"parent":"{w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"I?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"I?":{"opcode":"operator_add","next":null,"parent":"{x","inputs":{"NUM1":[3,"a|s",[4,"0"]],"NUM2":[3,"{y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|s":{"opcode":"operator_mod","next":null,"parent":"I?","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{y":{"opcode":"operator_multiply","next":null,"parent":"I?","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|t",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|t":{"opcode":"operator_mod","next":null,"parent":"{y","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|q":{"opcode":"control_incr_counter","next":null,"parent":"gP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ZW":{"opcode":"data_setvariableto","next":"a|u","parent":"uj","inputs":{"VALUE":[3,"{z",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"{z":{"opcode":"operator_mod","next":null,"parent":"ZW","inputs":{"NUM1":[3,"a|v",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a|v":{"opcode":"operator_multiply","next":null,"parent":"{z","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|u":{"opcode":"data_changevariableby","next":null,"parent":"ZW","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a|g":{"opcode":"data_changevariableby","next":null,"parent":"ui","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a|e":{"opcode":"data_changevariableby","next":null,"parent":"ug","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"ue":{"opcode":"control_if","next":"fy","parent":"cO","inputs":{"CONDITION":[2,"a|w"],"SUBSTACK":[2,"{A"]},"fields":{},"shadow":false,"topLevel":false},"{A":{"opcode":"data_changevariableby","next":"Z!","parent":"ue","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"Z!":{"opcode":"data_changevariableby","next":"{B","parent":"{A","inputs":{"VALUE":[3,"a|x",[4,"0"]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"a|x":{"opcode":"operator_multiply","next":null,"parent":"Z!","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,"0"]],"NUM2":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{B":{"opcode":"data_setvariableto","next":"{C","parent":"Z!","inputs":{"VALUE":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[10,""]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"{C":{"opcode":"data_setvariableto","next":null,"parent":"{B","inputs":{"VALUE":[3,"{D",[10,""]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"{D":{"opcode":"data_itemoflist","next":null,"parent":"{C","inputs":{"INDEX":[3,"{E",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"{E":{"opcode":"operator_add","next":null,"parent":"{D","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{F",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{F":{"opcode":"operator_mathop","next":null,"parent":"{E","inputs":{"NUM":[3,"{G",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"{G":{"opcode":"operator_divide","next":null,"parent":"{F","inputs":{"NUM1":[3,"a|y",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a|y":{"opcode":"argument_reporter_string_number","next":null,"parent":"{G","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"fy":{"opcode":"control_if","next":"SK","parent":"ue","inputs":{"CONDITION":[2,"a|A"],"SUBSTACK":[2,"{H"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a|z"},"a|A":{"opcode":"operator_gt","next":null,"parent":"fy","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"{H":{"opcode":"control_repeat","next":null,"parent":"fy","inputs":{"TIMES":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[6,"0"]],"SUBSTACK":[2,"Z#"]},"fields":{},"shadow":false,"topLevel":false},"Z#":{"opcode":"data_setvariableto","next":"Z%","parent":"{H","inputs":{"VALUE":[3,"{I",[10,""]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"{I":{"opcode":"data_itemoflist","next":null,"parent":"Z#","inputs":{"INDEX":[3,"{J",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"{J":{"opcode":"operator_add","next":null,"parent":"{I","inputs":{"NUM1":[3,"{K",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{K":{"opcode":"operator_mod","next":null,"parent":"{J","inputs":{"NUM1":[3,"a|B",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a|B":{"opcode":"argument_reporter_string_number","next":null,"parent":"{K","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Z%":{"opcode":"control_repeat","next":"a|C","parent":"Z#","inputs":{"TIMES":[3,[12,"chip8.dummy5","g}B8%m81]u[qI`b#U@N$"],[6,"0"]],"SUBSTACK":[2,"Z("]},"fields":{},"shadow":false,"topLevel":false},"Z(":{"opcode":"data_setvariableto","next":"Z)","parent":"Z%","inputs":{"VALUE":[3,"{L",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"{L":{"opcode":"data_itemoflist","next":null,"parent":"Z(","inputs":{"INDEX":[3,"a|D",[7,"0"]]},"fields":{"LIST":["chip8.memory","}Q8yT0K~Xs{VX;CHfNu/"]},"shadow":false,"topLevel":false},"a|D":{"opcode":"operator_add","next":null,"parent":"{L","inputs":{"NUM1":[3,[12,"chip8.dummy3","`/97r]y4N7pab+0j,(B."],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Z)":{"opcode":"control_repeat","next":"a|E","parent":"Z(","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"gQ"]},"fields":{},"shadow":false,"topLevel":false},"gQ":{"opcode":"control_if","next":"Z*","parent":"Z)","inputs":{"CONDITION":[2,"Z+"],"SUBSTACK":[2,"gR"]},"fields":{},"shadow":false,"topLevel":false},"Z+":{"opcode":"operator_and","next":null,"parent":"gQ","inputs":{"OPERAND1":[2,"a|F"],"OPERAND2":[2,"{M"]},"fields":{},"shadow":false,"topLevel":false},"a|F":{"opcode":"operator_gt","next":null,"parent":"Z+","inputs":{"OPERAND1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"{M":{"opcode":"operator_not","next":null,"parent":"Z+","inputs":{"OPERAND":[2,"ul"]},"fields":{},"shadow":false,"topLevel":false},"ul":{"opcode":"operator_and","next":null,"parent":"{M","inputs":{"OPERAND1":[2,"um"],"OPERAND2":[2,"a|G"]},"fields":{},"shadow":false,"topLevel":false},"um":{"opcode":"operator_or","next":null,"parent":"ul","inputs":{"OPERAND1":[2,"{N"],"OPERAND2":[2,"{O"]},"fields":{},"shadow":false,"topLevel":false},"{N":{"opcode":"operator_gt","next":null,"parent":"um","inputs":{"OPERAND1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[10,""]],"OPERAND2":[3,"a|H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|H":{"opcode":"operator_subtract","next":null,"parent":"{N","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"{O":{"opcode":"operator_gt","next":null,"parent":"um","inputs":{"OPERAND1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[10,""]],"OPERAND2":[3,"a|I",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|I":{"opcode":"operator_subtract","next":null,"parent":"{O","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|G":{"opcode":"operator_equals","next":null,"parent":"ul","inputs":{"OPERAND1":[3,[12,"c8.Wrap_mode","hrlmIBq6fq*lN*RPBh*J"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"gR":{"opcode":"control_if_else","next":null,"parent":"gQ","inputs":{"CONDITION":[2,"{P"],"SUBSTACK":[2,"un"],"SUBSTACK2":[2,"gS"]},"fields":{},"shadow":false,"topLevel":false},"{P":{"opcode":"operator_equals","next":null,"parent":"gR","inputs":{"OPERAND1":[3,"Z,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z,":{"opcode":"data_itemoflist","next":null,"parent":"{P","inputs":{"INDEX":[3,"Z-",[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"Z-":{"opcode":"operator_add","next":null,"parent":"Z,","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"uo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uo":{"opcode":"operator_add","next":null,"parent":"Z-","inputs":{"NUM1":[3,"a|J",[4,"0"]],"NUM2":[3,"Z.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|J":{"opcode":"operator_mod","next":null,"parent":"uo","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z.":{"opcode":"operator_multiply","next":null,"parent":"uo","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|K",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|K":{"opcode":"operator_mod","next":null,"parent":"Z.","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"un":{"opcode":"control_if","next":null,"parent":"gR","inputs":{"CONDITION":[2,"Z/"],"SUBSTACK":[2,"Z:"]},"fields":{},"shadow":false,"topLevel":false},"Z/":{"opcode":"operator_not","next":null,"parent":"un","inputs":{"OPERAND":[2,"a|L"]},"fields":{},"shadow":false,"topLevel":false},"a|L":{"opcode":"operator_equals","next":null,"parent":"Z/","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Z:":{"opcode":"data_replaceitemoflist","next":null,"parent":"un","inputs":{"INDEX":[3,"Z;",[7,"0"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"Z;":{"opcode":"operator_add","next":null,"parent":"Z:","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Z=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z=":{"opcode":"operator_add","next":null,"parent":"Z;","inputs":{"NUM1":[3,"a|M",[4,"0"]],"NUM2":[3,"Z?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|M":{"opcode":"operator_mod","next":null,"parent":"Z=","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z?":{"opcode":"operator_multiply","next":null,"parent":"Z=","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|N",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|N":{"opcode":"operator_mod","next":null,"parent":"Z?","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"gS":{"opcode":"control_if","next":"a|O","parent":"gR","inputs":{"CONDITION":[2,"Z@"],"SUBSTACK":[2,"Z["]},"fields":{},"shadow":false,"topLevel":false},"Z@":{"opcode":"operator_not","next":null,"parent":"gS","inputs":{"OPERAND":[2,"a|P"]},"fields":{},"shadow":false,"topLevel":false},"a|P":{"opcode":"operator_equals","next":null,"parent":"Z@","inputs":{"OPERAND1":[3,[12,"chip8.drawvariety",";V{Hj,Otjvdvg.T^fBD-"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Z[":{"opcode":"data_replaceitemoflist","next":null,"parent":"gS","inputs":{"INDEX":[3,"Z]",[7,"0"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"Z]":{"opcode":"operator_add","next":null,"parent":"Z[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"up",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"up":{"opcode":"operator_add","next":null,"parent":"Z]","inputs":{"NUM1":[3,"a|Q",[4,"0"]],"NUM2":[3,"Z^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|Q":{"opcode":"operator_mod","next":null,"parent":"up","inputs":{"NUM1":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z^":{"opcode":"operator_multiply","next":null,"parent":"up","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,"a|R",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|R":{"opcode":"operator_mod","next":null,"parent":"Z^","inputs":{"NUM1":[3,[12,"chip8.dummy2","V!i}`El5QU$I{`OcqxU*"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|O":{"opcode":"control_incr_counter","next":null,"parent":"gS","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Z*":{"opcode":"data_setvariableto","next":"a|S","parent":"gQ","inputs":{"VALUE":[3,"Z_",[10,""]]},"fields":{"VARIABLE":["chip8.return","eF-[:^d06FtrxjRyaneE"]},"shadow":false,"topLevel":false},"Z_":{"opcode":"operator_mod","next":null,"parent":"Z*","inputs":{"NUM1":[3,"a|T",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a|T":{"opcode":"operator_multiply","next":null,"parent":"Z_","inputs":{"NUM1":[3,[12,"chip8.return","eF-[:^d06FtrxjRyaneE"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|S":{"opcode":"data_changevariableby","next":null,"parent":"Z*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"a|E":{"opcode":"data_changevariableby","next":null,"parent":"Z)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy3","`/97r]y4N7pab+0j,(B."]},"shadow":false,"topLevel":false},"a|C":{"opcode":"data_changevariableby","next":null,"parent":"Z%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy2","V!i}`El5QU$I{`OcqxU*"]},"shadow":false,"topLevel":false},"a|w":{"opcode":"operator_gt","next":null,"parent":"ue","inputs":{"OPERAND1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"_G":{"opcode":"data_setvariableto","next":"gT","parent":"fc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"gT":{"opcode":"control_if","next":"Z`","parent":"_G","inputs":{"CONDITION":[2,"Z{"],"SUBSTACK":[2,"I@"]},"fields":{},"shadow":false,"topLevel":false},"I@":{"opcode":"control_repeat","next":null,"parent":"gT","inputs":{"TIMES":[3,"a|U",[6,"0"]],"SUBSTACK":[2,"Z|"]},"fields":{},"shadow":false,"topLevel":false},"a|U":{"opcode":"operator_multiply","next":null,"parent":"I@","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Z|":{"opcode":"data_changevariableby","next":"Z}","parent":"I@","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"Z}":{"opcode":"data_replaceitemoflist","next":null,"parent":"Z|","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"Z~",[10,""]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"Z~":{"opcode":"operator_mod","next":null,"parent":"Z}","inputs":{"NUM1":[3,"!a",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!a":{"opcode":"operator_add","next":null,"parent":"Z~","inputs":{"NUM1":[3,"a|V",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|V":{"opcode":"data_itemoflist","next":null,"parent":"!a","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a/C":{"opcode":"operator_mod","next":null,"parent":",{","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"_x":{"opcode":"operator_lt","next":null,"parent":"f}","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"a|W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|W":{"opcode":"operator_mod","next":null,"parent":"_x","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a;`":{"opcode":"operator_mod","next":null,"parent":"U!","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"f`":{"opcode":"control_if","next":"uq","parent":"fQ","inputs":{"CONDITION":[2,"!b"],"SUBSTACK":[2,"!c"]},"fields":{},"shadow":false,"topLevel":false},"!b":{"opcode":"operator_lt","next":null,"parent":"f`","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a|X",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|X":{"opcode":"operator_mod","next":null,"parent":"!b","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"!c":{"opcode":"data_insertatlist","next":"a|Y","parent":"f`","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a|Y":{"opcode":"data_deleteoflist","next":null,"parent":"!c","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"uq":{"opcode":"control_if","next":null,"parent":"f`","inputs":{"CONDITION":[2,"a|Z"],"SUBSTACK":[2,"!d"]},"fields":{},"shadow":false,"topLevel":false},"a|Z":{"opcode":"operator_lt","next":null,"parent":"uq","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!d":{"opcode":"data_insertatlist","next":"a|!","parent":"uq","inputs":{"ITEM":[1,[10,"0"]],"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a|!":{"opcode":"data_deleteoflist","next":null,"parent":"!d","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"f~":{"opcode":"control_if","next":"I[","parent":"f}","inputs":{"CONDITION":[2,"!e"],"SUBSTACK":[2,"!f"]},"fields":{},"shadow":false,"topLevel":false},"!e":{"opcode":"operator_lt","next":null,"parent":"f~","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a|#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|#":{"opcode":"operator_mod","next":null,"parent":"!e","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"I[":{"opcode":"control_if","next":null,"parent":"f~","inputs":{"CONDITION":[2,"a|%"],"SUBSTACK":[2,"!g"]},"fields":{},"shadow":false,"topLevel":false},"a|%":{"opcode":"operator_lt","next":null,"parent":"I[","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"f]":{"opcode":"control_if","next":"ur","parent":"f[","inputs":{"CONDITION":[2,"!h"],"SUBSTACK":[2,"!i"]},"fields":{},"shadow":false,"topLevel":false},"!h":{"opcode":"operator_lt","next":null,"parent":"f]","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a|(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|(":{"opcode":"operator_mod","next":null,"parent":"!h","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ur":{"opcode":"control_if","next":null,"parent":"f]","inputs":{"CONDITION":[2,"a|)"],"SUBSTACK":[2,"!j"]},"fields":{},"shadow":false,"topLevel":false},"a|)":{"opcode":"operator_lt","next":null,"parent":"ur","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!i":{"opcode":"data_deletealloflist","next":"I]","parent":"f]","inputs":{},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"I]":{"opcode":"control_repeat","next":null,"parent":"!i","inputs":{"TIMES":[3,"a|*",[6,"0"]],"SUBSTACK":[2,"a|+"]},"fields":{},"shadow":false,"topLevel":false},"a|*":{"opcode":"operator_multiply","next":null,"parent":"I]","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|+":{"opcode":"data_addtolist","next":null,"parent":"I]","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"!j":{"opcode":"data_deletealloflist","next":"us","parent":"ur","inputs":{},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"us":{"opcode":"control_repeat","next":null,"parent":"!j","inputs":{"TIMES":[3,"a|,",[6,"0"]],"SUBSTACK":[2,"a|-"]},"fields":{},"shadow":false,"topLevel":false},"a|,":{"opcode":"operator_multiply","next":null,"parent":"us","inputs":{"NUM1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]],"NUM2":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a|-":{"opcode":"data_addtolist","next":null,"parent":"us","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"_w":{"opcode":"data_addtolist","next":"a]n","parent":"f|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen","ht3J,j/C0jl,uH8K:dNy"]},"shadow":false,"topLevel":false},"_y":{"opcode":"data_addtolist","next":"a|.","parent":"f}","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"a|.":{"opcode":"data_deleteoflist","next":null,"parent":"_y","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen2","Ozk0Rvi.XHG+tKh4frbx"]},"shadow":false,"topLevel":false},"Z{":{"opcode":"operator_lt","next":null,"parent":"gT","inputs":{"OPERAND1":[1,[10,"3"]],"OPERAND2":[3,"a|/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a|/":{"opcode":"operator_mod","next":null,"parent":"Z{","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Z`":{"opcode":"data_setvariableto","next":"I^","parent":"gT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"I^":{"opcode":"control_if","next":null,"parent":"Z`","inputs":{"CONDITION":[2,"a|:"],"SUBSTACK":[2,"I_"]},"fields":{},"shadow":false,"topLevel":false},"a|:":{"opcode":"operator_lt","next":null,"parent":"I^","inputs":{"OPERAND1":[1,[10,"7"]],"OPERAND2":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"I_":{"opcode":"control_repeat","next":null,"parent":"I^","inputs":{"TIMES":[3,"a|;",[6,"0"]],"SUBSTACK":[2,"!k"]},"fields":{},"shadow":false,"topLevel":false},"a|;":{"opcode":"operator_multiply","next":null,"parent":"I_","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!k":{"opcode":"data_changevariableby","next":"!l","parent":"I_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["chip8.dummy","1hb5az8M),6CpIBwl+T#"]},"shadow":false,"topLevel":false},"!l":{"opcode":"data_replaceitemoflist","next":null,"parent":"!k","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]],"ITEM":[3,"{Q",[10,""]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"{Q":{"opcode":"operator_mod","next":null,"parent":"!l","inputs":{"NUM1":[3,"{R",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"{R":{"opcode":"operator_add","next":null,"parent":"{Q","inputs":{"NUM1":[3,"a|=",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a|=":{"opcode":"data_itemoflist","next":null,"parent":"{R","inputs":{"INDEX":[3,[12,"chip8.dummy","1hb5az8M),6CpIBwl+T#"],[7,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"!f":{"opcode":"data_addtolist","next":"a|?","parent":"f~","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a|?":{"opcode":"data_deleteoflist","next":null,"parent":"!f","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"!g":{"opcode":"data_addtolist","next":"a|@","parent":"I[","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"a|@":{"opcode":"data_deleteoflist","next":null,"parent":"!g","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"`{":{"opcode":"operator_gt","next":null,"parent":"f)","inputs":{"OPERAND1":[3,"a|[",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a|[":{"opcode":"operator_mod","next":null,"parent":"`{","inputs":{"NUM1":[3,[12,"chip8.drawplane","T2#e%~#VNwXFGzGd*kbV"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},";Y":{"opcode":"data_deletealloflist","next":"`r","parent":";W","inputs":{},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"`r":{"opcode":"data_deletealloflist","next":"`q","parent":";Y","inputs":{},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},".m":{"opcode":"data_deletealloflist","next":".l","parent":".T","inputs":{},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"?I":{"opcode":"data_addtolist","next":"a|]","parent":"?G","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen3","$I%$ZSrMoNE4j:0:k6^m"]},"shadow":false,"topLevel":false},"a|]":{"opcode":"data_addtolist","next":null,"parent":"?I","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chip8.screen4","eIbd*$2o]f7xY6t6CmU;"]},"shadow":false,"topLevel":false},"cL":{"opcode":"control_if","next":"aV","parent":"[","inputs":{"CONDITION":[2,"{S"],"SUBSTACK":[2,"I`"]},"fields":{},"shadow":false,"topLevel":false,"comment":"a|^"},"{S":{"opcode":"operator_equals","next":null,"parent":"cL","inputs":{"OPERAND1":[3,"a|_",[10,""]],"OPERAND2":[1,[10,"0x1F"]]},"fields":{},"shadow":false,"topLevel":false},"a|_":{"opcode":"argument_reporter_string_number","next":null,"parent":"{S","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"I`":{"opcode":"data_setvariableto","next":"a|`","parent":"cL","inputs":{"VALUE":[3,"{T",[10,""]]},"fields":{"VARIABLE":["chip8.I","r9s^NIq`=C8N*q$N:QjC"]},"shadow":false,"topLevel":false},"{T":{"opcode":"operator_mod","next":null,"parent":"I`","inputs":{"NUM1":[3,"{U",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"{V":{"opcode":"data_itemoflist","next":null,"parent":"{U","inputs":{"INDEX":[3,"{W",[7,"0"]]},"fields":{"LIST":["chip8.registers","f]{gYPSu$N}zEo@G9Nl)"]},"shadow":false,"topLevel":false},"{W":{"opcode":"operator_add","next":null,"parent":"{V","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"{X",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"{X":{"opcode":"operator_mod","next":null,"parent":"{W","inputs":{"NUM1":[3,"a|{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"a|{":{"opcode":"argument_reporter_string_number","next":null,"parent":"{X","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"a|`":{"opcode":"control_stop","next":null,"parent":"I`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"{U":{"opcode":"operator_subtract","next":null,"parent":"{T","inputs":{"NUM1":[3,[12,"chip8.I","r9s^NIq`=C8N*q$N:QjC"],[4,""]],"NUM2":[3,"{V",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a||":{"opcode":"operator_divide","next":null,"parent":"{Y","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"{Y":{"opcode":"operator_mathop","next":null,"parent":"{Z","inputs":{"NUM":[3,"a||",[4,""]]},"fields":{"OPERATOR":["ceiling",null]},"shadow":false,"topLevel":false},"{Z":{"opcode":"data_setvariableto","next":null,"parent":"f_","inputs":{"VALUE":[3,"{Y",[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"!m":{"opcode":"operator_lt","next":null,"parent":"f_","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"!n",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!n":{"opcode":"operator_mod","next":null,"parent":"!m","inputs":{"NUM1":[3,"a|}",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a|}":{"opcode":"argument_reporter_string_number","next":null,"parent":"!n","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"f_":{"opcode":"control_if","next":"{Z","parent":"f^","inputs":{"CONDITION":[2,"!m"],"SUBSTACK":[2,"fO"]},"fields":{},"shadow":false,"topLevel":false},"f{":{"opcode":"control_if","next":"tD","parent":"Zs","inputs":{"CONDITION":[2,"I{"],"SUBSTACK":[2,"gU"]},"fields":{},"shadow":false,"topLevel":false},"I{":{"opcode":"operator_and","next":null,"parent":"f{","inputs":{"OPERAND1":[2,"a|~"],"OPERAND2":[2,"a}a"]},"fields":{},"shadow":false,"topLevel":false},"a|~":{"opcode":"operator_equals","next":null,"parent":"I{","inputs":{"OPERAND1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"a}a":{"opcode":"operator_equals","next":null,"parent":"I{","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"gU":{"opcode":"control_if","next":"ut","parent":"f{","inputs":{"CONDITION":[2,"uu"],"SUBSTACK":[2,"gV"]},"fields":{},"shadow":false,"topLevel":false},"uu":{"opcode":"operator_lt","next":null,"parent":"gU","inputs":{"OPERAND1":[1,[10,"0"]],"OPERAND2":[3,"uv",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"uv":{"opcode":"operator_mod","next":null,"parent":"uu","inputs":{"NUM1":[3,"a}b",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a}b":{"opcode":"argument_reporter_string_number","next":null,"parent":"uv","inputs":{},"fields":{"VALUE":["op2",null]},"shadow":false,"topLevel":false},"gV":{"opcode":"control_if_else","next":null,"parent":"gU","inputs":{"CONDITION":[2,"a}c"],"SUBSTACK":[2,"uw"],"SUBSTACK2":[2,"a}d"]},"fields":{},"shadow":false,"topLevel":false},"a}c":{"opcode":"operator_equals","next":null,"parent":"gV","inputs":{"OPERAND1":[3,[12,"chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uw":{"opcode":"data_changevariableby","next":"a}e","parent":"gV","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"a}e":{"opcode":"data_setvariableto","next":null,"parent":"uw","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"a}d":{"opcode":"data_setvariableto","next":null,"parent":"gV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chip8.HPSFlag","N4R6^~5?6]M$8p]M}$(Z"]},"shadow":false,"topLevel":false},"ut":{"opcode":"data_setvariableto","next":null,"parent":"gU","inputs":{"VALUE":[3,"ux",[10,"0"]]},"fields":{"VARIABLE":["chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"]},"shadow":false,"topLevel":false},"ux":{"opcode":"operator_mathop","next":null,"parent":"ut","inputs":{"NUM":[3,"a}f",[4,""]]},"fields":{"OPERATOR":["ceiling",null]},"shadow":false,"topLevel":false},"a}f":{"opcode":"operator_divide","next":null,"parent":"ux","inputs":{"NUM1":[3,[12,"chip8.dummy4","9:A|TG(!dzYn0uv=D1h3"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"I+":{"opcode":"operator_or","next":null,"parent":"f#","inputs":{"OPERAND1":[2,"a}g"],"OPERAND2":[2,"uy"]},"fields":{},"shadow":false,"topLevel":false},"a}g":{"opcode":"operator_equals","next":null,"parent":"I+","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"VIP"]]},"fields":{},"shadow":false,"topLevel":false},"uy":{"opcode":"operator_and","next":null,"parent":"I+","inputs":{"OPERAND2":[2,"a}h"],"OPERAND1":[2,"a}i"]},"fields":{},"shadow":false,"topLevel":false},"a}h":{"opcode":"operator_equals","next":null,"parent":"uy","inputs":{"OPERAND1":[3,[12,"chip8.CompatMode","DO@o4r%E;$$f$zC!7%Qb"],[10,""]],"OPERAND2":[1,[10,"SCHIP+HPS"]]},"fields":{},"shadow":false,"topLevel":false},"a}i":{"opcode":"operator_equals","next":null,"parent":"uy","inputs":{"OPERAND1":[3,[12,"chip8.screenheight",",2huTPQKyTdw0uS0Mmql"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a;.":{"opcode":"operator_divide","next":null,"parent":"r@","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a@v":{"opcode":"operator_divide","next":null,"parent":"IM","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a{C":{"opcode":"operator_divide","next":null,"parent":"t,","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a{O":{"opcode":"operator_divide","next":null,"parent":"t:","inputs":{"NUM1":[3,[12,"chip8.screenwidth","/l6Z{skQaA(kN25K`~uO"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false}},"comments":{",F":{"blockId":"cd","x":2129,"y":37733,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"e#":{"blockId":"f","x":2110.2897263971963,"y":9687.057858948072,"width":200,"height":200,"minimized":false,"text":"00EE- rts- return from subroutine call"},"_S":{"blockId":"tL","x":2105,"y":28036,"width":200,"height":200,"minimized":false,"text":"5XY1 - HyperWaveCHIP-64 - Skip if VX > VY"},"_T":{"blockId":"Q","x":2350,"y":28181,"width":200,"height":200,"minimized":false,"text":"If VX > VY, load or save registers in reverse order; do a byte reversal"},"_*":{"blockId":"bT","x":2487,"y":28930,"width":200,"height":200,"minimized":false,"text":"5XY3(XO-CHIP)- load vx-vy starting at I"},",M":{"blockId":"cj","x":2201,"y":29951,"width":200,"height":200,"minimized":false,"text":"8XY0- LD VX, VY"},",L":{"blockId":"ci","x":2231,"y":30218,"width":200,"height":200,"minimized":false,"text":"8XY1- OR VX, VY"},",O":{"blockId":"ck","x":2178,"y":30472,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},",Q":{"blockId":"cf","x":2316,"y":38313,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"aI":{"blockId":"a","x":2858.2897263971963,"y":1757.057858948072,"width":200,"height":200,"minimized":false,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},"aJ":{"blockId":"L","x":12130.000000000002,"y":2152,"width":200,"height":200,"minimized":true,"text":"5"},"aK":{"blockId":"M","x":12130.000000000002,"y":2392,"width":200,"height":200,"minimized":true,"text":"6"},"a]:":{"blockId":"q=","x":2030,"y":22044,"width":200,"height":200,"minimized":false,"text":"00FD (SCHIP)- Exit"},"bN":{"blockId":"b}","x":12130.000000000002,"y":760,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"bO":{"blockId":"b~","x":12130.000000000002,"y":952,"width":200,"height":200,"minimized":true,"text":"0"},"bP":{"blockId":"ca","x":12134.000000000002,"y":1192,"width":200,"height":200,"minimized":true,"text":"1"},"bQ":{"blockId":"(","x":12130.000000000002,"y":1432,"width":200,"height":200,"minimized":true,"text":"2"},"a/":{"blockId":"ak","x":12134.000000000002,"y":3352,"width":200,"height":200,"minimized":true,"text":"A"},"a.":{"blockId":"aj","x":12130.000000000002,"y":3112,"width":200,"height":200,"minimized":true,"text":"9"},"a-":{"blockId":"O","x":12130.000000000002,"y":2872,"width":200,"height":200,"minimized":true,"text":"8"},"a,":{"blockId":"N","x":12134.000000000002,"y":2632,"width":200,"height":200,"minimized":true,"text":"7"},"bS":{"blockId":"c+","x":12134.000000000002,"y":1912,"width":200,"height":200,"minimized":true,"text":"4"},"bR":{"blockId":"c*","x":12130.000000000002,"y":1672,"width":200,"height":200,"minimized":true,"text":"3"},"bZ^":{"blockId":"bZ_","x":289.3333333333335,"y":7764.8888888888905,"width":200,"height":200,"minimized":true,"text":"MOST LIKELY BUGGED: DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N"},"bZ`":{"blockId":"bZ{","x":831.8666666666667,"y":9919.066666666668,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"bZ|":{"blockId":"bZ}","x":830.7333333333333,"y":9688.533333333333,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"bZ~":{"blockId":"b!a","x":825.9333333333334,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"b!b":{"blockId":"b!c","x":891.6,"y":10339.333333333334,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"b!d":{"blockId":"b!e","x":860.8749675750735,"y":10574.777777777777,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"b!f":{"blockId":"b!g","x":1152.430523130629,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b!h":{"blockId":"b!i","x":938.3194120195178,"y":11173.888888888889,"width":200,"height":200,"minimized":true,"text":"fr55 - str v0-vr"},"b!j":{"blockId":"b!k","x":772.4607906341553,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"b!l":{"blockId":"b!m","x":841.7889156341553,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"b!n":{"blockId":"b!o","x":806.74163424174,"y":10110.533333333333,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"b!p":{"blockId":"b!q","x":645.0971955193418,"y":7247.777777777777,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b!r":{"blockId":"b!s","x":812.208306630453,"y":7040.666666666667,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b!t":{"blockId":"b!u","x":805.0971955193418,"y":6834.444444444444,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b!v":{"blockId":"b!w","x":1624.652751074897,"y":6583.777777777777,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},",B":{"blockId":"cb","x":2094,"y":36586,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},".a":{"blockId":")","x":2013,"y":37020,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},",D":{"blockId":"cc","x":2155,"y":37246,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"_{":{"blockId":"ZV","x":2870,"y":47504,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"_|":{"blockId":"lg","x":3626,"y":47790,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"_}":{"blockId":".","x":2202,"y":50384,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"a}j":{"blockId":"a}k","x":1407.92,"y":43110.04,"width":200,"height":200,"minimized":false,"text":""},"_~":{"blockId":"`","x":2380,"y":51071,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"`a":{"blockId":"^","x":2467,"y":51219,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"`b":{"blockId":"[","x":2842,"y":51394,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"`c":{"blockId":"|","x":3048,"y":52493,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},",J":{"blockId":"ch","x":2347,"y":53134,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"/C":{"blockId":"+","x":2168,"y":25970,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 200000 levels maximum "},"_L":{"blockId":"c","x":2093,"y":26222,"width":200,"height":200,"minimized":false,"text":"3XNN- SE VX, NN"},"b!x":{"blockId":"b!y","x":521,"y":851,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"b!z":{"blockId":"b!A","x":516,"y":1090,"width":200,"height":200,"minimized":true,"text":"1NNN- jmp nnn- jump to address nnn"},"b!B":{"blockId":"b!C","x":440,"y":1205,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum (STACK MAY BE TOO BIG)"},"b!D":{"blockId":"b!E","x":598,"y":1529,"width":200,"height":200,"minimized":true,"text":"3XRR- skeq vx,rr"},"b!F":{"blockId":"b!G","x":1625,"y":6583,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b!H":{"blockId":"b!I","x":805,"y":6834,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b!J":{"blockId":"b!K","x":812,"y":7040,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b!L":{"blockId":"b!M","x":645,"y":7247,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b!N":{"blockId":"b!O","x":685,"y":7884,"width":200,"height":200,"minimized":true,"text":"MOST LIKELY BUGGED: DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N"},"b!P":{"blockId":"b!Q","x":772,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"b!R":{"blockId":"b!S","x":842,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"b!T":{"blockId":"b!U","x":826,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"b!V":{"blockId":"b!W","x":831,"y":9688,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"b!X":{"blockId":"b!Y","x":832,"y":9919,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"b!Z":{"blockId":"b!!","x":807,"y":10110,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"b!#":{"blockId":"b!%","x":892,"y":10339,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"b!(":{"blockId":"b!)","x":860,"y":10574,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"b!*":{"blockId":"b!+","x":1152,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"_M":{"blockId":"-","x":2069,"y":26664,"width":200,"height":200,"minimized":false,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"-~":{"blockId":"T","x":2160,"y":32830,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},",T":{"blockId":"cm","x":2176,"y":31856,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"_[":{"blockId":":","x":2139,"y":31085,"width":200,"height":200,"minimized":false,"text":"8XY4- ADD VX, VY"},"_]":{"blockId":"*","x":2186,"y":31439,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"_@":{"blockId":"au","x":2065,"y":29590,"width":200,"height":200,"minimized":false,"text":"7XNN- ADD VX,NN"},"_:":{"blockId":"{","x":2043,"y":29384,"width":200,"height":200,"minimized":false,"text":"6XNN- LD VX, NN"},"_N":{"blockId":"_","x":2057,"y":27220,"width":200,"height":200,"minimized":false,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b!,":{"blockId":"b!-","x":363,"y":763,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine cal"},"b!.":{"blockId":"b!/","x":287,"y":1011,"width":200,"height":200,"minimized":true,"text":"1NNN- jmp nnn- jump to address nnn"},"b!:":{"blockId":"b!;","x":277,"y":1221,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum (STACK MAY BE GETTING TOO BIG HERE)"},"b!=":{"blockId":"b!?","x":679,"y":1477,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"b!@":{"blockId":"b![","x":767,"y":1693,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"b!]":{"blockId":"b!^","x":1192,"y":1914,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b!_":{"blockId":"b!`","x":979,"y":2155,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b!{":{"blockId":"b!|","x":977,"y":2372,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b!}":{"blockId":"b!~","x":904,"y":2652,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b#a":{"blockId":"b#b","x":902,"y":2872,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b#c":{"blockId":"b#d","x":885,"y":3516,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b#e":{"blockId":"b#f","x":876,"y":4136,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b#g":{"blockId":"b#h","x":1071,"y":4768,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b#i":{"blockId":"b#j","x":1067,"y":5120,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"b#k":{"blockId":"b#l","x":1067,"y":5472,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b#m":{"blockId":"b#n","x":1067,"y":5784,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b#o":{"blockId":"b#p","x":990,"y":6136,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b#q":{"blockId":"b#r","x":1332,"y":6478,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b#s":{"blockId":"b#t","x":805,"y":6834,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b#u":{"blockId":"b#v","x":812,"y":7040,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b#w":{"blockId":"b#x","x":645,"y":7247,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b#y":{"blockId":"b#z","x":724,"y":7796,"width":200,"height":200,"minimized":false,"text":"DXYN- sprite vx,vy,n- Draw sprite at screen location (register VX, register VY) height N\nMOST LIKELY BUGGED"},"b#A":{"blockId":"b#B","x":772,"y":9202,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k"},"b#C":{"blockId":"b#D","x":842,"y":9318,"width":200,"height":200,"minimized":true,"text":"eka1- skup k"},"b#E":{"blockId":"b#F","x":826,"y":9501,"width":200,"height":200,"minimized":true,"text":"fr07- gdelay vr"},"b#G":{"blockId":"b#H","x":831,"y":9688,"width":200,"height":200,"minimized":true,"text":"fr0a- key vr"},"b#I":{"blockId":"b#J","x":832,"y":9919,"width":200,"height":200,"minimized":true,"text":"fr15- sdelay vr"},"b#K":{"blockId":"b#L","x":807,"y":10110,"width":200,"height":200,"minimized":true,"text":"fr18- ssound vr- Changed to sound timer"},"b#M":{"blockId":"b#N","x":892,"y":10339,"width":200,"height":200,"minimized":true,"text":"fr1e- adi vr"},"b#O":{"blockId":"b#P","x":911,"y":10490,"width":200,"height":200,"minimized":false,"text":"fr29 - font vr- point I to the sprite for hexadecimal character in vr"},"b#Q":{"blockId":"b#R","x":1152,"y":10709,"width":200,"height":200,"minimized":false,"text":"fr33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b#S":{"blockId":"b#T","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"b#U":{"blockId":"b#V","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"b#W":{"blockId":"b#X","x":2107,"y":1598,"width":200,"height":200,"minimized":true,"text":"VY"},"`g":{"blockId":"cM","x":2257,"y":54307,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"`n":{"blockId":"gC","x":2473,"y":54904,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"b#Y":{"blockId":"b#Z","x":238,"y":1609,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum"},"b#!":{"blockId":"b##","x":316,"y":1805,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"b#%":{"blockId":"b#(","x":712,"y":2085,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"b#)":{"blockId":"b#*","x":912,"y":2281,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b#+":{"blockId":"b#,","x":903,"y":2608,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b#-":{"blockId":"b#.","x":924,"y":2808,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b#/":{"blockId":"b#:","x":895,"y":3117,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b#;":{"blockId":"b#=","x":881,"y":3332,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b#?":{"blockId":"b#@","x":564,"y":3979,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b#[":{"blockId":"b#]","x":842,"y":4623,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b#^":{"blockId":"b#_","x":1074,"y":5253,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b#`":{"blockId":"b#{","x":1083,"y":5591,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"b#|":{"blockId":"b#}","x":1070,"y":5946,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b#~":{"blockId":"b%a","x":1060,"y":6256,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b%b":{"blockId":"b%c","x":1035,"y":6634,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b%d":{"blockId":"b%e","x":1256,"y":6969,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b%f":{"blockId":"b%g","x":787,"y":7185,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b%h":{"blockId":"b%i","x":808,"y":7391,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b%j":{"blockId":"b%k","x":619,"y":7649,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b%l":{"blockId":"b%m","x":608,"y":8239,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"b%n":{"blockId":"b%o","x":623,"y":9754,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b%p":{"blockId":"b%q","x":822,"y":9850,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b%r":{"blockId":"b%s","x":813,"y":10065,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"b%t":{"blockId":"b%u","x":810,"y":10238,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"b%v":{"blockId":"b%w","x":828,"y":10483,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"b%x":{"blockId":"b%y","x":807,"y":10696,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"b%z":{"blockId":"b%A","x":828,"y":10907,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"b%B":{"blockId":"b%C","x":768,"y":11147,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b%D":{"blockId":"b%E","x":978,"y":11348,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b%F":{"blockId":"b%G","x":744,"y":11803,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"b%H":{"blockId":"b%I","x":742,"y":12313,"width":200,"height":200,"minimized":false,"text":"FX65- Save VX"},"/A":{"blockId":"/","x":2096,"y":25768,"width":200,"height":200,"minimized":false,"text":"1NNN - Set PC to NNN"},",I":{"blockId":"cg","x":2729,"y":52836,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b%J":{"blockId":"b%K","x":978,"y":11652,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b%L":{"blockId":"b%M","x":744,"y":12107,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"b%N":{"blockId":"b%O","x":742,"y":12617,"width":200,"height":200,"minimized":false,"text":"FX65- Save VX"},"b%P":{"blockId":"b%Q","x":3038,"y":577,"width":200,"height":200,"minimized":true,"text":"1"},"b%R":{"blockId":"b%S","x":3043,"y":823,"width":200,"height":200,"minimized":true,"text":"2"},"b%T":{"blockId":"b%U","x":3030,"y":1055,"width":200,"height":200,"minimized":true,"text":"3"},"b%V":{"blockId":"b%W","x":3036,"y":1300,"width":200,"height":200,"minimized":true,"text":"4"},"b%X":{"blockId":"b%Y","x":3087,"y":1544,"width":200,"height":200,"minimized":true,"text":"5"},"b%Z":{"blockId":"b%!","x":3070,"y":1784,"width":200,"height":200,"minimized":true,"text":"6"},"b%#":{"blockId":"b%%","x":3073,"y":2022,"width":200,"height":200,"minimized":true,"text":"7"},"b%(":{"blockId":"b%)","x":3051,"y":2260,"width":200,"height":200,"minimized":true,"text":"8"},"b%*":{"blockId":"b%+","x":3057,"y":2502,"width":200,"height":200,"minimized":true,"text":"9"},"b%,":{"blockId":"b%-","x":3047,"y":2740,"width":200,"height":200,"minimized":true,"text":"A"},"b%.":{"blockId":"b%/","x":3066,"y":2978,"width":200,"height":200,"minimized":true,"text":"B"},"b%:":{"blockId":"b%;","x":3049,"y":3230,"width":200,"height":200,"minimized":true,"text":"C"},"b%=":{"blockId":"b%?","x":3075,"y":3470,"width":200,"height":200,"minimized":true,"text":"D"},"b%@":{"blockId":"b%[","x":3101,"y":3693,"width":200,"height":200,"minimized":true,"text":"E"},"b%]":{"blockId":"b%^","x":3095,"y":3929,"width":200,"height":200,"minimized":true,"text":"F"},"b%_":{"blockId":"b%`","x":3066.146130971095,"y":4542.927708463533,"width":200,"height":200,"minimized":true,"text":"0"},"b%{":{"blockId":"b%|","x":269,"y":453,"width":200,"height":200,"minimized":true,"text":"001N- EXIT N- Exits the emulator."},"b%}":{"blockId":"b%~","x":283,"y":839,"width":200,"height":200,"minimized":true,"text":"00E0- cls- clear the screen"},"b(a":{"blockId":"b(b","x":331,"y":1154,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"b(c":{"blockId":"b(d","x":396,"y":1492,"width":200,"height":200,"minimized":true,"text":"1NNN"},"b(e":{"blockId":"b(f","x":238,"y":1609,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum"},"b(g":{"blockId":"b(h","x":316,"y":1805,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"b(i":{"blockId":"b(j","x":712,"y":2085,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"b(k":{"blockId":"b(l","x":912,"y":2281,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b(m":{"blockId":"b(n","x":903,"y":2608,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b(o":{"blockId":"b(p","x":924,"y":2808,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b(q":{"blockId":"b(r","x":895,"y":3117,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b(s":{"blockId":"b(t","x":881,"y":3332,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b(u":{"blockId":"b(v","x":564,"y":3979,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b(w":{"blockId":"b(x","x":842,"y":4623,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b(y":{"blockId":"b(z","x":1074,"y":5253,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b(A":{"blockId":"b(B","x":1083,"y":5591,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"b(C":{"blockId":"b(D","x":1070,"y":5946,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b(E":{"blockId":"b(F","x":1060,"y":6256,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b(G":{"blockId":"b(H","x":1035,"y":6634,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b(I":{"blockId":"b(J","x":1266,"y":7280,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b(K":{"blockId":"b(L","x":880,"y":7485,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b(M":{"blockId":"b(N","x":758,"y":7719,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b(O":{"blockId":"b(P","x":614,"y":7937,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b(Q":{"blockId":"b(R","x":608,"y":8582,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"b(S":{"blockId":"b(T","x":654,"y":10090,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b(U":{"blockId":"b(V","x":884,"y":10186,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b(W":{"blockId":"b(X","x":838,"y":10405,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"b(Y":{"blockId":"b(Z","x":823,"y":10586,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"b(!":{"blockId":"b(#","x":826,"y":10801,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"b(%":{"blockId":"b((","x":802,"y":11035,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"b()":{"blockId":"b(*","x":816,"y":11240,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"b(+":{"blockId":"b(,","x":778,"y":11468,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b(-":{"blockId":"b(.","x":768,"y":11683,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b(/":{"blockId":"b(:","x":760,"y":11902,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b(;":{"blockId":"b(=","x":824,"y":12303,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"b(?":{"blockId":"b(@","x":808,"y":12994,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"`o":{"blockId":"gE","x":2460,"y":55388,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP (XO-CHIP 1.1 ver.)\nsaveflags vx"},"`p":{"blockId":"gF","x":2589,"y":56136,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP (XO-CHIP 1.1 ver.)\nloadflags vx"},"b([":{"blockId":"b(]","x":759,"y":10219,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b(^":{"blockId":"b(_","x":1020,"y":10345,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b(`":{"blockId":"b({","x":348,"y":14452,"width":200,"height":200,"minimized":false,"text":"FX85- SCHIP"},"b(|":{"blockId":"b(}","x":353,"y":1012,"width":200,"height":200,"minimized":true,"text":"00E0- cls- clear the screen"},"b(~":{"blockId":"b)a","x":167,"y":1018,"width":200,"height":200,"minimized":false,"text":"00EE- rts- return from subroutine call"},"b)b":{"blockId":"b)c","x":264,"y":1258,"width":200,"height":200,"minimized":true,"text":"1NNN"},"b)d":{"blockId":"b)e","x":311,"y":1459,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 16 levels maximum"},"b)f":{"blockId":"b)g","x":271,"y":1704,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"b)h":{"blockId":"b)i","x":593,"y":1907,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"b)j":{"blockId":"b)k","x":1029,"y":2158,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b)l":{"blockId":"b)m","x":550,"y":2394,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b)n":{"blockId":"b)o","x":986,"y":2571,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b)p":{"blockId":"b)q","x":631,"y":2861,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b)r":{"blockId":"b)s","x":505,"y":3099,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b)t":{"blockId":"b)u","x":269,"y":3733,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b)v":{"blockId":"b)w","x":418,"y":4376,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b)x":{"blockId":"b)y","x":954,"y":5016,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b)z":{"blockId":"b)A","x":853,"y":5362,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"b)B":{"blockId":"b)C","x":808,"y":5715,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b)D":{"blockId":"b)E","x":830,"y":6033,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b)F":{"blockId":"b)G","x":946,"y":6386,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b)H":{"blockId":"b)I","x":1035,"y":7036,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b)J":{"blockId":"b)K","x":806,"y":7271,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b)L":{"blockId":"b)M","x":792,"y":7464,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b)N":{"blockId":"b)O","x":598,"y":7692,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b)P":{"blockId":"b)Q","x":535,"y":8338,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"b)R":{"blockId":"b)S","x":646,"y":9783,"width":200,"height":200,"minimized":false,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b)T":{"blockId":"b)U","x":758,"y":9964,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b)V":{"blockId":"b)W","x":618,"y":10172,"width":200,"height":200,"minimized":false,"text":"fx07- gdelay vr\nFX07"},"bL":{"blockId":"g","x":771.5925925925926,"y":841.1111111111113,"width":200,"height":200,"minimized":false,"text":"0x1260 - HIRES_ON\n\nXO-CHIP doesn't support Hi-Res so this only modfies plane 1"},"b)X":{"blockId":"b)Y","x":267,"y":1594,"width":200,"height":200,"minimized":false,"text":"00FD(SCHIP)- EXIT N- Exits the emulator."},"b)Z":{"blockId":"b)!","x":154,"y":1985,"width":200,"height":200,"minimized":true,"text":"1NNN"},"b)#":{"blockId":"b)%","x":297,"y":2190,"width":200,"height":200,"minimized":false,"text":"2NNN- jsr nnn- 16 levels maximum"},"b)(":{"blockId":"b))","x":540,"y":2377,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"b)*":{"blockId":"b)+","x":501,"y":2664,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"b),":{"blockId":"b)-","x":758,"y":2875,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"b).":{"blockId":"b)/","x":406,"y":3100,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b):":{"blockId":"b);","x":868,"y":3320,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b)=":{"blockId":"b)?","x":736,"y":3600,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b)@":{"blockId":"b)[","x":506,"y":3826,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b)]":{"blockId":"b)^","x":313,"y":4467,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b)_":{"blockId":"b)`","x":406,"y":5095,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b){":{"blockId":"b)|","x":933,"y":5704,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b)}":{"blockId":"b)~","x":1022,"y":6073,"width":200,"height":200,"minimized":false,"text":"8XY5- SUB VX, VY"},"b*a":{"blockId":"b*b","x":589,"y":6434,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b*c":{"blockId":"b*d","x":826,"y":6721,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b*e":{"blockId":"b*f","x":914,"y":7117,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b*g":{"blockId":"b*h","x":1049,"y":7741,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b*i":{"blockId":"b*j","x":797,"y":8002,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b*k":{"blockId":"b*l","x":791,"y":8201,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn"},"b*m":{"blockId":"b*n","x":577,"y":8431,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b*o":{"blockId":"b*p","x":529,"y":9086,"width":200,"height":200,"minimized":true,"text":"DXYN- sprite vx, vy, n- Draw sprite at screen location (register VX, register VY) height N\n\n(Winner of most temperamental Chip-8 opcode award)"},"b*q":{"blockId":"b*r","x":754,"y":10180,"width":200,"height":200,"minimized":false,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b*s":{"blockId":"b*t","x":866,"y":10361,"width":200,"height":200,"minimized":false,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b*u":{"blockId":"b*v","x":726,"y":10569,"width":200,"height":200,"minimized":false,"text":"fx07- gdelay vr\nFX07"},"b*w":{"blockId":"b*x","x":679,"y":10766,"width":200,"height":200,"minimized":false,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"b*y":{"blockId":"b*z","x":837,"y":11578,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"b*A":{"blockId":"b*B","x":817,"y":11781,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"b*C":{"blockId":"b*D","x":975,"y":11979,"width":200,"height":200,"minimized":false,"text":"fx1e- adi vr"},"b*E":{"blockId":"b*F","x":996,"y":12222,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b*G":{"blockId":"b*H","x":856,"y":12372,"width":200,"height":200,"minimized":false,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b*I":{"blockId":"b*J","x":818,"y":12583,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b*K":{"blockId":"b*L","x":857,"y":13063,"width":200,"height":200,"minimized":false,"text":"FX55- Load VX"},"b*M":{"blockId":"b*N","x":887,"y":13874,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"b*O":{"blockId":"b*P","x":362,"y":14879,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"b*Q":{"blockId":"b*R","x":226,"y":15637,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"pu":{"blockId":"m","x":2112,"y":20974,"width":200,"height":200,"minimized":false,"text":"00FE(SCHIP) LOW"},"e(":{"blockId":"n","x":2454,"y":20767,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"a:":{"blockId":"c!","x":2389.2897263971963,"y":8686.057858948072,"width":200,"height":200,"minimized":false,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"i":{"blockId":"j","x":2283.2897263971963,"y":13971.057858948072,"width":200,"height":200,"minimized":false,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b*S":{"blockId":"b*T","x":365.1878992716473,"y":1264.5555555555557,"width":200,"height":200,"minimized":false,"text":"00CN (SCHIP) Scroll display down N pixels, N/2 in lowres mode"},"aL":{"blockId":"d","x":2395.2897263971963,"y":3345.057858948072,"width":200,"height":200,"minimized":false,"text":"00CN (SCHIP) - SCD N"},"aM":{"blockId":"cY","x":2386.2897263971963,"y":6269.057858948072,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"b*U":{"blockId":"b*V","x":399,"y":6578,"width":200,"height":200,"minimized":true,"text":"5XY3 (XO-CHIP) load VX- VY"},"b*W":{"blockId":"b*X","x":422,"y":6987,"width":200,"height":200,"minimized":true,"text":"5XY2 (XO-CHIP) save VX- VY"},"b*Y":{"blockId":"b*Z","x":422,"y":7219,"width":200,"height":200,"minimized":true,"text":"5XY3 (XO-CHIP) load VX- VY"},"b*!":{"blockId":"b*#","x":100,"y":7449,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"b*%":{"blockId":"b*(","x":331,"y":7654,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b*)":{"blockId":"b**","x":832,"y":7932,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},"b*+":{"blockId":"b*,","x":420,"y":8200,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},"b*-":{"blockId":"b*.","x":397,"y":8797,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},"b*/":{"blockId":"b*:","x":711,"y":9435,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"b*;":{"blockId":"b*=","x":953,"y":10056,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"b*?":{"blockId":"b*@","x":1090,"y":10411,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},"b*[":{"blockId":"b*]","x":1050,"y":10800,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b*^":{"blockId":"b*_","x":1190,"y":11428,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"b*`":{"blockId":"b*{","x":792,"y":11769,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"b*|":{"blockId":"b*}","x":716,"y":12363,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},"b*~":{"blockId":"b+a","x":480,"y":12671,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},"b+b":{"blockId":"b+c","x":766,"y":12843,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP, Default)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"b+d":{"blockId":"b+e","x":725,"y":13279,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"b+f":{"blockId":"b+g","x":430,"y":13911,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"b+h":{"blockId":"b+i","x":868,"y":16671,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"b+j":{"blockId":"b+k","x":868,"y":16818,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b+l":{"blockId":"b+m","x":404,"y":16993,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"b+n":{"blockId":"b+o","x":357,"y":17186,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"b+p":{"blockId":"b+q","x":530,"y":17870,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"b+r":{"blockId":"b+s","x":491,"y":18047,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"b+t":{"blockId":"b+u","x":459,"y":18256,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"b+v":{"blockId":"b+w","x":1381,"y":18529,"width":200,"height":200,"minimized":true,"text":"Normally incorrect behavior, but Spacefight 2091! and SC Test rely on it"},"b+x":{"blockId":"b+y","x":675,"y":18804,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b+z":{"blockId":"b+A","x":626,"y":18970,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b+B":{"blockId":"b+C","x":993,"y":19268,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b+D":{"blockId":"b+E","x":908,"y":19852,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"b+F":{"blockId":"b+G","x":677,"y":20532,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"b+H":{"blockId":"b+I","x":678,"y":21255,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"b+J":{"blockId":"b+K","x":618,"y":21986,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"_X":{"blockId":"bU","x":2449,"y":28542,"width":200,"height":200,"minimized":false,"text":"5XY2 (XO-CHIP)- save vx-vy starting at I"},"b+L":{"blockId":"b+M","x":408.9272358505814,"y":2213.425925925926,"width":200,"height":200,"minimized":true,"text":"00FA (chip8run) Makes FX55/FX65 increment I"},"b+N":{"blockId":"b+O","x":-89,"y":19859,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"b+P":{"blockId":"b+Q","x":-89,"y":20600,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"b+R":{"blockId":"b+S","x":-21.33333333333337,"y":27782.600000000002,"width":200,"height":200,"minimized":true,"text":"FXF8"},"a}l":{"blockId":"a}m","x":-205.107400036031,"y":32482.872598307826,"width":200,"height":200,"minimized":true,"text":"FXF8 (chip8x)- Output port to VX"},"b+T":{"blockId":"b+U","x":3409.833333333333,"y":6435.425925925926,"width":200,"height":200,"minimized":false,"text":"[ Ant V1.0 ] "},"=Y":{"blockId":"an","x":2873,"y":53355,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"bV":{"blockId":"bW","x":5974,"y":209,"width":216,"height":229,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"bX":{"blockId":"I|","x":5733,"y":3417,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"bY":{"blockId":"I}","x":2209,"y":350,"width":179,"height":154,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"bZ":{"blockId":"aX","x":2213,"y":1706,"width":197,"height":130,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"=V":{"blockId":"av","x":2286,"y":42105,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"b+V":{"blockId":"b+W","x":1434.9259259259252,"y":21153.62962962963,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"b+X":{"blockId":"b+Y","x":3015.666666666667,"y":56,"width":200,"height":200,"minimized":true,"text":"Converts the stack to hex."},"a`=":{"blockId":"c@","x":2579,"y":56874,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"b+Z":{"blockId":"b+!","x":976.6666666666667,"y":37356.444444444445,"width":200,"height":200,"minimized":true,"text":"FXA0"},"b+#":{"blockId":"b+%","x":976.6666666666667,"y":37500.444444444445,"width":200,"height":200,"minimized":true,"text":"FXA1"},"a`J":{"blockId":",","x":2916,"y":53776,"width":200,"height":200,"minimized":true,"text":"Fx3B - HYPERCHIP64"},"a`L":{"blockId":"co","x":2283,"y":54014,"width":200,"height":200,"minimized":true,"text":"Fx3C - HYPERCHIP64"},"a`O":{"blockId":"gy","x":2843,"y":54058,"width":200,"height":200,"minimized":true,"text":"Fx3D - HYPERCHIP64"},"b+(":{"blockId":"b+)","x":933.9907407407406,"y":19187.85802469136,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"a^@":{"blockId":"cv","x":2254,"y":33493,"width":200,"height":200,"minimized":true,"text":"8XY8 - HYPERCHIP-64\nStore VY rotated one bit to the right in VX"},"a^]":{"blockId":"cu","x":2312,"y":33731,"width":200,"height":200,"minimized":true,"text":"8XY9 - HYPERCHIP-64\nStore Vy rotated one bit to the left in Vx"},"a^_":{"blockId":";","x":2307,"y":33982,"width":200,"height":200,"minimized":true,"text":"8XYA - HYPERCHIP-64 - Test VX AND VY"},"a^|":{"blockId":"cI","x":2179,"y":34659,"width":200,"height":200,"minimized":true,"text":"8XYB - NOT"},"b+*":{"blockId":"b++","x":871.666666666667,"y":38092,"width":200,"height":200,"minimized":true,"text":"FXAx - HYPERCHIP64"},"b+,":{"blockId":"b+-","x":978.6666666666669,"y":38152,"width":200,"height":200,"minimized":true,"text":"FXA0"},"b+.":{"blockId":"b+/","x":978.6666666666669,"y":38296,"width":200,"height":200,"minimized":true,"text":"FXA1"},"b+:":{"blockId":"b+;","x":978.6666666666669,"y":38440,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"b+=":{"blockId":"b+?","x":698.3333333333333,"y":36455.333333333336,"width":200,"height":200,"minimized":true,"text":"FXAx - HYPERCHIP64"},"b+@":{"blockId":"b+[","x":805.3333333333333,"y":36515.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA0"},"b+]":{"blockId":"b+^","x":805.3333333333333,"y":36659.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA1"},"b+_":{"blockId":"b+`","x":805.3333333333333,"y":36803.333333333336,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"a`v":{"blockId":"aV","x":2569,"y":51938,"width":200,"height":200,"minimized":true,"text":"FX20 - HYPERCHIP-64"},"a`x":{"blockId":"aT","x":3313,"y":52229,"width":200,"height":200,"minimized":true,"text":"FX21 - HYPERCHIP-64"},"a_a":{"blockId":"cx","x":2210,"y":34868,"width":200,"height":200,"minimized":true,"text":"8XYC - HyperWaveCHIP-64 - Set VX to VX * VY"},"b+{":{"blockId":"b+|","x":741.2222222222225,"y":19969.666666666664,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},"a_d":{"blockId":"aW","x":2311,"y":35244,"width":200,"height":200,"minimized":true,"text":"8XYD - HyperWaveCHIP-64 - Set VX to VX / VY"},"b+}":{"blockId":"b+~","x":1681.1279999999997,"y":25905.584,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"a`g":{"blockId":"aU","x":2981,"y":49798,"width":200,"height":200,"minimized":true,"text":"FN03 (HyperWaveCHIP-64 - Set RGB color for plane # N to join Item I in memory(R) I+1,(G) I+2(B)"},"b,a":{"blockId":"b,b","x":1168.9074074074076,"y":4180.222222222223,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"b,c":{"blockId":"b,d","x":1169.9074074074076,"y":7084.222222222223,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b,e":{"blockId":"b,f","x":1277.925925925926,"y":9768.75925925926,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"b,g":{"blockId":"b,h","x":1304.925925925926,"y":10259.75925925926,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"b,i":{"blockId":"b,j","x":1836.925925925926,"y":11698.75925925926,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"pr":{"blockId":"h","x":2190,"y":20204,"width":200,"height":200,"minimized":false,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"pt":{"blockId":"am","x":2170,"y":20601,"width":200,"height":200,"minimized":false,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"b,k":{"blockId":"b,l","x":1449,"y":4339,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"b,m":{"blockId":"b,n","x":1450,"y":7243,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b,o":{"blockId":"b,p","x":1477,"y":9953,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"b,q":{"blockId":"b,r","x":1504,"y":10444,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"b,s":{"blockId":"b,t","x":2036,"y":11883,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"b,u":{"blockId":"b,v","x":1804,"y":4384,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64NOT the selected plane"},"ps":{"blockId":"al","x":2169,"y":20396,"width":200,"height":200,"minimized":false,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"b,w":{"blockId":"b,x","x":1719,"y":5299,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"b,y":{"blockId":"b,z","x":1450,"y":7243,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b,A":{"blockId":"b,B","x":1477,"y":9953,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"b,C":{"blockId":"b,D","x":1504,"y":10444,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"b,E":{"blockId":"b,F","x":2036,"y":11883,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"b,G":{"blockId":"b,H","x":-113.66666666666674,"y":36060.66666666667,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"b,I":{"blockId":"b,J","x":-183.66666666666674,"y":36488.66666666667,"width":200,"height":200,"minimized":true,"text":"FN03 (HyperWaveCHIP-64 - Set RGB color for plane # N to join Item I in memory(R) I+1,(G) I+2(B)"},"b,K":{"blockId":"b,L","x":-216.66666666666674,"y":37092.66666666667,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"b,M":{"blockId":"b,N","x":-195.66666666666674,"y":37295.66666666667,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- Wait for a keypress and store the result in register VX"},"b,O":{"blockId":"b,P","x":-172.66666666666674,"y":37924.66666666667,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"b,Q":{"blockId":"b,R","x":-144.66666666666674,"y":38135.66666666667,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"b,S":{"blockId":"b,T","x":-167.66666666666674,"y":38340.66666666667,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"b,U":{"blockId":"b,V","x":-19.666666666666742,"y":38871.66666666667,"width":200,"height":200,"minimized":true,"text":"FX20 - HYPERCHIP-64"},"b,W":{"blockId":"b,X","x":251.33333333333326,"y":39135.66666666667,"width":200,"height":200,"minimized":true,"text":"FX21 - HYPERCHIP-64"},"b,Y":{"blockId":"b,Z","x":-167.66666666666674,"y":39402.66666666667,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b,!":{"blockId":"b,#","x":-221.99999999999977,"y":39629.00000000001,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b,%":{"blockId":"b,(","x":-201.99999999999977,"y":39875.00000000001,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b,)":{"blockId":"b,*","x":-163.99999999999977,"y":40275.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"b,+":{"blockId":"b,,","x":-183.99999999999977,"y":40631.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3B - HYPERCHIP64"},"b,-":{"blockId":"b,.","x":-227.99999999999977,"y":40751.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3C - HYPERCHIP64"},"b,/":{"blockId":"b,:","x":-183.99999999999977,"y":40901.00000000001,"width":200,"height":200,"minimized":true,"text":"Fx3D - HYPERCHIP64"},"b,;":{"blockId":"b,=","x":-301.9999999999998,"y":41124.00000000001,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP (XO-CHIP 1.1 ver.)\nsaveflags vx"},"b,?":{"blockId":"b,@","x":-261.9999999999998,"y":41862.00000000001,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP (XO-CHIP 1.1 ver.)\nloadflags vx"},"b,[":{"blockId":"b,]","x":-254.99999999999977,"y":42487.00000000001,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"},"a_?":{"blockId":"cA","x":2311,"y":48350,"width":200,"height":200,"minimized":true,"text":"F100 - HyperWaveCHIP-64 - long jump"},"a_]":{"blockId":"cy","x":2256,"y":48586,"width":200,"height":200,"minimized":true,"text":"F200 - HyperWaveCHIP-64 long subroutine"},"a_{":{"blockId":"cp","x":2479,"y":48798,"width":200,"height":200,"minimized":true,"text":"F300 - HyperWaveCHIP-64 - long jump0"},"e%":{"blockId":"cZ","x":2345.2897263971963,"y":8009.057858948072,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"b,^":{"blockId":"b,_","x":1450,"y":4132,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"b,`":{"blockId":"b,{","x":1454,"y":5323,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"b,|":{"blockId":"b,}","x":1433,"y":5515,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"b,~":{"blockId":"b-a","x":1434,"y":5720,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"b-b":{"blockId":"b-c","x":1580,"y":5885,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"b-d":{"blockId":"b-e","x":1445,"y":8774,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b-f":{"blockId":"b-g","x":1354,"y":11508,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"b-h":{"blockId":"b-i","x":1376,"y":11957,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"b-j":{"blockId":"b-k","x":1719,"y":12534,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"b-l":{"blockId":"b-m","x":2400,"y":1567,"width":200,"height":200,"minimized":false,"text":"00F0 - HyperWaveCHIP-64NOT the selected plane"},"b-n":{"blockId":"b-o","x":1454,"y":5323,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"b-p":{"blockId":"b-q","x":1433,"y":5515,"width":200,"height":200,"minimized":true,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"b-r":{"blockId":"b-s","x":1434,"y":5720,"width":200,"height":200,"minimized":true,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"b-t":{"blockId":"b-u","x":1580,"y":5885,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"b-v":{"blockId":"b-w","x":1445,"y":8774,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"b-x":{"blockId":"b-y","x":1354,"y":11508,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"b-z":{"blockId":"b-A","x":1376,"y":11957,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"b-B":{"blockId":"b-C","x":1719,"y":12534,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"a^h":{"blockId":"ct","x":2056,"y":25103,"width":200,"height":200,"minimized":false,"text":"0700 - (Mega-Chip): stop sound"},"b-D":{"blockId":"b-E","x":1344.7407407407406,"y":11627.11111111111,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"pv":{"blockId":"P","x":2134,"y":21607,"width":200,"height":200,"minimized":false,"text":"0010 (Mega-Chip) - Disable Megachip mode"},"b-F":{"blockId":"b-G","x":1073.1666666666665,"y":12639.22222222222,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"=Z":{"blockId":"aw","x":2117,"y":21226,"width":200,"height":200,"minimized":false,"text":"0011 (Mega-Chip) - Enable Megachip mode"},"a]?":{"blockId":"aR","x":2109,"y":22674,"width":200,"height":200,"minimized":false,"text":"01NN (Mega-Chip) - Set I to (nn<<16) + nnnn\nLike XO-CHIP's Long I but with 24-Bit addresses instead of 16-bit"},"a]]":{"blockId":"aS","x":2100,"y":22943,"width":200,"height":200,"minimized":false,"text":"02NN (Mega-Chip)\nLoad NN 32-bit palettes located at I (this implementation skips the alpha byte)"},"a]_":{"blockId":"a[","x":2056,"y":23591,"width":200,"height":200,"minimized":false,"text":"03NN (Mega-Chip) - Set sprite width to NN"},"b-H":{"blockId":"b-I","x":1180.7600000000002,"y":37434.8,"width":200,"height":200,"minimized":true,"text":"F100 - HyperWaveCHIP-64 - long jump"},"b-J":{"blockId":"b-K","x":1205.7600000000002,"y":37660.8,"width":200,"height":200,"minimized":true,"text":"F200 - HyperWaveCHIP-64 long subroutine"},"b-L":{"blockId":"b-M","x":1225.7600000000002,"y":37205.8,"width":200,"height":200,"minimized":true,"text":"F300 - HyperWaveCHIP-64 - long jump0"},"a_w":{"blockId":"cE","x":2449,"y":38618,"width":348.148193359375,"height":144.4444580078125,"minimized":true,"text":"Note that HWC-64's draw modes and XO-CHIP's plane selection are set to default when MegaChip mode is enabled, and you should not change these while it is enabled!"},"a]~":{"blockId":"a@","x":2056,"y":24191,"width":200,"height":200,"minimized":true,"text":"05NN (MegaChip)\nBasically a NOP"},"a^k":{"blockId":"fr","x":2056,"y":25479,"width":200,"height":200,"minimized":false,"text":"09NN(?)\nUndocumented Mega-Chip instruction, supposedly sets collision color index?"},"a^b":{"blockId":"a?","x":2058,"y":24328,"width":200,"height":200,"minimized":true,"text":"060N (MegaChip)\nPlay digitized sound at I"},"a]|":{"blockId":"cr","x":2151,"y":23937,"width":200,"height":200,"minimized":false,"text":"04NN (Mega-Chip) - Set sprite height to NN"},"a^i":{"blockId":"cs","x":2058,"y":25328,"width":200,"height":200,"minimized":false,"text":"080N - (MegaChip) Set sprite blend mode to n"},"a_g":{"blockId":"tR","x":2217,"y":35837,"width":200,"height":200,"minimized":false,"text":"8XYF - HyperWaveCHIP-64 - set VY to VY / VX"},"a`m":{"blockId":"cK","x":2554,"y":50582,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- Wait for a keypress and store the result in register VX"},"a_:":{"blockId":"lf","x":2898,"y":48130,"width":200,"height":200,"minimized":false,"text":"F000 (XO-CHIP)- i := long NNNN. Load i with a 16 bit address "},"b-N":{"blockId":"b-O","x":2633.0400000000004,"y":22753.64,"width":200,"height":200,"minimized":false,"text":"8XY3- XOR VX, VY"},"a^Z":{"blockId":"cl","x":2155,"y":30669,"width":200,"height":200,"minimized":false,"text":"8XY3- XOR VX, VY"},"a=T":{"blockId":"as","x":2040,"y":49369,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"a:G":{"blockId":"c:","x":2193,"y":49223,"width":200,"height":200,"minimized":true,"text":"FN01 - (XO-CHIP) - plane n"},"a^/":{"blockId":"e}","x":3058,"y":32481,"width":200,"height":200,"minimized":false,"text":"8XY7- SUBN VX, VY"},"b-P":{"blockId":null,"x":897,"y":307,"width":233,"height":316,"minimized":false,"text":"Programmed by @Geotale & @oxiti8\n\nSound, Hi-res CHIP-8 mode, SCHIP mode, XO-CHIP mode, “fixing everything”, GUI, and documentation comments by @oxiti8\n\nWave Logo XO-CHIP rom by @AArt1256\n\nAudio by @52525rr and @Kouzeru\n\nBug fixes and hexadecimal ROMs by @Kouzeru and the guys over on r/EmuDev\nReally couldn’t thank them enough for the help.\n"},"b-Q":{"blockId":null,"x":1367,"y":465,"width":200,"height":200,"minimized":false,"text":"X = op1 mod 16\nY = floor of (op2 / 16)\nN = op2 mod 16"},"b-R":{"blockId":null,"x":223.14814814814815,"y":464.51851851851853,"width":329.55560302734375,"height":273.11114501953125,"minimized":false,"text":" COLOR\nP 0 1 2 3 4 5 6 7 8 9 A B C D E F\nL 1. x x x x x x x x\nA 2. x x x x x x x x\nN 3. x x x x x x x x\nE 4. x x x x x x x x"},"a|b":{"blockId":"cO","x":2387,"y":43690,"width":200,"height":200,"minimized":true,"text":"Plane 3"},"a|z":{"blockId":"fy","x":2337,"y":45077,"width":200,"height":200,"minimized":true,"text":"Plane 4"},"a|^":{"blockId":"cL","x":2249,"y":51640,"width":200,"height":200,"minimized":true,"text":"fx1f - HWC-64 1.1 "},"b-S":{"blockId":"b-T","x":837.2640000000004,"y":50186.384000000005,"width":200,"height":200,"minimized":true,"text":"FX20 - HYPERCHIP-64"},"b-U":{"blockId":"b-V","x":1581.2640000000004,"y":50477.384000000005,"width":200,"height":200,"minimized":true,"text":"FX21 - HYPERCHIP-64"},"b-W":{"blockId":"b-X","x":1316.2640000000004,"y":50741.384000000005,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},"b-Y":{"blockId":"b-Z","x":997.2640000000004,"y":51084.384000000005,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},"b-!":{"blockId":"b-#","x":616.2640000000004,"y":51382.384000000005,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"b-%":{"blockId":"b-(","x":1141.2640000000004,"y":51603.384000000005,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"b-)":{"blockId":"b-*","x":1184.2640000000004,"y":52024.384000000005,"width":200,"height":200,"minimized":true,"text":"Fx3B - HYPERCHIP64"},"b-+":{"blockId":"b-,","x":552.2640000000004,"y":52262.384000000005,"width":200,"height":200,"minimized":true,"text":"Fx3C - HYPERCHIP64"},"b--":{"blockId":"b-.","x":1111.2640000000004,"y":52306.384000000005,"width":200,"height":200,"minimized":true,"text":"Fx3D - HYPERCHIP64"},"b-/":{"blockId":"b-:","x":526.2640000000004,"y":52555.384000000005,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"b-;":{"blockId":"b-=","x":742.2640000000004,"y":53152.384000000005,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"b-?":{"blockId":"b-@","x":627.8880000000006,"y":53584.16,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP (XO-CHIP 1.1 ver.)\nsaveflags vx"},"b-[":{"blockId":"b-]","x":755.8880000000006,"y":54332.16,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP (XO-CHIP 1.1 ver.)\nloadflags vx"},"b-^":{"blockId":"b-_","x":745.8880000000006,"y":55070.16,"width":200,"height":200,"minimized":true,"text":"FXA2 - HYPERCHIP64 Set I to [I + VX]"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":0,"layerOrder":6,"visible":true,"x":192,"y":-19,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Import ROM","variables":{"Nacx{A2WY%QGLX/QgF]N":["import.char",68],"^agx?=rasT|:*cBkFdeB":["import.binary","000110100000100000011101"],"3lt5rd5NtHtm.gOc6_3L":["import.status",5],"2gur[deD.u_*HDC_JLPm":["import.read_return",167],"zsxII[X,wz?xvCvofbsI":["import.rom_length",942038],"LihSp{MQuQGg`jIcI]x(":["import.dummy","1"],"4alDl:(*zINs=KzJfNuw":["import.ascii"," !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~▒∠ā∇√∫Σ▶π\t∂≤≥≠α→←↓↑γδεηθλρστωΔΠΩ■∞ ¡¢£¤¥¦§¨©ª«¬"],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"uAm4?3ed1Q#FT#;rW,cx":["chip8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["chip8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["speed (CPF)",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"IoL_ukas[]D_ug%.x83m":["import.percent",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"S:$!kD9d2^^Zt4F0Bbpw":["chip8.HPS",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpqFO)Ai_xwJZInrX[!~":["load",""],"Mh+n98ZN{1B*npNt5f45":["temp",49185],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"JcH|Bk6g8yO74n|tWOIG":["chip8.blendmode",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Hf?;Y:LWGAxk[p?1562`":["chip8.audio",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"#2t_c630N5NI?I=l]FZ]":["load",[16384,8192,24576,0,0]],"3`C#KsI[WM=%ZSxuHQ!~":["mappers",["0","1","2","3","4","7","69","75","90","206"]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]]},"broadcasts":{},"blocks":{"uz":{"opcode":"procedures_definition","next":"uA","parent":null,"inputs":{"custom_block":[1,"uB"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":7856},"uB":{"opcode":"procedures_prototype","next":null,"parent":"uz","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,"a}n"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a}n":{"opcode":"argument_reporter_string_number","next":null,"parent":"uB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"uA":{"opcode":"data_setvariableto","next":null,"parent":"uz","inputs":{"VALUE":[3,"uC",[10,""]]},"fields":{"VARIABLE":["import.read_return","2gur[deD.u_*HDC_JLPm"]},"shadow":false,"topLevel":false},"uC":{"opcode":"operator_mathop","next":null,"parent":"uA","inputs":{"NUM":[3,"uD",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"uD":{"opcode":"operator_mod","next":null,"parent":"uC","inputs":{"NUM1":[3,"I~",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"I~":{"opcode":"operator_divide","next":null,"parent":"uD","inputs":{"NUM1":[3,"!o",[4,"0"]],"NUM2":[3,"!p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!o":{"opcode":"data_itemoflist","next":null,"parent":"I~","inputs":{"INDEX":[3,"uE",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"uE":{"opcode":"operator_add","next":null,"parent":"!o","inputs":{"NUM1":[3,"uF",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"uF":{"opcode":"operator_mathop","next":null,"parent":"uE","inputs":{"NUM":[3,"uG",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"uG":{"opcode":"operator_divide","next":null,"parent":"uF","inputs":{"NUM1":[3,"a}o",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}o":{"opcode":"argument_reporter_string_number","next":null,"parent":"uG","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"!p":{"opcode":"operator_round","next":null,"parent":"I~","inputs":{"NUM":[3,"uH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uH":{"opcode":"operator_mathop","next":null,"parent":"!p","inputs":{"NUM":[3,"uI",[4,"0"]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"uI":{"opcode":"operator_multiply","next":null,"parent":"uH","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"uJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uJ":{"opcode":"operator_subtract","next":null,"parent":"uI","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"uK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uK":{"opcode":"operator_mod","next":null,"parent":"uJ","inputs":{"NUM1":[3,"a}p",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a}p":{"opcode":"argument_reporter_string_number","next":null,"parent":"uK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"!q":{"opcode":"procedures_definition","next":"gW","parent":null,"inputs":{"custom_block":[1,"!r"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":8112},"!r":{"opcode":"procedures_prototype","next":null,"parent":"!q","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[1,"a}q"],"krrHn~;_D^@=CaLw(f,g":[1,"a}r"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","argumentnames":"[\"rom\",\"flag\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"a}q":{"opcode":"argument_reporter_string_number","next":null,"parent":"!r","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":true,"topLevel":false},"a}r":{"opcode":"argument_reporter_string_number","next":null,"parent":"!r","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":true,"topLevel":false},"gW":{"opcode":"control_if_else","next":null,"parent":"!q","inputs":{"CONDITION":[2,"!s"],"SUBSTACK":[2,"uL"],"SUBSTACK2":[2,"gX"]},"fields":{},"shadow":false,"topLevel":false},"!s":{"opcode":"operator_equals","next":null,"parent":"gW","inputs":{"OPERAND1":[3,"a}s",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}s":{"opcode":"argument_reporter_string_number","next":null,"parent":"!s","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"uL":{"opcode":"looks_switchcostumeto","next":"uM","parent":"gW","inputs":{"COSTUME":[1,"a}t"]},"fields":{},"shadow":false,"topLevel":false},"a}t":{"opcode":"looks_costume","next":null,"parent":"uL","inputs":{},"fields":{"COSTUME":["I",null]},"shadow":true,"topLevel":false},"uM":{"opcode":"data_setvariableto","next":"uN","parent":"uL","inputs":{"VALUE":[3,"a}u",[10,""]]},"fields":{"VARIABLE":["_ROM","od4rT?;Bw52y-r9gIuW2"]},"shadow":false,"topLevel":false},"a}u":{"opcode":"sensing_answer","next":null,"parent":"uM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"uN":{"opcode":"looks_switchcostumeto","next":"!t","parent":"uM","inputs":{"COSTUME":[1,"a}v"]},"fields":{},"shadow":false,"topLevel":false},"a}v":{"opcode":"looks_costume","next":null,"parent":"uN","inputs":{},"fields":{"COSTUME":["L",null]},"shadow":true,"topLevel":false},"!t":{"opcode":"data_setvariableto","next":"!u","parent":"uN","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.designation","*cu$N5#KACc@_m}ZOQx7"]},"shadow":false,"topLevel":false},"!u":{"opcode":"data_setvariableto","next":"!v","parent":"!t","inputs":{"VALUE":[1,[10,"1234"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"!v":{"opcode":"data_deletealloflist","next":"!w","parent":"!u","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"!w":{"opcode":"control_repeat","next":null,"parent":"!v","inputs":{"TIMES":[1,[6,"68"]],"SUBSTACK":[2,"!x"]},"fields":{},"shadow":false,"topLevel":false},"!x":{"opcode":"procedures_call","next":"!y","parent":"!w","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"!y":{"opcode":"data_addtolist","next":"a}w","parent":"!x","inputs":{"ITEM":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"a}w":{"opcode":"data_changevariableby","next":null,"parent":"!y","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"gX":{"opcode":"control_if","next":"!z","parent":"gW","inputs":{"CONDITION":[2,"!A"],"SUBSTACK":[2,"uO"]},"fields":{},"shadow":false,"topLevel":false},"!A":{"opcode":"operator_equals","next":null,"parent":"gX","inputs":{"OPERAND1":[3,"a}x",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a}x":{"opcode":"argument_reporter_string_number","next":null,"parent":"!A","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"uO":{"opcode":"looks_switchcostumeto","next":"a}y","parent":"gX","inputs":{"COSTUME":[1,"a}z"]},"fields":{},"shadow":false,"topLevel":false},"a}z":{"opcode":"looks_costume","next":null,"parent":"uO","inputs":{},"fields":{"COSTUME":["J",null]},"shadow":true,"topLevel":false},"a}y":{"opcode":"data_deletealloflist","next":null,"parent":"uO","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"!z":{"opcode":"data_setvariableto","next":"aY","parent":"gX","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"aY":{"opcode":"control_if_else","next":"uP","parent":"!z","inputs":{"CONDITION":[2,"uQ"],"SUBSTACK":[2,"gY"],"SUBSTACK2":[2,"uR"]},"fields":{},"shadow":false,"topLevel":false},"uQ":{"opcode":"operator_equals","next":null,"parent":"aY","inputs":{"OPERAND1":[3,"uS",[10,""]],"OPERAND2":[1,[10,"x"]]},"fields":{},"shadow":false,"topLevel":false},"uS":{"opcode":"operator_letter_of","next":null,"parent":"uQ","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,"a}A",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}A":{"opcode":"argument_reporter_string_number","next":null,"parent":"uS","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"gY":{"opcode":"control_if_else","next":null,"parent":"aY","inputs":{"CONDITION":[2,"uT"],"SUBSTACK":[2,"!B"],"SUBSTACK2":[2,"!C"]},"fields":{},"shadow":false,"topLevel":false},"uT":{"opcode":"operator_equals","next":null,"parent":"gY","inputs":{"OPERAND1":[3,"uU",[10,""]],"OPERAND2":[1,[10,","]]},"fields":{},"shadow":false,"topLevel":false},"uU":{"opcode":"operator_letter_of","next":null,"parent":"uT","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,"a}B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}B":{"opcode":"argument_reporter_string_number","next":null,"parent":"uU","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"!B":{"opcode":"data_changevariableby","next":"!D","parent":"gY","inputs":{"VALUE":[3,"uV",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"uV":{"opcode":"operator_divide","next":null,"parent":"!B","inputs":{"NUM1":[3,"uW",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"uW":{"opcode":"operator_length","next":null,"parent":"uV","inputs":{"STRING":[3,"a}C",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}C":{"opcode":"argument_reporter_string_number","next":null,"parent":"uW","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"!D":{"opcode":"control_repeat","next":null,"parent":"!B","inputs":{"TIMES":[3,"uX",[6,"0"]],"SUBSTACK":[2,"!E"]},"fields":{},"shadow":false,"topLevel":false},"uX":{"opcode":"operator_divide","next":null,"parent":"!D","inputs":{"NUM1":[3,"uY",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"uY":{"opcode":"operator_length","next":null,"parent":"uX","inputs":{"STRING":[3,"a}D",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}D":{"opcode":"argument_reporter_string_number","next":null,"parent":"uY","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"!E":{"opcode":"data_addtolist","next":"a}E","parent":"!D","inputs":{"ITEM":[3,"uZ",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"uZ":{"opcode":"operator_join","next":null,"parent":"!E","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"!F",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!F":{"opcode":"operator_join","next":null,"parent":"uZ","inputs":{"STRING1":[3,"!G",[10,""]],"STRING2":[3,"!H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!G":{"opcode":"operator_letter_of","next":null,"parent":"!F","inputs":{"LETTER":[3,"a}F",[6,"0"]],"STRING":[3,"a}G",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}F":{"opcode":"operator_add","next":null,"parent":"!G","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a}G":{"opcode":"argument_reporter_string_number","next":null,"parent":"!G","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"!H":{"opcode":"operator_letter_of","next":null,"parent":"!F","inputs":{"LETTER":[3,"a}H",[6,"0"]],"STRING":[3,"a}I",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}H":{"opcode":"operator_add","next":null,"parent":"!H","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a}I":{"opcode":"argument_reporter_string_number","next":null,"parent":"!H","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"a}E":{"opcode":"data_changevariableby","next":null,"parent":"!E","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"!C":{"opcode":"data_changevariableby","next":"gZ","parent":"gY","inputs":{"VALUE":[3,"u!",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"u!":{"opcode":"operator_divide","next":null,"parent":"!C","inputs":{"NUM1":[3,"u#",[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"u#":{"opcode":"operator_length","next":null,"parent":"u!","inputs":{"STRING":[3,"a}J",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}J":{"opcode":"argument_reporter_string_number","next":null,"parent":"u#","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"gZ":{"opcode":"control_repeat","next":null,"parent":"!C","inputs":{"TIMES":[3,"u%",[6,"0"]],"SUBSTACK":[2,"!I"]},"fields":{},"shadow":false,"topLevel":false},"u%":{"opcode":"operator_divide","next":null,"parent":"gZ","inputs":{"NUM1":[3,"V.",[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"V.":{"opcode":"operator_length","next":null,"parent":"u%","inputs":{"STRING":[3,"a}K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}K":{"opcode":"argument_reporter_string_number","next":null,"parent":"V.","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"!I":{"opcode":"data_addtolist","next":"a}L","parent":"gZ","inputs":{"ITEM":[3,"V/",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"V/":{"opcode":"operator_join","next":null,"parent":"!I","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"!J",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!J":{"opcode":"operator_join","next":null,"parent":"V/","inputs":{"STRING1":[3,"Ja",[10,""]],"STRING2":[3,"u(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ja":{"opcode":"operator_letter_of","next":null,"parent":"!J","inputs":{"LETTER":[3,"a}M",[6,"0"]],"STRING":[3,"a}N",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}M":{"opcode":"operator_add","next":null,"parent":"Ja","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a}N":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ja","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"u(":{"opcode":"operator_letter_of","next":null,"parent":"!J","inputs":{"LETTER":[3,"a}O",[6,"0"]],"STRING":[3,"a}P",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}O":{"opcode":"operator_add","next":null,"parent":"u(","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a}P":{"opcode":"argument_reporter_string_number","next":null,"parent":"u(","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"a}L":{"opcode":"data_changevariableby","next":null,"parent":"!I","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"uR":{"opcode":"data_changevariableby","next":"u)","parent":"aY","inputs":{"VALUE":[3,"u*",[4,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"u*":{"opcode":"operator_divide","next":null,"parent":"uR","inputs":{"NUM1":[3,"u+",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"u+":{"opcode":"operator_length","next":null,"parent":"u*","inputs":{"STRING":[3,"a}Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}Q":{"opcode":"argument_reporter_string_number","next":null,"parent":"u+","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"u)":{"opcode":"control_repeat","next":null,"parent":"uR","inputs":{"TIMES":[3,"V:",[6,"0"]],"SUBSTACK":[2,"u,"]},"fields":{},"shadow":false,"topLevel":false},"V:":{"opcode":"operator_divide","next":null,"parent":"u)","inputs":{"NUM1":[3,"V;",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"V;":{"opcode":"operator_length","next":null,"parent":"V:","inputs":{"STRING":[3,"a}R",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}R":{"opcode":"argument_reporter_string_number","next":null,"parent":"V;","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"u,":{"opcode":"data_addtolist","next":"a}S","parent":"u)","inputs":{"ITEM":[3,"V=",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"V=":{"opcode":"operator_join","next":null,"parent":"u,","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"u-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"u-":{"opcode":"operator_join","next":null,"parent":"V=","inputs":{"STRING1":[3,"V?",[10,""]],"STRING2":[3,"u.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"V?":{"opcode":"operator_letter_of","next":null,"parent":"u-","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"a}T",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}T":{"opcode":"argument_reporter_string_number","next":null,"parent":"V?","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"u.":{"opcode":"operator_letter_of","next":null,"parent":"u-","inputs":{"LETTER":[3,"a}U",[6,"0"]],"STRING":[3,"a}V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}U":{"opcode":"operator_add","next":null,"parent":"u.","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}V":{"opcode":"argument_reporter_string_number","next":null,"parent":"u.","inputs":{},"fields":{"VALUE":["rom",null]},"shadow":false,"topLevel":false},"a}S":{"opcode":"data_changevariableby","next":null,"parent":"u,","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"uP":{"opcode":"control_if","next":null,"parent":"aY","inputs":{"CONDITION":[2,"V@"],"SUBSTACK":[2,"u/"]},"fields":{},"shadow":false,"topLevel":false},"V@":{"opcode":"operator_equals","next":null,"parent":"uP","inputs":{"OPERAND1":[3,"a}W",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a}W":{"opcode":"argument_reporter_string_number","next":null,"parent":"V@","inputs":{},"fields":{"VALUE":["flag",null]},"shadow":false,"topLevel":false},"u/":{"opcode":"looks_switchcostumeto","next":"V[","parent":"uP","inputs":{"COSTUME":[1,"a}X"]},"fields":{},"shadow":false,"topLevel":false},"a}X":{"opcode":"looks_costume","next":null,"parent":"u/","inputs":{},"fields":{"COSTUME":["K",null]},"shadow":true,"topLevel":false},"V[":{"opcode":"data_setvariableto","next":"V]","parent":"u/","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"V]":{"opcode":"data_setvariableto","next":"V^","parent":"V[","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"V^":{"opcode":"control_repeat","next":null,"parent":"V]","inputs":{"TIMES":[1,[6,"60"]],"SUBSTACK":[2,"V_"]},"fields":{},"shadow":false,"topLevel":false},"V_":{"opcode":"procedures_call","next":"u:","parent":"V^","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"u:":{"opcode":"data_setvariableto","next":"a}Y","parent":"V_","inputs":{"VALUE":[3,"V`",[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"V`":{"opcode":"operator_join","next":null,"parent":"u:","inputs":{"STRING1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"STRING2":[3,"u;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"u;":{"opcode":"operator_letter_of","next":null,"parent":"V`","inputs":{"LETTER":[3,"a}Z",[6,"0"]],"STRING":[3,[12,"import.ascii","4alDl:(*zINs=KzJfNuw"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}Z":{"opcode":"operator_subtract","next":null,"parent":"u;","inputs":{"NUM1":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"a}Y":{"opcode":"data_changevariableby","next":null,"parent":"u:","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"a}!":{"opcode":"event_whenbroadcastreceived","next":"g!","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_rom","oauq{1.?KIC%2JlgJq^:"]},"shadow":false,"topLevel":true,"x":48,"y":64},"g!":{"opcode":"control_if","next":"u=","parent":"a}!","inputs":{"CONDITION":[2,"a}#"],"SUBSTACK":[2,"u?"]},"fields":{},"shadow":false,"topLevel":false},"a}#":{"opcode":"operator_equals","next":null,"parent":"g!","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"u?":{"opcode":"data_setvariableto","next":"u@","parent":"g!","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"u@":{"opcode":"motion_gotoxy","next":"u[","parent":"u?","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},"u[":{"opcode":"looks_show","next":"u]","parent":"u@","inputs":{},"fields":{},"shadow":false,"topLevel":false},"u]":{"opcode":"looks_gotofrontback","next":"u^","parent":"u[","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"u^":{"opcode":"looks_switchcostumeto","next":"u_","parent":"u]","inputs":{"COSTUME":[1,"a}%"]},"fields":{},"shadow":false,"topLevel":false},"a}%":{"opcode":"looks_costume","next":null,"parent":"u^","inputs":{},"fields":{"COSTUME":["A",null]},"shadow":true,"topLevel":false},"u_":{"opcode":"data_setvariableto","next":"u`","parent":"u^","inputs":{"VALUE":[1,[10," !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~▒∠ā∇√∫Σ▶π\t∂≤≥≠α→←↓↑γδεηθλρστωΔΠΩ■∞ ¡¢£¤¥¦§¨©ª«¬"]]},"fields":{"VARIABLE":["import.ascii","4alDl:(*zINs=KzJfNuw"]},"shadow":false,"topLevel":false},"u`":{"opcode":"microbit_displaySymbol","next":"u{","parent":"u_","inputs":{"MATRIX":[1,"a}("]},"fields":{},"shadow":false,"topLevel":false},"a}(":{"opcode":"matrix","next":null,"parent":"u`","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"u{":{"opcode":"sound_play","next":"cP","parent":"u`","inputs":{"SOUND_MENU":[1,"a})"]},"fields":{},"shadow":false,"topLevel":false},"a})":{"opcode":"sound_sounds_menu","next":null,"parent":"u{","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"cP":{"opcode":"control_wait_until","next":"u|","parent":"u{","inputs":{"CONDITION":[2,"u}"]},"fields":{},"shadow":false,"topLevel":false},"u}":{"opcode":"operator_not","next":null,"parent":"cP","inputs":{"OPERAND":[2,"a}*"]},"fields":{},"shadow":false,"topLevel":false},"a}*":{"opcode":"operator_equals","next":null,"parent":"u}","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"u|":{"opcode":"data_setvariableto","next":"u~","parent":"cP","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"u~":{"opcode":"control_if","next":null,"parent":"u|","inputs":{"CONDITION":[2,"va"],"SUBSTACK":[2,"g#"]},"fields":{},"shadow":false,"topLevel":false},"va":{"opcode":"operator_gt","next":null,"parent":"u~","inputs":{"OPERAND1":[3,"a}+",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a}+":{"opcode":"operator_divide","next":null,"parent":"va","inputs":{"NUM1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"g#":{"opcode":"control_if","next":"g%","parent":"u~","inputs":{"CONDITION":[2,"a},"],"SUBSTACK":[2,"vb"]},"fields":{},"shadow":false,"topLevel":false},"a},":{"opcode":"operator_equals","next":null,"parent":"g#","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},"vb":{"opcode":"looks_switchcostumeto","next":"vc","parent":"g#","inputs":{"COSTUME":[1,"a}-"]},"fields":{},"shadow":false,"topLevel":false},"a}-":{"opcode":"looks_costume","next":null,"parent":"vb","inputs":{},"fields":{"COSTUME":["B",null]},"shadow":true,"topLevel":false},"vc":{"opcode":"sensing_askandwait","next":"vd","parent":"vb","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vd":{"opcode":"control_if","next":null,"parent":"vc","inputs":{"CONDITION":[2,"ve"],"SUBSTACK":[2,"vf"]},"fields":{},"shadow":false,"topLevel":false},"ve":{"opcode":"operator_not","next":null,"parent":"vd","inputs":{"OPERAND":[2,"vg"]},"fields":{},"shadow":false,"topLevel":false},"vg":{"opcode":"operator_equals","next":null,"parent":"ve","inputs":{"OPERAND1":[3,"a}.",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}.":{"opcode":"sensing_answer","next":null,"parent":"vg","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vf":{"opcode":"procedures_call","next":"vh","parent":"vd","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load rom","argumentids":"[]","warp":"true"}},"vh":{"opcode":"sound_play","next":null,"parent":"vf","inputs":{"SOUND_MENU":[1,"a}/"]},"fields":{},"shadow":false,"topLevel":false},"a}/":{"opcode":"sound_sounds_menu","next":null,"parent":"vh","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"g%":{"opcode":"control_if","next":"g(","parent":"g#","inputs":{"CONDITION":[2,"a}:"],"SUBSTACK":[2,"vi"]},"fields":{},"shadow":false,"topLevel":false},"a}:":{"opcode":"operator_equals","next":null,"parent":"g%","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},"vi":{"opcode":"looks_switchcostumeto","next":"vj","parent":"g%","inputs":{"COSTUME":[1,"a};"]},"fields":{},"shadow":false,"topLevel":false},"a};":{"opcode":"looks_costume","next":null,"parent":"vi","inputs":{},"fields":{"COSTUME":["D",null]},"shadow":true,"topLevel":false},"vj":{"opcode":"sensing_askandwait","next":"vk","parent":"vi","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vk":{"opcode":"control_if","next":null,"parent":"vj","inputs":{"CONDITION":[2,"vl"],"SUBSTACK":[2,"vm"]},"fields":{},"shadow":false,"topLevel":false},"vl":{"opcode":"operator_not","next":null,"parent":"vk","inputs":{"OPERAND":[2,"vn"]},"fields":{},"shadow":false,"topLevel":false},"vn":{"opcode":"operator_equals","next":null,"parent":"vl","inputs":{"OPERAND1":[3,"a}=",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}=":{"opcode":"sensing_answer","next":null,"parent":"vn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vm":{"opcode":"procedures_call","next":"vo","parent":"vk","inputs":{"{xi;}X0SqsUaQLC94XCd":[3,"a}?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load NES %s","argumentids":"[\"{xi;}X0SqsUaQLC94XCd\"]","warp":"true"}},"a}?":{"opcode":"sensing_answer","next":null,"parent":"vm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vo":{"opcode":"sound_play","next":null,"parent":"vm","inputs":{"SOUND_MENU":[1,"a}@"]},"fields":{},"shadow":false,"topLevel":false},"a}@":{"opcode":"sound_sounds_menu","next":null,"parent":"vo","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"g(":{"opcode":"control_if","next":"g)","parent":"g%","inputs":{"CONDITION":[2,"a}["],"SUBSTACK":[2,"vp"]},"fields":{},"shadow":false,"topLevel":false},"a}[":{"opcode":"operator_equals","next":null,"parent":"g(","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},"vp":{"opcode":"looks_switchcostumeto","next":"vq","parent":"g(","inputs":{"COSTUME":[1,"a}]"]},"fields":{},"shadow":false,"topLevel":false},"a}]":{"opcode":"looks_costume","next":null,"parent":"vp","inputs":{},"fields":{"COSTUME":["S",null]},"shadow":true,"topLevel":false},"vq":{"opcode":"sensing_askandwait","next":"vr","parent":"vp","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vr":{"opcode":"control_if","next":null,"parent":"vq","inputs":{"CONDITION":[2,"!K"],"SUBSTACK":[2,"vs"]},"fields":{},"shadow":false,"topLevel":false},"!K":{"opcode":"operator_not","next":null,"parent":"vr","inputs":{"OPERAND":[2,"!L"]},"fields":{},"shadow":false,"topLevel":false},"!L":{"opcode":"operator_equals","next":null,"parent":"!K","inputs":{"OPERAND1":[3,"a}^",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a}^":{"opcode":"sensing_answer","next":null,"parent":"!L","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vs":{"opcode":"procedures_call","next":"vt","parent":"vr","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a}_",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a}_":{"opcode":"sensing_answer","next":null,"parent":"vs","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vt":{"opcode":"sound_play","next":"vu","parent":"vs","inputs":{"SOUND_MENU":[1,"a}`"]},"fields":{},"shadow":false,"topLevel":false},"a}`":{"opcode":"sound_sounds_menu","next":null,"parent":"vt","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"vu":{"opcode":"control_if","next":null,"parent":"vt","inputs":{"CONDITION":[2,"V{"],"SUBSTACK":[2,"vv"]},"fields":{},"shadow":false,"topLevel":false},"V{":{"opcode":"operator_equals","next":null,"parent":"vu","inputs":{"OPERAND1":[3,"a}{",[10,""]],"OPERAND2":[1,[10,"200000"]]},"fields":{},"shadow":false,"topLevel":false},"a}{":{"opcode":"data_lengthoflist","next":null,"parent":"V{","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"vv":{"opcode":"looks_switchcostumeto","next":"vw","parent":"vu","inputs":{"COSTUME":[1,"a}|"]},"fields":{},"shadow":false,"topLevel":false},"a}|":{"opcode":"looks_costume","next":null,"parent":"vv","inputs":{},"fields":{"COSTUME":["h",null]},"shadow":true,"topLevel":false},"vw":{"opcode":"control_wait_until","next":"V|","parent":"vv","inputs":{"CONDITION":[2,"{!"]},"fields":{},"shadow":false,"topLevel":false},"{!":{"opcode":"operator_not","next":null,"parent":"vw","inputs":{"OPERAND":[2,"vx"]},"fields":{},"shadow":false,"topLevel":false},"vx":{"opcode":"operator_or","next":null,"parent":"{!","inputs":{"OPERAND1":[2,"{#"],"OPERAND2":[2,"a}}"]},"fields":{},"shadow":false,"topLevel":false},"{#":{"opcode":"sensing_keypressed","next":null,"parent":"vx","inputs":{"KEY_OPTION":[1,"a}~"]},"fields":{},"shadow":false,"topLevel":false},"a}~":{"opcode":"sensing_keyoptions","next":null,"parent":"{#","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a}}":{"opcode":"sensing_mousedown","next":null,"parent":"vx","inputs":{},"fields":{},"shadow":false,"topLevel":false},"V|":{"opcode":"control_wait_until","next":null,"parent":"vw","inputs":{"CONDITION":[2,"vy"]},"fields":{},"shadow":false,"topLevel":false},"vy":{"opcode":"operator_or","next":null,"parent":"V|","inputs":{"OPERAND1":[2,"{%"],"OPERAND2":[2,"a~a"]},"fields":{},"shadow":false,"topLevel":false},"{%":{"opcode":"sensing_keypressed","next":null,"parent":"vy","inputs":{"KEY_OPTION":[1,"a~b"]},"fields":{},"shadow":false,"topLevel":false},"a~b":{"opcode":"sensing_keyoptions","next":null,"parent":"{%","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a~a":{"opcode":"sensing_mousedown","next":null,"parent":"vy","inputs":{},"fields":{},"shadow":false,"topLevel":false},"g)":{"opcode":"control_if","next":"vz","parent":"g(","inputs":{"CONDITION":[2,"vA"],"SUBSTACK":[2,"vB"]},"fields":{},"shadow":false,"topLevel":false},"vA":{"opcode":"operator_or","next":null,"parent":"g)","inputs":{"OPERAND1":[2,"a~c"],"OPERAND2":[2,"a~d"]},"fields":{},"shadow":false,"topLevel":false},"a~c":{"opcode":"operator_equals","next":null,"parent":"vA","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"a~d":{"opcode":"operator_equals","next":null,"parent":"vA","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1200"]]},"fields":{},"shadow":false,"topLevel":false},"vB":{"opcode":"looks_switchcostumeto","next":"V}","parent":"g)","inputs":{"COSTUME":[1,"a~e"]},"fields":{},"shadow":false,"topLevel":false},"a~e":{"opcode":"looks_costume","next":null,"parent":"vB","inputs":{},"fields":{"COSTUME":["T",null]},"shadow":true,"topLevel":false},"V}":{"opcode":"sensing_askandwait","next":"g*","parent":"vB","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"g*":{"opcode":"control_if","next":null,"parent":"V}","inputs":{"CONDITION":[2,"V~"],"SUBSTACK":[2,"Jb"]},"fields":{},"shadow":false,"topLevel":false},"V~":{"opcode":"operator_not","next":null,"parent":"g*","inputs":{"OPERAND":[2,"Wa"]},"fields":{},"shadow":false,"topLevel":false},"Wa":{"opcode":"operator_equals","next":null,"parent":"V~","inputs":{"OPERAND1":[3,"a~f",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~f":{"opcode":"sensing_answer","next":null,"parent":"Wa","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jb":{"opcode":"procedures_call","next":"vC","parent":"g*","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a~g",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a~g":{"opcode":"sensing_answer","next":null,"parent":"Jb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vC":{"opcode":"sound_play","next":"vD","parent":"Jb","inputs":{"SOUND_MENU":[1,"a~h"]},"fields":{},"shadow":false,"topLevel":false},"a~h":{"opcode":"sound_sounds_menu","next":null,"parent":"vC","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"vD":{"opcode":"control_if","next":null,"parent":"vC","inputs":{"CONDITION":[2,"Wb"],"SUBSTACK":[2,"vE"]},"fields":{},"shadow":false,"topLevel":false},"Wb":{"opcode":"operator_equals","next":null,"parent":"vD","inputs":{"OPERAND1":[3,"a~i",[10,""]],"OPERAND2":[1,[10,"200000"]]},"fields":{},"shadow":false,"topLevel":false},"a~i":{"opcode":"data_lengthoflist","next":null,"parent":"Wb","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"vE":{"opcode":"looks_switchcostumeto","next":"vF","parent":"vD","inputs":{"COSTUME":[1,"a~j"]},"fields":{},"shadow":false,"topLevel":false},"a~j":{"opcode":"looks_costume","next":null,"parent":"vE","inputs":{},"fields":{"COSTUME":["h",null]},"shadow":true,"topLevel":false},"vF":{"opcode":"control_wait_until","next":"Wc","parent":"vE","inputs":{"CONDITION":[2,"Wd"]},"fields":{},"shadow":false,"topLevel":false},"Wd":{"opcode":"operator_not","next":null,"parent":"vF","inputs":{"OPERAND":[2,"vG"]},"fields":{},"shadow":false,"topLevel":false},"vG":{"opcode":"operator_or","next":null,"parent":"Wd","inputs":{"OPERAND1":[2,"We"],"OPERAND2":[2,"a~k"]},"fields":{},"shadow":false,"topLevel":false},"We":{"opcode":"sensing_keypressed","next":null,"parent":"vG","inputs":{"KEY_OPTION":[1,"a~l"]},"fields":{},"shadow":false,"topLevel":false},"a~l":{"opcode":"sensing_keyoptions","next":null,"parent":"We","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a~k":{"opcode":"sensing_mousedown","next":null,"parent":"vG","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Wc":{"opcode":"control_wait_until","next":null,"parent":"vF","inputs":{"CONDITION":[2,"vH"]},"fields":{},"shadow":false,"topLevel":false},"vH":{"opcode":"operator_or","next":null,"parent":"Wc","inputs":{"OPERAND1":[2,"Wf"],"OPERAND2":[2,"a~m"]},"fields":{},"shadow":false,"topLevel":false},"Wf":{"opcode":"sensing_keypressed","next":null,"parent":"vH","inputs":{"KEY_OPTION":[1,"a~n"]},"fields":{},"shadow":false,"topLevel":false},"a~n":{"opcode":"sensing_keyoptions","next":null,"parent":"Wf","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a~m":{"opcode":"sensing_mousedown","next":null,"parent":"vH","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vz":{"opcode":"control_if","next":null,"parent":"g)","inputs":{"CONDITION":[2,"a~o"],"SUBSTACK":[2,"vI"]},"fields":{},"shadow":false,"topLevel":false},"a~o":{"opcode":"operator_equals","next":null,"parent":"vz","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1600"]]},"fields":{},"shadow":false,"topLevel":false},"vI":{"opcode":"looks_switchcostumeto","next":"{(","parent":"vz","inputs":{"COSTUME":[1,"a~p"]},"fields":{},"shadow":false,"topLevel":false},"a~p":{"opcode":"looks_costume","next":null,"parent":"vI","inputs":{},"fields":{"COSTUME":["g",null]},"shadow":true,"topLevel":false},"{(":{"opcode":"sensing_askandwait","next":"Jc","parent":"vI","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jc":{"opcode":"control_if_else","next":"{)","parent":"{(","inputs":{"CONDITION":[2,"{*"],"SUBSTACK":[2,"{+"],"SUBSTACK2":[2,"!M"]},"fields":{},"shadow":false,"topLevel":false},"{*":{"opcode":"operator_equals","next":null,"parent":"Jc","inputs":{"OPERAND1":[3,"a~q",[10,""]],"OPERAND2":[1,[10,"split"]]},"fields":{},"shadow":false,"topLevel":false},"a~q":{"opcode":"sensing_answer","next":null,"parent":"{*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"{+":{"opcode":"data_deletealloflist","next":"{,","parent":"Jc","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"{,":{"opcode":"data_setvariableto","next":"{-","parent":"{+","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"{-":{"opcode":"data_setvariableto","next":"!N","parent":"{,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"!N":{"opcode":"looks_switchcostumeto","next":"{.","parent":"{-","inputs":{"COSTUME":[1,"a~r"]},"fields":{},"shadow":false,"topLevel":false},"a~r":{"opcode":"looks_costume","next":null,"parent":"!N","inputs":{},"fields":{"COSTUME":["V",null]},"shadow":true,"topLevel":false},"{.":{"opcode":"control_repeat","next":null,"parent":"!N","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"Wg"]},"fields":{},"shadow":false,"topLevel":false},"Wg":{"opcode":"sensing_askandwait","next":"!O","parent":"{.","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!O":{"opcode":"procedures_call","next":"!P","parent":"Wg","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a~s",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a~s":{"opcode":"sensing_answer","next":null,"parent":"!O","inputs":{},"fields":{},"shadow":false,"topLevel":false},"!P":{"opcode":"sound_play","next":"Wh","parent":"!O","inputs":{"SOUND_MENU":[1,"a~t"]},"fields":{},"shadow":false,"topLevel":false},"a~t":{"opcode":"sound_sounds_menu","next":null,"parent":"!P","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"Wh":{"opcode":"looks_nextcostume","next":"a~u","parent":"!P","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a~u":{"opcode":"data_changevariableby","next":null,"parent":"Wh","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"!M":{"opcode":"control_if","next":null,"parent":"Jc","inputs":{"CONDITION":[2,"Wi"],"SUBSTACK":[2,"Wj"]},"fields":{},"shadow":false,"topLevel":false},"Wi":{"opcode":"operator_gt","next":null,"parent":"!M","inputs":{"OPERAND1":[3,"Wk",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Wk":{"opcode":"operator_length","next":null,"parent":"Wi","inputs":{"STRING":[3,"a~v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~v":{"opcode":"sensing_answer","next":null,"parent":"Wk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Wj":{"opcode":"procedures_call","next":null,"parent":"!M","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,"a~w",[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"a~w":{"opcode":"sensing_answer","next":null,"parent":"Wj","inputs":{},"fields":{},"shadow":false,"topLevel":false},"{)":{"opcode":"sound_play","next":null,"parent":"Jc","inputs":{"SOUND_MENU":[1,"a~x"]},"fields":{},"shadow":false,"topLevel":false},"a~x":{"opcode":"sound_sounds_menu","next":null,"parent":"{)","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"u=":{"opcode":"microbit_displayClear","next":"Wl","parent":"g!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Wl":{"opcode":"data_setvariableto","next":"Wm","parent":"u=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"Wm":{"opcode":"looks_hide","next":"a~y","parent":"Wl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a~y":{"opcode":"data_setvariableto","next":null,"parent":"Wm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"e/":{"opcode":"procedures_definition","next":"vJ","parent":null,"inputs":{"custom_block":[1,"Wn"]},"fields":{},"shadow":false,"topLevel":true,"x":738,"y":3025,"comment":"p)"},"Wn":{"opcode":"procedures_prototype","next":null,"parent":"e/","inputs":{"5+*G8b%WKI.VHxST}.?.":[1,"a~z"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert_b64 %s","argumentids":"[\"5+*G8b%WKI.VHxST}.?.\"]","argumentnames":"[\"code\"]","argumentdefaults":"[\"\"]","warp":"true"}},"a~z":{"opcode":"argument_reporter_string_number","next":null,"parent":"Wn","inputs":{},"fields":{"VALUE":["code",null]},"shadow":true,"topLevel":false},"vJ":{"opcode":"looks_switchcostumeto","next":"Wo","parent":"e/","inputs":{"COSTUME":[1,"a~A"]},"fields":{},"shadow":false,"topLevel":false},"a~A":{"opcode":"looks_costume","next":null,"parent":"vJ","inputs":{},"fields":{"COSTUME":["H",null]},"shadow":true,"topLevel":false},"Wo":{"opcode":"data_setvariableto","next":"!Q","parent":"vJ","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"!Q":{"opcode":"data_setvariableto","next":"!R","parent":"Wo","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"!R":{"opcode":"data_addtolist","next":"g+","parent":"!Q","inputs":{"ITEM":[1,[10,"(1/2) Converting to binary... (0%)"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"g+":{"opcode":"control_repeat","next":"!S","parent":"!R","inputs":{"TIMES":[3,"!T",[6,"0"]],"SUBSTACK":[2,"vK"]},"fields":{},"shadow":false,"topLevel":false},"!T":{"opcode":"operator_length","next":null,"parent":"g+","inputs":{"STRING":[3,"a~B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~B":{"opcode":"argument_reporter_string_number","next":null,"parent":"!T","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"vK":{"opcode":"data_replaceitemoflist","next":"g,","parent":"g+","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[3,"!U",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"!U":{"opcode":"operator_join","next":null,"parent":"vK","inputs":{"STRING1":[1,[10,"(1/2) Converting to binary... ("]],"STRING2":[3,"!V",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!V":{"opcode":"operator_join","next":null,"parent":"!U","inputs":{"STRING1":[3,"!W",[10,""]],"STRING2":[1,[10,"%)"]]},"fields":{},"shadow":false,"topLevel":false},"!W":{"opcode":"operator_mathop","next":null,"parent":"!V","inputs":{"NUM":[3,"!X",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!X":{"opcode":"operator_multiply","next":null,"parent":"!W","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"!Y",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!Y":{"opcode":"operator_divide","next":null,"parent":"!X","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"!Z",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!Z":{"opcode":"operator_length","next":null,"parent":"!Y","inputs":{"STRING":[3,"a~C",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~C":{"opcode":"argument_reporter_string_number","next":null,"parent":"!Z","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"g,":{"opcode":"looks_switchcostumeto","next":"aZ","parent":"vK","inputs":{"COSTUME":[3,"Wp","a~D"]},"fields":{},"shadow":false,"topLevel":false},"Wp":{"opcode":"operator_letter_of","next":null,"parent":"g,","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"a~E",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~E":{"opcode":"argument_reporter_string_number","next":null,"parent":"Wp","inputs":{},"fields":{"VALUE":["code",null]},"shadow":false,"topLevel":false},"a~D":{"opcode":"looks_costume","next":null,"parent":"g,","inputs":{},"fields":{"COSTUME":["R",null]},"shadow":true,"topLevel":false},"aZ":{"opcode":"control_if_else","next":"a!","parent":"g,","inputs":{"CONDITION":[2,"Wq"],"SUBSTACK":[2,"Wr"],"SUBSTACK2":[2,"Ws"]},"fields":{},"shadow":false,"topLevel":false},"Wq":{"opcode":"operator_equals","next":null,"parent":"aZ","inputs":{"OPERAND1":[3,"Wt",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Wt":{"opcode":"operator_mod","next":null,"parent":"Wq","inputs":{"NUM1":[3,"Wu",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Wu":{"opcode":"operator_mathop","next":null,"parent":"Wt","inputs":{"NUM":[3,"Wv",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Wv":{"opcode":"operator_divide","next":null,"parent":"Wu","inputs":{"NUM1":[3,"Ww",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Ww":{"opcode":"operator_subtract","next":null,"parent":"Wv","inputs":{"NUM1":[3,"a~F",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~F":{"opcode":"looks_costumenumbername","next":null,"parent":"Ww","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Wr":{"opcode":"data_setvariableto","next":null,"parent":"aZ","inputs":{"VALUE":[3,"a~G",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~G":{"opcode":"operator_join","next":null,"parent":"Wr","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ws":{"opcode":"data_setvariableto","next":null,"parent":"aZ","inputs":{"VALUE":[3,"a~H",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~H":{"opcode":"operator_join","next":null,"parent":"Ws","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!":{"opcode":"control_if_else","next":"a#","parent":"aZ","inputs":{"CONDITION":[2,"Wx"],"SUBSTACK":[2,"Wy"],"SUBSTACK2":[2,"Wz"]},"fields":{},"shadow":false,"topLevel":false},"Wx":{"opcode":"operator_equals","next":null,"parent":"a!","inputs":{"OPERAND1":[3,"WA",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WA":{"opcode":"operator_mod","next":null,"parent":"Wx","inputs":{"NUM1":[3,"WB",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"WB":{"opcode":"operator_mathop","next":null,"parent":"WA","inputs":{"NUM":[3,"WC",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WC":{"opcode":"operator_divide","next":null,"parent":"WB","inputs":{"NUM1":[3,"WD",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"WD":{"opcode":"operator_subtract","next":null,"parent":"WC","inputs":{"NUM1":[3,"a~I",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~I":{"opcode":"looks_costumenumbername","next":null,"parent":"WD","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"Wy":{"opcode":"data_setvariableto","next":null,"parent":"a!","inputs":{"VALUE":[3,"a~J",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~J":{"opcode":"operator_join","next":null,"parent":"Wy","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Wz":{"opcode":"data_setvariableto","next":null,"parent":"a!","inputs":{"VALUE":[3,"a~K",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~K":{"opcode":"operator_join","next":null,"parent":"Wz","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a#":{"opcode":"control_if_else","next":"aB","parent":"a!","inputs":{"CONDITION":[2,"WE"],"SUBSTACK":[2,"WF"],"SUBSTACK2":[2,"WG"]},"fields":{},"shadow":false,"topLevel":false},"WE":{"opcode":"operator_equals","next":null,"parent":"a#","inputs":{"OPERAND1":[3,"WH",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WH":{"opcode":"operator_mod","next":null,"parent":"WE","inputs":{"NUM1":[3,"WI",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"WI":{"opcode":"operator_mathop","next":null,"parent":"WH","inputs":{"NUM":[3,"WJ",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WJ":{"opcode":"operator_divide","next":null,"parent":"WI","inputs":{"NUM1":[3,"WK",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"WK":{"opcode":"operator_subtract","next":null,"parent":"WJ","inputs":{"NUM1":[3,"a~L",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~L":{"opcode":"looks_costumenumbername","next":null,"parent":"WK","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"WF":{"opcode":"data_setvariableto","next":null,"parent":"a#","inputs":{"VALUE":[3,"a~M",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~M":{"opcode":"operator_join","next":null,"parent":"WF","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WG":{"opcode":"data_setvariableto","next":null,"parent":"a#","inputs":{"VALUE":[3,"a~N",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~N":{"opcode":"operator_join","next":null,"parent":"WG","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aB":{"opcode":"control_if_else","next":"g-","parent":"a#","inputs":{"CONDITION":[2,"WL"],"SUBSTACK":[2,"WM"],"SUBSTACK2":[2,"WN"]},"fields":{},"shadow":false,"topLevel":false},"WL":{"opcode":"operator_equals","next":null,"parent":"aB","inputs":{"OPERAND1":[3,"WO",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WO":{"opcode":"operator_mod","next":null,"parent":"WL","inputs":{"NUM1":[3,"WP",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"WP":{"opcode":"operator_mathop","next":null,"parent":"WO","inputs":{"NUM":[3,"WQ",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WQ":{"opcode":"operator_divide","next":null,"parent":"WP","inputs":{"NUM1":[3,"WR",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"WR":{"opcode":"operator_subtract","next":null,"parent":"WQ","inputs":{"NUM1":[3,"a~O",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~O":{"opcode":"looks_costumenumbername","next":null,"parent":"WR","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"WM":{"opcode":"data_setvariableto","next":null,"parent":"aB","inputs":{"VALUE":[3,"a~P",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~P":{"opcode":"operator_join","next":null,"parent":"WM","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WN":{"opcode":"data_setvariableto","next":null,"parent":"aB","inputs":{"VALUE":[3,"a~Q",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~Q":{"opcode":"operator_join","next":null,"parent":"WN","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"g-":{"opcode":"control_if_else","next":"g.","parent":"aB","inputs":{"CONDITION":[2,"WS"],"SUBSTACK":[2,"WT"],"SUBSTACK2":[2,"WU"]},"fields":{},"shadow":false,"topLevel":false},"WS":{"opcode":"operator_equals","next":null,"parent":"g-","inputs":{"OPERAND1":[3,"WV",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WV":{"opcode":"operator_mod","next":null,"parent":"WS","inputs":{"NUM1":[3,"WW",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"WW":{"opcode":"operator_mathop","next":null,"parent":"WV","inputs":{"NUM":[3,"WX",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"WX":{"opcode":"operator_divide","next":null,"parent":"WW","inputs":{"NUM1":[3,"WY",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"WY":{"opcode":"operator_subtract","next":null,"parent":"WX","inputs":{"NUM1":[3,"a~R",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~R":{"opcode":"looks_costumenumbername","next":null,"parent":"WY","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"WT":{"opcode":"data_setvariableto","next":null,"parent":"g-","inputs":{"VALUE":[3,"a~S",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~S":{"opcode":"operator_join","next":null,"parent":"WT","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"WU":{"opcode":"data_setvariableto","next":null,"parent":"g-","inputs":{"VALUE":[3,"a~T",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~T":{"opcode":"operator_join","next":null,"parent":"WU","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"g.":{"opcode":"control_if_else","next":"a~U","parent":"g-","inputs":{"CONDITION":[2,"WZ"],"SUBSTACK":[2,"W!"],"SUBSTACK2":[2,"W#"]},"fields":{},"shadow":false,"topLevel":false},"WZ":{"opcode":"operator_equals","next":null,"parent":"g.","inputs":{"OPERAND1":[3,"W%",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W%":{"opcode":"operator_mod","next":null,"parent":"WZ","inputs":{"NUM1":[3,"W(",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"W(":{"opcode":"operator_subtract","next":null,"parent":"W%","inputs":{"NUM1":[3,"a~V",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~V":{"opcode":"looks_costumenumbername","next":null,"parent":"W(","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"W!":{"opcode":"data_setvariableto","next":null,"parent":"g.","inputs":{"VALUE":[3,"a~W",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~W":{"opcode":"operator_join","next":null,"parent":"W!","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W#":{"opcode":"data_setvariableto","next":null,"parent":"g.","inputs":{"VALUE":[3,"a~X",[10,""]]},"fields":{"VARIABLE":["import.binary","^agx?=rasT|:*cBkFdeB"]},"shadow":false,"topLevel":false},"a~X":{"opcode":"operator_join","next":null,"parent":"W#","inputs":{"STRING1":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a~U":{"opcode":"data_changevariableby","next":null,"parent":"g.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"!S":{"opcode":"data_deletealloflist","next":"W)","parent":"g+","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"W)":{"opcode":"data_setvariableto","next":"W*","parent":"!S","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"W*":{"opcode":"data_addtolist","next":"W+","parent":"W)","inputs":{"ITEM":[1,[10,"(2/2) Importing rom... (0%)"]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"W+":{"opcode":"data_setvariableto","next":"g/","parent":"W*","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"g/":{"opcode":"control_repeat","next":"a~Y","parent":"W+","inputs":{"TIMES":[3,"W,",[6,"0"]],"SUBSTACK":[2,"vL"]},"fields":{},"shadow":false,"topLevel":false},"W,":{"opcode":"operator_divide","next":null,"parent":"g/","inputs":{"NUM1":[3,"a~Z",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a~Z":{"opcode":"operator_length","next":null,"parent":"W,","inputs":{"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vL":{"opcode":"data_replaceitemoflist","next":"vM","parent":"g/","inputs":{"INDEX":[1,[7,"last"]],"ITEM":[3,"!!",[10,""]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"!!":{"opcode":"operator_join","next":null,"parent":"vL","inputs":{"STRING1":[1,[10,"(2/2) Importing rom... ("]],"STRING2":[3,"!#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!#":{"opcode":"operator_join","next":null,"parent":"!!","inputs":{"STRING1":[3,"!%",[10,""]],"STRING2":[1,[10,"%)"]]},"fields":{},"shadow":false,"topLevel":false},"!%":{"opcode":"operator_mathop","next":null,"parent":"!#","inputs":{"NUM":[3,"!(",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"!(":{"opcode":"operator_multiply","next":null,"parent":"!%","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"!)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!)":{"opcode":"operator_divide","next":null,"parent":"!(","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"a~!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a~!":{"opcode":"operator_length","next":null,"parent":"!)","inputs":{"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vM":{"opcode":"data_addtolist","next":"a~#","parent":"vL","inputs":{"ITEM":[3,"vN",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"vN":{"opcode":"operator_add","next":null,"parent":"vM","inputs":{"NUM1":[3,"vO",[4,"0"]],"NUM2":[3,"vP",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vO":{"opcode":"operator_add","next":null,"parent":"vN","inputs":{"NUM1":[3,"vQ",[4,"0"]],"NUM2":[3,"vR",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vQ":{"opcode":"operator_add","next":null,"parent":"vO","inputs":{"NUM1":[3,"!*",[4,"0"]],"NUM2":[3,"!+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!*":{"opcode":"operator_multiply","next":null,"parent":"vQ","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,"a~%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a~%":{"opcode":"operator_letter_of","next":null,"parent":"!*","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!+":{"opcode":"operator_multiply","next":null,"parent":"vQ","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"!,",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!,":{"opcode":"operator_letter_of","next":null,"parent":"!+","inputs":{"LETTER":[3,"a~(",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~(":{"opcode":"operator_add","next":null,"parent":"!,","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vR":{"opcode":"operator_add","next":null,"parent":"vO","inputs":{"NUM1":[3,"!-",[4,"0"]],"NUM2":[3,"!.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!-":{"opcode":"operator_multiply","next":null,"parent":"vR","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"!/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!/":{"opcode":"operator_letter_of","next":null,"parent":"!-","inputs":{"LETTER":[3,"a~)",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~)":{"opcode":"operator_add","next":null,"parent":"!/","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"!.":{"opcode":"operator_multiply","next":null,"parent":"vR","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"!:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!:":{"opcode":"operator_letter_of","next":null,"parent":"!.","inputs":{"LETTER":[3,"a~*",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~*":{"opcode":"operator_add","next":null,"parent":"!:","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"vP":{"opcode":"operator_add","next":null,"parent":"vN","inputs":{"NUM1":[3,"vS",[4,"0"]],"NUM2":[3,"vT",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vS":{"opcode":"operator_add","next":null,"parent":"vP","inputs":{"NUM1":[3,"!;",[4,"0"]],"NUM2":[3,"!=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!;":{"opcode":"operator_multiply","next":null,"parent":"vS","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"!?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!?":{"opcode":"operator_letter_of","next":null,"parent":"!;","inputs":{"LETTER":[3,"a~+",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~+":{"opcode":"operator_add","next":null,"parent":"!?","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"!=":{"opcode":"operator_multiply","next":null,"parent":"vS","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"!@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!@":{"opcode":"operator_letter_of","next":null,"parent":"!=","inputs":{"LETTER":[3,"a~,",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~,":{"opcode":"operator_add","next":null,"parent":"!@","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"vT":{"opcode":"operator_add","next":null,"parent":"vP","inputs":{"NUM1":[3,"![",[4,"0"]],"NUM2":[3,"!]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"![":{"opcode":"operator_multiply","next":null,"parent":"vT","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"!^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"!^":{"opcode":"operator_letter_of","next":null,"parent":"![","inputs":{"LETTER":[3,"a~-",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~-":{"opcode":"operator_add","next":null,"parent":"!^","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"!]":{"opcode":"operator_letter_of","next":null,"parent":"vT","inputs":{"LETTER":[3,"a~.",[6,"0"]],"STRING":[3,[12,"import.binary","^agx?=rasT|:*cBkFdeB"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~.":{"opcode":"operator_add","next":null,"parent":"!]","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"a~#":{"opcode":"data_changevariableby","next":null,"parent":"vM","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"a~Y":{"opcode":"data_addtolist","next":null,"parent":"g/","inputs":{"ITEM":[1,[10,"Import complete."]]},"fields":{"LIST":["MainHello","8Tw(LA8~j_|@CGcGVjif"]},"shadow":false,"topLevel":false},"e:":{"opcode":"procedures_definition","next":"vU","parent":null,"inputs":{"custom_block":[1,"a~/"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":4344,"comment":"p*"},"a~/":{"opcode":"procedures_prototype","next":null,"parent":"e:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load rom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"vU":{"opcode":"looks_switchcostumeto","next":"{/","parent":"e:","inputs":{"COSTUME":[1,"a~:"]},"fields":{},"shadow":false,"topLevel":false},"a~:":{"opcode":"looks_costume","next":null,"parent":"vU","inputs":{},"fields":{"COSTUME":["M",null]},"shadow":true,"topLevel":false},"{/":{"opcode":"data_showvariable","next":"g:","parent":"vU","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"g:":{"opcode":"control_if","next":"vV","parent":"{/","inputs":{"CONDITION":[2,"{:"],"SUBSTACK":[2,"{;"]},"fields":{},"shadow":false,"topLevel":false},"{:":{"opcode":"operator_not","next":null,"parent":"g:","inputs":{"OPERAND":[2,"{="]},"fields":{},"shadow":false,"topLevel":false},"{=":{"opcode":"operator_equals","next":null,"parent":"{:","inputs":{"OPERAND1":[3,"a~;",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~;":{"opcode":"sensing_answer","next":null,"parent":"{=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"{;":{"opcode":"data_deletealloflist","next":"W-","parent":"g:","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"W-":{"opcode":"control_if_else","next":null,"parent":"{;","inputs":{"CONDITION":[2,"{?"],"SUBSTACK":[2,"{@"],"SUBSTACK2":[2,"{["]},"fields":{},"shadow":false,"topLevel":false},"{?":{"opcode":"operator_equals","next":null,"parent":"W-","inputs":{"OPERAND1":[3,"{]",[10,""]],"OPERAND2":[1,[10,"x"]]},"fields":{},"shadow":false,"topLevel":false},"{]":{"opcode":"operator_letter_of","next":null,"parent":"{?","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,"a~=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~=":{"opcode":"sensing_answer","next":null,"parent":"{]","inputs":{},"fields":{},"shadow":false,"topLevel":false},"{@":{"opcode":"data_setvariableto","next":"vW","parent":"W-","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"vW":{"opcode":"control_repeat","next":null,"parent":"{@","inputs":{"TIMES":[3,"{^",[6,"0"]],"SUBSTACK":[2,"vX"]},"fields":{},"shadow":false,"topLevel":false},"{^":{"opcode":"operator_divide","next":null,"parent":"vW","inputs":{"NUM1":[3,"{_",[4,"0"]],"NUM2":[1,[4,"24"]]},"fields":{},"shadow":false,"topLevel":false},"{_":{"opcode":"operator_length","next":null,"parent":"{^","inputs":{"STRING":[3,"a~?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~?":{"opcode":"sensing_answer","next":null,"parent":"{_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vX":{"opcode":"data_addtolist","next":"vY","parent":"vW","inputs":{"ITEM":[3,"{`",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"{`":{"opcode":"operator_round","next":null,"parent":"vX","inputs":{"NUM":[3,"{{",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"{{":{"opcode":"operator_join","next":null,"parent":"{`","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"vZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vZ":{"opcode":"operator_join","next":null,"parent":"{{","inputs":{"STRING1":[3,"v!",[10,""]],"STRING2":[3,"v#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v!":{"opcode":"operator_join","next":null,"parent":"vZ","inputs":{"STRING1":[3,"v%",[10,""]],"STRING2":[3,"v(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v%":{"opcode":"operator_join","next":null,"parent":"v!","inputs":{"STRING1":[3,"v)",[10,""]],"STRING2":[3,"v*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v)":{"opcode":"operator_letter_of","next":null,"parent":"v%","inputs":{"LETTER":[3,"a~@",[6,"0"]],"STRING":[3,"a~[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~@":{"opcode":"operator_add","next":null,"parent":"v)","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a~[":{"opcode":"sensing_answer","next":null,"parent":"v)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v*":{"opcode":"operator_letter_of","next":null,"parent":"v%","inputs":{"LETTER":[3,"a~]",[6,"0"]],"STRING":[3,"a~^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~]":{"opcode":"operator_add","next":null,"parent":"v*","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a~^":{"opcode":"sensing_answer","next":null,"parent":"v*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v(":{"opcode":"operator_join","next":null,"parent":"v!","inputs":{"STRING1":[3,"v+",[10,""]],"STRING2":[3,"v,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v+":{"opcode":"operator_letter_of","next":null,"parent":"v(","inputs":{"LETTER":[3,"a~_",[6,"0"]],"STRING":[3,"a~`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~_":{"opcode":"operator_add","next":null,"parent":"v+","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a~`":{"opcode":"sensing_answer","next":null,"parent":"v+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v,":{"opcode":"operator_letter_of","next":null,"parent":"v(","inputs":{"LETTER":[3,"a~{",[6,"0"]],"STRING":[3,"a~|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~{":{"opcode":"operator_add","next":null,"parent":"v,","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a~|":{"opcode":"sensing_answer","next":null,"parent":"v,","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v#":{"opcode":"operator_join","next":null,"parent":"vZ","inputs":{"STRING1":[3,"v-",[10,""]],"STRING2":[3,"v.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v-":{"opcode":"operator_join","next":null,"parent":"v#","inputs":{"STRING1":[3,"v/",[10,""]],"STRING2":[3,"v:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v/":{"opcode":"operator_letter_of","next":null,"parent":"v-","inputs":{"LETTER":[3,"a~}",[6,"0"]],"STRING":[3,"a~~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a~}":{"opcode":"operator_add","next":null,"parent":"v/","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a~~":{"opcode":"sensing_answer","next":null,"parent":"v/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v:":{"opcode":"operator_letter_of","next":null,"parent":"v-","inputs":{"LETTER":[3,"baa",[6,"0"]],"STRING":[3,"bab",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baa":{"opcode":"operator_add","next":null,"parent":"v:","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bab":{"opcode":"sensing_answer","next":null,"parent":"v:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v.":{"opcode":"operator_join","next":null,"parent":"v#","inputs":{"STRING1":[3,"v;",[10,""]],"STRING2":[3,"v=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v;":{"opcode":"operator_letter_of","next":null,"parent":"v.","inputs":{"LETTER":[3,"bac",[6,"0"]],"STRING":[3,"bad",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bac":{"opcode":"operator_add","next":null,"parent":"v;","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"20"]]},"fields":{},"shadow":false,"topLevel":false},"bad":{"opcode":"sensing_answer","next":null,"parent":"v;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"v=":{"opcode":"operator_letter_of","next":null,"parent":"v.","inputs":{"LETTER":[3,"bae",[6,"0"]],"STRING":[3,"baf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bae":{"opcode":"operator_add","next":null,"parent":"v=","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"21"]]},"fields":{},"shadow":false,"topLevel":false},"baf":{"opcode":"sensing_answer","next":null,"parent":"v=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vY":{"opcode":"data_setvariableto","next":"bag","parent":"vX","inputs":{"VALUE":[3,"{|",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"{|":{"opcode":"operator_join","next":null,"parent":"vY","inputs":{"STRING1":[1,[10,"Importing ROM as list... "]],"STRING2":[3,"{}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"{}":{"opcode":"operator_join","next":null,"parent":"{|","inputs":{"STRING1":[3,"{~",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"{~":{"opcode":"operator_divide","next":null,"parent":"{}","inputs":{"NUM1":[3,"|a",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"|a":{"opcode":"operator_round","next":null,"parent":"{~","inputs":{"NUM":[3,"|b",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|b":{"opcode":"operator_multiply","next":null,"parent":"|a","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"|c",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|c":{"opcode":"operator_divide","next":null,"parent":"|b","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"|d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|d":{"opcode":"operator_length","next":null,"parent":"|c","inputs":{"STRING":[3,"bah",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bah":{"opcode":"sensing_answer","next":null,"parent":"|d","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bag":{"opcode":"data_changevariableby","next":null,"parent":"vY","inputs":{"VALUE":[1,[4,"24"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"{[":{"opcode":"data_setvariableto","next":"!_","parent":"W-","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"!_":{"opcode":"control_repeat","next":null,"parent":"{[","inputs":{"TIMES":[3,"|e",[6,"0"]],"SUBSTACK":[2,"!`"]},"fields":{},"shadow":false,"topLevel":false},"|e":{"opcode":"operator_divide","next":null,"parent":"!_","inputs":{"NUM1":[3,"|f",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"|f":{"opcode":"operator_length","next":null,"parent":"|e","inputs":{"STRING":[3,"bai",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bai":{"opcode":"sensing_answer","next":null,"parent":"|f","inputs":{},"fields":{},"shadow":false,"topLevel":false},"!`":{"opcode":"data_addtolist","next":"!{","parent":"!_","inputs":{"ITEM":[3,"|g",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"|g":{"opcode":"operator_round","next":null,"parent":"!`","inputs":{"NUM":[3,"|h",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"|h":{"opcode":"operator_join","next":null,"parent":"|g","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"!|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!|":{"opcode":"operator_join","next":null,"parent":"|h","inputs":{"STRING1":[3,"!}",[10,""]],"STRING2":[3,"!~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"!}":{"opcode":"operator_join","next":null,"parent":"!|","inputs":{"STRING1":[3,"#a",[10,""]],"STRING2":[3,"Jd",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#a":{"opcode":"operator_join","next":null,"parent":"!}","inputs":{"STRING1":[3,"|i",[10,""]],"STRING2":[3,"Je",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|i":{"opcode":"operator_letter_of","next":null,"parent":"#a","inputs":{"LETTER":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[6,"0"]],"STRING":[3,"baj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baj":{"opcode":"sensing_answer","next":null,"parent":"|i","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Je":{"opcode":"operator_letter_of","next":null,"parent":"#a","inputs":{"LETTER":[3,"bak",[6,"0"]],"STRING":[3,"bal",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bak":{"opcode":"operator_add","next":null,"parent":"Je","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bal":{"opcode":"sensing_answer","next":null,"parent":"Je","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jd":{"opcode":"operator_join","next":null,"parent":"!}","inputs":{"STRING1":[3,"Jf",[10,""]],"STRING2":[3,"Jg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jf":{"opcode":"operator_letter_of","next":null,"parent":"Jd","inputs":{"LETTER":[3,"bam",[6,"0"]],"STRING":[3,"ban",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bam":{"opcode":"operator_add","next":null,"parent":"Jf","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ban":{"opcode":"sensing_answer","next":null,"parent":"Jf","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jg":{"opcode":"operator_letter_of","next":null,"parent":"Jd","inputs":{"LETTER":[3,"bao",[6,"0"]],"STRING":[3,"bap",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bao":{"opcode":"operator_add","next":null,"parent":"Jg","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bap":{"opcode":"sensing_answer","next":null,"parent":"Jg","inputs":{},"fields":{},"shadow":false,"topLevel":false},"!~":{"opcode":"operator_join","next":null,"parent":"!|","inputs":{"STRING1":[3,"Jh",[10,""]],"STRING2":[3,"Ji",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jh":{"opcode":"operator_join","next":null,"parent":"!~","inputs":{"STRING1":[3,"Jj",[10,""]],"STRING2":[3,"Jk",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jj":{"opcode":"operator_letter_of","next":null,"parent":"Jh","inputs":{"LETTER":[3,"baq",[6,"0"]],"STRING":[3,"bar",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baq":{"opcode":"operator_add","next":null,"parent":"Jj","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bar":{"opcode":"sensing_answer","next":null,"parent":"Jj","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jk":{"opcode":"operator_letter_of","next":null,"parent":"Jh","inputs":{"LETTER":[3,"bas",[6,"0"]],"STRING":[3,"bat",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bas":{"opcode":"operator_add","next":null,"parent":"Jk","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bat":{"opcode":"sensing_answer","next":null,"parent":"Jk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Ji":{"opcode":"operator_join","next":null,"parent":"!~","inputs":{"STRING1":[3,"Jl",[10,""]],"STRING2":[3,"Jm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jl":{"opcode":"operator_letter_of","next":null,"parent":"Ji","inputs":{"LETTER":[3,"bau",[6,"0"]],"STRING":[3,"bav",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bau":{"opcode":"operator_add","next":null,"parent":"Jl","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bav":{"opcode":"sensing_answer","next":null,"parent":"Jl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jm":{"opcode":"operator_letter_of","next":null,"parent":"Ji","inputs":{"LETTER":[3,"baw",[6,"0"]],"STRING":[3,"bax",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baw":{"opcode":"operator_add","next":null,"parent":"Jm","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bax":{"opcode":"sensing_answer","next":null,"parent":"Jm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"!{":{"opcode":"data_setvariableto","next":"bay","parent":"!`","inputs":{"VALUE":[3,"|j",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"|j":{"opcode":"operator_join","next":null,"parent":"!{","inputs":{"STRING1":[1,[10,"Importing ROM as list... "]],"STRING2":[3,"|k",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|k":{"opcode":"operator_join","next":null,"parent":"|j","inputs":{"STRING1":[3,"|l",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"|l":{"opcode":"operator_divide","next":null,"parent":"|k","inputs":{"NUM1":[3,"|m",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"|m":{"opcode":"operator_round","next":null,"parent":"|l","inputs":{"NUM":[3,"|n",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|n":{"opcode":"operator_multiply","next":null,"parent":"|m","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"|o",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|o":{"opcode":"operator_divide","next":null,"parent":"|n","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,"|p",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|p":{"opcode":"operator_length","next":null,"parent":"|o","inputs":{"STRING":[3,"baz",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baz":{"opcode":"sensing_answer","next":null,"parent":"|p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bay":{"opcode":"data_changevariableby","next":null,"parent":"!{","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"vV":{"opcode":"looks_switchcostumeto","next":"|q","parent":"g:","inputs":{"COSTUME":[1,"baA"]},"fields":{},"shadow":false,"topLevel":false},"baA":{"opcode":"looks_costume","next":null,"parent":"vV","inputs":{},"fields":{"COSTUME":["N",null]},"shadow":true,"topLevel":false},"|q":{"opcode":"data_deletealloflist","next":"|r","parent":"vV","inputs":{},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"|r":{"opcode":"procedures_call","next":"|s","parent":"|q","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"|s":{"opcode":"data_setvariableto","next":"|t","parent":"|r","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"|t":{"opcode":"procedures_call","next":"|u","parent":"|s","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x2C"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"|u":{"opcode":"data_setvariableto","next":"#b","parent":"|t","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"#b":{"opcode":"looks_switchcostumeto","next":"W.","parent":"|u","inputs":{"COSTUME":[1,"baB"]},"fields":{},"shadow":false,"topLevel":false},"baB":{"opcode":"looks_costume","next":null,"parent":"#b","inputs":{},"fields":{"COSTUME":["O",null]},"shadow":true,"topLevel":false},"W.":{"opcode":"control_repeat","next":"#c","parent":"#b","inputs":{"TIMES":[3,"baC",[6,"0"]],"SUBSTACK":[2,"|v"]},"fields":{},"shadow":false,"topLevel":false},"baC":{"opcode":"operator_divide","next":null,"parent":"W.","inputs":{"NUM1":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|v":{"opcode":"data_setvariableto","next":"#d","parent":"W.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"#d":{"opcode":"control_repeat","next":"|w","parent":"|v","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"|x"]},"fields":{},"shadow":false,"topLevel":false},"|x":{"opcode":"procedures_call","next":"v?","parent":"#d","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"v?":{"opcode":"data_setvariableto","next":"baD","parent":"|x","inputs":{"VALUE":[3,"|y",[10,""]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"|y":{"opcode":"operator_add","next":null,"parent":"v?","inputs":{"NUM1":[3,"baE",[4,"0"]],"NUM2":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baE":{"opcode":"operator_multiply","next":null,"parent":"|y","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baD":{"opcode":"data_changevariableby","next":null,"parent":"v?","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"|w":{"opcode":"data_addtolist","next":"|z","parent":"#d","inputs":{"ITEM":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[10,""]]},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"|z":{"opcode":"data_setvariableto","next":null,"parent":"|w","inputs":{"VALUE":[3,"|A",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"|A":{"opcode":"operator_join","next":null,"parent":"|z","inputs":{"STRING1":[1,[10,"Importing ARM9 ROM... "]],"STRING2":[3,"|B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|B":{"opcode":"operator_join","next":null,"parent":"|A","inputs":{"STRING1":[3,"|C",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"|C":{"opcode":"operator_divide","next":null,"parent":"|B","inputs":{"NUM1":[3,"|D",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"|D":{"opcode":"operator_round","next":null,"parent":"|C","inputs":{"NUM":[3,"|E",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|E":{"opcode":"operator_multiply","next":null,"parent":"|D","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"baF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baF":{"opcode":"operator_divide","next":null,"parent":"|E","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#c":{"opcode":"looks_switchcostumeto","next":"|F","parent":"W.","inputs":{"COSTUME":[1,"baG"]},"fields":{},"shadow":false,"topLevel":false},"baG":{"opcode":"looks_costume","next":null,"parent":"#c","inputs":{},"fields":{"COSTUME":["P",null]},"shadow":true,"topLevel":false},"|F":{"opcode":"data_deletealloflist","next":"|G","parent":"#c","inputs":{},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},"|G":{"opcode":"procedures_call","next":"|H","parent":"|F","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"|H":{"opcode":"data_setvariableto","next":"|I","parent":"|G","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"|I":{"opcode":"procedures_call","next":"|J","parent":"|H","inputs":{"mh16gMd9J:)`S?jE;I7f":[1,[10,"0x3C"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"|J":{"opcode":"data_setvariableto","next":"v@","parent":"|I","inputs":{"VALUE":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[10,""]]},"fields":{"VARIABLE":["import.rom_length","zsxII[X,wz?xvCvofbsI"]},"shadow":false,"topLevel":false},"v@":{"opcode":"looks_switchcostumeto","next":"W/","parent":"|J","inputs":{"COSTUME":[1,"baH"]},"fields":{},"shadow":false,"topLevel":false},"baH":{"opcode":"looks_costume","next":null,"parent":"v@","inputs":{},"fields":{"COSTUME":["Q",null]},"shadow":true,"topLevel":false},"W/":{"opcode":"control_repeat","next":"v[","parent":"v@","inputs":{"TIMES":[3,"baI",[6,"0"]],"SUBSTACK":[2,"|K"]},"fields":{},"shadow":false,"topLevel":false},"baI":{"opcode":"operator_divide","next":null,"parent":"W/","inputs":{"NUM1":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"|K":{"opcode":"data_setvariableto","next":"v]","parent":"W/","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"v]":{"opcode":"control_repeat","next":"|L","parent":"|K","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"|M"]},"fields":{},"shadow":false,"topLevel":false},"|M":{"opcode":"procedures_call","next":"v^","parent":"v]","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"v^":{"opcode":"data_setvariableto","next":"baJ","parent":"|M","inputs":{"VALUE":[3,"|N",[10,""]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"|N":{"opcode":"operator_add","next":null,"parent":"v^","inputs":{"NUM1":[3,"baK",[4,"0"]],"NUM2":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baK":{"opcode":"operator_multiply","next":null,"parent":"|N","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baJ":{"opcode":"data_changevariableby","next":null,"parent":"v^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"|L":{"opcode":"data_addtolist","next":"|O","parent":"v]","inputs":{"ITEM":[3,[12,"import.dummy","LihSp{MQuQGg`jIcI]x("],[10,""]]},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},"|O":{"opcode":"data_setvariableto","next":null,"parent":"|L","inputs":{"VALUE":[3,"|P",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"|P":{"opcode":"operator_join","next":null,"parent":"|O","inputs":{"STRING1":[1,[10,"Importing ARM7 ROM... "]],"STRING2":[3,"|Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|Q":{"opcode":"operator_join","next":null,"parent":"|P","inputs":{"STRING1":[3,"|R",[10,""]],"STRING2":[1,[10,"%"]]},"fields":{},"shadow":false,"topLevel":false},"|R":{"opcode":"operator_divide","next":null,"parent":"|Q","inputs":{"NUM1":[3,"|S",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"|S":{"opcode":"operator_round","next":null,"parent":"|R","inputs":{"NUM":[3,"|T",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"|T":{"opcode":"operator_multiply","next":null,"parent":"|S","inputs":{"NUM1":[1,[4,"1000"]],"NUM2":[3,"baL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"baL":{"opcode":"operator_divide","next":null,"parent":"|T","inputs":{"NUM1":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[4,"0"]],"NUM2":[3,[12,"import.rom_length","zsxII[X,wz?xvCvofbsI"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"v[":{"opcode":"looks_switchcostumeto","next":"|U","parent":"W/","inputs":{"COSTUME":[1,"baM"]},"fields":{},"shadow":false,"topLevel":false},"baM":{"opcode":"looks_costume","next":null,"parent":"v[","inputs":{},"fields":{"COSTUME":["R",null]},"shadow":true,"topLevel":false},"|U":{"opcode":"data_setvariableto","next":"|V","parent":"v[","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["import.dummy","LihSp{MQuQGg`jIcI]x("]},"shadow":false,"topLevel":false},"|V":{"opcode":"data_setvariableto","next":"|W","parent":"|U","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"|W":{"opcode":"data_setvariableto","next":"v_","parent":"|V","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"v_":{"opcode":"control_repeat","next":"baN","parent":"|W","inputs":{"TIMES":[1,[6,"12"]],"SUBSTACK":[2,"|X"]},"fields":{},"shadow":false,"topLevel":false},"|X":{"opcode":"procedures_call","next":"v`","parent":"v_","inputs":{"mh16gMd9J:)`S?jE;I7f":[3,[12,"import.char","Nacx{A2WY%QGLX/QgF]N"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"read byte %s","argumentids":"[\"mh16gMd9J:)`S?jE;I7f\"]","warp":"true"}},"v`":{"opcode":"data_setvariableto","next":"baO","parent":"|X","inputs":{"VALUE":[3,"|Y",[10,""]]},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"|Y":{"opcode":"operator_join","next":null,"parent":"v`","inputs":{"STRING1":[3,[12,"rom.title","Wi^qSRY3?saxL.IB^T(P"],[10,""]],"STRING2":[3,"|Z",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|Z":{"opcode":"operator_letter_of","next":null,"parent":"|Y","inputs":{"LETTER":[3,"baP",[6,"0"]],"STRING":[3,[12,"import.ascii","4alDl:(*zINs=KzJfNuw"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baP":{"opcode":"operator_subtract","next":null,"parent":"|Z","inputs":{"NUM1":[3,[12,"import.read_return","2gur[deD.u_*HDC_JLPm"],[4,"0"]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"baO":{"opcode":"data_changevariableby","next":null,"parent":"v`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["import.char","Nacx{A2WY%QGLX/QgF]N"]},"shadow":false,"topLevel":false},"baN":{"opcode":"data_hidevariable","next":null,"parent":"v_","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"baQ":{"opcode":"event_whenbroadcastreceived","next":"baR","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Load_Prebuilt_game","SbKns6%SF_audjA)ak#n"]},"shadow":false,"topLevel":true,"x":5821,"y":960},"baR":{"opcode":"procedures_call","next":null,"parent":"baQ","inputs":{"N;|i8;3k?Z(IS3xVi?uT":[3,[12,"_ROM","od4rT?;Bw52y-r9gIuW2"],[10,""]],"krrHn~;_D^@=CaLw(f,g":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"import_rom %s %s","argumentids":"[\"N;|i8;3k?Z(IS3xVi?uT\",\"krrHn~;_D^@=CaLw(f,g\"]","warp":"true"}},"baS":{"opcode":"event_whenbroadcastreceived","next":"|!","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":4441,"y":3917},"|!":{"opcode":"looks_hide","next":"|#","parent":"baS","inputs":{},"fields":{},"shadow":false,"topLevel":false},"|#":{"opcode":"data_hidevariable","next":"|%","parent":"|!","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"|%":{"opcode":"data_hidevariable","next":"|(","parent":"|#","inputs":{},"fields":{"VARIABLE":["rom.designation","*cu$N5#KACc@_m}ZOQx7"]},"shadow":false,"topLevel":false},"|(":{"opcode":"data_hidevariable","next":"|)","parent":"|%","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"|)":{"opcode":"data_hidelist","next":"|*","parent":"|(","inputs":{},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"|*":{"opcode":"data_hidelist","next":"|+","parent":"|)","inputs":{},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"|+":{"opcode":"data_hidelist","next":"|,","parent":"|*","inputs":{},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"|,":{"opcode":"data_hidelist","next":"baT","parent":"|+","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"baT":{"opcode":"data_setvariableto","next":null,"parent":"|,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"e;":{"opcode":"procedures_definition","next":"v{","parent":null,"inputs":{"custom_block":[1,"|-"]},"fields":{},"shadow":false,"topLevel":true,"x":4078,"y":64,"comment":"p+"},"|-":{"opcode":"procedures_prototype","next":null,"parent":"e;","inputs":{"{xi;}X0SqsUaQLC94XCd":[1,"baU"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"load NES %s","argumentids":"[\"{xi;}X0SqsUaQLC94XCd\"]","argumentnames":"[\"data\"]","argumentdefaults":"[\"\"]","warp":"true"}},"baU":{"opcode":"argument_reporter_string_number","next":null,"parent":"|-","inputs":{},"fields":{"VALUE":["data",null]},"shadow":true,"topLevel":false},"v{":{"opcode":"looks_switchcostumeto","next":"|.","parent":"e;","inputs":{"COSTUME":[1,"baV"]},"fields":{},"shadow":false,"topLevel":false},"baV":{"opcode":"looks_costume","next":null,"parent":"v{","inputs":{},"fields":{"COSTUME":["H",null]},"shadow":true,"topLevel":false},"|.":{"opcode":"data_deletealloflist","next":"v|","parent":"v{","inputs":{},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"v|":{"opcode":"data_addtolist","next":"v}","parent":"|.","inputs":{"ITEM":[3,"|/",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"|/":{"opcode":"operator_multiply","next":null,"parent":"v|","inputs":{"NUM1":[3,"|:",[4,"0"]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"|:":{"opcode":"operator_join","next":null,"parent":"|/","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"v~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v~":{"opcode":"operator_join","next":null,"parent":"|:","inputs":{"STRING1":[3,"|;",[10,""]],"STRING2":[3,"|=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|;":{"opcode":"operator_letter_of","next":null,"parent":"v~","inputs":{"LETTER":[1,[6,"9"]],"STRING":[3,"baW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baW":{"opcode":"argument_reporter_string_number","next":null,"parent":"|;","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"|=":{"opcode":"operator_letter_of","next":null,"parent":"v~","inputs":{"LETTER":[1,[6,"10"]],"STRING":[3,"baX",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baX":{"opcode":"argument_reporter_string_number","next":null,"parent":"|=","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"v}":{"opcode":"data_addtolist","next":"wa","parent":"v|","inputs":{"ITEM":[3,"|?",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"|?":{"opcode":"operator_multiply","next":null,"parent":"v}","inputs":{"NUM1":[3,"|@",[4,"0"]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"|@":{"opcode":"operator_join","next":null,"parent":"|?","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"wb",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wb":{"opcode":"operator_join","next":null,"parent":"|@","inputs":{"STRING1":[3,"|[",[10,""]],"STRING2":[3,"|]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|[":{"opcode":"operator_letter_of","next":null,"parent":"wb","inputs":{"LETTER":[1,[6,"11"]],"STRING":[3,"baY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baY":{"opcode":"argument_reporter_string_number","next":null,"parent":"|[","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"|]":{"opcode":"operator_letter_of","next":null,"parent":"wb","inputs":{"LETTER":[1,[6,"12"]],"STRING":[3,"baZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"baZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"|]","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"wa":{"opcode":"data_addtolist","next":"Jn","parent":"v}","inputs":{"ITEM":[3,"wc",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"wc":{"opcode":"operator_add","next":null,"parent":"wa","inputs":{"NUM1":[3,"ba!",[4,"0"]],"NUM2":[3,"ba#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ba!":{"opcode":"data_itemoflist","next":null,"parent":"wc","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"ba#":{"opcode":"data_itemoflist","next":null,"parent":"wc","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"Jn":{"opcode":"control_if_else","next":"wd","parent":"wa","inputs":{"CONDITION":[2,"|^"],"SUBSTACK":[2,"ba%"],"SUBSTACK2":[2,"|_"]},"fields":{},"shadow":false,"topLevel":false},"|^":{"opcode":"operator_gt","next":null,"parent":"Jn","inputs":{"OPERAND1":[3,"|`",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"|`":{"opcode":"operator_join","next":null,"parent":"|^","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"|{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|{":{"opcode":"operator_letter_of","next":null,"parent":"|`","inputs":{"LETTER":[1,[6,"14"]],"STRING":[3,"ba(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba(":{"opcode":"argument_reporter_string_number","next":null,"parent":"|{","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"ba%":{"opcode":"data_addtolist","next":null,"parent":"Jn","inputs":{"ITEM":[1,[10,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"|_":{"opcode":"data_addtolist","next":null,"parent":"Jn","inputs":{"ITEM":[3,"||",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"||":{"opcode":"operator_mod","next":null,"parent":"|_","inputs":{"NUM1":[3,"|}",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"|}":{"opcode":"operator_join","next":null,"parent":"||","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"|~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"|~":{"opcode":"operator_letter_of","next":null,"parent":"|}","inputs":{"LETTER":[1,[6,"14"]],"STRING":[3,"ba)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba)":{"opcode":"argument_reporter_string_number","next":null,"parent":"|~","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"wd":{"opcode":"data_addtolist","next":"W:","parent":"Jn","inputs":{"ITEM":[3,"}a",[10,""]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}a":{"opcode":"operator_add","next":null,"parent":"wd","inputs":{"NUM1":[3,"}b",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"}b":{"opcode":"operator_join","next":null,"parent":"}a","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"we",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"we":{"opcode":"operator_join","next":null,"parent":"}b","inputs":{"STRING1":[3,"}c",[10,""]],"STRING2":[3,"}d",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}c":{"opcode":"operator_letter_of","next":null,"parent":"we","inputs":{"LETTER":[1,[6,"15"]],"STRING":[3,"ba*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba*":{"opcode":"argument_reporter_string_number","next":null,"parent":"}c","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"}d":{"opcode":"operator_letter_of","next":null,"parent":"we","inputs":{"LETTER":[1,[6,"13"]],"STRING":[3,"ba+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba+":{"opcode":"argument_reporter_string_number","next":null,"parent":"}d","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"W:":{"opcode":"control_if","next":"W;","parent":"wd","inputs":{"CONDITION":[2,"}e"],"SUBSTACK":[2,"wf"]},"fields":{},"shadow":false,"topLevel":false},"}e":{"opcode":"operator_contains","next":null,"parent":"W:","inputs":{"STRING1":[3,"ba,",[10,""]],"STRING2":[1,[10,"554E4946"]]},"fields":{},"shadow":false,"topLevel":false},"ba,":{"opcode":"argument_reporter_string_number","next":null,"parent":"}e","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"wf":{"opcode":"looks_switchcostumeto","next":"}f","parent":"W:","inputs":{"COSTUME":[1,"ba-"]},"fields":{},"shadow":false,"topLevel":false},"ba-":{"opcode":"looks_costume","next":null,"parent":"wf","inputs":{},"fields":{"COSTUME":["U",null]},"shadow":true,"topLevel":false},"}f":{"opcode":"sensing_askandwait","next":"ba.","parent":"wf","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"ba.":{"opcode":"control_stop","next":null,"parent":"}f","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"W;":{"opcode":"control_if","next":"W=","parent":"W:","inputs":{"CONDITION":[2,"}g"],"SUBSTACK":[2,"wg"]},"fields":{},"shadow":false,"topLevel":false},"}g":{"opcode":"operator_not","next":null,"parent":"W;","inputs":{"OPERAND":[2,"}h"]},"fields":{},"shadow":false,"topLevel":false},"}h":{"opcode":"operator_contains","next":null,"parent":"}g","inputs":{"STRING1":[3,"ba/",[10,""]],"STRING2":[1,[10,"4E45531A"]]},"fields":{},"shadow":false,"topLevel":false},"ba/":{"opcode":"argument_reporter_string_number","next":null,"parent":"}h","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"wg":{"opcode":"looks_switchcostumeto","next":"}i","parent":"W;","inputs":{"COSTUME":[1,"ba:"]},"fields":{},"shadow":false,"topLevel":false},"ba:":{"opcode":"looks_costume","next":null,"parent":"wg","inputs":{},"fields":{"COSTUME":["E",null]},"shadow":true,"topLevel":false},"}i":{"opcode":"sensing_askandwait","next":"ba;","parent":"wg","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"ba;":{"opcode":"control_stop","next":null,"parent":"}i","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"W=":{"opcode":"control_if","next":"W?","parent":"W;","inputs":{"CONDITION":[2,"}j"],"SUBSTACK":[2,"wh"]},"fields":{},"shadow":false,"topLevel":false},"}j":{"opcode":"operator_not","next":null,"parent":"W=","inputs":{"OPERAND":[2,"wi"]},"fields":{},"shadow":false,"topLevel":false},"wi":{"opcode":"operator_equals","next":null,"parent":"}j","inputs":{"OPERAND1":[3,"}k",[10,""]],"OPERAND2":[3,"ba=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}k":{"opcode":"operator_divide","next":null,"parent":"wi","inputs":{"NUM1":[3,"}l",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"}l":{"opcode":"operator_subtract","next":null,"parent":"}k","inputs":{"NUM1":[3,"}m",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"}m":{"opcode":"operator_length","next":null,"parent":"}l","inputs":{"STRING":[3,"ba?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba?":{"opcode":"argument_reporter_string_number","next":null,"parent":"}m","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"ba=":{"opcode":"data_itemoflist","next":null,"parent":"wi","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"wh":{"opcode":"looks_switchcostumeto","next":"}n","parent":"W=","inputs":{"COSTUME":[1,"ba@"]},"fields":{},"shadow":false,"topLevel":false},"ba@":{"opcode":"looks_costume","next":null,"parent":"wh","inputs":{},"fields":{"COSTUME":["F",null]},"shadow":true,"topLevel":false},"}n":{"opcode":"sensing_askandwait","next":"ba[","parent":"wh","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"ba[":{"opcode":"control_stop","next":null,"parent":"}n","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"W?":{"opcode":"control_if","next":"wj","parent":"W=","inputs":{"CONDITION":[2,"}o"],"SUBSTACK":[2,"wk"]},"fields":{},"shadow":false,"topLevel":false},"}o":{"opcode":"operator_equals","next":null,"parent":"W?","inputs":{"OPERAND1":[3,"}p",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"}p":{"opcode":"data_itemnumoflist","next":null,"parent":"}o","inputs":{"ITEM":[3,"ba]",[10,""]]},"fields":{"LIST":["mappers","3`C#KsI[WM=%ZSxuHQ!~"]},"shadow":false,"topLevel":false},"ba]":{"opcode":"data_itemoflist","next":null,"parent":"}p","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"wk":{"opcode":"looks_switchcostumeto","next":"wl","parent":"W?","inputs":{"COSTUME":[1,"ba^"]},"fields":{},"shadow":false,"topLevel":false},"ba^":{"opcode":"looks_costume","next":null,"parent":"wk","inputs":{},"fields":{"COSTUME":["G",null]},"shadow":true,"topLevel":false},"wl":{"opcode":"data_setvariableto","next":"}q","parent":"wk","inputs":{"VALUE":[3,"}r",[10,""]]},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"}r":{"opcode":"operator_join","next":null,"parent":"wl","inputs":{"STRING1":[1,[10,"Unsupported mapper "]],"STRING2":[3,"ba_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ba_":{"opcode":"data_itemoflist","next":null,"parent":"}r","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}q":{"opcode":"data_showvariable","next":"}s","parent":"wl","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"}s":{"opcode":"sensing_askandwait","next":"}t","parent":"}q","inputs":{"QUESTION":[1,[10,"Error"]]},"fields":{},"shadow":false,"topLevel":false},"}t":{"opcode":"data_hidevariable","next":"ba`","parent":"}s","inputs":{},"fields":{"VARIABLE":["import.status","3lt5rd5NtHtm.gOc6_3L"]},"shadow":false,"topLevel":false},"ba`":{"opcode":"control_stop","next":null,"parent":"}t","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"wj":{"opcode":"data_setvariableto","next":"Jo","parent":"W?","inputs":{"VALUE":[3,"ba{",[10,""]]},"fields":{"VARIABLE":["prg_size","_5s67veUe?q~:arP76/I"]},"shadow":false,"topLevel":false},"ba{":{"opcode":"data_itemoflist","next":null,"parent":"wj","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"Jo":{"opcode":"control_if_else","next":"wm","parent":"wj","inputs":{"CONDITION":[2,"}u"],"SUBSTACK":[2,"}v"],"SUBSTACK2":[2,"wn"]},"fields":{},"shadow":false,"topLevel":false},"}u":{"opcode":"operator_equals","next":null,"parent":"Jo","inputs":{"OPERAND1":[3,"ba|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ba|":{"opcode":"data_itemoflist","next":null,"parent":"}u","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}v":{"opcode":"data_setvariableto","next":"ba}","parent":"Jo","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["chr_size","W35mZn3CY:LS+.IAtmge"]},"shadow":false,"topLevel":false},"ba}":{"opcode":"data_setvariableto","next":null,"parent":"}v","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["chr_ram","70;C?(`taL+qCsw6v*gi"]},"shadow":false,"topLevel":false},"wn":{"opcode":"data_setvariableto","next":"ba~","parent":"Jo","inputs":{"VALUE":[3,"bba",[10,""]]},"fields":{"VARIABLE":["chr_size","W35mZn3CY:LS+.IAtmge"]},"shadow":false,"topLevel":false},"bba":{"opcode":"data_itemoflist","next":null,"parent":"wn","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"ba~":{"opcode":"data_setvariableto","next":null,"parent":"wn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["chr_ram","70;C?(`taL+qCsw6v*gi"]},"shadow":false,"topLevel":false},"wm":{"opcode":"data_setvariableto","next":"}w","parent":"Jo","inputs":{"VALUE":[3,"bbb",[10,""]]},"fields":{"VARIABLE":["mapper","2YEF=*pQ`ymj}xOTf{?k"]},"shadow":false,"topLevel":false},"bbb":{"opcode":"data_itemoflist","next":null,"parent":"wm","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}w":{"opcode":"data_setvariableto","next":"}x","parent":"wm","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"}x":{"opcode":"data_setvariableto","next":"}y","parent":"}w","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["wram_size","zbJieX,I^/*TuxDYgB2."]},"shadow":false,"topLevel":false},"}y":{"opcode":"data_deletealloflist","next":"Jp","parent":"}x","inputs":{},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"Jp":{"opcode":"control_if_else","next":"}z","parent":"}y","inputs":{"CONDITION":[2,"}A"],"SUBSTACK":[2,"}B"],"SUBSTACK2":[2,"W@"]},"fields":{},"shadow":false,"topLevel":false},"}A":{"opcode":"operator_equals","next":null,"parent":"Jp","inputs":{"OPERAND1":[3,"bbc",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bbc":{"opcode":"data_itemoflist","next":null,"parent":"}A","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}B":{"opcode":"data_addtolist","next":"}C","parent":"Jp","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}C":{"opcode":"data_addtolist","next":"}D","parent":"}B","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}D":{"opcode":"data_addtolist","next":"bbd","parent":"}C","inputs":{"ITEM":[1,[10,"2"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bbd":{"opcode":"data_addtolist","next":null,"parent":"}D","inputs":{"ITEM":[1,[10,"3"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"W@":{"opcode":"control_if_else","next":null,"parent":"Jp","inputs":{"CONDITION":[2,"}E"],"SUBSTACK":[2,"}F"],"SUBSTACK2":[2,"}G"]},"fields":{},"shadow":false,"topLevel":false},"}E":{"opcode":"operator_equals","next":null,"parent":"W@","inputs":{"OPERAND1":[3,"bbe",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bbe":{"opcode":"data_itemoflist","next":null,"parent":"}E","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["load","#2t_c630N5NI?I=l]FZ]"]},"shadow":false,"topLevel":false},"}F":{"opcode":"data_addtolist","next":"}H","parent":"W@","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}H":{"opcode":"data_addtolist","next":"}I","parent":"}F","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}I":{"opcode":"data_addtolist","next":"bbf","parent":"}H","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bbf":{"opcode":"data_addtolist","next":null,"parent":"}I","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}G":{"opcode":"data_addtolist","next":"}J","parent":"W@","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}J":{"opcode":"data_addtolist","next":"}K","parent":"}G","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}K":{"opcode":"data_addtolist","next":"bbg","parent":"}J","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bbg":{"opcode":"data_addtolist","next":null,"parent":"}K","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"}z":{"opcode":"data_deletealloflist","next":"}L","parent":"Jp","inputs":{},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"}L":{"opcode":"data_deletealloflist","next":"}M","parent":"}z","inputs":{},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"}M":{"opcode":"data_setvariableto","next":"wo","parent":"}L","inputs":{"VALUE":[1,[10,"33"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"wo":{"opcode":"control_repeat","next":"wp","parent":"}M","inputs":{"TIMES":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[6,"0"]],"SUBSTACK":[2,"wq"]},"fields":{},"shadow":false,"topLevel":false},"wq":{"opcode":"data_addtolist","next":"bbh","parent":"wo","inputs":{"ITEM":[3,"}N",[10,""]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"}N":{"opcode":"operator_add","next":null,"parent":"wq","inputs":{"NUM1":[3,"}O",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"}O":{"opcode":"operator_join","next":null,"parent":"}N","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"wr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wr":{"opcode":"operator_join","next":null,"parent":"}O","inputs":{"STRING1":[3,"}P",[10,""]],"STRING2":[3,"ws",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}P":{"opcode":"operator_letter_of","next":null,"parent":"wr","inputs":{"LETTER":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[6,"0"]],"STRING":[3,"bbi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbi":{"opcode":"argument_reporter_string_number","next":null,"parent":"}P","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"ws":{"opcode":"operator_letter_of","next":null,"parent":"wr","inputs":{"LETTER":[3,"bbj",[6,"0"]],"STRING":[3,"bbk",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbj":{"opcode":"operator_add","next":null,"parent":"ws","inputs":{"NUM1":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bbk":{"opcode":"argument_reporter_string_number","next":null,"parent":"ws","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"bbh":{"opcode":"data_changevariableby","next":null,"parent":"wq","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"wp":{"opcode":"control_repeat","next":"bbl","parent":"wo","inputs":{"TIMES":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[6,"0"]],"SUBSTACK":[2,"wt"]},"fields":{},"shadow":false,"topLevel":false},"wt":{"opcode":"data_addtolist","next":"bbm","parent":"wp","inputs":{"ITEM":[3,"}Q",[10,""]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"}Q":{"opcode":"operator_add","next":null,"parent":"wt","inputs":{"NUM1":[3,"}R",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"}R":{"opcode":"operator_join","next":null,"parent":"}Q","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"wu",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"wu":{"opcode":"operator_join","next":null,"parent":"}R","inputs":{"STRING1":[3,"}S",[10,""]],"STRING2":[3,"#e",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}S":{"opcode":"operator_letter_of","next":null,"parent":"wu","inputs":{"LETTER":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[6,"0"]],"STRING":[3,"bbn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbn":{"opcode":"argument_reporter_string_number","next":null,"parent":"}S","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"#e":{"opcode":"operator_letter_of","next":null,"parent":"wu","inputs":{"LETTER":[3,"bbo",[6,"0"]],"STRING":[3,"bbp",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbo":{"opcode":"operator_add","next":null,"parent":"#e","inputs":{"NUM1":[3,[12,"temp","Mh+n98ZN{1B*npNt5f45"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bbp":{"opcode":"argument_reporter_string_number","next":null,"parent":"#e","inputs":{},"fields":{"VALUE":["data",null]},"shadow":false,"topLevel":false},"bbm":{"opcode":"data_changevariableby","next":null,"parent":"wt","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["temp","Mh+n98ZN{1B*npNt5f45"]},"shadow":false,"topLevel":false},"bbl":{"opcode":"data_setvariableto","next":null,"parent":"wp","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"bbq":{"opcode":"event_whenbroadcastreceived","next":"}T","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["get_controls","g91@,@Kt00yu7FuRXO~I"]},"shadow":false,"topLevel":true,"x":2203,"y":-132},"}T":{"opcode":"looks_gotofrontback","next":"W[","parent":"bbq","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"W[":{"opcode":"control_if","next":"}U","parent":"}T","inputs":{"CONDITION":[2,"bbr"],"SUBSTACK":[2,"}V"]},"fields":{},"shadow":false,"topLevel":false},"bbr":{"opcode":"operator_equals","next":null,"parent":"W[","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"}V":{"opcode":"data_setvariableto","next":"}W","parent":"W[","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"}W":{"opcode":"motion_gotoxy","next":"}X","parent":"}V","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"45"]]},"fields":{},"shadow":false,"topLevel":false},"}X":{"opcode":"looks_show","next":"}Y","parent":"}W","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}Y":{"opcode":"looks_gotofrontback","next":"wv","parent":"}X","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"wv":{"opcode":"looks_switchcostumeto","next":"ww","parent":"}Y","inputs":{"COSTUME":[1,"bbs"]},"fields":{},"shadow":false,"topLevel":false},"bbs":{"opcode":"looks_costume","next":null,"parent":"wv","inputs":{},"fields":{"COSTUME":["a",null]},"shadow":true,"topLevel":false},"ww":{"opcode":"microbit_displaySymbol","next":"wx","parent":"wv","inputs":{"MATRIX":[1,"bbt"]},"fields":{},"shadow":false,"topLevel":false},"bbt":{"opcode":"matrix","next":null,"parent":"ww","inputs":{},"fields":{"MATRIX":["0111000001001100000000100",null]},"shadow":true,"topLevel":false},"wx":{"opcode":"sound_play","next":"wy","parent":"ww","inputs":{"SOUND_MENU":[1,"bbu"]},"fields":{},"shadow":false,"topLevel":false},"bbu":{"opcode":"sound_sounds_menu","next":null,"parent":"wx","inputs":{},"fields":{"SOUND_MENU":["423930correct4",null]},"shadow":true,"topLevel":false},"wy":{"opcode":"control_wait_until","next":"}Z","parent":"wx","inputs":{"CONDITION":[2,"}!"]},"fields":{},"shadow":false,"topLevel":false},"}!":{"opcode":"operator_not","next":null,"parent":"wy","inputs":{"OPERAND":[2,"bbv"]},"fields":{},"shadow":false,"topLevel":false},"bbv":{"opcode":"operator_equals","next":null,"parent":"}!","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"}Z":{"opcode":"data_setvariableto","next":"wz","parent":"wy","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"wz":{"opcode":"control_if","next":null,"parent":"}Z","inputs":{"CONDITION":[2,"}#"],"SUBSTACK":[2,"W]"]},"fields":{},"shadow":false,"topLevel":false},"}#":{"opcode":"operator_gt","next":null,"parent":"wz","inputs":{"OPERAND1":[3,"bbw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bbw":{"opcode":"operator_divide","next":null,"parent":"}#","inputs":{"NUM1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[4,"0"]],"NUM2":[1,[4,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"W]":{"opcode":"control_if","next":"W^","parent":"wz","inputs":{"CONDITION":[2,"bbx"],"SUBSTACK":[2,"wA"]},"fields":{},"shadow":false,"topLevel":false},"bbx":{"opcode":"operator_equals","next":null,"parent":"W]","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"wA":{"opcode":"looks_switchcostumeto","next":"}%","parent":"W]","inputs":{"COSTUME":[1,"bby"]},"fields":{},"shadow":false,"topLevel":false},"bby":{"opcode":"looks_costume","next":null,"parent":"wA","inputs":{},"fields":{"COSTUME":["b",null]},"shadow":true,"topLevel":false},"}%":{"opcode":"data_showlist","next":"wB","parent":"wA","inputs":{},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"wB":{"opcode":"sound_play","next":"}(","parent":"}%","inputs":{"SOUND_MENU":[1,"bbz"]},"fields":{},"shadow":false,"topLevel":false},"bbz":{"opcode":"sound_sounds_menu","next":null,"parent":"wB","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"}(":{"opcode":"control_forever","next":null,"parent":"wB","inputs":{"SUBSTACK":[2,"wC"]},"fields":{},"shadow":false,"topLevel":false},"wC":{"opcode":"control_wait_until","next":"wD","parent":"}(","inputs":{"CONDITION":[2,"})"]},"fields":{},"shadow":false,"topLevel":false},"})":{"opcode":"operator_not","next":null,"parent":"wC","inputs":{"OPERAND":[2,"wE"]},"fields":{},"shadow":false,"topLevel":false},"wE":{"opcode":"operator_or","next":null,"parent":"})","inputs":{"OPERAND1":[2,"bbA"],"OPERAND2":[2,"}*"]},"fields":{},"shadow":false,"topLevel":false},"bbA":{"opcode":"sensing_mousedown","next":null,"parent":"wE","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}*":{"opcode":"sensing_keypressed","next":null,"parent":"wE","inputs":{"KEY_OPTION":[1,"bbB"]},"fields":{},"shadow":false,"topLevel":false},"bbB":{"opcode":"sensing_keyoptions","next":null,"parent":"}*","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"wD":{"opcode":"control_wait_until","next":"}+","parent":"wC","inputs":{"CONDITION":[2,"wF"]},"fields":{},"shadow":false,"topLevel":false},"wF":{"opcode":"operator_or","next":null,"parent":"wD","inputs":{"OPERAND1":[2,"wG"],"OPERAND2":[2,"},"]},"fields":{},"shadow":false,"topLevel":false},"wG":{"opcode":"operator_and","next":null,"parent":"wF","inputs":{"OPERAND1":[2,"bbC"],"OPERAND2":[2,"}-"]},"fields":{},"shadow":false,"topLevel":false},"bbC":{"opcode":"sensing_mousedown","next":null,"parent":"wG","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}-":{"opcode":"sensing_touchingobject","next":null,"parent":"wG","inputs":{"TOUCHINGOBJECTMENU":[1,"bbD"]},"fields":{},"shadow":false,"topLevel":false},"bbD":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"}-","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"},":{"opcode":"sensing_keypressed","next":null,"parent":"wF","inputs":{"KEY_OPTION":[1,"bbE"]},"fields":{},"shadow":false,"topLevel":false},"bbE":{"opcode":"sensing_keyoptions","next":null,"parent":"},","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"}+":{"opcode":"sensing_askandwait","next":"g;","parent":"wD","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"g;":{"opcode":"control_if_else","next":null,"parent":"}+","inputs":{"CONDITION":[2,"}."],"SUBSTACK":[2,"}/"],"SUBSTACK2":[2,"wH"]},"fields":{},"shadow":false,"topLevel":false},"}.":{"opcode":"operator_equals","next":null,"parent":"g;","inputs":{"OPERAND1":[3,"bbF",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbF":{"opcode":"sensing_answer","next":null,"parent":"}.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}/":{"opcode":"control_stop","next":"}:","parent":"g;","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"}:":{"opcode":"event_broadcast","next":"bbG","parent":"}/","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"bbG":{"opcode":"control_stop","next":null,"parent":"}:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"wH":{"opcode":"data_setvariableto","next":"wI","parent":"g;","inputs":{"VALUE":[3,"};",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"};":{"opcode":"operator_add","next":null,"parent":"wH","inputs":{"NUM1":[3,"bbH",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bbH":{"opcode":"sensing_answer","next":null,"parent":"};","inputs":{},"fields":{},"shadow":false,"topLevel":false},"wI":{"opcode":"sensing_askandwait","next":"wJ","parent":"wH","inputs":{"QUESTION":[3,"}=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"}=":{"opcode":"operator_join","next":null,"parent":"wI","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"bbI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbI":{"opcode":"operator_join","next":null,"parent":"}=","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the WAVE-8 controls list."]]},"fields":{},"shadow":false,"topLevel":false},"wJ":{"opcode":"control_if","next":null,"parent":"wI","inputs":{"CONDITION":[2,"}?"],"SUBSTACK":[2,"}@"]},"fields":{},"shadow":false,"topLevel":false},"}?":{"opcode":"operator_not","next":null,"parent":"wJ","inputs":{"OPERAND":[2,"}["]},"fields":{},"shadow":false,"topLevel":false},"}[":{"opcode":"operator_equals","next":null,"parent":"}?","inputs":{"OPERAND1":[3,"bbJ",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbJ":{"opcode":"sensing_answer","next":null,"parent":"}[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}@":{"opcode":"data_replaceitemoflist","next":null,"parent":"wJ","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"bbK",[10,""]]},"fields":{"LIST":["controls.chip8","EesKz%n[:9y6^o:vvoD_"]},"shadow":false,"topLevel":false},"bbK":{"opcode":"sensing_answer","next":null,"parent":"}@","inputs":{},"fields":{},"shadow":false,"topLevel":false},"W^":{"opcode":"control_if","next":"wK","parent":"W]","inputs":{"CONDITION":[2,"bbL"],"SUBSTACK":[2,"Jq"]},"fields":{},"shadow":false,"topLevel":false},"bbL":{"opcode":"operator_equals","next":null,"parent":"W^","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},"Jq":{"opcode":"looks_switchcostumeto","next":"}]","parent":"W^","inputs":{"COSTUME":[1,"bbM"]},"fields":{},"shadow":false,"topLevel":false},"bbM":{"opcode":"looks_costume","next":null,"parent":"Jq","inputs":{},"fields":{"COSTUME":["c",null]},"shadow":true,"topLevel":false},"}]":{"opcode":"data_showlist","next":"Jr","parent":"Jq","inputs":{},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"Jr":{"opcode":"sound_play","next":"}^","parent":"}]","inputs":{"SOUND_MENU":[1,"bbN"]},"fields":{},"shadow":false,"topLevel":false},"bbN":{"opcode":"sound_sounds_menu","next":null,"parent":"Jr","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"}^":{"opcode":"control_forever","next":null,"parent":"Jr","inputs":{"SUBSTACK":[2,"wL"]},"fields":{},"shadow":false,"topLevel":false},"wL":{"opcode":"control_wait_until","next":"wM","parent":"}^","inputs":{"CONDITION":[2,"}_"]},"fields":{},"shadow":false,"topLevel":false},"}_":{"opcode":"operator_not","next":null,"parent":"wL","inputs":{"OPERAND":[2,"wN"]},"fields":{},"shadow":false,"topLevel":false},"wN":{"opcode":"operator_or","next":null,"parent":"}_","inputs":{"OPERAND1":[2,"bbO"],"OPERAND2":[2,"}`"]},"fields":{},"shadow":false,"topLevel":false},"bbO":{"opcode":"sensing_mousedown","next":null,"parent":"wN","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}`":{"opcode":"sensing_keypressed","next":null,"parent":"wN","inputs":{"KEY_OPTION":[1,"bbP"]},"fields":{},"shadow":false,"topLevel":false},"bbP":{"opcode":"sensing_keyoptions","next":null,"parent":"}`","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"wM":{"opcode":"control_wait_until","next":"}{","parent":"wL","inputs":{"CONDITION":[2,"wO"]},"fields":{},"shadow":false,"topLevel":false},"wO":{"opcode":"operator_or","next":null,"parent":"wM","inputs":{"OPERAND1":[2,"wP"],"OPERAND2":[2,"}|"]},"fields":{},"shadow":false,"topLevel":false},"wP":{"opcode":"operator_and","next":null,"parent":"wO","inputs":{"OPERAND1":[2,"bbQ"],"OPERAND2":[2,"}}"]},"fields":{},"shadow":false,"topLevel":false},"bbQ":{"opcode":"sensing_mousedown","next":null,"parent":"wP","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}}":{"opcode":"sensing_touchingobject","next":null,"parent":"wP","inputs":{"TOUCHINGOBJECTMENU":[1,"bbR"]},"fields":{},"shadow":false,"topLevel":false},"bbR":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"}}","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"}|":{"opcode":"sensing_keypressed","next":null,"parent":"wO","inputs":{"KEY_OPTION":[1,"bbS"]},"fields":{},"shadow":false,"topLevel":false},"bbS":{"opcode":"sensing_keyoptions","next":null,"parent":"}|","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"}{":{"opcode":"sensing_askandwait","next":"g=","parent":"wM","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"g=":{"opcode":"control_if_else","next":null,"parent":"}{","inputs":{"CONDITION":[2,"}~"],"SUBSTACK":[2,"~a"],"SUBSTACK2":[2,"wQ"]},"fields":{},"shadow":false,"topLevel":false},"}~":{"opcode":"operator_equals","next":null,"parent":"g=","inputs":{"OPERAND1":[3,"bbT",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbT":{"opcode":"sensing_answer","next":null,"parent":"}~","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~a":{"opcode":"control_stop","next":"~b","parent":"g=","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"~b":{"opcode":"event_broadcast","next":"bbU","parent":"~a","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"bbU":{"opcode":"control_stop","next":null,"parent":"~b","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"wQ":{"opcode":"data_setvariableto","next":"wR","parent":"g=","inputs":{"VALUE":[3,"~c",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"~c":{"opcode":"operator_add","next":null,"parent":"wQ","inputs":{"NUM1":[3,"bbV",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bbV":{"opcode":"sensing_answer","next":null,"parent":"~c","inputs":{},"fields":{},"shadow":false,"topLevel":false},"wR":{"opcode":"sensing_askandwait","next":"wS","parent":"wQ","inputs":{"QUESTION":[3,"~d",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"~d":{"opcode":"operator_join","next":null,"parent":"wR","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"bbW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbW":{"opcode":"operator_join","next":null,"parent":"~d","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the DualGB controls list."]]},"fields":{},"shadow":false,"topLevel":false},"wS":{"opcode":"control_if","next":null,"parent":"wR","inputs":{"CONDITION":[2,"~e"],"SUBSTACK":[2,"~f"]},"fields":{},"shadow":false,"topLevel":false},"~e":{"opcode":"operator_not","next":null,"parent":"wS","inputs":{"OPERAND":[2,"~g"]},"fields":{},"shadow":false,"topLevel":false},"~g":{"opcode":"operator_equals","next":null,"parent":"~e","inputs":{"OPERAND1":[3,"bbX",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bbX":{"opcode":"sensing_answer","next":null,"parent":"~g","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~f":{"opcode":"data_replaceitemoflist","next":null,"parent":"wS","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"bbY",[10,""]]},"fields":{"LIST":["controls.GB","5D)3w-mP8HqcU~;jGYPw"]},"shadow":false,"topLevel":false},"bbY":{"opcode":"sensing_answer","next":null,"parent":"~f","inputs":{},"fields":{},"shadow":false,"topLevel":false},"wK":{"opcode":"control_if","next":"g?","parent":"W^","inputs":{"CONDITION":[2,"bbZ"]},"fields":{},"shadow":false,"topLevel":false},"bbZ":{"opcode":"operator_equals","next":null,"parent":"wK","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},"g?":{"opcode":"control_if","next":"wT","parent":"wK","inputs":{"CONDITION":[2,"bb!"],"SUBSTACK":[2,"wU"]},"fields":{},"shadow":false,"topLevel":false},"bb!":{"opcode":"operator_equals","next":null,"parent":"g?","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},"wU":{"opcode":"looks_switchcostumeto","next":"~h","parent":"g?","inputs":{"COSTUME":[1,"bb#"]},"fields":{},"shadow":false,"topLevel":false},"bb#":{"opcode":"looks_costume","next":null,"parent":"wU","inputs":{},"fields":{"COSTUME":["d",null]},"shadow":true,"topLevel":false},"~h":{"opcode":"data_showlist","next":"wV","parent":"wU","inputs":{},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"wV":{"opcode":"sound_play","next":"~i","parent":"~h","inputs":{"SOUND_MENU":[1,"bb%"]},"fields":{},"shadow":false,"topLevel":false},"bb%":{"opcode":"sound_sounds_menu","next":null,"parent":"wV","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"~i":{"opcode":"control_forever","next":null,"parent":"wV","inputs":{"SUBSTACK":[2,"wW"]},"fields":{},"shadow":false,"topLevel":false},"wW":{"opcode":"control_wait_until","next":"wX","parent":"~i","inputs":{"CONDITION":[2,"~j"]},"fields":{},"shadow":false,"topLevel":false},"~j":{"opcode":"operator_not","next":null,"parent":"wW","inputs":{"OPERAND":[2,"wY"]},"fields":{},"shadow":false,"topLevel":false},"wY":{"opcode":"operator_or","next":null,"parent":"~j","inputs":{"OPERAND1":[2,"bb("],"OPERAND2":[2,"~k"]},"fields":{},"shadow":false,"topLevel":false},"bb(":{"opcode":"sensing_mousedown","next":null,"parent":"wY","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~k":{"opcode":"sensing_keypressed","next":null,"parent":"wY","inputs":{"KEY_OPTION":[1,"bb)"]},"fields":{},"shadow":false,"topLevel":false},"bb)":{"opcode":"sensing_keyoptions","next":null,"parent":"~k","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"wX":{"opcode":"control_wait_until","next":"~l","parent":"wW","inputs":{"CONDITION":[2,"wZ"]},"fields":{},"shadow":false,"topLevel":false},"wZ":{"opcode":"operator_or","next":null,"parent":"wX","inputs":{"OPERAND1":[2,"w!"],"OPERAND2":[2,"~m"]},"fields":{},"shadow":false,"topLevel":false},"w!":{"opcode":"operator_and","next":null,"parent":"wZ","inputs":{"OPERAND1":[2,"bb*"],"OPERAND2":[2,"~n"]},"fields":{},"shadow":false,"topLevel":false},"bb*":{"opcode":"sensing_mousedown","next":null,"parent":"w!","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~n":{"opcode":"sensing_touchingobject","next":null,"parent":"w!","inputs":{"TOUCHINGOBJECTMENU":[1,"bb+"]},"fields":{},"shadow":false,"topLevel":false},"bb+":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"~n","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"~m":{"opcode":"sensing_keypressed","next":null,"parent":"wZ","inputs":{"KEY_OPTION":[1,"bb,"]},"fields":{},"shadow":false,"topLevel":false},"bb,":{"opcode":"sensing_keyoptions","next":null,"parent":"~m","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"~l":{"opcode":"sensing_askandwait","next":"g@","parent":"wX","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"g@":{"opcode":"control_if_else","next":null,"parent":"~l","inputs":{"CONDITION":[2,"~o"],"SUBSTACK":[2,"~p"],"SUBSTACK2":[2,"w#"]},"fields":{},"shadow":false,"topLevel":false},"~o":{"opcode":"operator_equals","next":null,"parent":"g@","inputs":{"OPERAND1":[3,"bb-",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bb-":{"opcode":"sensing_answer","next":null,"parent":"~o","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~p":{"opcode":"control_stop","next":"~q","parent":"g@","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"~q":{"opcode":"event_broadcast","next":"bb.","parent":"~p","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"bb.":{"opcode":"control_stop","next":null,"parent":"~q","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"w#":{"opcode":"data_setvariableto","next":"w%","parent":"g@","inputs":{"VALUE":[3,"~r",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"~r":{"opcode":"operator_add","next":null,"parent":"w#","inputs":{"NUM1":[3,"bb/",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bb/":{"opcode":"sensing_answer","next":null,"parent":"~r","inputs":{},"fields":{},"shadow":false,"topLevel":false},"w%":{"opcode":"sensing_askandwait","next":"w(","parent":"w#","inputs":{"QUESTION":[3,"~s",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"~s":{"opcode":"operator_join","next":null,"parent":"w%","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"bb:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bb:":{"opcode":"operator_join","next":null,"parent":"~s","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the Cool NES controls list."]]},"fields":{},"shadow":false,"topLevel":false},"w(":{"opcode":"control_if","next":null,"parent":"w%","inputs":{"CONDITION":[2,"~t"],"SUBSTACK":[2,"~u"]},"fields":{},"shadow":false,"topLevel":false},"~t":{"opcode":"operator_not","next":null,"parent":"w(","inputs":{"OPERAND":[2,"~v"]},"fields":{},"shadow":false,"topLevel":false},"~v":{"opcode":"operator_equals","next":null,"parent":"~t","inputs":{"OPERAND1":[3,"bb;",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bb;":{"opcode":"sensing_answer","next":null,"parent":"~v","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~u":{"opcode":"data_replaceitemoflist","next":null,"parent":"w(","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"bb=",[10,""]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"bb=":{"opcode":"sensing_answer","next":null,"parent":"~u","inputs":{},"fields":{},"shadow":false,"topLevel":false},"wT":{"opcode":"control_if","next":null,"parent":"g?","inputs":{"CONDITION":[2,"bb?"],"SUBSTACK":[2,"w)"]},"fields":{},"shadow":false,"topLevel":false},"bb?":{"opcode":"operator_equals","next":null,"parent":"wT","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-1600"]]},"fields":{},"shadow":false,"topLevel":false},"w)":{"opcode":"looks_switchcostumeto","next":"~w","parent":"wT","inputs":{"COSTUME":[1,"bb@"]},"fields":{},"shadow":false,"topLevel":false},"bb@":{"opcode":"looks_costume","next":null,"parent":"w)","inputs":{},"fields":{"COSTUME":["e",null]},"shadow":true,"topLevel":false},"~w":{"opcode":"data_showlist","next":"w*","parent":"w)","inputs":{},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"w*":{"opcode":"sound_play","next":"~x","parent":"~w","inputs":{"SOUND_MENU":[1,"bb["]},"fields":{},"shadow":false,"topLevel":false},"bb[":{"opcode":"sound_sounds_menu","next":null,"parent":"w*","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"~x":{"opcode":"control_forever","next":null,"parent":"w*","inputs":{"SUBSTACK":[2,"w+"]},"fields":{},"shadow":false,"topLevel":false},"w+":{"opcode":"control_wait_until","next":"w,","parent":"~x","inputs":{"CONDITION":[2,"~y"]},"fields":{},"shadow":false,"topLevel":false},"~y":{"opcode":"operator_not","next":null,"parent":"w+","inputs":{"OPERAND":[2,"w-"]},"fields":{},"shadow":false,"topLevel":false},"w-":{"opcode":"operator_or","next":null,"parent":"~y","inputs":{"OPERAND1":[2,"bb]"],"OPERAND2":[2,"~z"]},"fields":{},"shadow":false,"topLevel":false},"bb]":{"opcode":"sensing_mousedown","next":null,"parent":"w-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~z":{"opcode":"sensing_keypressed","next":null,"parent":"w-","inputs":{"KEY_OPTION":[1,"bb^"]},"fields":{},"shadow":false,"topLevel":false},"bb^":{"opcode":"sensing_keyoptions","next":null,"parent":"~z","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"w,":{"opcode":"control_wait_until","next":"~A","parent":"w+","inputs":{"CONDITION":[2,"w."]},"fields":{},"shadow":false,"topLevel":false},"w.":{"opcode":"operator_or","next":null,"parent":"w,","inputs":{"OPERAND1":[2,"Js"],"OPERAND2":[2,"~B"]},"fields":{},"shadow":false,"topLevel":false},"Js":{"opcode":"operator_and","next":null,"parent":"w.","inputs":{"OPERAND1":[2,"bb_"],"OPERAND2":[2,"~C"]},"fields":{},"shadow":false,"topLevel":false},"bb_":{"opcode":"sensing_mousedown","next":null,"parent":"Js","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~C":{"opcode":"sensing_touchingobject","next":null,"parent":"Js","inputs":{"TOUCHINGOBJECTMENU":[1,"bb`"]},"fields":{},"shadow":false,"topLevel":false},"bb`":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"~C","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"~B":{"opcode":"sensing_keypressed","next":null,"parent":"w.","inputs":{"KEY_OPTION":[1,"bb{"]},"fields":{},"shadow":false,"topLevel":false},"bb{":{"opcode":"sensing_keyoptions","next":null,"parent":"~B","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"~A":{"opcode":"sensing_askandwait","next":"g[","parent":"w,","inputs":{"QUESTION":[1,[10,"Which list entry do you want to edit? Leave blank to exit."]]},"fields":{},"shadow":false,"topLevel":false},"g[":{"opcode":"control_if_else","next":null,"parent":"~A","inputs":{"CONDITION":[2,"~D"],"SUBSTACK":[2,"~E"],"SUBSTACK2":[2,"Jt"]},"fields":{},"shadow":false,"topLevel":false},"~D":{"opcode":"operator_equals","next":null,"parent":"g[","inputs":{"OPERAND1":[3,"bb|",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bb|":{"opcode":"sensing_answer","next":null,"parent":"~D","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~E":{"opcode":"control_stop","next":"~F","parent":"g[","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"~F":{"opcode":"event_broadcast","next":"bb}","parent":"~E","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"bb}":{"opcode":"control_stop","next":null,"parent":"~F","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Jt":{"opcode":"data_setvariableto","next":"Ju","parent":"g[","inputs":{"VALUE":[3,"~G",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"~G":{"opcode":"operator_add","next":null,"parent":"Jt","inputs":{"NUM1":[3,"bb~",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bb~":{"opcode":"sensing_answer","next":null,"parent":"~G","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Ju":{"opcode":"sensing_askandwait","next":"Jv","parent":"Jt","inputs":{"QUESTION":[3,"~H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"~H":{"opcode":"operator_join","next":null,"parent":"Ju","inputs":{"STRING1":[1,[10,"Type the name of the key you want to use in item "]],"STRING2":[3,"bca",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bca":{"opcode":"operator_join","next":null,"parent":"~H","inputs":{"STRING1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"STRING2":[1,[10," of the SI8080 controls list."]]},"fields":{},"shadow":false,"topLevel":false},"Jv":{"opcode":"control_if","next":null,"parent":"Ju","inputs":{"CONDITION":[2,"~I"],"SUBSTACK":[2,"~J"]},"fields":{},"shadow":false,"topLevel":false},"~I":{"opcode":"operator_not","next":null,"parent":"Jv","inputs":{"OPERAND":[2,"~K"]},"fields":{},"shadow":false,"topLevel":false},"~K":{"opcode":"operator_equals","next":null,"parent":"~I","inputs":{"OPERAND1":[3,"bcb",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bcb":{"opcode":"sensing_answer","next":null,"parent":"~K","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~J":{"opcode":"data_replaceitemoflist","next":null,"parent":"Jv","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]],"ITEM":[3,"bcc",[10,""]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bcc":{"opcode":"sensing_answer","next":null,"parent":"~J","inputs":{},"fields":{},"shadow":false,"topLevel":false},"}U":{"opcode":"microbit_displayClear","next":"~L","parent":"W[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~L":{"opcode":"looks_hide","next":"~M","parent":"}U","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~M":{"opcode":"data_setvariableto","next":"bcd","parent":"~L","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"bcd":{"opcode":"data_setvariableto","next":null,"parent":"~M","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"~N":{"opcode":"control_if","next":null,"parent":null,"inputs":{"CONDITION":[2,"bce"],"SUBSTACK":[2,"Jw"]},"fields":{},"shadow":false,"topLevel":true,"x":557,"y":750},"bce":{"opcode":"operator_equals","next":null,"parent":"~N","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"-3000"]]},"fields":{},"shadow":false,"topLevel":false},"Jw":{"opcode":"looks_switchcostumeto","next":"~O","parent":"~N","inputs":{"COSTUME":[1,"bcf"]},"fields":{},"shadow":false,"topLevel":false},"bcf":{"opcode":"looks_costume","next":null,"parent":"Jw","inputs":{},"fields":{"COSTUME":["C",null]},"shadow":true,"topLevel":false},"~O":{"opcode":"sensing_askandwait","next":"Jx","parent":"Jw","inputs":{"QUESTION":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Jx":{"opcode":"control_if","next":null,"parent":"~O","inputs":{"CONDITION":[2,"~P"],"SUBSTACK":[2,"Jy"]},"fields":{},"shadow":false,"topLevel":false},"~P":{"opcode":"operator_not","next":null,"parent":"Jx","inputs":{"OPERAND":[2,"~Q"]},"fields":{},"shadow":false,"topLevel":false},"~Q":{"opcode":"operator_equals","next":null,"parent":"~P","inputs":{"OPERAND1":[3,"bcg",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bcg":{"opcode":"sensing_answer","next":null,"parent":"~Q","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Jy":{"opcode":"procedures_call","next":"~R","parent":"Jx","inputs":{"5+*G8b%WKI.VHxST}.?.":[3,"bch",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert_b64 %s","argumentids":"[\"5+*G8b%WKI.VHxST}.?.\"]","warp":"true"}},"bch":{"opcode":"sensing_answer","next":null,"parent":"Jy","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~R":{"opcode":"sound_play","next":null,"parent":"Jy","inputs":{"SOUND_MENU":[1,"bci"]},"fields":{},"shadow":false,"topLevel":false},"bci":{"opcode":"sound_sounds_menu","next":null,"parent":"~R","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct2",null]},"shadow":true,"topLevel":false},"bcj":{"opcode":"event_whenbroadcastreceived","next":"bck","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Load_base64","!(hs25J7|{;5#Cu=Hf~s"]},"shadow":false,"topLevel":true,"x":5557,"y":1198},"bck":{"opcode":"procedures_call","next":null,"parent":"bcj","inputs":{"5+*G8b%WKI.VHxST}.?.":[3,[12,"_ROM","od4rT?;Bw52y-r9gIuW2"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert_b64 %s","argumentids":"[\"5+*G8b%WKI.VHxST}.?.\"]","warp":"true"}}},"comments":{",F":{"blockId":"cd","x":-84,"y":15108,"width":200,"height":200,"minimized":true,"text":"CXKK- rand vx,kk"},"e#":{"blockId":"f","x":178,"y":2480,"width":200,"height":200,"minimized":true,"text":"00EE- rts- return from subroutine call"},"_S":{"blockId":"tL","x":1093,"y":7952,"width":200,"height":200,"minimized":true,"text":"5XY1 (CHIP8E) Skip if VX > VY"},"_T":{"blockId":"Q","x":139,"y":8117,"width":200,"height":200,"minimized":true,"text":"If VX > VY, load or save registers in reverse order; do a byte reversal"},"_*":{"blockId":"bT","x":17,"y":8856,"width":200,"height":200,"minimized":true,"text":"5XY3(XO-CHIP)- load vx-vy starting at I"},",M":{"blockId":"cj","x":18,"y":9789,"width":200,"height":200,"minimized":true,"text":"8XY0- LD VX, VY"},",L":{"blockId":"ci","x":22,"y":10012,"width":200,"height":200,"minimized":true,"text":"8XY1- OR VX, VY"},",O":{"blockId":"ck","x":32,"y":10648,"width":200,"height":200,"minimized":true,"text":"8XY2- AND VX, VY"},",Q":{"blockId":"cf","x":-92,"y":15748,"width":200,"height":200,"minimized":true,"text":"DXYN/DXY0- sprite vx, vy, n- Draw sprite at screen location (VX, VY) height N / (SCHIP) draw 16x16 sprite"},"p*":{"blockId":"e:","x":4254.1042857170105,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"p)":{"blockId":"e/","x":913.8666666666668,"y":3041.2666666666664,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"p+":{"blockId":"e;","x":4254.1042857170105,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"},"b-`":{"blockId":"cC","x":-102,"y":19043,"width":200,"height":200,"minimized":true,"text":"F000 (XO-CHIP)- i := long NNNN. Load i with a 16 bit address"},"aI":{"blockId":"a","x":629,"y":990,"width":200,"height":200,"minimized":true,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},"aJ":{"blockId":"L","x":3087,"y":1672,"width":200,"height":200,"minimized":true,"text":"5"},"aK":{"blockId":"M","x":3070,"y":1912,"width":200,"height":200,"minimized":true,"text":"6"},"b-{":{"blockId":"b-|","x":1407.8280181884766,"y":3803,"width":200,"height":200,"minimized":false,"text":"V0.3.1, loads a prebuilt rom"},"bL":{"blockId":"g","x":409,"y":610,"width":200,"height":200,"minimized":true,"text":"0x2AC - HIRES_ON"},"aL":{"blockId":"d","x":377,"y":1831,"width":200,"height":200,"minimized":true,"text":"00CN (SCHIP) - SCD N"},"aM":{"blockId":"cY","x":501,"y":2156,"width":200,"height":200,"minimized":true,"text":"00DN (XO-CHIP) Scroll up N lines"},"a:":{"blockId":"c!","x":-56,"y":2716,"width":200,"height":200,"minimized":true,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"i":{"blockId":"j","x":230,"y":3925,"width":200,"height":200,"minimized":true,"text":"00FC (SCHIP) Scroll left 4 pixels"},"a+q":{"blockId":"Ze","x":-37,"y":5147,"width":200,"height":200,"minimized":true,"text":"00FD (SCHIP)- Exit"},"pu":{"blockId":"m","x":-51,"y":5575,"width":200,"height":200,"minimized":true,"text":"00FE(SCHIP) LOW"},"e(":{"blockId":"n","x":-35,"y":5861,"width":200,"height":200,"minimized":true,"text":"00FF(SCHIP) - HIGH"},"/A":{"blockId":"/","x":-63,"y":6165,"width":200,"height":200,"minimized":true,"text":"1NNN"},"/C":{"blockId":"+","x":-112,"y":6373,"width":200,"height":200,"minimized":true,"text":"2NNN- jsr nnn- 16 levels maximum "},"_L":{"blockId":"c","x":-109,"y":6628,"width":200,"height":200,"minimized":true,"text":"3XNN- SE VX, NN,"},"_M":{"blockId":"-","x":-120,"y":7020,"width":200,"height":200,"minimized":true,"text":"4XNN- SNE VX, NN- Skip the next instruction if register VX is not equal to NN."},"_N":{"blockId":"_","x":-77,"y":7402,"width":200,"height":200,"minimized":true,"text":"5XY0- SE VX, VY- Skip the next instruction if register VX equals VY."},"_X":{"blockId":"bU","x":21,"y":8442,"width":200,"height":200,"minimized":true,"text":"5XY2 (XO-CHIP)- save vx-vy starting at I"},"_:":{"blockId":"{","x":-78,"y":9303,"width":200,"height":200,"minimized":true,"text":"6XNN- LD VX, NN"},"_@":{"blockId":"au","x":-90,"y":9505,"width":200,"height":200,"minimized":true,"text":"7XNN- ADD VX,NN"},"b-}":{"blockId":"cQ","x":15,"y":11272,"width":200,"height":200,"minimized":true,"text":"8XY3- XOR VX, VY"},"_[":{"blockId":":","x":17,"y":11910,"width":200,"height":200,"minimized":true,"text":"8XY4- ADD VX, VY"},"_]":{"blockId":"*","x":40,"y":12267,"width":200,"height":200,"minimized":true,"text":"8XY5- SUB VX, VY"},",T":{"blockId":"cm","x":12,"y":12635,"width":200,"height":200,"minimized":true,"text":"8XY6- SHR VX, VY"},"b-~":{"blockId":"~S","x":4,"y":13252,"width":200,"height":200,"minimized":true,"text":"8XY7- SUBN VX, VY"},"-~":{"blockId":"T","x":10,"y":13609,"width":200,"height":200,"minimized":true,"text":"8XYE- SHL VX, VY"},",B":{"blockId":"cb","x":-104,"y":14249,"width":200,"height":200,"minimized":true,"text":"9XY0- skne vx, vy"},".a":{"blockId":")","x":-106,"y":14488,"width":200,"height":200,"minimized":true,"text":"ANNN- mvi nnn"},",D":{"blockId":"cc","x":-65,"y":14688,"width":200,"height":200,"minimized":true,"text":"BNNN- jmi nnn (VIP, Default)\nNNN + Value in V0\n\nBXNN - (SCHIP)\nXNN + Value in VX"},"_{":{"blockId":"ZV","x":672,"y":18570,"width":200,"height":200,"minimized":true,"text":"ek9e- skpr k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is pressed"},"_|":{"blockId":"lg","x":719,"y":18695,"width":200,"height":200,"minimized":true,"text":"eka1- skup k- Skip the following instruction if the key corresponding to the hex value currently stored in register VX is not pressed"},"b.a":{"blockId":"c:","x":-90,"y":19292,"width":200,"height":200,"minimized":true,"text":"FN01 (XO-CHIP)- Plane n"},"b.b":{"blockId":"as","x":-82,"y":19539,"width":200,"height":200,"minimized":true,"text":"F002 (XO-CHIP)- Audio"},"_}":{"blockId":".","x":-105,"y":19727,"width":200,"height":200,"minimized":true,"text":"fx07- gdelay vr\nFX07"},"a}j":{"blockId":"a}k","x":-90,"y":19936,"width":200,"height":200,"minimized":true,"text":"fx0a- key vr- SHOULD Wait for a keypress and store the result in register VX"},"_~":{"blockId":"`","x":-80,"y":20597,"width":200,"height":200,"minimized":true,"text":"fx15- sdelay vr"},"`a":{"blockId":"^","x":-103,"y":20814,"width":200,"height":200,"minimized":true,"text":"fx18- ssound vr- Set the sound timer to the value of register VX\nFX18\n\nNote: was delay timer in V0.0.9, Changed to sound timer"},"`b":{"blockId":"[","x":-99,"y":21016,"width":200,"height":200,"minimized":true,"text":"fx1e- adi vr"},"`c":{"blockId":"|","x":-83,"y":21548,"width":200,"height":200,"minimized":true,"text":"fx29 - font vr-\nSet I to the memory address of the sprite data corresponding to the hexadecimal digit stored in register VX"},",I":{"blockId":"cg","x":-71,"y":21764,"width":200,"height":200,"minimized":true,"text":"fx30 - SCHIP - Point I to 10-byte font sprite for digit VX (0..9)"},",J":{"blockId":"ch","x":-89,"y":21993,"width":200,"height":200,"minimized":true,"text":"fx33- bcd vr- should not change I, store the bcd representation of register vr at location I,I+1,I+2\n\nBCD stands for binary coded decimal"},"`g":{"blockId":"cM","x":-97,"y":22399,"width":200,"height":200,"minimized":true,"text":"FX55- Load VX"},"`n":{"blockId":"gC","x":-93,"y":23144,"width":200,"height":200,"minimized":true,"text":"FX65- Save VX"},"`o":{"blockId":"gE","x":-61,"y":23912,"width":200,"height":200,"minimized":true,"text":"FX75- SCHIP\nsaveflags vx"},"`p":{"blockId":"gF","x":-32,"y":24629,"width":200,"height":200,"minimized":true,"text":"FX85- SCHIP\nloadflags vx"},"bN":{"blockId":"b}","x":3035,"y":264,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"bO":{"blockId":"b~","x":3035,"y":466,"width":200,"height":200,"minimized":true,"text":"0"},"bP":{"blockId":"ca","x":3038,"y":705,"width":200,"height":200,"minimized":true,"text":"1"},"bQ":{"blockId":"(","x":3043,"y":951,"width":200,"height":200,"minimized":true,"text":"2"},"bR":{"blockId":"c*","x":3030,"y":1183,"width":200,"height":200,"minimized":true,"text":"3"},"bS":{"blockId":"c+","x":3036,"y":1428,"width":200,"height":200,"minimized":true,"text":"4"},"a,":{"blockId":"N","x":3073,"y":2150,"width":200,"height":200,"minimized":true,"text":"7"},"a-":{"blockId":"O","x":3051,"y":2388,"width":200,"height":200,"minimized":true,"text":"8"},"a.":{"blockId":"aj","x":3057,"y":2630,"width":200,"height":200,"minimized":true,"text":"9"},"a/":{"blockId":"ak","x":3047,"y":2868,"width":200,"height":200,"minimized":true,"text":"A"},"a}l":{"blockId":"a}m","x":35,"y":28136,"width":200,"height":200,"minimized":true,"text":"FXF8 (chip8x)- Output port to VX"},"=V":{"blockId":"av","x":286,"y":23658,"width":200,"height":200,"minimized":true,"text":"Plane 2"},"b.c":{"blockId":"b.d","x":491,"y":25099,"width":200,"height":200,"minimized":true,"text":"SCHIP compatibility mode"},"=Y":{"blockId":"an","x":222,"y":32178,"width":200,"height":200,"minimized":true,"text":"Fx3A (XO-CHIP 1.1) Set pitch to VX"},"e%":{"blockId":"cZ","x":1891,"y":4853,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"pr":{"blockId":"h","x":1736,"y":11672,"width":200,"height":200,"minimized":true,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"}},"currentCostume":11,"costumes":[{"name":"A","bitmapResolution":1,"dataFormat":"svg","assetId":"5a67bd306c0bf6f3bd29fcd259681668","md5ext":"5a67bd306c0bf6f3bd29fcd259681668.svg","rotationCenterX":197.96057752698673,"rotationCenterY":134.53515818147002},{"name":"B","bitmapResolution":1,"dataFormat":"svg","assetId":"3dbedfde92fa9774b368009d5e856c28","md5ext":"3dbedfde92fa9774b368009d5e856c28.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"C","bitmapResolution":1,"dataFormat":"svg","assetId":"d8581cf97bdc02be716eced5d9e4a4fc","md5ext":"d8581cf97bdc02be716eced5d9e4a4fc.svg","rotationCenterX":197.96056723904934,"rotationCenterY":134.5351750000001},{"name":"D","bitmapResolution":1,"dataFormat":"svg","assetId":"5319555007c1bc849ce96b8693f91e67","md5ext":"5319555007c1bc849ce96b8693f91e67.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"E","bitmapResolution":1,"dataFormat":"svg","assetId":"c09533bcbc151112fb0f03b88f87bed1","md5ext":"c09533bcbc151112fb0f03b88f87bed1.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"F","bitmapResolution":1,"dataFormat":"svg","assetId":"71cf8a00a2bec14a6d00fb4355fec955","md5ext":"71cf8a00a2bec14a6d00fb4355fec955.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"G","bitmapResolution":1,"dataFormat":"svg","assetId":"a160d3b17bf006d0916d869b2aa72883","md5ext":"a160d3b17bf006d0916d869b2aa72883.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"H","bitmapResolution":1,"dataFormat":"svg","assetId":"d95bf8bc0199c91f2972e8e602aee9f5","md5ext":"d95bf8bc0199c91f2972e8e602aee9f5.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516},{"name":"I","bitmapResolution":1,"dataFormat":"svg","assetId":"398a717360787c80a62ba027b05c0fd1","md5ext":"398a717360787c80a62ba027b05c0fd1.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"J","bitmapResolution":1,"dataFormat":"svg","assetId":"149c08fc65e014934491ec4b4ba6b173","md5ext":"149c08fc65e014934491ec4b4ba6b173.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"K","bitmapResolution":1,"dataFormat":"svg","assetId":"481ce3622e5272400300e44d59169486","md5ext":"481ce3622e5272400300e44d59169486.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"L","bitmapResolution":1,"dataFormat":"svg","assetId":"fcd08606731faea7dd386fb5bf852bdf","md5ext":"fcd08606731faea7dd386fb5bf852bdf.svg","rotationCenterX":197.96058,"rotationCenterY":134.53516000000002},{"name":"M","bitmapResolution":1,"dataFormat":"svg","assetId":"b55c23a104193bdbcfd2d08d87798071","md5ext":"b55c23a104193bdbcfd2d08d87798071.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"N","bitmapResolution":1,"dataFormat":"svg","assetId":"f8209d3b6054336f0e295022aa1a1c0a","md5ext":"f8209d3b6054336f0e295022aa1a1c0a.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"O","bitmapResolution":1,"dataFormat":"svg","assetId":"72b0586109ccf379be92fc7cb07f4619","md5ext":"72b0586109ccf379be92fc7cb07f4619.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"P","bitmapResolution":1,"dataFormat":"svg","assetId":"8702d47af0d053c4ef2c0729b7e526f5","md5ext":"8702d47af0d053c4ef2c0729b7e526f5.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"Q","bitmapResolution":1,"dataFormat":"svg","assetId":"7e10c726db796effabd3a57049b3024b","md5ext":"7e10c726db796effabd3a57049b3024b.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"R","bitmapResolution":1,"dataFormat":"svg","assetId":"32d516f649322d50fee0903a40ac0718","md5ext":"32d516f649322d50fee0903a40ac0718.svg","rotationCenterX":197.96057755786387,"rotationCenterY":134.53516000000002},{"name":"S","bitmapResolution":1,"dataFormat":"svg","assetId":"3bb186a14f9405c9ff8a4e54880c42f2","md5ext":"3bb186a14f9405c9ff8a4e54880c42f2.svg","rotationCenterX":197.960565,"rotationCenterY":134.535175},{"name":"T","bitmapResolution":1,"dataFormat":"svg","assetId":"cd83082ac67005b2a36de06a611c4e6b","md5ext":"cd83082ac67005b2a36de06a611c4e6b.svg","rotationCenterX":197.960555,"rotationCenterY":134.535165},{"name":"U","bitmapResolution":1,"dataFormat":"svg","assetId":"3eb24fa6369af4118773f440c120dc0a","md5ext":"3eb24fa6369af4118773f440c120dc0a.svg","rotationCenterX":197.96056723904925,"rotationCenterY":134.535175},{"name":"V","bitmapResolution":1,"dataFormat":"svg","assetId":"12062d2aa2246e1c788009752fd4d607","md5ext":"12062d2aa2246e1c788009752fd4d607.svg","rotationCenterX":197.96053500000025,"rotationCenterY":134.53515500000003},{"name":"X","bitmapResolution":1,"dataFormat":"svg","assetId":"0ca6757ff88bb5e0ee2c06ca91101dcc","md5ext":"0ca6757ff88bb5e0ee2c06ca91101dcc.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"Y","bitmapResolution":1,"dataFormat":"svg","assetId":"2a2208412a5c269a99b0cfdb120ef050","md5ext":"2a2208412a5c269a99b0cfdb120ef050.svg","rotationCenterX":197.96056723904928,"rotationCenterY":134.53517499999998},{"name":"Z","bitmapResolution":1,"dataFormat":"svg","assetId":"f801f1a890244742cdc606a364c748ac","md5ext":"f801f1a890244742cdc606a364c748ac.svg","rotationCenterX":197.9605672390493,"rotationCenterY":134.53517499999998},{"name":"a","bitmapResolution":1,"dataFormat":"svg","assetId":"8796046f6feb8acb14a4dc3e49221d5a","md5ext":"8796046f6feb8acb14a4dc3e49221d5a.svg","rotationCenterX":197.96056723904934,"rotationCenterY":134.98400681677757},{"name":"b","bitmapResolution":1,"dataFormat":"svg","assetId":"03bcf3aa18f1bbb42d7ddd6fb04efb98","md5ext":"03bcf3aa18f1bbb42d7ddd6fb04efb98.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85722499999997},{"name":"c","bitmapResolution":1,"dataFormat":"svg","assetId":"2cc697cced5689ebbca3deb996eade78","md5ext":"2cc697cced5689ebbca3deb996eade78.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85724499999998},{"name":"d","bitmapResolution":1,"dataFormat":"svg","assetId":"caaa002b09cb3cff0f67cdbfc605882d","md5ext":"caaa002b09cb3cff0f67cdbfc605882d.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85724499999998},{"name":"e","bitmapResolution":1,"dataFormat":"svg","assetId":"4e8c781820738334dbde85fc3001216b","md5ext":"4e8c781820738334dbde85fc3001216b.svg","rotationCenterX":278.96936000000005,"rotationCenterY":133.85722499999997},{"name":"f","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"g","bitmapResolution":1,"dataFormat":"svg","assetId":"840e8579af829a1ec1dc4d9f5f62e938","md5ext":"840e8579af829a1ec1dc4d9f5f62e938.svg","rotationCenterX":197.9605672390494,"rotationCenterY":134.53517499999998},{"name":"h","bitmapResolution":1,"dataFormat":"svg","assetId":"e0ba338382c84a48198929122c4e3469","md5ext":"e0ba338382c84a48198929122c4e3469.svg","rotationCenterX":264.52208805845606,"rotationCenterY":134.4980209292247},{"name":"i","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"j","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"k","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"l","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"m","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"n","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"o","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"p","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"q","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"r","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"s","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"t","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"u","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"v","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"w","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"x","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"y","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"z","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"0","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"1","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"2","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"3","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"4","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"5","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"6","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"7","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"8","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"9","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"+","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"/","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"423930correct4","assetId":"63e15b4b132aaeaa1c569d631bbea1bf","dataFormat":"wav","format":"","rate":48000,"sampleCount":14393,"md5ext":"63e15b4b132aaeaa1c569d631bbea1bf.wav"},{"name":"423930__mudkip2016__correct2","assetId":"7102f57a8d7aee78d60c8f04b0b16caf","dataFormat":"wav","format":"","rate":48000,"sampleCount":7405,"md5ext":"7102f57a8d7aee78d60c8f04b0b16caf.wav"}],"volume":100,"layerOrder":24,"visible":false,"x":0,"y":45,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite6","variables":{},"lists":{},"broadcasts":{},"blocks":{"bcl":{"opcode":"event_whenflagclicked","next":"~T","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":390,"y":-65},"~T":{"opcode":"motion_gotoxy","next":"~U","parent":"bcl","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~U":{"opcode":"looks_hide","next":"bcm","parent":"~T","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bcm":{"opcode":"looks_gotofrontback","next":null,"parent":"~U","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"bcn":{"opcode":"event_whenbroadcastreceived","next":"~V","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":-19,"y":96},"~V":{"opcode":"looks_seteffectto","next":"~W","parent":"bcn","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"~W":{"opcode":"looks_show","next":"~X","parent":"~V","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~X":{"opcode":"control_repeat","next":null,"parent":"~W","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"~Y"]},"fields":{},"shadow":false,"topLevel":false},"~Y":{"opcode":"control_wait","next":"bco","parent":"~X","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bco":{"opcode":"looks_changeeffectby","next":null,"parent":"~Y","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"bcp":{"opcode":"event_whenbroadcastreceived","next":"Jz","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":45,"y":624},"Jz":{"opcode":"control_repeat","next":"bcq","parent":"bcp","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"bcr"]},"fields":{},"shadow":false,"topLevel":false},"bcr":{"opcode":"looks_changeeffectby","next":null,"parent":"Jz","inputs":{"CHANGE":[1,[4,"10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"bcq":{"opcode":"looks_hide","next":null,"parent":"Jz","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bcs":{"opcode":"event_whenbroadcastreceived","next":"g]","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":427,"y":424},"g]":{"opcode":"control_if","next":"~Z","parent":"bcs","inputs":{"CONDITION":[2,"bct"],"SUBSTACK":[2,"JA"]},"fields":{},"shadow":false,"topLevel":false},"bct":{"opcode":"operator_equals","next":null,"parent":"g]","inputs":{"OPERAND1":[3,[12,"Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"JA":{"opcode":"control_wait_until","next":"bcu","parent":"g]","inputs":{"CONDITION":[2,"bcv"]},"fields":{},"shadow":false,"topLevel":false},"bcv":{"opcode":"operator_equals","next":null,"parent":"JA","inputs":{"OPERAND1":[3,[12,"Theme Switch Flag","2|8uqLL4Dl//c4+.iA2j"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcu":{"opcode":"looks_hide","next":null,"parent":"JA","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~Z":{"opcode":"motion_gotoxy","next":"~!","parent":"g]","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~!":{"opcode":"looks_hide","next":"bcw","parent":"~Z","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bcw":{"opcode":"looks_gotofrontback","next":null,"parent":"~!","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false}},"comments":{"p*":{"blockId":"e:","x":4254,"y":4360,"width":200,"height":200,"minimized":true,"text":"NDS (hex)"},"p)":{"blockId":"e/","x":913,"y":3041,"width":200,"height":200,"minimized":true,"text":"GBA (base64)"},"p+":{"blockId":"e;","x":4254,"y":80,"width":200,"height":200,"minimized":true,"text":"NES (hex)"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"5ba399d68537b377b7743b61d00b876e","md5ext":"5ba399d68537b377b7743b61d00b876e.svg","rotationCenterX":319.57207207207205,"rotationCenterY":193.5}],"sounds":[],"volume":100,"layerOrder":26,"visible":true,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Background Effects","variables":{"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"Swf?+9St[b%9.+xZ;;;^":["rom.name",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]]},"broadcasts":{},"blocks":{"~#":{"opcode":"procedures_definition","next":"~%","parent":null,"inputs":{"custom_block":[1,"JB"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":456},"JB":{"opcode":"procedures_prototype","next":null,"parent":"~#","inputs":{"~BK0K$cz}t.h.rO=u#0K":[1,"bcx"],"Yz$f.MXbIbC69J7[Y(G{":[1,"bcy"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render %s %s","argumentids":"[\"~BK0K$cz}t.h.rO=u#0K\",\"Yz$f.MXbIbC69J7[Y(G{\"]","argumentnames":"[\"timer\",\"height\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bcx":{"opcode":"argument_reporter_string_number","next":null,"parent":"JB","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":true,"topLevel":false},"bcy":{"opcode":"argument_reporter_string_number","next":null,"parent":"JB","inputs":{},"fields":{"VALUE":["height",null]},"shadow":true,"topLevel":false},"~%":{"opcode":"pen_clear","next":"~(","parent":"~#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~(":{"opcode":"pen_setPenColorToColor","next":"#f","parent":"~%","inputs":{"COLOR":[1,[9,"#6cb7ff"]]},"fields":{},"shadow":false,"topLevel":false},"#f":{"opcode":"pen_setPenColorParamTo","next":"g^","parent":"~(","inputs":{"COLOR_PARAM":[1,"bcz"],"VALUE":[1,[4,"30"]]},"fields":{},"shadow":false,"topLevel":false},"bcz":{"opcode":"pen_menu_colorParam","next":null,"parent":"#f","inputs":{},"fields":{"colorParam":["transparency",null]},"shadow":true,"topLevel":false},"g^":{"opcode":"pen_changePenColorParamBy","next":"#g","parent":"#f","inputs":{"COLOR_PARAM":[1,"bcA"],"VALUE":[3,"~)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcA":{"opcode":"pen_menu_colorParam","next":null,"parent":"g^","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"~)":{"opcode":"operator_divide","next":null,"parent":"g^","inputs":{"NUM1":[3,"~*",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"~*":{"opcode":"operator_join","next":null,"parent":"~)","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"#h",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#h":{"opcode":"operator_join","next":null,"parent":"~*","inputs":{"STRING1":[3,"bcB",[10,""]],"STRING2":[3,"bcC",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bcB":{"opcode":"data_itemoflist","next":null,"parent":"#h","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bcC":{"opcode":"data_itemoflist","next":null,"parent":"#h","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"#g":{"opcode":"motion_setx","next":"~+","parent":"g^","inputs":{"X":[3,"bcD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcD":{"opcode":"operator_divide","next":null,"parent":"#g","inputs":{"NUM1":[3,[12,"stage width","i!Gu6~8n7Kk|ypDR{}Pb"],[4,"0"]],"NUM2":[1,[4,"-2"]]},"fields":{},"shadow":false,"topLevel":false},"~+":{"opcode":"control_repeat","next":null,"parent":"#g","inputs":{"TIMES":[3,[12,"stage width","i!Gu6~8n7Kk|ypDR{}Pb"],[6,"0"]],"SUBSTACK":[2,"~,"]},"fields":{},"shadow":false,"topLevel":false},"~,":{"opcode":"pen_penDown","next":"#i","parent":"~+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"#i":{"opcode":"motion_sety","next":"~-","parent":"~,","inputs":{"Y":[3,"#j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#j":{"opcode":"operator_subtract","next":null,"parent":"#i","inputs":{"NUM1":[3,"w/",[4,"0"]],"NUM2":[3,"bcE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"w/":{"opcode":"operator_subtract","next":null,"parent":"#j","inputs":{"NUM1":[3,"~.",[4,"0"]],"NUM2":[3,"~/",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~.":{"opcode":"operator_multiply","next":null,"parent":"w/","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,"~:",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~:":{"opcode":"operator_mathop","next":null,"parent":"~.","inputs":{"NUM":[3,"w:",[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"w:":{"opcode":"operator_add","next":null,"parent":"~:","inputs":{"NUM1":[3,"bcF",[4,"0"]],"NUM2":[3,"~;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcF":{"opcode":"motion_xposition","next":null,"parent":"w:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~;":{"opcode":"operator_multiply","next":null,"parent":"w:","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"bcG",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcG":{"opcode":"argument_reporter_string_number","next":null,"parent":"~;","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"~/":{"opcode":"operator_multiply","next":null,"parent":"w/","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"~=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~=":{"opcode":"operator_mathop","next":null,"parent":"~/","inputs":{"NUM":[3,"~?",[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"~?":{"opcode":"operator_multiply","next":null,"parent":"~=","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"w;",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"w;":{"opcode":"operator_add","next":null,"parent":"~?","inputs":{"NUM1":[3,"~@",[4,"0"]],"NUM2":[3,"bcH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~@":{"opcode":"operator_divide","next":null,"parent":"w;","inputs":{"NUM1":[3,"bcI",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"bcI":{"opcode":"motion_xposition","next":null,"parent":"~@","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bcH":{"opcode":"argument_reporter_string_number","next":null,"parent":"w;","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"bcE":{"opcode":"argument_reporter_string_number","next":null,"parent":"#j","inputs":{},"fields":{"VALUE":["height",null]},"shadow":false,"topLevel":false},"~-":{"opcode":"motion_sety","next":"~[","parent":"#i","inputs":{"Y":[1,[4,"-180"]]},"fields":{},"shadow":false,"topLevel":false},"~[":{"opcode":"pen_penUp","next":"w=","parent":"~-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"w=":{"opcode":"motion_sety","next":"bcJ","parent":"~[","inputs":{"Y":[3,"w?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"w?":{"opcode":"operator_subtract","next":null,"parent":"w=","inputs":{"NUM1":[3,"w@",[4,"0"]],"NUM2":[3,"bcK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"w@":{"opcode":"operator_subtract","next":null,"parent":"w?","inputs":{"NUM1":[3,"~]",[4,"0"]],"NUM2":[3,"~^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~]":{"opcode":"operator_multiply","next":null,"parent":"w@","inputs":{"NUM1":[1,[4,"10"]],"NUM2":[3,"~_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~_":{"opcode":"operator_mathop","next":null,"parent":"~]","inputs":{"NUM":[3,"w[",[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"w[":{"opcode":"operator_add","next":null,"parent":"~_","inputs":{"NUM1":[3,"bcL",[4,"0"]],"NUM2":[3,"~`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcL":{"opcode":"motion_xposition","next":null,"parent":"w[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"~`":{"opcode":"operator_multiply","next":null,"parent":"w[","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"bcM",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bcM":{"opcode":"argument_reporter_string_number","next":null,"parent":"~`","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"~^":{"opcode":"operator_multiply","next":null,"parent":"w@","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"~{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~{":{"opcode":"operator_mathop","next":null,"parent":"~^","inputs":{"NUM":[3,"~|",[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"~|":{"opcode":"operator_multiply","next":null,"parent":"~{","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"w]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"w]":{"opcode":"operator_add","next":null,"parent":"~|","inputs":{"NUM1":[3,"~}",[4,"0"]],"NUM2":[3,"bcN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"~}":{"opcode":"operator_divide","next":null,"parent":"w]","inputs":{"NUM1":[3,"bcO",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"bcO":{"opcode":"motion_xposition","next":null,"parent":"~}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bcN":{"opcode":"argument_reporter_string_number","next":null,"parent":"w]","inputs":{},"fields":{"VALUE":["timer",null]},"shadow":false,"topLevel":false},"bcK":{"opcode":"argument_reporter_string_number","next":null,"parent":"w?","inputs":{},"fields":{"VALUE":["height",null]},"shadow":false,"topLevel":false},"bcJ":{"opcode":"motion_changexby","next":null,"parent":"w=","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"~~":{"opcode":"procedures_definition","next":"aaa","parent":null,"inputs":{"custom_block":[1,"bcP"]},"fields":{},"shadow":false,"topLevel":true,"x":2122,"y":64},"bcP":{"opcode":"procedures_prototype","next":null,"parent":"~~","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get stage size","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"aaa":{"opcode":"looks_show","next":"w^","parent":"~~","inputs":{},"fields":{},"shadow":false,"topLevel":false},"w^":{"opcode":"looks_switchcostumeto","next":"aab","parent":"aaa","inputs":{"COSTUME":[1,"bcQ"]},"fields":{},"shadow":false,"topLevel":false},"bcQ":{"opcode":"looks_costume","next":null,"parent":"w^","inputs":{},"fields":{"COSTUME":["2x2 svg",null]},"shadow":true,"topLevel":false},"aab":{"opcode":"motion_gotoxy","next":"g_","parent":"w^","inputs":{"X":[1,[4,"-1"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"g_":{"opcode":"control_repeat_until","next":"w_","parent":"aab","inputs":{"CONDITION":[2,"aac"],"SUBSTACK":[2,"bcR"]},"fields":{},"shadow":false,"topLevel":false},"aac":{"opcode":"sensing_touchingobject","next":null,"parent":"g_","inputs":{"TOUCHINGOBJECTMENU":[1,"bcS"]},"fields":{},"shadow":false,"topLevel":false},"bcS":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"aac","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_edge_",null]},"shadow":true,"topLevel":false},"bcR":{"opcode":"motion_changexby","next":null,"parent":"g_","inputs":{"DX":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"w_":{"opcode":"data_setvariableto","next":"aad","parent":"g_","inputs":{"VALUE":[3,"aae",[10,""]]},"fields":{"VARIABLE":["stage width","i!Gu6~8n7Kk|ypDR{}Pb"]},"shadow":false,"topLevel":false},"aae":{"opcode":"operator_subtract","next":null,"parent":"w_","inputs":{"NUM1":[3,"aaf",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aaf":{"opcode":"operator_multiply","next":null,"parent":"aae","inputs":{"NUM1":[3,"bcT",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bcT":{"opcode":"motion_xposition","next":null,"parent":"aaf","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aad":{"opcode":"looks_switchcostumeto","next":null,"parent":"w_","inputs":{"COSTUME":[1,"bcU"]},"fields":{},"shadow":false,"topLevel":false},"bcU":{"opcode":"looks_costume","next":null,"parent":"aad","inputs":{},"fields":{"COSTUME":["costume1",null]},"shadow":true,"topLevel":false},"bcV":{"opcode":"event_whenbroadcastreceived","next":"aag","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["fade_out","~aYLGw3tAmLz}I]nV`xz"]},"shadow":false,"topLevel":true,"x":1731,"y":64},"aag":{"opcode":"pen_clear","next":"aah","parent":"bcV","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aah":{"opcode":"control_stop","next":"w`","parent":"aag","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"w`":{"opcode":"motion_goto","next":"aai","parent":"aah","inputs":{"TO":[1,"bcW"]},"fields":{},"shadow":false,"topLevel":false},"bcW":{"opcode":"motion_goto_menu","next":null,"parent":"w`","inputs":{},"fields":{"TO":["Blank",null]},"shadow":true,"topLevel":false},"aai":{"opcode":"looks_show","next":"aaj","parent":"w`","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aaj":{"opcode":"looks_seteffectto","next":"aak","parent":"aai","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aak":{"opcode":"looks_gotofrontback","next":"w{","parent":"aaj","inputs":{},"fields":{"FRONT_BACK":["front",null]},"shadow":false,"topLevel":false},"w{":{"opcode":"control_repeat","next":"aal","parent":"aak","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"bcX"]},"fields":{},"shadow":false,"topLevel":false},"bcX":{"opcode":"looks_changeeffectby","next":null,"parent":"w{","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aal":{"opcode":"looks_switchbackdropto","next":null,"parent":"w{","inputs":{"BACKDROP":[1,"bcY"]},"fields":{},"shadow":false,"topLevel":false},"bcY":{"opcode":"looks_backdrops","next":null,"parent":"aal","inputs":{},"fields":{"BACKDROP":["Black",null]},"shadow":true,"topLevel":false},"bcZ":{"opcode":"event_whenbroadcastreceived","next":"aam","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["stop_scripts","!J7PA/A8Vo=COeNoxT48"]},"shadow":false,"topLevel":true,"x":1305,"y":64},"aam":{"opcode":"looks_hide","next":"bc!","parent":"bcZ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bc!":{"opcode":"control_stop","next":null,"parent":"aam","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bc#":{"opcode":"event_whenbroadcastreceived","next":"aan","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":1305,"y":288},"aan":{"opcode":"pen_clear","next":"aao","parent":"bc#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aao":{"opcode":"looks_hide","next":"bc%","parent":"aan","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bc%":{"opcode":"control_stop","next":null,"parent":"aao","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bc(":{"opcode":"event_whenbroadcastreceived","next":"aap","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":48,"y":64},"aap":{"opcode":"procedures_call","next":"aaq","parent":"bc(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"get stage size","argumentids":"[]","warp":"true"}},"aaq":{"opcode":"looks_hide","next":"aar","parent":"aap","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aar":{"opcode":"sensing_resettimer","next":"aas","parent":"aaq","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aas":{"opcode":"control_forever","next":null,"parent":"aar","inputs":{"SUBSTACK":[2,"aat"]},"fields":{},"shadow":false,"topLevel":false},"aat":{"opcode":"procedures_call","next":null,"parent":"aas","inputs":{"~BK0K$cz}t.h.rO=u#0K":[3,"bc)",[10,""]],"Yz$f.MXbIbC69J7[Y(G{":[3,[12,"GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render %s %s","argumentids":"[\"~BK0K$cz}t.h.rO=u#0K\",\"Yz$f.MXbIbC69J7[Y(G{\"]","warp":"true"}},"bc)":{"opcode":"sensing_timer","next":null,"parent":"aat","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":1,"costumes":[{"name":"2x2 svg","bitmapResolution":1,"dataFormat":"svg","assetId":"4b7a854341abd530a6780bfb6a68627c","md5ext":"4b7a854341abd530a6780bfb6a68627c.svg","rotationCenterX":1,"rotationCenterY":1},{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"de237036015aadc4cec7c3902cc7ea1f","md5ext":"de237036015aadc4cec7c3902cc7ea1f.svg","rotationCenterX":246.5,"rotationCenterY":190.5}],"sounds":[],"volume":100,"layerOrder":3,"visible":false,"x":240,"y":-81.575291491,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Sprite1","variables":{"lo_vMT]e;W^6J}L{.;?|":["Velocity",0],"_FiygW_%~W7KsK!n$5T{":["S",0],"M1MRH6V)bg-6jD{ugH=J":["Input",0],"|vEUSf.D@`%N,D.^3/|b":["Ahello",0],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],"Y]@_gM9tP]mP@RvL@I{q":["chip8.drawtoggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0]},"lists":{"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]]},"broadcasts":{},"blocks":{"bc*":{"opcode":"event_whenbroadcastreceived","next":"g`","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["GUI_Emulator_Select","i``63/!/.F6oLg73$p#5"]},"shadow":false,"topLevel":true,"x":42,"y":57},"g`":{"opcode":"control_if_else","next":null,"parent":"bc*","inputs":{"CONDITION":[2,"w|"],"SUBSTACK":[2,"aau"],"SUBSTACK2":[2,"aav"]},"fields":{},"shadow":false,"topLevel":false},"w|":{"opcode":"operator_or","next":null,"parent":"g`","inputs":{"OPERAND1":[2,"bc+"],"OPERAND2":[2,"bc,"]},"fields":{},"shadow":false,"topLevel":false},"bc+":{"opcode":"operator_equals","next":null,"parent":"w|","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bc,":{"opcode":"operator_equals","next":null,"parent":"w|","inputs":{"OPERAND1":[3,[12,"Romimportflag","4M*03Ap*{iT39zNp]4vF"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aau":{"opcode":"data_setvariableto","next":"w}","parent":"g`","inputs":{"VALUE":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]]},"fields":{"VARIABLE":["Romimportflag","4M*03Ap*{iT39zNp]4vF"]},"shadow":false,"topLevel":false},"w}":{"opcode":"sound_play","next":null,"parent":"aau","inputs":{"SOUND_MENU":[3,"aaw","bc-"]},"fields":{},"shadow":false,"topLevel":false},"aaw":{"opcode":"operator_add","next":null,"parent":"w}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aax",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aax":{"opcode":"operator_multiply","next":null,"parent":"aaw","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bc.",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc.":{"opcode":"data_itemoflist","next":null,"parent":"aax","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bc-":{"opcode":"sound_sounds_menu","next":null,"parent":"w}","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aav":{"opcode":"data_setvariableto","next":"g{","parent":"g`","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["Inemu?","]qC)w3}-oa/}ILT-dNb="]},"shadow":false,"topLevel":false},"g{":{"opcode":"control_if","next":"g|","parent":"aav","inputs":{"CONDITION":[2,"bc/"],"SUBSTACK":[2,"g}"]},"fields":{},"shadow":false,"topLevel":false},"bc/":{"opcode":"operator_equals","next":null,"parent":"g{","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"g}":{"opcode":"sound_play","next":"bc:","parent":"g{","inputs":{"SOUND_MENU":[3,"aay","bc;"]},"fields":{},"shadow":false,"topLevel":false},"aay":{"opcode":"operator_add","next":null,"parent":"g}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aaz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaz":{"opcode":"operator_multiply","next":null,"parent":"aay","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bc=",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc=":{"opcode":"data_itemoflist","next":null,"parent":"aaz","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bc;":{"opcode":"sound_sounds_menu","next":null,"parent":"g}","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"bc:":{"opcode":"event_broadcast","next":null,"parent":"g}","inputs":{"BROADCAST_INPUT":[1,[11,"get_theme","xB|em[!gg`ddhH3H,iB6"]]},"fields":{},"shadow":false,"topLevel":false},"g|":{"opcode":"control_if","next":"g~","parent":"g{","inputs":{"CONDITION":[2,"bc?"],"SUBSTACK":[2,"ha"]},"fields":{},"shadow":false,"topLevel":false},"bc?":{"opcode":"operator_equals","next":null,"parent":"g|","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ha":{"opcode":"sound_play","next":"bc@","parent":"g|","inputs":{"SOUND_MENU":[3,"aaA","bc["]},"fields":{},"shadow":false,"topLevel":false},"aaA":{"opcode":"operator_add","next":null,"parent":"ha","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aaB",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaB":{"opcode":"operator_multiply","next":null,"parent":"aaA","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bc]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc]":{"opcode":"data_itemoflist","next":null,"parent":"aaB","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bc[":{"opcode":"sound_sounds_menu","next":null,"parent":"ha","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"bc@":{"opcode":"event_broadcast","next":null,"parent":"ha","inputs":{"BROADCAST_INPUT":[1,[11,"get_controls","g91@,@Kt00yu7FuRXO~I"]]},"fields":{},"shadow":false,"topLevel":false},"g~":{"opcode":"control_if","next":"hb","parent":"g|","inputs":{"CONDITION":[2,"bc^"],"SUBSTACK":[2,"hc"]},"fields":{},"shadow":false,"topLevel":false},"bc^":{"opcode":"operator_equals","next":null,"parent":"g~","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-200"]]},"fields":{},"shadow":false,"topLevel":false},"hc":{"opcode":"sound_play","next":"bc_","parent":"g~","inputs":{"SOUND_MENU":[3,"aaC","bc`"]},"fields":{},"shadow":false,"topLevel":false},"aaC":{"opcode":"operator_add","next":null,"parent":"hc","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aaD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaD":{"opcode":"operator_multiply","next":null,"parent":"aaC","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bc{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc{":{"opcode":"data_itemoflist","next":null,"parent":"aaD","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bc`":{"opcode":"sound_sounds_menu","next":null,"parent":"hc","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"bc_":{"opcode":"event_broadcast","next":null,"parent":"hc","inputs":{"BROADCAST_INPUT":[1,[11,"get_rom","oauq{1.?KIC%2JlgJq^:"]]},"fields":{},"shadow":false,"topLevel":false},"hb":{"opcode":"control_if","next":"hd","parent":"g~","inputs":{"CONDITION":[2,"bc|"],"SUBSTACK":[2,"aaE"]},"fields":{},"shadow":false,"topLevel":false},"bc|":{"opcode":"operator_equals","next":null,"parent":"hb","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-400"]]},"fields":{},"shadow":false,"topLevel":false},"aaE":{"opcode":"event_broadcast","next":"he","parent":"hb","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"he":{"opcode":"sound_play","next":"aaF","parent":"aaE","inputs":{"SOUND_MENU":[3,"aaG","bc}"]},"fields":{},"shadow":false,"topLevel":false},"aaG":{"opcode":"operator_add","next":null,"parent":"he","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aaH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaH":{"opcode":"operator_multiply","next":null,"parent":"aaG","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bc~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bc~":{"opcode":"data_itemoflist","next":null,"parent":"aaH","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bc}":{"opcode":"sound_sounds_menu","next":null,"parent":"he","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aaF":{"opcode":"event_broadcastandwait","next":"w~","parent":"he","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"w~":{"opcode":"looks_switchbackdropto","next":"bda","parent":"aaF","inputs":{"BACKDROP":[1,"bdb"]},"fields":{},"shadow":false,"topLevel":false},"bdb":{"opcode":"looks_backdrops","next":null,"parent":"w~","inputs":{},"fields":{"BACKDROP":["Chip-8",null]},"shadow":true,"topLevel":false},"bda":{"opcode":"event_broadcast","next":null,"parent":"w~","inputs":{"BROADCAST_INPUT":[1,[11,"Chip-8","onPsFYdb^;g,DoWfegZ6"]]},"fields":{},"shadow":false,"topLevel":false},"hd":{"opcode":"control_if","next":"hf","parent":"hb","inputs":{"CONDITION":[2,"bdc"],"SUBSTACK":[2,"aaI"]},"fields":{},"shadow":false,"topLevel":false},"bdc":{"opcode":"operator_equals","next":null,"parent":"hd","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-600"]]},"fields":{},"shadow":false,"topLevel":false},"aaI":{"opcode":"event_broadcast","next":"hg","parent":"hd","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"hg":{"opcode":"sound_play","next":"aaJ","parent":"aaI","inputs":{"SOUND_MENU":[3,"aaK","bdd"]},"fields":{},"shadow":false,"topLevel":false},"aaK":{"opcode":"operator_add","next":null,"parent":"hg","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aaL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaL":{"opcode":"operator_multiply","next":null,"parent":"aaK","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bde",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bde":{"opcode":"data_itemoflist","next":null,"parent":"aaL","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdd":{"opcode":"sound_sounds_menu","next":null,"parent":"hg","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aaJ":{"opcode":"event_broadcastandwait","next":"xa","parent":"hg","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xa":{"opcode":"looks_switchbackdropto","next":"bdf","parent":"aaJ","inputs":{"BACKDROP":[1,"bdg"]},"fields":{},"shadow":false,"topLevel":false},"bdg":{"opcode":"looks_backdrops","next":null,"parent":"xa","inputs":{},"fields":{"BACKDROP":["Game Boy",null]},"shadow":true,"topLevel":false},"bdf":{"opcode":"event_broadcast","next":null,"parent":"xa","inputs":{"BROADCAST_INPUT":[1,[11,"emulate!!","q@nrUic%_jFs,BP#Pz@]"]]},"fields":{},"shadow":false,"topLevel":false},"hf":{"opcode":"control_if","next":"hh","parent":"hd","inputs":{"CONDITION":[2,"bdh"],"SUBSTACK":[2,"aaM"]},"fields":{},"shadow":false,"topLevel":false},"bdh":{"opcode":"operator_equals","next":null,"parent":"hf","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-800"]]},"fields":{},"shadow":false,"topLevel":false},"aaM":{"opcode":"event_broadcast","next":"hi","parent":"hf","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"hi":{"opcode":"sound_play","next":"aaN","parent":"aaM","inputs":{"SOUND_MENU":[3,"aaO","bdi"]},"fields":{},"shadow":false,"topLevel":false},"aaO":{"opcode":"operator_add","next":null,"parent":"hi","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aaP",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaP":{"opcode":"operator_multiply","next":null,"parent":"aaO","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdj",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdj":{"opcode":"data_itemoflist","next":null,"parent":"aaP","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdi":{"opcode":"sound_sounds_menu","next":null,"parent":"hi","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aaN":{"opcode":"event_broadcastandwait","next":"xb","parent":"hi","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xb":{"opcode":"looks_switchbackdropto","next":"bdk","parent":"aaN","inputs":{"BACKDROP":[1,"bdl"]},"fields":{},"shadow":false,"topLevel":false},"bdl":{"opcode":"looks_backdrops","next":null,"parent":"xb","inputs":{},"fields":{"BACKDROP":["screen",null]},"shadow":true,"topLevel":false},"bdk":{"opcode":"event_broadcast","next":null,"parent":"xb","inputs":{"BROADCAST_INPUT":[1,[11,"start game","gofV]+|49LxJ]7Ibhwn8"]]},"fields":{},"shadow":false,"topLevel":false},"hh":{"opcode":"control_if","next":"hj","parent":"hf","inputs":{"CONDITION":[2,"bdm"],"SUBSTACK":[2,"aaQ"]},"fields":{},"shadow":false,"topLevel":false},"bdm":{"opcode":"operator_equals","next":null,"parent":"hh","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1000"]]},"fields":{},"shadow":false,"topLevel":false},"aaQ":{"opcode":"event_broadcast","next":"hk","parent":"hh","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"hk":{"opcode":"sound_play","next":"aaR","parent":"aaQ","inputs":{"SOUND_MENU":[3,"aaS","bdn"]},"fields":{},"shadow":false,"topLevel":false},"aaS":{"opcode":"operator_add","next":null,"parent":"hk","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aaT",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aaT":{"opcode":"operator_multiply","next":null,"parent":"aaS","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdo":{"opcode":"data_itemoflist","next":null,"parent":"aaT","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdn":{"opcode":"sound_sounds_menu","next":null,"parent":"hk","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aaR":{"opcode":"event_broadcastandwait","next":"xc","parent":"hk","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xc":{"opcode":"looks_switchbackdropto","next":"aaU","parent":"aaR","inputs":{"BACKDROP":[1,"bdp"]},"fields":{},"shadow":false,"topLevel":false},"bdp":{"opcode":"looks_backdrops","next":null,"parent":"xc","inputs":{},"fields":{"BACKDROP":["NES",null]},"shadow":true,"topLevel":false},"aaU":{"opcode":"event_broadcastandwait","next":"aaV","parent":"xc","inputs":{"BROADCAST_INPUT":[1,[11,"init","/]Pw*,JgP~%ctRqLaCr]"]]},"fields":{},"shadow":false,"topLevel":false},"aaV":{"opcode":"event_broadcastandwait","next":"aaW","parent":"aaU","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"aaW":{"opcode":"event_broadcast","next":"bdq","parent":"aaV","inputs":{"BROADCAST_INPUT":[1,[11,"unpause","so.q}ABBns#?n!myeYQ("]]},"fields":{},"shadow":false,"topLevel":false},"bdq":{"opcode":"data_setvariableto","next":null,"parent":"aaW","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"hj":{"opcode":"control_if","next":"hl","parent":"hh","inputs":{"CONDITION":[2,"bdr"],"SUBSTACK":[2,"aaX"]},"fields":{},"shadow":false,"topLevel":false},"bdr":{"opcode":"operator_equals","next":null,"parent":"hj","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1200"]]},"fields":{},"shadow":false,"topLevel":false},"aaX":{"opcode":"event_broadcast","next":"hm","parent":"hj","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"hm":{"opcode":"sound_play","next":"aaY","parent":"aaX","inputs":{"SOUND_MENU":[3,"aaZ","bds"]},"fields":{},"shadow":false,"topLevel":false},"aaZ":{"opcode":"operator_add","next":null,"parent":"hm","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aa!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aa!":{"opcode":"operator_multiply","next":null,"parent":"aaZ","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdt",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdt":{"opcode":"data_itemoflist","next":null,"parent":"aa!","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bds":{"opcode":"sound_sounds_menu","next":null,"parent":"hm","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aaY":{"opcode":"event_broadcastandwait","next":"xd","parent":"hm","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xd":{"opcode":"looks_switchbackdropto","next":"bdu","parent":"aaY","inputs":{"BACKDROP":[1,"bdv"]},"fields":{},"shadow":false,"topLevel":false},"bdv":{"opcode":"looks_backdrops","next":null,"parent":"xd","inputs":{},"fields":{"BACKDROP":["BytePusher",null]},"shadow":true,"topLevel":false},"bdu":{"opcode":"event_broadcast","next":null,"parent":"xd","inputs":{"BROADCAST_INPUT":[1,[11,"BytePusher",".+sr=pJUQmu{0)%LLjC}"]]},"fields":{},"shadow":false,"topLevel":false},"hl":{"opcode":"control_if","next":"xe","parent":"hj","inputs":{"CONDITION":[2,"bdw"],"SUBSTACK":[2,"aa#"]},"fields":{},"shadow":false,"topLevel":false},"bdw":{"opcode":"operator_equals","next":null,"parent":"hl","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1400"]]},"fields":{},"shadow":false,"topLevel":false},"aa#":{"opcode":"event_broadcast","next":"hn","parent":"hl","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"hn":{"opcode":"sound_play","next":"aa%","parent":"aa#","inputs":{"SOUND_MENU":[3,"aa(","bdx"]},"fields":{},"shadow":false,"topLevel":false},"aa(":{"opcode":"operator_add","next":null,"parent":"hn","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aa)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aa)":{"opcode":"operator_multiply","next":null,"parent":"aa(","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdy":{"opcode":"data_itemoflist","next":null,"parent":"aa)","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdx":{"opcode":"sound_sounds_menu","next":null,"parent":"hn","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aa%":{"opcode":"event_broadcastandwait","next":"xf","parent":"hn","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xf":{"opcode":"looks_switchbackdropto","next":"bdz","parent":"aa%","inputs":{"BACKDROP":[1,"bdA"]},"fields":{},"shadow":false,"topLevel":false},"bdA":{"opcode":"looks_backdrops","next":null,"parent":"xf","inputs":{},"fields":{"BACKDROP":["HelloWorld",null]},"shadow":true,"topLevel":false},"bdz":{"opcode":"event_broadcast","next":null,"parent":"xf","inputs":{"BROADCAST_INPUT":[1,[11,"HelloInter","UJX@vI^YiH#tJAcG0`PO"]]},"fields":{},"shadow":false,"topLevel":false},"xe":{"opcode":"control_if","next":null,"parent":"hl","inputs":{"CONDITION":[2,"bdB"],"SUBSTACK":[2,"aa*"]},"fields":{},"shadow":false,"topLevel":false},"bdB":{"opcode":"operator_equals","next":null,"parent":"xe","inputs":{"OPERAND1":[3,[12,"MenuScroll","BE)e;?PnrdmTcO@x9]LQ"],[10,""]],"OPERAND2":[1,[10,"-1600"]]},"fields":{},"shadow":false,"topLevel":false},"aa*":{"opcode":"event_broadcast","next":"ho","parent":"xe","inputs":{"BROADCAST_INPUT":[1,[11,"Launch Emulator","JCga`c%_Lh.vS^Oi-]%~"]]},"fields":{},"shadow":false,"topLevel":false},"ho":{"opcode":"sound_play","next":"aa+","parent":"aa*","inputs":{"SOUND_MENU":[3,"aa,","bdC"]},"fields":{},"shadow":false,"topLevel":false},"aa,":{"opcode":"operator_add","next":null,"parent":"ho","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aa-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aa-":{"opcode":"operator_multiply","next":null,"parent":"aa,","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdD",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdD":{"opcode":"data_itemoflist","next":null,"parent":"aa-","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdC":{"opcode":"sound_sounds_menu","next":null,"parent":"ho","inputs":{},"fields":{"SOUND_MENU":["423930__mudkip2016__correct",null]},"shadow":true,"topLevel":false},"aa+":{"opcode":"event_broadcastandwait","next":"xg","parent":"ho","inputs":{"BROADCAST_INPUT":[1,[11,"Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]]},"fields":{},"shadow":false,"topLevel":false},"xg":{"opcode":"looks_switchbackdropto","next":"bdE","parent":"aa+","inputs":{"BACKDROP":[1,"bdF"]},"fields":{},"shadow":false,"topLevel":false},"bdF":{"opcode":"looks_backdrops","next":null,"parent":"xg","inputs":{},"fields":{"BACKDROP":["SI8080",null]},"shadow":true,"topLevel":false},"bdE":{"opcode":"event_broadcast","next":null,"parent":"xg","inputs":{"BROADCAST_INPUT":[1,[11,"8080","5F;%8N/Qr^Di?+)(*eE."]]},"fields":{},"shadow":false,"topLevel":false},"bdG":{"opcode":"event_whenbroadcastreceived","next":"hp","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":48,"y":4504},"hp":{"opcode":"control_if","next":"bdH","parent":"bdG","inputs":{"CONDITION":[2,"aa."],"SUBSTACK":[2,"bdI"]},"fields":{},"shadow":false,"topLevel":false},"aa.":{"opcode":"operator_not","next":null,"parent":"hp","inputs":{"OPERAND":[2,"bdJ"]},"fields":{},"shadow":false,"topLevel":false},"bdJ":{"opcode":"operator_equals","next":null,"parent":"aa.","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bdI":{"opcode":"control_stop","next":null,"parent":"hp","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bdH":{"opcode":"looks_hide","next":null,"parent":"hp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bdK":{"opcode":"event_whenbroadcastreceived","next":"hq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Launch EmulatorWaitd","!2(a]?F2a@E8z]_J[5|e"]},"shadow":false,"topLevel":true,"x":48,"y":5360},"hq":{"opcode":"control_if","next":"bdL","parent":"bdK","inputs":{"CONDITION":[2,"aa/"],"SUBSTACK":[2,"bdM"]},"fields":{},"shadow":false,"topLevel":false},"aa/":{"opcode":"operator_not","next":null,"parent":"hq","inputs":{"OPERAND":[2,"bdN"]},"fields":{},"shadow":false,"topLevel":false},"bdN":{"opcode":"operator_equals","next":null,"parent":"aa/","inputs":{"OPERAND1":[3,[12,"Inemu?","]qC)w3}-oa/}ILT-dNb="],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bdM":{"opcode":"control_stop","next":null,"parent":"hq","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bdL":{"opcode":"looks_hide","next":null,"parent":"hq","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bdO":{"opcode":"event_whenbroadcastreceived","next":"bdP","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]},"shadow":false,"topLevel":true,"x":48,"y":5680},"bdP":{"opcode":"looks_hide","next":null,"parent":"bdO","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bdQ":{"opcode":"event_whenbroadcastreceived","next":"aa:","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":495,"y":5308},"aa:":{"opcode":"looks_cleargraphiceffects","next":"aa;","parent":"bdQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aa;":{"opcode":"looks_seteffectto","next":"aa=","parent":"aa:","inputs":{"VALUE":[1,[4,"100"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aa=":{"opcode":"motion_gotoxy","next":"hr","parent":"aa;","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"30"]]},"fields":{},"shadow":false,"topLevel":false},"hr":{"opcode":"looks_switchcostumeto","next":"aa?","parent":"aa=","inputs":{"COSTUME":[3,"aa@","bdR"]},"fields":{},"shadow":false,"topLevel":false},"aa@":{"opcode":"operator_subtract","next":null,"parent":"hr","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"bdS",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdS":{"opcode":"argument_reporter_boolean","next":null,"parent":"aa@","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"bdR":{"opcode":"looks_costume","next":null,"parent":"hr","inputs":{},"fields":{"COSTUME":["costume2",null]},"shadow":true,"topLevel":false},"aa?":{"opcode":"looks_setsizeto","next":"aa[","parent":"hr","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aa[":{"opcode":"motion_pointindirection","next":"aa]","parent":"aa?","inputs":{"DIRECTION":[1,[8,"90"]]},"fields":{},"shadow":false,"topLevel":false},"aa]":{"opcode":"looks_show","next":"xh","parent":"aa[","inputs":{},"fields":{},"shadow":false,"topLevel":false},"xh":{"opcode":"control_repeat","next":"aa^","parent":"aa]","inputs":{"TIMES":[1,[6,"10"]],"SUBSTACK":[2,"aa_"]},"fields":{},"shadow":false,"topLevel":false},"aa_":{"opcode":"motion_changeyby","next":"bdT","parent":"xh","inputs":{"DY":[1,[4,"-3"]]},"fields":{},"shadow":false,"topLevel":false},"bdT":{"opcode":"looks_changeeffectby","next":null,"parent":"aa_","inputs":{"CHANGE":[1,[4,"-10"]]},"fields":{"EFFECT":["GHOST",null]},"shadow":false,"topLevel":false},"aa^":{"opcode":"data_hidevariable","next":"xi","parent":"xh","inputs":{},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"xi":{"opcode":"data_setvariableto","next":"aa`","parent":"aa^","inputs":{"VALUE":[3,"aa{",[10,""]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"aa{":{"opcode":"operator_add","next":null,"parent":"xi","inputs":{"NUM1":[1,[4,"130"]],"NUM2":[3,"aa|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aa|":{"opcode":"operator_multiply","next":null,"parent":"aa{","inputs":{"NUM1":[3,"bdU",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"bdU":{"opcode":"argument_reporter_boolean","next":null,"parent":"aa|","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"aa`":{"opcode":"control_wait","next":"aa}","parent":"xi","inputs":{"DURATION":[1,[5,"0.9"]]},"fields":{},"shadow":false,"topLevel":false},"aa}":{"opcode":"event_broadcast","next":"xj","parent":"aa`","inputs":{"BROADCAST_INPUT":[1,[11,"logomove","DcmIuyN[t=e,sXx3*Ij3"]]},"fields":{},"shadow":false,"topLevel":false},"xj":{"opcode":"looks_seteffectto","next":"xk","parent":"aa}","inputs":{"VALUE":[3,"aa~",[4,"0"]]},"fields":{"EFFECT":["COLOR",null]},"shadow":false,"topLevel":false},"aa~":{"opcode":"operator_join","next":null,"parent":"xj","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"xl",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"xl":{"opcode":"operator_join","next":null,"parent":"aa~","inputs":{"STRING1":[3,"bdV",[10,""]],"STRING2":[3,"bdW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bdV":{"opcode":"data_itemoflist","next":null,"parent":"xl","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bdW":{"opcode":"data_itemoflist","next":null,"parent":"xl","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"xk":{"opcode":"control_repeat","next":null,"parent":"xj","inputs":{"TIMES":[3,"aba",[6,"0"]],"SUBSTACK":[2,"abb"]},"fields":{},"shadow":false,"topLevel":false},"aba":{"opcode":"operator_add","next":null,"parent":"xk","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"bdX",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdX":{"opcode":"argument_reporter_boolean","next":null,"parent":"aba","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"abb":{"opcode":"looks_nextcostume","next":"xm","parent":"xk","inputs":{},"fields":{},"shadow":false,"topLevel":false},"xm":{"opcode":"control_wait","next":"bdY","parent":"abb","inputs":{"DURATION":[3,"abc",[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"abc":{"opcode":"operator_divide","next":null,"parent":"xm","inputs":{"NUM1":[3,"abd",[4,"0"]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"abd":{"opcode":"operator_add","next":null,"parent":"abc","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bdZ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bdZ":{"opcode":"argument_reporter_boolean","next":null,"parent":"abd","inputs":{},"fields":{"VALUE":["is compiled?",null]},"shadow":false,"topLevel":false},"bdY":{"opcode":"data_changevariableby","next":null,"parent":"xm","inputs":{"VALUE":[1,[4,"-10"]]},"fields":{"VARIABLE":["GUItemp","HBshDh%Y+0(5_G*i%?=U-temp-"]},"shadow":false,"topLevel":false},"bd!":{"opcode":"event_whenbroadcastreceived","next":"abe","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":48,"y":6632},"abe":{"opcode":"event_broadcast","next":"JC","parent":"bd!","inputs":{"BROADCAST_INPUT":[1,[11,"pause","a/*ydNVQOyIS;1P2=ed*"]]},"fields":{},"shadow":false,"topLevel":false},"JC":{"opcode":"control_if_else","next":"abf","parent":"abe","inputs":{"CONDITION":[2,"abg"],"SUBSTACK":[2,"bd#"],"SUBSTACK2":[2,"bd%"]},"fields":{},"shadow":false,"topLevel":false},"abg":{"opcode":"operator_equals","next":null,"parent":"JC","inputs":{"OPERAND1":[3,"bd(",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd(":{"opcode":"data_itemoflist","next":null,"parent":"abg","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bd#":{"opcode":"looks_hide","next":null,"parent":"JC","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bd%":{"opcode":"looks_show","next":null,"parent":"JC","inputs":{},"fields":{},"shadow":false,"topLevel":false},"abf":{"opcode":"data_setvariableto","next":"abh","parent":"JC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"]},"shadow":false,"topLevel":false},"abh":{"opcode":"control_wait","next":"xn","parent":"abf","inputs":{"DURATION":[1,[5,"1.5"]]},"fields":{},"shadow":false,"topLevel":false},"xn":{"opcode":"control_if","next":null,"parent":"abh","inputs":{"CONDITION":[2,"abi"],"SUBSTACK":[2,"abj"]},"fields":{},"shadow":false,"topLevel":false},"abi":{"opcode":"operator_equals","next":null,"parent":"xn","inputs":{"OPERAND1":[3,"bd)",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd)":{"opcode":"data_itemoflist","next":null,"parent":"abi","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"abj":{"opcode":"control_forever","next":null,"parent":"xn","inputs":{"SUBSTACK":[2,"xo"]},"fields":{},"shadow":false,"topLevel":false},"xo":{"opcode":"data_setvariableto","next":"abk","parent":"abj","inputs":{"VALUE":[3,"abl",[10,""]]},"fields":{"VARIABLE":["my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"]},"shadow":false,"topLevel":false},"abl":{"opcode":"operator_mod","next":null,"parent":"xo","inputs":{"NUM1":[3,"bd*",[4,"0"]],"NUM2":[1,[4,"725"]]},"fields":{},"shadow":false,"topLevel":false},"bd*":{"opcode":"operator_add","next":null,"parent":"abl","inputs":{"NUM1":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"abk":{"opcode":"motion_changeyby","next":null,"parent":"xo","inputs":{"DY":[3,"bd+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bd+":{"opcode":"operator_mathop","next":null,"parent":"abk","inputs":{"NUM":[3,[12,"my variable","`jEk@4|i[#Fk?(8x)AV.-my variable"],[4,"0"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"bd,":{"opcode":"event_whenbroadcastreceived","next":"xp","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["logomove","DcmIuyN[t=e,sXx3*Ij3"]},"shadow":false,"topLevel":true,"x":1047,"y":5969},"xp":{"opcode":"control_repeat","next":"abm","parent":"bd,","inputs":{"TIMES":[1,[6,"15"]],"SUBSTACK":[2,"bd-"]},"fields":{},"shadow":false,"topLevel":false},"bd-":{"opcode":"looks_changesizeby","next":null,"parent":"xp","inputs":{"CHANGE":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"abm":{"opcode":"motion_glidesecstoxy","next":null,"parent":"xp","inputs":{"SECS":[1,[4,"0.5"]],"X":[1,[4,"0"]],"Y":[3,"abn",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"abn":{"opcode":"operator_add","next":null,"parent":"abm","inputs":{"NUM1":[1,[4,"50"]],"NUM2":[3,"abo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"abo":{"opcode":"operator_multiply","next":null,"parent":"abn","inputs":{"NUM1":[3,"bd.",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"bd.":{"opcode":"data_itemoflist","next":null,"parent":"abo","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["Menu Theme","o9uHH*42(Vb;iI,jwYr2"]},"shadow":false,"topLevel":false},"bd/":{"opcode":"event_whenflagclicked","next":"bd:","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":947,"y":5474},"bd:":{"opcode":"looks_hide","next":null,"parent":"bd/","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":9,"costumes":[{"name":"costume9","bitmapResolution":1,"dataFormat":"svg","assetId":"ea3c00fe5840dbb89d3f4d468d69e2f7","md5ext":"ea3c00fe5840dbb89d3f4d468d69e2f7.svg","rotationCenterX":358.21245999999996,"rotationCenterY":76.85859445457439},{"name":"costume2","bitmapResolution":1,"dataFormat":"svg","assetId":"440c5acfe8253a9394f8e275e573ac26","md5ext":"440c5acfe8253a9394f8e275e573ac26.svg","rotationCenterX":306.991645,"rotationCenterY":44.99998991821289},{"name":"costume10","bitmapResolution":1,"dataFormat":"svg","assetId":"372cdf669842285d9c3e86cd0bba8d8d","md5ext":"372cdf669842285d9c3e86cd0bba8d8d.svg","rotationCenterX":239,"rotationCenterY":46.5},{"name":"costume3","bitmapResolution":1,"dataFormat":"svg","assetId":"9b3381b864542ff128794f679e588d8c","md5ext":"9b3381b864542ff128794f679e588d8c.svg","rotationCenterX":232.5,"rotationCenterY":43.5},{"name":"costume4","bitmapResolution":1,"dataFormat":"svg","assetId":"ffcb0c055d2682b327c972843b8909a7","md5ext":"ffcb0c055d2682b327c972843b8909a7.svg","rotationCenterX":219.5,"rotationCenterY":45},{"name":"costume5","bitmapResolution":1,"dataFormat":"svg","assetId":"0fa6b58470f0ac1cf8321dde0e9fa38e","md5ext":"0fa6b58470f0ac1cf8321dde0e9fa38e.svg","rotationCenterX":212.25,"rotationCenterY":53.00000000000003},{"name":"costume6","bitmapResolution":1,"dataFormat":"svg","assetId":"535d586aadbaa989862a9e10151fd9a9","md5ext":"535d586aadbaa989862a9e10151fd9a9.svg","rotationCenterX":211.87469170389932,"rotationCenterY":88.00000000000001},{"name":"costume7","bitmapResolution":1,"dataFormat":"svg","assetId":"8ff00eb7738536f369a63bfada00f6c2","md5ext":"8ff00eb7738536f369a63bfada00f6c2.svg","rotationCenterX":212.29207044667825,"rotationCenterY":58.99999999999997},{"name":"costume8","bitmapResolution":1,"dataFormat":"svg","assetId":"d6d5b83de01249f66539025f231fa08d","md5ext":"d6d5b83de01249f66539025f231fa08d.svg","rotationCenterX":213.78115372460857,"rotationCenterY":45},{"name":"costume11","bitmapResolution":1,"dataFormat":"svg","assetId":"0e88a01112b43aeb448be7ab45c0d979","md5ext":"0e88a01112b43aeb448be7ab45c0d979.svg","rotationCenterX":213.36074829101562,"rotationCenterY":42.375}],"sounds":[{"name":"423930__mudkip2016__correct","assetId":"2b8df150fec576ea0df648ffc581e51e","dataFormat":"wav","rate":48000,"sampleCount":30712,"md5ext":"2b8df150fec576ea0df648ffc581e51e.wav"},{"name":"select","assetId":"65eb4aaa919adcce058cc10a7ed6af29","dataFormat":"wav","rate":48000,"sampleCount":35108,"md5ext":"65eb4aaa919adcce058cc10a7ed6af29.wav"},{"name":"Theme WDS","assetId":"b81b7213b4eeb0a16dc1597935d57f93","dataFormat":"wav","rate":48000,"sampleCount":52739,"md5ext":"b81b7213b4eeb0a16dc1597935d57f93.wav"},{"name":"Select WDS","assetId":"efa54f1f5c9f95b7aa4ae66cf5b69d44","dataFormat":"wav","rate":48000,"sampleCount":53920,"md5ext":"efa54f1f5c9f95b7aa4ae66cf5b69d44.wav"}],"volume":100,"layerOrder":16,"visible":false,"x":0,"y":50.9396926208,"size":84.63503270482312,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"DS Screens","variables":{"}^!zcd7*?=frof;O)@)i":["x",256],"Cs^]Xb{z|}3IPS([*+Id":["y",192],"uT+UflmU:r]iynT/z;M0":["arm9.read_return",0],"!72:zgELj#}TT9OT7jqU":["arm7.read_return",0],",[3+,ez*wmn?Q;]`x!%%":["core.byte_return",0],"=#O@Exty[GB(D0k,a1(L":["render.dummy","0"]},"lists":{},"broadcasts":{},"blocks":{"aX":{"opcode":"control_if_else","next":null,"parent":"hs","inputs":{"CONDITION":[2,"abp"],"SUBSTACK":[2,"ht"],"SUBSTACK2":[2,"hu"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bZ"},"abq":{"opcode":"data_setvariableto","next":null,"parent":"bW","inputs":{"VALUE":[3,"abr",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"abs":{"opcode":"operator_divide","next":null,"parent":"abt","inputs":{"NUM1":[3,"abu",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"abu":{"opcode":"operator_subtract","next":null,"parent":"abs","inputs":{"NUM1":[3,"bd;",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"abv":{"opcode":"operator_divide","next":null,"parent":"abw","inputs":{"NUM1":[3,"abx",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"abw":{"opcode":"operator_mathop","next":null,"parent":"aby","inputs":{"NUM":[3,"abv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"abx":{"opcode":"operator_subtract","next":null,"parent":"abv","inputs":{"NUM1":[3,"bd=",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"aby":{"opcode":"operator_add","next":null,"parent":"abz","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"abw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abA":{"opcode":"operator_gt","next":null,"parent":"hv","inputs":{"OPERAND1":[3,"bd?",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"abB":{"opcode":"operator_gt","next":null,"parent":"hw","inputs":{"OPERAND1":[3,"bd@",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"abC":{"opcode":"data_setvariableto","next":null,"parent":"hw","inputs":{"VALUE":[3,"abD",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"abE":{"opcode":"operator_gt","next":null,"parent":"I}","inputs":{"OPERAND1":[3,"bd[",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"abF":{"opcode":"operator_add","next":null,"parent":"abr","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"abt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abr":{"opcode":"data_itemoflist","next":null,"parent":"abq","inputs":{"INDEX":[3,"abF",[7,0]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"abt":{"opcode":"operator_mathop","next":null,"parent":"abF","inputs":{"NUM":[3,"abs",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"abD":{"opcode":"data_itemoflist","next":null,"parent":"abC","inputs":{"INDEX":[3,"abG",[7,0]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"abG":{"opcode":"operator_add","next":null,"parent":"abD","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"abH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abH":{"opcode":"operator_mathop","next":null,"parent":"abG","inputs":{"NUM":[3,"abI",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"abI":{"opcode":"operator_divide","next":null,"parent":"abH","inputs":{"NUM1":[3,"abJ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"abJ":{"opcode":"operator_subtract","next":null,"parent":"abI","inputs":{"NUM1":[3,"bd]",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"abK":{"opcode":"operator_gt","next":null,"parent":"hx","inputs":{"OPERAND1":[3,"bd^",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"abL":{"opcode":"operator_gt","next":null,"parent":"hy","inputs":{"OPERAND1":[3,"bd_",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"abM":{"opcode":"data_setvariableto","next":null,"parent":"hy","inputs":{"VALUE":[3,"abN",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"abO":{"opcode":"procedures_definition","next":"hv","parent":null,"inputs":{"custom_block":[1,"abP"]},"fields":{},"shadow":false,"topLevel":true,"x":1752,"y":64},"abP":{"opcode":"procedures_prototype","next":null,"parent":"abO","inputs":{"F:1=0LFS=ykmsAVLMbo@":[1,"bd`"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"abQ":{"opcode":"operator_divide","next":null,"parent":"xq","inputs":{"NUM1":[3,"bd{",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"bd`":{"opcode":"argument_reporter_string_number","next":null,"parent":"abP","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"hv":{"opcode":"control_if_else","next":null,"parent":"abO","inputs":{"CONDITION":[2,"abA"],"SUBSTACK":[2,"hw"],"SUBSTACK2":[2,"hx"]},"fields":{},"shadow":false,"topLevel":false},"bd?":{"opcode":"argument_reporter_string_number","next":null,"parent":"abA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hw":{"opcode":"control_if_else","next":null,"parent":"hv","inputs":{"CONDITION":[2,"abB"],"SUBSTACK":[2,"I}"],"SUBSTACK2":[2,"abC"]},"fields":{},"shadow":false,"topLevel":false},"bd@":{"opcode":"argument_reporter_string_number","next":null,"parent":"abB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"I}":{"opcode":"control_if_else","next":null,"parent":"hw","inputs":{"CONDITION":[2,"abE"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bY"},"bd[":{"opcode":"argument_reporter_string_number","next":null,"parent":"abE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bd]":{"opcode":"argument_reporter_string_number","next":null,"parent":"abJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hx":{"opcode":"control_if_else","next":null,"parent":"hv","inputs":{"CONDITION":[2,"abK"],"SUBSTACK":[2,"hy"],"SUBSTACK2":[2,"hs"]},"fields":{},"shadow":false,"topLevel":false},"bd^":{"opcode":"argument_reporter_string_number","next":null,"parent":"abK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hy":{"opcode":"control_if_else","next":null,"parent":"hx","inputs":{"CONDITION":[2,"abL"],"SUBSTACK":[2,"hz"],"SUBSTACK2":[2,"abM"]},"fields":{},"shadow":false,"topLevel":false},"bd_":{"opcode":"argument_reporter_string_number","next":null,"parent":"abL","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hz":{"opcode":"control_if_else","next":null,"parent":"hy","inputs":{"CONDITION":[2,"abR"],"SUBSTACK":[2,"hA"],"SUBSTACK2":[2,"abS"]},"fields":{},"shadow":false,"topLevel":false},"abR":{"opcode":"operator_gt","next":null,"parent":"hz","inputs":{"OPERAND1":[3,"bd|",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bd|":{"opcode":"argument_reporter_string_number","next":null,"parent":"abR","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hA":{"opcode":"control_if_else","next":null,"parent":"hz","inputs":{"CONDITION":[2,"abT"],"SUBSTACK":[2,"abU"],"SUBSTACK2":[2,"abV"]},"fields":{},"shadow":false,"topLevel":false},"abT":{"opcode":"operator_gt","next":null,"parent":"hA","inputs":{"OPERAND1":[3,"bd}",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"bd}":{"opcode":"argument_reporter_string_number","next":null,"parent":"abT","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"abU":{"opcode":"data_setvariableto","next":null,"parent":"hA","inputs":{"VALUE":[3,"abW",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"abW":{"opcode":"data_itemoflist","next":null,"parent":"abU","inputs":{"INDEX":[3,"abX",[7,0]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"abX":{"opcode":"operator_add","next":null,"parent":"abW","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"abY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"abY":{"opcode":"operator_mathop","next":null,"parent":"abX","inputs":{"NUM":[3,"abZ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"abZ":{"opcode":"operator_divide","next":null,"parent":"abY","inputs":{"NUM1":[3,"ab!",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ab!":{"opcode":"operator_subtract","next":null,"parent":"abZ","inputs":{"NUM1":[3,"bd~",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"bd~":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"abV":{"opcode":"data_setvariableto","next":null,"parent":"hA","inputs":{"VALUE":[3,"ab#",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"ab#":{"opcode":"data_itemoflist","next":null,"parent":"abV","inputs":{"INDEX":[3,"ab%",[7,0]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"ab%":{"opcode":"operator_add","next":null,"parent":"ab#","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ab(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab(":{"opcode":"operator_mathop","next":null,"parent":"ab%","inputs":{"NUM":[3,"ab)",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ab)":{"opcode":"operator_divide","next":null,"parent":"ab(","inputs":{"NUM1":[3,"ab*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ab*":{"opcode":"operator_subtract","next":null,"parent":"ab)","inputs":{"NUM1":[3,"bea",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"bea":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"abS":{"opcode":"data_setvariableto","next":null,"parent":"hz","inputs":{"VALUE":[3,"ab+",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"ab+":{"opcode":"data_itemoflist","next":null,"parent":"abS","inputs":{"INDEX":[3,"ab,",[7,0]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"ab,":{"opcode":"operator_add","next":null,"parent":"ab+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ab-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab-":{"opcode":"operator_mathop","next":null,"parent":"ab,","inputs":{"NUM":[3,"ab.",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ab.":{"opcode":"operator_divide","next":null,"parent":"ab-","inputs":{"NUM1":[3,"ab/",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ab/":{"opcode":"operator_subtract","next":null,"parent":"ab.","inputs":{"NUM1":[3,"beb",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"beb":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab/","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"abN":{"opcode":"data_itemoflist","next":null,"parent":"abM","inputs":{"INDEX":[3,"ab:",[7,0]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"ab:":{"opcode":"operator_add","next":null,"parent":"abN","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ab;",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab;":{"opcode":"operator_mathop","next":null,"parent":"ab:","inputs":{"NUM":[3,"ab=",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ab=":{"opcode":"operator_divide","next":null,"parent":"ab;","inputs":{"NUM1":[3,"ab?",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ab?":{"opcode":"operator_subtract","next":null,"parent":"ab=","inputs":{"NUM1":[3,"bec",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"bec":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hs":{"opcode":"control_if_else","next":null,"parent":"hx","inputs":{"CONDITION":[2,"ab@"],"SUBSTACK":[2,"ab["],"SUBSTACK2":[2,"aX"]},"fields":{},"shadow":false,"topLevel":false},"ab@":{"opcode":"operator_gt","next":null,"parent":"hs","inputs":{"OPERAND1":[3,"bed",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bed":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ab[":{"opcode":"data_setvariableto","next":null,"parent":"hs","inputs":{"VALUE":[3,"ab]",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"ab]":{"opcode":"data_itemoflist","next":null,"parent":"ab[","inputs":{"INDEX":[3,"ab^",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"ab^":{"opcode":"operator_add","next":null,"parent":"ab]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ab_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ab_":{"opcode":"operator_mathop","next":null,"parent":"ab^","inputs":{"NUM":[3,"ab`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ab`":{"opcode":"operator_divide","next":null,"parent":"ab_","inputs":{"NUM1":[3,"ab{",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ab{":{"opcode":"operator_subtract","next":null,"parent":"ab`","inputs":{"NUM1":[3,"bee",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"bee":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab{","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"abp":{"opcode":"operator_gt","next":null,"parent":"aX","inputs":{"OPERAND1":[3,"bef",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"bef":{"opcode":"argument_reporter_string_number","next":null,"parent":"abp","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ht":{"opcode":"control_if_else","next":null,"parent":"aX","inputs":{"CONDITION":[2,"ab|"],"SUBSTACK":[2,"hB"],"SUBSTACK2":[2,"ab}"]},"fields":{},"shadow":false,"topLevel":false},"ab|":{"opcode":"operator_gt","next":null,"parent":"ht","inputs":{"OPERAND1":[3,"beg",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"beg":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hB":{"opcode":"control_if_else","next":null,"parent":"ht","inputs":{"CONDITION":[2,"ab~"],"SUBSTACK":[2,"aca"],"SUBSTACK2":[2,"acb"]},"fields":{},"shadow":false,"topLevel":false},"ab~":{"opcode":"operator_gt","next":null,"parent":"hB","inputs":{"OPERAND1":[3,"beh",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"beh":{"opcode":"argument_reporter_string_number","next":null,"parent":"ab~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aca":{"opcode":"data_setvariableto","next":null,"parent":"hB","inputs":{"VALUE":[3,"acc",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"acc":{"opcode":"data_itemoflist","next":null,"parent":"aca","inputs":{"INDEX":[3,"acd",[7,0]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"acd":{"opcode":"operator_add","next":null,"parent":"acc","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ace",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ace":{"opcode":"operator_mathop","next":null,"parent":"acd","inputs":{"NUM":[3,"acf",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"acf":{"opcode":"operator_divide","next":null,"parent":"ace","inputs":{"NUM1":[3,"acg",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acg":{"opcode":"operator_subtract","next":null,"parent":"acf","inputs":{"NUM1":[3,"bei",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"bei":{"opcode":"argument_reporter_string_number","next":null,"parent":"acg","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"acb":{"opcode":"data_setvariableto","next":null,"parent":"hB","inputs":{"VALUE":[3,"ach",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"ach":{"opcode":"data_itemoflist","next":null,"parent":"acb","inputs":{"INDEX":[3,"aci",[7,0]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"aci":{"opcode":"operator_add","next":null,"parent":"ach","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"acj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acj":{"opcode":"operator_mathop","next":null,"parent":"aci","inputs":{"NUM":[3,"ack",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ack":{"opcode":"operator_divide","next":null,"parent":"acj","inputs":{"NUM1":[3,"acl",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acl":{"opcode":"operator_subtract","next":null,"parent":"ack","inputs":{"NUM1":[3,"bej",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"bej":{"opcode":"argument_reporter_string_number","next":null,"parent":"acl","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ab}":{"opcode":"data_setvariableto","next":null,"parent":"ht","inputs":{"VALUE":[3,"acm",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"acm":{"opcode":"data_itemoflist","next":null,"parent":"ab}","inputs":{"INDEX":[3,"acn",[7,0]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"acn":{"opcode":"operator_add","next":null,"parent":"acm","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aco",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aco":{"opcode":"operator_mathop","next":null,"parent":"acn","inputs":{"NUM":[3,"acp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"acp":{"opcode":"operator_divide","next":null,"parent":"aco","inputs":{"NUM1":[3,"acq",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acq":{"opcode":"operator_subtract","next":null,"parent":"acp","inputs":{"NUM1":[3,"bek",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"bek":{"opcode":"argument_reporter_string_number","next":null,"parent":"acq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hu":{"opcode":"control_if_else","next":null,"parent":"aX","inputs":{"CONDITION":[2,"acr"],"SUBSTACK":[2,"hC"],"SUBSTACK2":[2,"acs"]},"fields":{},"shadow":false,"topLevel":false},"acr":{"opcode":"operator_gt","next":null,"parent":"hu","inputs":{"OPERAND1":[3,"bel",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"bel":{"opcode":"argument_reporter_string_number","next":null,"parent":"acr","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hC":{"opcode":"control_if_else","next":null,"parent":"hu","inputs":{"CONDITION":[2,"act"],"SUBSTACK":[2,"acu"],"SUBSTACK2":[2,"acv"]},"fields":{},"shadow":false,"topLevel":false},"act":{"opcode":"operator_gt","next":null,"parent":"hC","inputs":{"OPERAND1":[3,"bem",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"bem":{"opcode":"argument_reporter_string_number","next":null,"parent":"act","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"acu":{"opcode":"data_setvariableto","next":null,"parent":"hC","inputs":{"VALUE":[3,"acw",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"acw":{"opcode":"data_itemoflist","next":null,"parent":"acu","inputs":{"INDEX":[3,"acx",[7,0]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"acx":{"opcode":"operator_add","next":null,"parent":"acw","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"acy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acy":{"opcode":"operator_mathop","next":null,"parent":"acx","inputs":{"NUM":[3,"acz",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"acz":{"opcode":"operator_divide","next":null,"parent":"acy","inputs":{"NUM1":[3,"acA",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acA":{"opcode":"operator_subtract","next":null,"parent":"acz","inputs":{"NUM1":[3,"ben",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"ben":{"opcode":"argument_reporter_string_number","next":null,"parent":"acA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"acv":{"opcode":"data_setvariableto","next":null,"parent":"hC","inputs":{"VALUE":[3,"acB",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"acB":{"opcode":"data_itemoflist","next":null,"parent":"acv","inputs":{"INDEX":[3,"acC",[7,0]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"acC":{"opcode":"operator_add","next":null,"parent":"acB","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"acD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acD":{"opcode":"operator_mathop","next":null,"parent":"acC","inputs":{"NUM":[3,"acE",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"acE":{"opcode":"operator_divide","next":null,"parent":"acD","inputs":{"NUM1":[3,"acF",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acF":{"opcode":"operator_subtract","next":null,"parent":"acE","inputs":{"NUM1":[3,"beo",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"beo":{"opcode":"argument_reporter_string_number","next":null,"parent":"acF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"acs":{"opcode":"data_setvariableto","next":null,"parent":"hu","inputs":{"VALUE":[3,"acG",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"acG":{"opcode":"data_itemoflist","next":null,"parent":"acs","inputs":{"INDEX":[3,"acH",[7,0]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"acH":{"opcode":"operator_add","next":null,"parent":"acG","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"acI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acI":{"opcode":"operator_mathop","next":null,"parent":"acH","inputs":{"NUM":[3,"acJ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"acJ":{"opcode":"operator_divide","next":null,"parent":"acI","inputs":{"NUM1":[3,"acK",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"acK":{"opcode":"operator_subtract","next":null,"parent":"acJ","inputs":{"NUM1":[3,"bep",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"bep":{"opcode":"argument_reporter_string_number","next":null,"parent":"acK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"acL":{"opcode":"procedures_definition","next":"acM","parent":null,"inputs":{"custom_block":[1,"beq"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":904},"beq":{"opcode":"procedures_prototype","next":null,"parent":"acL","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"display.render_screen","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"acM":{"opcode":"data_setvariableto","next":"acN","parent":"acL","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["y","Cs^]Xb{z|}3IPS([*+Id"]},"shadow":false,"topLevel":false},"acN":{"opcode":"control_repeat","next":null,"parent":"acM","inputs":{"TIMES":[1,[6,"192"]],"SUBSTACK":[2,"acO"]},"fields":{},"shadow":false,"topLevel":false},"acO":{"opcode":"data_setvariableto","next":"xr","parent":"acN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["x","}^!zcd7*?=frof;O)@)i"]},"shadow":false,"topLevel":false},"xr":{"opcode":"control_repeat","next":"acP","parent":"acO","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"acQ"]},"fields":{},"shadow":false,"topLevel":false},"acQ":{"opcode":"procedures_call","next":"xs","parent":"xr","inputs":{"=3ItHb4}Mtq5$/|kShM`":[3,[12,"x","}^!zcd7*?=frof;O)@)i"],[10,""]],"N6Mn7{5Oh3b`:$~(8o.m":[3,[12,"y","Cs^]Xb{z|}3IPS([*+Id"],[10,""]],"y1IAePN=ud`%,_ty$?jL":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"goto pixel at %s %s on screen %s","argumentids":"[\"=3ItHb4}Mtq5$/|kShM`\",\"N6Mn7{5Oh3b`:$~(8o.m\",\"y1IAePN=ud`%,_ty$?jL\"]","warp":"true"}},"xs":{"opcode":"data_setvariableto","next":"xt","parent":"acQ","inputs":{"VALUE":[3,"acR",[10,""]]},"fields":{"VARIABLE":["render.dummy","=#O@Exty[GB(D0k,a1(L"]},"shadow":false,"topLevel":false},"acR":{"opcode":"data_itemoflist","next":null,"parent":"xs","inputs":{"INDEX":[3,"acS",[7,0]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"acS":{"opcode":"operator_add","next":null,"parent":"acR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"acT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acT":{"opcode":"operator_add","next":null,"parent":"acS","inputs":{"NUM1":[3,[12,"x","}^!zcd7*?=frof;O)@)i"],[4,0]],"NUM2":[3,"ber",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ber":{"opcode":"operator_multiply","next":null,"parent":"acT","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"y","Cs^]Xb{z|}3IPS([*+Id"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"acP":{"opcode":"pen_penUp","next":"bes","parent":"xr","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bes":{"opcode":"data_changevariableby","next":null,"parent":"acP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["y","Cs^]Xb{z|}3IPS([*+Id"]},"shadow":false,"topLevel":false},"acU":{"opcode":"procedures_definition","next":"hD","parent":null,"inputs":{"custom_block":[1,"acV"]},"fields":{},"shadow":false,"topLevel":true,"x":3124,"y":64},"acV":{"opcode":"procedures_prototype","next":null,"parent":"acU","inputs":{"b@)J0tZH?{E?dB[c9XHi":[1,"bet"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bet":{"opcode":"argument_reporter_string_number","next":null,"parent":"acV","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"hD":{"opcode":"control_if_else","next":null,"parent":"acU","inputs":{"CONDITION":[2,"acW"],"SUBSTACK":[2,"hE"],"SUBSTACK2":[2,"hF"]},"fields":{},"shadow":false,"topLevel":false},"acW":{"opcode":"operator_gt","next":null,"parent":"hD","inputs":{"OPERAND1":[3,"beu",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beu":{"opcode":"argument_reporter_string_number","next":null,"parent":"acW","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hE":{"opcode":"control_if_else","next":null,"parent":"hD","inputs":{"CONDITION":[2,"acX"],"SUBSTACK":[2,"bW"],"SUBSTACK2":[2,"xu"]},"fields":{},"shadow":false,"topLevel":false},"acX":{"opcode":"operator_gt","next":null,"parent":"hE","inputs":{"OPERAND1":[3,"bev",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bev":{"opcode":"argument_reporter_string_number","next":null,"parent":"acX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bW":{"opcode":"control_if_else","next":null,"parent":"hE","inputs":{"CONDITION":[2,"acY"],"SUBSTACK2":[2,"abq"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bV"},"acY":{"opcode":"operator_gt","next":null,"parent":"bW","inputs":{"OPERAND1":[3,"bew",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bew":{"opcode":"argument_reporter_string_number","next":null,"parent":"acY","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bd;":{"opcode":"argument_reporter_string_number","next":null,"parent":"abu","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xu":{"opcode":"control_if_else","next":null,"parent":"hE","inputs":{"CONDITION":[2,"acZ"],"SUBSTACK":[2,"xv"],"SUBSTACK2":[2,"xw"]},"fields":{},"shadow":false,"topLevel":false},"acZ":{"opcode":"operator_gt","next":null,"parent":"xu","inputs":{"OPERAND1":[3,"bex",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bex":{"opcode":"argument_reporter_string_number","next":null,"parent":"acZ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xv":{"opcode":"control_if_else","next":null,"parent":"xu","inputs":{"CONDITION":[2,"ac!"],"SUBSTACK":[2,"ac#"],"SUBSTACK2":[2,"ac%"]},"fields":{},"shadow":false,"topLevel":false},"ac!":{"opcode":"operator_gt","next":null,"parent":"xv","inputs":{"OPERAND1":[3,"bey",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bey":{"opcode":"argument_reporter_string_number","next":null,"parent":"ac!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ac#":{"opcode":"data_setvariableto","next":null,"parent":"xv","inputs":{"VALUE":[3,"ac(",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ac(":{"opcode":"data_itemoflist","next":null,"parent":"ac#","inputs":{"INDEX":[3,"ac)",[7,0]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ac)":{"opcode":"operator_add","next":null,"parent":"ac(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ac*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac*":{"opcode":"operator_mathop","next":null,"parent":"ac)","inputs":{"NUM":[3,"ac+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ac+":{"opcode":"operator_divide","next":null,"parent":"ac*","inputs":{"NUM1":[3,"ac,",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ac,":{"opcode":"operator_subtract","next":null,"parent":"ac+","inputs":{"NUM1":[3,"bez",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"bez":{"opcode":"argument_reporter_string_number","next":null,"parent":"ac,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ac%":{"opcode":"data_setvariableto","next":null,"parent":"xv","inputs":{"VALUE":[3,"ac-",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ac-":{"opcode":"data_itemoflist","next":null,"parent":"ac%","inputs":{"INDEX":[3,"ac.",[7,0]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"ac.":{"opcode":"operator_add","next":null,"parent":"ac-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ac/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac/":{"opcode":"operator_mathop","next":null,"parent":"ac.","inputs":{"NUM":[3,"ac:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ac:":{"opcode":"operator_divide","next":null,"parent":"ac/","inputs":{"NUM1":[3,"ac;",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ac;":{"opcode":"operator_subtract","next":null,"parent":"ac:","inputs":{"NUM1":[3,"beA",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"beA":{"opcode":"argument_reporter_string_number","next":null,"parent":"ac;","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xw":{"opcode":"control_if_else","next":null,"parent":"xu","inputs":{"CONDITION":[2,"ac="],"SUBSTACK":[2,"ac?"],"SUBSTACK2":[2,"ac@"]},"fields":{},"shadow":false,"topLevel":false},"ac=":{"opcode":"operator_gt","next":null,"parent":"xw","inputs":{"OPERAND1":[3,"beB",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beB":{"opcode":"argument_reporter_string_number","next":null,"parent":"ac=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ac?":{"opcode":"data_setvariableto","next":null,"parent":"xw","inputs":{"VALUE":[3,"ac[",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ac[":{"opcode":"data_itemoflist","next":null,"parent":"ac?","inputs":{"INDEX":[3,"ac]",[7,0]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"ac]":{"opcode":"operator_add","next":null,"parent":"ac[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ac^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac^":{"opcode":"operator_mathop","next":null,"parent":"ac]","inputs":{"NUM":[3,"ac_",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ac_":{"opcode":"operator_divide","next":null,"parent":"ac^","inputs":{"NUM1":[3,"ac`",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ac`":{"opcode":"operator_subtract","next":null,"parent":"ac_","inputs":{"NUM1":[3,"beC",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"beC":{"opcode":"argument_reporter_string_number","next":null,"parent":"ac`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ac@":{"opcode":"data_setvariableto","next":null,"parent":"xw","inputs":{"VALUE":[3,"ac{",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ac{":{"opcode":"data_itemoflist","next":null,"parent":"ac@","inputs":{"INDEX":[3,"ac|",[7,0]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"ac|":{"opcode":"operator_add","next":null,"parent":"ac{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ac}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ac}":{"opcode":"operator_mathop","next":null,"parent":"ac|","inputs":{"NUM":[3,"ac~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ac~":{"opcode":"operator_divide","next":null,"parent":"ac}","inputs":{"NUM1":[3,"ada",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ada":{"opcode":"operator_subtract","next":null,"parent":"ac~","inputs":{"NUM1":[3,"beD",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"beD":{"opcode":"argument_reporter_string_number","next":null,"parent":"ada","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hF":{"opcode":"control_if_else","next":null,"parent":"hD","inputs":{"CONDITION":[2,"adb"],"SUBSTACK":[2,"xx"],"SUBSTACK2":[2,"xy"]},"fields":{},"shadow":false,"topLevel":false},"adb":{"opcode":"operator_gt","next":null,"parent":"hF","inputs":{"OPERAND1":[3,"beE",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beE":{"opcode":"argument_reporter_string_number","next":null,"parent":"adb","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xx":{"opcode":"control_if_else","next":null,"parent":"hF","inputs":{"CONDITION":[2,"adc"],"SUBSTACK":[2,"add"],"SUBSTACK2":[2,"xz"]},"fields":{},"shadow":false,"topLevel":false},"adc":{"opcode":"operator_gt","next":null,"parent":"xx","inputs":{"OPERAND1":[3,"beF",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beF":{"opcode":"argument_reporter_string_number","next":null,"parent":"adc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"add":{"opcode":"data_setvariableto","next":null,"parent":"xx","inputs":{"VALUE":[3,"ade",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ade":{"opcode":"data_itemoflist","next":null,"parent":"add","inputs":{"INDEX":[3,"adf",[7,0]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"adf":{"opcode":"operator_add","next":null,"parent":"ade","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adg":{"opcode":"operator_mathop","next":null,"parent":"adf","inputs":{"NUM":[3,"adh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adh":{"opcode":"operator_divide","next":null,"parent":"adg","inputs":{"NUM1":[3,"adi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adi":{"opcode":"operator_subtract","next":null,"parent":"adh","inputs":{"NUM1":[3,"beG",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"beG":{"opcode":"argument_reporter_string_number","next":null,"parent":"adi","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xz":{"opcode":"control_if_else","next":null,"parent":"xx","inputs":{"CONDITION":[2,"adj"],"SUBSTACK":[2,"adk"],"SUBSTACK2":[2,"adl"]},"fields":{},"shadow":false,"topLevel":false},"adj":{"opcode":"operator_gt","next":null,"parent":"xz","inputs":{"OPERAND1":[3,"beH",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beH":{"opcode":"argument_reporter_string_number","next":null,"parent":"adj","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adk":{"opcode":"data_setvariableto","next":null,"parent":"xz","inputs":{"VALUE":[3,"adm",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adm":{"opcode":"data_itemoflist","next":null,"parent":"adk","inputs":{"INDEX":[3,"adn",[7,0]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"adn":{"opcode":"operator_add","next":null,"parent":"adm","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ado",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ado":{"opcode":"operator_mathop","next":null,"parent":"adn","inputs":{"NUM":[3,"adp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adp":{"opcode":"operator_divide","next":null,"parent":"ado","inputs":{"NUM1":[3,"adq",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adq":{"opcode":"operator_subtract","next":null,"parent":"adp","inputs":{"NUM1":[3,"beI",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"beI":{"opcode":"argument_reporter_string_number","next":null,"parent":"adq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adl":{"opcode":"data_setvariableto","next":null,"parent":"xz","inputs":{"VALUE":[3,"abz",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"abz":{"opcode":"data_itemoflist","next":null,"parent":"adl","inputs":{"INDEX":[3,"aby",[7,0]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"bd=":{"opcode":"argument_reporter_string_number","next":null,"parent":"abx","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xy":{"opcode":"control_if_else","next":null,"parent":"hF","inputs":{"CONDITION":[2,"adr"],"SUBSTACK":[2,"xA"],"SUBSTACK2":[2,"I|"]},"fields":{},"shadow":false,"topLevel":false},"adr":{"opcode":"operator_gt","next":null,"parent":"xy","inputs":{"OPERAND1":[3,"beJ",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"adr","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xA":{"opcode":"control_if_else","next":null,"parent":"xy","inputs":{"CONDITION":[2,"ads"],"SUBSTACK":[2,"adt"],"SUBSTACK2":[2,"xB"]},"fields":{},"shadow":false,"topLevel":false},"ads":{"opcode":"operator_gt","next":null,"parent":"xA","inputs":{"OPERAND1":[3,"beK",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beK":{"opcode":"argument_reporter_string_number","next":null,"parent":"ads","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adt":{"opcode":"data_setvariableto","next":null,"parent":"xA","inputs":{"VALUE":[3,"adu",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adu":{"opcode":"data_itemoflist","next":null,"parent":"adt","inputs":{"INDEX":[3,"adv",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"adv":{"opcode":"operator_add","next":null,"parent":"adu","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adw":{"opcode":"operator_mathop","next":null,"parent":"adv","inputs":{"NUM":[3,"adx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adx":{"opcode":"operator_divide","next":null,"parent":"adw","inputs":{"NUM1":[3,"ady",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ady":{"opcode":"operator_subtract","next":null,"parent":"adx","inputs":{"NUM1":[3,"beL",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"beL":{"opcode":"argument_reporter_string_number","next":null,"parent":"ady","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xB":{"opcode":"control_if_else","next":null,"parent":"xA","inputs":{"CONDITION":[2,"adz"],"SUBSTACK":[2,"xC"],"SUBSTACK2":[2,"xD"]},"fields":{},"shadow":false,"topLevel":false},"adz":{"opcode":"operator_gt","next":null,"parent":"xB","inputs":{"OPERAND1":[3,"beM",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"beM":{"opcode":"argument_reporter_string_number","next":null,"parent":"adz","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xC":{"opcode":"control_if_else","next":null,"parent":"xB","inputs":{"CONDITION":[2,"adA"],"SUBSTACK":[2,"hG"],"SUBSTACK2":[2,"adB"]},"fields":{},"shadow":false,"topLevel":false},"adA":{"opcode":"operator_gt","next":null,"parent":"xC","inputs":{"OPERAND1":[3,"beN",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"beN":{"opcode":"argument_reporter_string_number","next":null,"parent":"adA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hG":{"opcode":"control_if_else","next":null,"parent":"xC","inputs":{"CONDITION":[2,"adC"],"SUBSTACK":[2,"adD"],"SUBSTACK2":[2,"adE"]},"fields":{},"shadow":false,"topLevel":false},"adC":{"opcode":"operator_gt","next":null,"parent":"hG","inputs":{"OPERAND1":[3,"beO",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"beO":{"opcode":"argument_reporter_string_number","next":null,"parent":"adC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adD":{"opcode":"data_setvariableto","next":null,"parent":"hG","inputs":{"VALUE":[3,"adF",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adF":{"opcode":"data_itemoflist","next":null,"parent":"adD","inputs":{"INDEX":[3,"adG",[7,0]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"adG":{"opcode":"operator_add","next":null,"parent":"adF","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adH":{"opcode":"operator_mathop","next":null,"parent":"adG","inputs":{"NUM":[3,"adI",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adI":{"opcode":"operator_divide","next":null,"parent":"adH","inputs":{"NUM1":[3,"adJ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adJ":{"opcode":"operator_subtract","next":null,"parent":"adI","inputs":{"NUM1":[3,"beP",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"beP":{"opcode":"argument_reporter_string_number","next":null,"parent":"adJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adE":{"opcode":"data_setvariableto","next":null,"parent":"hG","inputs":{"VALUE":[3,"adK",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adK":{"opcode":"data_itemoflist","next":null,"parent":"adE","inputs":{"INDEX":[3,"adL",[7,0]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"adL":{"opcode":"operator_add","next":null,"parent":"adK","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adM":{"opcode":"operator_mathop","next":null,"parent":"adL","inputs":{"NUM":[3,"adN",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adN":{"opcode":"operator_divide","next":null,"parent":"adM","inputs":{"NUM1":[3,"adO",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adO":{"opcode":"operator_subtract","next":null,"parent":"adN","inputs":{"NUM1":[3,"beQ",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"beQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"adO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adB":{"opcode":"data_setvariableto","next":null,"parent":"xC","inputs":{"VALUE":[3,"adP",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adP":{"opcode":"data_itemoflist","next":null,"parent":"adB","inputs":{"INDEX":[3,"adQ",[7,0]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"adQ":{"opcode":"operator_add","next":null,"parent":"adP","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"adR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"adR":{"opcode":"operator_mathop","next":null,"parent":"adQ","inputs":{"NUM":[3,"adS",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"adS":{"opcode":"operator_divide","next":null,"parent":"adR","inputs":{"NUM1":[3,"adT",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"adT":{"opcode":"operator_subtract","next":null,"parent":"adS","inputs":{"NUM1":[3,"beR",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"beR":{"opcode":"argument_reporter_string_number","next":null,"parent":"adT","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xD":{"opcode":"control_if_else","next":null,"parent":"xB","inputs":{"CONDITION":[2,"adU"],"SUBSTACK":[2,"hH"],"SUBSTACK2":[2,"adV"]},"fields":{},"shadow":false,"topLevel":false},"adU":{"opcode":"operator_gt","next":null,"parent":"xD","inputs":{"OPERAND1":[3,"beS",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"beS":{"opcode":"argument_reporter_string_number","next":null,"parent":"adU","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hH":{"opcode":"control_if_else","next":null,"parent":"xD","inputs":{"CONDITION":[2,"adW"],"SUBSTACK":[2,"adX"],"SUBSTACK2":[2,"adY"]},"fields":{},"shadow":false,"topLevel":false},"adW":{"opcode":"operator_gt","next":null,"parent":"hH","inputs":{"OPERAND1":[3,"beT",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"beT":{"opcode":"argument_reporter_string_number","next":null,"parent":"adW","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adX":{"opcode":"data_setvariableto","next":null,"parent":"hH","inputs":{"VALUE":[3,"adZ",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"adZ":{"opcode":"data_itemoflist","next":null,"parent":"adX","inputs":{"INDEX":[3,"ad!",[7,0]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"ad!":{"opcode":"operator_add","next":null,"parent":"adZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ad#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad#":{"opcode":"operator_mathop","next":null,"parent":"ad!","inputs":{"NUM":[3,"ad%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ad%":{"opcode":"operator_divide","next":null,"parent":"ad#","inputs":{"NUM1":[3,"ad(",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ad(":{"opcode":"operator_subtract","next":null,"parent":"ad%","inputs":{"NUM1":[3,"beU",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"beU":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad(","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adY":{"opcode":"data_setvariableto","next":null,"parent":"hH","inputs":{"VALUE":[3,"ad)",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ad)":{"opcode":"data_itemoflist","next":null,"parent":"adY","inputs":{"INDEX":[3,"ad*",[7,0]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"ad*":{"opcode":"operator_add","next":null,"parent":"ad)","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ad+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad+":{"opcode":"operator_mathop","next":null,"parent":"ad*","inputs":{"NUM":[3,"ad,",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ad,":{"opcode":"operator_divide","next":null,"parent":"ad+","inputs":{"NUM1":[3,"ad-",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ad-":{"opcode":"operator_subtract","next":null,"parent":"ad,","inputs":{"NUM1":[3,"beV",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"beV":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"adV":{"opcode":"data_setvariableto","next":null,"parent":"xD","inputs":{"VALUE":[3,"ad.",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false},"ad.":{"opcode":"data_itemoflist","next":null,"parent":"adV","inputs":{"INDEX":[3,"ad/",[7,0]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"ad/":{"opcode":"operator_add","next":null,"parent":"ad.","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ad:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad:":{"opcode":"operator_mathop","next":null,"parent":"ad/","inputs":{"NUM":[3,"ad;",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ad;":{"opcode":"operator_divide","next":null,"parent":"ad:","inputs":{"NUM1":[3,"ad=",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ad=":{"opcode":"operator_subtract","next":null,"parent":"ad;","inputs":{"NUM1":[3,"beW",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"beW":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"I|":{"opcode":"control_if_else","next":null,"parent":"xy","inputs":{"CONDITION":[2,"ad?"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bX"},"ad?":{"opcode":"operator_gt","next":null,"parent":"I|","inputs":{"OPERAND1":[3,"beX",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"beX":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ad@":{"opcode":"procedures_definition","next":"hI","parent":null,"inputs":{"custom_block":[1,"hJ"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":304},"hJ":{"opcode":"procedures_prototype","next":null,"parent":"ad@","inputs":{"=3ItHb4}Mtq5$/|kShM`":[1,"beY"],"N6Mn7{5Oh3b`:$~(8o.m":[1,"beZ"],"y1IAePN=ud`%,_ty$?jL":[1,"be!"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"goto pixel at %s %s on screen %s","argumentids":"[\"=3ItHb4}Mtq5$/|kShM`\",\"N6Mn7{5Oh3b`:$~(8o.m\",\"y1IAePN=ud`%,_ty$?jL\"]","argumentnames":"[\"x\",\"y\",\"screen\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"beY":{"opcode":"argument_reporter_string_number","next":null,"parent":"hJ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"beZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"hJ","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"be!":{"opcode":"argument_reporter_string_number","next":null,"parent":"hJ","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":true,"topLevel":false},"hI":{"opcode":"control_if_else","next":null,"parent":"ad@","inputs":{"CONDITION":[2,"be#"],"SUBSTACK":[2,"xE"],"SUBSTACK2":[2,"xF"]},"fields":{},"shadow":false,"topLevel":false},"be#":{"opcode":"operator_equals","next":null,"parent":"hI","inputs":{"OPERAND1":[3,[12,"options.vertical_screens","uEtD!M_zC8*GB%@71_@h"],[10,""]],"OPERAND2":[1,[10,"true"]]},"fields":{},"shadow":false,"topLevel":false},"xE":{"opcode":"motion_gotoxy","next":null,"parent":"hI","inputs":{"X":[3,"ad[",[4,0]],"Y":[3,"ad]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad[":{"opcode":"operator_round","next":null,"parent":"xE","inputs":{"NUM":[3,"xq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"xq":{"opcode":"operator_subtract","next":null,"parent":"ad[","inputs":{"NUM1":[3,"abQ",[4,0]],"NUM2":[3,"ad^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bd{":{"opcode":"argument_reporter_string_number","next":null,"parent":"abQ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ad^":{"opcode":"operator_multiply","next":null,"parent":"xq","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,"ad_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad_":{"opcode":"operator_subtract","next":null,"parent":"ad^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"be%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"be%":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad_","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":false,"topLevel":false},"ad]":{"opcode":"operator_round","next":null,"parent":"xE","inputs":{"NUM":[3,"ad`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad`":{"opcode":"operator_subtract","next":null,"parent":"ad]","inputs":{"NUM1":[1,[4,"102.4"]],"NUM2":[3,"ad{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad{":{"opcode":"operator_divide","next":null,"parent":"ad`","inputs":{"NUM1":[3,"be(",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"be(":{"opcode":"argument_reporter_string_number","next":null,"parent":"ad{","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"xF":{"opcode":"motion_gotoxy","next":null,"parent":"hI","inputs":{"X":[3,"ad|",[4,0]],"Y":[3,"ad}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad|":{"opcode":"operator_round","next":null,"parent":"xF","inputs":{"NUM":[3,"ad~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ad~":{"opcode":"operator_subtract","next":null,"parent":"ad|","inputs":{"NUM1":[3,"aea",[4,0]],"NUM2":[1,[4,"120"]]},"fields":{},"shadow":false,"topLevel":false},"aea":{"opcode":"operator_divide","next":null,"parent":"ad~","inputs":{"NUM1":[3,"be)",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"be)":{"opcode":"argument_reporter_string_number","next":null,"parent":"aea","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ad}":{"opcode":"operator_round","next":null,"parent":"xF","inputs":{"NUM":[3,"xG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"xG":{"opcode":"operator_subtract","next":null,"parent":"ad}","inputs":{"NUM1":[3,"aeb",[4,0]],"NUM2":[3,"aec",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeb":{"opcode":"operator_subtract","next":null,"parent":"xG","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,"aed",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aed":{"opcode":"operator_divide","next":null,"parent":"aeb","inputs":{"NUM1":[3,"be*",[4,0]],"NUM2":[1,[4,"1.06666667"]]},"fields":{},"shadow":false,"topLevel":false},"be*":{"opcode":"argument_reporter_string_number","next":null,"parent":"aed","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"aec":{"opcode":"operator_multiply","next":null,"parent":"xG","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,"be+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"be+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aec","inputs":{},"fields":{"VALUE":["screen",null]},"shadow":false,"topLevel":false},"be,":{"opcode":"event_whenbroadcastreceived","next":"be-","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["render_screen","*~j7B^$jo;Babt$i@0p-"]},"shadow":false,"topLevel":true,"x":48,"y":728},"be-":{"opcode":"procedures_call","next":null,"parent":"be,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"display.render_screen","argumentids":"[]","warp":"true"}},"aee":{"opcode":"procedures_definition","next":"xH","parent":null,"inputs":{"custom_block":[1,"aef"]},"fields":{},"shadow":false,"topLevel":true,"x":4388,"y":64},"aef":{"opcode":"procedures_prototype","next":null,"parent":"aee","inputs":{"V)?tNL$%Rh+w==[pHm3i":[1,"be."]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"be.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aef","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"xH":{"opcode":"procedures_call","next":"xI","parent":"aee","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"be/",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"be/":{"opcode":"argument_reporter_string_number","next":null,"parent":"xH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xI":{"opcode":"procedures_call","next":"be:","parent":"xH","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm7.read_return","!72:zgELj#}TT9OT7jqU"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"aeg",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"aeg":{"opcode":"operator_mod","next":null,"parent":"xI","inputs":{"NUM1":[3,"be;",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"be;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeg","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"be:":{"opcode":"data_setvariableto","next":null,"parent":"xI","inputs":{"VALUE":[3,[12,"core.byte_return",",[3+,ez*wmn?Q;]`x!%%"],[10,""]]},"fields":{"VARIABLE":["arm7.read_return","!72:zgELj#}TT9OT7jqU"]},"shadow":false,"topLevel":false},"aeh":{"opcode":"procedures_definition","next":"xJ","parent":null,"inputs":{"custom_block":[1,"aei"]},"fields":{},"shadow":false,"topLevel":true,"x":4388,"y":360},"aei":{"opcode":"procedures_prototype","next":null,"parent":"aeh","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,"be="]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"be=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aei","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"aej":{"opcode":"procedures_definition","next":"aek","parent":null,"inputs":{"custom_block":[1,"xK"]},"fields":{},"shadow":false,"topLevel":true,"x":4911,"y":64},"xK":{"opcode":"procedures_prototype","next":null,"parent":"aej","inputs":{"[Bf|Xjs%{03^@##)w@`d":[1,"be?"],"A$`3X[JrP}|bWV/@_Osy":[1,"be@"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","argumentnames":"[\"number\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"be?":{"opcode":"argument_reporter_string_number","next":null,"parent":"xK","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"be@":{"opcode":"argument_reporter_string_number","next":null,"parent":"xK","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"aek":{"opcode":"data_setvariableto","next":null,"parent":"aej","inputs":{"VALUE":[3,"ael",[10,""]]},"fields":{"VARIABLE":["core.byte_return",",[3+,ez*wmn?Q;]`x!%%"]},"shadow":false,"topLevel":false},"ael":{"opcode":"operator_mathop","next":null,"parent":"aek","inputs":{"NUM":[3,"aem",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aem":{"opcode":"operator_mod","next":null,"parent":"ael","inputs":{"NUM1":[3,"xL",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"xL":{"opcode":"operator_divide","next":null,"parent":"aem","inputs":{"NUM1":[3,"be[",[4,0]],"NUM2":[3,"aen",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"be[":{"opcode":"argument_reporter_string_number","next":null,"parent":"xL","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"aen":{"opcode":"operator_round","next":null,"parent":"xL","inputs":{"NUM":[3,"aeo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeo":{"opcode":"operator_mathop","next":null,"parent":"aen","inputs":{"NUM":[3,"aep",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"aep":{"opcode":"operator_multiply","next":null,"parent":"aeo","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"aeq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeq":{"opcode":"operator_subtract","next":null,"parent":"aep","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"aer",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aer":{"opcode":"operator_mod","next":null,"parent":"aeq","inputs":{"NUM1":[3,"be]",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"be]":{"opcode":"argument_reporter_string_number","next":null,"parent":"aer","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"be^":{"opcode":"event_whenbroadcastreceived","next":"aes","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["start game","gofV]+|49LxJ]7Ibhwn8"]},"shadow":false,"topLevel":true,"x":48,"y":64},"aes":{"opcode":"pen_clear","next":"be_","parent":"be^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"be_":{"opcode":"pen_setPenSizeTo","next":null,"parent":"aes","inputs":{"SIZE":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"xt":{"opcode":"pen_setPenColorToColor","next":"aet","parent":"xs","inputs":{"COLOR":[3,"xM",[9,"#ff0000"]]},"fields":{},"shadow":false,"topLevel":false},"xM":{"opcode":"operator_add","next":null,"parent":"xt","inputs":{"NUM1":[3,"aeu",[4,0]],"NUM2":[3,"xN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeu":{"opcode":"operator_multiply","next":null,"parent":"xM","inputs":{"NUM1":[1,[4,"524288"]],"NUM2":[3,"be`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"be`":{"opcode":"operator_mod","next":null,"parent":"aeu","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"xN":{"opcode":"operator_add","next":null,"parent":"xM","inputs":{"NUM1":[3,"aev",[4,0]],"NUM2":[3,"aew",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aev":{"opcode":"operator_multiply","next":null,"parent":"xN","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,"aex",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aex":{"opcode":"operator_mod","next":null,"parent":"aev","inputs":{"NUM1":[3,"aey",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aey":{"opcode":"operator_mathop","next":null,"parent":"aex","inputs":{"NUM":[3,"be{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"be{":{"opcode":"operator_divide","next":null,"parent":"aey","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aew":{"opcode":"operator_multiply","next":null,"parent":"xN","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"aez",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aez":{"opcode":"operator_mod","next":null,"parent":"aew","inputs":{"NUM1":[3,"aeA",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aeA":{"opcode":"operator_mathop","next":null,"parent":"aez","inputs":{"NUM":[3,"be|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"be|":{"opcode":"operator_divide","next":null,"parent":"aeA","inputs":{"NUM1":[3,[12,"render.dummy","=#O@Exty[GB(D0k,a1(L"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aet":{"opcode":"pen_penDown","next":"be}","parent":"xt","inputs":{},"fields":{},"shadow":false,"topLevel":false},"be}":{"opcode":"data_changevariableby","next":null,"parent":"aet","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["x","}^!zcd7*?=frof;O)@)i"]},"shadow":false,"topLevel":false},"xJ":{"opcode":"procedures_call","next":"xO","parent":"aeh","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"be~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"be~":{"opcode":"argument_reporter_string_number","next":null,"parent":"xJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xO":{"opcode":"procedures_call","next":"bfa","parent":"xJ","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm9.read_return","uT+UflmU:r]iynT/z;M0"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"aeB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"aeB":{"opcode":"operator_mod","next":null,"parent":"xO","inputs":{"NUM1":[3,"bfb",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bfb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bfa":{"opcode":"data_setvariableto","next":null,"parent":"xO","inputs":{"VALUE":[3,[12,"core.byte_return",",[3+,ez*wmn?Q;]`x!%%"],[10,""]]},"fields":{"VARIABLE":["arm9.read_return","uT+UflmU:r]iynT/z;M0"]},"shadow":false,"topLevel":false}},"comments":{"aeC":{"blockId":"hK","x":396,"y":213,"width":200,"height":200,"minimized":false,"text":"This is so the emulator isn't horribly slow (like seriously this could help out quite a bit)"},"bY":{"blockId":"hL","x":2209,"y":350,"width":179,"height":154,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"bZ":{"blockId":"aC","x":2213,"y":1706,"width":197,"height":130,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"aeD":{"blockId":"hM","x":1014,"y":138,"width":233,"height":182,"minimized":false,"text":"I need to store a lot of memory, though luckily the DS is actually just around twice as powerful as the GBA (Gameboy Advance). Note that the 3DS is actually a lot more powerful than this."},"aeE":{"blockId":"hN","x":1175,"y":1568,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"aeF":{"blockId":"hO","x":1059,"y":4016,"width":182,"height":153,"minimized":false,"text":"Idk what's up with LCDC allocated VRAM but it can hold 656 KB of memory for some reason"},"aeG":{"blockId":"xP","x":11024,"y":3014,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"},"aeH":{"blockId":"aD","x":9529,"y":801,"width":200,"height":200,"minimized":false,"text":"Data processing instructions are stupid because there's actually 16 of them."},"aeI":{"blockId":"hP","x":12461,"y":416,"width":200,"height":200,"minimized":false,"text":"I'm sorry I just really can't do this without little endian ;-;"},"bV":{"blockId":"hQ","x":5974,"y":209,"width":216,"height":229,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"bX":{"blockId":"hR","x":5733,"y":3417,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"b.e":{"blockId":"aeJ","x":11600,"y":2972,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":4,"visible":true,"x":119,"y":1,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"Core (ARM7, ARM9)","variables":{"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",1867301],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",1867306],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",31],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return","0x00000000"],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test","false"],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format","0"],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",3],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",192],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",49183],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return","0x00000000"],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",20],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",4294967295]},"lists":{"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",["0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000","0x00000000"]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",["false","false","false","false"]]},"broadcasts":{},"blocks":{"aC":{"opcode":"control_if_else","next":null,"parent":"hS","inputs":{"CONDITION":[2,"aeK"],"SUBSTACK":[2,"hT"],"SUBSTACK2":[2,"hU"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bZ"},"aD":{"opcode":"control_if_else","next":null,"parent":"hV","inputs":{"CONDITION":[2,"bfc"],"SUBSTACK":[2,"hW"],"SUBSTACK2":[2,"bfd"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aeH"},"aeJ":{"opcode":"data_setvariableto","next":null,"parent":"hX","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"aeK":{"opcode":"operator_gt","next":null,"parent":"aC","inputs":{"OPERAND1":[3,"bfe",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"aeL":{"opcode":"operator_divide","next":null,"parent":"aeM","inputs":{"NUM1":[3,"bff",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aeM":{"opcode":"operator_mathop","next":null,"parent":"aeN","inputs":{"NUM":[3,"aeL",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aeO":{"opcode":"operator_gt","next":null,"parent":"hY","inputs":{"OPERAND1":[3,"bfg",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"aeP":{"opcode":"operator_multiply","next":null,"parent":"hZ","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aeQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aeQ":{"opcode":"operator_mod","next":null,"parent":"aeP","inputs":{"NUM1":[3,"aeR",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aeR":{"opcode":"operator_mathop","next":null,"parent":"aeQ","inputs":{"NUM":[3,"bfh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aeS":{"opcode":"operator_lt","next":null,"parent":"h!","inputs":{"OPERAND1":[3,"bfi",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aeT":{"opcode":"data_setvariableto","next":null,"parent":"h!","inputs":{"VALUE":[3,"xQ",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"aeU":{"opcode":"operator_mathop","next":null,"parent":"aeV","inputs":{"NUM":[3,"aeW",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aeW":{"opcode":"operator_divide","next":null,"parent":"aeU","inputs":{"NUM1":[3,"aeX",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aeY":{"opcode":"operator_mathop","next":null,"parent":"aeZ","inputs":{"NUM":[3,"ae!",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aeZ":{"opcode":"operator_add","next":null,"parent":"xR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aeY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ae!":{"opcode":"operator_divide","next":null,"parent":"aeY","inputs":{"NUM1":[3,"ae#",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ae#":{"opcode":"operator_subtract","next":null,"parent":"ae!","inputs":{"NUM1":[3,"bfj",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"ae%":{"opcode":"operator_add","next":null,"parent":"xS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ae(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ae(":{"opcode":"operator_mathop","next":null,"parent":"ae%","inputs":{"NUM":[3,"ae)",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ae)":{"opcode":"operator_divide","next":null,"parent":"ae(","inputs":{"NUM1":[3,"ae*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ae*":{"opcode":"operator_subtract","next":null,"parent":"ae)","inputs":{"NUM1":[3,"bfk",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"ae+":{"opcode":"procedures_definition","next":"h#","parent":null,"inputs":{"custom_block":[1,"ae,"]},"fields":{},"shadow":false,"topLevel":true,"x":5302,"y":153},"ae,":{"opcode":"procedures_prototype","next":null,"parent":"ae+","inputs":{"b@)J0tZH?{E?dB[c9XHi":[1,"bfl"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ae-":{"opcode":"data_showvariable","next":"ae/","parent":"ae.","inputs":{},"fields":{"VARIABLE":["rom.title","Wi^qSRY3?saxL.IB^T(P"]},"shadow":false,"topLevel":false},"ae/":{"opcode":"procedures_call","next":"hK","parent":"ae-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.reset_memory","argumentids":"[]","warp":"true"}},"ae:":{"opcode":"data_setvariableto","next":"ae;","parent":"hK","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"ae;":{"opcode":"data_setvariableto","next":"ae=","parent":"ae:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"ae=":{"opcode":"data_setvariableto","next":"ae?","parent":"ae;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"ae?":{"opcode":"sensing_resettimer","next":"ae@","parent":"ae=","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ae[":{"opcode":"procedures_call","next":"bfm","parent":"ae]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","warp":"true"}},"ae]":{"opcode":"control_forever","next":null,"parent":"ae^","inputs":{"SUBSTACK":[2,"ae["]},"fields":{},"shadow":false,"topLevel":false},"ae_":{"opcode":"procedures_definition","next":"h%","parent":null,"inputs":{"custom_block":[1,"xT"]},"fields":{},"shadow":false,"topLevel":true,"x":2951,"y":158},"ae`":{"opcode":"operator_gt","next":null,"parent":"h%","inputs":{"OPERAND1":[3,"bfn",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"ae{":{"opcode":"operator_gt","next":null,"parent":"h(","inputs":{"OPERAND1":[3,"bfo",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"ae|":{"opcode":"control_if_else","next":null,"parent":"h(","inputs":{"CONDITION":[2,"ae}"]},"fields":{},"shadow":false,"topLevel":false},"ae}":{"opcode":"operator_gt","next":null,"parent":"ae|","inputs":{"OPERAND1":[3,"bfp",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"ae~":{"opcode":"data_setvariableto","next":null,"parent":"h)","inputs":{"VALUE":[3,"afa",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"afa":{"opcode":"operator_subtract","next":null,"parent":"ae~","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bfq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afb":{"opcode":"operator_lt","next":null,"parent":"h*","inputs":{"OPERAND1":[3,"bfr",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"afc":{"opcode":"data_setvariableto","next":null,"parent":"h*","inputs":{"VALUE":[3,"bfs",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"afd":{"opcode":"data_setvariableto","next":null,"parent":"h*","inputs":{"VALUE":[3,"afe",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"afe":{"opcode":"operator_subtract","next":null,"parent":"afd","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bft",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aff":{"opcode":"operator_lt","next":null,"parent":"h+","inputs":{"OPERAND1":[3,"bfu",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"afg":{"opcode":"operator_lt","next":null,"parent":"h,","inputs":{"OPERAND1":[3,"bfv",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"afh":{"opcode":"operator_lt","next":null,"parent":"h-","inputs":{"OPERAND1":[3,"bfw",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"afi":{"opcode":"data_setvariableto","next":null,"parent":"h-","inputs":{"VALUE":[3,"afj",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"afk":{"opcode":"operator_mod","next":null,"parent":"afl","inputs":{"NUM1":[3,"afm",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"afm":{"opcode":"operator_mathop","next":null,"parent":"afk","inputs":{"NUM":[3,"bfx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"afn":{"opcode":"operator_lt","next":null,"parent":"h.","inputs":{"OPERAND1":[3,"bfy",[10,""]],"OPERAND2":[1,[10,"0x0C000000"]]},"fields":{},"shadow":false,"topLevel":false},"afo":{"opcode":"operator_lt","next":null,"parent":"h/","inputs":{"OPERAND1":[3,"bfz",[10,""]],"OPERAND2":[1,[10,"0x0A000000"]]},"fields":{},"shadow":false,"topLevel":false},"afp":{"opcode":"looks_say","next":"afq","parent":"bfA","inputs":{"MESSAGE":[1,[10,"[ARM9] MOV"]]},"fields":{},"shadow":false,"topLevel":false},"afq":{"opcode":"looks_say","next":"afr","parent":"afp","inputs":{"MESSAGE":[1,[10,"[ARM9] Multiply"]]},"fields":{},"shadow":false,"topLevel":false},"afr":{"opcode":"looks_say","next":"afs","parent":"afq","inputs":{"MESSAGE":[1,[10,"[ARM9] Multiply Long"]]},"fields":{},"shadow":false,"topLevel":false},"afs":{"opcode":"looks_say","next":"aft","parent":"afr","inputs":{"MESSAGE":[1,[10,"[ARM9] Single Data Swap"]]},"fields":{},"shadow":false,"topLevel":false},"aft":{"opcode":"looks_say","next":"afu","parent":"afs","inputs":{"MESSAGE":[1,[10,"[ARM9] Branch and Exchange"]]},"fields":{},"shadow":false,"topLevel":false},"afu":{"opcode":"looks_say","next":"afv","parent":"aft","inputs":{"MESSAGE":[1,[10,"[ARM9] Halfword Data Transfer (Register Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"afw":{"opcode":"data_setvariableto","next":null,"parent":"h!","inputs":{"VALUE":[3,"afx",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"afx":{"opcode":"operator_gt","next":null,"parent":"afw","inputs":{"OPERAND1":[3,"xU",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"afy":{"opcode":"operator_divide","next":null,"parent":"afz","inputs":{"NUM1":[3,"afA",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"afB":{"opcode":"data_deletealloflist","next":"afD","parent":"afC","inputs":{},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"afD":{"opcode":"data_deletealloflist","next":"afE","parent":"afB","inputs":{},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"afE":{"opcode":"data_deletealloflist","next":"xV","parent":"afD","inputs":{},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"afF":{"opcode":"operator_divide","next":null,"parent":"afG","inputs":{"NUM1":[3,"afH",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"afG":{"opcode":"operator_mathop","next":null,"parent":"afI","inputs":{"NUM":[3,"afF",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"afH":{"opcode":"operator_subtract","next":null,"parent":"afF","inputs":{"NUM1":[3,"bfB",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"afJ":{"opcode":"data_changevariableby","next":"xW","parent":"afK","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"afL":{"opcode":"operator_subtract","next":null,"parent":"xQ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bfC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afM":{"opcode":"operator_not","next":null,"parent":"xU","inputs":{"OPERAND":[2,"xX"]},"fields":{},"shadow":false,"topLevel":false},"afN":{"opcode":"operator_lt","next":null,"parent":"h:","inputs":{"OPERAND1":[3,"bfD",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"afO":{"opcode":"operator_add","next":null,"parent":"afP","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"afQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afQ":{"opcode":"operator_mathop","next":null,"parent":"afO","inputs":{"NUM":[3,"afR",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"afR":{"opcode":"operator_divide","next":null,"parent":"afQ","inputs":{"NUM1":[3,"afS",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"afS":{"opcode":"operator_subtract","next":null,"parent":"afR","inputs":{"NUM1":[3,"bfE",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"afT":{"opcode":"data_itemoflist","next":null,"parent":"afU","inputs":{"INDEX":[3,"afV",[7,0]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"afV":{"opcode":"operator_add","next":null,"parent":"afT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"afW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afW":{"opcode":"operator_mathop","next":null,"parent":"afV","inputs":{"NUM":[3,"afX",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"afX":{"opcode":"operator_divide","next":null,"parent":"afW","inputs":{"NUM1":[3,"afY",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"afY":{"opcode":"operator_subtract","next":null,"parent":"afX","inputs":{"NUM1":[3,"bfF",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"afZ":{"opcode":"data_itemoflist","next":null,"parent":"af!","inputs":{"INDEX":[3,"af#",[7,0]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"af%":{"opcode":"operator_subtract","next":null,"parent":"af(","inputs":{"NUM1":[3,"bfG",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"af)":{"opcode":"operator_gt","next":null,"parent":"h;","inputs":{"OPERAND1":[3,"bfH",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"af*":{"opcode":"operator_gt","next":null,"parent":"h=","inputs":{"OPERAND1":[3,"bfI",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"af+":{"opcode":"operator_add","next":null,"parent":"xY","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"af,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af,":{"opcode":"operator_mathop","next":null,"parent":"af+","inputs":{"NUM":[3,"af-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"af-":{"opcode":"operator_divide","next":null,"parent":"af,","inputs":{"NUM1":[3,"af.",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"af.":{"opcode":"operator_subtract","next":null,"parent":"af-","inputs":{"NUM1":[3,"bfJ",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"af/":{"opcode":"operator_add","next":null,"parent":"xZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"af:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"af:":{"opcode":"operator_mathop","next":null,"parent":"af/","inputs":{"NUM":[3,"af;",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"af;":{"opcode":"operator_divide","next":null,"parent":"af:","inputs":{"NUM1":[3,"af=",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"af?":{"opcode":"looks_say","next":"bfK","parent":"af@","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Register Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"af[":{"opcode":"procedures_definition","next":"x!","parent":null,"inputs":{"custom_block":[1,"x#"]},"fields":{},"shadow":false,"topLevel":true,"x":13005,"y":466},"af]":{"opcode":"procedures_definition","next":"h?","parent":null,"inputs":{"custom_block":[1,"af^"]},"fields":{},"shadow":false,"topLevel":true,"x":13856,"y":637},"af^":{"opcode":"procedures_prototype","next":null,"parent":"af]","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[1,"bfL"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"af_":{"opcode":"operator_lt","next":null,"parent":"h?","inputs":{"OPERAND1":[3,"bfM",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"af`":{"opcode":"data_setvariableto","next":null,"parent":"h?","inputs":{"VALUE":[3,"af{",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"af|":{"opcode":"data_setvariableto","next":null,"parent":"h?","inputs":{"VALUE":[3,"bfN",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"af{":{"opcode":"data_itemoflist","next":null,"parent":"af`","inputs":{"INDEX":[3,"af}",[7,0]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"af}":{"opcode":"operator_add","next":null,"parent":"af{","inputs":{"NUM1":[3,"bfO",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"af~":{"opcode":"procedures_prototype","next":null,"parent":"afK","inputs":{"w|jx0IoJLmzBO~yODIww":[1,"bfP"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.instruction %s","argumentids":"[\"w|jx0IoJLmzBO~yODIww\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"aeN":{"opcode":"operator_mod","next":null,"parent":"xW","inputs":{"NUM1":[3,"aeM",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"afA":{"opcode":"operator_subtract","next":null,"parent":"afy","inputs":{"NUM1":[3,"bfQ",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"aga":{"opcode":"data_itemoflist","next":null,"parent":"agb","inputs":{"INDEX":[3,"agc",[7,0]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"agc":{"opcode":"operator_add","next":null,"parent":"aga","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"agd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agd":{"opcode":"operator_mathop","next":null,"parent":"agc","inputs":{"NUM":[3,"age",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"age":{"opcode":"operator_divide","next":null,"parent":"agd","inputs":{"NUM1":[3,"agf",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agf":{"opcode":"operator_subtract","next":null,"parent":"age","inputs":{"NUM1":[3,"bfR",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"agg":{"opcode":"data_itemoflist","next":null,"parent":"agh","inputs":{"INDEX":[3,"aeV",[7,0]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"aeV":{"opcode":"operator_add","next":null,"parent":"agg","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aeU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agi":{"opcode":"operator_add","next":null,"parent":"x%","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"agj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agj":{"opcode":"operator_mathop","next":null,"parent":"agi","inputs":{"NUM":[3,"agk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"agk":{"opcode":"operator_divide","next":null,"parent":"agj","inputs":{"NUM1":[3,"agl",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agm":{"opcode":"operator_lt","next":null,"parent":"h@","inputs":{"OPERAND1":[3,"bfS",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agn":{"opcode":"operator_lt","next":null,"parent":"h[","inputs":{"OPERAND1":[3,"bfT",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ago":{"opcode":"operator_lt","next":null,"parent":"W_","inputs":{"OPERAND1":[3,"bfU",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"agp":{"opcode":"data_setvariableto","next":null,"parent":"W_","inputs":{"VALUE":[3,"bfV",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"agq":{"opcode":"data_setvariableto","next":null,"parent":"W_","inputs":{"VALUE":[3,"agr",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"agr":{"opcode":"operator_subtract","next":null,"parent":"agq","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bfW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ags":{"opcode":"operator_lt","next":null,"parent":"W`","inputs":{"OPERAND1":[3,"bfX",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"agt":{"opcode":"data_setvariableto","next":null,"parent":"W`","inputs":{"VALUE":[3,"bfY",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"agu":{"opcode":"data_setvariableto","next":null,"parent":"W`","inputs":{"VALUE":[3,"agv",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"agv":{"opcode":"operator_subtract","next":null,"parent":"agu","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bfZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agw":{"opcode":"operator_round","next":null,"parent":"x(","inputs":{"NUM":[3,"agx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agx":{"opcode":"operator_mathop","next":null,"parent":"agw","inputs":{"NUM":[3,"agy",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"agy":{"opcode":"operator_multiply","next":null,"parent":"agx","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"agz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agz":{"opcode":"operator_mod","next":null,"parent":"agy","inputs":{"NUM1":[3,"bf!",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agA":{"opcode":"operator_round","next":null,"parent":"x)","inputs":{"NUM":[3,"agB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agB":{"opcode":"operator_mathop","next":null,"parent":"agA","inputs":{"NUM":[3,"agC",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"agC":{"opcode":"operator_multiply","next":null,"parent":"agB","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"agD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agD":{"opcode":"operator_subtract","next":null,"parent":"agC","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"agE",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agE":{"opcode":"operator_mod","next":null,"parent":"agD","inputs":{"NUM1":[3,"agF",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agF":{"opcode":"operator_subtract","next":null,"parent":"agE","inputs":{"NUM1":[3,"bf#",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"agG":{"opcode":"operator_add","next":null,"parent":"agH","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"agI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agI":{"opcode":"operator_mathop","next":null,"parent":"agG","inputs":{"NUM":[3,"agJ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"agJ":{"opcode":"operator_divide","next":null,"parent":"agI","inputs":{"NUM1":[3,"agK",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agK":{"opcode":"operator_subtract","next":null,"parent":"agJ","inputs":{"NUM1":[3,"bf%",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"agL":{"opcode":"data_itemoflist","next":null,"parent":"agM","inputs":{"INDEX":[3,"agN",[7,0]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"agN":{"opcode":"operator_add","next":null,"parent":"agL","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"agO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"agO":{"opcode":"operator_mathop","next":null,"parent":"agN","inputs":{"NUM":[3,"agP",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"agP":{"opcode":"operator_divide","next":null,"parent":"agO","inputs":{"NUM1":[3,"agQ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"agQ":{"opcode":"operator_subtract","next":null,"parent":"agP","inputs":{"NUM1":[3,"bf(",[4,0]],"NUM2":[1,[4,"0x04800000"]]},"fields":{},"shadow":false,"topLevel":false},"agR":{"opcode":"data_itemoflist","next":null,"parent":"agS","inputs":{"INDEX":[3,"agT",[7,0]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"agU":{"opcode":"data_deletealloflist","next":"x+","parent":"x*","inputs":{},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"agV":{"opcode":"data_deletealloflist","next":"x,","parent":"x+","inputs":{},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"agW":{"opcode":"data_deletealloflist","next":"x.","parent":"x-","inputs":{},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"agX":{"opcode":"data_deletealloflist","next":"x/","parent":"x.","inputs":{},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"agY":{"opcode":"data_deletealloflist","next":"x:","parent":"x/","inputs":{},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"agZ":{"opcode":"data_deletealloflist","next":"afC","parent":"x:","inputs":{},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"afC":{"opcode":"data_deletealloflist","next":"afB","parent":"agZ","inputs":{},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"afK":{"opcode":"procedures_definition","next":"afJ","parent":null,"inputs":{"custom_block":[1,"af~"]},"fields":{},"shadow":false,"topLevel":true,"x":7944,"y":405},"ag!":{"opcode":"procedures_definition","next":"ag#","parent":null,"inputs":{"custom_block":[1,"ag%"]},"fields":{},"shadow":false,"topLevel":true,"x":9156,"y":383},"ag#":{"opcode":"data_changevariableby","next":"x;","parent":"ag!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"ag%":{"opcode":"procedures_prototype","next":null,"parent":"ag!","inputs":{"#l%LO,1LL7`*b:s_Xb^M":[1,"bf)"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.instruction %s","argumentids":"[\"#l%LO,1LL7`*b:s_Xb^M\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ag(":{"opcode":"procedures_prototype","next":null,"parent":"ag)","inputs":{"HR}S7=-$neJrd)Sf~gG)":[1,"bf*"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","argumentnames":"[\"opcode\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ag*":{"opcode":"data_setvariableto","next":"x=","parent":"hP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.little_endian","Sp7jtJ,4KrK(][NW_Syc"]},"shadow":false,"topLevel":false},"ag+":{"opcode":"data_setvariableto","next":null,"parent":"x?","inputs":{"VALUE":[3,"ag,",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"ag,":{"opcode":"operator_mathop","next":null,"parent":"ag+","inputs":{"NUM":[3,"bf+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ag-":{"opcode":"operator_lt","next":null,"parent":"W{","inputs":{"OPERAND1":[3,"bf,",[10,""]],"OPERAND2":[1,[10,"0x08000000"]]},"fields":{},"shadow":false,"topLevel":false},"ag.":{"opcode":"operator_lt","next":null,"parent":"W|","inputs":{"OPERAND1":[3,"bf-",[10,""]],"OPERAND2":[1,[10,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"ag/":{"opcode":"operator_lt","next":null,"parent":"W}","inputs":{"OPERAND1":[3,"bf.",[10,""]],"OPERAND2":[1,[10,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"ag:":{"opcode":"operator_equals","next":null,"parent":"h]","inputs":{"OPERAND1":[3,"ag;",[10,""]],"OPERAND2":[1,[10,"0b000100101111111111110001"]]},"fields":{},"shadow":false,"topLevel":false},"ag;":{"opcode":"operator_mathop","next":null,"parent":"ag:","inputs":{"NUM":[3,"bf/",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ag=":{"opcode":"operator_gt","next":null,"parent":"JD","inputs":{"OPERAND1":[3,"bf:",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"ag?":{"opcode":"operator_multiply","next":null,"parent":"JE","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"ag@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag[":{"opcode":"operator_mathop","next":null,"parent":"JE","inputs":{"NUM":[3,"ag]",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ag@":{"opcode":"operator_mathop","next":null,"parent":"ag?","inputs":{"NUM":[3,"bf;",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ag]":{"opcode":"operator_divide","next":null,"parent":"ag[","inputs":{"NUM1":[3,"bf=",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag^":{"opcode":"operator_add","next":null,"parent":"JF","inputs":{"NUM1":[3,"bf?",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ag_":{"opcode":"operator_add","next":null,"parent":"JG","inputs":{"NUM1":[3,"bf@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ag`":{"opcode":"operator_multiply","next":null,"parent":"JH","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"ag{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ag{":{"opcode":"operator_mod","next":null,"parent":"ag`","inputs":{"NUM1":[3,"bf[",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bf]":{"opcode":"event_whenbroadcastreceived","next":"ae.","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["start game","gofV]+|49LxJ]7Ibhwn8"]},"shadow":false,"topLevel":true,"x":-519,"y":128},"hK":{"opcode":"data_setvariableto","next":"ae:","parent":"ae/","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false,"comment":"aeC"},"bfm":{"opcode":"event_broadcast","next":null,"parent":"ae[","inputs":{"BROADCAST_INPUT":[1,[11,"render_screen","*~j7B^$jo;Babt$i@0p-"]]},"fields":{},"shadow":false,"topLevel":false},"ag|":{"opcode":"procedures_definition","next":"W~","parent":null,"inputs":{"custom_block":[1,"ag}"]},"fields":{},"shadow":false,"topLevel":true,"x":1749,"y":165},"ag}":{"opcode":"procedures_prototype","next":null,"parent":"ag|","inputs":{"F:1=0LFS=ykmsAVLMbo@":[1,"bf^"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bf^":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"W~":{"opcode":"control_if_else","next":null,"parent":"ag|","inputs":{"CONDITION":[2,"ag~"],"SUBSTACK":[2,"Xa"],"SUBSTACK2":[2,"Xb"]},"fields":{},"shadow":false,"topLevel":false},"ag~":{"opcode":"operator_gt","next":null,"parent":"W~","inputs":{"OPERAND1":[3,"bf_",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bf_":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Xa":{"opcode":"control_if_else","next":null,"parent":"W~","inputs":{"CONDITION":[2,"aha"],"SUBSTACK":[2,"hL"],"SUBSTACK2":[2,"ahb"]},"fields":{},"shadow":false,"topLevel":false},"aha":{"opcode":"operator_gt","next":null,"parent":"Xa","inputs":{"OPERAND1":[3,"bf`",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bf`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aha","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hL":{"opcode":"control_if_else","next":null,"parent":"Xa","inputs":{"CONDITION":[2,"ahc"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bY"},"ahc":{"opcode":"operator_gt","next":null,"parent":"hL","inputs":{"OPERAND1":[3,"bf{",[10,""]],"OPERAND2":[1,[10,"0x09FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bf{":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahb":{"opcode":"data_setvariableto","next":null,"parent":"Xa","inputs":{"VALUE":[3,"ahd",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"ahd":{"opcode":"data_itemoflist","next":null,"parent":"ahb","inputs":{"INDEX":[3,"ahe",[7,0]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"ahe":{"opcode":"operator_add","next":null,"parent":"ahd","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ahf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahf":{"opcode":"operator_mathop","next":null,"parent":"ahe","inputs":{"NUM":[3,"ahg",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahg":{"opcode":"operator_divide","next":null,"parent":"ahf","inputs":{"NUM1":[3,"ahh",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahh":{"opcode":"operator_subtract","next":null,"parent":"ahg","inputs":{"NUM1":[3,"bf|",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"bf|":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahh","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Xb":{"opcode":"control_if_else","next":null,"parent":"W~","inputs":{"CONDITION":[2,"ahi"],"SUBSTACK":[2,"Xc"],"SUBSTACK2":[2,"hS"]},"fields":{},"shadow":false,"topLevel":false},"ahi":{"opcode":"operator_gt","next":null,"parent":"Xb","inputs":{"OPERAND1":[3,"bf}",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bf}":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahi","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Xc":{"opcode":"control_if_else","next":null,"parent":"Xb","inputs":{"CONDITION":[2,"ahj"],"SUBSTACK":[2,"Xd"],"SUBSTACK2":[2,"ahk"]},"fields":{},"shadow":false,"topLevel":false},"ahj":{"opcode":"operator_gt","next":null,"parent":"Xc","inputs":{"OPERAND1":[3,"bf~",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bf~":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahj","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Xd":{"opcode":"control_if_else","next":null,"parent":"Xc","inputs":{"CONDITION":[2,"ahl"],"SUBSTACK":[2,"h^"],"SUBSTACK2":[2,"agS"]},"fields":{},"shadow":false,"topLevel":false},"ahl":{"opcode":"operator_gt","next":null,"parent":"Xd","inputs":{"OPERAND1":[3,"bga",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bga":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahl","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h^":{"opcode":"control_if_else","next":null,"parent":"Xd","inputs":{"CONDITION":[2,"ahm"],"SUBSTACK":[2,"ahn"],"SUBSTACK2":[2,"agM"]},"fields":{},"shadow":false,"topLevel":false},"ahm":{"opcode":"operator_gt","next":null,"parent":"h^","inputs":{"OPERAND1":[3,"bgb",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgb":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahm","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahn":{"opcode":"data_setvariableto","next":null,"parent":"h^","inputs":{"VALUE":[3,"agH",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"agH":{"opcode":"data_itemoflist","next":null,"parent":"ahn","inputs":{"INDEX":[3,"agG",[7,0]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"bf%":{"opcode":"argument_reporter_string_number","next":null,"parent":"agK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"agM":{"opcode":"data_setvariableto","next":null,"parent":"h^","inputs":{"VALUE":[3,"agL",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"bf(":{"opcode":"argument_reporter_string_number","next":null,"parent":"agQ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"agS":{"opcode":"data_setvariableto","next":null,"parent":"Xd","inputs":{"VALUE":[3,"agR",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"agT":{"opcode":"operator_add","next":null,"parent":"agR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aho",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aho":{"opcode":"operator_mathop","next":null,"parent":"agT","inputs":{"NUM":[3,"ahp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahp":{"opcode":"operator_divide","next":null,"parent":"aho","inputs":{"NUM1":[3,"ahq",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahq":{"opcode":"operator_subtract","next":null,"parent":"ahp","inputs":{"NUM1":[3,"bgc",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"bgc":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahk":{"opcode":"data_setvariableto","next":null,"parent":"Xc","inputs":{"VALUE":[3,"ahr",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"ahr":{"opcode":"data_itemoflist","next":null,"parent":"ahk","inputs":{"INDEX":[3,"ahs",[7,0]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"ahs":{"opcode":"operator_add","next":null,"parent":"ahr","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aht",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aht":{"opcode":"operator_mathop","next":null,"parent":"ahs","inputs":{"NUM":[3,"ahu",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahu":{"opcode":"operator_divide","next":null,"parent":"aht","inputs":{"NUM1":[3,"ahv",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahv":{"opcode":"operator_subtract","next":null,"parent":"ahu","inputs":{"NUM1":[3,"bgd",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"bgd":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hS":{"opcode":"control_if_else","next":null,"parent":"Xb","inputs":{"CONDITION":[2,"ahw"],"SUBSTACK":[2,"ahx"],"SUBSTACK2":[2,"aC"]},"fields":{},"shadow":false,"topLevel":false},"ahw":{"opcode":"operator_gt","next":null,"parent":"hS","inputs":{"OPERAND1":[3,"bge",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bge":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahw","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahx":{"opcode":"data_setvariableto","next":null,"parent":"hS","inputs":{"VALUE":[3,"ahy",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"ahy":{"opcode":"data_itemoflist","next":null,"parent":"ahx","inputs":{"INDEX":[3,"ahz",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"ahz":{"opcode":"operator_add","next":null,"parent":"ahy","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ahA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahA":{"opcode":"operator_mathop","next":null,"parent":"ahz","inputs":{"NUM":[3,"ahB",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahB":{"opcode":"operator_divide","next":null,"parent":"ahA","inputs":{"NUM1":[3,"ahC",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahC":{"opcode":"operator_subtract","next":null,"parent":"ahB","inputs":{"NUM1":[3,"bgf",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"bgf":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bfe":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hT":{"opcode":"control_if_else","next":null,"parent":"aC","inputs":{"CONDITION":[2,"ahD"],"SUBSTACK":[2,"h_"],"SUBSTACK2":[2,"agh"]},"fields":{},"shadow":false,"topLevel":false},"ahD":{"opcode":"operator_gt","next":null,"parent":"hT","inputs":{"OPERAND1":[3,"bgg",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"bgg":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h_":{"opcode":"control_if_else","next":null,"parent":"hT","inputs":{"CONDITION":[2,"ahE"],"SUBSTACK":[2,"ahF"],"SUBSTACK2":[2,"agb"]},"fields":{},"shadow":false,"topLevel":false},"ahE":{"opcode":"operator_gt","next":null,"parent":"h_","inputs":{"OPERAND1":[3,"bgh",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"bgh":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahF":{"opcode":"data_setvariableto","next":null,"parent":"h_","inputs":{"VALUE":[3,"ahG",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"ahG":{"opcode":"data_itemoflist","next":null,"parent":"ahF","inputs":{"INDEX":[3,"ahH",[7,0]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"ahH":{"opcode":"operator_add","next":null,"parent":"ahG","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"afz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"afz":{"opcode":"operator_mathop","next":null,"parent":"ahH","inputs":{"NUM":[3,"afy",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bfQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"afA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"agb":{"opcode":"data_setvariableto","next":null,"parent":"h_","inputs":{"VALUE":[3,"aga",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"bfR":{"opcode":"argument_reporter_string_number","next":null,"parent":"agf","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"agh":{"opcode":"data_setvariableto","next":null,"parent":"hT","inputs":{"VALUE":[3,"agg",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"aeX":{"opcode":"operator_subtract","next":null,"parent":"aeW","inputs":{"NUM1":[3,"bgi",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"bgi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hU":{"opcode":"control_if_else","next":null,"parent":"aC","inputs":{"CONDITION":[2,"ahI"],"SUBSTACK":[2,"h`"],"SUBSTACK2":[2,"af!"]},"fields":{},"shadow":false,"topLevel":false},"ahI":{"opcode":"operator_gt","next":null,"parent":"hU","inputs":{"OPERAND1":[3,"bgj",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"bgj":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahI","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h`":{"opcode":"control_if_else","next":null,"parent":"hU","inputs":{"CONDITION":[2,"ahJ"],"SUBSTACK":[2,"ahK"],"SUBSTACK2":[2,"afU"]},"fields":{},"shadow":false,"topLevel":false},"ahJ":{"opcode":"operator_gt","next":null,"parent":"h`","inputs":{"OPERAND1":[3,"bgk",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"bgk":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahK":{"opcode":"data_setvariableto","next":null,"parent":"h`","inputs":{"VALUE":[3,"afP",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"afP":{"opcode":"data_itemoflist","next":null,"parent":"ahK","inputs":{"INDEX":[3,"afO",[7,0]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"bfE":{"opcode":"argument_reporter_string_number","next":null,"parent":"afS","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"afU":{"opcode":"data_setvariableto","next":null,"parent":"h`","inputs":{"VALUE":[3,"afT",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"bfF":{"opcode":"argument_reporter_string_number","next":null,"parent":"afY","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"af!":{"opcode":"data_setvariableto","next":null,"parent":"hU","inputs":{"VALUE":[3,"afZ",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"af#":{"opcode":"operator_add","next":null,"parent":"afZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ahL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahL":{"opcode":"operator_mathop","next":null,"parent":"af#","inputs":{"NUM":[3,"ahM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahM":{"opcode":"operator_divide","next":null,"parent":"ahL","inputs":{"NUM1":[3,"ahN",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ahN":{"opcode":"operator_subtract","next":null,"parent":"ahM","inputs":{"NUM1":[3,"bgl",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"bgl":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ahO":{"opcode":"procedures_definition","next":"ahP","parent":null,"inputs":{"custom_block":[1,"JI"]},"fields":{},"shadow":false,"topLevel":true,"x":3990,"y":190},"JI":{"opcode":"procedures_prototype","next":null,"parent":"ahO","inputs":{"[Bf|Xjs%{03^@##)w@`d":[1,"bgm"],"A$`3X[JrP}|bWV/@_Osy":[1,"bgn"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","argumentnames":"[\"number\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bgm":{"opcode":"argument_reporter_string_number","next":null,"parent":"JI","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"bgn":{"opcode":"argument_reporter_string_number","next":null,"parent":"JI","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"ahP":{"opcode":"data_setvariableto","next":null,"parent":"ahO","inputs":{"VALUE":[3,"ahQ",[10,""]]},"fields":{"VARIABLE":["core.byte_return","D@T%uY;^Ck}J:bfqk*PR"]},"shadow":false,"topLevel":false},"ahQ":{"opcode":"operator_mathop","next":null,"parent":"ahP","inputs":{"NUM":[3,"ahR",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ahR":{"opcode":"operator_mod","next":null,"parent":"ahQ","inputs":{"NUM1":[3,"JJ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"JJ":{"opcode":"operator_divide","next":null,"parent":"ahR","inputs":{"NUM1":[3,"bgo",[4,0]],"NUM2":[3,"ahS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bgo":{"opcode":"argument_reporter_string_number","next":null,"parent":"JJ","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"ahS":{"opcode":"operator_round","next":null,"parent":"JJ","inputs":{"NUM":[3,"ahT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahT":{"opcode":"operator_mathop","next":null,"parent":"ahS","inputs":{"NUM":[3,"ahU",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"ahU":{"opcode":"operator_multiply","next":null,"parent":"ahT","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"ahV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahV":{"opcode":"operator_subtract","next":null,"parent":"ahU","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"ahW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ahW":{"opcode":"operator_mod","next":null,"parent":"ahV","inputs":{"NUM1":[3,"bgp",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bgp":{"opcode":"argument_reporter_string_number","next":null,"parent":"ahW","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"hM":{"opcode":"procedures_definition","next":"ahX","parent":null,"inputs":{"custom_block":[1,"bgq"]},"fields":{},"shadow":false,"topLevel":true,"x":1282,"y":196,"comment":"aeD"},"bgq":{"opcode":"procedures_prototype","next":null,"parent":"hM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.reset_memory","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ahX":{"opcode":"data_deletealloflist","next":"ahY","parent":"hM","inputs":{},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"ahY":{"opcode":"data_deletealloflist","next":"ahZ","parent":"ahX","inputs":{},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"ahZ":{"opcode":"data_deletealloflist","next":"ah!","parent":"ahY","inputs":{},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"ah!":{"opcode":"data_deletealloflist","next":"ah#","parent":"ahZ","inputs":{},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"ah#":{"opcode":"data_deletealloflist","next":"JK","parent":"ah!","inputs":{},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"JK":{"opcode":"control_repeat","next":"ah%","parent":"ah#","inputs":{"TIMES":[1,[6,"200000"]],"SUBSTACK":[2,"ah("]},"fields":{},"shadow":false,"topLevel":false},"ah(":{"opcode":"data_addtolist","next":"ah)","parent":"JK","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"ah)":{"opcode":"data_addtolist","next":"ah*","parent":"ah(","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"ah*":{"opcode":"data_addtolist","next":"ah+","parent":"ah)","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"ah+":{"opcode":"data_addtolist","next":"bgr","parent":"ah*","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"bgr":{"opcode":"data_addtolist","next":null,"parent":"ah+","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"ah%":{"opcode":"data_deletealloflist","next":"JL","parent":"JK","inputs":{},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"JL":{"opcode":"control_repeat","next":"ah,","parent":"ah%","inputs":{"TIMES":[1,[6,"48576"]],"SUBSTACK":[2,"bgs"]},"fields":{},"shadow":false,"topLevel":false},"bgs":{"opcode":"data_addtolist","next":null,"parent":"JL","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"ah,":{"opcode":"data_deletealloflist","next":"JM","parent":"JL","inputs":{},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"JM":{"opcode":"control_repeat","next":"ah-","parent":"ah,","inputs":{"TIMES":[1,[6,"8192"]],"SUBSTACK":[2,"bgt"]},"fields":{},"shadow":false,"topLevel":false},"bgt":{"opcode":"data_addtolist","next":null,"parent":"JM","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"ah-":{"opcode":"data_deletealloflist","next":"x*","parent":"JM","inputs":{},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"x*":{"opcode":"control_repeat","next":"agU","parent":"ah-","inputs":{"TIMES":[1,[6,"16384"]],"SUBSTACK":[2,"bgu"]},"fields":{},"shadow":false,"topLevel":false},"bgu":{"opcode":"data_addtolist","next":null,"parent":"x*","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"x+":{"opcode":"control_repeat","next":"agV","parent":"agU","inputs":{"TIMES":[1,[6,"101"]],"SUBSTACK":[2,"bgv"]},"fields":{},"shadow":false,"topLevel":false},"bgv":{"opcode":"data_addtolist","next":null,"parent":"x+","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"x,":{"opcode":"control_repeat","next":"hN","parent":"agV","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"bgw"]},"fields":{},"shadow":false,"topLevel":false},"bgw":{"opcode":"data_addtolist","next":null,"parent":"x,","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"hN":{"opcode":"data_deletealloflist","next":"x-","parent":"x,","inputs":{},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false,"comment":"aeE"},"x-":{"opcode":"control_repeat","next":"agW","parent":"hN","inputs":{"TIMES":[1,[6,"0"]],"SUBSTACK":[2,"bgx"]},"fields":{},"shadow":false,"topLevel":false},"bgx":{"opcode":"data_addtolist","next":null,"parent":"x-","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"x.":{"opcode":"control_repeat","next":"agX","parent":"agW","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"bgy"]},"fields":{},"shadow":false,"topLevel":false},"bgy":{"opcode":"data_addtolist","next":null,"parent":"x.","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"x/":{"opcode":"control_repeat","next":"agY","parent":"agX","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"bgz"]},"fields":{},"shadow":false,"topLevel":false},"bgz":{"opcode":"data_addtolist","next":null,"parent":"x/","inputs":{"ITEM":[1,[10,"false"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"x:":{"opcode":"control_repeat","next":"agZ","parent":"agY","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"bgA"]},"fields":{},"shadow":false,"topLevel":false},"bgA":{"opcode":"data_addtolist","next":null,"parent":"x:","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"xV":{"opcode":"control_repeat","next":"ah.","parent":"afE","inputs":{"TIMES":[1,[6,"200000"]],"SUBSTACK":[2,"ah/"]},"fields":{},"shadow":false,"topLevel":false},"ah/":{"opcode":"data_addtolist","next":"ah:","parent":"xV","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"ah:":{"opcode":"data_addtolist","next":"ah;","parent":"ah/","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"ah;":{"opcode":"data_addtolist","next":"ah=","parent":"ah:","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"ah=":{"opcode":"data_addtolist","next":"bgB","parent":"ah;","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"bgB":{"opcode":"data_addtolist","next":null,"parent":"ah=","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"ah.":{"opcode":"data_deletealloflist","next":"x@","parent":"xV","inputs":{},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"x@":{"opcode":"control_repeat","next":"ah?","parent":"ah.","inputs":{"TIMES":[1,[6,"48576"]],"SUBSTACK":[2,"bgC"]},"fields":{},"shadow":false,"topLevel":false},"bgC":{"opcode":"data_addtolist","next":null,"parent":"x@","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"ah?":{"opcode":"data_deletealloflist","next":"x[","parent":"x@","inputs":{},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"x[":{"opcode":"control_repeat","next":"ah@","parent":"ah?","inputs":{"TIMES":[1,[6,"1051"]],"SUBSTACK":[2,"bgD"]},"fields":{},"shadow":false,"topLevel":false},"bgD":{"opcode":"data_addtolist","next":null,"parent":"x[","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"ah@":{"opcode":"data_deletealloflist","next":"x]","parent":"x[","inputs":{},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"x]":{"opcode":"control_repeat","next":"ah[","parent":"ah@","inputs":{"TIMES":[1,[6,"131072"]],"SUBSTACK":[2,"bgE"]},"fields":{},"shadow":false,"topLevel":false},"bgE":{"opcode":"data_addtolist","next":null,"parent":"x]","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"ah[":{"opcode":"data_deletealloflist","next":"x^","parent":"x]","inputs":{},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"x^":{"opcode":"control_repeat","next":"ah]","parent":"ah[","inputs":{"TIMES":[1,[6,"32768"]],"SUBSTACK":[2,"bgF"]},"fields":{},"shadow":false,"topLevel":false},"bgF":{"opcode":"data_addtolist","next":null,"parent":"x^","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"ah]":{"opcode":"data_deletealloflist","next":"x_","parent":"x^","inputs":{},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"x_":{"opcode":"control_repeat","next":"ah^","parent":"ah]","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"bgG"]},"fields":{},"shadow":false,"topLevel":false},"bgG":{"opcode":"data_addtolist","next":null,"parent":"x_","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"ah^":{"opcode":"data_deletealloflist","next":"#k","parent":"x_","inputs":{},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"xT":{"opcode":"procedures_prototype","next":null,"parent":"ae_","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[1,"bgH"],"3=8N7_NC]MC+s+N]n=Xg":[1,"bgI"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bgH":{"opcode":"argument_reporter_string_number","next":null,"parent":"xT","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"bgI":{"opcode":"argument_reporter_string_number","next":null,"parent":"xT","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"h%":{"opcode":"control_if_else","next":null,"parent":"ae_","inputs":{"CONDITION":[2,"ae`"],"SUBSTACK":[2,"h("],"SUBSTACK2":[2,"h{"]},"fields":{},"shadow":false,"topLevel":false},"bfn":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h(":{"opcode":"control_if_else","next":null,"parent":"h%","inputs":{"CONDITION":[2,"ae{"],"SUBSTACK":[2,"ae|"],"SUBSTACK2":[2,"#l"]},"fields":{},"shadow":false,"topLevel":false},"bfo":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae{","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bfp":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#l":{"opcode":"data_replaceitemoflist","next":null,"parent":"h(","inputs":{"INDEX":[3,"ah_",[7,0]],"ITEM":[3,"bgJ",[10,""]]},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"ah_":{"opcode":"operator_add","next":null,"parent":"#l","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ah`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ah`":{"opcode":"operator_mathop","next":null,"parent":"ah_","inputs":{"NUM":[3,"ah{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ah{":{"opcode":"operator_divide","next":null,"parent":"ah`","inputs":{"NUM1":[3,"ah|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ah|":{"opcode":"operator_subtract","next":null,"parent":"ah{","inputs":{"NUM1":[3,"bgK",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"bgK":{"opcode":"argument_reporter_string_number","next":null,"parent":"ah|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"#l","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"h{":{"opcode":"control_if_else","next":null,"parent":"h%","inputs":{"CONDITION":[2,"ah}"],"SUBSTACK":[2,"h|"],"SUBSTACK2":[2,"h}"]},"fields":{},"shadow":false,"topLevel":false},"ah}":{"opcode":"operator_gt","next":null,"parent":"h{","inputs":{"OPERAND1":[3,"bgL",[10,""]],"OPERAND2":[1,[10,"0x037FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgL":{"opcode":"argument_reporter_string_number","next":null,"parent":"ah}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h|":{"opcode":"control_if_else","next":null,"parent":"h{","inputs":{"CONDITION":[2,"ah~"],"SUBSTACK":[2,"h~"],"SUBSTACK2":[2,"x%"]},"fields":{},"shadow":false,"topLevel":false},"ah~":{"opcode":"operator_gt","next":null,"parent":"h|","inputs":{"OPERAND1":[3,"bgM",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgM":{"opcode":"argument_reporter_string_number","next":null,"parent":"ah~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h~":{"opcode":"control_if_else","next":null,"parent":"h|","inputs":{"CONDITION":[2,"aia"],"SUBSTACK":[2,"ia"],"SUBSTACK2":[2,"xS"]},"fields":{},"shadow":false,"topLevel":false},"aia":{"opcode":"operator_gt","next":null,"parent":"h~","inputs":{"OPERAND1":[3,"bgN",[10,""]],"OPERAND2":[1,[10,"0x047FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgN":{"opcode":"argument_reporter_string_number","next":null,"parent":"aia","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ia":{"opcode":"control_if_else","next":null,"parent":"h~","inputs":{"CONDITION":[2,"aib"],"SUBSTACK":[2,"#m"],"SUBSTACK2":[2,"xR"]},"fields":{},"shadow":false,"topLevel":false},"aib":{"opcode":"operator_gt","next":null,"parent":"ia","inputs":{"OPERAND1":[3,"bgO",[10,""]],"OPERAND2":[1,[10,"0x04807FFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aib","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xR":{"opcode":"data_replaceitemoflist","next":null,"parent":"ia","inputs":{"INDEX":[3,"aeZ",[7,0]],"ITEM":[3,"bgP",[10,""]]},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"bfj":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae#","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgP":{"opcode":"argument_reporter_string_number","next":null,"parent":"xR","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"xS":{"opcode":"data_replaceitemoflist","next":null,"parent":"h~","inputs":{"INDEX":[3,"ae%",[7,0]],"ITEM":[3,"bgQ",[10,""]]},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"bfk":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"xS","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"x%":{"opcode":"data_replaceitemoflist","next":null,"parent":"h|","inputs":{"INDEX":[3,"agi",[7,0]],"ITEM":[3,"bgR",[10,""]]},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"agl":{"opcode":"operator_subtract","next":null,"parent":"agk","inputs":{"NUM1":[3,"bgS",[4,0]],"NUM2":[1,[4,"0x03800000"]]},"fields":{},"shadow":false,"topLevel":false},"bgS":{"opcode":"argument_reporter_string_number","next":null,"parent":"agl","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgR":{"opcode":"argument_reporter_string_number","next":null,"parent":"x%","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"h}":{"opcode":"control_if_else","next":null,"parent":"h{","inputs":{"CONDITION":[2,"aic"],"SUBSTACK":[2,"#n"],"SUBSTACK2":[2,"ib"]},"fields":{},"shadow":false,"topLevel":false},"aic":{"opcode":"operator_gt","next":null,"parent":"h}","inputs":{"OPERAND1":[3,"bgT",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bgT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aic","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#n":{"opcode":"data_replaceitemoflist","next":null,"parent":"h}","inputs":{"INDEX":[3,"aid",[7,0]],"ITEM":[3,"bgU",[10,""]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"aid":{"opcode":"operator_add","next":null,"parent":"#n","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aie",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aie":{"opcode":"operator_mathop","next":null,"parent":"aid","inputs":{"NUM":[3,"aif",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aif":{"opcode":"operator_divide","next":null,"parent":"aie","inputs":{"NUM1":[3,"aig",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aig":{"opcode":"operator_subtract","next":null,"parent":"aif","inputs":{"NUM1":[3,"bgV",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"bgV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aig","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgU":{"opcode":"argument_reporter_string_number","next":null,"parent":"#n","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"ib":{"opcode":"control_if_else","next":null,"parent":"h}","inputs":{"CONDITION":[2,"aih"],"SUBSTACK":[2,"ic"],"SUBSTACK2":[2,"h;"]},"fields":{},"shadow":false,"topLevel":false},"aih":{"opcode":"operator_gt","next":null,"parent":"ib","inputs":{"OPERAND1":[3,"bgW",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"bgW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aih","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ic":{"opcode":"control_if_else","next":null,"parent":"ib","inputs":{"CONDITION":[2,"aii"],"SUBSTACK":[2,"id"],"SUBSTACK2":[2,"#o"]},"fields":{},"shadow":false,"topLevel":false},"aii":{"opcode":"operator_gt","next":null,"parent":"ic","inputs":{"OPERAND1":[3,"bgX",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"bgX":{"opcode":"argument_reporter_string_number","next":null,"parent":"aii","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"id":{"opcode":"control_if_else","next":null,"parent":"ic","inputs":{"CONDITION":[2,"aij"],"SUBSTACK":[2,"#p"],"SUBSTACK2":[2,"#q"]},"fields":{},"shadow":false,"topLevel":false},"aij":{"opcode":"operator_gt","next":null,"parent":"id","inputs":{"OPERAND1":[3,"bgY",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"bgY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aij","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#p":{"opcode":"data_replaceitemoflist","next":null,"parent":"id","inputs":{"INDEX":[3,"aik",[7,0]],"ITEM":[3,"bgZ",[10,""]]},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"aik":{"opcode":"operator_add","next":null,"parent":"#p","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ail",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ail":{"opcode":"operator_mathop","next":null,"parent":"aik","inputs":{"NUM":[3,"aim",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aim":{"opcode":"operator_divide","next":null,"parent":"ail","inputs":{"NUM1":[3,"ain",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ain":{"opcode":"operator_subtract","next":null,"parent":"aim","inputs":{"NUM1":[3,"bg!",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"bg!":{"opcode":"argument_reporter_string_number","next":null,"parent":"ain","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bgZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"#p","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"#q":{"opcode":"data_replaceitemoflist","next":null,"parent":"id","inputs":{"INDEX":[3,"aio",[7,0]],"ITEM":[3,"bg#",[10,""]]},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"aio":{"opcode":"operator_add","next":null,"parent":"#q","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aip",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aip":{"opcode":"operator_mathop","next":null,"parent":"aio","inputs":{"NUM":[3,"aiq",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aiq":{"opcode":"operator_divide","next":null,"parent":"aip","inputs":{"NUM1":[3,"air",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"air":{"opcode":"operator_subtract","next":null,"parent":"aiq","inputs":{"NUM1":[3,"bg%",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"bg%":{"opcode":"argument_reporter_string_number","next":null,"parent":"air","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bg#":{"opcode":"argument_reporter_string_number","next":null,"parent":"#q","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"#o":{"opcode":"data_replaceitemoflist","next":null,"parent":"ic","inputs":{"INDEX":[3,"ais",[7,0]],"ITEM":[3,"bg(",[10,""]]},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"ais":{"opcode":"operator_add","next":null,"parent":"#o","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ait",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ait":{"opcode":"operator_mathop","next":null,"parent":"ais","inputs":{"NUM":[3,"af(",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"af(":{"opcode":"operator_divide","next":null,"parent":"ait","inputs":{"NUM1":[3,"af%",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bfG":{"opcode":"argument_reporter_string_number","next":null,"parent":"af%","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bg(":{"opcode":"argument_reporter_string_number","next":null,"parent":"#o","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"h;":{"opcode":"control_if_else","next":null,"parent":"ib","inputs":{"CONDITION":[2,"af)"],"SUBSTACK":[2,"h="],"SUBSTACK2":[2,"#r"]},"fields":{},"shadow":false,"topLevel":false},"bfH":{"opcode":"argument_reporter_string_number","next":null,"parent":"af)","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"h=":{"opcode":"control_if_else","next":null,"parent":"h;","inputs":{"CONDITION":[2,"af*"],"SUBSTACK":[2,"xY"],"SUBSTACK2":[2,"xZ"]},"fields":{},"shadow":false,"topLevel":false},"bfI":{"opcode":"argument_reporter_string_number","next":null,"parent":"af*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"xY":{"opcode":"data_replaceitemoflist","next":null,"parent":"h=","inputs":{"INDEX":[3,"af+",[7,0]],"ITEM":[3,"bg)",[10,""]]},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"bfJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"af.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bg)":{"opcode":"argument_reporter_string_number","next":null,"parent":"xY","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"xZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"h=","inputs":{"INDEX":[3,"af/",[7,0]],"ITEM":[3,"bg*",[10,""]]},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"af=":{"opcode":"operator_subtract","next":null,"parent":"af;","inputs":{"NUM1":[3,"bg+",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"bg+":{"opcode":"argument_reporter_string_number","next":null,"parent":"af=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bg*":{"opcode":"argument_reporter_string_number","next":null,"parent":"xZ","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"#r":{"opcode":"data_replaceitemoflist","next":null,"parent":"h;","inputs":{"INDEX":[3,"afI",[7,0]],"ITEM":[3,"bg,",[10,""]]},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"afI":{"opcode":"operator_add","next":null,"parent":"#r","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"afG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bfB":{"opcode":"argument_reporter_string_number","next":null,"parent":"afH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bg,":{"opcode":"argument_reporter_string_number","next":null,"parent":"#r","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"bfP":{"opcode":"argument_reporter_string_number","next":null,"parent":"af~","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"xW":{"opcode":"procedures_call","next":"ie","parent":"afJ","inputs":{"9;fw%Q)R[CaRaj#x%L6V":[3,"aeN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.check_condition %s","argumentids":"[\"9;fw%Q)R[CaRaj#x%L6V\"]","warp":"true"}},"bff":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeL","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"ie":{"opcode":"control_if","next":"#s","parent":"xW","inputs":{"CONDITION":[2,"bg-"],"SUBSTACK":[2,"bg."]},"fields":{},"shadow":false,"topLevel":false},"bg-":{"opcode":"operator_equals","next":null,"parent":"ie","inputs":{"OPERAND1":[3,[12,"core.condition_test","x|g/RBvah4i`.Kz@pfYu"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bg.":{"opcode":"control_stop","next":null,"parent":"ie","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"#s":{"opcode":"procedures_call","next":"if","parent":"ie","inputs":{"HR}S7=-$neJrd)Sf~gG)":[3,"bg/",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","warp":"true"}},"bg/":{"opcode":"argument_reporter_string_number","next":null,"parent":"#s","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"if":{"opcode":"control_if_else","next":null,"parent":"#s","inputs":{"CONDITION":[2,"bg:"],"SUBSTACK":[2,"ig"],"SUBSTACK2":[2,"ih"]},"fields":{},"shadow":false,"topLevel":false},"bg:":{"opcode":"operator_lt","next":null,"parent":"if","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ig":{"opcode":"control_if_else","next":null,"parent":"if","inputs":{"CONDITION":[2,"bg;"],"SUBSTACK":[2,"ii"],"SUBSTACK2":[2,"ij"]},"fields":{},"shadow":false,"topLevel":false},"bg;":{"opcode":"operator_lt","next":null,"parent":"ig","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ii":{"opcode":"control_if_else","next":null,"parent":"ig","inputs":{"CONDITION":[2,"bg="],"SUBSTACK":[2,"ik"],"SUBSTACK2":[2,"#t"]},"fields":{},"shadow":false,"topLevel":false},"bg=":{"opcode":"operator_lt","next":null,"parent":"ii","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ik":{"opcode":"control_if_else","next":null,"parent":"ii","inputs":{"CONDITION":[2,"bg?"],"SUBSTACK":[2,"hY"],"SUBSTACK2":[2,"bg@"]},"fields":{},"shadow":false,"topLevel":false},"bg?":{"opcode":"operator_lt","next":null,"parent":"ik","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"hY":{"opcode":"control_if_else","next":"x`","parent":"ik","inputs":{"CONDITION":[2,"aeO"],"SUBSTACK":[2,"hZ"],"SUBSTACK2":[2,"x{"]},"fields":{},"shadow":false,"topLevel":false},"bfg":{"opcode":"operator_mod","next":null,"parent":"aeO","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"hZ":{"opcode":"procedures_call","next":"bg[","parent":"hY","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[3,"bg]",[10,""]],"3)l`,m3z-UYcLsco:|pk":[3,"aeP",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","warp":"true"}},"bg]":{"opcode":"operator_mod","next":null,"parent":"hZ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bfh":{"opcode":"operator_divide","next":null,"parent":"aeR","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bg[":{"opcode":"data_setvariableto","next":null,"parent":"hZ","inputs":{"VALUE":[3,[12,"core.rotate_return","zY(u-?O,+t%[td.I,e.a"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"x{":{"opcode":"procedures_call","next":"x|","parent":"hY","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"bg^",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"bg^":{"opcode":"operator_mod","next":null,"parent":"x{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"x`":{"opcode":"data_setvariableto","next":"il","parent":"hY","inputs":{"VALUE":[3,"aiu",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"aiu":{"opcode":"operator_mathop","next":null,"parent":"x`","inputs":{"NUM":[3,"aiv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aiv":{"opcode":"operator_divide","next":null,"parent":"aiu","inputs":{"NUM1":[3,"bg_",[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"bg_":{"opcode":"operator_mod","next":null,"parent":"aiv","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"il":{"opcode":"control_if_else","next":"bg`","parent":"x`","inputs":{"CONDITION":[2,"bg{"],"SUBSTACK":[2,"im"],"SUBSTACK2":[2,"in"]},"fields":{},"shadow":false,"topLevel":false},"bg{":{"opcode":"operator_lt","next":null,"parent":"il","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"im":{"opcode":"control_if_else","next":null,"parent":"il","inputs":{"CONDITION":[2,"bg|"],"SUBSTACK":[2,"io"],"SUBSTACK2":[2,"ip"]},"fields":{},"shadow":false,"topLevel":false},"bg|":{"opcode":"operator_lt","next":null,"parent":"im","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"io":{"opcode":"control_if_else","next":null,"parent":"im","inputs":{"CONDITION":[2,"bg}"],"SUBSTACK":[2,"aiw"],"SUBSTACK2":[2,"x}"]},"fields":{},"shadow":false,"topLevel":false},"bg}":{"opcode":"operator_lt","next":null,"parent":"io","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aiw":{"opcode":"control_if_else","next":null,"parent":"io","inputs":{"CONDITION":[2,"bg~"]},"fields":{},"shadow":false,"topLevel":false},"bg~":{"opcode":"operator_lt","next":null,"parent":"aiw","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"x}":{"opcode":"control_if_else","next":null,"parent":"io","inputs":{"CONDITION":[2,"bha"],"SUBSTACK":[2,"x~"]},"fields":{},"shadow":false,"topLevel":false},"bha":{"opcode":"operator_lt","next":null,"parent":"x}","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ip":{"opcode":"control_if_else","next":null,"parent":"im","inputs":{"CONDITION":[2,"bhb"],"SUBSTACK":[2,"ya"],"SUBSTACK2":[2,"aix"]},"fields":{},"shadow":false,"topLevel":false},"bhb":{"opcode":"operator_lt","next":null,"parent":"ip","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ya":{"opcode":"control_if_else","next":null,"parent":"ip","inputs":{"CONDITION":[2,"bhc"],"SUBSTACK":[2,"yb"]},"fields":{},"shadow":false,"topLevel":false},"bhc":{"opcode":"operator_lt","next":null,"parent":"ya","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aix":{"opcode":"control_if_else","next":null,"parent":"ip","inputs":{"CONDITION":[2,"bhd"]},"fields":{},"shadow":false,"topLevel":false},"bhd":{"opcode":"operator_lt","next":null,"parent":"aix","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"in":{"opcode":"control_if_else","next":null,"parent":"il","inputs":{"CONDITION":[2,"bhe"],"SUBSTACK":[2,"iq"],"SUBSTACK2":[2,"ir"]},"fields":{},"shadow":false,"topLevel":false},"bhe":{"opcode":"operator_lt","next":null,"parent":"in","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"iq":{"opcode":"control_if_else","next":null,"parent":"in","inputs":{"CONDITION":[2,"bhf"],"SUBSTACK":[2,"aiy"],"SUBSTACK2":[2,"aiz"]},"fields":{},"shadow":false,"topLevel":false},"bhf":{"opcode":"operator_lt","next":null,"parent":"iq","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aiy":{"opcode":"control_if_else","next":null,"parent":"iq","inputs":{"CONDITION":[2,"bhg"]},"fields":{},"shadow":false,"topLevel":false},"bhg":{"opcode":"operator_lt","next":null,"parent":"aiy","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aiz":{"opcode":"control_if_else","next":null,"parent":"iq","inputs":{"CONDITION":[2,"bhh"]},"fields":{},"shadow":false,"topLevel":false},"bhh":{"opcode":"operator_lt","next":null,"parent":"aiz","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"ir":{"opcode":"control_if_else","next":null,"parent":"in","inputs":{"CONDITION":[2,"bhi"],"SUBSTACK":[2,"yc"],"SUBSTACK2":[2,"aiA"]},"fields":{},"shadow":false,"topLevel":false},"bhi":{"opcode":"operator_lt","next":null,"parent":"ir","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"yc":{"opcode":"control_if_else","next":null,"parent":"ir","inputs":{"CONDITION":[2,"bhj"],"SUBSTACK2":[2,"aiB"]},"fields":{},"shadow":false,"topLevel":false},"bhj":{"opcode":"operator_lt","next":null,"parent":"yc","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aiB":{"opcode":"procedures_call","next":null,"parent":"yc","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aiC",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"aiC":{"opcode":"operator_mod","next":null,"parent":"aiB","inputs":{"NUM1":[3,"aiD",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aiD":{"opcode":"operator_mathop","next":null,"parent":"aiC","inputs":{"NUM":[3,"bhk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhk":{"opcode":"operator_divide","next":null,"parent":"aiD","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"aiA":{"opcode":"control_if_else","next":null,"parent":"ir","inputs":{"CONDITION":[2,"bhl"]},"fields":{},"shadow":false,"topLevel":false},"bhl":{"opcode":"operator_lt","next":null,"parent":"aiA","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bg`":{"opcode":"data_changevariableby","next":null,"parent":"il","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"bg@":{"opcode":"data_changevariableby","next":null,"parent":"ik","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"#t":{"opcode":"control_if_else","next":null,"parent":"ii","inputs":{"CONDITION":[2,"bhm"],"SUBSTACK":[2,"bhn"]},"fields":{},"shadow":false,"topLevel":false},"bhm":{"opcode":"operator_lt","next":null,"parent":"#t","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bhn":{"opcode":"data_changevariableby","next":null,"parent":"#t","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"ij":{"opcode":"control_if_else","next":null,"parent":"ig","inputs":{"CONDITION":[2,"bho"],"SUBSTACK":[2,"aiE"],"SUBSTACK2":[2,"is"]},"fields":{},"shadow":false,"topLevel":false},"bho":{"opcode":"operator_lt","next":null,"parent":"ij","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aiE":{"opcode":"control_if_else","next":null,"parent":"ij","inputs":{"CONDITION":[2,"bhp"]},"fields":{},"shadow":false,"topLevel":false},"bhp":{"opcode":"operator_lt","next":null,"parent":"aiE","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"is":{"opcode":"control_if_else","next":null,"parent":"ij","inputs":{"CONDITION":[2,"bhq"],"SUBSTACK2":[2,"it"],"SUBSTACK":[2,"yd"]},"fields":{},"shadow":false,"topLevel":false},"bhq":{"opcode":"operator_lt","next":null,"parent":"is","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"it":{"opcode":"control_if_else","next":"iu","parent":"is","inputs":{"CONDITION":[2,"aiF"],"SUBSTACK":[2,"ye"],"SUBSTACK2":[2,"aiG"]},"fields":{},"shadow":false,"topLevel":false},"aiF":{"opcode":"operator_gt","next":null,"parent":"it","inputs":{"OPERAND1":[3,"bhr",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bhr":{"opcode":"operator_mod","next":null,"parent":"aiF","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"ye":{"opcode":"procedures_call","next":"yf","parent":"it","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"bhs",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"bhs":{"opcode":"operator_mod","next":null,"parent":"ye","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"yf":{"opcode":"procedures_call","next":"bht","parent":"ye","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"aiH",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"aiH":{"opcode":"operator_mod","next":null,"parent":"yf","inputs":{"NUM1":[3,"aiI",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aiI":{"opcode":"operator_mathop","next":null,"parent":"aiH","inputs":{"NUM":[3,"bhu",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhu":{"opcode":"operator_divide","next":null,"parent":"aiI","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bht":{"opcode":"data_setvariableto","next":null,"parent":"yf","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"aiG":{"opcode":"data_setvariableto","next":null,"parent":"it","inputs":{"VALUE":[3,"bhv",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bhv":{"opcode":"operator_mod","next":null,"parent":"aiG","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"iu":{"opcode":"control_if","next":"iv","parent":"it","inputs":{"CONDITION":[2,"aiJ"],"SUBSTACK":[2,"aiK"]},"fields":{},"shadow":false,"topLevel":false},"aiJ":{"opcode":"operator_gt","next":null,"parent":"iu","inputs":{"OPERAND1":[3,"bhw",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bhw":{"opcode":"operator_mod","next":null,"parent":"aiJ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"aiK":{"opcode":"data_setvariableto","next":null,"parent":"iu","inputs":{"VALUE":[3,"bhx",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bhx":{"opcode":"operator_subtract","next":null,"parent":"aiK","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"iv":{"opcode":"control_if_else","next":null,"parent":"iu","inputs":{"CONDITION":[2,"aiL"],"SUBSTACK":[2,"yg"],"SUBSTACK2":[2,"yh"]},"fields":{},"shadow":false,"topLevel":false},"aiL":{"opcode":"operator_gt","next":null,"parent":"iv","inputs":{"OPERAND1":[3,"bhy",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bhy":{"opcode":"operator_mod","next":null,"parent":"aiL","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"yg":{"opcode":"procedures_call","next":"yi","parent":"iv","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"aiM",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"aiM":{"opcode":"operator_mod","next":null,"parent":"yg","inputs":{"NUM1":[3,"aiN",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aiN":{"opcode":"operator_mathop","next":null,"parent":"aiM","inputs":{"NUM":[3,"bhz",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhz":{"opcode":"operator_divide","next":null,"parent":"aiN","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"yi":{"opcode":"procedures_call","next":"aiO","parent":"yg","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[3,"bhA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","warp":"true"}},"bhA":{"opcode":"operator_add","next":null,"parent":"yi","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aiO":{"opcode":"procedures_call","next":null,"parent":"yi","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aiP",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"aiP":{"opcode":"operator_mod","next":null,"parent":"aiO","inputs":{"NUM1":[3,"aiQ",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aiQ":{"opcode":"operator_mathop","next":null,"parent":"aiP","inputs":{"NUM":[3,"bhB",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhB":{"opcode":"operator_divide","next":null,"parent":"aiQ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"yh":{"opcode":"procedures_call","next":"aiR","parent":"iv","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"aiS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"aiS":{"opcode":"operator_mod","next":null,"parent":"yh","inputs":{"NUM1":[3,"aiT",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aiT":{"opcode":"operator_mathop","next":null,"parent":"aiS","inputs":{"NUM":[3,"bhC",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhC":{"opcode":"operator_divide","next":null,"parent":"aiT","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"aiR":{"opcode":"data_setvariableto","next":"yj","parent":"yh","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"yj":{"opcode":"procedures_call","next":"aiU","parent":"aiR","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"aiV",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"aiV":{"opcode":"operator_mod","next":null,"parent":"yj","inputs":{"NUM1":[3,"aiW",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aiW":{"opcode":"operator_mathop","next":null,"parent":"aiV","inputs":{"NUM":[3,"bhD",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bhD":{"opcode":"operator_divide","next":null,"parent":"aiW","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"aiU":{"opcode":"procedures_call","next":null,"parent":"yj","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[3,"bhE",[10,""]],"-H4sp=),qi[~:f)tEWi`":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","warp":"true"}},"bhE":{"opcode":"operator_add","next":null,"parent":"aiU","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ih":{"opcode":"control_if_else","next":null,"parent":"if","inputs":{"CONDITION":[2,"bhF"],"SUBSTACK":[2,"b!"],"SUBSTACK2":[2,"iw"]},"fields":{},"shadow":false,"topLevel":false},"bhF":{"opcode":"operator_lt","next":null,"parent":"ih","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"b!":{"opcode":"control_if_else","next":null,"parent":"ih","inputs":{"CONDITION":[2,"bhG"],"SUBSTACK":[2,"aiX"],"SUBSTACK2":[2,"yk"]},"fields":{},"shadow":false,"topLevel":false},"bhG":{"opcode":"operator_lt","next":null,"parent":"b!","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aiX":{"opcode":"control_if_else","next":null,"parent":"b!","inputs":{"CONDITION":[2,"bhH"]},"fields":{},"shadow":false,"topLevel":false},"bhH":{"opcode":"operator_lt","next":null,"parent":"aiX","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"iw":{"opcode":"control_if_else","next":null,"parent":"ih","inputs":{"CONDITION":[2,"bhI"],"SUBSTACK":[2,"aiY"],"SUBSTACK2":[2,"aiZ"]},"fields":{},"shadow":false,"topLevel":false},"bhI":{"opcode":"operator_lt","next":null,"parent":"iw","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aiY":{"opcode":"control_if_else","next":null,"parent":"iw","inputs":{"CONDITION":[2,"bhJ"]},"fields":{},"shadow":false,"topLevel":false},"bhJ":{"opcode":"operator_lt","next":null,"parent":"aiY","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aiZ":{"opcode":"control_if_else","next":null,"parent":"iw","inputs":{"CONDITION":[2,"bhK"]},"fields":{},"shadow":false,"topLevel":false},"bhK":{"opcode":"operator_lt","next":null,"parent":"aiZ","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"ai!":{"opcode":"procedures_definition","next":"U","parent":null,"inputs":{"custom_block":[1,"ai#"]},"fields":{},"shadow":false,"topLevel":true,"x":10161,"y":409},"ai#":{"opcode":"procedures_prototype","next":null,"parent":"ai!","inputs":{"9;fw%Q)R[CaRaj#x%L6V":[1,"bhL"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.check_condition %s","argumentids":"[\"9;fw%Q)R[CaRaj#x%L6V\"]","argumentnames":"[\"cond\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bhL":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai#","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":true,"topLevel":false},"U":{"opcode":"control_if_else","next":null,"parent":"ai!","inputs":{"CONDITION":[2,"ai%"],"SUBSTACK":[2,"h@"],"SUBSTACK2":[2,"h+"]},"fields":{},"shadow":false,"topLevel":false},"ai%":{"opcode":"operator_lt","next":null,"parent":"U","inputs":{"OPERAND1":[3,"bhM",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bhM":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai%","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h@":{"opcode":"control_if_else","next":null,"parent":"U","inputs":{"CONDITION":[2,"agm"],"SUBSTACK":[2,"h["],"SUBSTACK2":[2,"V"]},"fields":{},"shadow":false,"topLevel":false},"bfS":{"opcode":"argument_reporter_string_number","next":null,"parent":"agm","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h[":{"opcode":"control_if_else","next":null,"parent":"h@","inputs":{"CONDITION":[2,"agn"],"SUBSTACK":[2,"W_"],"SUBSTACK2":[2,"W`"]},"fields":{},"shadow":false,"topLevel":false},"bfT":{"opcode":"argument_reporter_string_number","next":null,"parent":"agn","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"W_":{"opcode":"control_if_else","next":null,"parent":"h[","inputs":{"CONDITION":[2,"ago"],"SUBSTACK":[2,"agp"],"SUBSTACK2":[2,"agq"]},"fields":{},"shadow":false,"topLevel":false},"bfU":{"opcode":"argument_reporter_string_number","next":null,"parent":"ago","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"bfV":{"opcode":"data_itemoflist","next":null,"parent":"agp","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bfW":{"opcode":"data_itemoflist","next":null,"parent":"agr","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"W`":{"opcode":"control_if_else","next":null,"parent":"h[","inputs":{"CONDITION":[2,"ags"],"SUBSTACK":[2,"agt"],"SUBSTACK2":[2,"agu"]},"fields":{},"shadow":false,"topLevel":false},"bfX":{"opcode":"argument_reporter_string_number","next":null,"parent":"ags","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"bfY":{"opcode":"data_itemoflist","next":null,"parent":"agt","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bfZ":{"opcode":"data_itemoflist","next":null,"parent":"agv","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"V":{"opcode":"control_if_else","next":null,"parent":"h@","inputs":{"CONDITION":[2,"ai("],"SUBSTACK":[2,"h)"],"SUBSTACK2":[2,"h*"]},"fields":{},"shadow":false,"topLevel":false},"ai(":{"opcode":"operator_lt","next":null,"parent":"V","inputs":{"OPERAND1":[3,"bhN",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bhN":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai(","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h)":{"opcode":"control_if_else","next":null,"parent":"V","inputs":{"CONDITION":[2,"ai)"],"SUBSTACK":[2,"ai*"],"SUBSTACK2":[2,"ae~"]},"fields":{},"shadow":false,"topLevel":false},"ai)":{"opcode":"operator_lt","next":null,"parent":"h)","inputs":{"OPERAND1":[3,"bhO",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bhO":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai)","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"ai*":{"opcode":"data_setvariableto","next":null,"parent":"h)","inputs":{"VALUE":[3,"bhP",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"bhP":{"opcode":"data_itemoflist","next":null,"parent":"ai*","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bfq":{"opcode":"data_itemoflist","next":null,"parent":"afa","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"h*":{"opcode":"control_if_else","next":null,"parent":"V","inputs":{"CONDITION":[2,"afb"],"SUBSTACK":[2,"afc"],"SUBSTACK2":[2,"afd"]},"fields":{},"shadow":false,"topLevel":false},"bfr":{"opcode":"argument_reporter_string_number","next":null,"parent":"afb","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"bfs":{"opcode":"data_itemoflist","next":null,"parent":"afc","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bft":{"opcode":"data_itemoflist","next":null,"parent":"afe","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"h+":{"opcode":"control_if_else","next":null,"parent":"U","inputs":{"CONDITION":[2,"aff"],"SUBSTACK":[2,"h,"],"SUBSTACK2":[2,"ix"]},"fields":{},"shadow":false,"topLevel":false},"bfu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aff","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h,":{"opcode":"control_if_else","next":null,"parent":"h+","inputs":{"CONDITION":[2,"afg"],"SUBSTACK":[2,"h-"],"SUBSTACK2":[2,"iy"]},"fields":{},"shadow":false,"topLevel":false},"bfv":{"opcode":"argument_reporter_string_number","next":null,"parent":"afg","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h-":{"opcode":"control_if_else","next":null,"parent":"h,","inputs":{"CONDITION":[2,"afh"],"SUBSTACK":[2,"afi"],"SUBSTACK2":[2,"ai+"]},"fields":{},"shadow":false,"topLevel":false},"bfw":{"opcode":"argument_reporter_string_number","next":null,"parent":"afh","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"afj":{"opcode":"operator_gt","next":null,"parent":"afi","inputs":{"OPERAND1":[3,"yl",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"yl":{"opcode":"operator_subtract","next":null,"parent":"afj","inputs":{"NUM1":[3,"bhQ",[4,0]],"NUM2":[3,"bhR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bhQ":{"opcode":"data_itemoflist","next":null,"parent":"yl","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bhR":{"opcode":"data_itemoflist","next":null,"parent":"yl","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"ai+":{"opcode":"data_setvariableto","next":null,"parent":"h-","inputs":{"VALUE":[3,"ai,",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"ai,":{"opcode":"operator_gt","next":null,"parent":"ai+","inputs":{"OPERAND1":[3,"ym",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ym":{"opcode":"operator_subtract","next":null,"parent":"ai,","inputs":{"NUM1":[3,"bhS",[4,0]],"NUM2":[3,"bhT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bhS":{"opcode":"data_itemoflist","next":null,"parent":"ym","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bhT":{"opcode":"data_itemoflist","next":null,"parent":"ym","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"iy":{"opcode":"control_if_else","next":null,"parent":"h,","inputs":{"CONDITION":[2,"ai-"],"SUBSTACK":[2,"ai."],"SUBSTACK2":[2,"ai/"]},"fields":{},"shadow":false,"topLevel":false},"ai-":{"opcode":"operator_lt","next":null,"parent":"iy","inputs":{"OPERAND1":[3,"bhU",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"bhU":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai-","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"ai.":{"opcode":"data_setvariableto","next":null,"parent":"iy","inputs":{"VALUE":[3,"yn",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"yn":{"opcode":"operator_equals","next":null,"parent":"ai.","inputs":{"OPERAND1":[3,"bhV",[10,""]],"OPERAND2":[3,"bhW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bhV":{"opcode":"data_itemoflist","next":null,"parent":"yn","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bhW":{"opcode":"data_itemoflist","next":null,"parent":"yn","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"ai/":{"opcode":"data_setvariableto","next":null,"parent":"iy","inputs":{"VALUE":[3,"ai:",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"ai:":{"opcode":"operator_not","next":null,"parent":"ai/","inputs":{"OPERAND":[2,"yo"]},"fields":{},"shadow":false,"topLevel":false},"yo":{"opcode":"operator_equals","next":null,"parent":"ai:","inputs":{"OPERAND1":[3,"bhX",[10,""]],"OPERAND2":[3,"bhY",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bhX":{"opcode":"data_itemoflist","next":null,"parent":"yo","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bhY":{"opcode":"data_itemoflist","next":null,"parent":"yo","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"ix":{"opcode":"control_if_else","next":null,"parent":"h+","inputs":{"CONDITION":[2,"ai;"],"SUBSTACK":[2,"h!"],"SUBSTACK2":[2,"h:"]},"fields":{},"shadow":false,"topLevel":false},"ai;":{"opcode":"operator_lt","next":null,"parent":"ix","inputs":{"OPERAND1":[3,"bhZ",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"bhZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai;","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"h!":{"opcode":"control_if_else","next":null,"parent":"ix","inputs":{"CONDITION":[2,"aeS"],"SUBSTACK":[2,"aeT"],"SUBSTACK2":[2,"afw"]},"fields":{},"shadow":false,"topLevel":false},"bfi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aeS","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"xQ":{"opcode":"operator_multiply","next":null,"parent":"aeT","inputs":{"NUM1":[3,"afL",[4,0]],"NUM2":[3,"yp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bfC":{"opcode":"data_itemoflist","next":null,"parent":"afL","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"yp":{"opcode":"operator_equals","next":null,"parent":"xQ","inputs":{"OPERAND1":[3,"bh!",[10,""]],"OPERAND2":[3,"bh#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bh!":{"opcode":"data_itemoflist","next":null,"parent":"yp","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bh#":{"opcode":"data_itemoflist","next":null,"parent":"yp","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"xU":{"opcode":"operator_add","next":null,"parent":"afx","inputs":{"NUM1":[3,"bh%",[4,0]],"NUM2":[3,"afM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bh%":{"opcode":"data_itemoflist","next":null,"parent":"xU","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"xX":{"opcode":"operator_equals","next":null,"parent":"afM","inputs":{"OPERAND1":[3,"bh(",[10,""]],"OPERAND2":[3,"bh)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bh(":{"opcode":"data_itemoflist","next":null,"parent":"xX","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bh)":{"opcode":"data_itemoflist","next":null,"parent":"xX","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"h:":{"opcode":"control_if_else","next":null,"parent":"ix","inputs":{"CONDITION":[2,"afN"],"SUBSTACK":[2,"bh*"],"SUBSTACK2":[2,"xP"]},"fields":{},"shadow":false,"topLevel":false},"bfD":{"opcode":"argument_reporter_string_number","next":null,"parent":"afN","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"bh*":{"opcode":"data_setvariableto","next":null,"parent":"h:","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"xP":{"opcode":"data_setvariableto","next":null,"parent":"h:","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false,"comment":"aeG"},"bf)":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag%","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"x;":{"opcode":"procedures_call","next":"iz","parent":"ag#","inputs":{"kc)Odu7|W(7v#A=kW.{G":[3,"ai=",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.check_condition %s","argumentids":"[\"kc)Odu7|W(7v#A=kW.{G\"]","warp":"true"}},"ai=":{"opcode":"operator_mod","next":null,"parent":"x;","inputs":{"NUM1":[3,"ai?",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ai?":{"opcode":"operator_mathop","next":null,"parent":"ai=","inputs":{"NUM":[3,"ai@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ai@":{"opcode":"operator_divide","next":null,"parent":"ai?","inputs":{"NUM1":[3,"bh+",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bh+":{"opcode":"argument_reporter_string_number","next":null,"parent":"ai@","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"iz":{"opcode":"control_if","next":"yq","parent":"x;","inputs":{"CONDITION":[2,"bh,"],"SUBSTACK":[2,"bh-"]},"fields":{},"shadow":false,"topLevel":false},"bh,":{"opcode":"operator_equals","next":null,"parent":"iz","inputs":{"OPERAND1":[3,[12,"core.condition_test","x|g/RBvah4i`.Kz@pfYu"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bh-":{"opcode":"control_stop","next":null,"parent":"iz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ag)":{"opcode":"procedures_definition","next":"hP","parent":null,"inputs":{"custom_block":[1,"ag("]},"fields":{},"shadow":false,"topLevel":true,"x":12317,"y":415},"bf*":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag(","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":true,"topLevel":false},"hP":{"opcode":"data_setvariableto","next":"ag*","parent":"ag)","inputs":{"VALUE":[3,"bh.",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false,"comment":"aeI"},"bh.":{"opcode":"argument_reporter_string_number","next":null,"parent":"hP","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"x=":{"opcode":"control_repeat","next":"W{","parent":"ag*","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"x?"]},"fields":{},"shadow":false,"topLevel":false},"x?":{"opcode":"data_setvariableto","next":"ag+","parent":"x=","inputs":{"VALUE":[3,"yr",[10,""]]},"fields":{"VARIABLE":["core.little_endian","Sp7jtJ,4KrK(][NW_Syc"]},"shadow":false,"topLevel":false},"yr":{"opcode":"operator_add","next":null,"parent":"x?","inputs":{"NUM1":[3,"bh/",[4,0]],"NUM2":[3,"bh:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bh/":{"opcode":"operator_multiply","next":null,"parent":"yr","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bh:":{"opcode":"operator_mod","next":null,"parent":"yr","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bf+":{"opcode":"operator_divide","next":null,"parent":"ag,","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"W{":{"opcode":"control_if_else","next":null,"parent":"x=","inputs":{"CONDITION":[2,"ag-"],"SUBSTACK":[2,"W|"],"SUBSTACK2":[2,"h."]},"fields":{},"shadow":false,"topLevel":false},"bf,":{"opcode":"operator_mod","next":null,"parent":"ag-","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000000"]]},"fields":{},"shadow":false,"topLevel":false},"W|":{"opcode":"control_if_else","next":null,"parent":"W{","inputs":{"CONDITION":[2,"ag."],"SUBSTACK":[2,"W}"],"SUBSTACK2":[2,"bh;"]},"fields":{},"shadow":false,"topLevel":false},"bf-":{"opcode":"operator_mod","next":null,"parent":"ag.","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x08000000"]]},"fields":{},"shadow":false,"topLevel":false},"W}":{"opcode":"control_if_else","next":null,"parent":"W|","inputs":{"CONDITION":[2,"ag/"],"SUBSTACK":[2,"h]"],"SUBSTACK2":[2,"iA"]},"fields":{},"shadow":false,"topLevel":false},"bf.":{"opcode":"operator_mod","next":null,"parent":"ag/","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"h]":{"opcode":"control_if_else","next":null,"parent":"W}","inputs":{"CONDITION":[2,"ag:"],"SUBSTACK":[2,"bh="],"SUBSTACK2":[2,"iB"]},"fields":{},"shadow":false,"topLevel":false},"bf/":{"opcode":"operator_divide","next":null,"parent":"ag;","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bh=":{"opcode":"data_setvariableto","next":null,"parent":"h]","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"iB":{"opcode":"control_if_else","next":null,"parent":"h]","inputs":{"CONDITION":[2,"JD"],"SUBSTACK":[2,"iC"],"SUBSTACK2":[2,"bh?"]},"fields":{},"shadow":false,"topLevel":false},"JD":{"opcode":"operator_and","next":null,"parent":"iB","inputs":{"OPERAND1":[2,"ag="],"OPERAND2":[2,"ai["]},"fields":{},"shadow":false,"topLevel":false},"bf:":{"opcode":"operator_mod","next":null,"parent":"ag=","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"ai[":{"opcode":"operator_gt","next":null,"parent":"JD","inputs":{"OPERAND1":[3,"bh@",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bh@":{"opcode":"operator_mod","next":null,"parent":"ai[","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"iC":{"opcode":"control_if_else","next":null,"parent":"iB","inputs":{"CONDITION":[2,"ai]"],"SUBSTACK":[2,"iD"],"SUBSTACK2":[2,"ys"]},"fields":{},"shadow":false,"topLevel":false},"ai]":{"opcode":"operator_equals","next":null,"parent":"iC","inputs":{"OPERAND1":[3,"ai^",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ai^":{"opcode":"operator_mod","next":null,"parent":"ai]","inputs":{"NUM1":[3,"ai_",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ai_":{"opcode":"operator_mathop","next":null,"parent":"ai^","inputs":{"NUM":[3,"bh[",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bh[":{"opcode":"operator_divide","next":null,"parent":"ai_","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"iD":{"opcode":"control_if_else","next":null,"parent":"iC","inputs":{"CONDITION":[2,"ai`"],"SUBSTACK":[2,"bh]"],"SUBSTACK2":[2,"yt"]},"fields":{},"shadow":false,"topLevel":false},"ai`":{"opcode":"operator_gt","next":null,"parent":"iD","inputs":{"OPERAND1":[3,"bh^",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bh^":{"opcode":"operator_mod","next":null,"parent":"ai`","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"bh]":{"opcode":"data_setvariableto","next":null,"parent":"iD","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"yt":{"opcode":"control_if_else","next":null,"parent":"iD","inputs":{"CONDITION":[2,"ai{"],"SUBSTACK":[2,"bh_"],"SUBSTACK2":[2,"bh`"]},"fields":{},"shadow":false,"topLevel":false},"ai{":{"opcode":"operator_gt","next":null,"parent":"yt","inputs":{"OPERAND1":[3,"bh{",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bh{":{"opcode":"operator_mod","next":null,"parent":"ai{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"bh_":{"opcode":"data_setvariableto","next":null,"parent":"yt","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bh`":{"opcode":"data_setvariableto","next":null,"parent":"yt","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"ys":{"opcode":"control_if_else","next":null,"parent":"iC","inputs":{"CONDITION":[2,"ai|"],"SUBSTACK":[2,"bh|"],"SUBSTACK2":[2,"yu"]},"fields":{},"shadow":false,"topLevel":false},"ai|":{"opcode":"operator_gt","next":null,"parent":"ys","inputs":{"OPERAND1":[3,"bh}",[10,""]],"OPERAND2":[1,[10,"0x003FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bh}":{"opcode":"operator_mod","next":null,"parent":"ai|","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00800000"]]},"fields":{},"shadow":false,"topLevel":false},"bh|":{"opcode":"data_setvariableto","next":null,"parent":"ys","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"yu":{"opcode":"control_if_else","next":null,"parent":"ys","inputs":{"CONDITION":[2,"ai}"],"SUBSTACK":[2,"bh~"],"SUBSTACK2":[2,"ai~"]},"fields":{},"shadow":false,"topLevel":false},"ai}":{"opcode":"operator_equals","next":null,"parent":"yu","inputs":{"OPERAND1":[3,"aja",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aja":{"opcode":"operator_mod","next":null,"parent":"ai}","inputs":{"NUM1":[3,"ajb",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ajb":{"opcode":"operator_mathop","next":null,"parent":"aja","inputs":{"NUM":[3,"bia",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bia":{"opcode":"operator_divide","next":null,"parent":"ajb","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bh~":{"opcode":"data_setvariableto","next":null,"parent":"yu","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"ai~":{"opcode":"data_setvariableto","next":null,"parent":"yu","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bh?":{"opcode":"data_setvariableto","next":null,"parent":"iB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"iA":{"opcode":"control_if_else","next":null,"parent":"W}","inputs":{"CONDITION":[2,"yv"],"SUBSTACK":[2,"yw"],"SUBSTACK2":[2,"bib"]},"fields":{},"shadow":false,"topLevel":false},"yv":{"opcode":"operator_and","next":null,"parent":"iA","inputs":{"OPERAND1":[2,"ajc"],"OPERAND2":[2,"ajd"]},"fields":{},"shadow":false,"topLevel":false},"ajc":{"opcode":"operator_gt","next":null,"parent":"yv","inputs":{"OPERAND1":[3,"bic",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bic":{"opcode":"operator_mod","next":null,"parent":"ajc","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"ajd":{"opcode":"operator_gt","next":null,"parent":"yv","inputs":{"OPERAND1":[3,"bid",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bid":{"opcode":"operator_mod","next":null,"parent":"ajd","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"yw":{"opcode":"control_if_else","next":null,"parent":"iA","inputs":{"CONDITION":[2,"aje"],"SUBSTACK":[2,"bie"],"SUBSTACK2":[2,"yx"]},"fields":{},"shadow":false,"topLevel":false},"aje":{"opcode":"operator_gt","next":null,"parent":"yw","inputs":{"OPERAND1":[3,"bif",[10,""]],"OPERAND2":[1,[10,"0x003FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bif":{"opcode":"operator_mod","next":null,"parent":"aje","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00800000"]]},"fields":{},"shadow":false,"topLevel":false},"bie":{"opcode":"data_setvariableto","next":null,"parent":"yw","inputs":{"VALUE":[1,[10,"6"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"yx":{"opcode":"control_if_else","next":null,"parent":"yw","inputs":{"CONDITION":[2,"afl"],"SUBSTACK":[2,"big"],"SUBSTACK2":[2,"bih"]},"fields":{},"shadow":false,"topLevel":false},"afl":{"opcode":"operator_equals","next":null,"parent":"yx","inputs":{"OPERAND1":[3,"afk",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bfx":{"opcode":"operator_divide","next":null,"parent":"afm","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"big":{"opcode":"data_setvariableto","next":null,"parent":"yx","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bih":{"opcode":"data_setvariableto","next":null,"parent":"yx","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bib":{"opcode":"data_setvariableto","next":null,"parent":"iA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bh;":{"opcode":"data_setvariableto","next":null,"parent":"W|","inputs":{"VALUE":[1,[10,"7"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"h.":{"opcode":"control_if_else","next":null,"parent":"W{","inputs":{"CONDITION":[2,"afn"],"SUBSTACK":[2,"h/"],"SUBSTACK2":[2,"yy"]},"fields":{},"shadow":false,"topLevel":false},"bfy":{"opcode":"operator_mod","next":null,"parent":"afn","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x0F000000"]]},"fields":{},"shadow":false,"topLevel":false},"h/":{"opcode":"control_if_else","next":null,"parent":"h.","inputs":{"CONDITION":[2,"afo"],"SUBSTACK":[2,"bii"],"SUBSTACK2":[2,"bij"]},"fields":{},"shadow":false,"topLevel":false},"bfz":{"opcode":"operator_mod","next":null,"parent":"afo","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000000"]]},"fields":{},"shadow":false,"topLevel":false},"bii":{"opcode":"data_setvariableto","next":null,"parent":"h/","inputs":{"VALUE":[1,[10,"9"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bij":{"opcode":"data_setvariableto","next":null,"parent":"h/","inputs":{"VALUE":[1,[10,"10"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bik":{"opcode":"data_setvariableto","next":null,"parent":"yy","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"bfA":{"opcode":"looks_say","next":"afp","parent":null,"inputs":{"MESSAGE":[1,[10,"[ARM9] Data Processing"]]},"fields":{},"shadow":false,"topLevel":true,"x":8722,"y":264},"afv":{"opcode":"looks_say","next":"ajf","parent":"afu","inputs":{"MESSAGE":[1,[10,"[ARM9] Halfword Data Transfer (Immediate Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"ajf":{"opcode":"looks_say","next":"ajg","parent":"afv","inputs":{"MESSAGE":[1,[10,"[ARM9] Single Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"ajg":{"opcode":"looks_say","next":"ajh","parent":"ajf","inputs":{"MESSAGE":[1,[10,"[ARM9] Undefined Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"ajh":{"opcode":"looks_say","next":"aji","parent":"ajg","inputs":{"MESSAGE":[1,[10,"[ARM9] Block Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"aji":{"opcode":"looks_say","next":"ajj","parent":"ajh","inputs":{"MESSAGE":[1,[10,"[ARM9] Branch"]]},"fields":{},"shadow":false,"topLevel":false},"ajj":{"opcode":"looks_say","next":"af@","parent":"aji","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"af@":{"opcode":"looks_say","next":"af?","parent":"ajj","inputs":{"MESSAGE":[1,[10,"[ARM9] Coprocessor Data Operation"]]},"fields":{},"shadow":false,"topLevel":false},"bfK":{"opcode":"looks_say","next":null,"parent":"af?","inputs":{"MESSAGE":[1,[10,"[ARM9] Software Interrupt"]]},"fields":{},"shadow":false,"topLevel":false},"x#":{"opcode":"procedures_prototype","next":null,"parent":"af[","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[1,"bil"],"YcCxsq`]3g25uQV)Hi5o":[1,"bim"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","argumentnames":"[\"register\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bil":{"opcode":"argument_reporter_string_number","next":null,"parent":"x#","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"bim":{"opcode":"argument_reporter_string_number","next":null,"parent":"x#","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"bfL":{"opcode":"argument_reporter_string_number","next":null,"parent":"af^","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"h?":{"opcode":"control_if_else","next":null,"parent":"af]","inputs":{"CONDITION":[2,"af_"],"SUBSTACK":[2,"af`"],"SUBSTACK2":[2,"af|"]},"fields":{},"shadow":false,"topLevel":false},"bfM":{"opcode":"argument_reporter_string_number","next":null,"parent":"af_","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bfO":{"opcode":"argument_reporter_string_number","next":null,"parent":"af}","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bfN":{"opcode":"operator_subtract","next":null,"parent":"af|","inputs":{"NUM1":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ajk":{"opcode":"procedures_definition","next":"yz","parent":null,"inputs":{"custom_block":[1,"ajl"]},"fields":{},"shadow":false,"topLevel":true,"x":13125,"y":655},"ajl":{"opcode":"procedures_prototype","next":null,"parent":"ajk","inputs":{"BM!EW:X=[xA|lsOiV[D^":[1,"bin"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bin":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajl","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"yz":{"opcode":"control_if_else","next":null,"parent":"ajk","inputs":{"CONDITION":[2,"ajm"],"SUBSTACK":[2,"ajn"],"SUBSTACK2":[2,"ajo"]},"fields":{},"shadow":false,"topLevel":false},"ajm":{"opcode":"operator_lt","next":null,"parent":"yz","inputs":{"OPERAND1":[3,"bio",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bio":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajm","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ajn":{"opcode":"data_setvariableto","next":null,"parent":"yz","inputs":{"VALUE":[3,"ajp",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"ajp":{"opcode":"data_itemoflist","next":null,"parent":"ajn","inputs":{"INDEX":[3,"ajq",[7,0]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"ajq":{"opcode":"operator_add","next":null,"parent":"ajp","inputs":{"NUM1":[3,"bip",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bip":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajq","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ajo":{"opcode":"data_setvariableto","next":null,"parent":"yz","inputs":{"VALUE":[3,"biq",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"biq":{"opcode":"operator_subtract","next":null,"parent":"ajo","inputs":{"NUM1":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ajr":{"opcode":"procedures_definition","next":"yA","parent":null,"inputs":{"custom_block":[1,"yB"]},"fields":{},"shadow":false,"topLevel":true,"x":13666,"y":447},"yB":{"opcode":"procedures_prototype","next":null,"parent":"ajr","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[1,"bir"],"!ho_MT93$iY`6pTQQERT":[1,"bis"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","argumentnames":"[\"register\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bir":{"opcode":"argument_reporter_string_number","next":null,"parent":"yB","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"bis":{"opcode":"argument_reporter_string_number","next":null,"parent":"yB","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"yA":{"opcode":"data_replaceitemoflist","next":null,"parent":"ajr","inputs":{"INDEX":[3,"ajs",[7,0]],"ITEM":[3,"bit",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ajs":{"opcode":"operator_add","next":null,"parent":"yA","inputs":{"NUM1":[3,"biu",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"biu":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajs","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bit":{"opcode":"argument_reporter_string_number","next":null,"parent":"yA","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"ajt":{"opcode":"procedures_definition","next":"yC","parent":null,"inputs":{"custom_block":[1,"aju"]},"fields":{},"shadow":false,"topLevel":true,"x":3982,"y":428},"aju":{"opcode":"procedures_prototype","next":null,"parent":"ajt","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[1,"biv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"biv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aju","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"yC":{"opcode":"procedures_call","next":"yD","parent":"ajt","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"biw",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"biw":{"opcode":"argument_reporter_string_number","next":null,"parent":"yC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yD":{"opcode":"control_if","next":null,"parent":"yC","inputs":{"CONDITION":[2,"ajv"],"SUBSTACK":[2,"yE"]},"fields":{},"shadow":false,"topLevel":false},"ajv":{"opcode":"operator_gt","next":null,"parent":"yD","inputs":{"OPERAND1":[3,"ajw",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ajw":{"opcode":"operator_mod","next":null,"parent":"ajv","inputs":{"NUM1":[3,"bix",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bix":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajw","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yE":{"opcode":"data_setvariableto","next":"yF","parent":"yD","inputs":{"VALUE":[3,"ajx",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"ajx":{"opcode":"operator_round","next":null,"parent":"yE","inputs":{"NUM":[3,"ajy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajy":{"opcode":"operator_mathop","next":null,"parent":"ajx","inputs":{"NUM":[3,"ajz",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"ajz":{"opcode":"operator_multiply","next":null,"parent":"ajy","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"ajA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajA":{"opcode":"operator_subtract","next":null,"parent":"ajz","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"ajB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajB":{"opcode":"operator_mod","next":null,"parent":"ajA","inputs":{"NUM1":[3,"biy",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"biy":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ajC":{"opcode":"procedures_definition","next":"yG","parent":null,"inputs":{"custom_block":[1,"yH"]},"fields":{},"shadow":false,"topLevel":true,"x":3993,"y":968},"yH":{"opcode":"procedures_prototype","next":null,"parent":"ajC","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[1,"biz"],"-H4sp=),qi[~:f)tEWi`":[1,"biA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"biz":{"opcode":"argument_reporter_string_number","next":null,"parent":"yH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"biA":{"opcode":"argument_reporter_string_number","next":null,"parent":"yH","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"yG":{"opcode":"control_if_else","next":null,"parent":"ajC","inputs":{"CONDITION":[2,"ajD"],"SUBSTACK":[2,"yI"],"SUBSTACK2":[2,"x("]},"fields":{},"shadow":false,"topLevel":false},"ajD":{"opcode":"operator_equals","next":null,"parent":"yG","inputs":{"OPERAND1":[3,"ajE",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ajE":{"opcode":"operator_mod","next":null,"parent":"ajD","inputs":{"NUM1":[3,"biB",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"biB":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yI":{"opcode":"procedures_call","next":null,"parent":"yG","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"biC",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"biD",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"biC":{"opcode":"argument_reporter_string_number","next":null,"parent":"yI","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"biD":{"opcode":"argument_reporter_string_number","next":null,"parent":"yI","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"x(":{"opcode":"data_setvariableto","next":"x)","parent":"yG","inputs":{"VALUE":[3,"agw",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"bf!":{"opcode":"argument_reporter_string_number","next":null,"parent":"agz","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"x)":{"opcode":"data_setvariableto","next":"yJ","parent":"x(","inputs":{"VALUE":[3,"agA",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"bf#":{"opcode":"argument_reporter_string_number","next":null,"parent":"agF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yJ":{"opcode":"procedures_call","next":"yK","parent":"x)","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"biE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"biE":{"opcode":"argument_reporter_string_number","next":null,"parent":"yJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yK":{"opcode":"procedures_call","next":"JF","parent":"yJ","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"biF",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"JE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"biF":{"opcode":"argument_reporter_string_number","next":null,"parent":"yK","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"JE":{"opcode":"operator_add","next":null,"parent":"yK","inputs":{"NUM1":[3,"ag?",[4,0]],"NUM2":[3,"ag[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bf;":{"opcode":"operator_divide","next":null,"parent":"ag@","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bf=":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag]","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"JF":{"opcode":"procedures_call","next":"JG","parent":"yK","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"ag^",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"bf?":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"JG":{"opcode":"procedures_call","next":null,"parent":"JF","inputs":{"SW^3WyK)}Vi6uCy7Ko,P":[3,"ag_",[10,""]],"3=8N7_NC]MC+s+N]n=Xg":[3,"JH",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_write_memory %s %s","argumentids":"[\"SW^3WyK)}Vi6uCy7Ko,P\",\"3=8N7_NC]MC+s+N]n=Xg\"]","warp":"true"}},"bf@":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"JH":{"opcode":"operator_add","next":null,"parent":"JG","inputs":{"NUM1":[3,"biG",[4,0]],"NUM2":[3,"ag`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"biG":{"opcode":"operator_mod","next":null,"parent":"JH","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bf[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ag{","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"bfl":{"opcode":"argument_reporter_string_number","next":null,"parent":"ae,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"h#":{"opcode":"control_if_else","next":null,"parent":"ae+","inputs":{"CONDITION":[2,"ajF"],"SUBSTACK":[2,"yL"],"SUBSTACK2":[2,"iE"]},"fields":{},"shadow":false,"topLevel":false},"ajF":{"opcode":"operator_gt","next":null,"parent":"h#","inputs":{"OPERAND1":[3,"biH",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biH":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yL":{"opcode":"control_if_else","next":null,"parent":"h#","inputs":{"CONDITION":[2,"ajG"],"SUBSTACK":[2,"hQ"],"SUBSTACK2":[2,"iF"]},"fields":{},"shadow":false,"topLevel":false},"ajG":{"opcode":"operator_gt","next":null,"parent":"yL","inputs":{"OPERAND1":[3,"biI",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biI":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajG","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hQ":{"opcode":"control_if_else","next":null,"parent":"yL","inputs":{"CONDITION":[2,"ajH"],"SUBSTACK2":[2,"ajI"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bV"},"ajH":{"opcode":"operator_gt","next":null,"parent":"hQ","inputs":{"OPERAND1":[3,"biJ",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ajI":{"opcode":"data_setvariableto","next":null,"parent":"hQ","inputs":{"VALUE":[3,"ajJ",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"ajJ":{"opcode":"data_itemoflist","next":null,"parent":"ajI","inputs":{"INDEX":[3,"ajK",[7,0]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"ajK":{"opcode":"operator_add","next":null,"parent":"ajJ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ajL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajL":{"opcode":"operator_mathop","next":null,"parent":"ajK","inputs":{"NUM":[3,"ajM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ajM":{"opcode":"operator_divide","next":null,"parent":"ajL","inputs":{"NUM1":[3,"ajN",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ajN":{"opcode":"operator_subtract","next":null,"parent":"ajM","inputs":{"NUM1":[3,"biK",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"biK":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iF":{"opcode":"control_if_else","next":null,"parent":"yL","inputs":{"CONDITION":[2,"ajO"],"SUBSTACK":[2,"iG"],"SUBSTACK2":[2,"iH"]},"fields":{},"shadow":false,"topLevel":false},"ajO":{"opcode":"operator_gt","next":null,"parent":"iF","inputs":{"OPERAND1":[3,"biL",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biL":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iG":{"opcode":"control_if_else","next":null,"parent":"iF","inputs":{"CONDITION":[2,"ajP"],"SUBSTACK":[2,"ajQ"],"SUBSTACK2":[2,"ajR"]},"fields":{},"shadow":false,"topLevel":false},"ajP":{"opcode":"operator_gt","next":null,"parent":"iG","inputs":{"OPERAND1":[3,"biM",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biM":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajP","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ajQ":{"opcode":"data_setvariableto","next":null,"parent":"iG","inputs":{"VALUE":[3,"ajS",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"ajS":{"opcode":"data_itemoflist","next":null,"parent":"ajQ","inputs":{"INDEX":[3,"ajT",[7,0]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ajT":{"opcode":"operator_add","next":null,"parent":"ajS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ajU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajU":{"opcode":"operator_mathop","next":null,"parent":"ajT","inputs":{"NUM":[3,"ajV",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ajV":{"opcode":"operator_divide","next":null,"parent":"ajU","inputs":{"NUM1":[3,"ajW",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ajW":{"opcode":"operator_subtract","next":null,"parent":"ajV","inputs":{"NUM1":[3,"biN",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"biN":{"opcode":"argument_reporter_string_number","next":null,"parent":"ajW","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ajR":{"opcode":"data_setvariableto","next":null,"parent":"iG","inputs":{"VALUE":[3,"ajX",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"ajX":{"opcode":"data_itemoflist","next":null,"parent":"ajR","inputs":{"INDEX":[3,"ajY",[7,0]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"ajY":{"opcode":"operator_add","next":null,"parent":"ajX","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ajZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ajZ":{"opcode":"operator_mathop","next":null,"parent":"ajY","inputs":{"NUM":[3,"aj!",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aj!":{"opcode":"operator_divide","next":null,"parent":"ajZ","inputs":{"NUM1":[3,"aj#",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aj#":{"opcode":"operator_subtract","next":null,"parent":"aj!","inputs":{"NUM1":[3,"biO",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"biO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj#","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iH":{"opcode":"control_if_else","next":null,"parent":"iF","inputs":{"CONDITION":[2,"aj%"],"SUBSTACK":[2,"aj("],"SUBSTACK2":[2,"aj)"]},"fields":{},"shadow":false,"topLevel":false},"aj%":{"opcode":"operator_gt","next":null,"parent":"iH","inputs":{"OPERAND1":[3,"biP",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj%","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aj(":{"opcode":"data_setvariableto","next":null,"parent":"iH","inputs":{"VALUE":[3,"aj*",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"aj*":{"opcode":"data_itemoflist","next":null,"parent":"aj(","inputs":{"INDEX":[3,"aj+",[7,0]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"aj+":{"opcode":"operator_add","next":null,"parent":"aj*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aj,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aj,":{"opcode":"operator_mathop","next":null,"parent":"aj+","inputs":{"NUM":[3,"aj-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aj-":{"opcode":"operator_divide","next":null,"parent":"aj,","inputs":{"NUM1":[3,"aj.",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aj.":{"opcode":"operator_subtract","next":null,"parent":"aj-","inputs":{"NUM1":[3,"biQ",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"biQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aj)":{"opcode":"data_setvariableto","next":null,"parent":"iH","inputs":{"VALUE":[3,"aj/",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"aj/":{"opcode":"data_itemoflist","next":null,"parent":"aj)","inputs":{"INDEX":[3,"aj:",[7,0]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"aj:":{"opcode":"operator_add","next":null,"parent":"aj/","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aj;",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aj;":{"opcode":"operator_mathop","next":null,"parent":"aj:","inputs":{"NUM":[3,"aj=",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aj=":{"opcode":"operator_divide","next":null,"parent":"aj;","inputs":{"NUM1":[3,"aj?",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aj?":{"opcode":"operator_subtract","next":null,"parent":"aj=","inputs":{"NUM1":[3,"biR",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"biR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iE":{"opcode":"control_if_else","next":null,"parent":"h#","inputs":{"CONDITION":[2,"aj@"],"SUBSTACK":[2,"iI"],"SUBSTACK2":[2,"iJ"]},"fields":{},"shadow":false,"topLevel":false},"aj@":{"opcode":"operator_gt","next":null,"parent":"iE","inputs":{"OPERAND1":[3,"biS",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iI":{"opcode":"control_if_else","next":null,"parent":"iE","inputs":{"CONDITION":[2,"aj["],"SUBSTACK":[2,"aj]"],"SUBSTACK2":[2,"iK"]},"fields":{},"shadow":false,"topLevel":false},"aj[":{"opcode":"operator_gt","next":null,"parent":"iI","inputs":{"OPERAND1":[3,"biT",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj[","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aj]":{"opcode":"data_setvariableto","next":null,"parent":"iI","inputs":{"VALUE":[3,"aj^",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"aj^":{"opcode":"data_itemoflist","next":null,"parent":"aj]","inputs":{"INDEX":[3,"aj_",[7,0]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"aj_":{"opcode":"operator_add","next":null,"parent":"aj^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aj`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aj`":{"opcode":"operator_mathop","next":null,"parent":"aj_","inputs":{"NUM":[3,"aj{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aj{":{"opcode":"operator_divide","next":null,"parent":"aj`","inputs":{"NUM1":[3,"aj|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aj|":{"opcode":"operator_subtract","next":null,"parent":"aj{","inputs":{"NUM1":[3,"biU",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"biU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iK":{"opcode":"control_if_else","next":null,"parent":"iI","inputs":{"CONDITION":[2,"aj}"],"SUBSTACK":[2,"aj~"],"SUBSTACK2":[2,"aka"]},"fields":{},"shadow":false,"topLevel":false},"aj}":{"opcode":"operator_gt","next":null,"parent":"iK","inputs":{"OPERAND1":[3,"biV",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aj}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aj~":{"opcode":"data_setvariableto","next":null,"parent":"iK","inputs":{"VALUE":[3,"akb",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akb":{"opcode":"data_itemoflist","next":null,"parent":"aj~","inputs":{"INDEX":[3,"akc",[7,0]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"akc":{"opcode":"operator_add","next":null,"parent":"akb","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akd":{"opcode":"operator_mathop","next":null,"parent":"akc","inputs":{"NUM":[3,"ake",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ake":{"opcode":"operator_divide","next":null,"parent":"akd","inputs":{"NUM1":[3,"akf",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akf":{"opcode":"operator_subtract","next":null,"parent":"ake","inputs":{"NUM1":[3,"biW",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"biW":{"opcode":"argument_reporter_string_number","next":null,"parent":"akf","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aka":{"opcode":"data_setvariableto","next":null,"parent":"iK","inputs":{"VALUE":[3,"akg",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akg":{"opcode":"data_itemoflist","next":null,"parent":"aka","inputs":{"INDEX":[3,"akh",[7,0]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"akh":{"opcode":"operator_add","next":null,"parent":"akg","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aki",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aki":{"opcode":"operator_mathop","next":null,"parent":"akh","inputs":{"NUM":[3,"akj",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akj":{"opcode":"operator_divide","next":null,"parent":"aki","inputs":{"NUM1":[3,"akk",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akk":{"opcode":"operator_subtract","next":null,"parent":"akj","inputs":{"NUM1":[3,"biX",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"biX":{"opcode":"argument_reporter_string_number","next":null,"parent":"akk","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iJ":{"opcode":"control_if_else","next":null,"parent":"iE","inputs":{"CONDITION":[2,"akl"],"SUBSTACK":[2,"iL"],"SUBSTACK2":[2,"hR"]},"fields":{},"shadow":false,"topLevel":false},"akl":{"opcode":"operator_gt","next":null,"parent":"iJ","inputs":{"OPERAND1":[3,"biY",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biY":{"opcode":"argument_reporter_string_number","next":null,"parent":"akl","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iL":{"opcode":"control_if_else","next":null,"parent":"iJ","inputs":{"CONDITION":[2,"akm"],"SUBSTACK":[2,"akn"],"SUBSTACK2":[2,"iM"]},"fields":{},"shadow":false,"topLevel":false},"akm":{"opcode":"operator_gt","next":null,"parent":"iL","inputs":{"OPERAND1":[3,"biZ",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"biZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"akm","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akn":{"opcode":"data_setvariableto","next":null,"parent":"iL","inputs":{"VALUE":[3,"ako",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"ako":{"opcode":"data_itemoflist","next":null,"parent":"akn","inputs":{"INDEX":[3,"akp",[7,0]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"akp":{"opcode":"operator_add","next":null,"parent":"ako","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akq":{"opcode":"operator_mathop","next":null,"parent":"akp","inputs":{"NUM":[3,"akr",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akr":{"opcode":"operator_divide","next":null,"parent":"akq","inputs":{"NUM1":[3,"aks",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aks":{"opcode":"operator_subtract","next":null,"parent":"akr","inputs":{"NUM1":[3,"bi!",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"bi!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aks","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iM":{"opcode":"control_if_else","next":null,"parent":"iL","inputs":{"CONDITION":[2,"akt"],"SUBSTACK":[2,"iN"],"SUBSTACK2":[2,"iO"]},"fields":{},"shadow":false,"topLevel":false},"akt":{"opcode":"operator_gt","next":null,"parent":"iM","inputs":{"OPERAND1":[3,"bi#",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"bi#":{"opcode":"argument_reporter_string_number","next":null,"parent":"akt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iN":{"opcode":"control_if_else","next":null,"parent":"iM","inputs":{"CONDITION":[2,"aku"],"SUBSTACK":[2,"iP"],"SUBSTACK2":[2,"akv"]},"fields":{},"shadow":false,"topLevel":false},"aku":{"opcode":"operator_gt","next":null,"parent":"iN","inputs":{"OPERAND1":[3,"bi%",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"bi%":{"opcode":"argument_reporter_string_number","next":null,"parent":"aku","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iP":{"opcode":"control_if_else","next":null,"parent":"iN","inputs":{"CONDITION":[2,"akw"],"SUBSTACK":[2,"akx"],"SUBSTACK2":[2,"aky"]},"fields":{},"shadow":false,"topLevel":false},"akw":{"opcode":"operator_gt","next":null,"parent":"iP","inputs":{"OPERAND1":[3,"bi(",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"bi(":{"opcode":"argument_reporter_string_number","next":null,"parent":"akw","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akx":{"opcode":"data_setvariableto","next":null,"parent":"iP","inputs":{"VALUE":[3,"akz",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akz":{"opcode":"data_itemoflist","next":null,"parent":"akx","inputs":{"INDEX":[3,"akA",[7,0]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"akA":{"opcode":"operator_add","next":null,"parent":"akz","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akB":{"opcode":"operator_mathop","next":null,"parent":"akA","inputs":{"NUM":[3,"akC",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akC":{"opcode":"operator_divide","next":null,"parent":"akB","inputs":{"NUM1":[3,"akD",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akD":{"opcode":"operator_subtract","next":null,"parent":"akC","inputs":{"NUM1":[3,"bi)",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"bi)":{"opcode":"argument_reporter_string_number","next":null,"parent":"akD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aky":{"opcode":"data_setvariableto","next":null,"parent":"iP","inputs":{"VALUE":[3,"akE",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akE":{"opcode":"data_itemoflist","next":null,"parent":"aky","inputs":{"INDEX":[3,"akF",[7,0]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"akF":{"opcode":"operator_add","next":null,"parent":"akE","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akG":{"opcode":"operator_mathop","next":null,"parent":"akF","inputs":{"NUM":[3,"akH",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akH":{"opcode":"operator_divide","next":null,"parent":"akG","inputs":{"NUM1":[3,"akI",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akI":{"opcode":"operator_subtract","next":null,"parent":"akH","inputs":{"NUM1":[3,"bi*",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"bi*":{"opcode":"argument_reporter_string_number","next":null,"parent":"akI","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akv":{"opcode":"data_setvariableto","next":null,"parent":"iN","inputs":{"VALUE":[3,"akJ",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akJ":{"opcode":"data_itemoflist","next":null,"parent":"akv","inputs":{"INDEX":[3,"akK",[7,0]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"akK":{"opcode":"operator_add","next":null,"parent":"akJ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akL":{"opcode":"operator_mathop","next":null,"parent":"akK","inputs":{"NUM":[3,"akM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akM":{"opcode":"operator_divide","next":null,"parent":"akL","inputs":{"NUM1":[3,"akN",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akN":{"opcode":"operator_subtract","next":null,"parent":"akM","inputs":{"NUM1":[3,"bi+",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"bi+":{"opcode":"argument_reporter_string_number","next":null,"parent":"akN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iO":{"opcode":"control_if_else","next":null,"parent":"iM","inputs":{"CONDITION":[2,"akO"],"SUBSTACK":[2,"iQ"],"SUBSTACK2":[2,"akP"]},"fields":{},"shadow":false,"topLevel":false},"akO":{"opcode":"operator_gt","next":null,"parent":"iO","inputs":{"OPERAND1":[3,"bi,",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"bi,":{"opcode":"argument_reporter_string_number","next":null,"parent":"akO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iQ":{"opcode":"control_if_else","next":null,"parent":"iO","inputs":{"CONDITION":[2,"akQ"],"SUBSTACK":[2,"akR"],"SUBSTACK2":[2,"akS"]},"fields":{},"shadow":false,"topLevel":false},"akQ":{"opcode":"operator_gt","next":null,"parent":"iQ","inputs":{"OPERAND1":[3,"bi-",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"bi-":{"opcode":"argument_reporter_string_number","next":null,"parent":"akQ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akR":{"opcode":"data_setvariableto","next":null,"parent":"iQ","inputs":{"VALUE":[3,"akT",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akT":{"opcode":"data_itemoflist","next":null,"parent":"akR","inputs":{"INDEX":[3,"akU",[7,0]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"akU":{"opcode":"operator_add","next":null,"parent":"akT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"akV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"akV":{"opcode":"operator_mathop","next":null,"parent":"akU","inputs":{"NUM":[3,"akW",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"akW":{"opcode":"operator_divide","next":null,"parent":"akV","inputs":{"NUM1":[3,"akX",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"akX":{"opcode":"operator_subtract","next":null,"parent":"akW","inputs":{"NUM1":[3,"bi.",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"bi.":{"opcode":"argument_reporter_string_number","next":null,"parent":"akX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akS":{"opcode":"data_setvariableto","next":null,"parent":"iQ","inputs":{"VALUE":[3,"akY",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"akY":{"opcode":"data_itemoflist","next":null,"parent":"akS","inputs":{"INDEX":[3,"akZ",[7,0]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"akZ":{"opcode":"operator_add","next":null,"parent":"akY","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ak!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ak!":{"opcode":"operator_mathop","next":null,"parent":"akZ","inputs":{"NUM":[3,"ak#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ak#":{"opcode":"operator_divide","next":null,"parent":"ak!","inputs":{"NUM1":[3,"ak%",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ak%":{"opcode":"operator_subtract","next":null,"parent":"ak#","inputs":{"NUM1":[3,"bi/",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"bi/":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak%","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"akP":{"opcode":"data_setvariableto","next":null,"parent":"iO","inputs":{"VALUE":[3,"ak(",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"ak(":{"opcode":"data_itemoflist","next":null,"parent":"akP","inputs":{"INDEX":[3,"ak)",[7,0]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"ak)":{"opcode":"operator_add","next":null,"parent":"ak(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ak*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ak*":{"opcode":"operator_mathop","next":null,"parent":"ak)","inputs":{"NUM":[3,"ak+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ak+":{"opcode":"operator_divide","next":null,"parent":"ak*","inputs":{"NUM1":[3,"ak,",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ak,":{"opcode":"operator_subtract","next":null,"parent":"ak+","inputs":{"NUM1":[3,"bi:",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"bi:":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"hR":{"opcode":"control_if_else","next":null,"parent":"iJ","inputs":{"CONDITION":[2,"ak-"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bX"},"ak-":{"opcode":"operator_gt","next":null,"parent":"hR","inputs":{"OPERAND1":[3,"bi;",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi;":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ak.":{"opcode":"procedures_definition","next":"iR","parent":null,"inputs":{"custom_block":[1,"yM"]},"fields":{},"shadow":false,"topLevel":true,"x":6519,"y":155},"yM":{"opcode":"procedures_prototype","next":null,"parent":"ak.","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[1,"bi="],"717nQiAIK*1%Lw6f%Hc:":[1,"bi?"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bi=":{"opcode":"argument_reporter_string_number","next":null,"parent":"yM","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"bi?":{"opcode":"argument_reporter_string_number","next":null,"parent":"yM","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"iR":{"opcode":"control_if_else","next":null,"parent":"ak.","inputs":{"CONDITION":[2,"ak/"],"SUBSTACK":[2,"iS"],"SUBSTACK2":[2,"iT"]},"fields":{},"shadow":false,"topLevel":false},"ak/":{"opcode":"operator_gt","next":null,"parent":"iR","inputs":{"OPERAND1":[3,"bi@",[10,""]],"OPERAND2":[1,[10,"0x061FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi@":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak/","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iS":{"opcode":"control_if_else","next":null,"parent":"iR","inputs":{"CONDITION":[2,"ak:"],"SUBSTACK":[2,"yN"],"SUBSTACK2":[2,"iU"]},"fields":{},"shadow":false,"topLevel":false},"ak:":{"opcode":"operator_gt","next":null,"parent":"iS","inputs":{"OPERAND1":[3,"bi[",[10,""]],"OPERAND2":[1,[10,"0x06FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak:","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yN":{"opcode":"control_if_else","next":null,"parent":"iS","inputs":{"CONDITION":[2,"ak;"],"SUBSTACK2":[2,"yO"]},"fields":{},"shadow":false,"topLevel":false},"ak;":{"opcode":"operator_gt","next":null,"parent":"yN","inputs":{"OPERAND1":[3,"bi]",[10,""]],"OPERAND2":[1,[10,"0x07FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak;","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iU":{"opcode":"control_if_else","next":null,"parent":"iS","inputs":{"CONDITION":[2,"ak="],"SUBSTACK":[2,"iV"],"SUBSTACK2":[2,"iW"]},"fields":{},"shadow":false,"topLevel":false},"ak=":{"opcode":"operator_gt","next":null,"parent":"iU","inputs":{"OPERAND1":[3,"bi^",[10,""]],"OPERAND2":[1,[10,"0x065FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi^":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iV":{"opcode":"control_if_else","next":null,"parent":"iU","inputs":{"CONDITION":[2,"ak?"],"SUBSTACK":[2,"yP"],"SUBSTACK2":[2,"yQ"]},"fields":{},"shadow":false,"topLevel":false},"ak?":{"opcode":"operator_gt","next":null,"parent":"iV","inputs":{"OPERAND1":[3,"bi_",[10,""]],"OPERAND2":[1,[10,"0x067FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi_":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yP":{"opcode":"data_replaceitemoflist","next":null,"parent":"iV","inputs":{"INDEX":[3,"ak@",[7,0]],"ITEM":[3,"bi`",[10,""]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ak@":{"opcode":"operator_add","next":null,"parent":"yP","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ak[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ak[":{"opcode":"operator_mathop","next":null,"parent":"ak@","inputs":{"NUM":[3,"ak]",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ak]":{"opcode":"operator_divide","next":null,"parent":"ak[","inputs":{"NUM1":[3,"ak^",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ak^":{"opcode":"operator_subtract","next":null,"parent":"ak]","inputs":{"NUM1":[3,"bi{",[4,0]],"NUM2":[1,[4,"0x06800000"]]},"fields":{},"shadow":false,"topLevel":false},"bi{":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bi`":{"opcode":"argument_reporter_string_number","next":null,"parent":"yP","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yQ":{"opcode":"data_replaceitemoflist","next":null,"parent":"iV","inputs":{"INDEX":[3,"ak_",[7,0]],"ITEM":[3,"bi|",[10,""]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"ak_":{"opcode":"operator_add","next":null,"parent":"yQ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ak`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ak`":{"opcode":"operator_mathop","next":null,"parent":"ak_","inputs":{"NUM":[3,"ak{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ak{":{"opcode":"operator_divide","next":null,"parent":"ak`","inputs":{"NUM1":[3,"ak|",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ak|":{"opcode":"operator_subtract","next":null,"parent":"ak{","inputs":{"NUM1":[3,"bi}",[4,0]],"NUM2":[1,[4,"0x06600000"]]},"fields":{},"shadow":false,"topLevel":false},"bi}":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bi|":{"opcode":"argument_reporter_string_number","next":null,"parent":"yQ","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"iW":{"opcode":"control_if_else","next":null,"parent":"iU","inputs":{"CONDITION":[2,"ak}"],"SUBSTACK":[2,"yR"],"SUBSTACK2":[2,"#u"]},"fields":{},"shadow":false,"topLevel":false},"ak}":{"opcode":"operator_gt","next":null,"parent":"iW","inputs":{"OPERAND1":[3,"bi~",[10,""]],"OPERAND2":[1,[10,"0x063FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bi~":{"opcode":"argument_reporter_string_number","next":null,"parent":"ak}","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yR":{"opcode":"data_replaceitemoflist","next":null,"parent":"iW","inputs":{"INDEX":[3,"ak~",[7,0]],"ITEM":[3,"bja",[10,""]]},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"ak~":{"opcode":"operator_add","next":null,"parent":"yR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ala",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ala":{"opcode":"operator_mathop","next":null,"parent":"ak~","inputs":{"NUM":[3,"alb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alb":{"opcode":"operator_divide","next":null,"parent":"ala","inputs":{"NUM1":[3,"alc",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alc":{"opcode":"operator_subtract","next":null,"parent":"alb","inputs":{"NUM1":[3,"bjb",[4,0]],"NUM2":[1,[4,"0x06400000"]]},"fields":{},"shadow":false,"topLevel":false},"bjb":{"opcode":"argument_reporter_string_number","next":null,"parent":"alc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bja":{"opcode":"argument_reporter_string_number","next":null,"parent":"yR","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"#u":{"opcode":"data_replaceitemoflist","next":null,"parent":"iW","inputs":{"INDEX":[3,"ald",[7,0]],"ITEM":[3,"bjc",[10,""]]},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"ald":{"opcode":"operator_add","next":null,"parent":"#u","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ale",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ale":{"opcode":"operator_mathop","next":null,"parent":"ald","inputs":{"NUM":[3,"alf",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alf":{"opcode":"operator_divide","next":null,"parent":"ale","inputs":{"NUM1":[3,"alg",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alg":{"opcode":"operator_subtract","next":null,"parent":"alf","inputs":{"NUM1":[3,"bjd",[4,0]],"NUM2":[1,[4,"0x06200000"]]},"fields":{},"shadow":false,"topLevel":false},"bjd":{"opcode":"argument_reporter_string_number","next":null,"parent":"alg","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjc":{"opcode":"argument_reporter_string_number","next":null,"parent":"#u","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"iT":{"opcode":"control_if_else","next":null,"parent":"iR","inputs":{"CONDITION":[2,"alh"],"SUBSTACK":[2,"iX"],"SUBSTACK2":[2,"iY"]},"fields":{},"shadow":false,"topLevel":false},"alh":{"opcode":"operator_gt","next":null,"parent":"iT","inputs":{"OPERAND1":[3,"bje",[10,""]],"OPERAND2":[1,[10,"0x03FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bje":{"opcode":"argument_reporter_string_number","next":null,"parent":"alh","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"iX":{"opcode":"control_if_else","next":null,"parent":"iT","inputs":{"CONDITION":[2,"ali"],"SUBSTACK":[2,"#v"],"SUBSTACK2":[2,"iZ"]},"fields":{},"shadow":false,"topLevel":false},"ali":{"opcode":"operator_gt","next":null,"parent":"iX","inputs":{"OPERAND1":[3,"bjf",[10,""]],"OPERAND2":[1,[10,"0x05FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bjf":{"opcode":"argument_reporter_string_number","next":null,"parent":"ali","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#v":{"opcode":"data_replaceitemoflist","next":null,"parent":"iX","inputs":{"INDEX":[3,"alj",[7,0]],"ITEM":[3,"bjg",[10,""]]},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"alj":{"opcode":"operator_add","next":null,"parent":"#v","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alk":{"opcode":"operator_mathop","next":null,"parent":"alj","inputs":{"NUM":[3,"all",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"all":{"opcode":"operator_divide","next":null,"parent":"alk","inputs":{"NUM1":[3,"alm",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alm":{"opcode":"operator_subtract","next":null,"parent":"all","inputs":{"NUM1":[3,"bjh",[4,0]],"NUM2":[1,[4,"0x06000000"]]},"fields":{},"shadow":false,"topLevel":false},"bjh":{"opcode":"argument_reporter_string_number","next":null,"parent":"alm","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjg":{"opcode":"argument_reporter_string_number","next":null,"parent":"#v","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"iZ":{"opcode":"control_if_else","next":null,"parent":"iX","inputs":{"CONDITION":[2,"aln"],"SUBSTACK":[2,"#w"],"SUBSTACK2":[2,"#x"]},"fields":{},"shadow":false,"topLevel":false},"aln":{"opcode":"operator_gt","next":null,"parent":"iZ","inputs":{"OPERAND1":[3,"bji",[10,""]],"OPERAND2":[1,[10,"0x04FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bji":{"opcode":"argument_reporter_string_number","next":null,"parent":"aln","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#x":{"opcode":"data_replaceitemoflist","next":null,"parent":"iZ","inputs":{"INDEX":[3,"alo",[7,0]],"ITEM":[3,"bjj",[10,""]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"alo":{"opcode":"operator_add","next":null,"parent":"#x","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alp":{"opcode":"operator_mathop","next":null,"parent":"alo","inputs":{"NUM":[3,"alq",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alq":{"opcode":"operator_divide","next":null,"parent":"alp","inputs":{"NUM1":[3,"alr",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alr":{"opcode":"operator_subtract","next":null,"parent":"alq","inputs":{"NUM1":[3,"bjk",[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"bjk":{"opcode":"argument_reporter_string_number","next":null,"parent":"alr","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjj":{"opcode":"argument_reporter_string_number","next":null,"parent":"#x","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"iY":{"opcode":"control_if_else","next":null,"parent":"iT","inputs":{"CONDITION":[2,"als"],"SUBSTACK":[2,"i!"],"SUBSTACK2":[2,"alt"]},"fields":{},"shadow":false,"topLevel":false},"als":{"opcode":"operator_gt","next":null,"parent":"iY","inputs":{"OPERAND1":[3,"bjl",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bjl":{"opcode":"argument_reporter_string_number","next":null,"parent":"als","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"i!":{"opcode":"control_if_else","next":null,"parent":"iY","inputs":{"CONDITION":[2,"alu"],"SUBSTACK":[2,"#y"],"SUBSTACK2":[2,"i#"]},"fields":{},"shadow":false,"topLevel":false},"alu":{"opcode":"operator_gt","next":null,"parent":"i!","inputs":{"OPERAND1":[3,"bjm",[10,""]],"OPERAND2":[1,[10,"0x02FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bjm":{"opcode":"argument_reporter_string_number","next":null,"parent":"alu","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"#y":{"opcode":"data_replaceitemoflist","next":null,"parent":"i!","inputs":{"INDEX":[3,"alv",[7,0]],"ITEM":[3,"bjn",[10,""]]},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"alv":{"opcode":"operator_add","next":null,"parent":"#y","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alw":{"opcode":"operator_mathop","next":null,"parent":"alv","inputs":{"NUM":[3,"alx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alx":{"opcode":"operator_divide","next":null,"parent":"alw","inputs":{"NUM1":[3,"aly",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aly":{"opcode":"operator_subtract","next":null,"parent":"alx","inputs":{"NUM1":[3,"bjo",[4,0]],"NUM2":[1,[4,"0x03000000"]]},"fields":{},"shadow":false,"topLevel":false},"bjo":{"opcode":"argument_reporter_string_number","next":null,"parent":"aly","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjn":{"opcode":"argument_reporter_string_number","next":null,"parent":"#y","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"i#":{"opcode":"control_if_else","next":null,"parent":"i!","inputs":{"CONDITION":[2,"alz"],"SUBSTACK":[2,"i%"],"SUBSTACK2":[2,"i("]},"fields":{},"shadow":false,"topLevel":false},"alz":{"opcode":"operator_gt","next":null,"parent":"i#","inputs":{"OPERAND1":[3,"bjp",[10,""]],"OPERAND2":[1,[10,"0x020C34FF"]]},"fields":{},"shadow":false,"topLevel":false},"bjp":{"opcode":"argument_reporter_string_number","next":null,"parent":"alz","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"i%":{"opcode":"control_if_else","next":null,"parent":"i#","inputs":{"CONDITION":[2,"alA"],"SUBSTACK":[2,"i)"],"SUBSTACK2":[2,"yS"]},"fields":{},"shadow":false,"topLevel":false},"alA":{"opcode":"operator_gt","next":null,"parent":"i%","inputs":{"OPERAND1":[3,"bjq",[10,""]],"OPERAND2":[1,[10,"0x020F423F"]]},"fields":{},"shadow":false,"topLevel":false},"bjq":{"opcode":"argument_reporter_string_number","next":null,"parent":"alA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"i)":{"opcode":"control_if_else","next":null,"parent":"i%","inputs":{"CONDITION":[2,"alB"],"SUBSTACK":[2,"yT"],"SUBSTACK2":[2,"yU"]},"fields":{},"shadow":false,"topLevel":false},"alB":{"opcode":"operator_gt","next":null,"parent":"i)","inputs":{"OPERAND1":[3,"bjr",[10,""]],"OPERAND2":[1,[10,"0x02124F7F"]]},"fields":{},"shadow":false,"topLevel":false},"bjr":{"opcode":"argument_reporter_string_number","next":null,"parent":"alB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yT":{"opcode":"data_replaceitemoflist","next":null,"parent":"i)","inputs":{"INDEX":[3,"alC",[7,0]],"ITEM":[3,"bjs",[10,""]]},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"alC":{"opcode":"operator_add","next":null,"parent":"yT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alD":{"opcode":"operator_mathop","next":null,"parent":"alC","inputs":{"NUM":[3,"alE",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alE":{"opcode":"operator_divide","next":null,"parent":"alD","inputs":{"NUM1":[3,"alF",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alF":{"opcode":"operator_subtract","next":null,"parent":"alE","inputs":{"NUM1":[3,"bjt",[4,0]],"NUM2":[1,[4,"0x02124F80"]]},"fields":{},"shadow":false,"topLevel":false},"bjt":{"opcode":"argument_reporter_string_number","next":null,"parent":"alF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjs":{"opcode":"argument_reporter_string_number","next":null,"parent":"yT","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yU":{"opcode":"data_replaceitemoflist","next":null,"parent":"i)","inputs":{"INDEX":[3,"alG",[7,0]],"ITEM":[3,"bju",[10,""]]},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"alG":{"opcode":"operator_add","next":null,"parent":"yU","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alH":{"opcode":"operator_mathop","next":null,"parent":"alG","inputs":{"NUM":[3,"alI",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alI":{"opcode":"operator_divide","next":null,"parent":"alH","inputs":{"NUM1":[3,"alJ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alJ":{"opcode":"operator_subtract","next":null,"parent":"alI","inputs":{"NUM1":[3,"bjv",[4,0]],"NUM2":[1,[4,"0x020F4240"]]},"fields":{},"shadow":false,"topLevel":false},"bjv":{"opcode":"argument_reporter_string_number","next":null,"parent":"alJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bju":{"opcode":"argument_reporter_string_number","next":null,"parent":"yU","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yS":{"opcode":"data_replaceitemoflist","next":null,"parent":"i%","inputs":{"INDEX":[3,"alK",[7,0]],"ITEM":[3,"bjw",[10,""]]},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"alK":{"opcode":"operator_add","next":null,"parent":"yS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alL":{"opcode":"operator_mathop","next":null,"parent":"alK","inputs":{"NUM":[3,"alM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alM":{"opcode":"operator_divide","next":null,"parent":"alL","inputs":{"NUM1":[3,"alN",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alN":{"opcode":"operator_subtract","next":null,"parent":"alM","inputs":{"NUM1":[3,"bjx",[4,0]],"NUM2":[1,[4,"0x020C3500"]]},"fields":{},"shadow":false,"topLevel":false},"bjx":{"opcode":"argument_reporter_string_number","next":null,"parent":"alN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjw":{"opcode":"argument_reporter_string_number","next":null,"parent":"yS","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"i(":{"opcode":"control_if_else","next":null,"parent":"i#","inputs":{"CONDITION":[2,"alO"],"SUBSTACK":[2,"i*"],"SUBSTACK2":[2,"yV"]},"fields":{},"shadow":false,"topLevel":false},"alO":{"opcode":"operator_gt","next":null,"parent":"i(","inputs":{"OPERAND1":[3,"bjy",[10,""]],"OPERAND2":[1,[10,"0x02030D3F"]]},"fields":{},"shadow":false,"topLevel":false},"bjy":{"opcode":"argument_reporter_string_number","next":null,"parent":"alO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"i*":{"opcode":"control_if_else","next":null,"parent":"i(","inputs":{"CONDITION":[2,"alP"],"SUBSTACK":[2,"yW"],"SUBSTACK2":[2,"yX"]},"fields":{},"shadow":false,"topLevel":false},"alP":{"opcode":"operator_gt","next":null,"parent":"i*","inputs":{"OPERAND1":[3,"bjz",[10,""]],"OPERAND2":[1,[10,"0x020927BF"]]},"fields":{},"shadow":false,"topLevel":false},"bjz":{"opcode":"argument_reporter_string_number","next":null,"parent":"alP","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"yW":{"opcode":"data_replaceitemoflist","next":null,"parent":"i*","inputs":{"INDEX":[3,"alQ",[7,0]],"ITEM":[3,"bjA",[10,""]]},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"alQ":{"opcode":"operator_add","next":null,"parent":"yW","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alR":{"opcode":"operator_mathop","next":null,"parent":"alQ","inputs":{"NUM":[3,"alS",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alS":{"opcode":"operator_divide","next":null,"parent":"alR","inputs":{"NUM1":[3,"alT",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alT":{"opcode":"operator_subtract","next":null,"parent":"alS","inputs":{"NUM1":[3,"bjB",[4,0]],"NUM2":[1,[4,"0x020927C0"]]},"fields":{},"shadow":false,"topLevel":false},"bjB":{"opcode":"argument_reporter_string_number","next":null,"parent":"alT","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjA":{"opcode":"argument_reporter_string_number","next":null,"parent":"yW","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yX":{"opcode":"data_replaceitemoflist","next":null,"parent":"i*","inputs":{"INDEX":[3,"alU",[7,0]],"ITEM":[3,"bjC",[10,""]]},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"alU":{"opcode":"operator_add","next":null,"parent":"yX","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alV":{"opcode":"operator_mathop","next":null,"parent":"alU","inputs":{"NUM":[3,"alW",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"alW":{"opcode":"operator_divide","next":null,"parent":"alV","inputs":{"NUM1":[3,"alX",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"alX":{"opcode":"operator_subtract","next":null,"parent":"alW","inputs":{"NUM1":[3,"bjD",[4,0]],"NUM2":[1,[4,"0x02030D40"]]},"fields":{},"shadow":false,"topLevel":false},"bjD":{"opcode":"argument_reporter_string_number","next":null,"parent":"alX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjC":{"opcode":"argument_reporter_string_number","next":null,"parent":"yX","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yV":{"opcode":"data_replaceitemoflist","next":null,"parent":"i(","inputs":{"INDEX":[3,"alY",[7,0]],"ITEM":[3,"bjE",[10,""]]},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"alY":{"opcode":"operator_add","next":null,"parent":"yV","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"alZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"alZ":{"opcode":"operator_mathop","next":null,"parent":"alY","inputs":{"NUM":[3,"al!",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"al!":{"opcode":"operator_divide","next":null,"parent":"alZ","inputs":{"NUM1":[3,"al#",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"al#":{"opcode":"operator_subtract","next":null,"parent":"al!","inputs":{"NUM1":[3,"bjF",[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"bjF":{"opcode":"argument_reporter_string_number","next":null,"parent":"al#","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjE":{"opcode":"argument_reporter_string_number","next":null,"parent":"yV","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"alt":{"opcode":"control_if_else","next":null,"parent":"iY","inputs":{"CONDITION":[2,"al%"]},"fields":{},"shadow":false,"topLevel":false},"al%":{"opcode":"operator_gt","next":null,"parent":"alt","inputs":{"OPERAND1":[3,"bjG",[10,""]],"OPERAND2":[1,[10,"0xXXXXFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bjG":{"opcode":"argument_reporter_string_number","next":null,"parent":"al%","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"al(":{"opcode":"procedures_definition","next":"yY","parent":null,"inputs":{"custom_block":[1,"al)"]},"fields":{},"shadow":false,"topLevel":true,"x":4004,"y":1707},"al)":{"opcode":"procedures_prototype","next":null,"parent":"al(","inputs":{".5IabzOBB`r;A-[bJCH-":[1,"bjH"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bjH":{"opcode":"argument_reporter_string_number","next":null,"parent":"al)","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"yY":{"opcode":"procedures_call","next":"yZ","parent":"al(","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"bjI",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"bjI":{"opcode":"argument_reporter_string_number","next":null,"parent":"yY","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"al*":{"opcode":"procedures_definition","next":"i+","parent":null,"inputs":{"custom_block":[1,"y!"]},"fields":{},"shadow":false,"topLevel":true,"x":4025,"y":2266},"y!":{"opcode":"procedures_prototype","next":null,"parent":"al*","inputs":{"[:qunpS-8M/60cedXKZc":[1,"bjJ"],"penC[|54{B|rziE}7Inh":[1,"bjK"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_memory %s %s","argumentids":"[\"[:qunpS-8M/60cedXKZc\",\"penC[|54{B|rziE}7Inh\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bjJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"y!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"bjK":{"opcode":"argument_reporter_string_number","next":null,"parent":"y!","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"i+":{"opcode":"control_if_else","next":null,"parent":"al*","inputs":{"CONDITION":[2,"al+"],"SUBSTACK":[2,"y#"],"SUBSTACK2":[2,"y%"]},"fields":{},"shadow":false,"topLevel":false},"al+":{"opcode":"operator_equals","next":null,"parent":"i+","inputs":{"OPERAND1":[3,"al,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"al,":{"opcode":"operator_mod","next":null,"parent":"al+","inputs":{"NUM1":[3,"bjL",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bjL":{"opcode":"argument_reporter_string_number","next":null,"parent":"al,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"y#":{"opcode":"procedures_call","next":null,"parent":"i+","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"bjM",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"bjN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"bjM":{"opcode":"argument_reporter_string_number","next":null,"parent":"y#","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bjN":{"opcode":"argument_reporter_string_number","next":null,"parent":"y#","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"bjO":{"opcode":"looks_say","next":"al-","parent":null,"inputs":{"MESSAGE":[1,[10,"[ARM7] Data Processing"]]},"fields":{},"shadow":false,"topLevel":true,"x":7492,"y":316},"al-":{"opcode":"looks_say","next":"al.","parent":"bjO","inputs":{"MESSAGE":[1,[10,"[ARM7] Multiply"]]},"fields":{},"shadow":false,"topLevel":false},"al.":{"opcode":"looks_say","next":"al/","parent":"al-","inputs":{"MESSAGE":[1,[10,"[ARM7] Multiply Long"]]},"fields":{},"shadow":false,"topLevel":false},"al/":{"opcode":"looks_say","next":"al:","parent":"al.","inputs":{"MESSAGE":[1,[10,"[ARM7] Single Data Swap"]]},"fields":{},"shadow":false,"topLevel":false},"al:":{"opcode":"looks_say","next":"al;","parent":"al/","inputs":{"MESSAGE":[1,[10,"[ARM7] Branch and Exchange"]]},"fields":{},"shadow":false,"topLevel":false},"al;":{"opcode":"looks_say","next":"al=","parent":"al:","inputs":{"MESSAGE":[1,[10,"[ARM7] Halfword Data Transfer (Register Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"al=":{"opcode":"looks_say","next":"al?","parent":"al;","inputs":{"MESSAGE":[1,[10,"[ARM7] Halfword Data Transfer (Immediate Offset)"]]},"fields":{},"shadow":false,"topLevel":false},"al?":{"opcode":"looks_say","next":"al@","parent":"al=","inputs":{"MESSAGE":[1,[10,"[ARM7] Single Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"al@":{"opcode":"looks_say","next":"al[","parent":"al?","inputs":{"MESSAGE":[1,[10,"[ARM7] Undefined Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"al[":{"opcode":"looks_say","next":"al]","parent":"al@","inputs":{"MESSAGE":[1,[10,"[ARM7] Block Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"al]":{"opcode":"looks_say","next":"al^","parent":"al[","inputs":{"MESSAGE":[1,[10,"[ARM7] Branch"]]},"fields":{},"shadow":false,"topLevel":false},"al^":{"opcode":"looks_say","next":"al_","parent":"al]","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Data Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"al_":{"opcode":"looks_say","next":"al`","parent":"al^","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Data Operation"]]},"fields":{},"shadow":false,"topLevel":false},"al`":{"opcode":"looks_say","next":"al{","parent":"al_","inputs":{"MESSAGE":[1,[10,"[ARM7] Coprocessor Register Transfer"]]},"fields":{},"shadow":false,"topLevel":false},"al{":{"opcode":"looks_say","next":"bjP","parent":"al`","inputs":{"MESSAGE":[1,[10,"[ARM7] Software Interrupt"]]},"fields":{},"shadow":false,"topLevel":false},"bjP":{"opcode":"looks_say","next":null,"parent":"al{","inputs":{"MESSAGE":[1,[10,"[ARM7] Illegal Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"al|":{"opcode":"procedures_definition","next":"i,","parent":null,"inputs":{"custom_block":[1,"y("]},"fields":{},"shadow":false,"topLevel":true,"x":13682,"y":1034},"y(":{"opcode":"procedures_prototype","next":null,"parent":"al|","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[1,"bjQ"],"3)l`,m3z-UYcLsco:|pk":[1,"bjR"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bjQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"y(","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"bjR":{"opcode":"argument_reporter_string_number","next":null,"parent":"y(","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"i,":{"opcode":"procedures_call","next":"al}","parent":"al|","inputs":{"I)$U1@(uKe.xp@l!IP(k":[3,"bjS",[10,""]],"|6V?U0H`Ot6{lp?o_9O(":[3,"bjT",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","warp":"true"}},"bjS":{"opcode":"argument_reporter_string_number","next":null,"parent":"i,","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"bjT":{"opcode":"argument_reporter_string_number","next":null,"parent":"i,","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"al}":{"opcode":"data_setvariableto","next":"i-","parent":"i,","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"i-":{"opcode":"procedures_call","next":"al~","parent":"al}","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,"bjU",[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"ama",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"bjU":{"opcode":"argument_reporter_string_number","next":null,"parent":"i-","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ama":{"opcode":"operator_subtract","next":null,"parent":"i-","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"bjV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bjV":{"opcode":"argument_reporter_string_number","next":null,"parent":"ama","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"al~":{"opcode":"data_setvariableto","next":null,"parent":"i-","inputs":{"VALUE":[3,"amb",[10,""]]},"fields":{"VARIABLE":["core.rotate_return","zY(u-?O,+t%[td.I,e.a"]},"shadow":false,"topLevel":false},"amb":{"opcode":"operator_mod","next":null,"parent":"al~","inputs":{"NUM1":[3,"bjW",[4,0]],"NUM2":[1,[4,"0x100000000"]]},"fields":{},"shadow":false,"topLevel":false},"bjW":{"opcode":"operator_add","next":null,"parent":"amb","inputs":{"NUM1":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"amc":{"opcode":"procedures_definition","next":"i.","parent":null,"inputs":{"custom_block":[1,"y)"]},"fields":{},"shadow":false,"topLevel":true,"x":14353,"y":949},"y)":{"opcode":"procedures_prototype","next":null,"parent":"amc","inputs":{"*TJdpJem{W@WY?Pe*rSz":[1,"bjX"],"fccig(k~vwUyH!-GOnIm":[1,"bjY"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_left %s %s","argumentids":"[\"*TJdpJem{W@WY?Pe*rSz\",\"fccig(k~vwUyH!-GOnIm\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bjX":{"opcode":"argument_reporter_string_number","next":null,"parent":"y)","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"bjY":{"opcode":"argument_reporter_string_number","next":null,"parent":"y)","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"i.":{"opcode":"procedures_call","next":"amd","parent":"amc","inputs":{"I)$U1@(uKe.xp@l!IP(k":[3,"bjZ",[10,""]],"|6V?U0H`Ot6{lp?o_9O(":[3,"ame",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","warp":"true"}},"bjZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"i.","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ame":{"opcode":"operator_subtract","next":null,"parent":"i.","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"bj!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj!":{"opcode":"argument_reporter_string_number","next":null,"parent":"ame","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"amd":{"opcode":"data_setvariableto","next":"i/","parent":"i.","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"i/":{"opcode":"procedures_call","next":"amf","parent":"amd","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,"bj#",[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"bj%",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"bj#":{"opcode":"argument_reporter_string_number","next":null,"parent":"i/","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"bj%":{"opcode":"argument_reporter_string_number","next":null,"parent":"i/","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"amf":{"opcode":"data_setvariableto","next":null,"parent":"i/","inputs":{"VALUE":[3,"amg",[10,""]]},"fields":{"VARIABLE":["core.rotate_return","zY(u-?O,+t%[td.I,e.a"]},"shadow":false,"topLevel":false},"amg":{"opcode":"operator_mod","next":null,"parent":"amf","inputs":{"NUM1":[3,"bj(",[4,0]],"NUM2":[1,[4,"0x100000000"]]},"fields":{},"shadow":false,"topLevel":false},"bj(":{"opcode":"operator_add","next":null,"parent":"amg","inputs":{"NUM1":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"amh":{"opcode":"procedures_definition","next":"ami","parent":null,"inputs":{"custom_block":[1,"y*"]},"fields":{},"shadow":false,"topLevel":true,"x":14352,"y":427},"y*":{"opcode":"procedures_prototype","next":null,"parent":"amh","inputs":{",!vV[QISR{R?|c;ZW)|A":[1,"bj)"],"2=ZrP1;%i72|7V~%m9,3":[1,"bj*"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"false\",\"\",\"\",\"\"]","warp":"true"}},"bj)":{"opcode":"argument_reporter_string_number","next":null,"parent":"y*","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"bj*":{"opcode":"argument_reporter_string_number","next":null,"parent":"y*","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"ami":{"opcode":"data_setvariableto","next":null,"parent":"amh","inputs":{"VALUE":[3,"y+",[10,""]]},"fields":{"VARIABLE":["core.shift_return","v;eH`7|2r1}R]J+L$.n+"]},"shadow":false,"topLevel":false},"y+":{"opcode":"operator_multiply","next":null,"parent":"ami","inputs":{"NUM1":[3,"bj+",[4,0]],"NUM2":[3,"amj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj+":{"opcode":"argument_reporter_string_number","next":null,"parent":"y+","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"amj":{"opcode":"operator_round","next":null,"parent":"y+","inputs":{"NUM":[3,"amk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"amk":{"opcode":"operator_mathop","next":null,"parent":"amj","inputs":{"NUM":[3,"aml",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"aml":{"opcode":"operator_multiply","next":null,"parent":"amk","inputs":{"NUM1":[3,"bj,",[4,0]],"NUM2":[1,[4,"0.6931471805599453"]]},"fields":{},"shadow":false,"topLevel":false},"bj,":{"opcode":"argument_reporter_string_number","next":null,"parent":"aml","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"amm":{"opcode":"procedures_definition","next":"amn","parent":null,"inputs":{"custom_block":[1,"y,"]},"fields":{},"shadow":false,"topLevel":true,"x":14566,"y":690},"y,":{"opcode":"procedures_prototype","next":null,"parent":"amm","inputs":{"I)$U1@(uKe.xp@l!IP(k":[1,"bj-"],"|6V?U0H`Ot6{lp?o_9O(":[1,"bj."]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s >> %s","argumentids":"[\"I)$U1@(uKe.xp@l!IP(k\",\"|6V?U0H`Ot6{lp?o_9O(\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bj-":{"opcode":"argument_reporter_string_number","next":null,"parent":"y,","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"bj.":{"opcode":"argument_reporter_string_number","next":null,"parent":"y,","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"amn":{"opcode":"data_setvariableto","next":null,"parent":"amm","inputs":{"VALUE":[3,"amo",[10,""]]},"fields":{"VARIABLE":["core.shift_return","v;eH`7|2r1}R]J+L$.n+"]},"shadow":false,"topLevel":false},"amo":{"opcode":"operator_mathop","next":null,"parent":"amn","inputs":{"NUM":[3,"y-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"y-":{"opcode":"operator_divide","next":null,"parent":"amo","inputs":{"NUM1":[3,"bj/",[4,0]],"NUM2":[3,"amp",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj/":{"opcode":"argument_reporter_string_number","next":null,"parent":"y-","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"amp":{"opcode":"operator_round","next":null,"parent":"y-","inputs":{"NUM":[3,"amq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"amq":{"opcode":"operator_mathop","next":null,"parent":"amp","inputs":{"NUM":[3,"amr",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"amr":{"opcode":"operator_multiply","next":null,"parent":"amq","inputs":{"NUM1":[3,"bj:",[4,0]],"NUM2":[1,[4,"0.6931471805599453"]]},"fields":{},"shadow":false,"topLevel":false},"bj:":{"opcode":"argument_reporter_string_number","next":null,"parent":"amr","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"ams":{"opcode":"procedures_definition","next":"i:","parent":null,"inputs":{"custom_block":[1,"amt"]},"fields":{},"shadow":false,"topLevel":true,"x":11123,"y":415},"amt":{"opcode":"procedures_prototype","next":null,"parent":"ams","inputs":{"kc)Odu7|W(7v#A=kW.{G":[1,"bj;"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.check_condition %s","argumentids":"[\"kc)Odu7|W(7v#A=kW.{G\"]","argumentnames":"[\"cond\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bj;":{"opcode":"argument_reporter_string_number","next":null,"parent":"amt","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":true,"topLevel":false},"i:":{"opcode":"control_if_else","next":null,"parent":"ams","inputs":{"CONDITION":[2,"amu"],"SUBSTACK":[2,"i;"],"SUBSTACK2":[2,"i="]},"fields":{},"shadow":false,"topLevel":false},"amu":{"opcode":"operator_lt","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"bj=",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bj=":{"opcode":"argument_reporter_string_number","next":null,"parent":"amu","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"i;":{"opcode":"control_if_else","next":null,"parent":"i:","inputs":{"CONDITION":[2,"amv"],"SUBSTACK":[2,"i?"],"SUBSTACK2":[2,"i@"]},"fields":{},"shadow":false,"topLevel":false},"amv":{"opcode":"operator_lt","next":null,"parent":"i;","inputs":{"OPERAND1":[3,"bj?",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bj?":{"opcode":"argument_reporter_string_number","next":null,"parent":"amv","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"i?":{"opcode":"control_if_else","next":null,"parent":"i;","inputs":{"CONDITION":[2,"amw"],"SUBSTACK":[2,"i["],"SUBSTACK2":[2,"i]"]},"fields":{},"shadow":false,"topLevel":false},"amw":{"opcode":"operator_lt","next":null,"parent":"i?","inputs":{"OPERAND1":[3,"bj@",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bj@":{"opcode":"argument_reporter_string_number","next":null,"parent":"amw","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"i[":{"opcode":"control_if_else","next":null,"parent":"i?","inputs":{"CONDITION":[2,"amx"],"SUBSTACK":[2,"amy"],"SUBSTACK2":[2,"amz"]},"fields":{},"shadow":false,"topLevel":false},"amx":{"opcode":"operator_lt","next":null,"parent":"i[","inputs":{"OPERAND1":[3,"bj[",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bj[":{"opcode":"argument_reporter_string_number","next":null,"parent":"amx","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amy":{"opcode":"data_setvariableto","next":null,"parent":"i[","inputs":{"VALUE":[3,"bj]",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"bj]":{"opcode":"data_itemoflist","next":null,"parent":"amy","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amz":{"opcode":"data_setvariableto","next":null,"parent":"i[","inputs":{"VALUE":[3,"amA",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amA":{"opcode":"operator_subtract","next":null,"parent":"amz","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bj^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj^":{"opcode":"data_itemoflist","next":null,"parent":"amA","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"i]":{"opcode":"control_if_else","next":null,"parent":"i?","inputs":{"CONDITION":[2,"amB"],"SUBSTACK":[2,"amC"],"SUBSTACK2":[2,"amD"]},"fields":{},"shadow":false,"topLevel":false},"amB":{"opcode":"operator_lt","next":null,"parent":"i]","inputs":{"OPERAND1":[3,"bj_",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bj_":{"opcode":"argument_reporter_string_number","next":null,"parent":"amB","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amC":{"opcode":"data_setvariableto","next":null,"parent":"i]","inputs":{"VALUE":[3,"bj`",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"bj`":{"opcode":"data_itemoflist","next":null,"parent":"amC","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amD":{"opcode":"data_setvariableto","next":null,"parent":"i]","inputs":{"VALUE":[3,"amE",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amE":{"opcode":"operator_subtract","next":null,"parent":"amD","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bj{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bj{":{"opcode":"data_itemoflist","next":null,"parent":"amE","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"i@":{"opcode":"control_if_else","next":null,"parent":"i;","inputs":{"CONDITION":[2,"amF"],"SUBSTACK":[2,"i^"],"SUBSTACK2":[2,"i_"]},"fields":{},"shadow":false,"topLevel":false},"amF":{"opcode":"operator_lt","next":null,"parent":"i@","inputs":{"OPERAND1":[3,"bj|",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bj|":{"opcode":"argument_reporter_string_number","next":null,"parent":"amF","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"i^":{"opcode":"control_if_else","next":null,"parent":"i@","inputs":{"CONDITION":[2,"amG"],"SUBSTACK":[2,"amH"],"SUBSTACK2":[2,"amI"]},"fields":{},"shadow":false,"topLevel":false},"amG":{"opcode":"operator_lt","next":null,"parent":"i^","inputs":{"OPERAND1":[3,"bj}",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bj}":{"opcode":"argument_reporter_string_number","next":null,"parent":"amG","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amH":{"opcode":"data_setvariableto","next":null,"parent":"i^","inputs":{"VALUE":[3,"bj~",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"bj~":{"opcode":"data_itemoflist","next":null,"parent":"amH","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amI":{"opcode":"data_setvariableto","next":null,"parent":"i^","inputs":{"VALUE":[3,"amJ",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amJ":{"opcode":"operator_subtract","next":null,"parent":"amI","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bka",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bka":{"opcode":"data_itemoflist","next":null,"parent":"amJ","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"i_":{"opcode":"control_if_else","next":null,"parent":"i@","inputs":{"CONDITION":[2,"amK"],"SUBSTACK":[2,"amL"],"SUBSTACK2":[2,"amM"]},"fields":{},"shadow":false,"topLevel":false},"amK":{"opcode":"operator_lt","next":null,"parent":"i_","inputs":{"OPERAND1":[3,"bkb",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bkb":{"opcode":"argument_reporter_string_number","next":null,"parent":"amK","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amL":{"opcode":"data_setvariableto","next":null,"parent":"i_","inputs":{"VALUE":[3,"bkc",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"bkc":{"opcode":"data_itemoflist","next":null,"parent":"amL","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amM":{"opcode":"data_setvariableto","next":null,"parent":"i_","inputs":{"VALUE":[3,"amN",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amN":{"opcode":"operator_subtract","next":null,"parent":"amM","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bkd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkd":{"opcode":"data_itemoflist","next":null,"parent":"amN","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"i=":{"opcode":"control_if_else","next":null,"parent":"i:","inputs":{"CONDITION":[2,"amO"],"SUBSTACK":[2,"Xe"],"SUBSTACK2":[2,"Xf"]},"fields":{},"shadow":false,"topLevel":false},"amO":{"opcode":"operator_lt","next":null,"parent":"i=","inputs":{"OPERAND1":[3,"bke",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"bke":{"opcode":"argument_reporter_string_number","next":null,"parent":"amO","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"Xe":{"opcode":"control_if_else","next":null,"parent":"i=","inputs":{"CONDITION":[2,"amP"],"SUBSTACK":[2,"Xg"],"SUBSTACK2":[2,"Xh"]},"fields":{},"shadow":false,"topLevel":false},"amP":{"opcode":"operator_lt","next":null,"parent":"Xe","inputs":{"OPERAND1":[3,"bkf",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"bkf":{"opcode":"argument_reporter_string_number","next":null,"parent":"amP","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"Xg":{"opcode":"control_if_else","next":null,"parent":"Xe","inputs":{"CONDITION":[2,"amQ"],"SUBSTACK":[2,"amR"],"SUBSTACK2":[2,"amS"]},"fields":{},"shadow":false,"topLevel":false},"amQ":{"opcode":"operator_lt","next":null,"parent":"Xg","inputs":{"OPERAND1":[3,"bkg",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bkg":{"opcode":"argument_reporter_string_number","next":null,"parent":"amQ","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amR":{"opcode":"data_setvariableto","next":null,"parent":"Xg","inputs":{"VALUE":[3,"amT",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amT":{"opcode":"operator_gt","next":null,"parent":"amR","inputs":{"OPERAND1":[3,"y.",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"y.":{"opcode":"operator_subtract","next":null,"parent":"amT","inputs":{"NUM1":[3,"bkh",[4,0]],"NUM2":[3,"bki",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkh":{"opcode":"data_itemoflist","next":null,"parent":"y.","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bki":{"opcode":"data_itemoflist","next":null,"parent":"y.","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amS":{"opcode":"data_setvariableto","next":null,"parent":"Xg","inputs":{"VALUE":[3,"amU",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amU":{"opcode":"operator_gt","next":null,"parent":"amS","inputs":{"OPERAND1":[3,"JN",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"JN":{"opcode":"operator_subtract","next":null,"parent":"amU","inputs":{"NUM1":[3,"bkj",[4,0]],"NUM2":[3,"bkk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkj":{"opcode":"data_itemoflist","next":null,"parent":"JN","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bkk":{"opcode":"data_itemoflist","next":null,"parent":"JN","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"Xh":{"opcode":"control_if_else","next":null,"parent":"Xe","inputs":{"CONDITION":[2,"amV"],"SUBSTACK":[2,"amW"],"SUBSTACK2":[2,"amX"]},"fields":{},"shadow":false,"topLevel":false},"amV":{"opcode":"operator_lt","next":null,"parent":"Xh","inputs":{"OPERAND1":[3,"bkl",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"bkl":{"opcode":"argument_reporter_string_number","next":null,"parent":"amV","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"amW":{"opcode":"data_setvariableto","next":null,"parent":"Xh","inputs":{"VALUE":[3,"JO",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"JO":{"opcode":"operator_equals","next":null,"parent":"amW","inputs":{"OPERAND1":[3,"bkm",[10,""]],"OPERAND2":[3,"bkn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bkm":{"opcode":"data_itemoflist","next":null,"parent":"JO","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bkn":{"opcode":"data_itemoflist","next":null,"parent":"JO","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"amX":{"opcode":"data_setvariableto","next":null,"parent":"Xh","inputs":{"VALUE":[3,"amY",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"amY":{"opcode":"operator_not","next":null,"parent":"amX","inputs":{"OPERAND":[2,"JP"]},"fields":{},"shadow":false,"topLevel":false},"JP":{"opcode":"operator_equals","next":null,"parent":"amY","inputs":{"OPERAND1":[3,"bko",[10,""]],"OPERAND2":[3,"bkp",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bko":{"opcode":"data_itemoflist","next":null,"parent":"JP","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bkp":{"opcode":"data_itemoflist","next":null,"parent":"JP","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"Xf":{"opcode":"control_if_else","next":null,"parent":"i=","inputs":{"CONDITION":[2,"amZ"],"SUBSTACK":[2,"Xi"],"SUBSTACK2":[2,"hX"]},"fields":{},"shadow":false,"topLevel":false},"amZ":{"opcode":"operator_lt","next":null,"parent":"Xf","inputs":{"OPERAND1":[3,"bkq",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"bkq":{"opcode":"argument_reporter_string_number","next":null,"parent":"amZ","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"Xi":{"opcode":"control_if_else","next":null,"parent":"Xf","inputs":{"CONDITION":[2,"am!"],"SUBSTACK":[2,"am#"],"SUBSTACK2":[2,"am%"]},"fields":{},"shadow":false,"topLevel":false},"am!":{"opcode":"operator_lt","next":null,"parent":"Xi","inputs":{"OPERAND1":[3,"bkr",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"bkr":{"opcode":"argument_reporter_string_number","next":null,"parent":"am!","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"am#":{"opcode":"data_setvariableto","next":null,"parent":"Xi","inputs":{"VALUE":[3,"JQ",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"JQ":{"opcode":"operator_multiply","next":null,"parent":"am#","inputs":{"NUM1":[3,"am(",[4,0]],"NUM2":[3,"JR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am(":{"opcode":"operator_subtract","next":null,"parent":"JQ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bks",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bks":{"opcode":"data_itemoflist","next":null,"parent":"am(","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"JR":{"opcode":"operator_equals","next":null,"parent":"JQ","inputs":{"OPERAND1":[3,"bkt",[10,""]],"OPERAND2":[3,"bku",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bkt":{"opcode":"data_itemoflist","next":null,"parent":"JR","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bku":{"opcode":"data_itemoflist","next":null,"parent":"JR","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"am%":{"opcode":"data_setvariableto","next":null,"parent":"Xi","inputs":{"VALUE":[3,"am)",[10,""]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"am)":{"opcode":"operator_gt","next":null,"parent":"am%","inputs":{"OPERAND1":[3,"JS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"JS":{"opcode":"operator_add","next":null,"parent":"am)","inputs":{"NUM1":[3,"bkv",[4,0]],"NUM2":[3,"am*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkv":{"opcode":"data_itemoflist","next":null,"parent":"JS","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"am*":{"opcode":"operator_not","next":null,"parent":"JS","inputs":{"OPERAND":[2,"JT"]},"fields":{},"shadow":false,"topLevel":false},"JT":{"opcode":"operator_equals","next":null,"parent":"am*","inputs":{"OPERAND1":[3,"bkw",[10,""]],"OPERAND2":[3,"bkx",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bkw":{"opcode":"data_itemoflist","next":null,"parent":"JT","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bkx":{"opcode":"data_itemoflist","next":null,"parent":"JT","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"hX":{"opcode":"control_if_else","next":null,"parent":"Xf","inputs":{"CONDITION":[2,"am+"],"SUBSTACK":[2,"bky"],"SUBSTACK2":[2,"aeJ"]},"fields":{},"shadow":false,"topLevel":false},"am+":{"opcode":"operator_lt","next":null,"parent":"hX","inputs":{"OPERAND1":[3,"bkz",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bkz":{"opcode":"argument_reporter_string_number","next":null,"parent":"am+","inputs":{},"fields":{"VALUE":["cond",null]},"shadow":false,"topLevel":false},"bky":{"opcode":"data_setvariableto","next":null,"parent":"hX","inputs":{"VALUE":[1,[10,"true"]]},"fields":{"VARIABLE":["core.condition_test","x|g/RBvah4i`.Kz@pfYu"]},"shadow":false,"topLevel":false},"am,":{"opcode":"procedures_definition","next":"JU","parent":null,"inputs":{"custom_block":[1,"am-"]},"fields":{},"shadow":false,"topLevel":true,"x":4003,"y":3025},"am-":{"opcode":"procedures_prototype","next":null,"parent":"am,","inputs":{"V)?tNL$%Rh+w==[pHm3i":[1,"bkA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bkA":{"opcode":"argument_reporter_string_number","next":null,"parent":"am-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"JU":{"opcode":"procedures_call","next":"JV","parent":"am,","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"bkB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"bkB":{"opcode":"argument_reporter_string_number","next":null,"parent":"JU","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"JV":{"opcode":"procedures_call","next":"bkC","parent":"JU","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"am.",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"am.":{"opcode":"operator_mod","next":null,"parent":"JV","inputs":{"NUM1":[3,"bkD",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkD":{"opcode":"argument_reporter_string_number","next":null,"parent":"am.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bkC":{"opcode":"data_setvariableto","next":null,"parent":"JV","inputs":{"VALUE":[3,[12,"core.byte_return","D@T%uY;^Ck}J:bfqk*PR"],[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"am/":{"opcode":"procedures_definition","next":"JW","parent":null,"inputs":{"custom_block":[1,"am:"]},"fields":{},"shadow":false,"topLevel":true,"x":3983,"y":3784},"am:":{"opcode":"procedures_prototype","next":null,"parent":"am/","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,"bkE"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bkE":{"opcode":"argument_reporter_string_number","next":null,"parent":"am:","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"JW":{"opcode":"procedures_call","next":"y/","parent":"am/","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"bkF",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"bkF":{"opcode":"argument_reporter_string_number","next":null,"parent":"JW","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"y/":{"opcode":"procedures_call","next":"bkG","parent":"JW","inputs":{"[Bf|Xjs%{03^@##)w@`d":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"A$`3X[JrP}|bWV/@_Osy":[3,"am;",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_byte %s %s","argumentids":"[\"[Bf|Xjs%{03^@##)w@`d\",\"A$`3X[JrP}|bWV/@_Osy\"]","warp":"true"}},"am;":{"opcode":"operator_mod","next":null,"parent":"y/","inputs":{"NUM1":[3,"bkH",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkH":{"opcode":"argument_reporter_string_number","next":null,"parent":"am;","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bkG":{"opcode":"data_setvariableto","next":null,"parent":"y/","inputs":{"VALUE":[3,[12,"core.byte_return","D@T%uY;^Ck}J:bfqk*PR"],[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"am=":{"opcode":"procedures_definition","next":"am?","parent":null,"inputs":{"custom_block":[1,"y:"]},"fields":{},"shadow":false,"topLevel":true,"x":4509,"y":3028},"y:":{"opcode":"procedures_prototype","next":null,"parent":"am=","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[1,"bkI"],"chMd9Q|EzSGqtBqxQ;h?":[1,"bkJ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bkI":{"opcode":"argument_reporter_string_number","next":null,"parent":"y:","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"bkJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"y:","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"am?":{"opcode":"data_setvariableto","next":"am@","parent":"am=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"am@":{"opcode":"data_setvariableto","next":"y;","parent":"am?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"y;":{"opcode":"control_repeat","next":"am[","parent":"am@","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"a%"]},"fields":{},"shadow":false,"topLevel":false},"a%":{"opcode":"control_if_else","next":"bkK","parent":"y;","inputs":{"CONDITION":[2,"am]"],"SUBSTACK":[2,"am^"],"SUBSTACK2":[2,"y="]},"fields":{},"shadow":false,"topLevel":false},"am]":{"opcode":"operator_equals","next":null,"parent":"a%","inputs":{"OPERAND1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[10,""]],"OPERAND2":[3,"am_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"am_":{"opcode":"operator_mod","next":null,"parent":"am]","inputs":{"NUM1":[3,"bkL",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkL":{"opcode":"argument_reporter_string_number","next":null,"parent":"am_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"am^":{"opcode":"data_setvariableto","next":null,"parent":"a%","inputs":{"VALUE":[3,"y?",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"y?":{"opcode":"operator_add","next":null,"parent":"am^","inputs":{"NUM1":[3,"bkM",[4,0]],"NUM2":[3,"bkN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkM":{"opcode":"operator_multiply","next":null,"parent":"y?","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkN":{"opcode":"argument_reporter_string_number","next":null,"parent":"y?","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"y=":{"opcode":"procedures_call","next":"am`","parent":"a%","inputs":{"V)?tNL$%Rh+w==[pHm3i":[3,"am{",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_byte %s","argumentids":"[\"V)?tNL$%Rh+w==[pHm3i\"]","warp":"true"}},"am{":{"opcode":"operator_add","next":null,"parent":"y=","inputs":{"NUM1":[3,"am|",[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am|":{"opcode":"operator_multiply","next":null,"parent":"am{","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"am}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"am}":{"opcode":"operator_mathop","next":null,"parent":"am|","inputs":{"NUM":[3,"am~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"am~":{"opcode":"operator_divide","next":null,"parent":"am}","inputs":{"NUM1":[3,"bkO",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkO":{"opcode":"argument_reporter_string_number","next":null,"parent":"am~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"am`":{"opcode":"data_setvariableto","next":null,"parent":"y=","inputs":{"VALUE":[3,"ana",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"ana":{"opcode":"operator_add","next":null,"parent":"am`","inputs":{"NUM1":[3,"bkP",[4,0]],"NUM2":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkP":{"opcode":"operator_multiply","next":null,"parent":"ana","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkK":{"opcode":"data_changevariableby","next":null,"parent":"a%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"am[":{"opcode":"procedures_call","next":null,"parent":"y;","inputs":{"L6YQWQx[Fw$sJmW@(GYW":[3,"anb",[10,""]],"-H4sp=),qi[~:f)tEWi`":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_memory %s %s","argumentids":"[\"L6YQWQx[Fw$sJmW@(GYW\",\"-H4sp=),qi[~:f)tEWi`\"]","warp":"true"}},"anb":{"opcode":"operator_multiply","next":null,"parent":"am[","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"anc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anc":{"opcode":"operator_mathop","next":null,"parent":"anb","inputs":{"NUM":[3,"and",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"and":{"opcode":"operator_divide","next":null,"parent":"anc","inputs":{"NUM1":[3,"bkQ",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"and","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ane":{"opcode":"procedures_definition","next":"anf","parent":null,"inputs":{"custom_block":[1,"y@"]},"fields":{},"shadow":false,"topLevel":true,"x":4507,"y":3775},"y@":{"opcode":"procedures_prototype","next":null,"parent":"ane","inputs":{"D.*5WhEjoNWAd$2TCWYY":[1,"bkR"],"]VDD,IQ9ku]1-ToXGR.#":[1,"bkS"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","argumentnames":"[\"addr\",\"value\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bkR":{"opcode":"argument_reporter_string_number","next":null,"parent":"y@","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"bkS":{"opcode":"argument_reporter_string_number","next":null,"parent":"y@","inputs":{},"fields":{"VALUE":["value",null]},"shadow":true,"topLevel":false},"anf":{"opcode":"data_setvariableto","next":"ang","parent":"ane","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"ang":{"opcode":"data_setvariableto","next":"y[","parent":"anf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"y[":{"opcode":"control_repeat","next":"anh","parent":"ang","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"a("]},"fields":{},"shadow":false,"topLevel":false},"a(":{"opcode":"control_if_else","next":"bkT","parent":"y[","inputs":{"CONDITION":[2,"ani"],"SUBSTACK":[2,"anj"],"SUBSTACK2":[2,"y]"]},"fields":{},"shadow":false,"topLevel":false},"ani":{"opcode":"operator_equals","next":null,"parent":"a(","inputs":{"OPERAND1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[10,""]],"OPERAND2":[3,"ank",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ank":{"opcode":"operator_mod","next":null,"parent":"ani","inputs":{"NUM1":[3,"bkU",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkU":{"opcode":"argument_reporter_string_number","next":null,"parent":"ank","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"anj":{"opcode":"data_setvariableto","next":null,"parent":"a(","inputs":{"VALUE":[3,"y^",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"y^":{"opcode":"operator_add","next":null,"parent":"anj","inputs":{"NUM1":[3,"bkV",[4,0]],"NUM2":[3,"bkW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkV":{"opcode":"operator_multiply","next":null,"parent":"y^","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkW":{"opcode":"argument_reporter_string_number","next":null,"parent":"y^","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"y]":{"opcode":"procedures_call","next":"anl","parent":"a(","inputs":{"JB:_vsE:+DeE~*XZsm)n":[3,"anm",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"anm":{"opcode":"operator_add","next":null,"parent":"y]","inputs":{"NUM1":[3,"ann",[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ann":{"opcode":"operator_multiply","next":null,"parent":"anm","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"ano",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ano":{"opcode":"operator_mathop","next":null,"parent":"ann","inputs":{"NUM":[3,"anp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"anp":{"opcode":"operator_divide","next":null,"parent":"ano","inputs":{"NUM1":[3,"bkX",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bkX":{"opcode":"argument_reporter_string_number","next":null,"parent":"anp","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"anl":{"opcode":"data_setvariableto","next":null,"parent":"y]","inputs":{"VALUE":[3,"anq",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"anq":{"opcode":"operator_add","next":null,"parent":"anl","inputs":{"NUM1":[3,"bkY",[4,0]],"NUM2":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkY":{"opcode":"operator_multiply","next":null,"parent":"anq","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bkT":{"opcode":"data_changevariableby","next":null,"parent":"a(","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"anh":{"opcode":"procedures_call","next":null,"parent":"y[","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"bkZ",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"bkZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"anh","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"anr":{"opcode":"procedures_definition","next":"ans","parent":null,"inputs":{"custom_block":[1,"bk!"]},"fields":{},"shadow":false,"topLevel":true,"x":12,"y":142},"bk!":{"opcode":"procedures_prototype","next":null,"parent":"anr","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ans":{"opcode":"data_setvariableto","next":"ant","parent":"anr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"ant":{"opcode":"data_setvariableto","next":"y_","parent":"ans","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_y","D*/(a|uRL{vFdIeuWJq}"]},"shadow":false,"topLevel":false},"y_":{"opcode":"control_repeat_until","next":null,"parent":"ant","inputs":{"CONDITION":[2,"bk#"],"SUBSTACK":[2,"Xj"]},"fields":{},"shadow":false,"topLevel":false},"bk#":{"opcode":"operator_equals","next":null,"parent":"y_","inputs":{"OPERAND1":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[10,""]],"OPERAND2":[1,[10,"263"]]},"fields":{},"shadow":false,"topLevel":false},"Xj":{"opcode":"control_repeat_until","next":"Xk","parent":"y_","inputs":{"CONDITION":[2,"anu"],"SUBSTACK":[2,"y`"]},"fields":{},"shadow":false,"topLevel":false},"anu":{"opcode":"operator_gt","next":null,"parent":"Xj","inputs":{"OPERAND1":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[10,""]],"OPERAND2":[3,"bk%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bk%":{"opcode":"operator_divide","next":null,"parent":"anu","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"y`":{"opcode":"procedures_call","next":"bk(","parent":"Xj","inputs":{"w|jx0IoJLmzBO~yODIww":[3,"bk)",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.instruction %s","argumentids":"[\"w|jx0IoJLmzBO~yODIww\"]","warp":"true"}},"bk)":{"opcode":"data_itemoflist","next":null,"parent":"y`","inputs":{"INDEX":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[7,0]]},"fields":{"LIST":["arm7.rom","iQF=oI}+|V%s*{,h}nm{"]},"shadow":false,"topLevel":false},"bk(":{"opcode":"data_changevariableby","next":null,"parent":"y`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"Xk":{"opcode":"control_repeat_until","next":"Xl","parent":"Xj","inputs":{"CONDITION":[2,"anv"],"SUBSTACK":[2,"y{"]},"fields":{},"shadow":false,"topLevel":false},"anv":{"opcode":"operator_gt","next":null,"parent":"Xk","inputs":{"OPERAND1":[3,"bk*",[10,""]],"OPERAND2":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bk*":{"opcode":"operator_divide","next":null,"parent":"anv","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"y{":{"opcode":"procedures_call","next":"bk+","parent":"Xk","inputs":{"#l%LO,1LL7`*b:s_Xb^M":[3,"bk,",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.instruction %s","argumentids":"[\"#l%LO,1LL7`*b:s_Xb^M\"]","warp":"true"}},"bk,":{"opcode":"data_itemoflist","next":null,"parent":"y{","inputs":{"INDEX":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[7,0]]},"fields":{"LIST":["arm9.rom","2^3x|Rqqju,bMtfgid%0"]},"shadow":false,"topLevel":false},"bk+":{"opcode":"data_changevariableby","next":null,"parent":"y{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"Xl":{"opcode":"control_if","next":"y|","parent":"Xk","inputs":{"CONDITION":[2,"bk-"],"SUBSTACK":[2,"y}"]},"fields":{},"shadow":false,"topLevel":false},"bk-":{"opcode":"operator_gt","next":null,"parent":"Xl","inputs":{"OPERAND1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"y}":{"opcode":"data_setvariableto","next":"anw","parent":"Xl","inputs":{"VALUE":[3,"bk.",[10,""]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"bk.":{"opcode":"operator_subtract","next":null,"parent":"y}","inputs":{"NUM1":[3,[12,"arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"],[4,0]],"NUM2":[3,[12,"arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anw":{"opcode":"data_setvariableto","next":"Xm","parent":"y}","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"anx":{"opcode":"procedures_call","next":"any","parent":"Xm","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,[10,"0x06800002"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"any":{"opcode":"data_setvariableto","next":"anz","parent":"anx","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"anz":{"opcode":"procedures_call","next":"y~","parent":"any","inputs":{"JB:_vsE:+DeE~*XZsm)n":[1,[10,"0x06800003"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_byte %s","argumentids":"[\"JB:_vsE:+DeE~*XZsm)n\"]","warp":"true"}},"#z":{"opcode":"data_replaceitemoflist","next":null,"parent":"y~","inputs":{"INDEX":[3,"anA",[7,0]],"ITEM":[3,"anB",[10,""]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"anA":{"opcode":"operator_add","next":null,"parent":"#z","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"anC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anC":{"opcode":"operator_add","next":null,"parent":"anA","inputs":{"NUM1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[4,0]],"NUM2":[3,"bk/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bk/":{"opcode":"operator_multiply","next":null,"parent":"anC","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"anB":{"opcode":"operator_add","next":null,"parent":"#z","inputs":{"NUM1":[3,"bk:",[4,0]],"NUM2":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bk:":{"opcode":"operator_multiply","next":null,"parent":"anB","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bk;":{"opcode":"data_changevariableby","next":null,"parent":"Xm","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"y|":{"opcode":"control_if","next":null,"parent":"Xl","inputs":{"CONDITION":[2,"bk="],"SUBSTACK":[2,"anD"]},"fields":{},"shadow":false,"topLevel":false},"bk=":{"opcode":"operator_equals","next":null,"parent":"y|","inputs":{"OPERAND1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[10,""]],"OPERAND2":[1,[10,"355"]]},"fields":{},"shadow":false,"topLevel":false},"anD":{"opcode":"data_setvariableto","next":"bk?","parent":"y|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display.scan_x","pXkI+kwkMT/GFMgtL=VH"]},"shadow":false,"topLevel":false},"bk?":{"opcode":"data_changevariableby","next":null,"parent":"anD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["display.scan_y","D*/(a|uRL{vFdIeuWJq}"]},"shadow":false,"topLevel":false},"anE":{"opcode":"data_deletealloflist","next":"anF","parent":"bk@","inputs":{},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"anF":{"opcode":"data_deletealloflist","next":"anG","parent":"anE","inputs":{},"fields":{"LIST":["arm7.memory1","Uvf04Qoh/5TL1wO%-Z.D"]},"shadow":false,"topLevel":false},"anG":{"opcode":"data_deletealloflist","next":"anH","parent":"anF","inputs":{},"fields":{"LIST":["arm7.memory2","QYb|2MR}$=p9XPp0!WTj"]},"shadow":false,"topLevel":false},"anH":{"opcode":"data_deletealloflist","next":"anI","parent":"anG","inputs":{},"fields":{"LIST":["arm7.memory3","njAyQRkE{z;A1-]^jkB{"]},"shadow":false,"topLevel":false},"anI":{"opcode":"data_deletealloflist","next":"anJ","parent":"anH","inputs":{},"fields":{"LIST":["arm7.memory4","gX9cZO43r+,(hL2#O2Cp"]},"shadow":false,"topLevel":false},"anJ":{"opcode":"data_deletealloflist","next":"anK","parent":"anI","inputs":{},"fields":{"LIST":["arm7.memory5","j9b@y^=0+Drg2s/R}(2x"]},"shadow":false,"topLevel":false},"anK":{"opcode":"data_deletealloflist","next":"anL","parent":"anJ","inputs":{},"fields":{"LIST":["arm7.memory6",":S.^^KK:vu#%(*yMlfJO"]},"shadow":false,"topLevel":false},"anL":{"opcode":"data_deletealloflist","next":"anM","parent":"anK","inputs":{},"fields":{"LIST":["core.shared_wram","Z$-F@yScmi?NzxiL#9Z}"]},"shadow":false,"topLevel":false},"anM":{"opcode":"data_deletealloflist","next":"anN","parent":"anL","inputs":{},"fields":{"LIST":["arm7.wram","Q]Hi]W=b+k/y*Sg6BSu0"]},"shadow":false,"topLevel":false},"anN":{"opcode":"data_deletealloflist","next":"anO","parent":"anM","inputs":{},"fields":{"LIST":["arm7.vwram","maIIt!.}+ozpZ,ARCmRi"]},"shadow":false,"topLevel":false},"anO":{"opcode":"data_deletealloflist","next":"anP","parent":"anN","inputs":{},"fields":{"LIST":["arm7.io_ports","[OgGz#.!E)`2Slmt%$Pa"]},"shadow":false,"topLevel":false},"anP":{"opcode":"data_deletealloflist","next":"anQ","parent":"anO","inputs":{},"fields":{"LIST":["arm7.wireless.state_0","*hfP4YR*A??5WtLr/#n9"]},"shadow":false,"topLevel":false},"anQ":{"opcode":"data_deletealloflist","next":"anR","parent":"anP","inputs":{},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"anR":{"opcode":"data_deletealloflist","next":"anS","parent":"anQ","inputs":{},"fields":{"LIST":["arm9.memory1",";%5/]?BxpeXK6De;T-%,"]},"shadow":false,"topLevel":false},"anS":{"opcode":"data_deletealloflist","next":"anT","parent":"anR","inputs":{},"fields":{"LIST":["arm9.memory2",";ZESGDsO)m0*x9$^rcW0"]},"shadow":false,"topLevel":false},"anT":{"opcode":"data_deletealloflist","next":"anU","parent":"anS","inputs":{},"fields":{"LIST":["arm9.memory3","YA6yOCRUtqW/G7^UVjbW"]},"shadow":false,"topLevel":false},"anU":{"opcode":"data_deletealloflist","next":"anV","parent":"anT","inputs":{},"fields":{"LIST":["arm9.memory4","8ZEv{03A@CaKJ(|pk`ZJ"]},"shadow":false,"topLevel":false},"anV":{"opcode":"data_deletealloflist","next":"anW","parent":"anU","inputs":{},"fields":{"LIST":["arm9.memory5","rSU1^x`,g=a?Z@^[xY+T"]},"shadow":false,"topLevel":false},"anW":{"opcode":"data_deletealloflist","next":"anX","parent":"anV","inputs":{},"fields":{"LIST":["arm9.memory6","9_eB!Y3}VuUy)u[LEDQh"]},"shadow":false,"topLevel":false},"anX":{"opcode":"data_deletealloflist","next":"anY","parent":"anW","inputs":{},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"anY":{"opcode":"data_deletealloflist","next":"anZ","parent":"anX","inputs":{},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"anZ":{"opcode":"data_deletealloflist","next":"an!","parent":"anY","inputs":{},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"an!":{"opcode":"data_deletealloflist","next":"an#","parent":"anZ","inputs":{},"fields":{"LIST":["vram.engine_a.bg","f(0D*PHb:{[P[u.%V!V!"]},"shadow":false,"topLevel":false},"an#":{"opcode":"data_deletealloflist","next":"an%","parent":"an!","inputs":{},"fields":{"LIST":["vram.engine_a.obj","iGLIHi+i9Aryu]bYNNR["]},"shadow":false,"topLevel":false},"an%":{"opcode":"data_deletealloflist","next":"an(","parent":"an#","inputs":{},"fields":{"LIST":["vram.engine_b.bg",".wS@_(1Qq^rK*BvUIeL="]},"shadow":false,"topLevel":false},"an(":{"opcode":"data_deletealloflist","next":"an)","parent":"an%","inputs":{},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"an)":{"opcode":"data_deletealloflist","next":"bk[","parent":"an(","inputs":{},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"bk[":{"opcode":"data_deletealloflist","next":null,"parent":"an)","inputs":{},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"an*":{"opcode":"operator_mod","next":null,"parent":"an+","inputs":{"NUM1":[3,"bk]",[4,0]],"NUM2":[1,[4,"0x0100"]]},"fields":{},"shadow":false,"topLevel":false},"an+":{"opcode":"operator_gt","next":null,"parent":"Xm","inputs":{"OPERAND1":[3,"an*",[10,""]],"OPERAND2":[1,[10,"0x7F"]]},"fields":{},"shadow":false,"topLevel":false},"bk]":{"opcode":"data_itemoflist","next":null,"parent":"an*","inputs":{"INDEX":[1,[7,"145"]]},"fields":{"LIST":["arm9.io_ports","($T#j?Vp+GTwR+m^G=dx"]},"shadow":false,"topLevel":false},"an,":{"opcode":"operator_mod","next":null,"parent":"x~","inputs":{"NUM1":[3,"an-",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"an-":{"opcode":"operator_mathop","next":null,"parent":"an,","inputs":{"NUM":[3,"bk^",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bk^":{"opcode":"operator_divide","next":null,"parent":"an-","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"#A":{"opcode":"data_setvariableto","next":"Xn","parent":"x~","inputs":{"VALUE":[3,"bk_",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"bk_":{"opcode":"operator_subtract","next":null,"parent":"#A","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Xn":{"opcode":"control_if","next":"i`","parent":"#A","inputs":{"CONDITION":[2,"an."],"SUBSTACK":[2,"an/"]},"fields":{},"shadow":false,"topLevel":false},"an.":{"opcode":"operator_gt","next":null,"parent":"Xn","inputs":{"OPERAND1":[3,"bk`",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bk`":{"opcode":"operator_mod","next":null,"parent":"an.","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"an/":{"opcode":"data_replaceitemoflist","next":null,"parent":"Xn","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"bk{",[10,""]]},"fields":{"LIST":["arm7.flags","#_[CK=fABC,PAZ_,6!9!"]},"shadow":false,"topLevel":false},"bk{":{"opcode":"operator_lt","next":null,"parent":"an/","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i`":{"opcode":"control_if","next":"an:","parent":"Xn","inputs":{"CONDITION":[2,"bk|"],"SUBSTACK":[2,"bk}"]},"fields":{},"shadow":false,"topLevel":false},"bk|":{"opcode":"operator_lt","next":null,"parent":"i`","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bk}":{"opcode":"data_changevariableby","next":null,"parent":"i`","inputs":{"VALUE":[1,[4,"0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"an;":{"opcode":"operator_mod","next":null,"parent":"an:","inputs":{"NUM1":[3,"an=",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"an=":{"opcode":"operator_mathop","next":null,"parent":"an;","inputs":{"NUM":[3,"bk~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bk~":{"opcode":"operator_divide","next":null,"parent":"an=","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"x~":{"opcode":"procedures_call","next":"#A","parent":"x}","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"an,",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"an:":{"opcode":"procedures_call","next":null,"parent":"i`","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"an;",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"yd":{"opcode":"data_setvariableto","next":"i{","parent":"is","inputs":{"VALUE":[3,"an?",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"an?":{"opcode":"operator_subtract","next":null,"parent":"yd","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"#B",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"#B":{"opcode":"operator_add","next":null,"parent":"an?","inputs":{"NUM1":[3,"an@",[4,0]],"NUM2":[3,"bla",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"an@":{"opcode":"operator_multiply","next":null,"parent":"#B","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"an[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"an[":{"opcode":"operator_mod","next":null,"parent":"an@","inputs":{"NUM1":[3,"an]",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"an]":{"opcode":"operator_mathop","next":null,"parent":"an[","inputs":{"NUM":[3,"blb",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blb":{"opcode":"operator_divide","next":null,"parent":"an]","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bla":{"opcode":"operator_mod","next":null,"parent":"#B","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"i{":{"opcode":"control_if","next":"#C","parent":"yd","inputs":{"CONDITION":[2,"an^"],"SUBSTACK":[2,"an_"]},"fields":{},"shadow":false,"topLevel":false},"an^":{"opcode":"operator_gt","next":null,"parent":"i{","inputs":{"OPERAND1":[3,"blc",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blc":{"opcode":"operator_mod","next":null,"parent":"an^","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"an_":{"opcode":"data_setvariableto","next":null,"parent":"i{","inputs":{"VALUE":[3,"bld",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bld":{"opcode":"operator_subtract","next":null,"parent":"an_","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"an`":{"opcode":"operator_mod","next":null,"parent":"#C","inputs":{"NUM1":[3,"an{",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"an{":{"opcode":"operator_mathop","next":null,"parent":"an`","inputs":{"NUM":[3,"ble",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ble":{"opcode":"operator_divide","next":null,"parent":"an{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"an|":{"opcode":"data_changevariableby","next":"i|","parent":"#C","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"i|":{"opcode":"control_if","next":"a)","parent":"an|","inputs":{"CONDITION":[2,"an}"],"SUBSTACK":[2,"an~"]},"fields":{},"shadow":false,"topLevel":false},"an}":{"opcode":"operator_gt","next":null,"parent":"i|","inputs":{"OPERAND1":[3,"blf",[10,""]],"OPERAND2":[1,[10,"0x001FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blf":{"opcode":"operator_mod","next":null,"parent":"an}","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00400000"]]},"fields":{},"shadow":false,"topLevel":false},"aoa":{"opcode":"operator_mod","next":null,"parent":"an~","inputs":{"NUM1":[3,"aob",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aob":{"opcode":"operator_mathop","next":null,"parent":"aoa","inputs":{"NUM":[3,"blg",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blg":{"opcode":"operator_divide","next":null,"parent":"aob","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"a)":{"opcode":"control_if_else","next":"blh","parent":"i|","inputs":{"CONDITION":[2,"aoc"],"SUBSTACK":[2,"aod"],"SUBSTACK2":[2,"#D"]},"fields":{},"shadow":false,"topLevel":false},"aoc":{"opcode":"operator_gt","next":null,"parent":"a)","inputs":{"OPERAND1":[3,"bli",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bli":{"opcode":"operator_mod","next":null,"parent":"aoc","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"aoe":{"opcode":"operator_mod","next":null,"parent":"aof","inputs":{"NUM1":[3,"aog",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aog":{"opcode":"operator_mathop","next":null,"parent":"aoe","inputs":{"NUM":[3,"blj",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blj":{"opcode":"operator_divide","next":null,"parent":"aog","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"aoh":{"opcode":"operator_mod","next":null,"parent":"#D","inputs":{"NUM1":[3,"aoi",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aoi":{"opcode":"operator_mathop","next":null,"parent":"aoh","inputs":{"NUM":[3,"blk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blk":{"opcode":"operator_divide","next":null,"parent":"aoi","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"aoj":{"opcode":"data_setvariableto","next":"#E","parent":"#D","inputs":{"VALUE":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"aok":{"opcode":"operator_mathop","next":null,"parent":"#E","inputs":{"NUM":[3,"bll",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bll":{"opcode":"operator_divide","next":null,"parent":"aok","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"blm":{"opcode":"operator_add","next":null,"parent":"#F","inputs":{"NUM1":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bln":{"opcode":"operator_mod","next":null,"parent":"#F","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"blh":{"opcode":"data_changevariableby","next":null,"parent":"a)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"#C":{"opcode":"procedures_call","next":"an|","parent":"i{","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"an`",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"an~":{"opcode":"procedures_call","next":null,"parent":"i|","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aoa",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"aof":{"opcode":"procedures_call","next":null,"parent":"aod","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aoe",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"aod":{"opcode":"procedures_call","next":"aof","parent":"a)","inputs":{"F=h5wy/Zq[FG$K-#e12Z":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_memory %s","argumentids":"[\"F=h5wy/Zq[FG$K-#e12Z\"]","warp":"true"}},"#D":{"opcode":"procedures_call","next":"aoj","parent":"a)","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"aoh",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"#E":{"opcode":"procedures_call","next":"#F","parent":"aoj","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]],"chMd9Q|EzSGqtBqxQ;h?":[3,"aok",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","warp":"true"}},"#F":{"opcode":"procedures_call","next":null,"parent":"#E","inputs":{"Gn6Ly}$cR,~)PTjR*,Yl":[3,"blm",[10,""]],"chMd9Q|EzSGqtBqxQ;h?":[3,"bln",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_byte %s %s","argumentids":"[\"Gn6Ly}$cR,~)PTjR*,Yl\",\"chMd9Q|EzSGqtBqxQ;h?\"]","warp":"true"}},"aol":{"opcode":"operator_mod","next":null,"parent":"yb","inputs":{"NUM1":[3,"aom",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aom":{"opcode":"operator_mathop","next":null,"parent":"aol","inputs":{"NUM":[3,"blo",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blo":{"opcode":"operator_divide","next":null,"parent":"aom","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"#G":{"opcode":"data_setvariableto","next":"i}","parent":"yb","inputs":{"VALUE":[3,"blp",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"blp":{"opcode":"operator_add","next":null,"parent":"#G","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"i}":{"opcode":"control_if","next":"aon","parent":"#G","inputs":{"CONDITION":[2,"blq"],"SUBSTACK":[2,"blr"]},"fields":{},"shadow":false,"topLevel":false},"blq":{"opcode":"operator_gt","next":null,"parent":"i}","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0xFFFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blr":{"opcode":"data_changevariableby","next":null,"parent":"i}","inputs":{"VALUE":[1,[4,"-0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"aoo":{"opcode":"operator_mod","next":null,"parent":"aon","inputs":{"NUM1":[3,"aop",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aop":{"opcode":"operator_mathop","next":null,"parent":"aoo","inputs":{"NUM":[3,"bls",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bls":{"opcode":"operator_divide","next":null,"parent":"aop","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"yb":{"opcode":"procedures_call","next":"#G","parent":"ya","inputs":{"BM!EW:X=[xA|lsOiV[D^":[3,"aol",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.read_register %s","argumentids":"[\"BM!EW:X=[xA|lsOiV[D^\"]","warp":"true"}},"aon":{"opcode":"procedures_call","next":null,"parent":"i}","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[3,"aoo",[10,""]],"YcCxsq`]3g25uQV)Hi5o":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"y~":{"opcode":"control_if","next":null,"parent":"anz","inputs":{"CONDITION":[2,"#H"],"SUBSTACK":[2,"#z"]},"fields":{},"shadow":false,"topLevel":false},"#H":{"opcode":"operator_and","next":null,"parent":"y~","inputs":{"OPERAND2":[2,"blt"],"OPERAND1":[2,"blu"]},"fields":{},"shadow":false,"topLevel":false},"blt":{"opcode":"operator_lt","next":null,"parent":"#H","inputs":{"OPERAND1":[3,[12,"display.scan_y","D*/(a|uRL{vFdIeuWJq}"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"blu":{"opcode":"operator_lt","next":null,"parent":"#H","inputs":{"OPERAND1":[3,[12,"display.scan_x","pXkI+kwkMT/GFMgtL=VH"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Xm":{"opcode":"control_if","next":"bk;","parent":"anw","inputs":{"SUBSTACK":[2,"anx"],"CONDITION":[2,"an+"]},"fields":{},"shadow":false,"topLevel":false},"aoq":{"opcode":"operator_equals","next":null,"parent":"yy","inputs":{"OPERAND1":[3,"aor",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"yy":{"opcode":"control_if_else","next":null,"parent":"h.","inputs":{"SUBSTACK2":[2,"bik"],"CONDITION":[2,"aoq"],"SUBSTACK":[2,"blv"]},"fields":{},"shadow":false,"topLevel":false},"aor":{"opcode":"operator_mod","next":null,"parent":"aoq","inputs":{"NUM1":[3,"aos",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aos":{"opcode":"operator_mathop","next":null,"parent":"aor","inputs":{"NUM":[3,"blw",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blw":{"opcode":"operator_divide","next":null,"parent":"aos","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"blv":{"opcode":"data_setvariableto","next":null,"parent":"yy","inputs":{"VALUE":[1,[10,"14"]]},"fields":{"VARIABLE":["core.instruction_format","F~sbV)[gGR(WmIZmL{=!"]},"shadow":false,"topLevel":false},"ae@":{"opcode":"procedures_call","next":"ae^","parent":"ae?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulate_frame","argumentids":"[]","warp":"true"}},"ae^":{"opcode":"event_broadcast","next":"ae]","parent":"ae@","inputs":{"BROADCAST_INPUT":[1,[11,"render_screen","*~j7B^$jo;Babt$i@0p-"]]},"fields":{},"shadow":false,"topLevel":false},"bk@":{"opcode":"event_whenbroadcastreceived","next":"anE","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":-488,"y":892},"#m":{"opcode":"data_replaceitemoflist","next":null,"parent":"ia","inputs":{"INDEX":[3,"aot",[7,0]],"ITEM":[3,"blx",[10,""]]},"fields":{"LIST":["arm7.wireless.state_1","Z#J.8^J=g($xQr6Bd]q;"]},"shadow":false,"topLevel":false},"aot":{"opcode":"operator_add","next":null,"parent":"#m","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aou",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aou":{"opcode":"operator_mathop","next":null,"parent":"aot","inputs":{"NUM":[3,"aov",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aov":{"opcode":"operator_divide","next":null,"parent":"aou","inputs":{"NUM1":[3,"aow",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aow":{"opcode":"operator_subtract","next":null,"parent":"aov","inputs":{"NUM1":[3,"bly",[4,0]],"NUM2":[1,[4,"0x04808000"]]},"fields":{},"shadow":false,"topLevel":false},"bly":{"opcode":"argument_reporter_string_number","next":null,"parent":"aow","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"blx":{"opcode":"argument_reporter_string_number","next":null,"parent":"#m","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"x!":{"opcode":"data_replaceitemoflist","next":null,"parent":"af[","inputs":{"INDEX":[3,"aox",[7,0]],"ITEM":[3,"blz",[10,""]]},"fields":{"LIST":["arm7.registers","jZ@NISqMYq6TT+,?s4K8"]},"shadow":false,"topLevel":false},"aox":{"opcode":"operator_add","next":null,"parent":"x!","inputs":{"NUM1":[3,"blA",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"blA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aox","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"blz":{"opcode":"argument_reporter_string_number","next":null,"parent":"x!","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"x|":{"opcode":"procedures_call","next":"blB","parent":"x{","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"aoy",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"aoy":{"opcode":"operator_mod","next":null,"parent":"x|","inputs":{"NUM1":[3,"aoz",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aoz":{"opcode":"operator_mathop","next":null,"parent":"aoy","inputs":{"NUM":[3,"blC",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blC":{"opcode":"operator_divide","next":null,"parent":"aoz","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"blB":{"opcode":"data_setvariableto","next":null,"parent":"x|","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"yk":{"opcode":"control_if_else","next":null,"parent":"b!","inputs":{"CONDITION":[2,"blD"],"SUBSTACK":[2,"i~"]},"fields":{},"shadow":false,"topLevel":false},"blD":{"opcode":"operator_lt","next":null,"parent":"yk","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"i~":{"opcode":"control_if","next":"ja","parent":"yk","inputs":{"CONDITION":[2,"aoA"],"SUBSTACK":[2,"aoB"]},"fields":{},"shadow":false,"topLevel":false},"aoA":{"opcode":"operator_gt","next":null,"parent":"i~","inputs":{"OPERAND1":[3,"blE",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blE":{"opcode":"operator_mod","next":null,"parent":"aoA","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"aoB":{"opcode":"procedures_call","next":null,"parent":"i~","inputs":{"qiU%9B=*VkMZ~#fSZ9G`":[1,[10,"14"]],"YcCxsq`]3g25uQV)Hi5o":[3,"blF",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.write_register %s %s","argumentids":"[\"qiU%9B=*VkMZ~#fSZ9G`\",\"YcCxsq`]3g25uQV)Hi5o\"]","warp":"true"}},"blF":{"opcode":"operator_subtract","next":null,"parent":"aoB","inputs":{"NUM1":[3,[12,"arm7.pc","V]V#qdfB6)r-.+dNb?dS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ja":{"opcode":"control_if_else","next":"blG","parent":"i~","inputs":{"CONDITION":[2,"aoC"],"SUBSTACK":[2,"aoD"],"SUBSTACK2":[2,"aoE"]},"fields":{},"shadow":false,"topLevel":false},"aoC":{"opcode":"operator_gt","next":null,"parent":"ja","inputs":{"OPERAND1":[3,"blH",[10,""]],"OPERAND2":[1,[10,"0x008FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blH":{"opcode":"operator_mod","next":null,"parent":"aoC","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"aoD":{"opcode":"data_changevariableby","next":null,"parent":"ja","inputs":{"VALUE":[3,"aoF",[4,0]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"aoF":{"opcode":"operator_multiply","next":null,"parent":"aoD","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[3,"aoG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aoG":{"opcode":"operator_subtract","next":null,"parent":"aoF","inputs":{"NUM1":[1,[4,"0x00FFFFFF"]],"NUM2":[3,"blI",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"blI":{"opcode":"operator_mod","next":null,"parent":"aoG","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"aoE":{"opcode":"data_changevariableby","next":null,"parent":"ja","inputs":{"VALUE":[3,"blJ",[4,0]]},"fields":{"VARIABLE":["arm7.pc","V]V#qdfB6)r-.+dNb?dS"]},"shadow":false,"topLevel":false},"blJ":{"opcode":"operator_mod","next":null,"parent":"aoE","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"blG":{"opcode":"data_changevariableby","next":null,"parent":"ja","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm7.cycles","6)MJ1%:{yyW@[$pAU+RW"]},"shadow":false,"topLevel":false},"yq":{"opcode":"procedures_call","next":"jb","parent":"iz","inputs":{"HR}S7=-$neJrd)Sf~gG)":[3,"blK",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.get_format %s","argumentids":"[\"HR}S7=-$neJrd)Sf~gG)\"]","warp":"true"}},"blK":{"opcode":"argument_reporter_string_number","next":null,"parent":"yq","inputs":{},"fields":{"VALUE":["opcode",null]},"shadow":false,"topLevel":false},"jb":{"opcode":"control_if_else","next":null,"parent":"yq","inputs":{"CONDITION":[2,"blL"],"SUBSTACK":[2,"jc"],"SUBSTACK2":[2,"jd"]},"fields":{},"shadow":false,"topLevel":false},"blL":{"opcode":"operator_lt","next":null,"parent":"jb","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jc":{"opcode":"control_if_else","next":null,"parent":"jb","inputs":{"CONDITION":[2,"blM"],"SUBSTACK":[2,"hV"],"SUBSTACK2":[2,"je"]},"fields":{},"shadow":false,"topLevel":false},"blM":{"opcode":"operator_lt","next":null,"parent":"jc","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"hV":{"opcode":"control_if_else","next":null,"parent":"jc","inputs":{"CONDITION":[2,"blN"],"SUBSTACK":[2,"aD"],"SUBSTACK2":[2,"#I"]},"fields":{},"shadow":false,"topLevel":false},"blN":{"opcode":"operator_lt","next":null,"parent":"hV","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bfc":{"opcode":"operator_lt","next":null,"parent":"aD","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"hW":{"opcode":"control_if_else","next":"za","parent":"aD","inputs":{"CONDITION":[2,"aoH"],"SUBSTACK":[2,"jf"],"SUBSTACK2":[2,"zb"]},"fields":{},"shadow":false,"topLevel":false},"aoH":{"opcode":"operator_gt","next":null,"parent":"hW","inputs":{"OPERAND1":[3,"blO",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"blO":{"opcode":"operator_mod","next":null,"parent":"aoH","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"jf":{"opcode":"procedures_call","next":"blP","parent":"hW","inputs":{"qf6V=8fS.^prWcy8Eb)Y":[3,"blQ",[10,""]],"3)l`,m3z-UYcLsco:|pk":[3,"aoI",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"core.rotate_right %s %s","argumentids":"[\"qf6V=8fS.^prWcy8Eb)Y\",\"3)l`,m3z-UYcLsco:|pk\"]","warp":"true"}},"blQ":{"opcode":"operator_mod","next":null,"parent":"jf","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aoI":{"opcode":"operator_multiply","next":null,"parent":"jf","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"aoJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aoJ":{"opcode":"operator_mod","next":null,"parent":"aoI","inputs":{"NUM1":[3,"aoK",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aoK":{"opcode":"operator_mathop","next":null,"parent":"aoJ","inputs":{"NUM":[3,"blR",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blR":{"opcode":"operator_divide","next":null,"parent":"aoK","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"blP":{"opcode":"data_setvariableto","next":null,"parent":"jf","inputs":{"VALUE":[3,[12,"core.rotate_return","zY(u-?O,+t%[td.I,e.a"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"zb":{"opcode":"procedures_call","next":"zc","parent":"hW","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"blS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"blS":{"opcode":"operator_mod","next":null,"parent":"zb","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zc":{"opcode":"procedures_call","next":"blT","parent":"zb","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"aoL",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"aoL":{"opcode":"operator_mod","next":null,"parent":"zc","inputs":{"NUM1":[3,"aoM",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aoM":{"opcode":"operator_mathop","next":null,"parent":"aoL","inputs":{"NUM":[3,"blU",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"blU":{"opcode":"operator_divide","next":null,"parent":"aoM","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"blT":{"opcode":"data_setvariableto","next":null,"parent":"zc","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"za":{"opcode":"data_setvariableto","next":"a^","parent":"hW","inputs":{"VALUE":[3,"aoN",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"aoN":{"opcode":"operator_mathop","next":null,"parent":"za","inputs":{"NUM":[3,"aoO",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aoO":{"opcode":"operator_divide","next":null,"parent":"aoN","inputs":{"NUM1":[3,"blV",[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"blV":{"opcode":"operator_mod","next":null,"parent":"aoO","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"a^":{"opcode":"control_if_else","next":"blW","parent":"za","inputs":{"CONDITION":[2,"blX"],"SUBSTACK":[2,"jg"],"SUBSTACK2":[2,"jh"]},"fields":{},"shadow":false,"topLevel":false},"blX":{"opcode":"operator_lt","next":null,"parent":"a^","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"jg":{"opcode":"control_if_else","next":null,"parent":"a^","inputs":{"CONDITION":[2,"blY"],"SUBSTACK":[2,"ji"],"SUBSTACK2":[2,"jj"]},"fields":{},"shadow":false,"topLevel":false},"blY":{"opcode":"operator_lt","next":null,"parent":"jg","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ji":{"opcode":"control_if_else","next":null,"parent":"jg","inputs":{"CONDITION":[2,"blZ"],"SUBSTACK":[2,"aoP"],"SUBSTACK2":[2,"zd"]},"fields":{},"shadow":false,"topLevel":false},"blZ":{"opcode":"operator_lt","next":null,"parent":"ji","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aoP":{"opcode":"control_if_else","next":null,"parent":"ji","inputs":{"CONDITION":[2,"bl!"]},"fields":{},"shadow":false,"topLevel":false},"bl!":{"opcode":"operator_lt","next":null,"parent":"aoP","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zd":{"opcode":"control_if_else","next":null,"parent":"ji","inputs":{"CONDITION":[2,"bl#"],"SUBSTACK":[2,"ze"]},"fields":{},"shadow":false,"topLevel":false},"bl#":{"opcode":"operator_lt","next":null,"parent":"zd","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ze":{"opcode":"procedures_call","next":"zf","parent":"zd","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"aoQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"aoQ":{"opcode":"operator_mod","next":null,"parent":"ze","inputs":{"NUM1":[3,"aoR",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aoR":{"opcode":"operator_mathop","next":null,"parent":"aoQ","inputs":{"NUM":[3,"bl%",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bl%":{"opcode":"operator_divide","next":null,"parent":"aoR","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"zf":{"opcode":"data_setvariableto","next":"jk","parent":"ze","inputs":{"VALUE":[3,"bl(",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"bl(":{"opcode":"operator_subtract","next":null,"parent":"zf","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jk":{"opcode":"control_if","next":"jl","parent":"zf","inputs":{"CONDITION":[2,"aoS"],"SUBSTACK":[2,"aoT"]},"fields":{},"shadow":false,"topLevel":false},"aoS":{"opcode":"operator_gt","next":null,"parent":"jk","inputs":{"OPERAND1":[3,"bl)",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bl)":{"opcode":"operator_mod","next":null,"parent":"aoS","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"aoT":{"opcode":"data_replaceitemoflist","next":null,"parent":"jk","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"bl*",[10,""]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"bl*":{"opcode":"operator_lt","next":null,"parent":"aoT","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"jl":{"opcode":"control_if","next":"aoU","parent":"jk","inputs":{"CONDITION":[2,"bl+"],"SUBSTACK":[2,"bl,"]},"fields":{},"shadow":false,"topLevel":false},"bl+":{"opcode":"operator_lt","next":null,"parent":"jl","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bl,":{"opcode":"data_changevariableby","next":null,"parent":"jl","inputs":{"VALUE":[1,[4,"0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"aoU":{"opcode":"procedures_call","next":null,"parent":"jl","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"aoV",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"aoV":{"opcode":"operator_mod","next":null,"parent":"aoU","inputs":{"NUM1":[3,"aoW",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aoW":{"opcode":"operator_mathop","next":null,"parent":"aoV","inputs":{"NUM":[3,"bl-",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bl-":{"opcode":"operator_divide","next":null,"parent":"aoW","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"jj":{"opcode":"control_if_else","next":null,"parent":"jg","inputs":{"CONDITION":[2,"bl."],"SUBSTACK":[2,"zg"],"SUBSTACK2":[2,"aoX"]},"fields":{},"shadow":false,"topLevel":false},"bl.":{"opcode":"operator_lt","next":null,"parent":"jj","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"zg":{"opcode":"control_if_else","next":null,"parent":"jj","inputs":{"CONDITION":[2,"bl/"],"SUBSTACK":[2,"zh"]},"fields":{},"shadow":false,"topLevel":false},"bl/":{"opcode":"operator_lt","next":null,"parent":"zg","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"zh":{"opcode":"procedures_call","next":"zi","parent":"zg","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"aoY",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"aoY":{"opcode":"operator_mod","next":null,"parent":"zh","inputs":{"NUM1":[3,"aoZ",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aoZ":{"opcode":"operator_mathop","next":null,"parent":"aoY","inputs":{"NUM":[3,"bl:",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bl:":{"opcode":"operator_divide","next":null,"parent":"aoZ","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"zi":{"opcode":"data_setvariableto","next":"jm","parent":"zh","inputs":{"VALUE":[3,"bl;",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"bl;":{"opcode":"operator_add","next":null,"parent":"zi","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jm":{"opcode":"control_if","next":"ao!","parent":"zi","inputs":{"CONDITION":[2,"bl="],"SUBSTACK":[2,"bl?"]},"fields":{},"shadow":false,"topLevel":false},"bl=":{"opcode":"operator_gt","next":null,"parent":"jm","inputs":{"OPERAND1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]],"OPERAND2":[1,[10,"0xFFFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bl?":{"opcode":"data_changevariableby","next":null,"parent":"jm","inputs":{"VALUE":[1,[4,"-0x100000000"]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"ao!":{"opcode":"procedures_call","next":null,"parent":"jm","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ao#",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ao#":{"opcode":"operator_mod","next":null,"parent":"ao!","inputs":{"NUM1":[3,"ao%",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ao%":{"opcode":"operator_mathop","next":null,"parent":"ao#","inputs":{"NUM":[3,"bl@",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bl@":{"opcode":"operator_divide","next":null,"parent":"ao%","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"aoX":{"opcode":"control_if_else","next":null,"parent":"jj","inputs":{"CONDITION":[2,"bl["]},"fields":{},"shadow":false,"topLevel":false},"bl[":{"opcode":"operator_lt","next":null,"parent":"aoX","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"jh":{"opcode":"control_if_else","next":null,"parent":"a^","inputs":{"CONDITION":[2,"bl]"],"SUBSTACK":[2,"jn"],"SUBSTACK2":[2,"jo"]},"fields":{},"shadow":false,"topLevel":false},"bl]":{"opcode":"operator_lt","next":null,"parent":"jh","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"jn":{"opcode":"control_if_else","next":null,"parent":"jh","inputs":{"CONDITION":[2,"bl^"],"SUBSTACK":[2,"ao("],"SUBSTACK2":[2,"ao)"]},"fields":{},"shadow":false,"topLevel":false},"bl^":{"opcode":"operator_lt","next":null,"parent":"jn","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ao(":{"opcode":"control_if_else","next":null,"parent":"jn","inputs":{"CONDITION":[2,"bl_"]},"fields":{},"shadow":false,"topLevel":false},"bl_":{"opcode":"operator_lt","next":null,"parent":"ao(","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ao)":{"opcode":"control_if_else","next":null,"parent":"jn","inputs":{"CONDITION":[2,"bl`"]},"fields":{},"shadow":false,"topLevel":false},"bl`":{"opcode":"operator_lt","next":null,"parent":"ao)","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"jo":{"opcode":"control_if_else","next":null,"parent":"jh","inputs":{"CONDITION":[2,"bl{"],"SUBSTACK":[2,"zj"],"SUBSTACK2":[2,"ao*"]},"fields":{},"shadow":false,"topLevel":false},"bl{":{"opcode":"operator_lt","next":null,"parent":"jo","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"zj":{"opcode":"control_if_else","next":null,"parent":"jo","inputs":{"CONDITION":[2,"bl|"],"SUBSTACK2":[2,"ao+"]},"fields":{},"shadow":false,"topLevel":false},"bl|":{"opcode":"operator_lt","next":null,"parent":"zj","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ao+":{"opcode":"procedures_call","next":null,"parent":"zj","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ao,",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ao,":{"opcode":"operator_mod","next":null,"parent":"ao+","inputs":{"NUM1":[3,"ao-",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ao-":{"opcode":"operator_mathop","next":null,"parent":"ao,","inputs":{"NUM":[3,"bl}",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bl}":{"opcode":"operator_divide","next":null,"parent":"ao-","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"ao*":{"opcode":"control_if_else","next":null,"parent":"jo","inputs":{"CONDITION":[2,"bl~"]},"fields":{},"shadow":false,"topLevel":false},"bl~":{"opcode":"operator_lt","next":null,"parent":"ao*","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"blW":{"opcode":"data_changevariableby","next":null,"parent":"a^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"bfd":{"opcode":"data_changevariableby","next":null,"parent":"aD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"#I":{"opcode":"control_if_else","next":null,"parent":"hV","inputs":{"CONDITION":[2,"bma"],"SUBSTACK":[2,"bmb"]},"fields":{},"shadow":false,"topLevel":false},"bma":{"opcode":"operator_lt","next":null,"parent":"#I","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bmb":{"opcode":"data_changevariableby","next":null,"parent":"#I","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"je":{"opcode":"control_if_else","next":null,"parent":"jc","inputs":{"CONDITION":[2,"bmc"],"SUBSTACK":[2,"zk"],"SUBSTACK2":[2,"jp"]},"fields":{},"shadow":false,"topLevel":false},"bmc":{"opcode":"operator_lt","next":null,"parent":"je","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"zk":{"opcode":"control_if_else","next":null,"parent":"je","inputs":{"CONDITION":[2,"bmd"],"SUBSTACK":[2,"bme"]},"fields":{},"shadow":false,"topLevel":false},"bmd":{"opcode":"operator_lt","next":null,"parent":"zk","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bme":{"opcode":"data_changevariableby","next":null,"parent":"zk","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"jp":{"opcode":"control_if_else","next":null,"parent":"je","inputs":{"CONDITION":[2,"bmf"],"SUBSTACK":[2,"zl"],"SUBSTACK2":[2,"a_"]},"fields":{},"shadow":false,"topLevel":false},"bmf":{"opcode":"operator_lt","next":null,"parent":"jp","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"zl":{"opcode":"data_setvariableto","next":"jq","parent":"jp","inputs":{"VALUE":[3,"ao.",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"ao.":{"opcode":"operator_subtract","next":null,"parent":"zl","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"zm",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zm":{"opcode":"operator_add","next":null,"parent":"ao.","inputs":{"NUM1":[3,"ao/",[4,0]],"NUM2":[3,"bmg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ao/":{"opcode":"operator_multiply","next":null,"parent":"zm","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"ao:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ao:":{"opcode":"operator_mod","next":null,"parent":"ao/","inputs":{"NUM1":[3,"ao;",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ao;":{"opcode":"operator_mathop","next":null,"parent":"ao:","inputs":{"NUM":[3,"bmh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmh":{"opcode":"operator_divide","next":null,"parent":"ao;","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bmg":{"opcode":"operator_mod","next":null,"parent":"zm","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"jq":{"opcode":"control_if","next":"zn","parent":"zl","inputs":{"CONDITION":[2,"ao="],"SUBSTACK":[2,"ao?"]},"fields":{},"shadow":false,"topLevel":false},"ao=":{"opcode":"operator_gt","next":null,"parent":"jq","inputs":{"OPERAND1":[3,"bmi",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmi":{"opcode":"operator_mod","next":null,"parent":"ao=","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"ao?":{"opcode":"data_setvariableto","next":null,"parent":"jq","inputs":{"VALUE":[3,"bmj",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bmj":{"opcode":"operator_subtract","next":null,"parent":"ao?","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zn":{"opcode":"procedures_call","next":"ao@","parent":"jq","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"ao[",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"ao[":{"opcode":"operator_mod","next":null,"parent":"zn","inputs":{"NUM1":[3,"ao]",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ao]":{"opcode":"operator_mathop","next":null,"parent":"ao[","inputs":{"NUM":[3,"bmk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmk":{"opcode":"operator_divide","next":null,"parent":"ao]","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"ao@":{"opcode":"data_changevariableby","next":"jr","parent":"zn","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"jr":{"opcode":"control_if","next":"a`","parent":"ao@","inputs":{"CONDITION":[2,"ao^"],"SUBSTACK":[2,"ao_"]},"fields":{},"shadow":false,"topLevel":false},"ao^":{"opcode":"operator_gt","next":null,"parent":"jr","inputs":{"OPERAND1":[3,"bml",[10,""]],"OPERAND2":[1,[10,"0x001FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bml":{"opcode":"operator_mod","next":null,"parent":"ao^","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00400000"]]},"fields":{},"shadow":false,"topLevel":false},"ao_":{"opcode":"procedures_call","next":null,"parent":"jr","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"ao`",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"ao`":{"opcode":"operator_mod","next":null,"parent":"ao_","inputs":{"NUM1":[3,"ao{",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ao{":{"opcode":"operator_mathop","next":null,"parent":"ao`","inputs":{"NUM":[3,"bmm",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmm":{"opcode":"operator_divide","next":null,"parent":"ao{","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"a`":{"opcode":"control_if_else","next":"bmn","parent":"jr","inputs":{"CONDITION":[2,"ao|"],"SUBSTACK":[2,"ao}"],"SUBSTACK2":[2,"zo"]},"fields":{},"shadow":false,"topLevel":false},"ao|":{"opcode":"operator_gt","next":null,"parent":"a`","inputs":{"OPERAND1":[3,"bmo",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmo":{"opcode":"operator_mod","next":null,"parent":"ao|","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"ao}":{"opcode":"procedures_call","next":"ao~","parent":"a`","inputs":{".5IabzOBB`r;A-[bJCH-":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","warp":"true"}},"ao~":{"opcode":"procedures_call","next":null,"parent":"ao}","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"apa",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"apa":{"opcode":"operator_mod","next":null,"parent":"ao~","inputs":{"NUM1":[3,"apb",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"apb":{"opcode":"operator_mathop","next":null,"parent":"apa","inputs":{"NUM":[3,"bmp",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmp":{"opcode":"operator_divide","next":null,"parent":"apb","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"zo":{"opcode":"procedures_call","next":"apc","parent":"a`","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"apd",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"apd":{"opcode":"operator_mod","next":null,"parent":"zo","inputs":{"NUM1":[3,"ape",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ape":{"opcode":"operator_mathop","next":null,"parent":"apd","inputs":{"NUM":[3,"bmq",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmq":{"opcode":"operator_divide","next":null,"parent":"ape","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"apc":{"opcode":"data_setvariableto","next":"zp","parent":"zo","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"zp":{"opcode":"procedures_call","next":"zq","parent":"apc","inputs":{"D.*5WhEjoNWAd$2TCWYY":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[10,""]],"]VDD,IQ9ku]1-ToXGR.#":[3,"apf",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","warp":"true"}},"apf":{"opcode":"operator_mod","next":null,"parent":"zp","inputs":{"NUM1":[3,"apg",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"apg":{"opcode":"operator_mathop","next":null,"parent":"apf","inputs":{"NUM":[3,"bmr",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmr":{"opcode":"operator_divide","next":null,"parent":"apg","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"zq":{"opcode":"procedures_call","next":null,"parent":"zp","inputs":{"D.*5WhEjoNWAd$2TCWYY":[3,"bms",[10,""]],"]VDD,IQ9ku]1-ToXGR.#":[3,"bmt",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_byte %s %s","argumentids":"[\"D.*5WhEjoNWAd$2TCWYY\",\"]VDD,IQ9ku]1-ToXGR.#\"]","warp":"true"}},"bms":{"opcode":"operator_add","next":null,"parent":"zq","inputs":{"NUM1":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bmt":{"opcode":"operator_mod","next":null,"parent":"zq","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bmn":{"opcode":"data_changevariableby","next":null,"parent":"a`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"a_":{"opcode":"control_if_else","next":"js","parent":"jp","inputs":{"CONDITION":[2,"aph"],"SUBSTACK":[2,"zr"],"SUBSTACK2":[2,"api"]},"fields":{},"shadow":false,"topLevel":false},"aph":{"opcode":"operator_gt","next":null,"parent":"a_","inputs":{"OPERAND1":[3,"bmu",[10,""]],"OPERAND2":[1,[10,"0x01FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmu":{"opcode":"operator_mod","next":null,"parent":"aph","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x04000000"]]},"fields":{},"shadow":false,"topLevel":false},"zr":{"opcode":"procedures_call","next":"zs","parent":"a_","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"bmv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"bmv":{"opcode":"operator_mod","next":null,"parent":"zr","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zs":{"opcode":"procedures_call","next":"bmw","parent":"zr","inputs":{",!vV[QISR{R?|c;ZW)|A":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]],"2=ZrP1;%i72|7V~%m9,3":[3,"apj",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"%s << %s","argumentids":"[\",!vV[QISR{R?|c;ZW)|A\",\"2=ZrP1;%i72|7V~%m9,3\"]","warp":"true"}},"apj":{"opcode":"operator_mod","next":null,"parent":"zs","inputs":{"NUM1":[3,"apk",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"apk":{"opcode":"operator_mathop","next":null,"parent":"apj","inputs":{"NUM":[3,"bmx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmx":{"opcode":"operator_divide","next":null,"parent":"apk","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bmw":{"opcode":"data_setvariableto","next":null,"parent":"zs","inputs":{"VALUE":[3,[12,"core.shift_return","v;eH`7|2r1}R]J+L$.n+"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"api":{"opcode":"data_setvariableto","next":null,"parent":"a_","inputs":{"VALUE":[3,"bmy",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bmy":{"opcode":"operator_mod","next":null,"parent":"api","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"js":{"opcode":"control_if","next":"jt","parent":"a_","inputs":{"CONDITION":[2,"apl"],"SUBSTACK":[2,"apm"]},"fields":{},"shadow":false,"topLevel":false},"apl":{"opcode":"operator_gt","next":null,"parent":"js","inputs":{"OPERAND1":[3,"bmz",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmz":{"opcode":"operator_mod","next":null,"parent":"apl","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"apm":{"opcode":"data_setvariableto","next":null,"parent":"js","inputs":{"VALUE":[3,"bmA",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"bmA":{"opcode":"operator_subtract","next":null,"parent":"apm","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jt":{"opcode":"control_if_else","next":null,"parent":"js","inputs":{"CONDITION":[2,"apn"],"SUBSTACK":[2,"zt"],"SUBSTACK2":[2,"zu"]},"fields":{},"shadow":false,"topLevel":false},"apn":{"opcode":"operator_gt","next":null,"parent":"jt","inputs":{"OPERAND1":[3,"bmB",[10,""]],"OPERAND2":[1,[10,"0x000FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmB":{"opcode":"operator_mod","next":null,"parent":"apn","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x00200000"]]},"fields":{},"shadow":false,"topLevel":false},"zt":{"opcode":"procedures_call","next":"zv","parent":"jt","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"apo",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"apo":{"opcode":"operator_mod","next":null,"parent":"zt","inputs":{"NUM1":[3,"app",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"app":{"opcode":"operator_mathop","next":null,"parent":"apo","inputs":{"NUM":[3,"bmC",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmC":{"opcode":"operator_divide","next":null,"parent":"app","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"zv":{"opcode":"procedures_call","next":"apq","parent":"zt","inputs":{".5IabzOBB`r;A-[bJCH-":[3,"bmD",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_memory %s","argumentids":"[\".5IabzOBB`r;A-[bJCH-\"]","warp":"true"}},"bmD":{"opcode":"operator_add","next":null,"parent":"zv","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apq":{"opcode":"procedures_call","next":null,"parent":"zv","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[3,"apr",[10,""]],"!ho_MT93$iY`6pTQQERT":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"apr":{"opcode":"operator_mod","next":null,"parent":"apq","inputs":{"NUM1":[3,"aps",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aps":{"opcode":"operator_mathop","next":null,"parent":"apr","inputs":{"NUM":[3,"bmE",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmE":{"opcode":"operator_divide","next":null,"parent":"aps","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"zu":{"opcode":"procedures_call","next":"apt","parent":"jt","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"apu",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"apu":{"opcode":"operator_mod","next":null,"parent":"zu","inputs":{"NUM1":[3,"apv",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"apv":{"opcode":"operator_mathop","next":null,"parent":"apu","inputs":{"NUM":[3,"bmF",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmF":{"opcode":"operator_divide","next":null,"parent":"apv","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x10000"]]},"fields":{},"shadow":false,"topLevel":false},"apt":{"opcode":"data_setvariableto","next":"zw","parent":"zu","inputs":{"VALUE":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"zw":{"opcode":"procedures_call","next":"apw","parent":"apt","inputs":{"kV~fm|Z]*o;*KOWxtwoW":[3,"apx",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.read_register %s","argumentids":"[\"kV~fm|Z]*o;*KOWxtwoW\"]","warp":"true"}},"apx":{"opcode":"operator_mod","next":null,"parent":"zw","inputs":{"NUM1":[3,"apy",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"apy":{"opcode":"operator_mathop","next":null,"parent":"apx","inputs":{"NUM":[3,"bmG",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bmG":{"opcode":"operator_divide","next":null,"parent":"apy","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"apw":{"opcode":"procedures_call","next":null,"parent":"zw","inputs":{"[:qunpS-8M/60cedXKZc":[3,"bmH",[10,""]],"penC[|54{B|rziE}7Inh":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_memory %s %s","argumentids":"[\"[:qunpS-8M/60cedXKZc\",\"penC[|54{B|rziE}7Inh\"]","warp":"true"}},"bmH":{"opcode":"operator_add","next":null,"parent":"apw","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jd":{"opcode":"control_if_else","next":null,"parent":"jb","inputs":{"CONDITION":[2,"bmI"],"SUBSTACK":[2,"ju"],"SUBSTACK2":[2,"zx"]},"fields":{},"shadow":false,"topLevel":false},"bmI":{"opcode":"operator_lt","next":null,"parent":"jd","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ju":{"opcode":"control_if_else","next":null,"parent":"jd","inputs":{"CONDITION":[2,"bmJ"],"SUBSTACK":[2,"apz"],"SUBSTACK2":[2,"zy"]},"fields":{},"shadow":false,"topLevel":false},"bmJ":{"opcode":"operator_lt","next":null,"parent":"ju","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"apz":{"opcode":"control_if_else","next":null,"parent":"ju","inputs":{"CONDITION":[2,"bmK"]},"fields":{},"shadow":false,"topLevel":false},"bmK":{"opcode":"operator_lt","next":null,"parent":"apz","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"zy":{"opcode":"control_if_else","next":null,"parent":"ju","inputs":{"CONDITION":[2,"bmL"],"SUBSTACK":[2,"zz"]},"fields":{},"shadow":false,"topLevel":false},"bmL":{"opcode":"operator_lt","next":null,"parent":"zy","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"zz":{"opcode":"control_if","next":"a{","parent":"zy","inputs":{"CONDITION":[2,"apA"],"SUBSTACK":[2,"apB"]},"fields":{},"shadow":false,"topLevel":false},"apA":{"opcode":"operator_gt","next":null,"parent":"zz","inputs":{"OPERAND1":[3,"bmM",[10,""]],"OPERAND2":[1,[10,"0x00FFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmM":{"opcode":"operator_mod","next":null,"parent":"apA","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x02000000"]]},"fields":{},"shadow":false,"topLevel":false},"apB":{"opcode":"procedures_call","next":null,"parent":"zz","inputs":{"c5`^C[rdGva(Z*c)H8DZ":[1,[10,"14"]],"!ho_MT93$iY`6pTQQERT":[3,"bmN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.write_register %s %s","argumentids":"[\"c5`^C[rdGva(Z*c)H8DZ\",\"!ho_MT93$iY`6pTQQERT\"]","warp":"true"}},"bmN":{"opcode":"operator_subtract","next":null,"parent":"apB","inputs":{"NUM1":[3,[12,"arm9.pc","+z$2A?,;D8BT}z/;(0B|"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a{":{"opcode":"control_if_else","next":"bmO","parent":"zz","inputs":{"CONDITION":[2,"apC"],"SUBSTACK":[2,"apD"],"SUBSTACK2":[2,"apE"]},"fields":{},"shadow":false,"topLevel":false},"apC":{"opcode":"operator_gt","next":null,"parent":"a{","inputs":{"OPERAND1":[3,"bmP",[10,""]],"OPERAND2":[1,[10,"0x007FFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bmP":{"opcode":"operator_mod","next":null,"parent":"apC","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"apD":{"opcode":"data_changevariableby","next":null,"parent":"a{","inputs":{"VALUE":[3,"apF",[4,0]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"apF":{"opcode":"operator_multiply","next":null,"parent":"apD","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[3,"apG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apG":{"opcode":"operator_subtract","next":null,"parent":"apF","inputs":{"NUM1":[1,[4,"0x00FFFFFF"]],"NUM2":[3,"bmQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bmQ":{"opcode":"operator_mod","next":null,"parent":"apG","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"apE":{"opcode":"data_changevariableby","next":null,"parent":"a{","inputs":{"VALUE":[3,"bmR",[4,0]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"bmR":{"opcode":"operator_mod","next":null,"parent":"apE","inputs":{"NUM1":[3,[12,"core.little_endian","Sp7jtJ,4KrK(][NW_Syc"],[4,0]],"NUM2":[1,[4,"0x01000000"]]},"fields":{},"shadow":false,"topLevel":false},"bmO":{"opcode":"data_changevariableby","next":null,"parent":"a{","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"zx":{"opcode":"control_if_else","next":null,"parent":"jd","inputs":{"CONDITION":[2,"bmS"],"SUBSTACK":[2,"apH"],"SUBSTACK2":[2,"zA"]},"fields":{},"shadow":false,"topLevel":false},"bmS":{"opcode":"operator_lt","next":null,"parent":"zx","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"apH":{"opcode":"control_if_else","next":null,"parent":"zx","inputs":{"CONDITION":[2,"bmT"]},"fields":{},"shadow":false,"topLevel":false},"bmT":{"opcode":"operator_lt","next":null,"parent":"apH","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"zA":{"opcode":"control_if_else","next":null,"parent":"zx","inputs":{"CONDITION":[2,"bmU"],"SUBSTACK":[2,"zB"],"SUBSTACK2":[2,"bmV"]},"fields":{},"shadow":false,"topLevel":false},"bmU":{"opcode":"operator_lt","next":null,"parent":"zA","inputs":{"OPERAND1":[3,[12,"core.instruction_format","F~sbV)[gGR(WmIZmL{=!"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"zB":{"opcode":"data_setvariableto","next":"zC","parent":"zA","inputs":{"VALUE":[3,"bmW",[10,""]]},"fields":{"VARIABLE":["core.dummy_op","4FHz..}JG6uAMZJ12GK:"]},"shadow":false,"topLevel":false},"bmW":{"opcode":"operator_mod","next":null,"parent":"zB","inputs":{"NUM1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"zC":{"opcode":"control_if_else","next":null,"parent":"zB","inputs":{"CONDITION":[2,"bmX"],"SUBSTACK":[2,"zD"],"SUBSTACK2":[2,"zE"]},"fields":{},"shadow":false,"topLevel":false},"bmX":{"opcode":"operator_lt","next":null,"parent":"zC","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zD":{"opcode":"control_if_else","next":null,"parent":"zC","inputs":{"CONDITION":[2,"bmY"],"SUBSTACK":[2,"zF"],"SUBSTACK2":[2,"zG"]},"fields":{},"shadow":false,"topLevel":false},"bmY":{"opcode":"operator_lt","next":null,"parent":"zD","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"zF":{"opcode":"control_if_else","next":null,"parent":"zD","inputs":{"CONDITION":[2,"bmZ"],"SUBSTACK":[2,"zH"],"SUBSTACK2":[2,"zI"]},"fields":{},"shadow":false,"topLevel":false},"bmZ":{"opcode":"operator_lt","next":null,"parent":"zF","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"zH":{"opcode":"control_if_else","next":null,"parent":"zF","inputs":{"CONDITION":[2,"bm!"],"SUBSTACK":[2,"zJ"],"SUBSTACK2":[2,"zK"]},"fields":{},"shadow":false,"topLevel":false},"bm!":{"opcode":"operator_lt","next":null,"parent":"zH","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"zJ":{"opcode":"control_if_else","next":null,"parent":"zH","inputs":{"CONDITION":[2,"bm#"],"SUBSTACK":[2,"bm%"]},"fields":{},"shadow":false,"topLevel":false},"bm#":{"opcode":"operator_lt","next":null,"parent":"zJ","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bm%":{"opcode":"data_setvariableto","next":null,"parent":"zJ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["arm9.pc","+z$2A?,;D8BT}z/;(0B|"]},"shadow":false,"topLevel":false},"zK":{"opcode":"control_if_else","next":null,"parent":"zH","inputs":{"CONDITION":[2,"bm("],"SUBSTACK2":[2,"apI"]},"fields":{},"shadow":false,"topLevel":false},"bm(":{"opcode":"operator_lt","next":null,"parent":"zK","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"apI":{"opcode":"data_changevariableby","next":null,"parent":"zK","inputs":{"VALUE":[3,"apJ",[4,0]]},"fields":{"VARIABLE":["arm9.cycles","q|i3L@-9Yg3eW}Spl-lX"]},"shadow":false,"topLevel":false},"apJ":{"opcode":"operator_multiply","next":null,"parent":"apI","inputs":{"NUM1":[1,[4,"93"]],"NUM2":[3,"apK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apK":{"opcode":"operator_divide","next":null,"parent":"apJ","inputs":{"NUM1":[3,"bm)",[4,0]],"NUM2":[1,[4,"4189"]]},"fields":{},"shadow":false,"topLevel":false},"bm)":{"opcode":"data_itemoflist","next":null,"parent":"apK","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"zI":{"opcode":"control_if_else","next":null,"parent":"zF","inputs":{"CONDITION":[2,"bm*"],"SUBSTACK":[2,"apL"],"SUBSTACK2":[2,"apM"]},"fields":{},"shadow":false,"topLevel":false},"bm*":{"opcode":"operator_lt","next":null,"parent":"zI","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"apL":{"opcode":"control_if_else","next":null,"parent":"zI","inputs":{"CONDITION":[2,"bm+"]},"fields":{},"shadow":false,"topLevel":false},"bm+":{"opcode":"operator_lt","next":null,"parent":"apL","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"apM":{"opcode":"control_if_else","next":null,"parent":"zI","inputs":{"CONDITION":[2,"bm,"]},"fields":{},"shadow":false,"topLevel":false},"bm,":{"opcode":"operator_lt","next":null,"parent":"apM","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"zG":{"opcode":"control_if_else","next":null,"parent":"zD","inputs":{"CONDITION":[2,"bm-"],"SUBSTACK":[2,"jv"],"SUBSTACK2":[2,"jw"]},"fields":{},"shadow":false,"topLevel":false},"bm-":{"opcode":"operator_lt","next":null,"parent":"zG","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"jv":{"opcode":"control_if_else","next":null,"parent":"zG","inputs":{"CONDITION":[2,"bm."],"SUBSTACK":[2,"zL"],"SUBSTACK2":[2,"apN"]},"fields":{},"shadow":false,"topLevel":false},"bm.":{"opcode":"operator_lt","next":null,"parent":"jv","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"zL":{"opcode":"control_if_else","next":null,"parent":"jv","inputs":{"CONDITION":[2,"bm/"],"SUBSTACK":[2,"a|"]},"fields":{},"shadow":false,"topLevel":false},"bm/":{"opcode":"operator_lt","next":null,"parent":"zL","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a|":{"opcode":"control_if_else","next":"a}","parent":"zL","inputs":{"CONDITION":[2,"apO"],"SUBSTACK":[2,"apP"],"SUBSTACK2":[2,"apQ"]},"fields":{},"shadow":false,"topLevel":false},"apO":{"opcode":"operator_gt","next":null,"parent":"a|","inputs":{"OPERAND1":[3,"bm:",[10,""]],"OPERAND2":[1,[10,"0x7FFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bm:":{"opcode":"data_itemoflist","next":null,"parent":"apO","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"apP":{"opcode":"data_setvariableto","next":null,"parent":"a|","inputs":{"VALUE":[3,"apR",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"apR":{"opcode":"operator_subtract","next":null,"parent":"apP","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"apS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apS":{"opcode":"operator_mod","next":null,"parent":"apR","inputs":{"NUM1":[3,"bm;",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"bm;":{"opcode":"data_itemoflist","next":null,"parent":"apS","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"apQ":{"opcode":"data_setvariableto","next":null,"parent":"a|","inputs":{"VALUE":[3,"apT",[10,""]]},"fields":{"VARIABLE":["core.op.dummy","w)sspO72MkxA;MFo?a7m"]},"shadow":false,"topLevel":false},"apT":{"opcode":"operator_mod","next":null,"parent":"apQ","inputs":{"NUM1":[3,"bm=",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"bm=":{"opcode":"data_itemoflist","next":null,"parent":"apT","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"a}":{"opcode":"control_if_else","next":"a~","parent":"a|","inputs":{"CONDITION":[2,"apU"],"SUBSTACK":[2,"apV"],"SUBSTACK2":[2,"apW"]},"fields":{},"shadow":false,"topLevel":false},"apU":{"opcode":"operator_gt","next":null,"parent":"a}","inputs":{"OPERAND1":[3,"bm?",[10,""]],"OPERAND2":[1,[10,"0x7FFFFFFF"]]},"fields":{},"shadow":false,"topLevel":false},"bm?":{"opcode":"data_itemoflist","next":null,"parent":"apU","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"apV":{"opcode":"data_setvariableto","next":null,"parent":"a}","inputs":{"VALUE":[3,"apX",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"apX":{"opcode":"operator_subtract","next":null,"parent":"apV","inputs":{"NUM1":[1,[4,"0x7FFFFFFF"]],"NUM2":[3,"apY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apY":{"opcode":"operator_mod","next":null,"parent":"apX","inputs":{"NUM1":[3,"bm@",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"bm@":{"opcode":"data_itemoflist","next":null,"parent":"apY","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"apW":{"opcode":"data_setvariableto","next":null,"parent":"a}","inputs":{"VALUE":[3,"apZ",[10,""]]},"fields":{"VARIABLE":["core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"]},"shadow":false,"topLevel":false},"apZ":{"opcode":"operator_mod","next":null,"parent":"apW","inputs":{"NUM1":[3,"bm[",[4,0]],"NUM2":[1,[4,"0x80000000"]]},"fields":{},"shadow":false,"topLevel":false},"bm[":{"opcode":"data_itemoflist","next":null,"parent":"apZ","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"a~":{"opcode":"control_if_else","next":"ap!","parent":"a}","inputs":{"CONDITION":[2,"ap#"],"SUBSTACK":[2,"zM"],"SUBSTACK2":[2,"zN"]},"fields":{},"shadow":false,"topLevel":false},"ap#":{"opcode":"operator_lt","next":null,"parent":"a~","inputs":{"OPERAND1":[3,"bm]",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bm]":{"opcode":"operator_divide","next":null,"parent":"ap#","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zM":{"opcode":"data_replaceitemoflist","next":"ap%","parent":"a~","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"ap(",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ap(":{"opcode":"operator_add","next":null,"parent":"zM","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"ap)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ap)":{"opcode":"operator_mathop","next":null,"parent":"ap(","inputs":{"NUM":[3,"bm^",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bm^":{"opcode":"operator_divide","next":null,"parent":"ap)","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ap%":{"opcode":"data_replaceitemoflist","next":null,"parent":"zM","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"ap*",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ap*":{"opcode":"operator_add","next":null,"parent":"ap%","inputs":{"NUM1":[1,[4,"0xFFFFFFFF"]],"NUM2":[3,"bm_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bm_":{"opcode":"operator_mod","next":null,"parent":"ap*","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zN":{"opcode":"data_replaceitemoflist","next":"ap+","parent":"a~","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"ap,",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ap,":{"opcode":"operator_mathop","next":null,"parent":"zN","inputs":{"NUM":[3,"bm`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bm`":{"opcode":"operator_divide","next":null,"parent":"ap,","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ap+":{"opcode":"data_replaceitemoflist","next":null,"parent":"zN","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"bm{",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"bm{":{"opcode":"operator_mod","next":null,"parent":"ap+","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ap!":{"opcode":"data_replaceitemoflist","next":null,"parent":"a~","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"ap-",[10,""]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ap-":{"opcode":"operator_mathop","next":null,"parent":"ap!","inputs":{"NUM":[3,"ap.",[4,0]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"ap.":{"opcode":"operator_mathop","next":null,"parent":"ap-","inputs":{"NUM":[3,"bm|",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bm|":{"opcode":"operator_divide","next":null,"parent":"ap.","inputs":{"NUM1":[3,[12,"core.op.dummy","w)sspO72MkxA;MFo?a7m"],[4,0]],"NUM2":[3,[12,"core.op.dummy2","{o[cM%;7Saa~!C}]}MdS"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"apN":{"opcode":"control_if_else","next":null,"parent":"jv","inputs":{"CONDITION":[2,"bm}"]},"fields":{},"shadow":false,"topLevel":false},"bm}":{"opcode":"operator_lt","next":null,"parent":"apN","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"jw":{"opcode":"control_if_else","next":null,"parent":"zG","inputs":{"CONDITION":[2,"bm~"],"SUBSTACK":[2,"ap/"],"SUBSTACK2":[2,"ap:"]},"fields":{},"shadow":false,"topLevel":false},"bm~":{"opcode":"operator_lt","next":null,"parent":"jw","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"ap/":{"opcode":"control_if_else","next":null,"parent":"jw","inputs":{"CONDITION":[2,"bna"]},"fields":{},"shadow":false,"topLevel":false},"bna":{"opcode":"operator_lt","next":null,"parent":"ap/","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ap:":{"opcode":"control_if_else","next":null,"parent":"jw","inputs":{"CONDITION":[2,"bnb"]},"fields":{},"shadow":false,"topLevel":false},"bnb":{"opcode":"operator_lt","next":null,"parent":"ap:","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"zE":{"opcode":"control_if_else","next":null,"parent":"zC","inputs":{"CONDITION":[2,"bnc"],"SUBSTACK":[2,"jx"],"SUBSTACK2":[2,"jy"]},"fields":{},"shadow":false,"topLevel":false},"bnc":{"opcode":"operator_lt","next":null,"parent":"zE","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"jx":{"opcode":"control_if_else","next":null,"parent":"zE","inputs":{"CONDITION":[2,"bnd"],"SUBSTACK":[2,"jz"],"SUBSTACK2":[2,"jA"]},"fields":{},"shadow":false,"topLevel":false},"bnd":{"opcode":"operator_lt","next":null,"parent":"jx","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"jz":{"opcode":"control_if_else","next":null,"parent":"jx","inputs":{"CONDITION":[2,"bne"],"SUBSTACK":[2,"ap;"],"SUBSTACK2":[2,"ap="]},"fields":{},"shadow":false,"topLevel":false},"bne":{"opcode":"operator_lt","next":null,"parent":"jz","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"ap;":{"opcode":"control_if_else","next":null,"parent":"jz","inputs":{"CONDITION":[2,"bnf"]},"fields":{},"shadow":false,"topLevel":false},"bnf":{"opcode":"operator_lt","next":null,"parent":"ap;","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},"ap=":{"opcode":"control_if_else","next":null,"parent":"jz","inputs":{"CONDITION":[2,"bng"]},"fields":{},"shadow":false,"topLevel":false},"bng":{"opcode":"operator_lt","next":null,"parent":"ap=","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"jA":{"opcode":"control_if_else","next":null,"parent":"jx","inputs":{"CONDITION":[2,"bnh"],"SUBSTACK":[2,"ap?"],"SUBSTACK2":[2,"ap@"]},"fields":{},"shadow":false,"topLevel":false},"bnh":{"opcode":"operator_lt","next":null,"parent":"jA","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"ap?":{"opcode":"control_if_else","next":null,"parent":"jA","inputs":{"CONDITION":[2,"bni"]},"fields":{},"shadow":false,"topLevel":false},"bni":{"opcode":"operator_lt","next":null,"parent":"ap?","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"21"]]},"fields":{},"shadow":false,"topLevel":false},"ap@":{"opcode":"control_if_else","next":null,"parent":"jA","inputs":{"CONDITION":[2,"bnj"]},"fields":{},"shadow":false,"topLevel":false},"bnj":{"opcode":"operator_lt","next":null,"parent":"ap@","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"jy":{"opcode":"control_if_else","next":null,"parent":"zE","inputs":{"CONDITION":[2,"bnk"],"SUBSTACK":[2,"jB"],"SUBSTACK2":[2,"jC"]},"fields":{},"shadow":false,"topLevel":false},"bnk":{"opcode":"operator_lt","next":null,"parent":"jy","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"28"]]},"fields":{},"shadow":false,"topLevel":false},"jB":{"opcode":"control_if_else","next":null,"parent":"jy","inputs":{"CONDITION":[2,"bnl"],"SUBSTACK":[2,"ap["],"SUBSTACK2":[2,"ap]"]},"fields":{},"shadow":false,"topLevel":false},"bnl":{"opcode":"operator_lt","next":null,"parent":"jB","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"ap[":{"opcode":"control_if_else","next":null,"parent":"jB","inputs":{"CONDITION":[2,"bnm"]},"fields":{},"shadow":false,"topLevel":false},"bnm":{"opcode":"operator_lt","next":null,"parent":"ap[","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"ap]":{"opcode":"control_if_else","next":null,"parent":"jB","inputs":{"CONDITION":[2,"bnn"]},"fields":{},"shadow":false,"topLevel":false},"bnn":{"opcode":"operator_lt","next":null,"parent":"ap]","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"27"]]},"fields":{},"shadow":false,"topLevel":false},"jC":{"opcode":"control_if_else","next":null,"parent":"jy","inputs":{"CONDITION":[2,"bno"],"SUBSTACK":[2,"ap^"],"SUBSTACK2":[2,"ap_"]},"fields":{},"shadow":false,"topLevel":false},"bno":{"opcode":"operator_lt","next":null,"parent":"jC","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"30"]]},"fields":{},"shadow":false,"topLevel":false},"ap^":{"opcode":"control_if_else","next":null,"parent":"jC","inputs":{"CONDITION":[2,"bnp"]},"fields":{},"shadow":false,"topLevel":false},"bnp":{"opcode":"operator_lt","next":null,"parent":"ap^","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"29"]]},"fields":{},"shadow":false,"topLevel":false},"ap_":{"opcode":"control_if_else","next":null,"parent":"jC","inputs":{"CONDITION":[2,"bnq"]},"fields":{},"shadow":false,"topLevel":false},"bnq":{"opcode":"operator_lt","next":null,"parent":"ap_","inputs":{"OPERAND1":[3,[12,"core.dummy_op","4FHz..}JG6uAMZJ12GK:"],[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"bmV":{"opcode":"looks_say","next":null,"parent":"zA","inputs":{"MESSAGE":[1,[10,"[ARM9] Illegal Opcode"]]},"fields":{},"shadow":false,"topLevel":false},"#k":{"opcode":"control_repeat","next":"ap`","parent":"ah^","inputs":{"TIMES":[1,[6,"32768"]],"SUBSTACK":[2,"bnr"]},"fields":{},"shadow":false,"topLevel":false},"bnr":{"opcode":"data_addtolist","next":null,"parent":"#k","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.engine_b.obj","-:a738GrUS[#_#`8,`@%"]},"shadow":false,"topLevel":false},"ap`":{"opcode":"data_deletealloflist","next":"hO","parent":"#k","inputs":{},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"hO":{"opcode":"control_repeat","next":"ap{","parent":"ap`","inputs":{"TIMES":[1,[6,"167936"]],"SUBSTACK":[2,"bns"]},"fields":{},"shadow":false,"topLevel":false,"comment":"aeF"},"bns":{"opcode":"data_addtolist","next":null,"parent":"hO","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["vram.lcdc","y8$TZGjr(vK|SME``+kg"]},"shadow":false,"topLevel":false},"ap{":{"opcode":"data_deletealloflist","next":"zO","parent":"hO","inputs":{},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"zO":{"opcode":"control_repeat","next":"ap|","parent":"ap{","inputs":{"TIMES":[1,[6,"512"]],"SUBSTACK":[2,"bnt"]},"fields":{},"shadow":false,"topLevel":false},"bnt":{"opcode":"data_addtolist","next":null,"parent":"zO","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"ap|":{"opcode":"data_deletealloflist","next":"zP","parent":"zO","inputs":{},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"zP":{"opcode":"control_repeat","next":"ap}","parent":"ap|","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"bnu"]},"fields":{},"shadow":false,"topLevel":false},"bnu":{"opcode":"data_addtolist","next":null,"parent":"zP","inputs":{"ITEM":[1,[10,"false"]]},"fields":{"LIST":["arm9.flags","xlC4k|fns+ciU7=C^#M]"]},"shadow":false,"topLevel":false},"ap}":{"opcode":"data_deletealloflist","next":"zQ","parent":"zP","inputs":{},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"zQ":{"opcode":"control_repeat","next":"ap~","parent":"ap}","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"bnv"]},"fields":{},"shadow":false,"topLevel":false},"bnv":{"opcode":"data_addtolist","next":null,"parent":"zQ","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["arm9.registers","|U6aO@cFA_!t`m^aV,]%"]},"shadow":false,"topLevel":false},"ap~":{"opcode":"data_deletealloflist","next":"aqa","parent":"zQ","inputs":{},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"aqa":{"opcode":"control_repeat","next":null,"parent":"ap~","inputs":{"TIMES":[1,[6,"98304"]],"SUBSTACK":[2,"bnw"]},"fields":{},"shadow":false,"topLevel":false},"bnw":{"opcode":"data_addtolist","next":null,"parent":"aqa","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["display.screen","{0m^r8XB06mP:WDHBc!."]},"shadow":false,"topLevel":false},"yF":{"opcode":"data_setvariableto","next":"zR","parent":"yE","inputs":{"VALUE":[3,"bnx",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"bnx":{"opcode":"operator_mod","next":null,"parent":"yF","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zR":{"opcode":"procedures_call","next":"aqb","parent":"yF","inputs":{"F:1=0LFS=ykmsAVLMbo@":[3,"aqc",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm7.list_read_memory %s","argumentids":"[\"F:1=0LFS=ykmsAVLMbo@\"]","warp":"true"}},"aqc":{"opcode":"operator_add","next":null,"parent":"zR","inputs":{"NUM1":[3,"bny",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bny":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqc","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aqb":{"opcode":"data_setvariableto","next":null,"parent":"zR","inputs":{"VALUE":[3,"zS",[10,""]]},"fields":{"VARIABLE":["arm7.read_return","e!SdGZYhm*{w[/T/-2!="]},"shadow":false,"topLevel":false},"zS":{"opcode":"operator_add","next":null,"parent":"aqb","inputs":{"NUM1":[3,"aqd",[4,0]],"NUM2":[3,"aqe",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqd":{"opcode":"operator_multiply","next":null,"parent":"zS","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"bnz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnz":{"opcode":"operator_divide","next":null,"parent":"aqd","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqe":{"opcode":"operator_mathop","next":null,"parent":"zS","inputs":{"NUM":[3,"bnA",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bnA":{"opcode":"operator_divide","next":null,"parent":"aqe","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"yO":{"opcode":"data_replaceitemoflist","next":null,"parent":"yN","inputs":{"INDEX":[3,"aqf",[7,0]],"ITEM":[3,"bnB",[10,""]]},"fields":{"LIST":["oam","*6ctRg,UST)3?h^IgrxZ"]},"shadow":false,"topLevel":false},"aqf":{"opcode":"operator_add","next":null,"parent":"yO","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aqg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqg":{"opcode":"operator_mathop","next":null,"parent":"aqf","inputs":{"NUM":[3,"aqh",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aqh":{"opcode":"operator_divide","next":null,"parent":"aqg","inputs":{"NUM1":[3,"aqi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aqi":{"opcode":"operator_subtract","next":null,"parent":"aqh","inputs":{"NUM1":[3,"bnC",[4,0]],"NUM2":[1,[4,"0x07000000"]]},"fields":{},"shadow":false,"topLevel":false},"bnC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqi","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bnB":{"opcode":"argument_reporter_string_number","next":null,"parent":"yO","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"#w":{"opcode":"data_replaceitemoflist","next":null,"parent":"iZ","inputs":{"INDEX":[3,"aqj",[7,0]],"ITEM":[3,"bnD",[10,""]]},"fields":{"LIST":["arm9.standard_palettes","TC(NK4(a9G2=hyz,3gi/"]},"shadow":false,"topLevel":false},"aqj":{"opcode":"operator_add","next":null,"parent":"#w","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aqk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqk":{"opcode":"operator_mathop","next":null,"parent":"aqj","inputs":{"NUM":[3,"aql",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aql":{"opcode":"operator_divide","next":null,"parent":"aqk","inputs":{"NUM1":[3,"aqm",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aqm":{"opcode":"operator_subtract","next":null,"parent":"aql","inputs":{"NUM1":[3,"bnE",[4,0]],"NUM2":[1,[4,"0x05000000"]]},"fields":{},"shadow":false,"topLevel":false},"bnE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqm","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bnD":{"opcode":"argument_reporter_string_number","next":null,"parent":"#w","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"yZ":{"opcode":"control_if","next":null,"parent":"yY","inputs":{"CONDITION":[2,"aqn"],"SUBSTACK":[2,"zT"]},"fields":{},"shadow":false,"topLevel":false},"aqn":{"opcode":"operator_gt","next":null,"parent":"yZ","inputs":{"OPERAND1":[3,"aqo",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aqo":{"opcode":"operator_mod","next":null,"parent":"aqn","inputs":{"NUM1":[3,"bnF",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqo","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"zT":{"opcode":"data_setvariableto","next":"zU","parent":"yZ","inputs":{"VALUE":[3,"aqp",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"aqp":{"opcode":"operator_round","next":null,"parent":"zT","inputs":{"NUM":[3,"aqq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqq":{"opcode":"operator_mathop","next":null,"parent":"aqp","inputs":{"NUM":[3,"aqr",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"aqr":{"opcode":"operator_multiply","next":null,"parent":"aqq","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"aqs",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqs":{"opcode":"operator_subtract","next":null,"parent":"aqr","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"aqt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqt":{"opcode":"operator_mod","next":null,"parent":"aqs","inputs":{"NUM1":[3,"bnG",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"zU":{"opcode":"data_setvariableto","next":"zV","parent":"zT","inputs":{"VALUE":[3,"bnH",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"bnH":{"opcode":"operator_mod","next":null,"parent":"zU","inputs":{"NUM1":[3,[12,"arm7.read_return","e!SdGZYhm*{w[/T/-2!="],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"zV":{"opcode":"procedures_call","next":"aqu","parent":"zU","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"aqv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"aqv":{"opcode":"operator_add","next":null,"parent":"zV","inputs":{"NUM1":[3,"bnI",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"aqu":{"opcode":"data_setvariableto","next":null,"parent":"zV","inputs":{"VALUE":[3,"zW",[10,""]]},"fields":{"VARIABLE":["arm9.read_return","a0S1}$P51k#mx)X@cEGN"]},"shadow":false,"topLevel":false},"zW":{"opcode":"operator_add","next":null,"parent":"aqu","inputs":{"NUM1":[3,"aqw",[4,0]],"NUM2":[3,"aqx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqw":{"opcode":"operator_multiply","next":null,"parent":"zW","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"bnJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnJ":{"opcode":"operator_divide","next":null,"parent":"aqw","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqx":{"opcode":"operator_mathop","next":null,"parent":"zW","inputs":{"NUM":[3,"bnK",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bnK":{"opcode":"operator_divide","next":null,"parent":"aqx","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"y%":{"opcode":"data_setvariableto","next":"zX","parent":"i+","inputs":{"VALUE":[3,"aqy",[10,""]]},"fields":{"VARIABLE":["core.dummy","n(})35{FI-ZZ^Fg.ZPEN"]},"shadow":false,"topLevel":false},"aqy":{"opcode":"operator_round","next":null,"parent":"y%","inputs":{"NUM":[3,"aqz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqz":{"opcode":"operator_mathop","next":null,"parent":"aqy","inputs":{"NUM":[3,"aqA",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"aqA":{"opcode":"operator_multiply","next":null,"parent":"aqz","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"aqB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqB":{"opcode":"operator_mod","next":null,"parent":"aqA","inputs":{"NUM1":[3,"bnL",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"zX":{"opcode":"data_setvariableto","next":"zY","parent":"y%","inputs":{"VALUE":[3,"aqC",[10,""]]},"fields":{"VARIABLE":["core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"]},"shadow":false,"topLevel":false},"aqC":{"opcode":"operator_round","next":null,"parent":"zX","inputs":{"NUM":[3,"aqD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqD":{"opcode":"operator_mathop","next":null,"parent":"aqC","inputs":{"NUM":[3,"aqE",[4,0]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"aqE":{"opcode":"operator_multiply","next":null,"parent":"aqD","inputs":{"NUM1":[1,[4,"5.545177444479562"]],"NUM2":[3,"aqF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqF":{"opcode":"operator_subtract","next":null,"parent":"aqE","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,"aqG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqG":{"opcode":"operator_mod","next":null,"parent":"aqF","inputs":{"NUM1":[3,"aqH",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aqH":{"opcode":"operator_subtract","next":null,"parent":"aqG","inputs":{"NUM1":[3,"bnM",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bnM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"zY":{"opcode":"procedures_call","next":"jD","parent":"zX","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"bnN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"bnN":{"opcode":"argument_reporter_string_number","next":null,"parent":"zY","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"jD":{"opcode":"procedures_call","next":"zZ","parent":"zY","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"bnO",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"z!",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"bnO":{"opcode":"argument_reporter_string_number","next":null,"parent":"jD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"z!":{"opcode":"operator_add","next":null,"parent":"jD","inputs":{"NUM1":[3,"aqI",[4,0]],"NUM2":[3,"aqJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqI":{"opcode":"operator_multiply","next":null,"parent":"z!","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"aqK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqK":{"opcode":"operator_mathop","next":null,"parent":"aqI","inputs":{"NUM":[3,"bnP",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bnP":{"opcode":"operator_divide","next":null,"parent":"aqK","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqJ":{"opcode":"operator_mathop","next":null,"parent":"z!","inputs":{"NUM":[3,"aqL",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aqL":{"opcode":"operator_divide","next":null,"parent":"aqJ","inputs":{"NUM1":[3,"bnQ",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqL","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"zZ":{"opcode":"procedures_call","next":"z#","parent":"jD","inputs":{"b@)J0tZH?{E?dB[c9XHi":[3,"aqM",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_read_memory %s","argumentids":"[\"b@)J0tZH?{E?dB[c9XHi\"]","warp":"true"}},"aqM":{"opcode":"operator_add","next":null,"parent":"zZ","inputs":{"NUM1":[3,"bnR",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqM","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"z#":{"opcode":"procedures_call","next":null,"parent":"zZ","inputs":{"LjaZkbYQB/{-|Ep1fxRD":[3,"aqN",[10,""]],"717nQiAIK*1%Lw6f%Hc:":[3,"z%",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arm9.list_write_memory %s %s","argumentids":"[\"LjaZkbYQB/{-|Ep1fxRD\",\"717nQiAIK*1%Lw6f%Hc:\"]","warp":"true"}},"aqN":{"opcode":"operator_add","next":null,"parent":"z#","inputs":{"NUM1":[3,"bnS",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bnS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqN","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"z%":{"opcode":"operator_add","next":null,"parent":"z#","inputs":{"NUM1":[3,"bnT",[4,0]],"NUM2":[3,"aqO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnT":{"opcode":"operator_mod","next":null,"parent":"z%","inputs":{"NUM1":[3,[12,"arm9.read_return","a0S1}$P51k#mx)X@cEGN"],[4,0]],"NUM2":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqO":{"opcode":"operator_multiply","next":null,"parent":"z%","inputs":{"NUM1":[3,[12,"core.dummy","n(})35{FI-ZZ^Fg.ZPEN"],[4,0]],"NUM2":[3,"aqP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aqP":{"opcode":"operator_mod","next":null,"parent":"aqO","inputs":{"NUM1":[3,"bnU",[4,0]],"NUM2":[3,[12,"core.dummy2","(a2?CJ{Tq+%sg[c/RBDa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aqP","inputs":{},"fields":{"VALUE":["value",null]},"shadow":false,"topLevel":false},"ae.":{"opcode":"event_broadcastandwait","next":"ae-","parent":"bf]","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false}},"comments":{"aeE":{"blockId":"hN","x":1175.148148148148,"y":1568.2962962962963,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"bY":{"blockId":"hL","x":2209.0666666666666,"y":350.2,"width":179.25927734375,"height":154.0740966796875,"minimized":false,"text":"GBA Slot RAM/ROM. That's not being emulated. I've already got an NDS to emulate ;-;"},"b.f":{"blockId":"b.g","x":1147,"y":1472,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"bZ":{"blockId":"aC","x":2213,"y":1706.5555555555554,"width":197.9423828125,"height":130.04116821289062,"minimized":false,"text":"Main memory of the ARM7. It's 4MB large so I split it up into 6 lists."},"aeC":{"blockId":"hK","x":-229.55555555555554,"y":443.2222222222223,"width":200,"height":200,"minimized":false,"text":"This is so the emulator isn't horribly slow (like seriously this could help out quite a bit)"},"aeG":{"blockId":"xP","x":10667.333333333334,"y":3034,"width":200,"height":200,"minimized":false,"text":"Neatly enough, this condition doesn't exist in the older versions of ARM!"},"b.h":{"blockId":"b.i","x":8026.0100760876685,"y":381.5525895408348,"width":200,"height":200,"minimized":false,"text":"Just checking up on some values to see if it's a data processing instruction or something else."},"b.j":{"blockId":"h]","x":7808.56029685974,"y":464.9599969482422,"width":189.629638671875,"height":122.96298217773438,"minimized":false,"text":"Pretty specific instruction if you ask me .-."},"b.k":{"blockId":"b.l","x":7801,"y":933,"width":161,"height":87,"minimized":false,"text":"Illegal opcode :p"},"b.m":{"blockId":"ai~","x":7836.080896719473,"y":1026.589626577872,"width":118.5184326171875,"height":66.6666259765625,"minimized":false,"text":""},"aeI":{"blockId":"hP","x":12673.962962962964,"y":406.74074074074076,"width":200,"height":200,"minimized":false,"text":"I'm sorry I just really can't do this without little endian ;-;"},"b.n":{"blockId":"b.o","x":1175,"y":1568,"width":200,"height":200,"minimized":false,"text":"I'm not implementing WIFI (yet?) anyways. This list isn't actually used anywhere else to my knowledge :/"},"aeF":{"blockId":"hO","x":1059,"y":4016,"width":182.71612548828125,"height":153.08642578125,"minimized":false,"text":"Idk what's up with LCDC allocated VRAM but it can hold 656 KB of memory for some reason"},"aeD":{"blockId":"hM","x":1014.395061728395,"y":138.41975308641975,"width":233.3333740234375,"height":182.71603393554688,"minimized":false,"text":"I need to store a lot of memory, though luckily the DS is actually just around twice as powerful as the GBA (Gameboy Advance). Note that the 3DS is actually a lot more powerful than this."},"bV":{"blockId":"hQ","x":5974.08,"y":209.9280000000001,"width":216.0750732421875,"height":229.47103881835938,"minimized":false,"text":"Not implementing GBA slot ROM/RAM. I doubt I'll need it in the future for the emulator anyways :p\n\nActually this contains the ARM9 BIOS as well but that doesn't matter too much right?"},"bX":{"blockId":"hR","x":5733.703703703705,"y":3417.685185185185,"width":200,"height":200,"minimized":false,"text":"Instruction/Data TCM (cache). I don't really feel like implementing it because generally it doesn't make anything af"},"aeH":{"blockId":"aD","x":9529.586419753086,"y":801.4305555555555,"width":200,"height":200,"minimized":false,"text":"Data processing instructions are stupid because there's actually 16 of them."},"b.p":{"blockId":null,"x":2448,"y":1643,"width":133,"height":177,"minimized":false,"text":"0x02000000,\n0x02030D40,\n0x020927C0,\n0x020C3500,\n0x020F4240,\n0x02124F80"},"b.q":{"blockId":"b.r","x":-669.5925925925926,"y":379.0740740740741,"width":200,"height":200,"minimized":false,"text":"Takes the strain off of loading that caused crashes previously"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":5,"visible":true,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"BytePusher","variables":{"-7dlmlcLCpV7tl8DS7P}":["i",54696],"C0qco%J%rH+?w-9+KXyy":["j",65536],";idbd$swwqwNu;DQ0=vB":["a",256],".:y58a4w1!iQvV%zNhGC":["bytepusher",256],"=MQ3i72Bb4vUb@o!rkK.":["k","0"],"?fG`_xt7u6j*Uem:ZtKX":["p","0"],"ZA(HcErI5O~0g3i@+U-^":["n",10],"Zm~RHQxf]yUfdH)gtna.":["chip8.pc",0],"1hb5az8M),6CpIBwl+T#":["chip8.dummy",0],"V!i}`El5QU$I{`OcqxU*":["chip8.dummy2",0],"eF-[:^d06FtrxjRyaneE":["chip8.return",0],"r9s^NIq`=C8N*q$N:QjC":["chip8.I",0],"{a[B7#cNJicY#22S6G[g":["chip8.rand",0],"AYN*TU~SGNlQh:~mri07":["chip8.sound_timer",0],"4?BO{y/NB$*D3Srd3Fd1":["chip8.delay_timer",0],"uAm4?3ed1Q#FT#;rW,cx":["c8.Load/Save_Quirk",0],"gv+85XB+B[w?)D8r_?)C":["c8.Shift_quirk",0],"g/7`YLSnP29ZzyQeb?9I":["CPF",0],",2huTPQKyTdw0uS0Mmql":["chip8.screenheight",0],"/l6Z{skQaA(kN25K`~uO":["chip8.screenwidth",0],"D#tUdeeQG3WU9xi$i5/|":["c8scrnsize",0],"`/97r]y4N7pab+0j,(B.":["chip8.dummy3",0],"9:A|TG(!dzYn0uv=D1h3":["chip8.dummy4",0],"YiRV7D4$v56yf}?X(y.j":["VIP jumps",0],"r(t;~7h#1V?m.J:,GVQv":["SF2091! fix",0],"T2#e%~#VNwXFGzGd*kbV":["chip8.drawplane",0],"kvRL~`O/o863)hyq|o,_":["chip8.drawflag",0],"N4R6^~5?6]M$8p]M}$(Z":["chip8.HPSFlag",0],"j^@d4kzPlrC*r`=~=ag9":["chip8.drawmode",0],"TpKJz2LxQD8g%5l=GF^w":["chip8.pitch",0],"h54u;;|rg#N(]Z,#OrZM":["chip8.audio_buffer",0],"g}B8%m81]u[qI`b#U@N$":["chip8.dummy5",0],"xX^EAt/9xIPmtV^FzOj1":["chip8.audio toggle",0],";V{Hj,Otjvdvg.T^fBD-":["chip8.drawvariety",0],"ln{MS#PL`8.}h:(_}UB]":["_id",0],"(ecE`kfJLzw4p#})J_i9":["_pitch",0],"khZ[BR^hh5g2wVjstNx~":["chip8.spritewidth",0],"q0Aieeo)Q0k-81exFUOK":["chip8m.collisioncolor",0],"CMsw9:_o?,7RSBGR-L2C":["chip8.fx0aflag",0],"!+=!-h89#`7kW*J*OZL,":["scanX",0],"~~o^1W~fbUek!X-D4822":["scanY",0],"Dn#8]rz*orPK,X0=;*$.":["tile_mode",0],"e7z.M3UfDT+/9?B)I?%$":["bg_mode",0],"z2kH2+fy7b68(-[dirGi":["read.single.return",0],"Q[Ey2V46|u}~:Sb,2M=F":["calc.return",0],"uvc)zI]ik{H#R0UEcjSa":["storage.byte",0],"KV8P%[L0$@Pl6*2;0j}2":["read.return",0],"U1zxXM]/rMag|m|xckW9":["flags.met",0],"+tY~LDVpE^7qC}WK4i5t":["op.pos",0],"T)7u5x4}GaF~%4i+:SF.":["op.opcode",0],"2?|f:Ak+7w#=fQL;gbJ7":["calc.char",0],"|Mfr;J{0UIxr(gCAS4Ce":["calc.temp",0],"%Y7(7pD1MLs|E*:NH%f3":["calc.temp2",0],"qKYHmXRs.xh5udiKBD_y":["op.temp",0],"|L9Pi}/65.4`qdjy|%j0":["program.done",0],"V]V#qdfB6)r-.+dNb?dS":["arm7.pc",0],"+z$2A?,;D8BT}z/;(0B|":["arm9.pc",0],"D@T%uY;^Ck}J:bfqk*PR":["core.byte_return",0],"e!SdGZYhm*{w[/T/-2!=":["arm7.read_return",0],"x|g/RBvah4i`.Kz@pfYu":["core.condition_test",0],"F~sbV)[gGR(WmIZmL{=!":["core.instruction_format",0],"Sp7jtJ,4KrK(][NW_Syc":["core.little_endian",0],"4FHz..}JG6uAMZJ12GK:":["core.dummy_op",0],"hIihV+nU*,RJGilP0f1$":["core.read_return",0],"n(})35{FI-ZZ^Fg.ZPEN":["core.dummy",0],"(a2?CJ{Tq+%sg[c/RBDa":["core.dummy2",0],"a0S1}$P51k#mx)X@cEGN":["arm9.read_return",0],"v;eH`7|2r1}R]J+L$.n+":["core.shift_return",0],"zY(u-?O,+t%[td.I,e.a":["core.rotate_return",0],"{o[cM%;7Saa~!C}]}MdS":["core.op.dummy2",0],"w)sspO72MkxA;MFo?a7m":["core.op.dummy",0],"M-Sd[r]S2Y9UXO}BNFJ(":["fftlast",0],";E?SYI/y0cz0le)X4#4l":["_R",0],"io(,(TfDAEBRM2iX1c}h":["loop",0],"!@vTj4c1The8*{(^_*O.":["_S",0],"T`~F4~2,O!/[8pu)xO1,":["T1",0],"pI+E2RUGrnC0}Oxj[fQD":["g",0],"*r-MV7B^PL30%%8PQz%`":["i",0],"Yyq0n/?:tZ-1R{!(9E,I":[".IME",0],"R93(y;ezBDFNxz;R$.9{":["-LY",0],"]j0JoR^IRmZ%Dqa1U-3t":["-wx",0],"[P*KHQ#6Rk9]Ox;1v%3A":["-LYC",0],"FL2h%|upY.J#$}=ul8?a":[".spritesize",0],"0pKRpVmta7bZeii6{wYz":["-scx",0],"j%_uw7vcE;vljqGCEt;-":["-LCDC",0],".yqIokTgw8-|]3$}O%wt":["-STATUS",0],"hX1J)AVg^t88ELGv:hb%":["T2",0],"RJLtSXRx71$[%`nwOBtM":["@PIX",0],"Xa^xc{EoyO7r}@UX9*==":["h",0],"Tj+w!/(PV_!`zhKO@qb%":["@PAL",0],"Z]?-Im_0pF^!OOi!AX81":["-WLY",0],"dyPQEg`wlO+1vws5/HRV":["-windowWasDrawn?",0],":D[mPTcd3;]Yf==]Wvx`":["_X",0],"DmmVyMpO/ebSRU2g=Wc:":["T3",0],"7D2+hT#2qu+P*=`t{Hlz":["_current bank",0],"v.3%0+x.An^dc%ycqc,h":["*OAMDMAS",0],"w]/Z*A/dznMc;~79B@Ap":["*OAMDMA#",0],"WhM=KlgvY@V6x|(`!06Q":["T5",0],"xwd)j4SY4qa||w7J0yBP":["T6",0],"FJEs/3`VRSW|=4S_cI}F":["_frames",0],"%Z}6^@{`zI6YV~G_?)Jj":["_frameskip",0],"O*.$-nBOGKoJ7i+^Qwg2":["time1",0],"ZnIX}4]R}DE8HyQ,rg57":[".instrID",0],"ujAlu]pJm2~uaC1iJUQ]":[".instr",0],"|Cl^=?C:,/{Epnf![x2:":["_T",0],"d{oa^`AGe`;eIR$H[7uf":["T7",0],"4`Ni_=/i=RIJ0%Y?]=Fn":["_RE",0],"VR1C#;_dshr98xN-P9L|":["T8",0],"+rwgUY7_t16|rsI3)wfC":["_lineCyc",0],"o~PUUkHtM;d|0cL72}R,":["_STATcond1",0],"{}%R*l;pt#ssSJM}}m?-":["_STATcond2",0],"%H5F/uE0-oBcg#Ueg1HX":["-LCDS",0],",P:HlIkn5_@.Bjl6n4Lx":["Game Boy: _PC",0],"VaPoqP]`j)*~CaHtP4A4":["Game Boy: _SP",0],"LRuELDc9kOO]l7B*P%0g":["Game Boy: _HALT",0],"$bOgKA@,Cg7J(#lntKuz":["_YSHIFT",0],"7ge_EoziNOcpkF[hyyvb":["_XSHIFT",0],"951ss`PQmd4:$N48_hl;":[".soundEnable",0],"jQVk|kz76jS8DHck5*?e":["_rom size",0],"i{fSr|$u)-tpEX+a*y{]":["_SIZE",0],"za5df3dC6Lq85;3lun8/":[".GBC?",0],"l5]S3A7BUTfQhoeX1QMo":["_Z",0],"dOLNCNdWP`.36j7uacOp":[".windowflag",0],"*$a?01}j0xiTOD04my^,":["T10",0],"s18i.M`CVzl`g@kEVPGN":[".DIVCYCLES",0],"TyNKP)!4YD91CXr;Ofr%":[".TAC1",0],".C8gJ;d]=.XH;$5E8oB2":[".TAC2",0],"dK3?LB9A%FG6.YYddD?(":[".TACFLAG",0],"AX4IlWqKU({GdZ7:.?*!":[".spriteattributes",0],"ecaYd9sPeo:%`_LsAsJD":["T9",0],"W/n=I{ySVA3XJEP{k?=[":[",joypad",0],"(BHg(FiW6n7},,p-%q%%":["T4",0],"wJ{KQ$v8^;+Hlh@.7tJv":["_MBCnumber",0],"Crf*ltOpxTp[zPgDlY{T":[",c",0],"k_tzmxwQ^5),Egn!0L:3":["FPS",0],"!#:owuhU@|TD~fX?SQd0":["-SCXMOD8",0],"F-[0c$U5I;6bxPbW?^5C":[".vbank",0],"|:KA#88+TR_ky=lPP5oN":[".spriteCpal",0],"a^B*+PC_g3)^{A!L}XWv":[".tileB",0],";.CEwXh;.U;z^iL6kY}4":[".Mpri",0],";gzI_,?`HaxU*b,C$z,M":[".Spri",0],"QwG!GB*-SvenHq{bU0[6":["-LYmask",0],"b#%5IA`afs~P-ErWHe%`":["render",0],";{(|I#5z)oz:*|%#$atp":["_IEindex",0],"qOvY4@JXH3Z=q*#gP*-=":["_IFindex",0],"$:(/kN7.}P:lAp]`:oC)":[".timenable",0],"MzjtR%U}q{vlM~,lxGYF":[".SPEED",0],"q3];|lI;X@QP63GyUdgC":[".DMAstart",0],"gb)yqT91dr(YhxH_!$oK":[".DMAend",0],")y?/_!@Q{wFz2FZBZ)YR":[".DMAlength",0],"kk18ewt7HpVOvYWizQ?E":[".DMAenable",0],"0NzoLpmy^eZ1=JjkzYGg":[".DMAtype",0],"qXl$(oh,s-`,(d=7TISu":[".DIV2",0],")$_1A%[u4h%@g;$35$Xj":["time2",0],"j1eKKgYTu[qSVFb2,O.#":[".HDMAenable",0],"QGqvJ2ss)hMY|{h/*HlZ":["_INTRdest",0],"[THklOWON,rz#pznmehC":["_A",0],"jh2$j7v[s~2Jkx.#Z1+z":["_B",0],"tGe/Wd:o59i4QQ9}C^)o":["T11",0],"hpXj8g4|ZHczy1?w+*u`":["T4.1",0],"P6r1PrSf,aWdOUXT8nij":["T4.2",0],"_CW|-^_^`N}DL:?%3bn.":["-keyRandom",0],"R-FPpZHK,2MV|H?}Z/73":["target frames",0],"AfAG@-SCQv_v!Pd(!ksr":["_PIXEL#",0],"K{h~x6)DC:d*~Zu`CfAX":["k",0],"k:|mZZ-e3/}Z,@tSy,sK":["l",0],"8#GN`Bn0{e?U=[@Rvm;~":["m",0],"RBD.T_tlTqDvriQZH:[N":["x",0],"|ke}j~q$D+WWLo05@rUl":["z",0],"xM[|Vl:5_:MuhN:9WJ%-":["v",0]},"lists":{"N!E=h~yfwhqsk0jnH|cu":["bytepusher",[]],"[t[1fR}eq!?#HcGC2#-V":["c",["aewq321x","vfr4czds"]],"`^!VhjO#Rx$;MO?qNS$1":["p",[51,102,153,204,255,13056,13107,13158,13209,13260,13311,26112,26163,26214,26265,26316,26367,39168,39219,39270,39321,39372,39423,52224,52275,52326,52377,52428,52479,65280,65331,65382,65433,65484,65535,3342336,3342387,3342438,3342489,3342540,3342591,3355392,3355443,3355494,3355545,3355596,3355647,3368448,3368499,3368550,3368601,3368652,3368703,3381504,3381555,3381606,3381657,3381708,3381759,3394560,3394611,3394662,3394713,3394764,3394815,3407616,3407667,3407718,3407769,3407820,3407871,6684672,6684723,6684774,6684825,6684876,6684927,6697728,6697779,6697830,6697881,6697932,6697983,6710784,6710835,6710886,6710937,6710988,6711039,6723840,6723891,6723942,6723993,6724044,6724095,6736896,6736947,6736998,6737049,6737100,6737151,6749952,6750003,6750054,6750105,6750156,6750207,10027008,10027059,10027110,10027161,10027212,10027263,10040064,10040115,10040166,10040217,10040268,10040319,10053120,10053171,10053222,10053273,10053324,10053375,10066176,10066227,10066278,10066329,10066380,10066431,10079232,10079283,10079334,10079385,10079436,10079487,10092288,10092339,10092390,10092441,10092492,10092543,13369344,13369395,13369446,13369497,13369548,13369599,13382400,13382451,13382502,13382553,13382604,13382655,13395456,13395507,13395558,13395609,13395660,13395711,13408512,13408563,13408614,13408665,13408716,13408767,13421568,13421619,13421670,13421721,13421772,13421823,13434624,13434675,13434726,13434777,13434828,13434879,16711680,16711731,16711782,16711833,16711884,16711935,16724736,16724787,16724838,16724889,16724940,16724991,16737792,16737843,16737894,16737945,16737996,16738047,16750848,16750899,16750950,16751001,16751052,16751103,16763904,16763955,16764006,16764057,16764108,16764159,16776960,16777011,16777062,16777113,16777164,16777215,0,51,102,153,204,255,13056,13107,13158,13209,13260,13311,26112,26163,26214,26265,26316,26367,39168,39219,39270,39321,39372,39423,52224,52275,52326,52377,52428,52479,65280,65331,65382,65433,65484,65535,3342336,3342387,3342438,3342489,3342540]],"zkQL|M442N4wRsc)+07d":["t",[]],"}Q8yT0K~Xs{VX;CHfNu/":["chip8.memory",[]],"f]{gYPSu$N}zEo@G9Nl)":["chip8.registers",[]],"ht3J,j/C0jl,uH8K:dNy":["chip8.screen",[]],":zUJFFvJ!Vekh7t/nbIN":["chip8.keyboard",[]],"lUL@WhXBzID`Z-mCVTrh":["chip8.stack",[]],"%F0~QLFTP1H{Enp:A]($":["schip8.font",[]],"S9{m^Yi?3a7,6K!sHQ@t":["schip8.RPL",[]],"Ozk0Rvi.XHG+tKh4frbx":["chip8.screen2",[]],"ii:l6Cz,EQ(zK,4|YH9R":["Boot-128",[]],"jZ@NISqMYq6TT+,?s4K8":["arm7.registers",[]],"|U6aO@cFA_!t`m^aV,]%":["arm9.registers",[]],"xlC4k|fns+ciU7=C^#M]":["arm9.flags",[]],"I`5okbJQFT`oYf*Pv4E]":["Flag bits",[]],"#,HpQY,,NMZpTP#Z/$7a":["byteStack",[]],"xQ!KH7TY-vixcN;SomF7":["bin",[]],"M;Zg}Clnv_jRTTiVfz1x":["*OAMidx",[]],"M?#xf@GQJtIb?q(T@;L:":[".AND",[]],"{70mvh/rhp8h=gpj{Wj:":[".OR",[]],"x#q!AVJG16^9E}HtX.Z!":[".XOR",[]],"`#n=K.W21Z+b9,1$DjCs":["$A",[]],"Ztb;SoN#-D4mbjS9_?T|":["$B",[]],"*2nK}A?8F`?ufZ@yn-PQ":["$C",[]],"`b}E$,6@R122(5y)._3=":["2^x",[]],"rt`J2N?0$d]K9j?Ynj$f":["*palette",[]],"Gxeo^a7r|uEHj#R[%7jG":["*OAMx",[]],"lN|dA_r%+dH9fhnepMn$":["*OAMy",[]],"[~q6:p[Kks?m0Rapk7eD":["_REGISTERS",[]],"`Nny$[X*@z~ce_9oE{M!":[".addr2ptr",[]],".7fdK[:S64[eA_H7p=d0":[".pointerStart",[]],"pi,4q[J]J/T2U|O`6bdM":[".ptr",[]],"iA7(P88z*!*iQtK8@cy1":[".ptr index",[]],"WYIpZLO@uiw_pjT%Sf.j":["_cartridge stuff",[]],"`KBp;:YVz$LYqY:-@q%C":["_instrParam",[]],"OsR*`-9=L4[RoZqDaF|B":["_instrIDs",[]],"u16r)vc%h8n1*rIQ+.aj":["_RAM",[]],"?d7S^.xq^5}3hEAhxJ.u":["_ROM",[]],"A}SPn)@|;K4@45j;UT4o":["_pix",[]],"/|!9RA(;bcQML{0,LacV":["_DMGPALETTE",[]],"80s*CPv1XN%@|_(/A,i$":["_PALETTE RAM",[]],"co=Q#-C]T_}X,w7fOhbc":["_GBCPALETTELOOKUP",[]],"QHPemIrZSCXS)P]=c(?5":["_soundregs",[]],"Sg#%}-2*EKW|ZXDbl4V7":[".vals",[]],"g1X0d%+|q`l:YKb?Jj_I":["dat",[]]},"broadcasts":{},"blocks":{"bnV":{"opcode":"event_whenbroadcastreceived","next":"aqQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["BytePusher",".+sr=pJUQmu{0)%LLjC}"]},"shadow":false,"topLevel":true,"x":339,"y":569},"aqR":{"opcode":"data_deletealloflist","next":"aqT","parent":"aqS","inputs":{},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"aqT":{"opcode":"data_setvariableto","next":"jE","parent":"aqR","inputs":{"VALUE":[1,[10,"33554432"]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"jE":{"opcode":"control_repeat","next":"aqU","parent":"aqT","inputs":{"TIMES":[3,"aqV",[6,0]],"SUBSTACK":[2,"bnW"]},"fields":{},"shadow":false,"topLevel":false},"aqV":{"opcode":"operator_subtract","next":null,"parent":"jE","inputs":{"NUM1":[1,[4,"16777216"]],"NUM2":[3,"bnX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bnX":{"opcode":"data_lengthoflist","next":null,"parent":"aqV","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"bnW":{"opcode":"data_addtolist","next":null,"parent":"jE","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aqU":{"opcode":"control_repeat","next":null,"parent":"jE","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"aqW"]},"fields":{},"shadow":false,"topLevel":false},"aqW":{"opcode":"data_addtolist","next":"bnY","parent":"aqU","inputs":{"ITEM":[1,[10,""]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"bnY":{"opcode":"data_changevariableby","next":null,"parent":"aqW","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"aqX":{"opcode":"control_forever","next":null,"parent":"aqY","inputs":{"SUBSTACK":[2,"aqZ"]},"fields":{},"shadow":false,"topLevel":false},"z(":{"opcode":"control_for_each","next":"z)","parent":"aq!","inputs":{"VALUE":[1,[6,"2"]],"SUBSTACK":[2,"aq#"]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"aq#":{"opcode":"data_setvariableto","next":"z*","parent":"z(","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"z*":{"opcode":"control_for_each","next":"z+","parent":"aq#","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"aq%"]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"aq%":{"opcode":"data_setvariableto","next":null,"parent":"z*","inputs":{"VALUE":[3,"aq(",[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"aq(":{"opcode":"operator_join","next":null,"parent":"aq%","inputs":{"STRING1":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]],"STRING2":[3,"aq)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"z,":{"opcode":"sensing_keypressed","next":null,"parent":"aq)","inputs":{"KEY_OPTION":[3,"aq*","bnZ"]},"fields":{},"shadow":false,"topLevel":false},"aq*":{"opcode":"operator_letter_of","next":null,"parent":"z,","inputs":{"LETTER":[3,[12,"i","-7dlmlcLCpV7tl8DS7P}"],[6,0]],"STRING":[3,"bn!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bn!":{"opcode":"data_itemoflist","next":null,"parent":"aq*","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]]},"fields":{"LIST":["c","[t[1fR}eq!?#HcGC2#-V"]},"shadow":false,"topLevel":false},"bnZ":{"opcode":"sensing_keyoptions","next":null,"parent":"z,","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"z+":{"opcode":"data_replaceitemoflist","next":null,"parent":"z*","inputs":{"INDEX":[3,"bn#",[7,0]],"ITEM":[3,"bn%",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"bn#":{"opcode":"operator_subtract","next":null,"parent":"z+","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bn%":{"opcode":"operator_join","next":null,"parent":"z+","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"z)":{"opcode":"data_setvariableto","next":"z-","parent":"z(","inputs":{"VALUE":[3,"z.",[10,""]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"z.":{"opcode":"operator_add","next":null,"parent":"z)","inputs":{"NUM1":[3,"aq+",[4,0]],"NUM2":[3,"JX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aq+":{"opcode":"operator_multiply","next":null,"parent":"z.","inputs":{"NUM1":[3,"bn(",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bn(":{"opcode":"data_itemoflist","next":null,"parent":"aq+","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"z-":{"opcode":"control_repeat","next":"bn)","parent":"z)","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"aq,"]},"fields":{},"shadow":false,"topLevel":false},"aq,":{"opcode":"data_deletealloflist","next":"aq-","parent":"z-","inputs":{},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"aq-":{"opcode":"data_setvariableto","next":"JY","parent":"aq,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"JY":{"opcode":"control_for_each","next":"jF","parent":"aq-","inputs":{"VALUE":[1,[6,"9"]],"SUBSTACK":[2,"JZ"]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"JZ":{"opcode":"data_setvariableto","next":"J!","parent":"JY","inputs":{"VALUE":[3,"J#",[10,""]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"J#":{"opcode":"operator_add","next":null,"parent":"JZ","inputs":{"NUM1":[3,"bn*",[4,0]],"NUM2":[3,"aq.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bn*":{"opcode":"operator_multiply","next":null,"parent":"J#","inputs":{"NUM1":[3,[12,"p","?fG`_xt7u6j*Uem:ZtKX"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aq.":{"opcode":"data_itemoflist","next":null,"parent":"J#","inputs":{"INDEX":[3,"bn+",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"bn+":{"opcode":"operator_add","next":null,"parent":"aq.","inputs":{"NUM1":[3,[12,"i","-7dlmlcLCpV7tl8DS7P}"],[4,0]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J!":{"opcode":"control_if","next":null,"parent":"JZ","inputs":{"CONDITION":[2,"aq/"],"SUBSTACK":[2,"aq:"]},"fields":{},"shadow":false,"topLevel":false},"aq/":{"opcode":"operator_equals","next":null,"parent":"J!","inputs":{"OPERAND1":[3,"bn,",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bn,":{"opcode":"operator_mod","next":null,"parent":"aq/","inputs":{"NUM1":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aq:":{"opcode":"data_addtolist","next":"bn-","parent":"J!","inputs":{"ITEM":[3,[12,"p","?fG`_xt7u6j*Uem:ZtKX"],[10,""]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"bn-":{"opcode":"data_setvariableto","next":null,"parent":"aq:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["p","?fG`_xt7u6j*Uem:ZtKX"]},"shadow":false,"topLevel":false},"jF":{"opcode":"data_replaceitemoflist","next":"aq;","parent":"JY","inputs":{"INDEX":[3,"aq=",[7,0]],"ITEM":[3,"aq?",[10,""]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aq=":{"opcode":"operator_add","next":null,"parent":"jF","inputs":{"NUM1":[3,"bn.",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bn.":{"opcode":"data_itemoflist","next":null,"parent":"aq=","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"aq?":{"opcode":"data_itemoflist","next":null,"parent":"jF","inputs":{"INDEX":[3,"aq@",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aq@":{"opcode":"operator_add","next":null,"parent":"aq?","inputs":{"NUM1":[3,"bn/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bn/":{"opcode":"data_itemoflist","next":null,"parent":"aq@","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"aq;":{"opcode":"data_setvariableto","next":null,"parent":"jF","inputs":{"VALUE":[3,"bn:",[10,""]]},"fields":{"VARIABLE":["i","-7dlmlcLCpV7tl8DS7P}"]},"shadow":false,"topLevel":false},"bn:":{"opcode":"data_itemoflist","next":null,"parent":"aq;","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"bn)":{"opcode":"data_setvariableto","next":null,"parent":"z-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"bn;":{"opcode":"procedures_call","next":null,"parent":"aqZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw bp","argumentids":"[]","warp":"true"}},"aq[":{"opcode":"procedures_definition","next":"aq]","parent":null,"inputs":{"custom_block":[1,"bn="]},"fields":{},"shadow":false,"topLevel":true,"x":1422,"y":560},"bn=":{"opcode":"procedures_prototype","next":null,"parent":"aq[","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Draw bp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aq]":{"opcode":"control_for_each","next":null,"parent":"aq[","inputs":{"VALUE":[1,[6,"256"]],"SUBSTACK":[2,"aq^"]},"fields":{"VARIABLE":["a",";idbd$swwqwNu;DQ0=vB"]},"shadow":false,"topLevel":false},"aq^":{"opcode":"control_for_each","next":null,"parent":"aq]","inputs":{"VALUE":[1,[6,"256"]],"SUBSTACK":[2,"aq_"]},"fields":{"VARIABLE":["bytepusher",".:y58a4w1!iQvV%zNhGC"]},"shadow":false,"topLevel":false},"aq_":{"opcode":"data_changevariableby","next":"J%","parent":"aq^","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["j","C0qco%J%rH+?w-9+KXyy"]},"shadow":false,"topLevel":false},"J%":{"opcode":"data_setvariableto","next":"J(","parent":"aq_","inputs":{"VALUE":[3,"aq`",[10,""]]},"fields":{"VARIABLE":["k","=MQ3i72Bb4vUb@o!rkK."]},"shadow":false,"topLevel":false},"aq`":{"opcode":"data_itemoflist","next":null,"parent":"J%","inputs":{"INDEX":[3,"aq{",[7,0]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aq{":{"opcode":"operator_add","next":null,"parent":"aq`","inputs":{"NUM1":[3,"aq|",[4,0]],"NUM2":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aq|":{"opcode":"operator_multiply","next":null,"parent":"aq{","inputs":{"NUM1":[3,"bn?",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bn?":{"opcode":"data_itemoflist","next":null,"parent":"aq|","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aq}":{"opcode":"operator_equals","next":null,"parent":"aq~","inputs":{"OPERAND1":[3,"bn@",[10,""]],"OPERAND2":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bn@":{"opcode":"data_itemoflist","next":null,"parent":"aq}","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"ara":{"opcode":"data_replaceitemoflist","next":"jG","parent":"J(","inputs":{"INDEX":[3,[12,"j","C0qco%J%rH+?w-9+KXyy"],[7,0]],"ITEM":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[10,""]]},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"jG":{"opcode":"motion_gotoxy","next":"J)","parent":"ara","inputs":{"X":[3,"bn[",[4,0]],"Y":[3,"bn]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bn[":{"opcode":"operator_subtract","next":null,"parent":"jG","inputs":{"NUM1":[3,[12,"bytepusher",".:y58a4w1!iQvV%zNhGC"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"bn]":{"opcode":"operator_subtract","next":null,"parent":"jG","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,[12,"a",";idbd$swwqwNu;DQ0=vB"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J)":{"opcode":"pen_setPenColorToColor","next":"arb","parent":"jG","inputs":{"COLOR":[3,"bn^",[9,"#6029a3"]]},"fields":{},"shadow":false,"topLevel":false},"bn^":{"opcode":"data_itemoflist","next":null,"parent":"J)","inputs":{"INDEX":[3,[12,"k","=MQ3i72Bb4vUb@o!rkK."],[7,0]]},"fields":{"LIST":["p","`^!VhjO#Rx$;MO?qNS$1"]},"shadow":false,"topLevel":false},"arb":{"opcode":"pen_penDown","next":"bn_","parent":"J)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bn_":{"opcode":"pen_penUp","next":null,"parent":"arb","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bn`":{"opcode":"event_whenbroadcastreceived","next":"arc","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":1422,"y":64},"arc":{"opcode":"data_deletealloflist","next":"bn{","parent":"bn`","inputs":{},"fields":{"LIST":["bytepusher","N!E=h~yfwhqsk0jnH|cu"]},"shadow":false,"topLevel":false},"bn{":{"opcode":"data_deletealloflist","next":null,"parent":"arc","inputs":{},"fields":{"LIST":["t","zkQL|M442N4wRsc)+07d"]},"shadow":false,"topLevel":false},"bn|":{"opcode":"event_whenbroadcastreceived","next":"ard","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Nuke all lists","nXk!G*y_h@WG)9_e/VKR"]},"shadow":false,"topLevel":true,"x":1422,"y":288},"ard":{"opcode":"data_deletealloflist","next":"are","parent":"bn|","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"are":{"opcode":"data_deletealloflist","next":"bn}","parent":"ard","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bn}":{"opcode":"event_broadcast","next":null,"parent":"are","inputs":{"BROADCAST_INPUT":[1,[11,"Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]]},"fields":{},"shadow":false,"topLevel":false},"bn~":{"opcode":"event_whenbroadcastreceived","next":"boa","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":31,"y":197},"boa":{"opcode":"control_stop","next":null,"parent":"bn~","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"JX":{"opcode":"operator_add","next":null,"parent":"z.","inputs":{"NUM1":[3,"arf",[4,0]],"NUM2":[3,"bob",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arf":{"opcode":"operator_multiply","next":null,"parent":"JX","inputs":{"NUM1":[3,"boc",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"boc":{"opcode":"data_itemoflist","next":null,"parent":"arf","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"bob":{"opcode":"data_itemoflist","next":null,"parent":"JX","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"aqS":{"opcode":"procedures_definition","next":"aqR","parent":null,"inputs":{"custom_block":[1,"bod"]},"fields":{},"shadow":false,"topLevel":true,"x":694,"y":196},"bod":{"opcode":"procedures_prototype","next":null,"parent":"aqS","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqQ":{"opcode":"procedures_call","next":"aqY","parent":"bnV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"init","argumentids":"[]","warp":"true"}},"aq!":{"opcode":"procedures_definition","next":"z(","parent":null,"inputs":{"custom_block":[1,"boe"]},"fields":{},"shadow":false,"topLevel":true,"x":414,"y":1013},"boe":{"opcode":"procedures_prototype","next":null,"parent":"aq!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CPU","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aqZ":{"opcode":"procedures_call","next":"bn;","parent":"aqX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CPU","argumentids":"[]","warp":"true"}},"aq~":{"opcode":"operator_not","next":null,"parent":"J(","inputs":{"OPERAND":[2,"aq}"]},"fields":{},"shadow":false,"topLevel":false},"J(":{"opcode":"control_if","next":null,"parent":"J%","inputs":{"CONDITION":[2,"aq~"],"SUBSTACK":[2,"ara"]},"fields":{},"shadow":false,"topLevel":false},"aqY":{"opcode":"event_broadcastandwait","next":"aqX","parent":"aqQ","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"aq)":{"opcode":"operator_mathop","next":null,"parent":"aq(","inputs":{"NUM":[3,"z,",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume2","bitmapResolution":1,"dataFormat":"svg","assetId":"cd21514d0531fdffb22204e0ec5ed84a","md5ext":"cd21514d0531fdffb22204e0ec5ed84a.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":8,"visible":false,"x":97,"y":-8,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"draw","variables":{"h9od:zPMB5,pRnd*~S?_":["draw: pixel",59392],"x`lXY}QGbH88#]Q,]k6{":["scaling","1"],"FXOp8UxfocDLes#jb]#0":["size_mod","0"],"]5%Fb_Ak`e}VBjN~n|kJ":["o_down","8"],"k=~b=v$2`QjSTgTcPXL-":["o_up","8"],"73W`D}JRkTT8cP#X0=^@":["display_mode","0"],"RUoRvD^Z-E8laPv?;h)+":["stretch_x","1"],"9*o%9GxNGz?fbMF7pB8J":["stretch_y","1"]},"lists":{},"broadcasts":{},"blocks":{"arg":{"opcode":"procedures_definition","next":"arh","parent":null,"inputs":{"custom_block":[1,"bof"]},"fields":{},"shadow":false,"topLevel":true,"x":709,"y":236},"bof":{"opcode":"procedures_prototype","next":null,"parent":"arg","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"arh":{"opcode":"pen_clear","next":"ari","parent":"arg","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ari":{"opcode":"motion_gotoxy","next":"arj","parent":"arh","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arj":{"opcode":"pen_setPenSizeTo","next":"ark","parent":"ari","inputs":{"SIZE":[1,[4,"750"]]},"fields":{},"shadow":false,"topLevel":false},"ark":{"opcode":"pen_setPenColorToColor","next":"arl","parent":"arj","inputs":{"COLOR":[3,[12,"bg_color","~s-a1kNvmHy%k|6}Y3^~"],[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"arl":{"opcode":"pen_penDown","next":"arm","parent":"ark","inputs":{},"fields":{},"shadow":false,"topLevel":false},"arm":{"opcode":"pen_penUp","next":"J*","parent":"arl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"J*":{"opcode":"pen_setPenSizeTo","next":"J+","parent":"arm","inputs":{"SIZE":[3,"bog",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bog":{"opcode":"operator_add","next":null,"parent":"J*","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,[12,"size_mod","FXOp8UxfocDLes#jb]#0"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J+":{"opcode":"control_if","next":null,"parent":"J*","inputs":{"CONDITION":[2,"boh"],"SUBSTACK":[2,"jH"]},"fields":{},"shadow":false,"topLevel":false},"boh":{"opcode":"operator_equals","next":null,"parent":"J+","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jH":{"opcode":"motion_gotoxy","next":"z/","parent":"J+","inputs":{"X":[3,"arn",[4,0]],"Y":[3,"aro",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arn":{"opcode":"operator_multiply","next":null,"parent":"jH","inputs":{"NUM1":[3,"arp",[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arp":{"opcode":"operator_add","next":null,"parent":"arn","inputs":{"NUM1":[3,"boi",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"boi":{"opcode":"operator_multiply","next":null,"parent":"arp","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"aro":{"opcode":"operator_multiply","next":null,"parent":"jH","inputs":{"NUM1":[3,"arq",[4,0]],"NUM2":[3,[12,"stretch_y","9*o%9GxNGz?fbMF7pB8J"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arq":{"opcode":"operator_subtract","next":null,"parent":"aro","inputs":{"NUM1":[3,"arr",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"arr":{"opcode":"operator_multiply","next":null,"parent":"arq","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,"boj",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"boj":{"opcode":"operator_subtract","next":null,"parent":"arr","inputs":{"NUM1":[1,[4,"120"]],"NUM2":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z/":{"opcode":"data_setvariableto","next":"z:","parent":"jH","inputs":{"VALUE":[3,"bok",[10,""]]},"fields":{"VARIABLE":["draw: pixel","h9od:zPMB5,pRnd*~S?_"]},"shadow":false,"topLevel":false},"bok":{"opcode":"operator_multiply","next":null,"parent":"z/","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z:":{"opcode":"control_repeat","next":null,"parent":"z/","inputs":{"TIMES":[3,"ars",[6,0]],"SUBSTACK":[2,"z;"]},"fields":{},"shadow":false,"topLevel":false},"ars":{"opcode":"operator_subtract","next":null,"parent":"z:","inputs":{"NUM1":[1,[4,"240"]],"NUM2":[3,"bol",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bol":{"opcode":"operator_add","next":null,"parent":"ars","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z;":{"opcode":"control_repeat","next":"z=","parent":"z:","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"art"]},"fields":{},"shadow":false,"topLevel":false},"art":{"opcode":"data_changevariableby","next":"jI","parent":"z;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["draw: pixel","h9od:zPMB5,pRnd*~S?_"]},"shadow":false,"topLevel":false},"jI":{"opcode":"control_if","next":"aru","parent":"art","inputs":{"CONDITION":[2,"arv"],"SUBSTACK":[2,"z?"]},"fields":{},"shadow":false,"topLevel":false},"arv":{"opcode":"operator_not","next":null,"parent":"jI","inputs":{"OPERAND":[2,"z@"]},"fields":{},"shadow":false,"topLevel":false},"z@":{"opcode":"operator_or","next":null,"parent":"arv","inputs":{"OPERAND1":[2,"arw"],"OPERAND2":[2,"arx"]},"fields":{},"shadow":false,"topLevel":false},"arw":{"opcode":"operator_equals","next":null,"parent":"z@","inputs":{"OPERAND1":[3,"bom",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bom":{"opcode":"data_itemoflist","next":null,"parent":"arw","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"arx":{"opcode":"operator_equals","next":null,"parent":"z@","inputs":{"OPERAND1":[3,"bon",[10,""]],"OPERAND2":[3,[12,"bg_color","~s-a1kNvmHy%k|6}Y3^~"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bon":{"opcode":"data_itemoflist","next":null,"parent":"arx","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"z?":{"opcode":"pen_setPenColorToColor","next":"ary","parent":"jI","inputs":{"COLOR":[3,"boo",[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"boo":{"opcode":"data_itemoflist","next":null,"parent":"z?","inputs":{"INDEX":[3,[12,"draw: pixel","h9od:zPMB5,pRnd*~S?_"],[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"ary":{"opcode":"pen_penDown","next":"bop","parent":"z?","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bop":{"opcode":"pen_penUp","next":null,"parent":"ary","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aru":{"opcode":"motion_changexby","next":null,"parent":"jI","inputs":{"DX":[3,"boq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"boq":{"opcode":"operator_multiply","next":null,"parent":"aru","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z=":{"opcode":"motion_setx","next":"arz","parent":"z;","inputs":{"X":[3,"arA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arA":{"opcode":"operator_multiply","next":null,"parent":"z=","inputs":{"NUM1":[3,"arB",[4,0]],"NUM2":[3,[12,"stretch_x","RUoRvD^Z-E8laPv?;h)+"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arB":{"opcode":"operator_add","next":null,"parent":"arA","inputs":{"NUM1":[3,"bor",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bor":{"opcode":"operator_multiply","next":null,"parent":"arB","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"arz":{"opcode":"motion_changeyby","next":null,"parent":"z=","inputs":{"DY":[3,"arC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"arC":{"opcode":"operator_multiply","next":null,"parent":"arz","inputs":{"NUM1":[3,"bos",[4,0]],"NUM2":[3,[12,"stretch_y","9*o%9GxNGz?fbMF7pB8J"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bos":{"opcode":"operator_multiply","next":null,"parent":"arC","inputs":{"NUM1":[3,[12,"scaling","x`lXY}QGbH88#]Q,]k6{"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"bot":{"opcode":"event_whenbroadcastreceived","next":"bou","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["draw","a,=[Gay5*+98NY%7e1=p"]},"shadow":false,"topLevel":true,"x":709,"y":64},"z[":{"opcode":"control_if_else","next":null,"parent":null,"inputs":{"CONDITION":[2,"arD"],"SUBSTACK":[2,"arE"],"SUBSTACK2":[2,"arF"]},"fields":{},"shadow":false,"topLevel":true,"x":232,"y":1442},"arD":{"opcode":"operator_equals","next":null,"parent":"z[","inputs":{"OPERAND1":[3,"bov",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bov":{"opcode":"data_itemoflist","next":null,"parent":"arD","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"arE":{"opcode":"data_hidevariable","next":"arG","parent":"z[","inputs":{},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"arG":{"opcode":"data_hidevariable","next":"arH","parent":"arE","inputs":{},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"arH":{"opcode":"data_hidevariable","next":"arI","parent":"arG","inputs":{},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"arI":{"opcode":"data_hidevariable","next":"arJ","parent":"arH","inputs":{},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"arJ":{"opcode":"data_hidevariable","next":"arK","parent":"arI","inputs":{},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"arK":{"opcode":"data_hidevariable","next":"bow","parent":"arJ","inputs":{},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"bow":{"opcode":"data_replaceitemoflist","next":null,"parent":"arK","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"arF":{"opcode":"data_showvariable","next":"arL","parent":"z[","inputs":{},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"arL":{"opcode":"data_showvariable","next":"arM","parent":"arF","inputs":{},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"arM":{"opcode":"data_showvariable","next":"arN","parent":"arL","inputs":{},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"arN":{"opcode":"data_showvariable","next":"arO","parent":"arM","inputs":{},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"arO":{"opcode":"data_showvariable","next":"arP","parent":"arN","inputs":{},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"arP":{"opcode":"data_showvariable","next":"box","parent":"arO","inputs":{},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"box":{"opcode":"data_replaceitemoflist","next":null,"parent":"arP","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["gui","]?ktZ5{ATqh5n-y_rI;)"]},"shadow":false,"topLevel":false},"boy":{"opcode":"event_whenbroadcastreceived","next":"arQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":709,"y":1680},"arQ":{"opcode":"data_setvariableto","next":"arR","parent":"boy","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["display_mode","73W`D}JRkTT8cP#X0=^@"]},"shadow":false,"topLevel":false},"arR":{"opcode":"data_setvariableto","next":"arS","parent":"arQ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"arS":{"opcode":"data_setvariableto","next":"arT","parent":"arR","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"arT":{"opcode":"data_setvariableto","next":"arU","parent":"arS","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"arU":{"opcode":"data_setvariableto","next":"arV","parent":"arT","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"arV":{"opcode":"data_setvariableto","next":"boz","parent":"arU","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["o_up","k=~b=v$2`QjSTgTcPXL-"]},"shadow":false,"topLevel":false},"boz":{"opcode":"data_setvariableto","next":null,"parent":"arV","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["o_down","]5%Fb_Ak`e}VBjN~n|kJ"]},"shadow":false,"topLevel":false},"boA":{"opcode":"event_whenbroadcastreceived","next":"boB","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":2264},"boB":{"opcode":"procedures_call","next":null,"parent":"boA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","warp":"false"}},"boC":{"opcode":"event_whenbroadcastreceived","next":"arW","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["display_size","0|$coU#Vlwnj!3!NWjhi"]},"shadow":false,"topLevel":true,"x":48,"y":64},"arW":{"opcode":"data_setvariableto","next":"arX","parent":"boC","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"arX":{"opcode":"data_setvariableto","next":"z]","parent":"arW","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["stretch_y","9*o%9GxNGz?fbMF7pB8J"]},"shadow":false,"topLevel":false},"z]":{"opcode":"data_setvariableto","next":"jJ","parent":"arX","inputs":{"VALUE":[3,"arY",[10,""]]},"fields":{"VARIABLE":["display_mode","73W`D}JRkTT8cP#X0=^@"]},"shadow":false,"topLevel":false},"arY":{"opcode":"operator_mod","next":null,"parent":"z]","inputs":{"NUM1":[3,"boD",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"boD":{"opcode":"operator_add","next":null,"parent":"arY","inputs":{"NUM1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jJ":{"opcode":"control_if","next":"jK","parent":"z]","inputs":{"CONDITION":[2,"boE"],"SUBSTACK":[2,"arZ"]},"fields":{},"shadow":false,"topLevel":false},"boE":{"opcode":"operator_equals","next":null,"parent":"jJ","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"arZ":{"opcode":"data_setvariableto","next":"boF","parent":"jJ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"boF":{"opcode":"data_setvariableto","next":null,"parent":"arZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"jK":{"opcode":"control_if","next":"jL","parent":"jJ","inputs":{"CONDITION":[2,"boG"],"SUBSTACK":[2,"z^"]},"fields":{},"shadow":false,"topLevel":false},"boG":{"opcode":"operator_equals","next":null,"parent":"jK","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z^":{"opcode":"data_setvariableto","next":"ar!","parent":"jK","inputs":{"VALUE":[3,"ar#",[10,""]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"ar#":{"opcode":"operator_add","next":null,"parent":"z^","inputs":{"NUM1":[1,[4,"1.5"]],"NUM2":[3,"ar%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar%":{"opcode":"operator_divide","next":null,"parent":"ar#","inputs":{"NUM1":[3,"boH",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"boH":{"opcode":"operator_add","next":null,"parent":"ar%","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar!":{"opcode":"data_setvariableto","next":null,"parent":"z^","inputs":{"VALUE":[3,"ar(",[10,""]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"ar(":{"opcode":"operator_add","next":null,"parent":"ar!","inputs":{"NUM1":[1,[4,"0.75"]],"NUM2":[3,"ar)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar)":{"opcode":"operator_divide","next":null,"parent":"ar(","inputs":{"NUM1":[3,"boI",[4,0]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"boI":{"opcode":"operator_add","next":null,"parent":"ar)","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jL":{"opcode":"control_if","next":"jM","parent":"jK","inputs":{"CONDITION":[2,"boJ"],"SUBSTACK":[2,"z_"]},"fields":{},"shadow":false,"topLevel":false},"boJ":{"opcode":"operator_equals","next":null,"parent":"jL","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"z_":{"opcode":"data_setvariableto","next":"z`","parent":"jL","inputs":{"VALUE":[3,"ar*",[10,""]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"ar*":{"opcode":"operator_add","next":null,"parent":"z_","inputs":{"NUM1":[1,[4,"1.5"]],"NUM2":[3,"ar+",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar+":{"opcode":"operator_divide","next":null,"parent":"ar*","inputs":{"NUM1":[3,"boK",[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"boK":{"opcode":"operator_add","next":null,"parent":"ar+","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"z`":{"opcode":"data_setvariableto","next":"ar,","parent":"z_","inputs":{"VALUE":[3,"ar-",[10,""]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"ar-":{"opcode":"operator_add","next":null,"parent":"z`","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"ar.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar.":{"opcode":"operator_divide","next":null,"parent":"ar-","inputs":{"NUM1":[3,"boL",[4,0]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"boL":{"opcode":"operator_add","next":null,"parent":"ar.","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar,":{"opcode":"data_changevariableby","next":null,"parent":"z`","inputs":{"VALUE":[3,"ar/",[4,0]]},"fields":{"VARIABLE":["stretch_x","RUoRvD^Z-E8laPv?;h)+"]},"shadow":false,"topLevel":false},"ar/":{"opcode":"operator_subtract","next":null,"parent":"ar,","inputs":{"NUM1":[1,[4,"0.25"]],"NUM2":[3,"ar:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar:":{"opcode":"operator_divide","next":null,"parent":"ar/","inputs":{"NUM1":[3,"boM",[4,0]],"NUM2":[1,[4,"192"]]},"fields":{},"shadow":false,"topLevel":false},"boM":{"opcode":"operator_add","next":null,"parent":"ar:","inputs":{"NUM1":[3,[12,"o_up","k=~b=v$2`QjSTgTcPXL-"],[4,0]],"NUM2":[3,[12,"o_down","]5%Fb_Ak`e}VBjN~n|kJ"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"jM":{"opcode":"control_if","next":"ar;","parent":"jL","inputs":{"CONDITION":[2,"boN"],"SUBSTACK":[2,"ar="]},"fields":{},"shadow":false,"topLevel":false},"boN":{"opcode":"operator_equals","next":null,"parent":"jM","inputs":{"OPERAND1":[3,[12,"display_mode","73W`D}JRkTT8cP#X0=^@"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ar=":{"opcode":"data_setvariableto","next":"boO","parent":"jM","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["scaling","x`lXY}QGbH88#]Q,]k6{"]},"shadow":false,"topLevel":false},"boO":{"opcode":"data_setvariableto","next":null,"parent":"ar=","inputs":{"VALUE":[1,[10,"0.24"]]},"fields":{"VARIABLE":["size_mod","FXOp8UxfocDLes#jb]#0"]},"shadow":false,"topLevel":false},"ar;":{"opcode":"procedures_call","next":"boP","parent":"jM","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","warp":"true"}},"boP":{"opcode":"procedures_call","next":null,"parent":"ar;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","warp":"false"}},"ar?":{"opcode":"procedures_definition","next":"ar@","parent":null,"inputs":{"custom_block":[1,"boQ"]},"fields":{},"shadow":false,"topLevel":true,"x":1874,"y":64},"boQ":{"opcode":"procedures_prototype","next":null,"parent":"ar?","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fade","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"ar@":{"opcode":"motion_gotoxy","next":"ar[","parent":"ar?","inputs":{"X":[1,[4,"0"]],"Y":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ar[":{"opcode":"pen_setPenSizeTo","next":"ar]","parent":"ar@","inputs":{"SIZE":[1,[4,"750"]]},"fields":{},"shadow":false,"topLevel":false},"ar]":{"opcode":"pen_setPenColorToColor","next":"z{","parent":"ar[","inputs":{"COLOR":[1,[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"z{":{"opcode":"pen_setPenColorParamTo","next":"ar^","parent":"ar]","inputs":{"COLOR_PARAM":[1,"boR"],"VALUE":[1,[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"boR":{"opcode":"pen_menu_colorParam","next":null,"parent":"z{","inputs":{},"fields":{"colorParam":["transparency",null]},"shadow":true,"topLevel":false},"ar^":{"opcode":"pen_penDown","next":"boS","parent":"z{","inputs":{},"fields":{},"shadow":false,"topLevel":false},"boS":{"opcode":"pen_penUp","next":null,"parent":"ar^","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bou":{"opcode":"procedures_call","next":null,"parent":"bot","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","warp":"true"}}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":2,"dataFormat":"png","assetId":"c446646a95cd43c36d25583fdaea3dbc","md5ext":"c446646a95cd43c36d25583fdaea3dbc.png","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":9,"visible":false,"x":0,"y":0,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"5b","variables":{",t*Z$?npxtUrPvuD([wH":["command",0],"C$3%UxOY37Q#Dsvx}pl%":["a_period",107],"1dl`5c(ttkH8zjjKw3]h":["b_period",170],"Zglcb5*?xw@Pwq/!OgNE":["c_period",106],"^1+.`x@~.CAD5*aQd5z?":["a_volume","0"],"bp]UrL+l(!XQs0b81aNn":["b_volume","0"],"[y{.(/{:CXtsj~;{6tBJ":["c_volume","0"],"~iiQIbIjt?[mwNAT~huV":["id",9],"*BbF=^noa+^(po`UzO^q":["a_freq",522.7140771028037],"A.FiYg2V3]9MvGX^[W-F":["b_freq",329.00238970588236],"0!}3I/:t|H,p/H;u;cje":["c_freq",527.6453419811321],"3Wx!o~B/=iFPCh,V5Ll^":["a_enabled",0],"WVeQ5OsR!_8f|-c%t5(G":["b_enabled",1],"caul(Af@e*}P?S`EA[Qa":["c_enabled",1]},"lists":{},"broadcasts":{},"blocks":{"boT":{"opcode":"event_whenbroadcastreceived","next":"z|","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["5b","ET.1ru=%3YXJv8(/!(4S"]},"shadow":false,"topLevel":true,"x":48,"y":332},"z|":{"opcode":"data_setvariableto","next":"jN","parent":"boT","inputs":{"VALUE":[3,"ar_",[10,""]]},"fields":{"VARIABLE":["command",",t*Z$?npxtUrPvuD([wH"]},"shadow":false,"topLevel":false},"ar_":{"opcode":"sensing_of","next":null,"parent":"z|","inputs":{"OBJECT":[1,"boU"]},"fields":{"PROPERTY":["$5b_command",null]},"shadow":false,"topLevel":false},"boU":{"opcode":"sensing_of_object_menu","next":null,"parent":"ar_","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jN":{"opcode":"control_if","next":"jO","parent":"z|","inputs":{"CONDITION":[2,"boV"],"SUBSTACK":[2,"ar`"]},"fields":{},"shadow":false,"topLevel":false},"boV":{"opcode":"operator_equals","next":null,"parent":"jN","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ar`":{"opcode":"data_setvariableto","next":null,"parent":"jN","inputs":{"VALUE":[3,"z}",[10,""]]},"fields":{"VARIABLE":["a_period","C$3%UxOY37Q#Dsvx}pl%"]},"shadow":false,"topLevel":false},"z}":{"opcode":"operator_add","next":null,"parent":"ar`","inputs":{"NUM1":[3,"ar{",[4,0]],"NUM2":[3,"ar|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ar{":{"opcode":"operator_subtract","next":null,"parent":"z}","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[3,"boW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"boW":{"opcode":"operator_mod","next":null,"parent":"ar{","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ar|":{"opcode":"sensing_of","next":null,"parent":"z}","inputs":{"OBJECT":[1,"boX"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"boX":{"opcode":"sensing_of_object_menu","next":null,"parent":"ar|","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jO":{"opcode":"control_if","next":"jP","parent":"jN","inputs":{"CONDITION":[2,"boY"],"SUBSTACK":[2,"ar}"]},"fields":{},"shadow":false,"topLevel":false},"boY":{"opcode":"operator_equals","next":null,"parent":"jO","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ar}":{"opcode":"data_setvariableto","next":null,"parent":"jO","inputs":{"VALUE":[3,"z~",[10,""]]},"fields":{"VARIABLE":["a_period","C$3%UxOY37Q#Dsvx}pl%"]},"shadow":false,"topLevel":false},"z~":{"opcode":"operator_add","next":null,"parent":"ar}","inputs":{"NUM1":[3,"boZ",[4,0]],"NUM2":[3,"ar~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"boZ":{"opcode":"operator_mod","next":null,"parent":"z~","inputs":{"NUM1":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ar~":{"opcode":"operator_multiply","next":null,"parent":"z~","inputs":{"NUM1":[3,"asa",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"asa":{"opcode":"operator_mod","next":null,"parent":"ar~","inputs":{"NUM1":[3,"asb",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asb":{"opcode":"sensing_of","next":null,"parent":"asa","inputs":{"OBJECT":[1,"bo!"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo!":{"opcode":"sensing_of_object_menu","next":null,"parent":"asb","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jP":{"opcode":"control_if","next":"jQ","parent":"jO","inputs":{"CONDITION":[2,"bo#"],"SUBSTACK":[2,"asc"]},"fields":{},"shadow":false,"topLevel":false},"bo#":{"opcode":"operator_equals","next":null,"parent":"jP","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asc":{"opcode":"data_setvariableto","next":null,"parent":"jP","inputs":{"VALUE":[3,"Aa",[10,""]]},"fields":{"VARIABLE":["b_period","1dl`5c(ttkH8zjjKw3]h"]},"shadow":false,"topLevel":false},"Aa":{"opcode":"operator_add","next":null,"parent":"asc","inputs":{"NUM1":[3,"asd",[4,0]],"NUM2":[3,"ase",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asd":{"opcode":"operator_subtract","next":null,"parent":"Aa","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[3,"bo%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo%":{"opcode":"operator_mod","next":null,"parent":"asd","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ase":{"opcode":"sensing_of","next":null,"parent":"Aa","inputs":{"OBJECT":[1,"bo("]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo(":{"opcode":"sensing_of_object_menu","next":null,"parent":"ase","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jQ":{"opcode":"control_if","next":"jR","parent":"jP","inputs":{"CONDITION":[2,"bo)"],"SUBSTACK":[2,"asf"]},"fields":{},"shadow":false,"topLevel":false},"bo)":{"opcode":"operator_equals","next":null,"parent":"jQ","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"asf":{"opcode":"data_setvariableto","next":null,"parent":"jQ","inputs":{"VALUE":[3,"Ab",[10,""]]},"fields":{"VARIABLE":["b_period","1dl`5c(ttkH8zjjKw3]h"]},"shadow":false,"topLevel":false},"Ab":{"opcode":"operator_add","next":null,"parent":"asf","inputs":{"NUM1":[3,"bo*",[4,0]],"NUM2":[3,"asg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo*":{"opcode":"operator_mod","next":null,"parent":"Ab","inputs":{"NUM1":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"asg":{"opcode":"operator_multiply","next":null,"parent":"Ab","inputs":{"NUM1":[3,"ash",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ash":{"opcode":"operator_mod","next":null,"parent":"asg","inputs":{"NUM1":[3,"asi",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asi":{"opcode":"sensing_of","next":null,"parent":"ash","inputs":{"OBJECT":[1,"bo+"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo+":{"opcode":"sensing_of_object_menu","next":null,"parent":"asi","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jR":{"opcode":"control_if","next":"jS","parent":"jQ","inputs":{"CONDITION":[2,"bo,"],"SUBSTACK":[2,"asj"]},"fields":{},"shadow":false,"topLevel":false},"bo,":{"opcode":"operator_equals","next":null,"parent":"jR","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"asj":{"opcode":"data_setvariableto","next":null,"parent":"jR","inputs":{"VALUE":[3,"Ac",[10,""]]},"fields":{"VARIABLE":["c_period","Zglcb5*?xw@Pwq/!OgNE"]},"shadow":false,"topLevel":false},"Ac":{"opcode":"operator_add","next":null,"parent":"asj","inputs":{"NUM1":[3,"ask",[4,0]],"NUM2":[3,"asl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ask":{"opcode":"operator_subtract","next":null,"parent":"Ac","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[3,"bo-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo-":{"opcode":"operator_mod","next":null,"parent":"ask","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"asl":{"opcode":"sensing_of","next":null,"parent":"Ac","inputs":{"OBJECT":[1,"bo."]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo.":{"opcode":"sensing_of_object_menu","next":null,"parent":"asl","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jS":{"opcode":"control_if","next":"jT","parent":"jR","inputs":{"CONDITION":[2,"bo/"],"SUBSTACK":[2,"asm"]},"fields":{},"shadow":false,"topLevel":false},"bo/":{"opcode":"operator_equals","next":null,"parent":"jS","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"asm":{"opcode":"data_setvariableto","next":null,"parent":"jS","inputs":{"VALUE":[3,"Ad",[10,""]]},"fields":{"VARIABLE":["c_period","Zglcb5*?xw@Pwq/!OgNE"]},"shadow":false,"topLevel":false},"Ad":{"opcode":"operator_add","next":null,"parent":"asm","inputs":{"NUM1":[3,"bo:",[4,0]],"NUM2":[3,"asn",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo:":{"opcode":"operator_mod","next":null,"parent":"Ad","inputs":{"NUM1":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"asn":{"opcode":"operator_multiply","next":null,"parent":"Ad","inputs":{"NUM1":[3,"aso",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aso":{"opcode":"operator_mod","next":null,"parent":"asn","inputs":{"NUM1":[3,"asp",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asp":{"opcode":"sensing_of","next":null,"parent":"aso","inputs":{"OBJECT":[1,"bo;"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo;":{"opcode":"sensing_of_object_menu","next":null,"parent":"asp","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jT":{"opcode":"control_if","next":"jU","parent":"jS","inputs":{"CONDITION":[2,"bo="],"SUBSTACK":[2,"Ae"]},"fields":{},"shadow":false,"topLevel":false},"bo=":{"opcode":"operator_equals","next":null,"parent":"jT","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Ae":{"opcode":"data_setvariableto","next":"Af","parent":"jT","inputs":{"VALUE":[3,"asq",[10,""]]},"fields":{"VARIABLE":["a_enabled","3Wx!o~B/=iFPCh,V5Ll^"]},"shadow":false,"topLevel":false},"asq":{"opcode":"operator_subtract","next":null,"parent":"Ae","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"asr",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asr":{"opcode":"operator_mod","next":null,"parent":"asq","inputs":{"NUM1":[3,"ass",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ass":{"opcode":"sensing_of","next":null,"parent":"asr","inputs":{"OBJECT":[1,"bo?"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo?":{"opcode":"sensing_of_object_menu","next":null,"parent":"ass","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"Af":{"opcode":"data_setvariableto","next":"ast","parent":"Ae","inputs":{"VALUE":[3,"asu",[10,""]]},"fields":{"VARIABLE":["b_enabled","WVeQ5OsR!_8f|-c%t5(G"]},"shadow":false,"topLevel":false},"asu":{"opcode":"operator_subtract","next":null,"parent":"Af","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"asv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asv":{"opcode":"operator_mod","next":null,"parent":"asu","inputs":{"NUM1":[3,"asw",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asw":{"opcode":"operator_mathop","next":null,"parent":"asv","inputs":{"NUM":[3,"asx",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"asx":{"opcode":"operator_divide","next":null,"parent":"asw","inputs":{"NUM1":[3,"asy",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asy":{"opcode":"sensing_of","next":null,"parent":"asx","inputs":{"OBJECT":[1,"bo@"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo@":{"opcode":"sensing_of_object_menu","next":null,"parent":"asy","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"ast":{"opcode":"data_setvariableto","next":null,"parent":"Af","inputs":{"VALUE":[3,"asz",[10,""]]},"fields":{"VARIABLE":["c_enabled","caul(Af@e*}P?S`EA[Qa"]},"shadow":false,"topLevel":false},"asz":{"opcode":"operator_subtract","next":null,"parent":"ast","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"asA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asA":{"opcode":"operator_mod","next":null,"parent":"asz","inputs":{"NUM1":[3,"asB",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"asB":{"opcode":"operator_mathop","next":null,"parent":"asA","inputs":{"NUM":[3,"asC",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"asC":{"opcode":"operator_divide","next":null,"parent":"asB","inputs":{"NUM1":[3,"asD",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"asD":{"opcode":"sensing_of","next":null,"parent":"asC","inputs":{"OBJECT":[1,"bo["]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo[":{"opcode":"sensing_of_object_menu","next":null,"parent":"asD","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"jU":{"opcode":"control_if","next":"Ag","parent":"jT","inputs":{"CONDITION":[2,"bo]"],"SUBSTACK":[2,"asE"]},"fields":{},"shadow":false,"topLevel":false},"bo]":{"opcode":"operator_equals","next":null,"parent":"jU","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"asE":{"opcode":"data_setvariableto","next":null,"parent":"jU","inputs":{"VALUE":[3,"asF",[10,""]]},"fields":{"VARIABLE":["a_volume","^1+.`x@~.CAD5*aQd5z?"]},"shadow":false,"topLevel":false},"asF":{"opcode":"operator_multiply","next":null,"parent":"asE","inputs":{"NUM1":[3,"asG",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"asG":{"opcode":"operator_mod","next":null,"parent":"asF","inputs":{"NUM1":[3,"asH",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asH":{"opcode":"sensing_of","next":null,"parent":"asG","inputs":{"OBJECT":[1,"bo^"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo^":{"opcode":"sensing_of_object_menu","next":null,"parent":"asH","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"Ag":{"opcode":"control_if","next":"Ah","parent":"jU","inputs":{"CONDITION":[2,"bo_"],"SUBSTACK":[2,"asI"]},"fields":{},"shadow":false,"topLevel":false},"bo_":{"opcode":"operator_equals","next":null,"parent":"Ag","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"asI":{"opcode":"data_setvariableto","next":null,"parent":"Ag","inputs":{"VALUE":[3,"asJ",[10,""]]},"fields":{"VARIABLE":["b_volume","bp]UrL+l(!XQs0b81aNn"]},"shadow":false,"topLevel":false},"asJ":{"opcode":"operator_multiply","next":null,"parent":"asI","inputs":{"NUM1":[3,"asK",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"asK":{"opcode":"operator_mod","next":null,"parent":"asJ","inputs":{"NUM1":[3,"asL",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asL":{"opcode":"sensing_of","next":null,"parent":"asK","inputs":{"OBJECT":[1,"bo`"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo`":{"opcode":"sensing_of_object_menu","next":null,"parent":"asL","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"Ah":{"opcode":"control_if","next":"Ai","parent":"Ag","inputs":{"CONDITION":[2,"bo{"],"SUBSTACK":[2,"asM"]},"fields":{},"shadow":false,"topLevel":false},"bo{":{"opcode":"operator_equals","next":null,"parent":"Ah","inputs":{"OPERAND1":[3,[12,"command",",t*Z$?npxtUrPvuD([wH"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"asM":{"opcode":"data_setvariableto","next":null,"parent":"Ah","inputs":{"VALUE":[3,"asN",[10,""]]},"fields":{"VARIABLE":["c_volume","[y{.(/{:CXtsj~;{6tBJ"]},"shadow":false,"topLevel":false},"asN":{"opcode":"operator_multiply","next":null,"parent":"asM","inputs":{"NUM1":[3,"asO",[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"asO":{"opcode":"operator_mod","next":null,"parent":"asN","inputs":{"NUM1":[3,"asP",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"asP":{"opcode":"sensing_of","next":null,"parent":"asO","inputs":{"OBJECT":[1,"bo|"]},"fields":{"PROPERTY":["nes: data",null]},"shadow":false,"topLevel":false},"bo|":{"opcode":"sensing_of_object_menu","next":null,"parent":"asP","inputs":{},"fields":{"OBJECT":["nes",null]},"shadow":true,"topLevel":false},"Ai":{"opcode":"data_setvariableto","next":"Aj","parent":"Ah","inputs":{"VALUE":[3,"asQ",[10,""]]},"fields":{"VARIABLE":["a_freq","*BbF=^noa+^(po`UzO^q"]},"shadow":false,"topLevel":false},"asQ":{"opcode":"operator_divide","next":null,"parent":"Ai","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"bo}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo}":{"opcode":"operator_multiply","next":null,"parent":"asQ","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"a_period","C$3%UxOY37Q#Dsvx}pl%"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Aj":{"opcode":"data_setvariableto","next":"asR","parent":"Ai","inputs":{"VALUE":[3,"asS",[10,""]]},"fields":{"VARIABLE":["b_freq","A.FiYg2V3]9MvGX^[W-F"]},"shadow":false,"topLevel":false},"asS":{"opcode":"operator_divide","next":null,"parent":"Aj","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"bo~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bo~":{"opcode":"operator_multiply","next":null,"parent":"asS","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"b_period","1dl`5c(ttkH8zjjKw3]h"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asR":{"opcode":"data_setvariableto","next":null,"parent":"Aj","inputs":{"VALUE":[3,"asT",[10,""]]},"fields":{"VARIABLE":["c_freq","0!}3I/:t|H,p/H;u;cje"]},"shadow":false,"topLevel":false},"asT":{"opcode":"operator_divide","next":null,"parent":"asR","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"bpa",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpa":{"opcode":"operator_multiply","next":null,"parent":"asT","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,[12,"c_period","Zglcb5*?xw@Pwq/!OgNE"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpb":{"opcode":"event_whenbroadcastreceived","next":"Ak","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":933,"y":64},"Ak":{"opcode":"control_if","next":null,"parent":"bpb","inputs":{"CONDITION":[2,"bpc"],"SUBSTACK":[2,"asU"]},"fields":{},"shadow":false,"topLevel":false},"bpc":{"opcode":"operator_equals","next":null,"parent":"Ak","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"asU":{"opcode":"control_for_each","next":null,"parent":"Ak","inputs":{"VALUE":[1,[6,"9"]],"SUBSTACK":[2,"asV"]},"fields":{"VARIABLE":["id","~iiQIbIjt?[mwNAT~huV"]},"shadow":false,"topLevel":false},"asV":{"opcode":"control_create_clone_of","next":null,"parent":"asU","inputs":{"CLONE_OPTION":[1,"bpd"]},"fields":{},"shadow":false,"topLevel":false},"bpd":{"opcode":"control_create_clone_of_menu","next":null,"parent":"asV","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"bpe":{"opcode":"control_start_as_clone","next":"asW","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":933,"y":620},"asW":{"opcode":"sound_setvolumeto","next":"Al","parent":"bpe","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Al":{"opcode":"control_if","next":"Am","parent":"asW","inputs":{"CONDITION":[2,"bpf"],"SUBSTACK":[2,"asX"]},"fields":{},"shadow":false,"topLevel":false},"bpf":{"opcode":"operator_equals","next":null,"parent":"Al","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"asX":{"opcode":"control_forever","next":null,"parent":"Al","inputs":{"SUBSTACK":[2,"asY"]},"fields":{},"shadow":false,"topLevel":false},"asY":{"opcode":"sound_setvolumeto","next":null,"parent":"asX","inputs":{"VOLUME":[3,"asZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"asZ":{"opcode":"operator_multiply","next":null,"parent":"asY","inputs":{"NUM1":[3,"as!",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as!":{"opcode":"operator_multiply","next":null,"parent":"asZ","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"bpg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpg":{"opcode":"operator_lt","next":null,"parent":"as!","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"Am":{"opcode":"control_if","next":"An","parent":"Al","inputs":{"CONDITION":[2,"bph"],"SUBSTACK":[2,"as#"]},"fields":{},"shadow":false,"topLevel":false},"bph":{"opcode":"operator_equals","next":null,"parent":"Am","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as#":{"opcode":"control_forever","next":null,"parent":"Am","inputs":{"SUBSTACK":[2,"as%"]},"fields":{},"shadow":false,"topLevel":false},"as%":{"opcode":"sound_setvolumeto","next":null,"parent":"as#","inputs":{"VOLUME":[3,"as(",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as(":{"opcode":"operator_multiply","next":null,"parent":"as%","inputs":{"NUM1":[3,"as)",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as)":{"opcode":"operator_multiply","next":null,"parent":"as(","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"Ao",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ao":{"opcode":"operator_and","next":null,"parent":"as)","inputs":{"OPERAND1":[2,"bpi"],"OPERAND2":[2,"bpj"]},"fields":{},"shadow":false,"topLevel":false},"bpi":{"opcode":"operator_gt","next":null,"parent":"Ao","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bpj":{"opcode":"operator_lt","next":null,"parent":"Ao","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"An":{"opcode":"control_if","next":"Ap","parent":"Am","inputs":{"CONDITION":[2,"bpk"],"SUBSTACK":[2,"as*"]},"fields":{},"shadow":false,"topLevel":false},"bpk":{"opcode":"operator_equals","next":null,"parent":"An","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"as*":{"opcode":"control_forever","next":null,"parent":"An","inputs":{"SUBSTACK":[2,"as+"]},"fields":{},"shadow":false,"topLevel":false},"as+":{"opcode":"sound_setvolumeto","next":null,"parent":"as*","inputs":{"VOLUME":[3,"as,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as,":{"opcode":"operator_multiply","next":null,"parent":"as+","inputs":{"NUM1":[3,"as-",[4,0]],"NUM2":[3,[12,"a_enabled","3Wx!o~B/=iFPCh,V5Ll^"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as-":{"opcode":"operator_multiply","next":null,"parent":"as,","inputs":{"NUM1":[3,[12,"a_volume","^1+.`x@~.CAD5*aQd5z?"],[4,0]],"NUM2":[3,"bpl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpl":{"opcode":"operator_gt","next":null,"parent":"as-","inputs":{"OPERAND1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"Ap":{"opcode":"control_if","next":"Aq","parent":"An","inputs":{"CONDITION":[2,"bpm"],"SUBSTACK":[2,"as."]},"fields":{},"shadow":false,"topLevel":false},"bpm":{"opcode":"operator_equals","next":null,"parent":"Ap","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"as.":{"opcode":"control_forever","next":null,"parent":"Ap","inputs":{"SUBSTACK":[2,"as/"]},"fields":{},"shadow":false,"topLevel":false},"as/":{"opcode":"sound_setvolumeto","next":null,"parent":"as.","inputs":{"VOLUME":[3,"as:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as:":{"opcode":"operator_multiply","next":null,"parent":"as/","inputs":{"NUM1":[3,"as;",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as;":{"opcode":"operator_multiply","next":null,"parent":"as:","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"bpn",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpn":{"opcode":"operator_lt","next":null,"parent":"as;","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"Aq":{"opcode":"control_if","next":"Ar","parent":"Ap","inputs":{"CONDITION":[2,"bpo"],"SUBSTACK":[2,"as="]},"fields":{},"shadow":false,"topLevel":false},"bpo":{"opcode":"operator_equals","next":null,"parent":"Aq","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"as=":{"opcode":"control_forever","next":null,"parent":"Aq","inputs":{"SUBSTACK":[2,"as?"]},"fields":{},"shadow":false,"topLevel":false},"as?":{"opcode":"sound_setvolumeto","next":null,"parent":"as=","inputs":{"VOLUME":[3,"as@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as@":{"opcode":"operator_multiply","next":null,"parent":"as?","inputs":{"NUM1":[3,"as[",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as[":{"opcode":"operator_multiply","next":null,"parent":"as@","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"#J",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"#J":{"opcode":"operator_and","next":null,"parent":"as[","inputs":{"OPERAND1":[2,"bpp"],"OPERAND2":[2,"bpq"]},"fields":{},"shadow":false,"topLevel":false},"bpp":{"opcode":"operator_gt","next":null,"parent":"#J","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bpq":{"opcode":"operator_lt","next":null,"parent":"#J","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"Ar":{"opcode":"control_if","next":"As","parent":"Aq","inputs":{"CONDITION":[2,"bpr"],"SUBSTACK":[2,"as]"]},"fields":{},"shadow":false,"topLevel":false},"bpr":{"opcode":"operator_equals","next":null,"parent":"Ar","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"as]":{"opcode":"control_forever","next":null,"parent":"Ar","inputs":{"SUBSTACK":[2,"as^"]},"fields":{},"shadow":false,"topLevel":false},"as^":{"opcode":"sound_setvolumeto","next":null,"parent":"as]","inputs":{"VOLUME":[3,"as_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as_":{"opcode":"operator_multiply","next":null,"parent":"as^","inputs":{"NUM1":[3,"as`",[4,0]],"NUM2":[3,[12,"b_enabled","WVeQ5OsR!_8f|-c%t5(G"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as`":{"opcode":"operator_multiply","next":null,"parent":"as_","inputs":{"NUM1":[3,[12,"b_volume","bp]UrL+l(!XQs0b81aNn"],[4,0]],"NUM2":[3,"bps",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bps":{"opcode":"operator_gt","next":null,"parent":"as`","inputs":{"OPERAND1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"As":{"opcode":"control_if","next":"At","parent":"Ar","inputs":{"CONDITION":[2,"bpt"],"SUBSTACK":[2,"as{"]},"fields":{},"shadow":false,"topLevel":false},"bpt":{"opcode":"operator_equals","next":null,"parent":"As","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"as{":{"opcode":"control_forever","next":null,"parent":"As","inputs":{"SUBSTACK":[2,"as|"]},"fields":{},"shadow":false,"topLevel":false},"as|":{"opcode":"sound_setvolumeto","next":null,"parent":"as{","inputs":{"VOLUME":[3,"as}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as}":{"opcode":"operator_multiply","next":null,"parent":"as|","inputs":{"NUM1":[3,"as~",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"as~":{"opcode":"operator_multiply","next":null,"parent":"as}","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"bpu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpu":{"opcode":"operator_lt","next":null,"parent":"as~","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"At":{"opcode":"control_if","next":"#K","parent":"As","inputs":{"CONDITION":[2,"bpv"],"SUBSTACK":[2,"ata"]},"fields":{},"shadow":false,"topLevel":false},"bpv":{"opcode":"operator_equals","next":null,"parent":"At","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ata":{"opcode":"control_forever","next":null,"parent":"At","inputs":{"SUBSTACK":[2,"atb"]},"fields":{},"shadow":false,"topLevel":false},"atb":{"opcode":"sound_setvolumeto","next":null,"parent":"ata","inputs":{"VOLUME":[3,"atc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atc":{"opcode":"operator_multiply","next":null,"parent":"atb","inputs":{"NUM1":[3,"atd",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atd":{"opcode":"operator_multiply","next":null,"parent":"atc","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"#L",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"#L":{"opcode":"operator_and","next":null,"parent":"atd","inputs":{"OPERAND1":[2,"bpw"],"OPERAND2":[2,"bpx"]},"fields":{},"shadow":false,"topLevel":false},"bpw":{"opcode":"operator_gt","next":null,"parent":"#L","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bpx":{"opcode":"operator_lt","next":null,"parent":"#L","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"#K":{"opcode":"control_if","next":null,"parent":"At","inputs":{"CONDITION":[2,"bpy"],"SUBSTACK":[2,"ate"]},"fields":{},"shadow":false,"topLevel":false},"bpy":{"opcode":"operator_equals","next":null,"parent":"#K","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ate":{"opcode":"control_forever","next":null,"parent":"#K","inputs":{"SUBSTACK":[2,"atf"]},"fields":{},"shadow":false,"topLevel":false},"atf":{"opcode":"sound_setvolumeto","next":null,"parent":"ate","inputs":{"VOLUME":[3,"atg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atg":{"opcode":"operator_multiply","next":null,"parent":"atf","inputs":{"NUM1":[3,"ath",[4,0]],"NUM2":[3,[12,"c_enabled","caul(Af@e*}P?S`EA[Qa"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ath":{"opcode":"operator_multiply","next":null,"parent":"atg","inputs":{"NUM1":[3,[12,"c_volume","[y{.(/{:CXtsj~;{6tBJ"],[4,0]],"NUM2":[3,"bpz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bpz":{"opcode":"operator_gt","next":null,"parent":"ath","inputs":{"OPERAND1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"bpA":{"opcode":"control_start_as_clone","next":"ati","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1897,"y":64},"ati":{"opcode":"sound_cleareffects","next":"Au","parent":"bpA","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Au":{"opcode":"control_if","next":"Av","parent":"ati","inputs":{"CONDITION":[2,"bpB"],"SUBSTACK":[2,"atj"]},"fields":{},"shadow":false,"topLevel":false},"bpB":{"opcode":"operator_equals","next":null,"parent":"Au","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"atj":{"opcode":"control_forever","next":null,"parent":"Au","inputs":{"SUBSTACK":[2,"atk"]},"fields":{},"shadow":false,"topLevel":false},"atk":{"opcode":"sound_seteffectto","next":null,"parent":"atj","inputs":{"VALUE":[3,"atl",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atl":{"opcode":"operator_multiply","next":null,"parent":"atk","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atm",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atm":{"opcode":"operator_mathop","next":null,"parent":"atl","inputs":{"NUM":[3,"bpC",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpC":{"opcode":"operator_divide","next":null,"parent":"atm","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"Av":{"opcode":"control_if","next":"Aw","parent":"Au","inputs":{"CONDITION":[2,"bpD"],"SUBSTACK":[2,"atn"]},"fields":{},"shadow":false,"topLevel":false},"bpD":{"opcode":"operator_equals","next":null,"parent":"Av","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"atn":{"opcode":"control_forever","next":null,"parent":"Av","inputs":{"SUBSTACK":[2,"ato"]},"fields":{},"shadow":false,"topLevel":false},"ato":{"opcode":"sound_seteffectto","next":null,"parent":"atn","inputs":{"VALUE":[3,"atp",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atp":{"opcode":"operator_multiply","next":null,"parent":"ato","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atq":{"opcode":"operator_mathop","next":null,"parent":"atp","inputs":{"NUM":[3,"bpE",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpE":{"opcode":"operator_divide","next":null,"parent":"atq","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"Aw":{"opcode":"control_if","next":"Ax","parent":"Av","inputs":{"CONDITION":[2,"bpF"],"SUBSTACK":[2,"atr"]},"fields":{},"shadow":false,"topLevel":false},"bpF":{"opcode":"operator_equals","next":null,"parent":"Aw","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"atr":{"opcode":"control_forever","next":null,"parent":"Aw","inputs":{"SUBSTACK":[2,"ats"]},"fields":{},"shadow":false,"topLevel":false},"ats":{"opcode":"sound_seteffectto","next":null,"parent":"atr","inputs":{"VALUE":[3,"att",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"att":{"opcode":"operator_multiply","next":null,"parent":"ats","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atu":{"opcode":"operator_mathop","next":null,"parent":"att","inputs":{"NUM":[3,"bpG",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpG":{"opcode":"operator_divide","next":null,"parent":"atu","inputs":{"NUM1":[3,[12,"a_freq","*BbF=^noa+^(po`UzO^q"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"Ax":{"opcode":"control_if","next":"Ay","parent":"Aw","inputs":{"CONDITION":[2,"bpH"],"SUBSTACK":[2,"atv"]},"fields":{},"shadow":false,"topLevel":false},"bpH":{"opcode":"operator_equals","next":null,"parent":"Ax","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"atv":{"opcode":"control_forever","next":null,"parent":"Ax","inputs":{"SUBSTACK":[2,"atw"]},"fields":{},"shadow":false,"topLevel":false},"atw":{"opcode":"sound_seteffectto","next":null,"parent":"atv","inputs":{"VALUE":[3,"atx",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atx":{"opcode":"operator_multiply","next":null,"parent":"atw","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"aty",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aty":{"opcode":"operator_mathop","next":null,"parent":"atx","inputs":{"NUM":[3,"bpI",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpI":{"opcode":"operator_divide","next":null,"parent":"aty","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"Ay":{"opcode":"control_if","next":"Az","parent":"Ax","inputs":{"CONDITION":[2,"bpJ"],"SUBSTACK":[2,"atz"]},"fields":{},"shadow":false,"topLevel":false},"bpJ":{"opcode":"operator_equals","next":null,"parent":"Ay","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"atz":{"opcode":"control_forever","next":null,"parent":"Ay","inputs":{"SUBSTACK":[2,"atA"]},"fields":{},"shadow":false,"topLevel":false},"atA":{"opcode":"sound_seteffectto","next":null,"parent":"atz","inputs":{"VALUE":[3,"atB",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atB":{"opcode":"operator_multiply","next":null,"parent":"atA","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atC":{"opcode":"operator_mathop","next":null,"parent":"atB","inputs":{"NUM":[3,"bpK",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpK":{"opcode":"operator_divide","next":null,"parent":"atC","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"Az":{"opcode":"control_if","next":"AA","parent":"Ay","inputs":{"CONDITION":[2,"bpL"],"SUBSTACK":[2,"atD"]},"fields":{},"shadow":false,"topLevel":false},"bpL":{"opcode":"operator_equals","next":null,"parent":"Az","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"atD":{"opcode":"control_forever","next":null,"parent":"Az","inputs":{"SUBSTACK":[2,"atE"]},"fields":{},"shadow":false,"topLevel":false},"atE":{"opcode":"sound_seteffectto","next":null,"parent":"atD","inputs":{"VALUE":[3,"atF",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atF":{"opcode":"operator_multiply","next":null,"parent":"atE","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atG":{"opcode":"operator_mathop","next":null,"parent":"atF","inputs":{"NUM":[3,"bpM",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpM":{"opcode":"operator_divide","next":null,"parent":"atG","inputs":{"NUM1":[3,[12,"b_freq","A.FiYg2V3]9MvGX^[W-F"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"AA":{"opcode":"control_if","next":"AB","parent":"Az","inputs":{"CONDITION":[2,"bpN"],"SUBSTACK":[2,"atH"]},"fields":{},"shadow":false,"topLevel":false},"bpN":{"opcode":"operator_equals","next":null,"parent":"AA","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"atH":{"opcode":"control_forever","next":null,"parent":"AA","inputs":{"SUBSTACK":[2,"atI"]},"fields":{},"shadow":false,"topLevel":false},"atI":{"opcode":"sound_seteffectto","next":null,"parent":"atH","inputs":{"VALUE":[3,"atJ",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atJ":{"opcode":"operator_multiply","next":null,"parent":"atI","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atK":{"opcode":"operator_mathop","next":null,"parent":"atJ","inputs":{"NUM":[3,"bpO",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpO":{"opcode":"operator_divide","next":null,"parent":"atK","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"AB":{"opcode":"control_if","next":"#M","parent":"AA","inputs":{"CONDITION":[2,"bpP"],"SUBSTACK":[2,"atL"]},"fields":{},"shadow":false,"topLevel":false},"bpP":{"opcode":"operator_equals","next":null,"parent":"AB","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"atL":{"opcode":"control_forever","next":null,"parent":"AB","inputs":{"SUBSTACK":[2,"atM"]},"fields":{},"shadow":false,"topLevel":false},"atM":{"opcode":"sound_seteffectto","next":null,"parent":"atL","inputs":{"VALUE":[3,"atN",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atN":{"opcode":"operator_multiply","next":null,"parent":"atM","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atO":{"opcode":"operator_mathop","next":null,"parent":"atN","inputs":{"NUM":[3,"bpQ",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpQ":{"opcode":"operator_divide","next":null,"parent":"atO","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"#M":{"opcode":"control_if","next":null,"parent":"AB","inputs":{"CONDITION":[2,"bpR"],"SUBSTACK":[2,"atP"]},"fields":{},"shadow":false,"topLevel":false},"bpR":{"opcode":"operator_equals","next":null,"parent":"#M","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"atP":{"opcode":"control_forever","next":null,"parent":"#M","inputs":{"SUBSTACK":[2,"atQ"]},"fields":{},"shadow":false,"topLevel":false},"atQ":{"opcode":"sound_seteffectto","next":null,"parent":"atP","inputs":{"VALUE":[3,"atR",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"atR":{"opcode":"operator_multiply","next":null,"parent":"atQ","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"atS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"atS":{"opcode":"operator_mathop","next":null,"parent":"atR","inputs":{"NUM":[3,"bpS",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"bpS":{"opcode":"operator_divide","next":null,"parent":"atS","inputs":{"NUM1":[3,[12,"c_freq","0!}3I/:t|H,p/H;u;cje"],[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"bpT":{"opcode":"event_whenbroadcastreceived","next":"atT","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":933,"y":404},"atT":{"opcode":"sound_stopallsounds","next":"bpU","parent":"bpT","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bpU":{"opcode":"control_delete_this_clone","next":null,"parent":"atT","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bpV":{"opcode":"control_start_as_clone","next":"atU","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2639,"y":64},"atU":{"opcode":"control_wait","next":"AC","parent":"bpV","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"AC":{"opcode":"control_if","next":"AD","parent":"atU","inputs":{"CONDITION":[2,"bpW"],"SUBSTACK":[2,"atV"]},"fields":{},"shadow":false,"topLevel":false},"bpW":{"opcode":"operator_equals","next":null,"parent":"AC","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"atV":{"opcode":"control_forever","next":null,"parent":"AC","inputs":{"SUBSTACK":[2,"atW"]},"fields":{},"shadow":false,"topLevel":false},"atW":{"opcode":"sound_playuntildone","next":null,"parent":"atV","inputs":{"SOUND_MENU":[1,"bpX"]},"fields":{},"shadow":false,"topLevel":false},"bpX":{"opcode":"sound_sounds_menu","next":null,"parent":"atW","inputs":{},"fields":{"SOUND_MENU":["0200",null]},"shadow":true,"topLevel":false},"AD":{"opcode":"control_if","next":"AE","parent":"AC","inputs":{"CONDITION":[2,"bpY"],"SUBSTACK":[2,"atX"]},"fields":{},"shadow":false,"topLevel":false},"bpY":{"opcode":"operator_equals","next":null,"parent":"AD","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"atX":{"opcode":"control_forever","next":null,"parent":"AD","inputs":{"SUBSTACK":[2,"atY"]},"fields":{},"shadow":false,"topLevel":false},"atY":{"opcode":"sound_playuntildone","next":null,"parent":"atX","inputs":{"SOUND_MENU":[1,"bpZ"]},"fields":{},"shadow":false,"topLevel":false},"bpZ":{"opcode":"sound_sounds_menu","next":null,"parent":"atY","inputs":{},"fields":{"SOUND_MENU":["0400",null]},"shadow":true,"topLevel":false},"AE":{"opcode":"control_if","next":"AF","parent":"AD","inputs":{"CONDITION":[2,"bp!"],"SUBSTACK":[2,"atZ"]},"fields":{},"shadow":false,"topLevel":false},"bp!":{"opcode":"operator_equals","next":null,"parent":"AE","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"atZ":{"opcode":"control_forever","next":null,"parent":"AE","inputs":{"SUBSTACK":[2,"at!"]},"fields":{},"shadow":false,"topLevel":false},"at!":{"opcode":"sound_playuntildone","next":null,"parent":"atZ","inputs":{"SOUND_MENU":[1,"bp#"]},"fields":{},"shadow":false,"topLevel":false},"bp#":{"opcode":"sound_sounds_menu","next":null,"parent":"at!","inputs":{},"fields":{"SOUND_MENU":["0800",null]},"shadow":true,"topLevel":false},"AF":{"opcode":"control_if","next":"AG","parent":"AE","inputs":{"CONDITION":[2,"bp%"],"SUBSTACK":[2,"at#"]},"fields":{},"shadow":false,"topLevel":false},"bp%":{"opcode":"operator_equals","next":null,"parent":"AF","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"at#":{"opcode":"control_forever","next":null,"parent":"AF","inputs":{"SUBSTACK":[2,"at%"]},"fields":{},"shadow":false,"topLevel":false},"at%":{"opcode":"sound_playuntildone","next":null,"parent":"at#","inputs":{"SOUND_MENU":[1,"bp("]},"fields":{},"shadow":false,"topLevel":false},"bp(":{"opcode":"sound_sounds_menu","next":null,"parent":"at%","inputs":{},"fields":{"SOUND_MENU":["1200",null]},"shadow":true,"topLevel":false},"AG":{"opcode":"control_if","next":"AH","parent":"AF","inputs":{"CONDITION":[2,"bp)"],"SUBSTACK":[2,"at("]},"fields":{},"shadow":false,"topLevel":false},"bp)":{"opcode":"operator_equals","next":null,"parent":"AG","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"at(":{"opcode":"control_forever","next":null,"parent":"AG","inputs":{"SUBSTACK":[2,"at)"]},"fields":{},"shadow":false,"topLevel":false},"at)":{"opcode":"sound_playuntildone","next":null,"parent":"at(","inputs":{"SOUND_MENU":[1,"bp*"]},"fields":{},"shadow":false,"topLevel":false},"bp*":{"opcode":"sound_sounds_menu","next":null,"parent":"at)","inputs":{},"fields":{"SOUND_MENU":["1400",null]},"shadow":true,"topLevel":false},"AH":{"opcode":"control_if","next":"AI","parent":"AG","inputs":{"CONDITION":[2,"bp+"],"SUBSTACK":[2,"at*"]},"fields":{},"shadow":false,"topLevel":false},"bp+":{"opcode":"operator_equals","next":null,"parent":"AH","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"at*":{"opcode":"control_forever","next":null,"parent":"AH","inputs":{"SUBSTACK":[2,"at+"]},"fields":{},"shadow":false,"topLevel":false},"at+":{"opcode":"sound_playuntildone","next":null,"parent":"at*","inputs":{"SOUND_MENU":[1,"bp,"]},"fields":{},"shadow":false,"topLevel":false},"bp,":{"opcode":"sound_sounds_menu","next":null,"parent":"at+","inputs":{},"fields":{"SOUND_MENU":["1800",null]},"shadow":true,"topLevel":false},"AI":{"opcode":"control_if","next":"AJ","parent":"AH","inputs":{"CONDITION":[2,"bp-"],"SUBSTACK":[2,"at,"]},"fields":{},"shadow":false,"topLevel":false},"bp-":{"opcode":"operator_equals","next":null,"parent":"AI","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"at,":{"opcode":"control_forever","next":null,"parent":"AI","inputs":{"SUBSTACK":[2,"at-"]},"fields":{},"shadow":false,"topLevel":false},"at-":{"opcode":"sound_playuntildone","next":null,"parent":"at,","inputs":{"SOUND_MENU":[1,"bp."]},"fields":{},"shadow":false,"topLevel":false},"bp.":{"opcode":"sound_sounds_menu","next":null,"parent":"at-","inputs":{},"fields":{"SOUND_MENU":["2200",null]},"shadow":true,"topLevel":false},"AJ":{"opcode":"control_if","next":"#N","parent":"AI","inputs":{"CONDITION":[2,"bp/"],"SUBSTACK":[2,"at."]},"fields":{},"shadow":false,"topLevel":false},"bp/":{"opcode":"operator_equals","next":null,"parent":"AJ","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"at.":{"opcode":"control_forever","next":null,"parent":"AJ","inputs":{"SUBSTACK":[2,"at/"]},"fields":{},"shadow":false,"topLevel":false},"at/":{"opcode":"sound_playuntildone","next":null,"parent":"at.","inputs":{"SOUND_MENU":[1,"bp:"]},"fields":{},"shadow":false,"topLevel":false},"bp:":{"opcode":"sound_sounds_menu","next":null,"parent":"at/","inputs":{},"fields":{"SOUND_MENU":["2400",null]},"shadow":true,"topLevel":false},"#N":{"opcode":"control_if","next":null,"parent":"AJ","inputs":{"CONDITION":[2,"bp;"],"SUBSTACK":[2,"at:"]},"fields":{},"shadow":false,"topLevel":false},"bp;":{"opcode":"operator_equals","next":null,"parent":"#N","inputs":{"OPERAND1":[3,[12,"id","~iiQIbIjt?[mwNAT~huV"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"at:":{"opcode":"control_forever","next":null,"parent":"#N","inputs":{"SUBSTACK":[2,"at;"]},"fields":{},"shadow":false,"topLevel":false},"at;":{"opcode":"sound_playuntildone","next":null,"parent":"at:","inputs":{"SOUND_MENU":[1,"bp="]},"fields":{},"shadow":false,"topLevel":false},"bp=":{"opcode":"sound_sounds_menu","next":null,"parent":"at;","inputs":{},"fields":{"SOUND_MENU":["2800",null]},"shadow":true,"topLevel":false},"bp?":{"opcode":"event_whenflagclicked","next":"at=","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"at=":{"opcode":"data_setvariableto","next":"at?","parent":"bp?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["a_volume","^1+.`x@~.CAD5*aQd5z?"]},"shadow":false,"topLevel":false},"at?":{"opcode":"data_setvariableto","next":"bp@","parent":"at=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["b_volume","bp]UrL+l(!XQs0b81aNn"]},"shadow":false,"topLevel":false},"bp@":{"opcode":"data_setvariableto","next":null,"parent":"at?","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["c_volume","[y{.(/{:CXtsj~;{6tBJ"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"0200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"0400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"0800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"1200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"1400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"1800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"2200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"2400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"2800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"}],"volume":100,"layerOrder":10,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"pulse0","variables":{";Xw{G@Fj6{52PEY#;]UT":["id",12]},"lists":{},"broadcasts":{},"blocks":{"bp[":{"opcode":"event_whenbroadcastreceived","next":"#O","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"#O":{"opcode":"control_if","next":null,"parent":"bp[","inputs":{"CONDITION":[2,"bp]"],"SUBSTACK":[2,"at@"]},"fields":{},"shadow":false,"topLevel":false},"bp]":{"opcode":"operator_equals","next":null,"parent":"#O","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"at@":{"opcode":"control_for_each","next":null,"parent":"#O","inputs":{"VALUE":[1,[6,"12"]],"SUBSTACK":[2,"at["]},"fields":{"VARIABLE":["id",";Xw{G@Fj6{52PEY#;]UT"]},"shadow":false,"topLevel":false},"at[":{"opcode":"control_create_clone_of","next":null,"parent":"at@","inputs":{"CLONE_OPTION":[1,"bp^"]},"fields":{},"shadow":false,"topLevel":false},"bp^":{"opcode":"control_create_clone_of_menu","next":null,"parent":"at[","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"bp_":{"opcode":"event_whenbroadcastreceived","next":"at]","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"at]":{"opcode":"sound_stopallsounds","next":"bp`","parent":"bp_","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bp`":{"opcode":"control_delete_this_clone","next":null,"parent":"at]","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bp{":{"opcode":"control_start_as_clone","next":"at^","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"at^":{"opcode":"control_wait","next":"Xo","parent":"bp{","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Xo":{"opcode":"control_if","next":"Xp","parent":"at^","inputs":{"CONDITION":[2,"bp|"],"SUBSTACK":[2,"at_"]},"fields":{},"shadow":false,"topLevel":false},"bp|":{"opcode":"operator_equals","next":null,"parent":"Xo","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"at_":{"opcode":"control_forever","next":null,"parent":"Xo","inputs":{"SUBSTACK":[2,"at`"]},"fields":{},"shadow":false,"topLevel":false},"at`":{"opcode":"sound_playuntildone","next":null,"parent":"at_","inputs":{"SOUND_MENU":[1,"bp}"]},"fields":{},"shadow":false,"topLevel":false},"bp}":{"opcode":"sound_sounds_menu","next":null,"parent":"at`","inputs":{},"fields":{"SOUND_MENU":["square0_200",null]},"shadow":true,"topLevel":false},"Xp":{"opcode":"control_if","next":"Xq","parent":"Xo","inputs":{"CONDITION":[2,"bp~"],"SUBSTACK":[2,"at{"]},"fields":{},"shadow":false,"topLevel":false},"bp~":{"opcode":"operator_equals","next":null,"parent":"Xp","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"at{":{"opcode":"control_forever","next":null,"parent":"Xp","inputs":{"SUBSTACK":[2,"at|"]},"fields":{},"shadow":false,"topLevel":false},"at|":{"opcode":"sound_playuntildone","next":null,"parent":"at{","inputs":{"SOUND_MENU":[1,"bqa"]},"fields":{},"shadow":false,"topLevel":false},"bqa":{"opcode":"sound_sounds_menu","next":null,"parent":"at|","inputs":{},"fields":{"SOUND_MENU":["square1_200",null]},"shadow":true,"topLevel":false},"Xq":{"opcode":"control_if","next":"Xr","parent":"Xp","inputs":{"CONDITION":[2,"bqb"],"SUBSTACK":[2,"at}"]},"fields":{},"shadow":false,"topLevel":false},"bqb":{"opcode":"operator_equals","next":null,"parent":"Xq","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"at}":{"opcode":"control_forever","next":null,"parent":"Xq","inputs":{"SUBSTACK":[2,"at~"]},"fields":{},"shadow":false,"topLevel":false},"at~":{"opcode":"sound_playuntildone","next":null,"parent":"at}","inputs":{"SOUND_MENU":[1,"bqc"]},"fields":{},"shadow":false,"topLevel":false},"bqc":{"opcode":"sound_sounds_menu","next":null,"parent":"at~","inputs":{},"fields":{"SOUND_MENU":["square2_200",null]},"shadow":true,"topLevel":false},"Xr":{"opcode":"control_if","next":"Xs","parent":"Xq","inputs":{"CONDITION":[2,"bqd"],"SUBSTACK":[2,"aua"]},"fields":{},"shadow":false,"topLevel":false},"bqd":{"opcode":"operator_equals","next":null,"parent":"Xr","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aua":{"opcode":"control_forever","next":null,"parent":"Xr","inputs":{"SUBSTACK":[2,"aub"]},"fields":{},"shadow":false,"topLevel":false},"aub":{"opcode":"sound_playuntildone","next":null,"parent":"aua","inputs":{"SOUND_MENU":[1,"bqe"]},"fields":{},"shadow":false,"topLevel":false},"bqe":{"opcode":"sound_sounds_menu","next":null,"parent":"aub","inputs":{},"fields":{"SOUND_MENU":["square3_200",null]},"shadow":true,"topLevel":false},"Xs":{"opcode":"control_if","next":"Xt","parent":"Xr","inputs":{"CONDITION":[2,"bqf"],"SUBSTACK":[2,"auc"]},"fields":{},"shadow":false,"topLevel":false},"bqf":{"opcode":"operator_equals","next":null,"parent":"Xs","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"auc":{"opcode":"control_forever","next":null,"parent":"Xs","inputs":{"SUBSTACK":[2,"aud"]},"fields":{},"shadow":false,"topLevel":false},"aud":{"opcode":"sound_playuntildone","next":null,"parent":"auc","inputs":{"SOUND_MENU":[1,"bqg"]},"fields":{},"shadow":false,"topLevel":false},"bqg":{"opcode":"sound_sounds_menu","next":null,"parent":"aud","inputs":{},"fields":{"SOUND_MENU":["square0_400",null]},"shadow":true,"topLevel":false},"Xt":{"opcode":"control_if","next":"AK","parent":"Xs","inputs":{"CONDITION":[2,"bqh"],"SUBSTACK":[2,"aue"]},"fields":{},"shadow":false,"topLevel":false},"bqh":{"opcode":"operator_equals","next":null,"parent":"Xt","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aue":{"opcode":"control_forever","next":null,"parent":"Xt","inputs":{"SUBSTACK":[2,"auf"]},"fields":{},"shadow":false,"topLevel":false},"auf":{"opcode":"sound_playuntildone","next":null,"parent":"aue","inputs":{"SOUND_MENU":[1,"bqi"]},"fields":{},"shadow":false,"topLevel":false},"bqi":{"opcode":"sound_sounds_menu","next":null,"parent":"auf","inputs":{},"fields":{"SOUND_MENU":["square1_400",null]},"shadow":true,"topLevel":false},"AK":{"opcode":"control_if","next":"AL","parent":"Xt","inputs":{"CONDITION":[2,"bqj"],"SUBSTACK":[2,"aug"]},"fields":{},"shadow":false,"topLevel":false},"bqj":{"opcode":"operator_equals","next":null,"parent":"AK","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"aug":{"opcode":"control_forever","next":null,"parent":"AK","inputs":{"SUBSTACK":[2,"auh"]},"fields":{},"shadow":false,"topLevel":false},"auh":{"opcode":"sound_playuntildone","next":null,"parent":"aug","inputs":{"SOUND_MENU":[1,"bqk"]},"fields":{},"shadow":false,"topLevel":false},"bqk":{"opcode":"sound_sounds_menu","next":null,"parent":"auh","inputs":{},"fields":{"SOUND_MENU":["square2_400",null]},"shadow":true,"topLevel":false},"AL":{"opcode":"control_if","next":"Xu","parent":"AK","inputs":{"CONDITION":[2,"bql"],"SUBSTACK":[2,"aui"]},"fields":{},"shadow":false,"topLevel":false},"bql":{"opcode":"operator_equals","next":null,"parent":"AL","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aui":{"opcode":"control_forever","next":null,"parent":"AL","inputs":{"SUBSTACK":[2,"auj"]},"fields":{},"shadow":false,"topLevel":false},"auj":{"opcode":"sound_playuntildone","next":null,"parent":"aui","inputs":{"SOUND_MENU":[1,"bqm"]},"fields":{},"shadow":false,"topLevel":false},"bqm":{"opcode":"sound_sounds_menu","next":null,"parent":"auj","inputs":{},"fields":{"SOUND_MENU":["square3_400",null]},"shadow":true,"topLevel":false},"Xu":{"opcode":"control_if","next":"Xv","parent":"AL","inputs":{"CONDITION":[2,"bqn"],"SUBSTACK":[2,"auk"]},"fields":{},"shadow":false,"topLevel":false},"bqn":{"opcode":"operator_equals","next":null,"parent":"Xu","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"auk":{"opcode":"control_forever","next":null,"parent":"Xu","inputs":{"SUBSTACK":[2,"aul"]},"fields":{},"shadow":false,"topLevel":false},"aul":{"opcode":"sound_playuntildone","next":null,"parent":"auk","inputs":{"SOUND_MENU":[1,"bqo"]},"fields":{},"shadow":false,"topLevel":false},"bqo":{"opcode":"sound_sounds_menu","next":null,"parent":"aul","inputs":{},"fields":{"SOUND_MENU":["square0_800",null]},"shadow":true,"topLevel":false},"Xv":{"opcode":"control_if","next":"AM","parent":"Xu","inputs":{"CONDITION":[2,"bqp"],"SUBSTACK":[2,"aum"]},"fields":{},"shadow":false,"topLevel":false},"bqp":{"opcode":"operator_equals","next":null,"parent":"Xv","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aum":{"opcode":"control_forever","next":null,"parent":"Xv","inputs":{"SUBSTACK":[2,"aun"]},"fields":{},"shadow":false,"topLevel":false},"aun":{"opcode":"sound_playuntildone","next":null,"parent":"aum","inputs":{"SOUND_MENU":[1,"bqq"]},"fields":{},"shadow":false,"topLevel":false},"bqq":{"opcode":"sound_sounds_menu","next":null,"parent":"aun","inputs":{},"fields":{"SOUND_MENU":["square1_800",null]},"shadow":true,"topLevel":false},"AM":{"opcode":"control_if","next":"#P","parent":"Xv","inputs":{"CONDITION":[2,"bqr"],"SUBSTACK":[2,"auo"]},"fields":{},"shadow":false,"topLevel":false},"bqr":{"opcode":"operator_equals","next":null,"parent":"AM","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"auo":{"opcode":"control_forever","next":null,"parent":"AM","inputs":{"SUBSTACK":[2,"aup"]},"fields":{},"shadow":false,"topLevel":false},"aup":{"opcode":"sound_playuntildone","next":null,"parent":"auo","inputs":{"SOUND_MENU":[1,"bqs"]},"fields":{},"shadow":false,"topLevel":false},"bqs":{"opcode":"sound_sounds_menu","next":null,"parent":"aup","inputs":{},"fields":{"SOUND_MENU":["square2_800",null]},"shadow":true,"topLevel":false},"#P":{"opcode":"control_if","next":null,"parent":"AM","inputs":{"CONDITION":[2,"bqt"],"SUBSTACK":[2,"auq"]},"fields":{},"shadow":false,"topLevel":false},"bqt":{"opcode":"operator_equals","next":null,"parent":"#P","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"auq":{"opcode":"control_forever","next":null,"parent":"#P","inputs":{"SUBSTACK":[2,"aur"]},"fields":{},"shadow":false,"topLevel":false},"aur":{"opcode":"sound_playuntildone","next":null,"parent":"auq","inputs":{"SOUND_MENU":[1,"bqu"]},"fields":{},"shadow":false,"topLevel":false},"bqu":{"opcode":"sound_sounds_menu","next":null,"parent":"aur","inputs":{},"fields":{"SOUND_MENU":["square3_800",null]},"shadow":true,"topLevel":false},"bqv":{"opcode":"control_start_as_clone","next":"aus","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":64},"aus":{"opcode":"sound_setvolumeto","next":"Xw","parent":"bqv","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Xw":{"opcode":"control_if","next":"Xx","parent":"aus","inputs":{"CONDITION":[2,"bqw"],"SUBSTACK":[2,"aut"]},"fields":{},"shadow":false,"topLevel":false},"bqw":{"opcode":"operator_lt","next":null,"parent":"Xw","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aut":{"opcode":"control_forever","next":null,"parent":"Xw","inputs":{"SUBSTACK":[2,"auu"]},"fields":{},"shadow":false,"topLevel":false},"auu":{"opcode":"sound_setvolumeto","next":null,"parent":"aut","inputs":{"VOLUME":[3,"AN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AN":{"opcode":"operator_multiply","next":null,"parent":"auu","inputs":{"NUM1":[3,"bqx",[4,0]],"NUM2":[3,"AO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bqx":{"opcode":"data_itemoflist","next":null,"parent":"AN","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AO":{"opcode":"operator_multiply","next":null,"parent":"AN","inputs":{"NUM1":[3,"auv",[4,0]],"NUM2":[3,"AP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auv":{"opcode":"operator_lt","next":null,"parent":"AO","inputs":{"OPERAND1":[3,"bqy",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bqy":{"opcode":"data_itemoflist","next":null,"parent":"auv","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AP":{"opcode":"operator_equals","next":null,"parent":"AO","inputs":{"OPERAND1":[3,"bqz",[10,""]],"OPERAND2":[3,"bqA",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bqz":{"opcode":"data_itemoflist","next":null,"parent":"AP","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bqA":{"opcode":"operator_subtract","next":null,"parent":"AP","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Xx":{"opcode":"control_if","next":"AQ","parent":"Xw","inputs":{"CONDITION":[2,"bqB"],"SUBSTACK":[2,"auw"]},"fields":{},"shadow":false,"topLevel":false},"bqB":{"opcode":"operator_lt","next":null,"parent":"Xx","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"auw":{"opcode":"control_forever","next":null,"parent":"Xx","inputs":{"SUBSTACK":[2,"aux"]},"fields":{},"shadow":false,"topLevel":false},"aux":{"opcode":"sound_setvolumeto","next":null,"parent":"auw","inputs":{"VOLUME":[3,"AR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AR":{"opcode":"operator_multiply","next":null,"parent":"aux","inputs":{"NUM1":[3,"bqC",[4,0]],"NUM2":[3,"AS",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bqC":{"opcode":"data_itemoflist","next":null,"parent":"AR","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AS":{"opcode":"operator_multiply","next":null,"parent":"AR","inputs":{"NUM1":[3,"AT",[4,0]],"NUM2":[3,"AU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AT":{"opcode":"operator_and","next":null,"parent":"AS","inputs":{"OPERAND1":[2,"auy"],"OPERAND2":[2,"auz"]},"fields":{},"shadow":false,"topLevel":false},"auy":{"opcode":"operator_gt","next":null,"parent":"AT","inputs":{"OPERAND1":[3,"bqD",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bqD":{"opcode":"data_itemoflist","next":null,"parent":"auy","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"auz":{"opcode":"operator_lt","next":null,"parent":"AT","inputs":{"OPERAND1":[3,"bqE",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"bqE":{"opcode":"data_itemoflist","next":null,"parent":"auz","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AU":{"opcode":"operator_equals","next":null,"parent":"AS","inputs":{"OPERAND1":[3,"bqF",[10,""]],"OPERAND2":[3,"bqG",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bqF":{"opcode":"data_itemoflist","next":null,"parent":"AU","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bqG":{"opcode":"operator_subtract","next":null,"parent":"AU","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"AQ":{"opcode":"control_if","next":null,"parent":"Xx","inputs":{"CONDITION":[2,"bqH"],"SUBSTACK":[2,"auA"]},"fields":{},"shadow":false,"topLevel":false},"bqH":{"opcode":"operator_lt","next":null,"parent":"AQ","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"auA":{"opcode":"control_forever","next":null,"parent":"AQ","inputs":{"SUBSTACK":[2,"auB"]},"fields":{},"shadow":false,"topLevel":false},"auB":{"opcode":"sound_setvolumeto","next":null,"parent":"auA","inputs":{"VOLUME":[3,"AV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"AV":{"opcode":"operator_multiply","next":null,"parent":"auB","inputs":{"NUM1":[3,"bqI",[4,0]],"NUM2":[3,"AW",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bqI":{"opcode":"data_itemoflist","next":null,"parent":"AV","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AW":{"opcode":"operator_multiply","next":null,"parent":"AV","inputs":{"NUM1":[3,"auC",[4,0]],"NUM2":[3,"AX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auC":{"opcode":"operator_gt","next":null,"parent":"AW","inputs":{"OPERAND1":[3,"bqJ",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"bqJ":{"opcode":"data_itemoflist","next":null,"parent":"auC","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AX":{"opcode":"operator_equals","next":null,"parent":"AW","inputs":{"OPERAND1":[3,"bqK",[10,""]],"OPERAND2":[3,"bqL",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bqK":{"opcode":"data_itemoflist","next":null,"parent":"AX","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bqL":{"opcode":"operator_subtract","next":null,"parent":"AX","inputs":{"NUM1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bqM":{"opcode":"control_start_as_clone","next":"auD","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":980},"auD":{"opcode":"sound_cleareffects","next":"AY","parent":"bqM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"AY":{"opcode":"control_if","next":"AZ","parent":"auD","inputs":{"CONDITION":[2,"bqN"],"SUBSTACK":[2,"auE"]},"fields":{},"shadow":false,"topLevel":false},"bqN":{"opcode":"operator_lt","next":null,"parent":"AY","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"auE":{"opcode":"control_forever","next":null,"parent":"AY","inputs":{"SUBSTACK":[2,"auF"]},"fields":{},"shadow":false,"topLevel":false},"auF":{"opcode":"sound_seteffectto","next":null,"parent":"auE","inputs":{"VALUE":[3,"auG",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"auG":{"opcode":"operator_multiply","next":null,"parent":"auF","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"auH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auH":{"opcode":"operator_mathop","next":null,"parent":"auG","inputs":{"NUM":[3,"auI",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"auI":{"opcode":"operator_divide","next":null,"parent":"auH","inputs":{"NUM1":[3,"bqO",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"bqO":{"opcode":"data_itemoflist","next":null,"parent":"auI","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"AZ":{"opcode":"control_if","next":"A!","parent":"AY","inputs":{"CONDITION":[2,"bqP"],"SUBSTACK":[2,"auJ"]},"fields":{},"shadow":false,"topLevel":false},"bqP":{"opcode":"operator_lt","next":null,"parent":"AZ","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"auJ":{"opcode":"control_forever","next":null,"parent":"AZ","inputs":{"SUBSTACK":[2,"auK"]},"fields":{},"shadow":false,"topLevel":false},"auK":{"opcode":"sound_seteffectto","next":null,"parent":"auJ","inputs":{"VALUE":[3,"auL",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"auL":{"opcode":"operator_multiply","next":null,"parent":"auK","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"auM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auM":{"opcode":"operator_mathop","next":null,"parent":"auL","inputs":{"NUM":[3,"auN",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"auN":{"opcode":"operator_divide","next":null,"parent":"auM","inputs":{"NUM1":[3,"bqQ",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"bqQ":{"opcode":"data_itemoflist","next":null,"parent":"auN","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"A!":{"opcode":"control_if","next":null,"parent":"AZ","inputs":{"CONDITION":[2,"bqR"],"SUBSTACK":[2,"auO"]},"fields":{},"shadow":false,"topLevel":false},"bqR":{"opcode":"operator_lt","next":null,"parent":"A!","inputs":{"OPERAND1":[3,[12,"id",";Xw{G@Fj6{52PEY#;]UT"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"auO":{"opcode":"control_forever","next":null,"parent":"A!","inputs":{"SUBSTACK":[2,"auP"]},"fields":{},"shadow":false,"topLevel":false},"auP":{"opcode":"sound_seteffectto","next":null,"parent":"auO","inputs":{"VALUE":[3,"auQ",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"auQ":{"opcode":"operator_multiply","next":null,"parent":"auP","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"auR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"auR":{"opcode":"operator_mathop","next":null,"parent":"auQ","inputs":{"NUM":[3,"auS",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"auS":{"opcode":"operator_divide","next":null,"parent":"auR","inputs":{"NUM1":[3,"bqS",[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"bqS":{"opcode":"data_itemoflist","next":null,"parent":"auS","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"square0_200","assetId":"e57364a4200c66d59c6cd2aad2ac279f","dataFormat":"wav","rate":48000,"sampleCount":192100,"md5ext":"e57364a4200c66d59c6cd2aad2ac279f.wav"},{"name":"square1_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square2_200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"square3_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square0_400","assetId":"bb3d65f47a8eb8759488124be13835a5","dataFormat":"wav","rate":48000,"sampleCount":192026,"md5ext":"bb3d65f47a8eb8759488124be13835a5.wav"},{"name":"square1_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square2_400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"square3_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square0_800","assetId":"1aded0d64fb9983939909d2a518a0995","dataFormat":"wav","rate":48000,"sampleCount":192017,"md5ext":"1aded0d64fb9983939909d2a518a0995.wav"},{"name":"square1_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"},{"name":"square2_800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"square3_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"}],"volume":0,"layerOrder":11,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"pulse1","variables":{"^R[WOHQM-#~uf#]*`Mv3":["id",12]},"lists":{},"broadcasts":{},"blocks":{"bqT":{"opcode":"event_whenbroadcastreceived","next":"A#","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"A#":{"opcode":"control_if","next":null,"parent":"bqT","inputs":{"CONDITION":[2,"bqU"],"SUBSTACK":[2,"auT"]},"fields":{},"shadow":false,"topLevel":false},"bqU":{"opcode":"operator_equals","next":null,"parent":"A#","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"auU":{"opcode":"control_forever","next":null,"parent":"A%","inputs":{"SUBSTACK":[2,"auV"]},"fields":{},"shadow":false,"topLevel":false},"auV":{"opcode":"sound_playuntildone","next":null,"parent":"auU","inputs":{"SOUND_MENU":[1,"bqV"]},"fields":{},"shadow":false,"topLevel":false},"bqV":{"opcode":"sound_sounds_menu","next":null,"parent":"auV","inputs":{},"fields":{"SOUND_MENU":["square0_200",null]},"shadow":true,"topLevel":false},"bqW":{"opcode":"event_whenbroadcastreceived","next":"auW","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"auW":{"opcode":"sound_stopallsounds","next":"bqX","parent":"bqW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"auX":{"opcode":"control_create_clone_of","next":null,"parent":"auT","inputs":{"CLONE_OPTION":[1,"bqY"]},"fields":{},"shadow":false,"topLevel":false},"bqY":{"opcode":"control_create_clone_of_menu","next":null,"parent":"auX","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"bqZ":{"opcode":"control_start_as_clone","next":"auY","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"auT":{"opcode":"control_for_each","next":null,"parent":"A#","inputs":{"VALUE":[1,[6,"12"]],"SUBSTACK":[2,"auX"]},"fields":{"VARIABLE":["id","^R[WOHQM-#~uf#]*`Mv3"]},"shadow":false,"topLevel":false},"A%":{"opcode":"control_if","next":"A(","parent":"auY","inputs":{"SUBSTACK":[2,"auU"],"CONDITION":[2,"bq!"]},"fields":{},"shadow":false,"topLevel":false},"bq!":{"opcode":"operator_equals","next":null,"parent":"A%","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A(":{"opcode":"control_if","next":"A)","parent":"A%","inputs":{"CONDITION":[2,"bq#"],"SUBSTACK":[2,"auZ"]},"fields":{},"shadow":false,"topLevel":false},"bq#":{"opcode":"operator_equals","next":null,"parent":"A(","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"auZ":{"opcode":"control_forever","next":null,"parent":"A(","inputs":{"SUBSTACK":[2,"au!"]},"fields":{},"shadow":false,"topLevel":false},"au!":{"opcode":"sound_playuntildone","next":null,"parent":"auZ","inputs":{"SOUND_MENU":[1,"bq%"]},"fields":{},"shadow":false,"topLevel":false},"bq%":{"opcode":"sound_sounds_menu","next":null,"parent":"au!","inputs":{},"fields":{"SOUND_MENU":["square1_200",null]},"shadow":true,"topLevel":false},"A)":{"opcode":"control_if","next":"A*","parent":"A(","inputs":{"CONDITION":[2,"bq("],"SUBSTACK":[2,"au#"]},"fields":{},"shadow":false,"topLevel":false},"bq(":{"opcode":"operator_equals","next":null,"parent":"A)","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"au#":{"opcode":"control_forever","next":null,"parent":"A)","inputs":{"SUBSTACK":[2,"au%"]},"fields":{},"shadow":false,"topLevel":false},"au%":{"opcode":"sound_playuntildone","next":null,"parent":"au#","inputs":{"SOUND_MENU":[1,"bq)"]},"fields":{},"shadow":false,"topLevel":false},"bq)":{"opcode":"sound_sounds_menu","next":null,"parent":"au%","inputs":{},"fields":{"SOUND_MENU":["square2_200",null]},"shadow":true,"topLevel":false},"A*":{"opcode":"control_if","next":"A+","parent":"A)","inputs":{"CONDITION":[2,"bq*"],"SUBSTACK":[2,"au("]},"fields":{},"shadow":false,"topLevel":false},"bq*":{"opcode":"operator_equals","next":null,"parent":"A*","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"au(":{"opcode":"control_forever","next":null,"parent":"A*","inputs":{"SUBSTACK":[2,"au)"]},"fields":{},"shadow":false,"topLevel":false},"au)":{"opcode":"sound_playuntildone","next":null,"parent":"au(","inputs":{"SOUND_MENU":[1,"bq+"]},"fields":{},"shadow":false,"topLevel":false},"bq+":{"opcode":"sound_sounds_menu","next":null,"parent":"au)","inputs":{},"fields":{"SOUND_MENU":["square3_200",null]},"shadow":true,"topLevel":false},"A+":{"opcode":"control_if","next":"A,","parent":"A*","inputs":{"CONDITION":[2,"bq,"],"SUBSTACK":[2,"au*"]},"fields":{},"shadow":false,"topLevel":false},"bq,":{"opcode":"operator_equals","next":null,"parent":"A+","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"au*":{"opcode":"control_forever","next":null,"parent":"A+","inputs":{"SUBSTACK":[2,"au+"]},"fields":{},"shadow":false,"topLevel":false},"au+":{"opcode":"sound_playuntildone","next":null,"parent":"au*","inputs":{"SOUND_MENU":[1,"bq-"]},"fields":{},"shadow":false,"topLevel":false},"bq-":{"opcode":"sound_sounds_menu","next":null,"parent":"au+","inputs":{},"fields":{"SOUND_MENU":["square0_400",null]},"shadow":true,"topLevel":false},"A,":{"opcode":"control_if","next":"A-","parent":"A+","inputs":{"CONDITION":[2,"bq."],"SUBSTACK":[2,"au,"]},"fields":{},"shadow":false,"topLevel":false},"bq.":{"opcode":"operator_equals","next":null,"parent":"A,","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"au,":{"opcode":"control_forever","next":null,"parent":"A,","inputs":{"SUBSTACK":[2,"au-"]},"fields":{},"shadow":false,"topLevel":false},"au-":{"opcode":"sound_playuntildone","next":null,"parent":"au,","inputs":{"SOUND_MENU":[1,"bq/"]},"fields":{},"shadow":false,"topLevel":false},"bq/":{"opcode":"sound_sounds_menu","next":null,"parent":"au-","inputs":{},"fields":{"SOUND_MENU":["square1_400",null]},"shadow":true,"topLevel":false},"A-":{"opcode":"control_if","next":"A.","parent":"A,","inputs":{"CONDITION":[2,"bq:"],"SUBSTACK":[2,"au."]},"fields":{},"shadow":false,"topLevel":false},"bq:":{"opcode":"operator_equals","next":null,"parent":"A-","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"au.":{"opcode":"control_forever","next":null,"parent":"A-","inputs":{"SUBSTACK":[2,"au/"]},"fields":{},"shadow":false,"topLevel":false},"au/":{"opcode":"sound_playuntildone","next":null,"parent":"au.","inputs":{"SOUND_MENU":[1,"bq;"]},"fields":{},"shadow":false,"topLevel":false},"bq;":{"opcode":"sound_sounds_menu","next":null,"parent":"au/","inputs":{},"fields":{"SOUND_MENU":["square2_400",null]},"shadow":true,"topLevel":false},"A.":{"opcode":"control_if","next":"A/","parent":"A-","inputs":{"CONDITION":[2,"bq="],"SUBSTACK":[2,"au:"]},"fields":{},"shadow":false,"topLevel":false},"bq=":{"opcode":"operator_equals","next":null,"parent":"A.","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"au:":{"opcode":"control_forever","next":null,"parent":"A.","inputs":{"SUBSTACK":[2,"au;"]},"fields":{},"shadow":false,"topLevel":false},"au;":{"opcode":"sound_playuntildone","next":null,"parent":"au:","inputs":{"SOUND_MENU":[1,"bq?"]},"fields":{},"shadow":false,"topLevel":false},"bq?":{"opcode":"sound_sounds_menu","next":null,"parent":"au;","inputs":{},"fields":{"SOUND_MENU":["square3_400",null]},"shadow":true,"topLevel":false},"A/":{"opcode":"control_if","next":"A:","parent":"A.","inputs":{"CONDITION":[2,"bq@"],"SUBSTACK":[2,"au="]},"fields":{},"shadow":false,"topLevel":false},"bq@":{"opcode":"operator_equals","next":null,"parent":"A/","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"au=":{"opcode":"control_forever","next":null,"parent":"A/","inputs":{"SUBSTACK":[2,"au?"]},"fields":{},"shadow":false,"topLevel":false},"au?":{"opcode":"sound_playuntildone","next":null,"parent":"au=","inputs":{"SOUND_MENU":[1,"bq["]},"fields":{},"shadow":false,"topLevel":false},"bq[":{"opcode":"sound_sounds_menu","next":null,"parent":"au?","inputs":{},"fields":{"SOUND_MENU":["square0_800",null]},"shadow":true,"topLevel":false},"A:":{"opcode":"control_if","next":"A;","parent":"A/","inputs":{"CONDITION":[2,"bq]"],"SUBSTACK":[2,"au@"]},"fields":{},"shadow":false,"topLevel":false},"bq]":{"opcode":"operator_equals","next":null,"parent":"A:","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"au@":{"opcode":"control_forever","next":null,"parent":"A:","inputs":{"SUBSTACK":[2,"au["]},"fields":{},"shadow":false,"topLevel":false},"au[":{"opcode":"sound_playuntildone","next":null,"parent":"au@","inputs":{"SOUND_MENU":[1,"bq^"]},"fields":{},"shadow":false,"topLevel":false},"bq^":{"opcode":"sound_sounds_menu","next":null,"parent":"au[","inputs":{},"fields":{"SOUND_MENU":["square1_800",null]},"shadow":true,"topLevel":false},"A;":{"opcode":"control_if","next":"A=","parent":"A:","inputs":{"CONDITION":[2,"bq_"],"SUBSTACK":[2,"au]"]},"fields":{},"shadow":false,"topLevel":false},"bq_":{"opcode":"operator_equals","next":null,"parent":"A;","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"au]":{"opcode":"control_forever","next":null,"parent":"A;","inputs":{"SUBSTACK":[2,"au^"]},"fields":{},"shadow":false,"topLevel":false},"au^":{"opcode":"sound_playuntildone","next":null,"parent":"au]","inputs":{"SOUND_MENU":[1,"bq`"]},"fields":{},"shadow":false,"topLevel":false},"bq`":{"opcode":"sound_sounds_menu","next":null,"parent":"au^","inputs":{},"fields":{"SOUND_MENU":["square2_800",null]},"shadow":true,"topLevel":false},"A=":{"opcode":"control_if","next":null,"parent":"A;","inputs":{"CONDITION":[2,"bq{"],"SUBSTACK":[2,"au_"]},"fields":{},"shadow":false,"topLevel":false},"bq{":{"opcode":"operator_equals","next":null,"parent":"A=","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"au_":{"opcode":"control_forever","next":null,"parent":"A=","inputs":{"SUBSTACK":[2,"au`"]},"fields":{},"shadow":false,"topLevel":false},"au`":{"opcode":"sound_playuntildone","next":null,"parent":"au_","inputs":{"SOUND_MENU":[1,"bq|"]},"fields":{},"shadow":false,"topLevel":false},"bq|":{"opcode":"sound_sounds_menu","next":null,"parent":"au`","inputs":{},"fields":{"SOUND_MENU":["square3_800",null]},"shadow":true,"topLevel":false},"auY":{"opcode":"control_wait","next":"A%","parent":"bqZ","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bqX":{"opcode":"control_delete_this_clone","next":null,"parent":"auW","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bq}":{"opcode":"control_start_as_clone","next":"au{","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":64},"au{":{"opcode":"sound_setvolumeto","next":"A?","parent":"bq}","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A?":{"opcode":"control_if","next":"A@","parent":"au{","inputs":{"CONDITION":[2,"bq~"],"SUBSTACK":[2,"au|"]},"fields":{},"shadow":false,"topLevel":false},"bq~":{"opcode":"operator_lt","next":null,"parent":"A?","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"au|":{"opcode":"control_forever","next":null,"parent":"A?","inputs":{"SUBSTACK":[2,"au}"]},"fields":{},"shadow":false,"topLevel":false},"au}":{"opcode":"sound_setvolumeto","next":null,"parent":"au|","inputs":{"VOLUME":[3,"A[",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A[":{"opcode":"operator_multiply","next":null,"parent":"au}","inputs":{"NUM1":[3,"bra",[4,0]],"NUM2":[3,"A]",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bra":{"opcode":"data_itemoflist","next":null,"parent":"A[","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"A]":{"opcode":"operator_multiply","next":null,"parent":"A[","inputs":{"NUM1":[3,"au~",[4,0]],"NUM2":[3,"A^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"au~":{"opcode":"operator_lt","next":null,"parent":"A]","inputs":{"OPERAND1":[3,"brb",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"brb":{"opcode":"data_itemoflist","next":null,"parent":"au~","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"A^":{"opcode":"operator_equals","next":null,"parent":"A]","inputs":{"OPERAND1":[3,"brc",[10,""]],"OPERAND2":[3,"brd",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"brc":{"opcode":"data_itemoflist","next":null,"parent":"A^","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"brd":{"opcode":"operator_subtract","next":null,"parent":"A^","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A@":{"opcode":"control_if","next":"A_","parent":"A?","inputs":{"CONDITION":[2,"bre"],"SUBSTACK":[2,"ava"]},"fields":{},"shadow":false,"topLevel":false},"bre":{"opcode":"operator_lt","next":null,"parent":"A@","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ava":{"opcode":"control_forever","next":null,"parent":"A@","inputs":{"SUBSTACK":[2,"avb"]},"fields":{},"shadow":false,"topLevel":false},"avb":{"opcode":"sound_setvolumeto","next":null,"parent":"ava","inputs":{"VOLUME":[3,"A`",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A`":{"opcode":"operator_multiply","next":null,"parent":"avb","inputs":{"NUM1":[3,"brf",[4,0]],"NUM2":[3,"A{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"brf":{"opcode":"data_itemoflist","next":null,"parent":"A`","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"A{":{"opcode":"operator_multiply","next":null,"parent":"A`","inputs":{"NUM1":[3,"A|",[4,0]],"NUM2":[3,"A}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A|":{"opcode":"operator_and","next":null,"parent":"A{","inputs":{"OPERAND1":[2,"avc"],"OPERAND2":[2,"avd"]},"fields":{},"shadow":false,"topLevel":false},"avc":{"opcode":"operator_gt","next":null,"parent":"A|","inputs":{"OPERAND1":[3,"brg",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"brg":{"opcode":"data_itemoflist","next":null,"parent":"avc","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"avd":{"opcode":"operator_lt","next":null,"parent":"A|","inputs":{"OPERAND1":[3,"brh",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"brh":{"opcode":"data_itemoflist","next":null,"parent":"avd","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"A}":{"opcode":"operator_equals","next":null,"parent":"A{","inputs":{"OPERAND1":[3,"bri",[10,""]],"OPERAND2":[3,"brj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bri":{"opcode":"data_itemoflist","next":null,"parent":"A}","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"brj":{"opcode":"operator_subtract","next":null,"parent":"A}","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"A_":{"opcode":"control_if","next":null,"parent":"A@","inputs":{"CONDITION":[2,"brk"],"SUBSTACK":[2,"ave"]},"fields":{},"shadow":false,"topLevel":false},"brk":{"opcode":"operator_lt","next":null,"parent":"A_","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"ave":{"opcode":"control_forever","next":null,"parent":"A_","inputs":{"SUBSTACK":[2,"avf"]},"fields":{},"shadow":false,"topLevel":false},"avf":{"opcode":"sound_setvolumeto","next":null,"parent":"ave","inputs":{"VOLUME":[3,"A~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"A~":{"opcode":"operator_multiply","next":null,"parent":"avf","inputs":{"NUM1":[3,"brl",[4,0]],"NUM2":[3,"Ba",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"brl":{"opcode":"data_itemoflist","next":null,"parent":"A~","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ba":{"opcode":"operator_multiply","next":null,"parent":"A~","inputs":{"NUM1":[3,"avg",[4,0]],"NUM2":[3,"Bb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avg":{"opcode":"operator_gt","next":null,"parent":"Ba","inputs":{"OPERAND1":[3,"brm",[10,""]],"OPERAND2":[1,[10,"600"]]},"fields":{},"shadow":false,"topLevel":false},"brm":{"opcode":"data_itemoflist","next":null,"parent":"avg","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bb":{"opcode":"operator_equals","next":null,"parent":"Ba","inputs":{"OPERAND1":[3,"brn",[10,""]],"OPERAND2":[3,"bro",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"brn":{"opcode":"data_itemoflist","next":null,"parent":"Bb","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bro":{"opcode":"operator_subtract","next":null,"parent":"Bb","inputs":{"NUM1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"brp":{"opcode":"control_start_as_clone","next":"avh","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":490,"y":980},"avh":{"opcode":"sound_cleareffects","next":"Bc","parent":"brp","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Bc":{"opcode":"control_if","next":"Bd","parent":"avh","inputs":{"CONDITION":[2,"brq"],"SUBSTACK":[2,"avi"]},"fields":{},"shadow":false,"topLevel":false},"brq":{"opcode":"operator_lt","next":null,"parent":"Bc","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"avi":{"opcode":"control_forever","next":null,"parent":"Bc","inputs":{"SUBSTACK":[2,"avj"]},"fields":{},"shadow":false,"topLevel":false},"avj":{"opcode":"sound_seteffectto","next":null,"parent":"avi","inputs":{"VALUE":[3,"avk",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"avk":{"opcode":"operator_multiply","next":null,"parent":"avj","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"avl",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avl":{"opcode":"operator_mathop","next":null,"parent":"avk","inputs":{"NUM":[3,"avm",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"avm":{"opcode":"operator_divide","next":null,"parent":"avl","inputs":{"NUM1":[3,"brr",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"brr":{"opcode":"data_itemoflist","next":null,"parent":"avm","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bd":{"opcode":"control_if","next":"Be","parent":"Bc","inputs":{"CONDITION":[2,"brs"],"SUBSTACK":[2,"avn"]},"fields":{},"shadow":false,"topLevel":false},"brs":{"opcode":"operator_lt","next":null,"parent":"Bd","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"avn":{"opcode":"control_forever","next":null,"parent":"Bd","inputs":{"SUBSTACK":[2,"avo"]},"fields":{},"shadow":false,"topLevel":false},"avo":{"opcode":"sound_seteffectto","next":null,"parent":"avn","inputs":{"VALUE":[3,"avp",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"avp":{"opcode":"operator_multiply","next":null,"parent":"avo","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"avq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avq":{"opcode":"operator_mathop","next":null,"parent":"avp","inputs":{"NUM":[3,"avr",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"avr":{"opcode":"operator_divide","next":null,"parent":"avq","inputs":{"NUM1":[3,"brt",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"brt":{"opcode":"data_itemoflist","next":null,"parent":"avr","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Be":{"opcode":"control_if","next":null,"parent":"Bd","inputs":{"CONDITION":[2,"bru"],"SUBSTACK":[2,"avs"]},"fields":{},"shadow":false,"topLevel":false},"bru":{"opcode":"operator_lt","next":null,"parent":"Be","inputs":{"OPERAND1":[3,[12,"id","^R[WOHQM-#~uf#]*`Mv3"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"avs":{"opcode":"control_forever","next":null,"parent":"Be","inputs":{"SUBSTACK":[2,"avt"]},"fields":{},"shadow":false,"topLevel":false},"avt":{"opcode":"sound_seteffectto","next":null,"parent":"avs","inputs":{"VALUE":[3,"avu",[4,0]]},"fields":{"EFFECT":["PITCH"]},"shadow":false,"topLevel":false},"avu":{"opcode":"operator_multiply","next":null,"parent":"avt","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"avv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avv":{"opcode":"operator_mathop","next":null,"parent":"avu","inputs":{"NUM":[3,"avw",[4,0]]},"fields":{"OPERATOR":["log"]},"shadow":false,"topLevel":false},"avw":{"opcode":"operator_divide","next":null,"parent":"avv","inputs":{"NUM1":[3,"brv",[4,0]],"NUM2":[1,[4,"800"]]},"fields":{},"shadow":false,"topLevel":false},"brv":{"opcode":"data_itemoflist","next":null,"parent":"avw","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"square0_200","assetId":"e57364a4200c66d59c6cd2aad2ac279f","dataFormat":"wav","rate":48000,"sampleCount":192100,"md5ext":"e57364a4200c66d59c6cd2aad2ac279f.wav"},{"name":"square1_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square2_200","assetId":"f11d284080d1f97bf6d306e2beced6cb","dataFormat":"wav","rate":48000,"sampleCount":192042,"md5ext":"f11d284080d1f97bf6d306e2beced6cb.wav"},{"name":"square3_200","assetId":"d65e9c678e4334d7979536ea70d6c02c","dataFormat":"wav","rate":48000,"sampleCount":192085,"md5ext":"d65e9c678e4334d7979536ea70d6c02c.wav"},{"name":"square0_400","assetId":"bb3d65f47a8eb8759488124be13835a5","dataFormat":"wav","rate":48000,"sampleCount":192026,"md5ext":"bb3d65f47a8eb8759488124be13835a5.wav"},{"name":"square1_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square2_400","assetId":"a5b331e6cea10a392d033bcd98ba0488","dataFormat":"wav","rate":48000,"sampleCount":192047,"md5ext":"a5b331e6cea10a392d033bcd98ba0488.wav"},{"name":"square3_400","assetId":"33c515d50fd67ec60286c158741f26e9","dataFormat":"wav","rate":48000,"sampleCount":192028,"md5ext":"33c515d50fd67ec60286c158741f26e9.wav"},{"name":"square0_800","assetId":"1aded0d64fb9983939909d2a518a0995","dataFormat":"wav","rate":48000,"sampleCount":192017,"md5ext":"1aded0d64fb9983939909d2a518a0995.wav"},{"name":"square1_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"},{"name":"square2_800","assetId":"654f1b40ce9e514fbf9bd5de34887a00","dataFormat":"wav","rate":48000,"sampleCount":192054,"md5ext":"654f1b40ce9e514fbf9bd5de34887a00.wav"},{"name":"square3_800","assetId":"2f859f6cf0443089d235329934bbd7bd","dataFormat":"wav","rate":48000,"sampleCount":192013,"md5ext":"2f859f6cf0443089d235329934bbd7bd.wav"}],"volume":0,"layerOrder":12,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"noise","variables":{"5Vd}?h-0(QjqLpwAS(EX":["id",8]},"lists":{},"broadcasts":{},"blocks":{"brw":{"opcode":"event_whenbroadcastreceived","next":"avx","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"avx":{"opcode":"sound_stopallsounds","next":"brx","parent":"brw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"brx":{"opcode":"control_delete_this_clone","next":null,"parent":"avx","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bry":{"opcode":"event_whenbroadcastreceived","next":"Bf","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"Bf":{"opcode":"control_if","next":null,"parent":"bry","inputs":{"CONDITION":[2,"brz"],"SUBSTACK":[2,"avy"]},"fields":{},"shadow":false,"topLevel":false},"brz":{"opcode":"operator_equals","next":null,"parent":"Bf","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"avy":{"opcode":"control_for_each","next":null,"parent":"Bf","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"avz"]},"fields":{"VARIABLE":["id","5Vd}?h-0(QjqLpwAS(EX"]},"shadow":false,"topLevel":false},"avz":{"opcode":"control_create_clone_of","next":null,"parent":"avy","inputs":{"CLONE_OPTION":[1,"brA"]},"fields":{},"shadow":false,"topLevel":false},"brA":{"opcode":"control_create_clone_of_menu","next":null,"parent":"avz","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"brB":{"opcode":"control_start_as_clone","next":"avA","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"avA":{"opcode":"control_wait","next":"Bg","parent":"brB","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Bg":{"opcode":"control_if","next":"Bh","parent":"avA","inputs":{"CONDITION":[2,"brC"],"SUBSTACK":[2,"avB"]},"fields":{},"shadow":false,"topLevel":false},"brC":{"opcode":"operator_equals","next":null,"parent":"Bg","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"avB":{"opcode":"control_forever","next":null,"parent":"Bg","inputs":{"SUBSTACK":[2,"avC"]},"fields":{},"shadow":false,"topLevel":false},"avC":{"opcode":"sound_playuntildone","next":null,"parent":"avB","inputs":{"SOUND_MENU":[1,"brD"]},"fields":{},"shadow":false,"topLevel":false},"brD":{"opcode":"sound_sounds_menu","next":null,"parent":"avC","inputs":{},"fields":{"SOUND_MENU":["noise_11",null]},"shadow":true,"topLevel":false},"Bh":{"opcode":"control_if","next":"Bi","parent":"Bg","inputs":{"CONDITION":[2,"brE"],"SUBSTACK":[2,"avD"]},"fields":{},"shadow":false,"topLevel":false},"brE":{"opcode":"operator_equals","next":null,"parent":"Bh","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"avD":{"opcode":"control_forever","next":null,"parent":"Bh","inputs":{"SUBSTACK":[2,"avE"]},"fields":{},"shadow":false,"topLevel":false},"avE":{"opcode":"sound_playuntildone","next":null,"parent":"avD","inputs":{"SOUND_MENU":[1,"brF"]},"fields":{},"shadow":false,"topLevel":false},"brF":{"opcode":"sound_sounds_menu","next":null,"parent":"avE","inputs":{},"fields":{"SOUND_MENU":["noise_8",null]},"shadow":true,"topLevel":false},"Bi":{"opcode":"control_if","next":"Bj","parent":"Bh","inputs":{"CONDITION":[2,"brG"],"SUBSTACK":[2,"avF"]},"fields":{},"shadow":false,"topLevel":false},"brG":{"opcode":"operator_equals","next":null,"parent":"Bi","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"avF":{"opcode":"control_forever","next":null,"parent":"Bi","inputs":{"SUBSTACK":[2,"avG"]},"fields":{},"shadow":false,"topLevel":false},"avG":{"opcode":"sound_playuntildone","next":null,"parent":"avF","inputs":{"SOUND_MENU":[1,"brH"]},"fields":{},"shadow":false,"topLevel":false},"brH":{"opcode":"sound_sounds_menu","next":null,"parent":"avG","inputs":{},"fields":{"SOUND_MENU":["noise_5",null]},"shadow":true,"topLevel":false},"Bj":{"opcode":"control_if","next":"Bk","parent":"Bi","inputs":{"CONDITION":[2,"brI"],"SUBSTACK":[2,"avH"]},"fields":{},"shadow":false,"topLevel":false},"brI":{"opcode":"operator_equals","next":null,"parent":"Bj","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"avH":{"opcode":"control_forever","next":null,"parent":"Bj","inputs":{"SUBSTACK":[2,"avI"]},"fields":{},"shadow":false,"topLevel":false},"avI":{"opcode":"sound_playuntildone","next":null,"parent":"avH","inputs":{"SOUND_MENU":[1,"brJ"]},"fields":{},"shadow":false,"topLevel":false},"brJ":{"opcode":"sound_sounds_menu","next":null,"parent":"avI","inputs":{},"fields":{"SOUND_MENU":["noise_2",null]},"shadow":true,"topLevel":false},"Bk":{"opcode":"control_if","next":"Bl","parent":"Bj","inputs":{"CONDITION":[2,"brK"],"SUBSTACK":[2,"avJ"]},"fields":{},"shadow":false,"topLevel":false},"brK":{"opcode":"operator_equals","next":null,"parent":"Bk","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"avJ":{"opcode":"control_forever","next":null,"parent":"Bk","inputs":{"SUBSTACK":[2,"avK"]},"fields":{},"shadow":false,"topLevel":false},"avK":{"opcode":"sound_playuntildone","next":null,"parent":"avJ","inputs":{"SOUND_MENU":[1,"brL"]},"fields":{},"shadow":false,"topLevel":false},"brL":{"opcode":"sound_sounds_menu","next":null,"parent":"avK","inputs":{},"fields":{"SOUND_MENU":["noisem_11",null]},"shadow":true,"topLevel":false},"Bl":{"opcode":"control_if","next":"ba","parent":"Bk","inputs":{"CONDITION":[2,"brM"],"SUBSTACK":[2,"avL"]},"fields":{},"shadow":false,"topLevel":false},"brM":{"opcode":"operator_equals","next":null,"parent":"Bl","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"avL":{"opcode":"control_forever","next":null,"parent":"Bl","inputs":{"SUBSTACK":[2,"avM"]},"fields":{},"shadow":false,"topLevel":false},"avM":{"opcode":"sound_playuntildone","next":null,"parent":"avL","inputs":{"SOUND_MENU":[1,"brN"]},"fields":{},"shadow":false,"topLevel":false},"brN":{"opcode":"sound_sounds_menu","next":null,"parent":"avM","inputs":{},"fields":{"SOUND_MENU":["noisem_8",null]},"shadow":true,"topLevel":false},"ba":{"opcode":"control_if","next":"Bm","parent":"Bl","inputs":{"CONDITION":[2,"brO"],"SUBSTACK":[2,"avN"]},"fields":{},"shadow":false,"topLevel":false},"brO":{"opcode":"operator_equals","next":null,"parent":"ba","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"avN":{"opcode":"control_forever","next":null,"parent":"ba","inputs":{"SUBSTACK":[2,"avO"]},"fields":{},"shadow":false,"topLevel":false},"avO":{"opcode":"sound_playuntildone","next":null,"parent":"avN","inputs":{"SOUND_MENU":[1,"brP"]},"fields":{},"shadow":false,"topLevel":false},"brP":{"opcode":"sound_sounds_menu","next":null,"parent":"avO","inputs":{},"fields":{"SOUND_MENU":["noisem_5",null]},"shadow":true,"topLevel":false},"Bm":{"opcode":"control_if","next":null,"parent":"ba","inputs":{"CONDITION":[2,"brQ"],"SUBSTACK":[2,"avP"]},"fields":{},"shadow":false,"topLevel":false},"brQ":{"opcode":"operator_equals","next":null,"parent":"Bm","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"avP":{"opcode":"control_forever","next":null,"parent":"Bm","inputs":{"SUBSTACK":[2,"avQ"]},"fields":{},"shadow":false,"topLevel":false},"avQ":{"opcode":"sound_playuntildone","next":null,"parent":"avP","inputs":{"SOUND_MENU":[1,"brR"]},"fields":{},"shadow":false,"topLevel":false},"brR":{"opcode":"sound_sounds_menu","next":null,"parent":"avQ","inputs":{},"fields":{"SOUND_MENU":["noisem_2",null]},"shadow":true,"topLevel":false},"brS":{"opcode":"control_start_as_clone","next":"avR","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1660,"y":64},"avR":{"opcode":"sound_cleareffects","next":"bb","parent":"brS","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bb":{"opcode":"control_if","next":"bc","parent":"avR","inputs":{"CONDITION":[2,"Bn"],"SUBSTACK":[2,"avS"]},"fields":{},"shadow":false,"topLevel":false},"Bn":{"opcode":"operator_or","next":null,"parent":"bb","inputs":{"OPERAND1":[2,"brT"],"OPERAND2":[2,"brU"]},"fields":{},"shadow":false,"topLevel":false},"brT":{"opcode":"operator_equals","next":null,"parent":"Bn","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"brU":{"opcode":"operator_equals","next":null,"parent":"Bn","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"avS":{"opcode":"control_forever","next":null,"parent":"bb","inputs":{"SUBSTACK":[2,"avT"]},"fields":{},"shadow":false,"topLevel":false},"avT":{"opcode":"sound_seteffectto","next":null,"parent":"avS","inputs":{"VALUE":[3,"avU",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"avU":{"opcode":"operator_multiply","next":null,"parent":"avT","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"avV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"avV":{"opcode":"operator_mathop","next":null,"parent":"avU","inputs":{"NUM":[3,"avW",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"avW":{"opcode":"operator_divide","next":null,"parent":"avV","inputs":{"NUM1":[3,"brV",[4,0]],"NUM2":[1,[4,"3523.1751968503936"]]},"fields":{},"shadow":false,"topLevel":false},"brV":{"opcode":"data_itemoflist","next":null,"parent":"avW","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bc":{"opcode":"control_if","next":"bd","parent":"bb","inputs":{"CONDITION":[2,"Bo"],"SUBSTACK":[2,"avX"]},"fields":{},"shadow":false,"topLevel":false},"Bo":{"opcode":"operator_or","next":null,"parent":"bc","inputs":{"OPERAND1":[2,"brW"],"OPERAND2":[2,"brX"]},"fields":{},"shadow":false,"topLevel":false},"brW":{"opcode":"operator_equals","next":null,"parent":"Bo","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"brX":{"opcode":"operator_equals","next":null,"parent":"Bo","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"avX":{"opcode":"control_forever","next":null,"parent":"bc","inputs":{"SUBSTACK":[2,"avY"]},"fields":{},"shadow":false,"topLevel":false},"avY":{"opcode":"sound_seteffectto","next":null,"parent":"avX","inputs":{"VALUE":[3,"avZ",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"avZ":{"opcode":"operator_multiply","next":null,"parent":"avY","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"av!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av!":{"opcode":"operator_mathop","next":null,"parent":"avZ","inputs":{"NUM":[3,"av#",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"av#":{"opcode":"operator_divide","next":null,"parent":"av!","inputs":{"NUM1":[3,"brY",[4,0]],"NUM2":[1,[4,"8860.262376237624"]]},"fields":{},"shadow":false,"topLevel":false},"brY":{"opcode":"data_itemoflist","next":null,"parent":"av#","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bd":{"opcode":"control_if","next":"Bp","parent":"bc","inputs":{"CONDITION":[2,"Bq"],"SUBSTACK":[2,"av%"]},"fields":{},"shadow":false,"topLevel":false},"Bq":{"opcode":"operator_or","next":null,"parent":"bd","inputs":{"OPERAND1":[2,"brZ"],"OPERAND2":[2,"br!"]},"fields":{},"shadow":false,"topLevel":false},"brZ":{"opcode":"operator_equals","next":null,"parent":"Bq","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"br!":{"opcode":"operator_equals","next":null,"parent":"Bq","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"av%":{"opcode":"control_forever","next":null,"parent":"bd","inputs":{"SUBSTACK":[2,"av("]},"fields":{},"shadow":false,"topLevel":false},"av(":{"opcode":"sound_seteffectto","next":null,"parent":"av%","inputs":{"VALUE":[3,"av)",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"av)":{"opcode":"operator_multiply","next":null,"parent":"av(","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"av*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av*":{"opcode":"operator_mathop","next":null,"parent":"av)","inputs":{"NUM":[3,"av+",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"av+":{"opcode":"operator_divide","next":null,"parent":"av*","inputs":{"NUM1":[3,"br#",[4,0]],"NUM2":[1,[4,"18643.46875"]]},"fields":{},"shadow":false,"topLevel":false},"br#":{"opcode":"data_itemoflist","next":null,"parent":"av+","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bp":{"opcode":"control_if","next":null,"parent":"bd","inputs":{"CONDITION":[2,"Br"],"SUBSTACK":[2,"av,"]},"fields":{},"shadow":false,"topLevel":false},"Br":{"opcode":"operator_or","next":null,"parent":"Bp","inputs":{"OPERAND1":[2,"br%"],"OPERAND2":[2,"br("]},"fields":{},"shadow":false,"topLevel":false},"br%":{"opcode":"operator_equals","next":null,"parent":"Br","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"br(":{"opcode":"operator_equals","next":null,"parent":"Br","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"av,":{"opcode":"control_forever","next":null,"parent":"Bp","inputs":{"SUBSTACK":[2,"av-"]},"fields":{},"shadow":false,"topLevel":false},"av-":{"opcode":"sound_seteffectto","next":null,"parent":"av,","inputs":{"VALUE":[3,"av.",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"av.":{"opcode":"operator_multiply","next":null,"parent":"av-","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"av/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"av/":{"opcode":"operator_mathop","next":null,"parent":"av.","inputs":{"NUM":[3,"av:",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"av:":{"opcode":"operator_divide","next":null,"parent":"av/","inputs":{"NUM1":[3,"br)",[4,0]],"NUM2":[1,[4,"111860.8125"]]},"fields":{},"shadow":false,"topLevel":false},"br)":{"opcode":"data_itemoflist","next":null,"parent":"av:","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"br*":{"opcode":"control_start_as_clone","next":"av;","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":474,"y":64},"av;":{"opcode":"sound_setvolumeto","next":"be","parent":"br*","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"be":{"opcode":"control_if","next":"bf","parent":"av;","inputs":{"CONDITION":[2,"br+"],"SUBSTACK":[2,"av="]},"fields":{},"shadow":false,"topLevel":false},"br+":{"opcode":"operator_equals","next":null,"parent":"be","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"av=":{"opcode":"control_forever","next":null,"parent":"be","inputs":{"SUBSTACK":[2,"av?"]},"fields":{},"shadow":false,"topLevel":false},"av?":{"opcode":"sound_setvolumeto","next":null,"parent":"av=","inputs":{"VOLUME":[3,"Bs",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bs":{"opcode":"operator_multiply","next":null,"parent":"av?","inputs":{"NUM1":[3,"br,",[4,0]],"NUM2":[3,"Bt",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"br,":{"opcode":"data_itemoflist","next":null,"parent":"Bs","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bt":{"opcode":"operator_and","next":null,"parent":"Bs","inputs":{"OPERAND1":[2,"av@"],"OPERAND2":[2,"av["]},"fields":{},"shadow":false,"topLevel":false},"av@":{"opcode":"operator_gt","next":null,"parent":"Bt","inputs":{"OPERAND1":[3,"br-",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"br-":{"opcode":"data_itemoflist","next":null,"parent":"av@","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"av[":{"opcode":"operator_lt","next":null,"parent":"Bt","inputs":{"OPERAND1":[3,"br.",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"br.":{"opcode":"data_itemoflist","next":null,"parent":"av[","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bf":{"opcode":"control_if","next":"bg","parent":"be","inputs":{"CONDITION":[2,"br/"],"SUBSTACK":[2,"av]"]},"fields":{},"shadow":false,"topLevel":false},"br/":{"opcode":"operator_equals","next":null,"parent":"bf","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"av]":{"opcode":"control_forever","next":null,"parent":"bf","inputs":{"SUBSTACK":[2,"av^"]},"fields":{},"shadow":false,"topLevel":false},"av^":{"opcode":"sound_setvolumeto","next":null,"parent":"av]","inputs":{"VOLUME":[3,"Bu",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bu":{"opcode":"operator_multiply","next":null,"parent":"av^","inputs":{"NUM1":[3,"br:",[4,0]],"NUM2":[3,"Bv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"br:":{"opcode":"data_itemoflist","next":null,"parent":"Bu","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bv":{"opcode":"operator_and","next":null,"parent":"Bu","inputs":{"OPERAND1":[2,"av_"],"OPERAND2":[2,"av`"]},"fields":{},"shadow":false,"topLevel":false},"av_":{"opcode":"operator_gt","next":null,"parent":"Bv","inputs":{"OPERAND1":[3,"br;",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"br;":{"opcode":"data_itemoflist","next":null,"parent":"av_","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"av`":{"opcode":"operator_lt","next":null,"parent":"Bv","inputs":{"OPERAND1":[3,"br=",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"br=":{"opcode":"data_itemoflist","next":null,"parent":"av`","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bg":{"opcode":"control_if","next":"bh","parent":"bf","inputs":{"CONDITION":[2,"br?"],"SUBSTACK":[2,"av{"]},"fields":{},"shadow":false,"topLevel":false},"br?":{"opcode":"operator_equals","next":null,"parent":"bg","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"av{":{"opcode":"control_forever","next":null,"parent":"bg","inputs":{"SUBSTACK":[2,"av|"]},"fields":{},"shadow":false,"topLevel":false},"av|":{"opcode":"sound_setvolumeto","next":null,"parent":"av{","inputs":{"VOLUME":[3,"Bw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bw":{"opcode":"operator_multiply","next":null,"parent":"av|","inputs":{"NUM1":[3,"br@",[4,0]],"NUM2":[3,"Bx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"br@":{"opcode":"data_itemoflist","next":null,"parent":"Bw","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Bx":{"opcode":"operator_and","next":null,"parent":"Bw","inputs":{"OPERAND1":[2,"av}"],"OPERAND2":[2,"av~"]},"fields":{},"shadow":false,"topLevel":false},"av}":{"opcode":"operator_lt","next":null,"parent":"Bx","inputs":{"OPERAND1":[3,"br[",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"br[":{"opcode":"data_itemoflist","next":null,"parent":"av}","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"av~":{"opcode":"operator_gt","next":null,"parent":"Bx","inputs":{"OPERAND1":[3,"br]",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"br]":{"opcode":"data_itemoflist","next":null,"parent":"av~","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bh":{"opcode":"control_if","next":"bi","parent":"bg","inputs":{"CONDITION":[2,"br^"],"SUBSTACK":[2,"awa"]},"fields":{},"shadow":false,"topLevel":false},"br^":{"opcode":"operator_equals","next":null,"parent":"bh","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"awa":{"opcode":"control_forever","next":null,"parent":"bh","inputs":{"SUBSTACK":[2,"awb"]},"fields":{},"shadow":false,"topLevel":false},"awb":{"opcode":"sound_setvolumeto","next":null,"parent":"awa","inputs":{"VOLUME":[3,"By",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"By":{"opcode":"operator_multiply","next":null,"parent":"awb","inputs":{"NUM1":[3,"br_",[4,0]],"NUM2":[3,"awc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"br_":{"opcode":"data_itemoflist","next":null,"parent":"By","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awc":{"opcode":"operator_lt","next":null,"parent":"By","inputs":{"OPERAND1":[3,"br`",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"br`":{"opcode":"data_itemoflist","next":null,"parent":"awc","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bi":{"opcode":"control_if","next":"bj","parent":"bh","inputs":{"CONDITION":[2,"br{"],"SUBSTACK":[2,"awd"]},"fields":{},"shadow":false,"topLevel":false},"br{":{"opcode":"operator_equals","next":null,"parent":"bi","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"awd":{"opcode":"control_forever","next":null,"parent":"bi","inputs":{"SUBSTACK":[2,"awe"]},"fields":{},"shadow":false,"topLevel":false},"awe":{"opcode":"sound_setvolumeto","next":null,"parent":"awd","inputs":{"VOLUME":[3,"Bz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Bz":{"opcode":"operator_multiply","next":null,"parent":"awe","inputs":{"NUM1":[3,"br|",[4,0]],"NUM2":[3,"BA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"br|":{"opcode":"data_itemoflist","next":null,"parent":"Bz","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"BA":{"opcode":"operator_and","next":null,"parent":"Bz","inputs":{"OPERAND1":[2,"awf"],"OPERAND2":[2,"awg"]},"fields":{},"shadow":false,"topLevel":false},"awf":{"opcode":"operator_gt","next":null,"parent":"BA","inputs":{"OPERAND1":[3,"br}",[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"br}":{"opcode":"data_itemoflist","next":null,"parent":"awf","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awg":{"opcode":"operator_lt","next":null,"parent":"BA","inputs":{"OPERAND1":[3,"br~",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"br~":{"opcode":"data_itemoflist","next":null,"parent":"awg","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bj":{"opcode":"control_if","next":"bk","parent":"bi","inputs":{"CONDITION":[2,"bsa"],"SUBSTACK":[2,"awh"]},"fields":{},"shadow":false,"topLevel":false},"bsa":{"opcode":"operator_equals","next":null,"parent":"bj","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"awh":{"opcode":"control_forever","next":null,"parent":"bj","inputs":{"SUBSTACK":[2,"awi"]},"fields":{},"shadow":false,"topLevel":false},"awi":{"opcode":"sound_setvolumeto","next":null,"parent":"awh","inputs":{"VOLUME":[3,"BB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"BB":{"opcode":"operator_multiply","next":null,"parent":"awi","inputs":{"NUM1":[3,"bsb",[4,0]],"NUM2":[3,"BC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bsb":{"opcode":"data_itemoflist","next":null,"parent":"BB","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"BC":{"opcode":"operator_and","next":null,"parent":"BB","inputs":{"OPERAND1":[2,"awj"],"OPERAND2":[2,"awk"]},"fields":{},"shadow":false,"topLevel":false},"awj":{"opcode":"operator_gt","next":null,"parent":"BC","inputs":{"OPERAND1":[3,"bsc",[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"bsc":{"opcode":"data_itemoflist","next":null,"parent":"awj","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awk":{"opcode":"operator_lt","next":null,"parent":"BC","inputs":{"OPERAND1":[3,"bsd",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"bsd":{"opcode":"data_itemoflist","next":null,"parent":"awk","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bk":{"opcode":"control_if","next":"BD","parent":"bj","inputs":{"CONDITION":[2,"bse"],"SUBSTACK":[2,"awl"]},"fields":{},"shadow":false,"topLevel":false},"bse":{"opcode":"operator_equals","next":null,"parent":"bk","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"awl":{"opcode":"control_forever","next":null,"parent":"bk","inputs":{"SUBSTACK":[2,"awm"]},"fields":{},"shadow":false,"topLevel":false},"awm":{"opcode":"sound_setvolumeto","next":null,"parent":"awl","inputs":{"VOLUME":[3,"J,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J,":{"opcode":"operator_multiply","next":null,"parent":"awm","inputs":{"NUM1":[3,"bsf",[4,0]],"NUM2":[3,"J-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bsf":{"opcode":"data_itemoflist","next":null,"parent":"J,","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"J-":{"opcode":"operator_and","next":null,"parent":"J,","inputs":{"OPERAND1":[2,"awn"],"OPERAND2":[2,"awo"]},"fields":{},"shadow":false,"topLevel":false},"awn":{"opcode":"operator_lt","next":null,"parent":"J-","inputs":{"OPERAND1":[3,"bsg",[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"bsg":{"opcode":"data_itemoflist","next":null,"parent":"awn","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awo":{"opcode":"operator_gt","next":null,"parent":"J-","inputs":{"OPERAND1":[3,"bsh",[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"bsh":{"opcode":"data_itemoflist","next":null,"parent":"awo","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"BD":{"opcode":"control_if","next":null,"parent":"bk","inputs":{"CONDITION":[2,"bsi"],"SUBSTACK":[2,"awp"]},"fields":{},"shadow":false,"topLevel":false},"bsi":{"opcode":"operator_equals","next":null,"parent":"BD","inputs":{"OPERAND1":[3,[12,"id","5Vd}?h-0(QjqLpwAS(EX"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"awp":{"opcode":"control_forever","next":null,"parent":"BD","inputs":{"SUBSTACK":[2,"awq"]},"fields":{},"shadow":false,"topLevel":false},"awq":{"opcode":"sound_setvolumeto","next":null,"parent":"awp","inputs":{"VOLUME":[3,"J.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J.":{"opcode":"operator_multiply","next":null,"parent":"awq","inputs":{"NUM1":[3,"bsj",[4,0]],"NUM2":[3,"J/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bsj":{"opcode":"data_itemoflist","next":null,"parent":"J.","inputs":{"INDEX":[1,[7,"11"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"J/":{"opcode":"operator_and","next":null,"parent":"J.","inputs":{"OPERAND1":[2,"awr"],"OPERAND2":[2,"aws"]},"fields":{},"shadow":false,"topLevel":false},"awr":{"opcode":"operator_gt","next":null,"parent":"J/","inputs":{"OPERAND1":[3,"bsk",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"bsk":{"opcode":"data_itemoflist","next":null,"parent":"awr","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aws":{"opcode":"operator_lt","next":null,"parent":"J/","inputs":{"OPERAND1":[3,"bsl",[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"bsl":{"opcode":"data_itemoflist","next":null,"parent":"aws","inputs":{"INDEX":[1,[7,"10"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false}},"comments":{"b.s":{"blockId":"b.t","x":-51.8888888888888,"y":219.25925925925924,"width":200,"height":200,"minimized":false,"text":"use this to calculate period frequency"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"noise_11","assetId":"ac10259395e9816f689b21b2370f653d","dataFormat":"wav","rate":48000,"sampleCount":208877,"md5ext":"ac10259395e9816f689b21b2370f653d.wav"},{"name":"noise_8","assetId":"6411c5a4a3523134b3223241d4fc8f11","dataFormat":"wav","rate":48000,"sampleCount":177555,"md5ext":"6411c5a4a3523134b3223241d4fc8f11.wav"},{"name":"noise_5","assetId":"023bbbd6509d255a4512f63b999700c1","dataFormat":"wav","rate":48000,"sampleCount":168573,"md5ext":"023bbbd6509d255a4512f63b999700c1.wav"},{"name":"noise_2","assetId":"5954e9d627031aaf99f57f5ed66dca3e","dataFormat":"wav","rate":48000,"sampleCount":182797,"md5ext":"5954e9d627031aaf99f57f5ed66dca3e.wav"},{"name":"noisem_11","assetId":"726bf3c5738d25df6674f03104feeef0","dataFormat":"wav","rate":48000,"sampleCount":191534,"md5ext":"726bf3c5738d25df6674f03104feeef0.wav"},{"name":"noisem_8","assetId":"6465d1edb3625eeeded9836dd769fa68","dataFormat":"wav","rate":48000,"sampleCount":192185,"md5ext":"6465d1edb3625eeeded9836dd769fa68.wav"},{"name":"noisem_5","assetId":"7320e155cc3ad464d679d1f66e38adad","dataFormat":"wav","rate":48000,"sampleCount":192192,"md5ext":"7320e155cc3ad464d679d1f66e38adad.wav"},{"name":"noisem_2","assetId":"26ff2fd358024009b897d24dff12719d","dataFormat":"wav","rate":48000,"sampleCount":192007,"md5ext":"26ff2fd358024009b897d24dff12719d.wav"}],"volume":0,"layerOrder":13,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"triangle","variables":{"n4Vk.4K3+)e4)7]IZXt*":["id",2],"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured",0],"PdO5iRC_RNzBVsdyMO(q":["!op",0],"6zFO5H,!X[g$Ax)0BDc:":["!break",0],"tnat7=?L(.Gf;]^`o~![":["!A",0],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",0],"3U:*vMhK7gf],IM6zRp[":["!SP",0],"1zbCCns)7a+FK@Nf^A#/":["!P",0],"kCSOy9d,i:SuF$IT*yY@":["!C",0],"3;^us/Z(haF2h@u#ixfd":["!D",0],"wJv)p=)7?CJ}66t~yQza":["!I",0],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",0],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",0],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",0],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe",0],"G)X5:8nBe}gs.ik#[2!5":["temp",0],"$4AJvv6|*3+i6I3,wC{(":["!penalty",0],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",0],"gJ4fW7d.auVkNJS*cbF.":["!port2_count",0],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",0],"*q7!$s|[`z8:pfv)YW#?":["!immediate",0],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit",0],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow",0],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr",0],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",0],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled",0],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag",0],"rp0u9foKc3@?]%7O5HRb":["@mask_bg",0],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite",0],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg",0],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite",0],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",0],"oS%53`U7y@bB1gbSz8^+":["@data_latch",0],"5@CAuX+T_vc:]!OZM32!":["@write_toggle",0],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer",0],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip",0],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",0],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result",0],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",0],"OQF50=wL0|j4S5.I%k/,":["@bit",0],"1oCHy{p]O4~gQKbeR[pS":["@palette",0],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",0],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",0],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",0],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",0],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",0],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",0],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",0],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr",0],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt",0],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit",0],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode",0],"fyS(EXct?2w*M.Nwqgr~":["#sequence",0],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt",0],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter",0],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled",0],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0",0],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode",0],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1",0],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch",0],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled",0],"(Bva{aj,%,g7M19235_|":["$irq_occured",0],"Rsej-utFuPehsXAVyTSL":["$reg0",0],":qHrq7o:g@OR|zUf/9t(":["$reg1",0],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode",0],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0",0],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1",0],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2",0],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3",0],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4",0],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5",0],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload",0],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2",0],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3",0],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6",0],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7",0],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter",0],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",0],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",0],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",0],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant",0],"#Av;W`BG=vl=H0s()-!=":["#sq0_start",0],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",0],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",0],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",0],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt",0],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",0],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant",0],"@4/+@;`xIa1GD6lDn;es":["#sq1_start",0],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",0],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled",0],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter",0],":~1CFOUK_x[i{fP8hA[3":["#tri_period",0],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter",0],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",0],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag",0],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled",0],"JA8|Du$U5F}!TRea:xoo":["!idle_skip",0],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable",0],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",0],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate",0],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",0],"elV@:}M3MreZKq22A%3?":["#sq0_swreload",0],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",0],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",0],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt",0],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant",0],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start",0],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter",0],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled",0],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable",0],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",0],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate",0],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",0],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload",0],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",0],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",0],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",0],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI",0],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",0],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",0],"LieAxAMhdI5M{cEs}+(t":["nes: address",0],"n;0UExIQMoO!Lz=!vPek":["@lastframe",0],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",0],"HM)En0c}chMa#CL/6:U:":["$prg_banks",0],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",0],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode",0],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",0],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",0],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled",0],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",0]},"lists":{"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"K9EeL,gT~K#pd2O-]8{E":["!and_table",[]],"OmUHLg`Ks]E}iO,)GyY3":["!ora_table",[]],"@:a?(:d2~c*i{a?h-Su_":["!eor_table",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",[]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",[]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",[]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",[]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",[]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]]},"broadcasts":{},"blocks":{"bsm":{"opcode":"event_whenbroadcastreceived","next":"J:","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":48,"y":64},"J:":{"opcode":"control_if","next":null,"parent":"bsm","inputs":{"CONDITION":[2,"bsn"],"SUBSTACK":[2,"awt"]},"fields":{},"shadow":false,"topLevel":false},"bsn":{"opcode":"operator_equals","next":null,"parent":"J:","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awt":{"opcode":"control_for_each","next":null,"parent":"J:","inputs":{"VALUE":[1,[6,"2"]],"SUBSTACK":[2,"awu"]},"fields":{"VARIABLE":["id","n4Vk.4K3+)e4)7]IZXt*"]},"shadow":false,"topLevel":false},"awu":{"opcode":"control_create_clone_of","next":null,"parent":"awt","inputs":{"CLONE_OPTION":[1,"bso"]},"fields":{},"shadow":false,"topLevel":false},"bso":{"opcode":"control_create_clone_of_menu","next":null,"parent":"awu","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"bsp":{"opcode":"control_start_as_clone","next":"awv","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":485,"y":64},"awv":{"opcode":"sound_setvolumeto","next":"bl","parent":"bsp","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bl":{"opcode":"control_if","next":"J;","parent":"awv","inputs":{"CONDITION":[2,"bsq"],"SUBSTACK":[2,"aww"]},"fields":{},"shadow":false,"topLevel":false},"bsq":{"opcode":"operator_equals","next":null,"parent":"bl","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aww":{"opcode":"control_forever","next":null,"parent":"bl","inputs":{"SUBSTACK":[2,"awx"]},"fields":{},"shadow":false,"topLevel":false},"awx":{"opcode":"sound_setvolumeto","next":null,"parent":"aww","inputs":{"VOLUME":[3,"J=",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J=":{"opcode":"operator_multiply","next":null,"parent":"awx","inputs":{"NUM1":[3,"bsr",[4,0]],"NUM2":[3,"awy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bsr":{"opcode":"data_itemoflist","next":null,"parent":"J=","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awy":{"opcode":"operator_lt","next":null,"parent":"J=","inputs":{"OPERAND1":[3,"bss",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bss":{"opcode":"data_itemoflist","next":null,"parent":"awy","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"J;":{"opcode":"control_if","next":null,"parent":"bl","inputs":{"CONDITION":[2,"bst"],"SUBSTACK":[2,"awz"]},"fields":{},"shadow":false,"topLevel":false},"bst":{"opcode":"operator_equals","next":null,"parent":"J;","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"awz":{"opcode":"control_forever","next":null,"parent":"J;","inputs":{"SUBSTACK":[2,"awA"]},"fields":{},"shadow":false,"topLevel":false},"awA":{"opcode":"sound_setvolumeto","next":null,"parent":"awz","inputs":{"VOLUME":[3,"J?",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J?":{"opcode":"operator_multiply","next":null,"parent":"awA","inputs":{"NUM1":[3,"bsu",[4,0]],"NUM2":[3,"awB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bsu":{"opcode":"data_itemoflist","next":null,"parent":"J?","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"awB":{"opcode":"operator_gt","next":null,"parent":"J?","inputs":{"OPERAND1":[3,"bsv",[10,""]],"OPERAND2":[1,[10,"300"]]},"fields":{},"shadow":false,"topLevel":false},"bsv":{"opcode":"data_itemoflist","next":null,"parent":"awB","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bsw":{"opcode":"control_start_as_clone","next":"awC","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":485,"y":700},"awC":{"opcode":"sound_cleareffects","next":"bm","parent":"bsw","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bm":{"opcode":"control_if","next":"J@","parent":"awC","inputs":{"CONDITION":[2,"bsx"],"SUBSTACK":[2,"awD"]},"fields":{},"shadow":false,"topLevel":false},"bsx":{"opcode":"operator_equals","next":null,"parent":"bm","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awD":{"opcode":"control_forever","next":null,"parent":"bm","inputs":{"SUBSTACK":[2,"awE"]},"fields":{},"shadow":false,"topLevel":false},"awE":{"opcode":"sound_seteffectto","next":null,"parent":"awD","inputs":{"VALUE":[3,"awF",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"awF":{"opcode":"operator_multiply","next":null,"parent":"awE","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"awG",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awG":{"opcode":"operator_mathop","next":null,"parent":"awF","inputs":{"NUM":[3,"awH",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"awH":{"opcode":"operator_divide","next":null,"parent":"awG","inputs":{"NUM1":[3,"bsy",[4,0]],"NUM2":[1,[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"bsy":{"opcode":"data_itemoflist","next":null,"parent":"awH","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"J@":{"opcode":"control_if","next":null,"parent":"bm","inputs":{"CONDITION":[2,"bsz"],"SUBSTACK":[2,"awI"]},"fields":{},"shadow":false,"topLevel":false},"bsz":{"opcode":"operator_equals","next":null,"parent":"J@","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"awI":{"opcode":"control_forever","next":null,"parent":"J@","inputs":{"SUBSTACK":[2,"awJ"]},"fields":{},"shadow":false,"topLevel":false},"awJ":{"opcode":"sound_seteffectto","next":null,"parent":"awI","inputs":{"VALUE":[3,"awK",[4,0]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"awK":{"opcode":"operator_multiply","next":null,"parent":"awJ","inputs":{"NUM1":[1,[4,"398.64460836"]],"NUM2":[3,"awL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"awL":{"opcode":"operator_mathop","next":null,"parent":"awK","inputs":{"NUM":[3,"awM",[4,0]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"awM":{"opcode":"operator_divide","next":null,"parent":"awL","inputs":{"NUM1":[3,"bsA",[4,0]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"bsA":{"opcode":"data_itemoflist","next":null,"parent":"awM","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bsB":{"opcode":"event_whenbroadcastreceived","next":"awN","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":48,"y":404},"awN":{"opcode":"sound_stopallsounds","next":"bsC","parent":"bsB","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bsC":{"opcode":"control_delete_this_clone","next":null,"parent":"awN","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bsD":{"opcode":"control_start_as_clone","next":"awO","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":620},"awO":{"opcode":"control_wait","next":"bn","parent":"bsD","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bn":{"opcode":"control_if","next":"J[","parent":"awO","inputs":{"CONDITION":[2,"bsE"],"SUBSTACK":[2,"awP"]},"fields":{},"shadow":false,"topLevel":false},"bsE":{"opcode":"operator_equals","next":null,"parent":"bn","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awP":{"opcode":"control_forever","next":null,"parent":"bn","inputs":{"SUBSTACK":[2,"awQ"]},"fields":{},"shadow":false,"topLevel":false},"awQ":{"opcode":"sound_playuntildone","next":null,"parent":"awP","inputs":{"SOUND_MENU":[1,"bsF"]},"fields":{},"shadow":false,"topLevel":false},"bsF":{"opcode":"sound_sounds_menu","next":null,"parent":"awQ","inputs":{},"fields":{"SOUND_MENU":["triangle_200",null]},"shadow":true,"topLevel":false},"J[":{"opcode":"control_if","next":null,"parent":"bn","inputs":{"CONDITION":[2,"bsG"],"SUBSTACK":[2,"awR"]},"fields":{},"shadow":false,"topLevel":false},"bsG":{"opcode":"operator_equals","next":null,"parent":"J[","inputs":{"OPERAND1":[3,[12,"id","n4Vk.4K3+)e4)7]IZXt*"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"awR":{"opcode":"control_forever","next":null,"parent":"J[","inputs":{"SUBSTACK":[2,"awS"]},"fields":{},"shadow":false,"topLevel":false},"awS":{"opcode":"sound_playuntildone","next":null,"parent":"awR","inputs":{"SOUND_MENU":[1,"bsH"]},"fields":{},"shadow":false,"topLevel":false},"bsH":{"opcode":"sound_sounds_menu","next":null,"parent":"awS","inputs":{},"fields":{"SOUND_MENU":["triangle_400",null]},"shadow":true,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"triangle_200","assetId":"45459e5cbca3b47ab97a592e3571e5cf","dataFormat":"wav","rate":48000,"sampleCount":192286,"md5ext":"45459e5cbca3b47ab97a592e3571e5cf.wav"},{"name":"triangle_400","assetId":"4233eb7b7cb98c8334d4a74fac0c6333","dataFormat":"wav","rate":48000,"sampleCount":192038,"md5ext":"4233eb7b7cb98c8334d4a74fac0c6333.wav"}],"volume":0,"layerOrder":14,"visible":false,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"nes","variables":{"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured","0"],"PdO5iRC_RNzBVsdyMO(q":["!op",197],"6zFO5H,!X[g$Ax)0BDc:":["!break","0"],"tnat7=?L(.Gf;]^`o~![":["!A",115],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",243],"3U:*vMhK7gf],IM6zRp[":["!SP",253],"1zbCCns)7a+FK@Nf^A#/":["!P",39],"kCSOy9d,i:SuF$IT*yY@":["!C",1],"3;^us/Z(haF2h@u#ixfd":["!D","0"],"wJv)p=)7?CJ}66t~yQza":["!I","1"],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",1],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",49809],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",8],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe","0"],"G)X5:8nBe}gs.ik#[2!5":["temp",2],"$4AJvv6|*3+i6I3,wC{(":["!penalty","0"],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",108],"gJ4fW7d.auVkNJS*cbF.":["!port2_count","0"],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",3537699],"*q7!$s|[`z8:pfv)YW#?":["!immediate","0"],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit","0"],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow","0"],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr","0"],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",1],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled","1"],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag","1"],"rp0u9foKc3@?]%7O5HRb":["@mask_bg","1"],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite","1"],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg","1"],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite","0"],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",20800],"oS%53`U7y@bB1gbSz8^+":["@data_latch","00000000"],"5@CAuX+T_vc:]!OZM32!":["@write_toggle","0"],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer","0"],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip","0"],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",85],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result","00000000"],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",32],"OQF50=wL0|j4S5.I%k/,":["@bit",8],"1oCHy{p]O4~gQKbeR[pS":["@palette",1],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",1],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",66],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",128],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",172],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",1],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",2],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",8192],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr","1"],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt","0"],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit","1"],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode","1"],"fyS(EXct?2w*M.Nwqgr~":["#sequence",1],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt","0"],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter",0],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled","1"],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0","0"],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode","0"],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1","0"],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch","0"],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled","0"],"(Bva{aj,%,g7M19235_|":["$irq_occured","0"],"Rsej-utFuPehsXAVyTSL":["$reg0","0"],":qHrq7o:g@OR|zUf/9t(":["$reg1","0"],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode","0"],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0","0"],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1","0"],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2","0"],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3","0"],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4","0"],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5","0"],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload","0"],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2","0"],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3","0"],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6","0"],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7","0"],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter","0"],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",6],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",2],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",7],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant","0"],"#Av;W`BG=vl=H0s()-!=":["#sq0_start","0"],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",3],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",0],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",7],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt","1"],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",15],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant","1"],"@4/+@;`xIa1GD6lDn;es":["#sq1_start","0"],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",6],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled","1"],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter","0"],":~1CFOUK_x[i{fP8hA[3":["#tri_period",380],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter","0"],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",1],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag","0"],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled","0"],"JA8|Du$U5F}!TRea:xoo":["!idle_skip","0"],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable",1],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",0],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate",1],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",1],"elV@:}M3MreZKq22A%3?":["#sq0_swreload","0"],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",0],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",2],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt","0"],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant","1"],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start","0"],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter","0"],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled","0"],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable","0"],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",1],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate","0"],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",2],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload","0"],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",1],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",8],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",768],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI","0"],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",3537228],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",115],"LieAxAMhdI5M{cEs}+(t":["nes: address",210],"n;0UExIQMoO!Lz=!vPek":["@lastframe",8541.155173159723],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",260],"HM)En0c}chMa#CL/6:U:":["$prg_banks",32],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",1],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode","0"],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",59776],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",257],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled","0"],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",7]},"lists":{"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",["1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","0","1","14","1","2","2","2","2","0","3","0","3","13","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","3","33","3","1","2","34","2","2","0","35","0","3","4","36","4","4","11","37","14","37","6","38","12","12","0","39","0","39","40","40","39","39","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","5","6","6","12","12","0","7","0","7","8","8","7","7","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","3","1","3","1","2","2","2","2","0","3","0","3","4","4","4","4","11","5","14","37","6","6","6","6","0","7","0","39","8","8","40","40","","0 imp/acc","1 inx","2 zp","3 imm","4 abs","5 iny","6 zpx","7 aby","8 abx","11 rel","12 zpy","13 ind","14 stp","+32: penalty",""]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",["00","01","02","03","04","05","06","07","08","09","0A","0B","0C","0D","0E","0F","10","11","12","13","14","15","16","17","18","19","1A","1B","1C","1D","1E","1F","20","21","22","23","24","25","26","27","28","29","2A","2B","2C","2D","2E","2F","30","31","32","33","34","35","36","37","38","39","3A","3B","3C","3D","3E","3F","40","41","42","43","44","45","46","47","48","49","4A","4B","4C","4D","4E","4F","50","51","52","53","54","55","56","57","58","59","5A","5B","5C","5D","5E","5F","60","61","62","63","64","65","66","67","68","69","6A","6B","6C","6D","6E","6F","70","71","72","73","74","75","76","77","78","79","7A","7B","7C","7D","7E","7F","80","81","82","83","84","85","86","87","88","89","8A","8B","8C","8D","8E","8F","90","91","92","93","94","95","96","97","98","99","9A","9B","9C","9D","9E","9F","A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","AA","AB","AC","AD","AE","AF","B0","B1","B2","B3","B4","B5","B6","B7","B8","B9","BA","BB","BC","BD","BE","BF","C0","C1","C2","C3","C4","C5","C6","C7","C8","C9","CA","CB","CC","CD","CE","CF","D0","D1","D2","D3","D4","D5","D6","D7","D8","D9","DA","DB","DC","DD","DE","DF","E0","E1","E2","E3","E4","E5","E6","E7","E8","E9","EA","EB","EC","ED","EE","EF","F0","F1","F2","F3","F4","F5","F6","F7","F8","F9","FA","FB","FC","FD","FE","FF"]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",["#666666","#002A88","#1412A7","#3B00A4","#5C007E","#6E0040","#6C0600","#561D00","#333500","#0B4800","#005200","#004F08","#00404D","#000000","#000000","#000000","#ADADAD","#215FD9","#4240FF","#7527FE","#A01ACC","#B71E7B","#B53120","#994E00","#6B6D00","#388700","#0C9300","#008F32","#007C8D","#000000","#000000","#000000","#FFFEFF","#64B0FF","#9290FF","#C676FF","#F36AFF","#FE6ECC","#FE8170","#EA9E22","#BCBE00","#88D800","#5CE430","#45E082","#48CDDE","#4F4F4F","#000000","#000000","#FFFEFF","#C0DFFF","#D3D2FF","#E8C8FF","#FBC2FF","#FEC4EA","#FECCC5","#F7D8A5","#E4E594","#CFEF96","#BDF4AB","#B3F3CC","#B5EBF2","#B8B8B8","#000000","#000000"]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",["10","254","20","2","40","4","80","6","160","8","60","10","14","12","26","14","12","16","24","18","48","20","96","22","192","24","72","26","16","28","32","30"]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",["3","7","15","31","63","95","127","159","201","253","379","507","761","1015","2033","4067"]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]]},"broadcasts":{},"blocks":{"cR":{"opcode":"control_if","next":"jV","parent":"W","inputs":{"CONDITION":[2,"awT"],"SUBSTACK":[2,"awU"]},"fields":{},"shadow":false,"topLevel":false},"cS":{"opcode":"control_if","next":"jW","parent":"awV","inputs":{"CONDITION":[2,"awW"],"SUBSTACK":[2,"awX"]},"fields":{},"shadow":false,"topLevel":false},"cT":{"opcode":"control_if","next":"jX","parent":"awY","inputs":{"CONDITION":[2,"awZ"],"SUBSTACK":[2,"aw!"]},"fields":{},"shadow":false,"topLevel":false},"b":{"opcode":"control_if","next":"bo","parent":"aw#","inputs":{"CONDITION":[2,"aw%"],"SUBSTACK":[2,"aw("]},"fields":{},"shadow":false,"topLevel":false},"e":{"opcode":"control_repeat","next":"aw)","parent":"X","inputs":{"TIMES":[3,"aw*",[6,0]],"SUBSTACK":[2,"aw+"]},"fields":{},"shadow":false,"topLevel":false},"k":{"opcode":"control_if_else","next":null,"parent":"aw,","inputs":{"CONDITION":[2,"bp"],"SUBSTACK":[2,"aw-"],"SUBSTACK2":[2,"bq"]},"fields":{},"shadow":false,"topLevel":false},"l":{"opcode":"control_if_else","next":null,"parent":"aw.","inputs":{"CONDITION":[2,"jY"],"SUBSTACK":[2,"aw/"],"SUBSTACK2":[2,"jZ"]},"fields":{},"shadow":false,"topLevel":false},"b#":{"opcode":"control_if_else","next":"aw;","parent":"aw:","inputs":{"CONDITION":[2,"aw="],"SUBSTACK":[2,"bsI"],"SUBSTACK2":[2,"bsJ"]},"fields":{},"shadow":false,"topLevel":false},"b%":{"opcode":"control_if_else","next":"bsK","parent":"BE","inputs":{"CONDITION":[2,"bsL"],"SUBSTACK":[2,"aw?"],"SUBSTACK2":[2,"aw@"]},"fields":{},"shadow":false,"topLevel":false},"b(":{"opcode":"control_if_else","next":"bsM","parent":"j!","inputs":{"CONDITION":[2,"bsN"],"SUBSTACK":[2,"bsO"],"SUBSTACK2":[2,"bsP"]},"fields":{},"shadow":false,"topLevel":false},"b)":{"opcode":"control_if_else","next":"b*","parent":"j#","inputs":{"CONDITION":[2,"bsQ"],"SUBSTACK":[2,"aw["],"SUBSTACK2":[2,"bsR"]},"fields":{},"shadow":false,"topLevel":false},"bsS":{"opcode":"event_whenbroadcastreceived","next":"bsT","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["pause","a/*ydNVQOyIS;1P2=ed*"]},"shadow":false,"topLevel":true,"x":543,"y":1860},"bsT":{"opcode":"control_stop","next":null,"parent":"bsS","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bsU":{"opcode":"event_whenbroadcastreceived","next":"aw]","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["unpause","so.q}ABBns#?n!myeYQ("]},"shadow":false,"topLevel":true,"x":543,"y":2032},"aw]":{"opcode":"control_forever","next":null,"parent":"bsU","inputs":{"SUBSTACK":[2,"bsV"]},"fields":{},"shadow":false,"topLevel":false},"bsV":{"opcode":"procedures_call","next":null,"parent":"aw]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!cpu","argumentids":"[]","warp":"true"}},"aw^":{"opcode":"procedures_definition","next":"j%","parent":null,"inputs":{"custom_block":[1,"bsW"]},"fields":{},"shadow":false,"topLevel":true,"x":1903,"y":64},"bsW":{"opcode":"procedures_prototype","next":null,"parent":"aw^","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!execute","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"j%":{"opcode":"control_if","next":"j(","parent":"aw^","inputs":{"CONDITION":[2,"aw_"],"SUBSTACK":[2,"j)"]},"fields":{},"shadow":false,"topLevel":false},"aw_":{"opcode":"operator_equals","next":null,"parent":"j%","inputs":{"OPERAND1":[3,"bsX",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bsX":{"opcode":"operator_mod","next":null,"parent":"aw_","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"j)":{"opcode":"control_if","next":"j*","parent":"j%","inputs":{"CONDITION":[2,"aw`"],"SUBSTACK":[2,"j+"]},"fields":{},"shadow":false,"topLevel":false},"aw`":{"opcode":"operator_equals","next":null,"parent":"j)","inputs":{"OPERAND1":[3,"bsY",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bsY":{"opcode":"operator_mod","next":null,"parent":"aw`","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"j+":{"opcode":"control_if","next":"j,","parent":"j)","inputs":{"CONDITION":[2,"bsZ"],"SUBSTACK":[2,"aw{"]},"fields":{},"shadow":false,"topLevel":false},"bsZ":{"opcode":"operator_equals","next":null,"parent":"j+","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aw{":{"opcode":"procedures_call","next":"bs!","parent":"j+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"php","argumentids":"[]","warp":"false"}},"bs!":{"opcode":"control_stop","next":null,"parent":"aw{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j,":{"opcode":"control_if","next":"j-","parent":"j+","inputs":{"CONDITION":[2,"bs#"],"SUBSTACK":[2,"aw|"]},"fields":{},"shadow":false,"topLevel":false},"bs#":{"opcode":"operator_equals","next":null,"parent":"j,","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"40"]]},"fields":{},"shadow":false,"topLevel":false},"aw|":{"opcode":"procedures_call","next":"bs%","parent":"j,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"plp","argumentids":"[]","warp":"false"}},"bs%":{"opcode":"control_stop","next":null,"parent":"aw|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j-":{"opcode":"control_if","next":"j.","parent":"j,","inputs":{"CONDITION":[2,"bs("],"SUBSTACK":[2,"aw}"]},"fields":{},"shadow":false,"topLevel":false},"bs(":{"opcode":"operator_equals","next":null,"parent":"j-","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"72"]]},"fields":{},"shadow":false,"topLevel":false},"aw}":{"opcode":"procedures_call","next":"bs)","parent":"j-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pha","argumentids":"[]","warp":"false"}},"bs)":{"opcode":"control_stop","next":null,"parent":"aw}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j.":{"opcode":"control_if","next":"j/","parent":"j-","inputs":{"CONDITION":[2,"bs*"],"SUBSTACK":[2,"aw~"]},"fields":{},"shadow":false,"topLevel":false},"bs*":{"opcode":"operator_equals","next":null,"parent":"j.","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"104"]]},"fields":{},"shadow":false,"topLevel":false},"aw~":{"opcode":"procedures_call","next":"bs+","parent":"j.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pla","argumentids":"[]","warp":"false"}},"bs+":{"opcode":"control_stop","next":null,"parent":"aw~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j/":{"opcode":"control_if","next":"j:","parent":"j.","inputs":{"CONDITION":[2,"bs,"],"SUBSTACK":[2,"axa"]},"fields":{},"shadow":false,"topLevel":false},"bs,":{"opcode":"operator_equals","next":null,"parent":"j/","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"136"]]},"fields":{},"shadow":false,"topLevel":false},"axa":{"opcode":"procedures_call","next":"bs-","parent":"j/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dey","argumentids":"[]","warp":"false"}},"bs-":{"opcode":"control_stop","next":null,"parent":"axa","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j:":{"opcode":"control_if","next":"j;","parent":"j/","inputs":{"CONDITION":[2,"bs."],"SUBSTACK":[2,"axb"]},"fields":{},"shadow":false,"topLevel":false},"bs.":{"opcode":"operator_equals","next":null,"parent":"j:","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"168"]]},"fields":{},"shadow":false,"topLevel":false},"axb":{"opcode":"procedures_call","next":"bs/","parent":"j:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tay","argumentids":"[]","warp":"false"}},"bs/":{"opcode":"control_stop","next":null,"parent":"axb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j*":{"opcode":"control_if","next":"j=","parent":"j)","inputs":{"CONDITION":[2,"axc"],"SUBSTACK":[2,"j?"]},"fields":{},"shadow":false,"topLevel":false},"axc":{"opcode":"operator_equals","next":null,"parent":"j*","inputs":{"OPERAND1":[3,"bs:",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bs:":{"opcode":"operator_mod","next":null,"parent":"axc","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"j?":{"opcode":"control_if","next":"j@","parent":"j*","inputs":{"CONDITION":[2,"bs;"],"SUBSTACK":[2,"BF"]},"fields":{},"shadow":false,"topLevel":false},"bs;":{"opcode":"operator_equals","next":null,"parent":"j?","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"BF":{"opcode":"procedures_call","next":"bs=","parent":"j?","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bs?"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bs?":{"opcode":"operator_equals","next":null,"parent":"BF","inputs":{"OPERAND1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bs=":{"opcode":"control_stop","next":null,"parent":"BF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j@":{"opcode":"control_if","next":"j[","parent":"j?","inputs":{"CONDITION":[2,"bs@"],"SUBSTACK":[2,"BG"]},"fields":{},"shadow":false,"topLevel":false},"bs@":{"opcode":"operator_equals","next":null,"parent":"j@","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},"BG":{"opcode":"procedures_call","next":"bs[","parent":"j@","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bs]"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bs]":{"opcode":"operator_equals","next":null,"parent":"BG","inputs":{"OPERAND1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bs[":{"opcode":"control_stop","next":null,"parent":"BG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j[":{"opcode":"control_if","next":"j]","parent":"j@","inputs":{"CONDITION":[2,"bs^"],"SUBSTACK":[2,"BH"]},"fields":{},"shadow":false,"topLevel":false},"bs^":{"opcode":"operator_equals","next":null,"parent":"j[","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"BH":{"opcode":"procedures_call","next":"bs_","parent":"j[","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bs`"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bs`":{"opcode":"operator_equals","next":null,"parent":"BH","inputs":{"OPERAND1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bs_":{"opcode":"control_stop","next":null,"parent":"BH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j]":{"opcode":"control_if","next":"j^","parent":"j[","inputs":{"CONDITION":[2,"bs{"],"SUBSTACK":[2,"BI"]},"fields":{},"shadow":false,"topLevel":false},"bs{":{"opcode":"operator_equals","next":null,"parent":"j]","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"112"]]},"fields":{},"shadow":false,"topLevel":false},"BI":{"opcode":"procedures_call","next":"bs|","parent":"j]","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bs}"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bs}":{"opcode":"operator_equals","next":null,"parent":"BI","inputs":{"OPERAND1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bs|":{"opcode":"control_stop","next":null,"parent":"BI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j^":{"opcode":"control_if","next":"j_","parent":"j]","inputs":{"CONDITION":[2,"bs~"],"SUBSTACK":[2,"BJ"]},"fields":{},"shadow":false,"topLevel":false},"bs~":{"opcode":"operator_equals","next":null,"parent":"j^","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"BJ":{"opcode":"procedures_call","next":"bta","parent":"j^","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"btb"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"btb":{"opcode":"operator_equals","next":null,"parent":"BJ","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bta":{"opcode":"control_stop","next":null,"parent":"BJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j_":{"opcode":"control_if","next":"j`","parent":"j^","inputs":{"CONDITION":[2,"btc"],"SUBSTACK":[2,"BK"]},"fields":{},"shadow":false,"topLevel":false},"btc":{"opcode":"operator_equals","next":null,"parent":"j_","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"176"]]},"fields":{},"shadow":false,"topLevel":false},"BK":{"opcode":"procedures_call","next":"btd","parent":"j_","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bte"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bte":{"opcode":"operator_equals","next":null,"parent":"BK","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"btd":{"opcode":"control_stop","next":null,"parent":"BK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j`":{"opcode":"control_if","next":"BL","parent":"j_","inputs":{"CONDITION":[2,"btf"],"SUBSTACK":[2,"BM"]},"fields":{},"shadow":false,"topLevel":false},"btf":{"opcode":"operator_equals","next":null,"parent":"j`","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"208"]]},"fields":{},"shadow":false,"topLevel":false},"BM":{"opcode":"procedures_call","next":"btg","parent":"j`","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"bth"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"bth":{"opcode":"operator_equals","next":null,"parent":"BM","inputs":{"OPERAND1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"btg":{"opcode":"control_stop","next":null,"parent":"BM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"BL":{"opcode":"control_if","next":null,"parent":"j`","inputs":{"CONDITION":[2,"bti"],"SUBSTACK":[2,"BN"]},"fields":{},"shadow":false,"topLevel":false},"bti":{"opcode":"operator_equals","next":null,"parent":"BL","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"BN":{"opcode":"procedures_call","next":"btj","parent":"BL","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[2,"btk"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","warp":"false"}},"btk":{"opcode":"operator_equals","next":null,"parent":"BN","inputs":{"OPERAND1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"btj":{"opcode":"control_stop","next":null,"parent":"BN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j=":{"opcode":"control_if","next":"j{","parent":"j*","inputs":{"CONDITION":[2,"axd"],"SUBSTACK":[2,"j|"]},"fields":{},"shadow":false,"topLevel":false},"axd":{"opcode":"operator_equals","next":null,"parent":"j=","inputs":{"OPERAND1":[3,"btl",[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"btl":{"opcode":"operator_mod","next":null,"parent":"axd","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"j|":{"opcode":"control_if","next":"j}","parent":"j=","inputs":{"CONDITION":[2,"btm"],"SUBSTACK":[2,"axe"]},"fields":{},"shadow":false,"topLevel":false},"btm":{"opcode":"operator_equals","next":null,"parent":"j|","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"axe":{"opcode":"data_setvariableto","next":"btn","parent":"j|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"btn":{"opcode":"control_stop","next":null,"parent":"axe","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j}":{"opcode":"control_if","next":"j~","parent":"j|","inputs":{"CONDITION":[2,"bto"],"SUBSTACK":[2,"axf"]},"fields":{},"shadow":false,"topLevel":false},"bto":{"opcode":"operator_equals","next":null,"parent":"j}","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"56"]]},"fields":{},"shadow":false,"topLevel":false},"axf":{"opcode":"data_setvariableto","next":"btp","parent":"j}","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"btp":{"opcode":"control_stop","next":null,"parent":"axf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j~":{"opcode":"control_if","next":"ka","parent":"j}","inputs":{"CONDITION":[2,"btq"],"SUBSTACK":[2,"axg"]},"fields":{},"shadow":false,"topLevel":false},"btq":{"opcode":"operator_equals","next":null,"parent":"j~","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"88"]]},"fields":{},"shadow":false,"topLevel":false},"axg":{"opcode":"data_setvariableto","next":"btr","parent":"j~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"btr":{"opcode":"control_stop","next":null,"parent":"axg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ka":{"opcode":"control_if","next":"kb","parent":"j~","inputs":{"CONDITION":[2,"bts"],"SUBSTACK":[2,"axh"]},"fields":{},"shadow":false,"topLevel":false},"bts":{"opcode":"operator_equals","next":null,"parent":"ka","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"120"]]},"fields":{},"shadow":false,"topLevel":false},"axh":{"opcode":"data_setvariableto","next":"btt","parent":"ka","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"btt":{"opcode":"control_stop","next":null,"parent":"axh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kb":{"opcode":"control_if","next":"kc","parent":"ka","inputs":{"CONDITION":[2,"btu"],"SUBSTACK":[2,"axi"]},"fields":{},"shadow":false,"topLevel":false},"btu":{"opcode":"operator_equals","next":null,"parent":"kb","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"152"]]},"fields":{},"shadow":false,"topLevel":false},"axi":{"opcode":"procedures_call","next":"btv","parent":"kb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tya","argumentids":"[]","warp":"false"}},"btv":{"opcode":"control_stop","next":null,"parent":"axi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kc":{"opcode":"control_if","next":"kd","parent":"kb","inputs":{"CONDITION":[2,"btw"],"SUBSTACK":[2,"axj"]},"fields":{},"shadow":false,"topLevel":false},"btw":{"opcode":"operator_equals","next":null,"parent":"kc","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"184"]]},"fields":{},"shadow":false,"topLevel":false},"axj":{"opcode":"data_setvariableto","next":"btx","parent":"kc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"btx":{"opcode":"control_stop","next":null,"parent":"axj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kd":{"opcode":"control_if","next":"BO","parent":"kc","inputs":{"CONDITION":[2,"bty"],"SUBSTACK":[2,"axk"]},"fields":{},"shadow":false,"topLevel":false},"bty":{"opcode":"operator_equals","next":null,"parent":"kd","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"216"]]},"fields":{},"shadow":false,"topLevel":false},"axk":{"opcode":"data_setvariableto","next":"btz","parent":"kd","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"btz":{"opcode":"control_stop","next":null,"parent":"axk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"BO":{"opcode":"control_if","next":null,"parent":"kd","inputs":{"CONDITION":[2,"btA"],"SUBSTACK":[2,"axl"]},"fields":{},"shadow":false,"topLevel":false},"btA":{"opcode":"operator_equals","next":null,"parent":"BO","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"axl":{"opcode":"data_setvariableto","next":"btB","parent":"BO","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"btB":{"opcode":"control_stop","next":null,"parent":"axl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j{":{"opcode":"control_if","next":"ke","parent":"j=","inputs":{"CONDITION":[2,"btC"],"SUBSTACK":[2,"kf"]},"fields":{},"shadow":false,"topLevel":false},"btC":{"opcode":"operator_lt","next":null,"parent":"j{","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"kf":{"opcode":"control_if","next":"kg","parent":"j{","inputs":{"CONDITION":[2,"btD"],"SUBSTACK":[2,"axm"]},"fields":{},"shadow":false,"topLevel":false},"btD":{"opcode":"operator_equals","next":null,"parent":"kf","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"axm":{"opcode":"data_changevariableby","next":"axn","parent":"kf","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"axn":{"opcode":"data_setvariableto","next":"btE","parent":"axm","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"btE":{"opcode":"control_stop","next":null,"parent":"axn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kg":{"opcode":"control_if","next":"kh","parent":"kf","inputs":{"CONDITION":[2,"btF"],"SUBSTACK":[2,"axo"]},"fields":{},"shadow":false,"topLevel":false},"btF":{"opcode":"operator_equals","next":null,"parent":"kg","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"axo":{"opcode":"procedures_call","next":"btG","parent":"kg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jsr","argumentids":"[]","warp":"false"}},"btG":{"opcode":"control_stop","next":null,"parent":"axo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ke":{"opcode":"control_if","next":"ki","parent":"j{","inputs":{"CONDITION":[2,"btH"],"SUBSTACK":[2,"kj"]},"fields":{},"shadow":false,"topLevel":false},"btH":{"opcode":"operator_lt","next":null,"parent":"ke","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"kj":{"opcode":"control_if","next":"kk","parent":"ke","inputs":{"CONDITION":[2,"btI"],"SUBSTACK":[2,"btJ"]},"fields":{},"shadow":false,"topLevel":false},"btI":{"opcode":"operator_equals","next":null,"parent":"kj","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"btJ":{"opcode":"control_stop","next":null,"parent":"kj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kk":{"opcode":"control_if","next":"axp","parent":"kj","inputs":{"CONDITION":[2,"btK"],"SUBSTACK":[2,"axq"]},"fields":{},"shadow":false,"topLevel":false},"btK":{"opcode":"operator_equals","next":null,"parent":"kk","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"156"]]},"fields":{},"shadow":false,"topLevel":false},"axq":{"opcode":"procedures_call","next":"btL","parent":"kk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shy","argumentids":"[]","warp":"false"}},"btL":{"opcode":"control_stop","next":null,"parent":"axq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axp":{"opcode":"procedures_call","next":"btM","parent":"kk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sty","argumentids":"[]","warp":"false"}},"btM":{"opcode":"control_stop","next":null,"parent":"axp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ki":{"opcode":"control_if","next":"kl","parent":"ke","inputs":{"CONDITION":[2,"btN"],"SUBSTACK":[2,"axr"]},"fields":{},"shadow":false,"topLevel":false},"btN":{"opcode":"operator_lt","next":null,"parent":"ki","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"axr":{"opcode":"procedures_call","next":"btO","parent":"ki","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldy","argumentids":"[]","warp":"false"}},"btO":{"opcode":"control_stop","next":null,"parent":"axr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kl":{"opcode":"control_if","next":"BP","parent":"ki","inputs":{"CONDITION":[2,"btP"],"SUBSTACK":[2,"km"]},"fields":{},"shadow":false,"topLevel":false},"btP":{"opcode":"operator_lt","next":null,"parent":"kl","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"BP":{"opcode":"control_if","next":null,"parent":"kl","inputs":{"CONDITION":[2,"btQ"],"SUBSTACK":[2,"kn"]},"fields":{},"shadow":false,"topLevel":false},"btQ":{"opcode":"operator_lt","next":null,"parent":"BP","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"kn":{"opcode":"control_if","next":"axs","parent":"BP","inputs":{"CONDITION":[2,"btR"],"SUBSTACK":[2,"axt"]},"fields":{},"shadow":false,"topLevel":false},"btR":{"opcode":"operator_gt","next":null,"parent":"kn","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"243"]]},"fields":{},"shadow":false,"topLevel":false},"axt":{"opcode":"procedures_call","next":"btS","parent":"kn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"btS":{"opcode":"control_stop","next":null,"parent":"axt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axs":{"opcode":"procedures_call","next":"btT","parent":"kn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpx","argumentids":"[]","warp":"false"}},"btT":{"opcode":"control_stop","next":null,"parent":"axs","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j(":{"opcode":"control_if","next":"ko","parent":"j%","inputs":{"CONDITION":[2,"axu"],"SUBSTACK":[2,"kp"]},"fields":{},"shadow":false,"topLevel":false},"axu":{"opcode":"operator_equals","next":null,"parent":"j(","inputs":{"OPERAND1":[3,"btU",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"btU":{"opcode":"operator_mod","next":null,"parent":"axu","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"kp":{"opcode":"control_if","next":"kq","parent":"j(","inputs":{"CONDITION":[2,"btV"],"SUBSTACK":[2,"axv"]},"fields":{},"shadow":false,"topLevel":false},"btV":{"opcode":"operator_lt","next":null,"parent":"kp","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"axv":{"opcode":"procedures_call","next":"btW","parent":"kp","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ora","argumentids":"[]","warp":"false"}},"btW":{"opcode":"control_stop","next":null,"parent":"axv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kq":{"opcode":"control_if","next":"kr","parent":"kp","inputs":{"CONDITION":[2,"btX"],"SUBSTACK":[2,"axw"]},"fields":{},"shadow":false,"topLevel":false},"btX":{"opcode":"operator_lt","next":null,"parent":"kq","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"axw":{"opcode":"procedures_call","next":"btY","parent":"kq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"btY":{"opcode":"control_stop","next":null,"parent":"axw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kr":{"opcode":"control_if","next":"ks","parent":"kq","inputs":{"CONDITION":[2,"btZ"],"SUBSTACK":[2,"axx"]},"fields":{},"shadow":false,"topLevel":false},"btZ":{"opcode":"operator_lt","next":null,"parent":"kr","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"axx":{"opcode":"procedures_call","next":"bt!","parent":"kr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"eor","argumentids":"[]","warp":"false"}},"bt!":{"opcode":"control_stop","next":null,"parent":"axx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ks":{"opcode":"control_if","next":"kt","parent":"kr","inputs":{"CONDITION":[2,"bt#"],"SUBSTACK":[2,"axy"]},"fields":{},"shadow":false,"topLevel":false},"bt#":{"opcode":"operator_lt","next":null,"parent":"ks","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"axy":{"opcode":"procedures_call","next":"bt%","parent":"ks","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"adc","argumentids":"[]","warp":"false"}},"bt%":{"opcode":"control_stop","next":null,"parent":"axy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kt":{"opcode":"control_if","next":"ku","parent":"ks","inputs":{"CONDITION":[2,"bt("],"SUBSTACK":[2,"kv"]},"fields":{},"shadow":false,"topLevel":false},"bt(":{"opcode":"operator_lt","next":null,"parent":"kt","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"kv":{"opcode":"control_if","next":"axz","parent":"kt","inputs":{"CONDITION":[2,"bt)"],"SUBSTACK":[2,"bt*"]},"fields":{},"shadow":false,"topLevel":false},"bt)":{"opcode":"operator_equals","next":null,"parent":"kv","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"137"]]},"fields":{},"shadow":false,"topLevel":false},"bt*":{"opcode":"control_stop","next":null,"parent":"kv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axz":{"opcode":"procedures_call","next":"bt+","parent":"kv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sta","argumentids":"[]","warp":"false"}},"bt+":{"opcode":"control_stop","next":null,"parent":"axz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ku":{"opcode":"control_if","next":"kw","parent":"kt","inputs":{"CONDITION":[2,"bt,"],"SUBSTACK":[2,"axA"]},"fields":{},"shadow":false,"topLevel":false},"bt,":{"opcode":"operator_lt","next":null,"parent":"ku","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"axA":{"opcode":"procedures_call","next":"bt-","parent":"ku","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","warp":"false"}},"bt-":{"opcode":"control_stop","next":null,"parent":"axA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kw":{"opcode":"control_if","next":"BQ","parent":"ku","inputs":{"CONDITION":[2,"bt."],"SUBSTACK":[2,"axB"]},"fields":{},"shadow":false,"topLevel":false},"bt.":{"opcode":"operator_lt","next":null,"parent":"kw","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"axB":{"opcode":"procedures_call","next":"bt/","parent":"kw","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cmp","argumentids":"[]","warp":"false"}},"bt/":{"opcode":"control_stop","next":null,"parent":"axB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"BQ":{"opcode":"control_if","next":null,"parent":"kw","inputs":{"CONDITION":[2,"bt:"],"SUBSTACK":[2,"axC"]},"fields":{},"shadow":false,"topLevel":false},"bt:":{"opcode":"operator_lt","next":null,"parent":"BQ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"axC":{"opcode":"procedures_call","next":"bt;","parent":"BQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","warp":"false"}},"bt;":{"opcode":"control_stop","next":null,"parent":"axC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"axD":{"opcode":"data_setvariableto","next":"axF","parent":"axE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"axF":{"opcode":"data_setvariableto","next":"axG","parent":"axD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"axG":{"opcode":"data_setvariableto","next":"BR","parent":"axF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"BR":{"opcode":"data_setvariableto","next":"axH","parent":"axG","inputs":{"VALUE":[3,"BS",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"BS":{"opcode":"operator_add","next":null,"parent":"BR","inputs":{"NUM1":[3,"axI",[4,0]],"NUM2":[3,"axJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"axI":{"opcode":"operator_multiply","next":null,"parent":"BS","inputs":{"NUM1":[3,"axK",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"axK":{"opcode":"data_itemoflist","next":null,"parent":"axI","inputs":{"INDEX":[3,"bt=",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"bt=":{"opcode":"operator_subtract","next":null,"parent":"axK","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"axJ":{"opcode":"data_itemoflist","next":null,"parent":"BS","inputs":{"INDEX":[3,"bt?",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"bt?":{"opcode":"operator_subtract","next":null,"parent":"axJ","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"axH":{"opcode":"data_setvariableto","next":"axL","parent":"BR","inputs":{"VALUE":[1,[10,"253"]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"axL":{"opcode":"data_setvariableto","next":"axM","parent":"axH","inputs":{"VALUE":[1,[10,"36"]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"axM":{"opcode":"data_setvariableto","next":"axN","parent":"axL","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"axN":{"opcode":"data_setvariableto","next":"axO","parent":"axM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"axO":{"opcode":"data_setvariableto","next":"axP","parent":"axN","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"axP":{"opcode":"data_setvariableto","next":"axQ","parent":"axO","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"axQ":{"opcode":"data_setvariableto","next":"axR","parent":"axP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"axR":{"opcode":"data_setvariableto","next":"axS","parent":"axQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"axS":{"opcode":"data_setvariableto","next":"axT","parent":"axR","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"axT":{"opcode":"data_setvariableto","next":"axU","parent":"axS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"axU":{"opcode":"data_setvariableto","next":"axV","parent":"axT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"axV":{"opcode":"data_setvariableto","next":"axW","parent":"axU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"axW":{"opcode":"data_setvariableto","next":"axX","parent":"axV","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"axX":{"opcode":"data_setvariableto","next":"axY","parent":"axW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"axY":{"opcode":"data_setvariableto","next":"axZ","parent":"axX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"axZ":{"opcode":"data_setvariableto","next":"ax!","parent":"axY","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"ax!":{"opcode":"data_setvariableto","next":"ax#","parent":"axZ","inputs":{"VALUE":[1,[10,"27"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ax#":{"opcode":"data_setvariableto","next":"ax%","parent":"ax!","inputs":{"VALUE":[1,[10,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"ax%":{"opcode":"data_setvariableto","next":"BT","parent":"ax#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"ax(":{"opcode":"data_deletealloflist","next":"BU","parent":"ax)","inputs":{},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"BU":{"opcode":"control_repeat","next":"kx","parent":"ax(","inputs":{"TIMES":[1,[6,"2048"]],"SUBSTACK":[2,"bt@"]},"fields":{},"shadow":false,"topLevel":false},"bt@":{"opcode":"data_addtolist","next":null,"parent":"BU","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"kx":{"opcode":"control_if","next":"ax*","parent":"BU","inputs":{"CONDITION":[2,"bt["],"SUBSTACK":[2,"ax+"]},"fields":{},"shadow":false,"topLevel":false},"bt[":{"opcode":"operator_equals","next":null,"parent":"kx","inputs":{"OPERAND1":[3,[12,"battery","H0q(Yr;S8emYQ`u=.co}"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax+":{"opcode":"data_deletealloflist","next":"BV","parent":"kx","inputs":{},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"BV":{"opcode":"control_repeat","next":"bt]","parent":"ax+","inputs":{"TIMES":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[6,0]],"SUBSTACK":[2,"bt^"]},"fields":{},"shadow":false,"topLevel":false},"bt^":{"opcode":"data_addtolist","next":null,"parent":"BV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"bt]":{"opcode":"data_setvariableto","next":null,"parent":"BV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["battery","H0q(Yr;S8emYQ`u=.co}"]},"shadow":false,"topLevel":false},"ax,":{"opcode":"procedures_definition","next":"ax-","parent":null,"inputs":{"custom_block":[1,"bt_"]},"fields":{},"shadow":false,"topLevel":true,"x":543,"y":2280},"bt_":{"opcode":"procedures_prototype","next":null,"parent":"ax,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!cpu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ax-":{"opcode":"data_setvariableto","next":"ax.","parent":"ax,","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ax.":{"opcode":"procedures_call","next":"ax/","parent":"ax-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ax/":{"opcode":"data_setvariableto","next":"ax:","parent":"ax.","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!op","PdO5iRC_RNzBVsdyMO(q"]},"shadow":false,"topLevel":false},"ax:":{"opcode":"data_changevariableby","next":"ax;","parent":"ax/","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"ax;":{"opcode":"data_changevariableby","next":"ax=","parent":"ax:","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ax=":{"opcode":"procedures_call","next":"ax?","parent":"ax;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ax?":{"opcode":"procedures_call","next":"ax@","parent":"ax=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!address","argumentids":"[]","warp":"true"}},"ax@":{"opcode":"procedures_call","next":"ax[","parent":"ax?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!execute","argumentids":"[]","warp":"true"}},"ax[":{"opcode":"procedures_call","next":"ky","parent":"ax@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set p","argumentids":"[]","warp":"true"}},"ky":{"opcode":"control_if","next":"kz","parent":"ax[","inputs":{"CONDITION":[2,"bt`"],"SUBSTACK":[2,"ax]"]},"fields":{},"shadow":false,"topLevel":false},"bt`":{"opcode":"operator_gt","next":null,"parent":"ky","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"ax]":{"opcode":"data_changevariableby","next":"bt{","parent":"ky","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"bt{":{"opcode":"procedures_call","next":null,"parent":"ax]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"kz":{"opcode":"control_if","next":"kA","parent":"ky","inputs":{"CONDITION":[2,"bt|"],"SUBSTACK":[2,"ax^"]},"fields":{},"shadow":false,"topLevel":false},"bt|":{"opcode":"operator_gt","next":null,"parent":"kz","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ax^":{"opcode":"data_changevariableby","next":"bt}","parent":"kz","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"bt}":{"opcode":"procedures_call","next":null,"parent":"ax^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"kA":{"opcode":"control_if","next":"kB","parent":"kz","inputs":{"CONDITION":[2,"ax_"],"SUBSTACK":[2,"ax`"]},"fields":{},"shadow":false,"topLevel":false},"ax_":{"opcode":"operator_equals","next":null,"parent":"kA","inputs":{"OPERAND1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]],"OPERAND2":[3,"bt~",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bt~":{"opcode":"operator_mod","next":null,"parent":"ax_","inputs":{"NUM1":[3,[12,"idle_skip","n5MwDuyB]-ZSKqim@`ip"],[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"ax`":{"opcode":"data_changevariableby","next":"BW","parent":"kA","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"BW":{"opcode":"control_if","next":null,"parent":"ax`","inputs":{"CONDITION":[2,"bua"],"SUBSTACK":[2,"kC"]},"fields":{},"shadow":false,"topLevel":false},"bua":{"opcode":"operator_equals","next":null,"parent":"BW","inputs":{"OPERAND1":[3,[12,"!idle_skip","JA8|Du$U5F}!TRea:xoo"],[10,""]],"OPERAND2":[1,[10,"42"]]},"fields":{},"shadow":false,"topLevel":false},"kC":{"opcode":"control_repeat_until","next":"bub","parent":"BW","inputs":{"CONDITION":[2,"BX"],"SUBSTACK":[2,"ax{"]},"fields":{},"shadow":false,"topLevel":false},"BX":{"opcode":"operator_or","next":null,"parent":"kC","inputs":{"OPERAND1":[2,"buc"],"OPERAND2":[2,"BY"]},"fields":{},"shadow":false,"topLevel":false},"buc":{"opcode":"operator_equals","next":null,"parent":"BX","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"BY":{"opcode":"operator_or","next":null,"parent":"BX","inputs":{"OPERAND1":[2,"BZ"],"OPERAND2":[2,"B!"]},"fields":{},"shadow":false,"topLevel":false},"BZ":{"opcode":"operator_and","next":null,"parent":"BY","inputs":{"OPERAND1":[2,"bud"],"OPERAND2":[2,"bue"]},"fields":{},"shadow":false,"topLevel":false},"bud":{"opcode":"operator_gt","next":null,"parent":"BZ","inputs":{"OPERAND1":[3,[12,"nes: IRQ","N)orW@%%E%$4al|2,BkE"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bue":{"opcode":"operator_equals","next":null,"parent":"BZ","inputs":{"OPERAND1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"B!":{"opcode":"operator_and","next":null,"parent":"BY","inputs":{"OPERAND1":[2,"buf"],"OPERAND2":[2,"bug"]},"fields":{},"shadow":false,"topLevel":false},"buf":{"opcode":"operator_gt","next":null,"parent":"B!","inputs":{"OPERAND1":[3,[12,"idle_skip","n5MwDuyB]-ZSKqim@`ip"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"bug":{"opcode":"operator_equals","next":null,"parent":"B!","inputs":{"OPERAND1":[3,[12,"@sprite_hit","Y5dm@[4]PzSED`#Df2W["],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ax{":{"opcode":"data_changevariableby","next":"ax|","parent":"kC","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ax|":{"opcode":"data_changevariableby","next":"B#","parent":"ax{","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"bub":{"opcode":"data_setvariableto","next":null,"parent":"kC","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!idle_skip","JA8|Du$U5F}!TRea:xoo"]},"shadow":false,"topLevel":false},"kB":{"opcode":"control_if","next":"B%","parent":"kA","inputs":{"CONDITION":[2,"B("],"SUBSTACK":[2,"ax}"]},"fields":{},"shadow":false,"topLevel":false},"B(":{"opcode":"operator_and","next":null,"parent":"kB","inputs":{"OPERAND1":[2,"buh"],"OPERAND2":[2,"bui"]},"fields":{},"shadow":false,"topLevel":false},"buh":{"opcode":"operator_equals","next":null,"parent":"B(","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bui":{"opcode":"operator_equals","next":null,"parent":"B(","inputs":{"OPERAND1":[3,[12,"!NMI_occured","YCX/}Ja|`ApccN*r;:,O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ax}":{"opcode":"data_changevariableby","next":"ax~","parent":"kB","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ax~":{"opcode":"data_changevariableby","next":"aya","parent":"ax}","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"aya":{"opcode":"procedures_call","next":"ayb","parent":"ax~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ayb":{"opcode":"procedures_call","next":"ayc","parent":"aya","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ayc":{"opcode":"procedures_call","next":"buj","parent":"ayb","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65530"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"buj":{"opcode":"data_setvariableto","next":null,"parent":"ayc","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"B%":{"opcode":"control_if","next":"B)","parent":"kB","inputs":{"CONDITION":[2,"B*"],"SUBSTACK":[2,"ayd"]},"fields":{},"shadow":false,"topLevel":false},"B*":{"opcode":"operator_and","next":null,"parent":"B%","inputs":{"OPERAND1":[2,"buk"],"OPERAND2":[2,"bul"]},"fields":{},"shadow":false,"topLevel":false},"buk":{"opcode":"operator_equals","next":null,"parent":"B*","inputs":{"OPERAND1":[3,[12,"nes: IRQ","N)orW@%%E%$4al|2,BkE"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bul":{"opcode":"operator_equals","next":null,"parent":"B*","inputs":{"OPERAND1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ayd":{"opcode":"data_changevariableby","next":"aye","parent":"B%","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"aye":{"opcode":"data_changevariableby","next":"ayf","parent":"ayd","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ayf":{"opcode":"procedures_call","next":"ayg","parent":"aye","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"ayg":{"opcode":"procedures_call","next":"bum","parent":"ayf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"bum":{"opcode":"procedures_call","next":null,"parent":"ayg","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65534"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"B)":{"opcode":"control_if","next":"B+","parent":"B%","inputs":{"CONDITION":[2,"bun"],"SUBSTACK":[2,"ayh"]},"fields":{},"shadow":false,"topLevel":false},"bun":{"opcode":"operator_equals","next":null,"parent":"B)","inputs":{"OPERAND1":[3,[12,"!break","6zFO5H,!X[g$Ax)0BDc:"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ayh":{"opcode":"procedures_call","next":"buo","parent":"B)","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,[10,"65534"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","warp":"true"}},"buo":{"opcode":"data_setvariableto","next":null,"parent":"ayh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!break","6zFO5H,!X[g$Ax)0BDc:"]},"shadow":false,"topLevel":false},"B+":{"opcode":"control_if","next":null,"parent":"B)","inputs":{"CONDITION":[2,"B,"],"SUBSTACK":[2,"bup"]},"fields":{},"shadow":false,"topLevel":false},"B,":{"opcode":"operator_and","next":null,"parent":"B+","inputs":{"OPERAND1":[2,"buq"],"OPERAND2":[2,"bur"]},"fields":{},"shadow":false,"topLevel":false},"buq":{"opcode":"operator_equals","next":null,"parent":"B,","inputs":{"OPERAND1":[3,[12,"nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bur":{"opcode":"operator_equals","next":null,"parent":"B,","inputs":{"OPERAND1":[3,[12,"!NMI_occured","YCX/}Ja|`ApccN*r;:,O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bup":{"opcode":"data_setvariableto","next":null,"parent":"B+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!NMI_occured","YCX/}Ja|`ApccN*r;:,O"]},"shadow":false,"topLevel":false},"ayi":{"opcode":"procedures_definition","next":"B-","parent":null,"inputs":{"custom_block":[1,"bus"]},"fields":{},"shadow":false,"topLevel":true,"x":2496,"y":64},"bus":{"opcode":"procedures_prototype","next":null,"parent":"ayi","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"B-":{"opcode":"control_if","next":"ayj","parent":"ayi","inputs":{"CONDITION":[2,"but"],"SUBSTACK":[2,"ayk"]},"fields":{},"shadow":false,"topLevel":false},"but":{"opcode":"operator_equals","next":null,"parent":"B-","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"80000"]]},"fields":{},"shadow":false,"topLevel":false},"ayk":{"opcode":"data_setvariableto","next":"buu","parent":"B-","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"buu":{"opcode":"control_stop","next":null,"parent":"ayk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayj":{"opcode":"data_changevariableby","next":"ayl","parent":"B-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ayl":{"opcode":"data_changevariableby","next":"aym","parent":"ayj","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"aym":{"opcode":"procedures_call","next":"B.","parent":"ayl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"B.":{"opcode":"control_if","next":"B/","parent":"aym","inputs":{"CONDITION":[2,"buv"],"SUBSTACK":[2,"B:"]},"fields":{},"shadow":false,"topLevel":false},"buv":{"opcode":"operator_lt","next":null,"parent":"B.","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"B:":{"opcode":"data_replaceitemoflist","next":"buw","parent":"B.","inputs":{"INDEX":[3,"ayn",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"ayn":{"opcode":"operator_add","next":null,"parent":"B:","inputs":{"NUM1":[3,"bux",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bux":{"opcode":"operator_mod","next":null,"parent":"ayn","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"buw":{"opcode":"control_stop","next":null,"parent":"B:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B/":{"opcode":"control_if","next":"B;","parent":"B.","inputs":{"CONDITION":[2,"B="],"SUBSTACK":[2,"ayo"]},"fields":{},"shadow":false,"topLevel":false},"B=":{"opcode":"operator_and","next":null,"parent":"B/","inputs":{"OPERAND1":[2,"buy"],"OPERAND2":[2,"buz"]},"fields":{},"shadow":false,"topLevel":false},"buy":{"opcode":"operator_gt","next":null,"parent":"B=","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"buz":{"opcode":"operator_lt","next":null,"parent":"B=","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"ayo":{"opcode":"procedures_call","next":"buA","parent":"B/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu write","argumentids":"[]","warp":"true"}},"buA":{"opcode":"control_stop","next":null,"parent":"ayo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B;":{"opcode":"control_if","next":"B?","parent":"B/","inputs":{"CONDITION":[2,"B@"],"SUBSTACK":[2,"ayp"]},"fields":{},"shadow":false,"topLevel":false},"B@":{"opcode":"operator_and","next":null,"parent":"B;","inputs":{"OPERAND1":[2,"buB"],"OPERAND2":[2,"buC"]},"fields":{},"shadow":false,"topLevel":false},"buB":{"opcode":"operator_gt","next":null,"parent":"B@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16383"]]},"fields":{},"shadow":false,"topLevel":false},"buC":{"opcode":"operator_lt","next":null,"parent":"B@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16404"]]},"fields":{},"shadow":false,"topLevel":false},"ayp":{"opcode":"procedures_call","next":"buD","parent":"B;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"buD":{"opcode":"control_stop","next":null,"parent":"ayp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B?":{"opcode":"control_if","next":"B[","parent":"B;","inputs":{"CONDITION":[2,"buE"],"SUBSTACK":[2,"B]"]},"fields":{},"shadow":false,"topLevel":false},"buE":{"opcode":"operator_equals","next":null,"parent":"B?","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16404"]]},"fields":{},"shadow":false,"topLevel":false},"B]":{"opcode":"control_if","next":"B^","parent":"B?","inputs":{"CONDITION":[2,"ayq"],"SUBSTACK":[2,"ayr"]},"fields":{},"shadow":false,"topLevel":false},"ayq":{"opcode":"operator_equals","next":null,"parent":"B]","inputs":{"OPERAND1":[3,"buF",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"buF":{"opcode":"operator_mod","next":null,"parent":"ayq","inputs":{"NUM1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ayr":{"opcode":"data_changevariableby","next":"ays","parent":"B]","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ays":{"opcode":"data_changevariableby","next":"buG","parent":"ayr","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"buG":{"opcode":"procedures_call","next":null,"parent":"ays","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"B^":{"opcode":"data_setvariableto","next":"B_","parent":"B]","inputs":{"VALUE":[3,"buH",[10,""]]},"fields":{"VARIABLE":["!sprite_dma","?knU,3_sJVt4l09i6{)x"]},"shadow":false,"topLevel":false},"buH":{"opcode":"operator_multiply","next":null,"parent":"B^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"B_":{"opcode":"control_repeat","next":"ayt","parent":"B^","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"ayu"]},"fields":{},"shadow":false,"topLevel":false},"ayu":{"opcode":"data_setvariableto","next":"ayv","parent":"B_","inputs":{"VALUE":[3,[12,"!sprite_dma","?knU,3_sJVt4l09i6{)x"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ayv":{"opcode":"procedures_call","next":"ayw","parent":"ayu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ayw":{"opcode":"data_setvariableto","next":"ayx","parent":"ayv","inputs":{"VALUE":[1,[10,"8196"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ayx":{"opcode":"procedures_call","next":"ayy","parent":"ayw","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ayy":{"opcode":"data_changevariableby","next":"kD","parent":"ayx","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!sprite_dma","?knU,3_sJVt4l09i6{)x"]},"shadow":false,"topLevel":false},"kD":{"opcode":"control_if","next":"#Q","parent":"ayy","inputs":{"CONDITION":[2,"buI"],"SUBSTACK":[2,"ayz"]},"fields":{},"shadow":false,"topLevel":false},"buI":{"opcode":"operator_gt","next":null,"parent":"kD","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"ayz":{"opcode":"data_changevariableby","next":"buJ","parent":"kD","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"buJ":{"opcode":"procedures_call","next":null,"parent":"ayz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"#Q":{"opcode":"control_if","next":null,"parent":"kD","inputs":{"CONDITION":[2,"buK"],"SUBSTACK":[2,"ayA"]},"fields":{},"shadow":false,"topLevel":false},"buK":{"opcode":"operator_gt","next":null,"parent":"#Q","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ayA":{"opcode":"data_changevariableby","next":"buL","parent":"#Q","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"buL":{"opcode":"procedures_call","next":null,"parent":"ayA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"ayt":{"opcode":"data_changevariableby","next":"ayB","parent":"B_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ayB":{"opcode":"data_changevariableby","next":"ayC","parent":"ayt","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ayC":{"opcode":"procedures_call","next":"buM","parent":"ayB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"buM":{"opcode":"control_stop","next":null,"parent":"ayC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B[":{"opcode":"control_if","next":"kE","parent":"B?","inputs":{"CONDITION":[2,"buN"],"SUBSTACK":[2,"ayD"]},"fields":{},"shadow":false,"topLevel":false},"buN":{"opcode":"operator_equals","next":null,"parent":"B[","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"ayD":{"opcode":"procedures_call","next":"buO","parent":"B[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"buO":{"opcode":"control_stop","next":null,"parent":"ayD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kE":{"opcode":"control_if","next":"kF","parent":"B[","inputs":{"CONDITION":[2,"buP"],"SUBSTACK":[2,"J]"]},"fields":{},"shadow":false,"topLevel":false},"buP":{"opcode":"operator_equals","next":null,"parent":"kE","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16406"]]},"fields":{},"shadow":false,"topLevel":false},"kF":{"opcode":"control_if","next":"kG","parent":"kE","inputs":{"CONDITION":[2,"buQ"],"SUBSTACK":[2,"#R"]},"fields":{},"shadow":false,"topLevel":false},"buQ":{"opcode":"operator_equals","next":null,"parent":"kF","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"#R":{"opcode":"data_setvariableto","next":"ayE","parent":"kF","inputs":{"VALUE":[3,"buR",[10,""]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"buR":{"opcode":"operator_add","next":null,"parent":"#R","inputs":{"NUM1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[4,0]],"NUM2":[1,[4,"7457"]]},"fields":{},"shadow":false,"topLevel":false},"ayE":{"opcode":"procedures_call","next":"buS","parent":"#R","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","warp":"true"}},"buS":{"opcode":"control_stop","next":null,"parent":"ayE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kG":{"opcode":"control_if","next":"#S","parent":"kF","inputs":{"CONDITION":[2,"#T"],"SUBSTACK":[2,"kH"]},"fields":{},"shadow":false,"topLevel":false},"#T":{"opcode":"operator_and","next":null,"parent":"kG","inputs":{"OPERAND1":[2,"buT"],"OPERAND2":[2,"buU"]},"fields":{},"shadow":false,"topLevel":false},"buT":{"opcode":"operator_gt","next":null,"parent":"#T","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"buU":{"opcode":"operator_lt","next":null,"parent":"#T","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"kH":{"opcode":"control_if","next":"buV","parent":"kG","inputs":{"CONDITION":[2,"#U"],"SUBSTACK":[2,"ayF"]},"fields":{},"shadow":false,"topLevel":false},"#U":{"opcode":"operator_and","next":null,"parent":"kH","inputs":{"OPERAND1":[2,"buW"],"OPERAND2":[2,"ayG"]},"fields":{},"shadow":false,"topLevel":false},"buW":{"opcode":"operator_equals","next":null,"parent":"#U","inputs":{"OPERAND1":[3,[12,"wram_enabled","%XjU5(A-f?.:2f)2OCXj"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ayG":{"opcode":"operator_equals","next":null,"parent":"#U","inputs":{"OPERAND1":[3,"buX",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"buX":{"opcode":"data_itemoflist","next":null,"parent":"ayG","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"ayF":{"opcode":"data_replaceitemoflist","next":null,"parent":"kH","inputs":{"INDEX":[3,"ayH",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"ayH":{"opcode":"operator_add","next":null,"parent":"ayF","inputs":{"NUM1":[3,"buY",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"buY":{"opcode":"operator_mod","next":null,"parent":"ayH","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"buV":{"opcode":"control_stop","next":null,"parent":"kH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"#S":{"opcode":"control_if","next":null,"parent":"kG","inputs":{"CONDITION":[2,"buZ"],"SUBSTACK":[2,"ayI"]},"fields":{},"shadow":false,"topLevel":false},"buZ":{"opcode":"operator_gt","next":null,"parent":"#S","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"ayI":{"opcode":"procedures_call","next":"bu!","parent":"#S","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mapper write","argumentids":"[]","warp":"true"}},"bu!":{"opcode":"control_stop","next":null,"parent":"ayI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayJ":{"opcode":"procedures_definition","next":"#V","parent":null,"inputs":{"custom_block":[1,"bu#"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5192},"bu#":{"opcode":"procedures_prototype","next":null,"parent":"ayJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"#V":{"opcode":"data_setvariableto","next":"ayK","parent":"ayJ","inputs":{"VALUE":[3,"bu%",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bu%":{"opcode":"operator_add","next":null,"parent":"#V","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ayK":{"opcode":"procedures_call","next":"ayL","parent":"#V","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"ayL":{"opcode":"data_setvariableto","next":null,"parent":"ayK","inputs":{"VALUE":[3,"ayM",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"ayM":{"opcode":"operator_mod","next":null,"parent":"ayL","inputs":{"NUM1":[3,"bu(",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bu(":{"opcode":"operator_subtract","next":null,"parent":"ayM","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ayN":{"opcode":"procedures_definition","next":"#W","parent":null,"inputs":{"custom_block":[1,"bu)"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5500},"bu)":{"opcode":"procedures_prototype","next":null,"parent":"ayN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"#W":{"opcode":"data_setvariableto","next":"#X","parent":"ayN","inputs":{"VALUE":[3,"ayO",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"ayO":{"opcode":"operator_mod","next":null,"parent":"#W","inputs":{"NUM1":[3,"bu*",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bu*":{"opcode":"operator_add","next":null,"parent":"ayO","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"#X":{"opcode":"data_setvariableto","next":"bu+","parent":"#W","inputs":{"VALUE":[3,"bu,",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bu,":{"opcode":"operator_add","next":null,"parent":"#X","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bu+":{"opcode":"procedures_call","next":null,"parent":"#X","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"ayP":{"opcode":"procedures_definition","next":"kI","parent":null,"inputs":{"custom_block":[1,"bu-"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":64},"bu-":{"opcode":"procedures_prototype","next":null,"parent":"ayP","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\",\"false\",\"false\",\"\"]","warp":"true"}},"kI":{"opcode":"control_if","next":"ayQ","parent":"ayP","inputs":{"CONDITION":[2,"bu."],"SUBSTACK":[2,"ayR"]},"fields":{},"shadow":false,"topLevel":false},"bu.":{"opcode":"operator_equals","next":null,"parent":"kI","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"80000"]]},"fields":{},"shadow":false,"topLevel":false},"ayR":{"opcode":"data_setvariableto","next":"bu/","parent":"kI","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bu/":{"opcode":"control_stop","next":null,"parent":"ayR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayQ":{"opcode":"data_changevariableby","next":"ayS","parent":"kI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["cpu_cycle","e5mXhyD?uqx!4zY}kb,2"]},"shadow":false,"topLevel":false},"ayS":{"opcode":"data_changevariableby","next":"ayT","parent":"ayQ","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"ayT":{"opcode":"procedures_call","next":"kJ","parent":"ayS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"kJ":{"opcode":"control_if","next":"kK","parent":"ayT","inputs":{"CONDITION":[2,"bu:"],"SUBSTACK":[2,"#Y"]},"fields":{},"shadow":false,"topLevel":false},"bu:":{"opcode":"operator_lt","next":null,"parent":"kJ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"#Y":{"opcode":"data_setvariableto","next":"bu;","parent":"kJ","inputs":{"VALUE":[3,"ayU",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ayU":{"opcode":"data_itemoflist","next":null,"parent":"#Y","inputs":{"INDEX":[3,"ayV",[7,0]]},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"ayV":{"opcode":"operator_add","next":null,"parent":"ayU","inputs":{"NUM1":[3,"bu=",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bu=":{"opcode":"operator_mod","next":null,"parent":"ayV","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"bu;":{"opcode":"control_stop","next":null,"parent":"#Y","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kK":{"opcode":"control_if","next":"kL","parent":"kJ","inputs":{"CONDITION":[2,"#Z"],"SUBSTACK":[2,"ayW"]},"fields":{},"shadow":false,"topLevel":false},"#Z":{"opcode":"operator_and","next":null,"parent":"kK","inputs":{"OPERAND1":[2,"bu?"],"OPERAND2":[2,"bu@"]},"fields":{},"shadow":false,"topLevel":false},"bu?":{"opcode":"operator_gt","next":null,"parent":"#Z","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"bu@":{"opcode":"operator_lt","next":null,"parent":"#Z","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"ayW":{"opcode":"procedures_call","next":"bu[","parent":"kK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu read","argumentids":"[]","warp":"true"}},"bu[":{"opcode":"control_stop","next":null,"parent":"ayW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kL":{"opcode":"control_if","next":"kM","parent":"kK","inputs":{"CONDITION":[2,"bu]"],"SUBSTACK":[2,"ayX"]},"fields":{},"shadow":false,"topLevel":false},"bu]":{"opcode":"operator_equals","next":null,"parent":"kL","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"ayX":{"opcode":"procedures_call","next":"bu^","parent":"kL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu read","argumentids":"[]","warp":"true"}},"bu^":{"opcode":"control_stop","next":null,"parent":"ayX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kM":{"opcode":"control_if","next":"kN","parent":"kL","inputs":{"CONDITION":[2,"bu_"],"SUBSTACK":[2,"kO"]},"fields":{},"shadow":false,"topLevel":false},"bu_":{"opcode":"operator_equals","next":null,"parent":"kM","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16406"]]},"fields":{},"shadow":false,"topLevel":false},"kO":{"opcode":"control_if_else","next":null,"parent":"kM","inputs":{"CONDITION":[2,"bu`"],"SUBSTACK":[2,"B`"],"SUBSTACK2":[2,"ayY"]},"fields":{},"shadow":false,"topLevel":false},"bu`":{"opcode":"operator_equals","next":null,"parent":"kO","inputs":{"OPERAND1":[3,[12,"!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B`":{"opcode":"data_setvariableto","next":"bu{","parent":"kO","inputs":{"VALUE":[3,"ayZ",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ayZ":{"opcode":"operator_add","next":null,"parent":"B`","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"B{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B{":{"opcode":"sensing_keypressed","next":null,"parent":"ayZ","inputs":{"KEY_OPTION":[3,"bu|","bu}"]},"fields":{},"shadow":false,"topLevel":false},"bu|":{"opcode":"data_itemoflist","next":null,"parent":"B{","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"bu}":{"opcode":"sensing_keyoptions","next":null,"parent":"B{","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bu{":{"opcode":"control_stop","next":null,"parent":"B`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ayY":{"opcode":"data_changevariableby","next":"J^","parent":"kO","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"J^":{"opcode":"control_if_else","next":"bu~","parent":"ayY","inputs":{"CONDITION":[2,"bva"],"SUBSTACK":[2,"ay!"],"SUBSTACK2":[2,"bvb"]},"fields":{},"shadow":false,"topLevel":false},"bva":{"opcode":"operator_lt","next":null,"parent":"J^","inputs":{"OPERAND1":[3,[12,"!port1_count","0D@F26Q(QbXNRv;sB.Ye"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ay!":{"opcode":"data_setvariableto","next":null,"parent":"J^","inputs":{"VALUE":[3,"ay#",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay#":{"opcode":"operator_add","next":null,"parent":"ay!","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"B|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B|":{"opcode":"sensing_keypressed","next":null,"parent":"ay#","inputs":{"KEY_OPTION":[3,"bvc","bvd"]},"fields":{},"shadow":false,"topLevel":false},"bvc":{"opcode":"data_itemoflist","next":null,"parent":"B|","inputs":{"INDEX":[3,[12,"!port1_count","0D@F26Q(QbXNRv;sB.Ye"],[7,0]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"bvd":{"opcode":"sensing_keyoptions","next":null,"parent":"B|","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bvb":{"opcode":"data_setvariableto","next":null,"parent":"J^","inputs":{"VALUE":[1,[10,"65"]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bu~":{"opcode":"control_stop","next":null,"parent":"J^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kN":{"opcode":"control_if","next":"kP","parent":"kM","inputs":{"CONDITION":[2,"bve"],"SUBSTACK":[2,"b+"]},"fields":{},"shadow":false,"topLevel":false},"bve":{"opcode":"operator_equals","next":null,"parent":"kN","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"b+":{"opcode":"control_if_else","next":null,"parent":"kN","inputs":{"CONDITION":[2,"bvf"],"SUBSTACK":[2,"B}"],"SUBSTACK2":[2,"ay%"]},"fields":{},"shadow":false,"topLevel":false},"bvf":{"opcode":"operator_equals","next":null,"parent":"b+","inputs":{"OPERAND1":[3,[12,"!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B}":{"opcode":"data_setvariableto","next":"bvg","parent":"b+","inputs":{"VALUE":[3,"ay(",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay(":{"opcode":"operator_add","next":null,"parent":"B}","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"B~",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"B~":{"opcode":"sensing_keypressed","next":null,"parent":"ay(","inputs":{"KEY_OPTION":[3,"bvh","bvi"]},"fields":{},"shadow":false,"topLevel":false},"bvh":{"opcode":"data_itemoflist","next":null,"parent":"B~","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"bvi":{"opcode":"sensing_keyoptions","next":null,"parent":"B~","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bvg":{"opcode":"control_stop","next":null,"parent":"B}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ay%":{"opcode":"data_changevariableby","next":"J_","parent":"b+","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"J_":{"opcode":"control_if_else","next":"bvj","parent":"ay%","inputs":{"CONDITION":[2,"bvk"],"SUBSTACK":[2,"ay)"],"SUBSTACK2":[2,"bvl"]},"fields":{},"shadow":false,"topLevel":false},"bvk":{"opcode":"operator_lt","next":null,"parent":"J_","inputs":{"OPERAND1":[3,[12,"!port2_count","gJ4fW7d.auVkNJS*cbF."],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"ay)":{"opcode":"data_setvariableto","next":null,"parent":"J_","inputs":{"VALUE":[3,"ay*",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay*":{"opcode":"operator_add","next":null,"parent":"ay)","inputs":{"NUM1":[1,[4,"64"]],"NUM2":[3,"Ca",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ca":{"opcode":"sensing_keypressed","next":null,"parent":"ay*","inputs":{"KEY_OPTION":[3,"ay+","bvm"]},"fields":{},"shadow":false,"topLevel":false},"ay+":{"opcode":"data_itemoflist","next":null,"parent":"Ca","inputs":{"INDEX":[3,"bvn",[7,0]]},"fields":{"LIST":["controls.NES","!-);EWw5je`a}{IyVf4v"]},"shadow":false,"topLevel":false},"bvn":{"opcode":"operator_add","next":null,"parent":"ay+","inputs":{"NUM1":[3,[12,"!port2_count","gJ4fW7d.auVkNJS*cbF."],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bvm":{"opcode":"sensing_keyoptions","next":null,"parent":"Ca","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bvl":{"opcode":"data_setvariableto","next":null,"parent":"J_","inputs":{"VALUE":[1,[10,"65"]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bvj":{"opcode":"control_stop","next":null,"parent":"J_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kP":{"opcode":"control_if","next":"b,","parent":"kN","inputs":{"CONDITION":[2,"Cb"],"SUBSTACK":[2,"J`"]},"fields":{},"shadow":false,"topLevel":false},"Cb":{"opcode":"operator_and","next":null,"parent":"kP","inputs":{"OPERAND1":[2,"bvo"],"OPERAND2":[2,"bvp"]},"fields":{},"shadow":false,"topLevel":false},"bvo":{"opcode":"operator_gt","next":null,"parent":"Cb","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"bvp":{"opcode":"operator_lt","next":null,"parent":"Cb","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"J`":{"opcode":"control_if_else","next":"bvq","parent":"kP","inputs":{"CONDITION":[2,"ay,"],"SUBSTACK":[2,"b-"],"SUBSTACK2":[2,"Cc"]},"fields":{},"shadow":false,"topLevel":false},"ay,":{"opcode":"operator_equals","next":null,"parent":"J`","inputs":{"OPERAND1":[3,"bvr",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"bvr":{"opcode":"data_itemoflist","next":null,"parent":"ay,","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"b-":{"opcode":"control_if","next":"bvs","parent":"J`","inputs":{"CONDITION":[2,"bvt"],"SUBSTACK":[2,"ay-"]},"fields":{},"shadow":false,"topLevel":false},"bvt":{"opcode":"operator_equals","next":null,"parent":"b-","inputs":{"OPERAND1":[3,[12,"wram_enabled","%XjU5(A-f?.:2f)2OCXj"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ay-":{"opcode":"data_setvariableto","next":null,"parent":"b-","inputs":{"VALUE":[3,"ay.",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay.":{"opcode":"data_itemoflist","next":null,"parent":"ay-","inputs":{"INDEX":[3,"ay/",[7,0]]},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"ay/":{"opcode":"operator_add","next":null,"parent":"ay.","inputs":{"NUM1":[3,"bvu",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bvu":{"opcode":"operator_mod","next":null,"parent":"ay/","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"wram_size","zbJieX,I^/*TuxDYgB2."],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvs":{"opcode":"control_stop","next":null,"parent":"b-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Cc":{"opcode":"data_setvariableto","next":"bvv","parent":"J`","inputs":{"VALUE":[3,"ay:",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay:":{"opcode":"data_itemoflist","next":null,"parent":"Cc","inputs":{"INDEX":[3,"Cd",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"Cd":{"opcode":"operator_add","next":null,"parent":"ay:","inputs":{"NUM1":[3,"bvw",[4,0]],"NUM2":[3,"bvx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvw":{"opcode":"operator_subtract","next":null,"parent":"Cd","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"24575"]]},"fields":{},"shadow":false,"topLevel":false},"bvx":{"opcode":"data_itemoflist","next":null,"parent":"Cd","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"bvv":{"opcode":"control_stop","next":null,"parent":"Cc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bvq":{"opcode":"control_stop","next":null,"parent":"J`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b,":{"opcode":"control_if","next":"kQ","parent":"kP","inputs":{"CONDITION":[2,"bvy"],"SUBSTACK":[2,"Ce"]},"fields":{},"shadow":false,"topLevel":false},"bvy":{"opcode":"operator_lt","next":null,"parent":"b,","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"Ce":{"opcode":"data_setvariableto","next":"bvz","parent":"b,","inputs":{"VALUE":[3,"ay;",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay;":{"opcode":"data_itemoflist","next":null,"parent":"Ce","inputs":{"INDEX":[3,"Cf",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"Cf":{"opcode":"operator_add","next":null,"parent":"ay;","inputs":{"NUM1":[3,"bvA",[4,0]],"NUM2":[3,"bvB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvA":{"opcode":"operator_subtract","next":null,"parent":"Cf","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bvB":{"opcode":"data_itemoflist","next":null,"parent":"Cf","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"bvz":{"opcode":"control_stop","next":null,"parent":"Ce","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kQ":{"opcode":"control_if","next":"b.","parent":"b,","inputs":{"CONDITION":[2,"bvC"],"SUBSTACK":[2,"Cg"]},"fields":{},"shadow":false,"topLevel":false},"bvC":{"opcode":"operator_lt","next":null,"parent":"kQ","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"Cg":{"opcode":"data_setvariableto","next":"bvD","parent":"kQ","inputs":{"VALUE":[3,"ay=",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay=":{"opcode":"data_itemoflist","next":null,"parent":"Cg","inputs":{"INDEX":[3,"Ch",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"Ch":{"opcode":"operator_add","next":null,"parent":"ay=","inputs":{"NUM1":[3,"bvE",[4,0]],"NUM2":[3,"bvF",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvE":{"opcode":"operator_subtract","next":null,"parent":"Ch","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"bvF":{"opcode":"data_itemoflist","next":null,"parent":"Ch","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"bvD":{"opcode":"control_stop","next":null,"parent":"Cg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b.":{"opcode":"control_if","next":"Ci","parent":"kQ","inputs":{"CONDITION":[2,"bvG"],"SUBSTACK":[2,"Cj"]},"fields":{},"shadow":false,"topLevel":false},"bvG":{"opcode":"operator_lt","next":null,"parent":"b.","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"Cj":{"opcode":"data_setvariableto","next":"bvH","parent":"b.","inputs":{"VALUE":[3,"ay?",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay?":{"opcode":"data_itemoflist","next":null,"parent":"Cj","inputs":{"INDEX":[3,"Ck",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"Ck":{"opcode":"operator_add","next":null,"parent":"ay?","inputs":{"NUM1":[3,"bvI",[4,0]],"NUM2":[3,"bvJ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvI":{"opcode":"operator_subtract","next":null,"parent":"Ck","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bvJ":{"opcode":"data_itemoflist","next":null,"parent":"Ck","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"bvH":{"opcode":"control_stop","next":null,"parent":"Cj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ci":{"opcode":"control_if","next":null,"parent":"b.","inputs":{"CONDITION":[2,"bvK"],"SUBSTACK":[2,"Cl"]},"fields":{},"shadow":false,"topLevel":false},"bvK":{"opcode":"operator_lt","next":null,"parent":"Ci","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Cl":{"opcode":"data_setvariableto","next":"bvL","parent":"Ci","inputs":{"VALUE":[3,"ay@",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"ay@":{"opcode":"data_itemoflist","next":null,"parent":"Cl","inputs":{"INDEX":[3,"Cm",[7,0]]},"fields":{"LIST":["prg_rom","2qm7j|WZgQAFvgiJG^Rn"]},"shadow":false,"topLevel":false},"Cm":{"opcode":"operator_add","next":null,"parent":"ay@","inputs":{"NUM1":[3,"bvM",[4,0]],"NUM2":[3,"bvN",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvM":{"opcode":"operator_subtract","next":null,"parent":"Cm","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"bvN":{"opcode":"data_itemoflist","next":null,"parent":"Cm","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"bvL":{"opcode":"control_stop","next":null,"parent":"Cl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ay[":{"opcode":"procedures_definition","next":"Cn","parent":null,"inputs":{"custom_block":[1,"ay]"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":64},"ay]":{"opcode":"procedures_prototype","next":null,"parent":"ay[","inputs":{"?dgMszYs^o^vZ+t@t:Hb":[1,"bvO"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"branch %b","argumentids":"[\"?dgMszYs^o^vZ+t@t:Hb\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"\",\"false\"]","warp":"false"}},"bvO":{"opcode":"argument_reporter_boolean","next":null,"parent":"ay]","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"Cn":{"opcode":"control_if","next":null,"parent":"ay[","inputs":{"CONDITION":[2,"bvP"],"SUBSTACK":[2,"ay^"]},"fields":{},"shadow":false,"topLevel":false},"bvP":{"opcode":"argument_reporter_boolean","next":null,"parent":"Cn","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"ay^":{"opcode":"data_changevariableby","next":"ay_","parent":"Cn","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ay_":{"opcode":"procedures_call","next":"Co","parent":"ay^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Co":{"opcode":"data_setvariableto","next":"ay`","parent":"ay_","inputs":{"VALUE":[3,"ay{",[10,""]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"ay{":{"opcode":"operator_mathop","next":null,"parent":"Co","inputs":{"NUM":[3,"bvQ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bvQ":{"opcode":"operator_divide","next":null,"parent":"ay{","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ay`":{"opcode":"data_changevariableby","next":"Cp","parent":"Co","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Cp":{"opcode":"control_if","next":null,"parent":"ay`","inputs":{"CONDITION":[2,"ay|"],"SUBSTACK":[2,"bvR"]},"fields":{},"shadow":false,"topLevel":false},"ay|":{"opcode":"operator_not","next":null,"parent":"Cp","inputs":{"OPERAND":[2,"ay}"]},"fields":{},"shadow":false,"topLevel":false},"ay}":{"opcode":"operator_equals","next":null,"parent":"ay|","inputs":{"OPERAND1":[3,"ay~",[10,""]],"OPERAND2":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ay~":{"opcode":"operator_mathop","next":null,"parent":"ay}","inputs":{"NUM":[3,"bvS",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bvS":{"opcode":"operator_divide","next":null,"parent":"ay~","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bvR":{"opcode":"procedures_call","next":null,"parent":"Cp","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aza":{"opcode":"procedures_definition","next":"b/","parent":null,"inputs":{"custom_block":[1,"bvT"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1056},"bvT":{"opcode":"procedures_prototype","next":null,"parent":"aza","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"b/":{"opcode":"control_if","next":"Cq","parent":"aza","inputs":{"CONDITION":[2,"bvU"],"SUBSTACK":[2,"bvV"]},"fields":{},"shadow":false,"topLevel":false},"bvU":{"opcode":"operator_equals","next":null,"parent":"b/","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bvV":{"opcode":"procedures_call","next":null,"parent":"b/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Cq":{"opcode":"data_setvariableto","next":"bvW","parent":"b/","inputs":{"VALUE":[3,"azb",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"azb":{"opcode":"data_itemoflist","next":null,"parent":"Cq","inputs":{"INDEX":[3,"azc",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"azc":{"opcode":"operator_add","next":null,"parent":"azb","inputs":{"NUM1":[3,"azd",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"azd":{"opcode":"operator_add","next":null,"parent":"azc","inputs":{"NUM1":[3,"bvX",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bvX":{"opcode":"operator_multiply","next":null,"parent":"azd","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bvW":{"opcode":"procedures_call","next":null,"parent":"Cq","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aze":{"opcode":"procedures_definition","next":"azf","parent":null,"inputs":{"custom_block":[1,"bvY"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10084},"bvY":{"opcode":"procedures_prototype","next":null,"parent":"aze","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"asl","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"azf":{"opcode":"procedures_call","next":"azg","parent":"aze","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"azg":{"opcode":"procedures_call","next":"Cr","parent":"azf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Cr":{"opcode":"data_setvariableto","next":"Cs","parent":"azg","inputs":{"VALUE":[3,"azh",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"azh":{"opcode":"operator_add","next":null,"parent":"Cr","inputs":{"NUM1":[3,"bvZ",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bvZ":{"opcode":"operator_gt","next":null,"parent":"azh","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Cs":{"opcode":"data_setvariableto","next":"azi","parent":"Cr","inputs":{"VALUE":[3,"azj",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"azj":{"opcode":"operator_mod","next":null,"parent":"Cs","inputs":{"NUM1":[3,"bv!",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bv!":{"opcode":"operator_multiply","next":null,"parent":"azj","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"azi":{"opcode":"procedures_call","next":"bv#","parent":"Cs","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"bv#":{"opcode":"procedures_call","next":null,"parent":"azi","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"azk":{"opcode":"procedures_definition","next":"b:","parent":null,"inputs":{"custom_block":[1,"bv%"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":652},"bv%":{"opcode":"procedures_prototype","next":null,"parent":"azk","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ora","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"b:":{"opcode":"control_if","next":"Ct","parent":"azk","inputs":{"CONDITION":[2,"bv("],"SUBSTACK":[2,"bv)"]},"fields":{},"shadow":false,"topLevel":false},"bv(":{"opcode":"operator_equals","next":null,"parent":"b:","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bv)":{"opcode":"procedures_call","next":null,"parent":"b:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Ct":{"opcode":"data_setvariableto","next":"bv*","parent":"b:","inputs":{"VALUE":[3,"azl",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"azl":{"opcode":"data_itemoflist","next":null,"parent":"Ct","inputs":{"INDEX":[3,"azm",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"azm":{"opcode":"operator_add","next":null,"parent":"azl","inputs":{"NUM1":[3,"azn",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"azn":{"opcode":"operator_add","next":null,"parent":"azm","inputs":{"NUM1":[3,"bv+",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bv+":{"opcode":"operator_multiply","next":null,"parent":"azn","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bv*":{"opcode":"procedures_call","next":null,"parent":"Ct","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"azo":{"opcode":"procedures_definition","next":"azp","parent":null,"inputs":{"custom_block":[1,"bv,"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":9052},"bv,":{"opcode":"procedures_prototype","next":null,"parent":"azo","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rol","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azp":{"opcode":"procedures_call","next":"azq","parent":"azo","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"azq":{"opcode":"procedures_call","next":"Cu","parent":"azp","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Cu":{"opcode":"data_setvariableto","next":"Cv","parent":"azq","inputs":{"VALUE":[3,"azr",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"azr":{"opcode":"operator_add","next":null,"parent":"Cu","inputs":{"NUM1":[3,"bv-",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bv-":{"opcode":"operator_gt","next":null,"parent":"azr","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Cv":{"opcode":"data_setvariableto","next":"azs","parent":"Cu","inputs":{"VALUE":[3,"azt",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"azt":{"opcode":"operator_mod","next":null,"parent":"Cv","inputs":{"NUM1":[3,"azu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"azu":{"opcode":"operator_add","next":null,"parent":"azt","inputs":{"NUM1":[3,"bv.",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bv.":{"opcode":"operator_multiply","next":null,"parent":"azu","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"azs":{"opcode":"data_setvariableto","next":"azv","parent":"Cv","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"azv":{"opcode":"procedures_call","next":"bv/","parent":"azs","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"bv/":{"opcode":"procedures_call","next":null,"parent":"azv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"azw":{"opcode":"procedures_definition","next":"b;","parent":null,"inputs":{"custom_block":[1,"bv:"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1460},"bv:":{"opcode":"procedures_prototype","next":null,"parent":"azw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"eor","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azx":{"opcode":"procedures_definition","next":"azy","parent":null,"inputs":{"custom_block":[1,"bv;"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10544},"bv;":{"opcode":"procedures_prototype","next":null,"parent":"azx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lsr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azy":{"opcode":"procedures_call","next":"azz","parent":"azx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"azz":{"opcode":"procedures_call","next":"Cw","parent":"azy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Cw":{"opcode":"data_setvariableto","next":"Cx","parent":"azz","inputs":{"VALUE":[3,"bv=",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"bv=":{"opcode":"operator_mod","next":null,"parent":"Cw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cx":{"opcode":"data_setvariableto","next":"azA","parent":"Cw","inputs":{"VALUE":[3,"azB",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"azB":{"opcode":"operator_mathop","next":null,"parent":"Cx","inputs":{"NUM":[3,"bv?",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bv?":{"opcode":"operator_divide","next":null,"parent":"azB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"azA":{"opcode":"procedures_call","next":"bv@","parent":"Cx","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"bv@":{"opcode":"procedures_call","next":null,"parent":"azA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"azC":{"opcode":"procedures_definition","next":"azD","parent":null,"inputs":{"custom_block":[1,"bv["]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":9568},"bv[":{"opcode":"procedures_prototype","next":null,"parent":"azC","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azD":{"opcode":"procedures_call","next":"azE","parent":"azC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"azE":{"opcode":"procedures_call","next":"Cy","parent":"azD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Cy":{"opcode":"data_setvariableto","next":"Cz","parent":"azE","inputs":{"VALUE":[3,"bv]",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"bv]":{"opcode":"operator_mod","next":null,"parent":"Cy","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Cz":{"opcode":"data_setvariableto","next":"azF","parent":"Cy","inputs":{"VALUE":[3,"azG",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"azG":{"opcode":"operator_mod","next":null,"parent":"Cz","inputs":{"NUM1":[3,"CA",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"CA":{"opcode":"operator_add","next":null,"parent":"azG","inputs":{"NUM1":[3,"azH",[4,0]],"NUM2":[3,"bv^",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"azH":{"opcode":"operator_mathop","next":null,"parent":"CA","inputs":{"NUM":[3,"bv_",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bv_":{"opcode":"operator_divide","next":null,"parent":"azH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bv^":{"opcode":"operator_multiply","next":null,"parent":"CA","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"azF":{"opcode":"data_setvariableto","next":"azI","parent":"Cz","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"azI":{"opcode":"procedures_call","next":"bv`","parent":"azF","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"bv`":{"opcode":"procedures_call","next":null,"parent":"azI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"azJ":{"opcode":"procedures_definition","next":"azK","parent":null,"inputs":{"custom_block":[1,"bv{"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":10996},"bv{":{"opcode":"procedures_prototype","next":null,"parent":"azJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"bit","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azK":{"opcode":"procedures_call","next":"CB","parent":"azJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"CB":{"opcode":"data_setvariableto","next":"CC","parent":"azK","inputs":{"VALUE":[3,"azL",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"azL":{"opcode":"operator_add","next":null,"parent":"CB","inputs":{"NUM1":[3,"bv|",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bv|":{"opcode":"operator_gt","next":null,"parent":"azL","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"CC":{"opcode":"data_setvariableto","next":"azM","parent":"CB","inputs":{"VALUE":[3,"azN",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"azN":{"opcode":"operator_add","next":null,"parent":"CC","inputs":{"NUM1":[3,"azO",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"azO":{"opcode":"operator_equals","next":null,"parent":"azN","inputs":{"OPERAND1":[3,"azP",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"azP":{"opcode":"operator_gt","next":null,"parent":"azO","inputs":{"OPERAND1":[3,"bv}",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bv}":{"opcode":"operator_mod","next":null,"parent":"azP","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"azM":{"opcode":"data_setvariableto","next":null,"parent":"CC","inputs":{"VALUE":[3,"azQ",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"azQ":{"opcode":"operator_add","next":null,"parent":"azM","inputs":{"NUM1":[3,"azR",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"azR":{"opcode":"operator_equals","next":null,"parent":"azQ","inputs":{"OPERAND1":[3,"azS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"azS":{"opcode":"data_itemoflist","next":null,"parent":"azR","inputs":{"INDEX":[3,"azT",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"azT":{"opcode":"operator_add","next":null,"parent":"azS","inputs":{"NUM1":[3,"azU",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"azU":{"opcode":"operator_add","next":null,"parent":"azT","inputs":{"NUM1":[3,"bv~",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bv~":{"opcode":"operator_multiply","next":null,"parent":"azU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"azV":{"opcode":"procedures_definition","next":"p","parent":null,"inputs":{"custom_block":[1,"bwa"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":1864},"bwa":{"opcode":"procedures_prototype","next":null,"parent":"azV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"adc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"azW":{"opcode":"procedures_definition","next":"q","parent":null,"inputs":{"custom_block":[1,"bwb"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":3632},"bwb":{"opcode":"procedures_prototype","next":null,"parent":"azW","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"q":{"opcode":"control_if","next":"CD","parent":"azW","inputs":{"CONDITION":[2,"azX"],"SUBSTACK":[2,"azY"]},"fields":{},"shadow":false,"topLevel":false},"azX":{"opcode":"operator_equals","next":null,"parent":"q","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"azY":{"opcode":"procedures_call","next":null,"parent":"q","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"CD":{"opcode":"data_setvariableto","next":"J{","parent":"q","inputs":{"VALUE":[3,"J|",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"J|":{"opcode":"operator_subtract","next":null,"parent":"CD","inputs":{"NUM1":[3,"J}",[4,0]],"NUM2":[3,"bwc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"J}":{"opcode":"operator_subtract","next":null,"parent":"J|","inputs":{"NUM1":[3,"azZ",[4,0]],"NUM2":[3,"az!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"azZ":{"opcode":"operator_subtract","next":null,"parent":"J}","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"az#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"az#":{"opcode":"operator_multiply","next":null,"parent":"azZ","inputs":{"NUM1":[3,"bwd",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwd":{"opcode":"operator_gt","next":null,"parent":"az#","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"az!":{"opcode":"operator_subtract","next":null,"parent":"J}","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"az%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"az%":{"opcode":"operator_multiply","next":null,"parent":"az!","inputs":{"NUM1":[3,"bwe",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwe":{"opcode":"operator_gt","next":null,"parent":"az%","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bwc":{"opcode":"operator_lt","next":null,"parent":"J|","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"J{":{"opcode":"data_setvariableto","next":"J~","parent":"CD","inputs":{"VALUE":[3,"az(",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"az(":{"opcode":"operator_add","next":null,"parent":"J{","inputs":{"NUM1":[3,"Ka",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ka":{"opcode":"operator_or","next":null,"parent":"az(","inputs":{"OPERAND1":[2,"bwf"],"OPERAND2":[2,"bwg"]},"fields":{},"shadow":false,"topLevel":false},"bwf":{"opcode":"operator_gt","next":null,"parent":"Ka","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bwg":{"opcode":"operator_lt","next":null,"parent":"Ka","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"J~":{"opcode":"data_setvariableto","next":"Kb","parent":"J{","inputs":{"VALUE":[3,"Kc",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"Kc":{"opcode":"operator_subtract","next":null,"parent":"J~","inputs":{"NUM1":[3,"bwh",[4,0]],"NUM2":[3,"bwi",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwh":{"opcode":"operator_subtract","next":null,"parent":"Kc","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwi":{"opcode":"operator_lt","next":null,"parent":"Kc","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Kb":{"opcode":"data_setvariableto","next":"Kd","parent":"J~","inputs":{"VALUE":[3,"az)",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"az)":{"opcode":"operator_add","next":null,"parent":"Kb","inputs":{"NUM1":[3,"bwj",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bwj":{"opcode":"operator_gt","next":null,"parent":"az)","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"Kd":{"opcode":"data_setvariableto","next":"bwk","parent":"Kb","inputs":{"VALUE":[3,"bwl",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bwl":{"opcode":"operator_mod","next":null,"parent":"Kd","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwk":{"opcode":"procedures_call","next":null,"parent":"Kd","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"az*":{"opcode":"procedures_definition","next":"az+","parent":null,"inputs":{"custom_block":[1,"bwm"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":11424},"bwm":{"opcode":"procedures_prototype","next":null,"parent":"az*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"false"}},"az+":{"opcode":"procedures_call","next":"az,","parent":"az*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"az,":{"opcode":"procedures_call","next":"Ke","parent":"az+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Ke":{"opcode":"data_setvariableto","next":"az-","parent":"az,","inputs":{"VALUE":[3,"az.",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"az.":{"opcode":"operator_mod","next":null,"parent":"Ke","inputs":{"NUM1":[3,"bwn",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwn":{"opcode":"operator_add","next":null,"parent":"az.","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"az-":{"opcode":"procedures_call","next":"bwo","parent":"Ke","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"bwo":{"opcode":"procedures_call","next":null,"parent":"az-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"az/":{"opcode":"procedures_definition","next":"Kf","parent":null,"inputs":{"custom_block":[1,"az:"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":3860},"az:":{"opcode":"procedures_prototype","next":null,"parent":"az/","inputs":{"he_5I0Vn2LIG0pN#spRg":[1,"bwp"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","argumentnames":"[\"reg\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bwp":{"opcode":"argument_reporter_string_number","next":null,"parent":"az:","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":true,"topLevel":false},"Kf":{"opcode":"data_setvariableto","next":"az;","parent":"az/","inputs":{"VALUE":[3,"az=",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"az=":{"opcode":"operator_add","next":null,"parent":"Kf","inputs":{"NUM1":[3,"az?",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"az?":{"opcode":"operator_equals","next":null,"parent":"az=","inputs":{"OPERAND1":[3,"bwq",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bwq":{"opcode":"argument_reporter_string_number","next":null,"parent":"az?","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":false,"topLevel":false},"az;":{"opcode":"data_setvariableto","next":null,"parent":"Kf","inputs":{"VALUE":[3,"az@",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"az@":{"opcode":"operator_add","next":null,"parent":"az;","inputs":{"NUM1":[3,"az[",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"az[":{"opcode":"operator_gt","next":null,"parent":"az@","inputs":{"OPERAND1":[3,"bwr",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bwr":{"opcode":"argument_reporter_string_number","next":null,"parent":"az[","inputs":{},"fields":{"VALUE":["reg",null]},"shadow":false,"topLevel":false},"az]":{"opcode":"procedures_definition","next":"az^","parent":null,"inputs":{"custom_block":[1,"bws"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":64},"bws":{"opcode":"procedures_prototype","next":null,"parent":"az]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"slo","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"az^":{"opcode":"procedures_call","next":"az_","parent":"az]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"az_":{"opcode":"procedures_call","next":"CE","parent":"az^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CE":{"opcode":"data_setvariableto","next":"CF","parent":"az_","inputs":{"VALUE":[3,"az`",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"az`":{"opcode":"operator_add","next":null,"parent":"CE","inputs":{"NUM1":[3,"bwt",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bwt":{"opcode":"operator_gt","next":null,"parent":"az`","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"CF":{"opcode":"data_setvariableto","next":"az{","parent":"CE","inputs":{"VALUE":[3,"az|",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"az|":{"opcode":"operator_mod","next":null,"parent":"CF","inputs":{"NUM1":[3,"bwu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwu":{"opcode":"operator_multiply","next":null,"parent":"az|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"az{":{"opcode":"procedures_call","next":"CG","parent":"CF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CG":{"opcode":"data_setvariableto","next":"bwv","parent":"az{","inputs":{"VALUE":[3,"az}",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"az}":{"opcode":"data_itemoflist","next":null,"parent":"CG","inputs":{"INDEX":[3,"az~",[7,0]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"az~":{"opcode":"operator_add","next":null,"parent":"az}","inputs":{"NUM1":[3,"aAa",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAa":{"opcode":"operator_add","next":null,"parent":"az~","inputs":{"NUM1":[3,"bww",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bww":{"opcode":"operator_multiply","next":null,"parent":"aAa","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwv":{"opcode":"procedures_call","next":null,"parent":"CG","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aAb":{"opcode":"procedures_definition","next":"aAc","parent":null,"inputs":{"custom_block":[1,"bwx"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":1200},"bwx":{"opcode":"procedures_prototype","next":null,"parent":"aAb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sre","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aAc":{"opcode":"procedures_call","next":"aAd","parent":"aAb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aAd":{"opcode":"procedures_call","next":"CH","parent":"aAc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CH":{"opcode":"data_setvariableto","next":"CI","parent":"aAd","inputs":{"VALUE":[3,"bwy",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"bwy":{"opcode":"operator_mod","next":null,"parent":"CH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"CI":{"opcode":"data_setvariableto","next":"aAe","parent":"CH","inputs":{"VALUE":[3,"aAf",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aAf":{"opcode":"operator_mathop","next":null,"parent":"CI","inputs":{"NUM":[3,"bwz",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bwz":{"opcode":"operator_divide","next":null,"parent":"aAf","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aAe":{"opcode":"procedures_call","next":"CJ","parent":"CI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CJ":{"opcode":"data_setvariableto","next":"bwA","parent":"aAe","inputs":{"VALUE":[3,"aAg",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aAg":{"opcode":"data_itemoflist","next":null,"parent":"CJ","inputs":{"INDEX":[3,"aAh",[7,0]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aAh":{"opcode":"operator_add","next":null,"parent":"aAg","inputs":{"NUM1":[3,"aAi",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAi":{"opcode":"operator_add","next":null,"parent":"aAh","inputs":{"NUM1":[3,"bwB",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwB":{"opcode":"operator_multiply","next":null,"parent":"aAi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwA":{"opcode":"procedures_call","next":null,"parent":"CJ","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aAj":{"opcode":"procedures_definition","next":"CK","parent":null,"inputs":{"custom_block":[1,"bwC"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":2592},"bwC":{"opcode":"procedures_prototype","next":null,"parent":"aAj","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"CK":{"opcode":"data_setvariableto","next":"bwD","parent":"aAj","inputs":{"VALUE":[3,"aAk",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aAk":{"opcode":"data_itemoflist","next":null,"parent":"CK","inputs":{"INDEX":[3,"aAl",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aAl":{"opcode":"operator_add","next":null,"parent":"aAk","inputs":{"NUM1":[3,"aAm",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAm":{"opcode":"operator_add","next":null,"parent":"aAl","inputs":{"NUM1":[3,"bwE",[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwE":{"opcode":"operator_multiply","next":null,"parent":"aAm","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwD":{"opcode":"procedures_call","next":null,"parent":"CK","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aAn":{"opcode":"procedures_definition","next":"aAo","parent":null,"inputs":{"custom_block":[1,"bwF"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":2860},"bwF":{"opcode":"procedures_prototype","next":null,"parent":"aAn","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aAo":{"opcode":"procedures_call","next":"aAp","parent":"aAn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","warp":"false"}},"aAp":{"opcode":"data_setvariableto","next":"bwG","parent":"aAo","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"bwG":{"opcode":"procedures_call","next":null,"parent":"aAp","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aAq":{"opcode":"procedures_definition","next":"aAr","parent":null,"inputs":{"custom_block":[1,"bwH"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":604},"bwH":{"opcode":"procedures_prototype","next":null,"parent":"aAq","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rla","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aAr":{"opcode":"procedures_call","next":"aAs","parent":"aAq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aAs":{"opcode":"procedures_call","next":"CL","parent":"aAr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CL":{"opcode":"data_setvariableto","next":"CM","parent":"aAs","inputs":{"VALUE":[3,"aAt",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aAt":{"opcode":"operator_add","next":null,"parent":"CL","inputs":{"NUM1":[3,"bwI",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bwI":{"opcode":"operator_gt","next":null,"parent":"aAt","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"CM":{"opcode":"data_setvariableto","next":"aAu","parent":"CL","inputs":{"VALUE":[3,"aAv",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aAv":{"opcode":"operator_mod","next":null,"parent":"CM","inputs":{"NUM1":[3,"aAw",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aAw":{"opcode":"operator_add","next":null,"parent":"aAv","inputs":{"NUM1":[3,"bwJ",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwJ":{"opcode":"operator_multiply","next":null,"parent":"aAw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aAu":{"opcode":"data_setvariableto","next":"aAx","parent":"CM","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aAx":{"opcode":"procedures_call","next":"CN","parent":"aAu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CN":{"opcode":"data_setvariableto","next":"bwK","parent":"aAx","inputs":{"VALUE":[3,"aAy",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aAy":{"opcode":"data_itemoflist","next":null,"parent":"CN","inputs":{"INDEX":[3,"aAz",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aAz":{"opcode":"operator_add","next":null,"parent":"aAy","inputs":{"NUM1":[3,"aAA",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAA":{"opcode":"operator_add","next":null,"parent":"aAz","inputs":{"NUM1":[3,"bwL",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwL":{"opcode":"operator_multiply","next":null,"parent":"aAA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwK":{"opcode":"procedures_call","next":null,"parent":"CN","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aAB":{"opcode":"procedures_definition","next":"aAC","parent":null,"inputs":{"custom_block":[1,"bwM"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":1732},"bwM":{"opcode":"procedures_prototype","next":null,"parent":"aAB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rra","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aAC":{"opcode":"procedures_call","next":"aAD","parent":"aAB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aAD":{"opcode":"procedures_call","next":"CO","parent":"aAC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CO":{"opcode":"data_setvariableto","next":"CP","parent":"aAD","inputs":{"VALUE":[3,"bwN",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"bwN":{"opcode":"operator_mod","next":null,"parent":"CO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"CP":{"opcode":"data_setvariableto","next":"aAE","parent":"CO","inputs":{"VALUE":[3,"aAF",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aAF":{"opcode":"operator_mod","next":null,"parent":"CP","inputs":{"NUM1":[3,"CQ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"CQ":{"opcode":"operator_add","next":null,"parent":"aAF","inputs":{"NUM1":[3,"aAG",[4,0]],"NUM2":[3,"bwO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aAG":{"opcode":"operator_mathop","next":null,"parent":"CQ","inputs":{"NUM":[3,"bwP",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bwP":{"opcode":"operator_divide","next":null,"parent":"aAG","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bwO":{"opcode":"operator_multiply","next":null,"parent":"CQ","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aAE":{"opcode":"data_setvariableto","next":"aAH","parent":"CP","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aAH":{"opcode":"procedures_call","next":"CR","parent":"aAE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CR":{"opcode":"data_setvariableto","next":"CS","parent":"aAH","inputs":{"VALUE":[3,"aAI",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aAI":{"opcode":"operator_add","next":null,"parent":"CR","inputs":{"NUM1":[3,"CT",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"CT":{"opcode":"operator_add","next":null,"parent":"aAI","inputs":{"NUM1":[3,"aAJ",[4,0]],"NUM2":[3,"aAK",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aAJ":{"opcode":"operator_subtract","next":null,"parent":"CT","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"aAL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aAL":{"opcode":"operator_multiply","next":null,"parent":"aAJ","inputs":{"NUM1":[3,"bwQ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwQ":{"opcode":"operator_gt","next":null,"parent":"aAL","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aAK":{"opcode":"operator_subtract","next":null,"parent":"CT","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"aAM",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aAM":{"opcode":"operator_multiply","next":null,"parent":"aAK","inputs":{"NUM1":[3,"bwR",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwR":{"opcode":"operator_gt","next":null,"parent":"aAM","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"CS":{"opcode":"data_setvariableto","next":"CU","parent":"CR","inputs":{"VALUE":[3,"aAN",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"aAN":{"opcode":"operator_add","next":null,"parent":"CS","inputs":{"NUM1":[3,"CV",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"CV":{"opcode":"operator_or","next":null,"parent":"aAN","inputs":{"OPERAND1":[2,"bwS"],"OPERAND2":[2,"bwT"]},"fields":{},"shadow":false,"topLevel":false},"bwS":{"opcode":"operator_gt","next":null,"parent":"CV","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bwT":{"opcode":"operator_lt","next":null,"parent":"CV","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"CU":{"opcode":"data_setvariableto","next":"CW","parent":"CS","inputs":{"VALUE":[3,"aAO",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aAO":{"opcode":"operator_add","next":null,"parent":"CU","inputs":{"NUM1":[3,"bwU",[4,0]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bwU":{"opcode":"operator_add","next":null,"parent":"aAO","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"CW":{"opcode":"data_setvariableto","next":"CX","parent":"CU","inputs":{"VALUE":[3,"aAP",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aAP":{"opcode":"operator_add","next":null,"parent":"CW","inputs":{"NUM1":[3,"bwV",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bwV":{"opcode":"operator_gt","next":null,"parent":"aAP","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"CX":{"opcode":"data_setvariableto","next":"bwW","parent":"CW","inputs":{"VALUE":[3,"bwX",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bwX":{"opcode":"operator_mod","next":null,"parent":"CX","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwW":{"opcode":"procedures_call","next":null,"parent":"CX","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aAQ":{"opcode":"procedures_definition","next":"aAR","parent":null,"inputs":{"custom_block":[1,"bwY"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":3144},"bwY":{"opcode":"procedures_prototype","next":null,"parent":"aAQ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dcp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aAR":{"opcode":"procedures_call","next":"aAS","parent":"aAQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aAS":{"opcode":"procedures_call","next":"CY","parent":"aAR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CY":{"opcode":"data_setvariableto","next":"aAT","parent":"aAS","inputs":{"VALUE":[3,"aAU",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aAU":{"opcode":"operator_mod","next":null,"parent":"CY","inputs":{"NUM1":[3,"bwZ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bwZ":{"opcode":"operator_subtract","next":null,"parent":"aAU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aAT":{"opcode":"procedures_call","next":"CZ","parent":"CY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"CZ":{"opcode":"data_setvariableto","next":"C!","parent":"aAT","inputs":{"VALUE":[3,"aAV",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aAV":{"opcode":"operator_add","next":null,"parent":"CZ","inputs":{"NUM1":[3,"aAW",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aAW":{"opcode":"operator_gt","next":null,"parent":"aAV","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,"bw!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bw!":{"opcode":"operator_subtract","next":null,"parent":"aAW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C!":{"opcode":"data_setvariableto","next":"aAX","parent":"CZ","inputs":{"VALUE":[3,"aAY",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"aAY":{"opcode":"operator_add","next":null,"parent":"C!","inputs":{"NUM1":[3,"bw#",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bw#":{"opcode":"operator_equals","next":null,"parent":"aAY","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aAX":{"opcode":"data_setvariableto","next":null,"parent":"C!","inputs":{"VALUE":[3,"aAZ",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"aAZ":{"opcode":"operator_add","next":null,"parent":"aAX","inputs":{"NUM1":[3,"aA!",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aA!":{"opcode":"operator_gt","next":null,"parent":"aAZ","inputs":{"OPERAND1":[3,"aA#",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aA#":{"opcode":"operator_mod","next":null,"parent":"aA!","inputs":{"NUM1":[3,"bw%",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bw%":{"opcode":"operator_subtract","next":null,"parent":"aA#","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aA%":{"opcode":"procedures_definition","next":"aA(","parent":null,"inputs":{"custom_block":[1,"bw("]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":3708},"bw(":{"opcode":"procedures_prototype","next":null,"parent":"aA%","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"isc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"aA(":{"opcode":"procedures_call","next":"aA)","parent":"aA%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aA)":{"opcode":"procedures_call","next":"C#","parent":"aA(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"C#":{"opcode":"data_setvariableto","next":"aA*","parent":"aA)","inputs":{"VALUE":[3,"aA+",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aA+":{"opcode":"operator_mod","next":null,"parent":"C#","inputs":{"NUM1":[3,"bw)",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bw)":{"opcode":"operator_add","next":null,"parent":"aA+","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aA*":{"opcode":"procedures_call","next":"C%","parent":"C#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"C%":{"opcode":"data_setvariableto","next":"C(","parent":"aA*","inputs":{"VALUE":[3,"C)",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"C)":{"opcode":"operator_subtract","next":null,"parent":"C%","inputs":{"NUM1":[3,"C*",[4,0]],"NUM2":[3,"bw*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"C*":{"opcode":"operator_subtract","next":null,"parent":"C)","inputs":{"NUM1":[3,"aA,",[4,0]],"NUM2":[3,"aA-",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aA,":{"opcode":"operator_subtract","next":null,"parent":"C*","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,"aA.",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aA.":{"opcode":"operator_multiply","next":null,"parent":"aA,","inputs":{"NUM1":[3,"bw+",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bw+":{"opcode":"operator_gt","next":null,"parent":"aA.","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aA-":{"opcode":"operator_subtract","next":null,"parent":"C*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[3,"aA/",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aA/":{"opcode":"operator_multiply","next":null,"parent":"aA-","inputs":{"NUM1":[3,"bw,",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bw,":{"opcode":"operator_gt","next":null,"parent":"aA/","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bw*":{"opcode":"operator_lt","next":null,"parent":"C)","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C(":{"opcode":"data_setvariableto","next":"C+","parent":"C%","inputs":{"VALUE":[3,"aA:",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"aA:":{"opcode":"operator_add","next":null,"parent":"C(","inputs":{"NUM1":[3,"C,",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"C,":{"opcode":"operator_or","next":null,"parent":"aA:","inputs":{"OPERAND1":[2,"bw-"],"OPERAND2":[2,"bw."]},"fields":{},"shadow":false,"topLevel":false},"bw-":{"opcode":"operator_gt","next":null,"parent":"C,","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bw.":{"opcode":"operator_lt","next":null,"parent":"C,","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"C+":{"opcode":"data_setvariableto","next":"C-","parent":"C(","inputs":{"VALUE":[3,"C.",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"C.":{"opcode":"operator_subtract","next":null,"parent":"C+","inputs":{"NUM1":[3,"bw/",[4,0]],"NUM2":[3,"bw:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bw/":{"opcode":"operator_subtract","next":null,"parent":"C.","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bw:":{"opcode":"operator_lt","next":null,"parent":"C.","inputs":{"OPERAND1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C-":{"opcode":"data_setvariableto","next":"C/","parent":"C+","inputs":{"VALUE":[3,"aA;",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aA;":{"opcode":"operator_add","next":null,"parent":"C-","inputs":{"NUM1":[3,"bw;",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bw;":{"opcode":"operator_gt","next":null,"parent":"aA;","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"C/":{"opcode":"data_setvariableto","next":"bw=","parent":"C-","inputs":{"VALUE":[3,"bw?",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bw?":{"opcode":"operator_mod","next":null,"parent":"C/","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bw=":{"opcode":"procedures_call","next":null,"parent":"C/","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aA=":{"opcode":"procedures_definition","next":"aA?","parent":null,"inputs":{"custom_block":[1,"bw@"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":4448},"bw@":{"opcode":"procedures_prototype","next":null,"parent":"aA=","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"anc","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"aA?":{"opcode":"procedures_call","next":"bw[","parent":"aA=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"bw[":{"opcode":"data_setvariableto","next":null,"parent":"aA?","inputs":{"VALUE":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aA@":{"opcode":"procedures_definition","next":"aA[","parent":null,"inputs":{"custom_block":[1,"bw]"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":4684},"bw]":{"opcode":"procedures_prototype","next":null,"parent":"aA@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"alr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aA[":{"opcode":"procedures_call","next":"C:","parent":"aA@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"C:":{"opcode":"data_setvariableto","next":"C;","parent":"aA[","inputs":{"VALUE":[3,"bw^",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"bw^":{"opcode":"operator_mod","next":null,"parent":"C:","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"C;":{"opcode":"data_setvariableto","next":"bw_","parent":"C:","inputs":{"VALUE":[3,"aA]",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aA]":{"opcode":"operator_mathop","next":null,"parent":"C;","inputs":{"NUM":[3,"bw`",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bw`":{"opcode":"operator_divide","next":null,"parent":"aA]","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bw_":{"opcode":"procedures_call","next":null,"parent":"C;","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aA^":{"opcode":"procedures_definition","next":"aA_","parent":null,"inputs":{"custom_block":[1,"bw{"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5040},"bw{":{"opcode":"procedures_prototype","next":null,"parent":"aA^","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aA_":{"opcode":"procedures_call","next":"C=","parent":"aA^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"and","argumentids":"[]","warp":"false"}},"C=":{"opcode":"data_setvariableto","next":"C?","parent":"aA_","inputs":{"VALUE":[3,"bw|",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"bw|":{"opcode":"operator_mod","next":null,"parent":"C=","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"C?":{"opcode":"data_setvariableto","next":"aA`","parent":"C=","inputs":{"VALUE":[3,"aA{",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aA{":{"opcode":"operator_mod","next":null,"parent":"C?","inputs":{"NUM1":[3,"C@",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C@":{"opcode":"operator_add","next":null,"parent":"aA{","inputs":{"NUM1":[3,"aA|",[4,0]],"NUM2":[3,"bw}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aA|":{"opcode":"operator_mathop","next":null,"parent":"C@","inputs":{"NUM":[3,"bw~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bw~":{"opcode":"operator_divide","next":null,"parent":"aA|","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bw}":{"opcode":"operator_multiply","next":null,"parent":"C@","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aA`":{"opcode":"data_setvariableto","next":"aA}","parent":"C?","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aA}":{"opcode":"procedures_call","next":"C[","parent":"aA`","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"C[":{"opcode":"data_setvariableto","next":"aA~","parent":"aA}","inputs":{"VALUE":[3,"aBa",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aBa":{"opcode":"operator_add","next":null,"parent":"C[","inputs":{"NUM1":[3,"aBb",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aBb":{"opcode":"operator_gt","next":null,"parent":"aBa","inputs":{"OPERAND1":[3,"bxa",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bxa":{"opcode":"operator_mod","next":null,"parent":"aBb","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aA~":{"opcode":"data_setvariableto","next":null,"parent":"C[","inputs":{"VALUE":[3,"aBc",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"aBc":{"opcode":"operator_add","next":null,"parent":"aA~","inputs":{"NUM1":[3,"aBd",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aBd":{"opcode":"operator_not","next":null,"parent":"aBc","inputs":{"OPERAND":[2,"C]"]},"fields":{},"shadow":false,"topLevel":false},"C]":{"opcode":"operator_equals","next":null,"parent":"aBd","inputs":{"OPERAND1":[3,"aBe",[10,""]],"OPERAND2":[3,"aBf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aBe":{"opcode":"operator_gt","next":null,"parent":"C]","inputs":{"OPERAND1":[3,"bxb",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bxb":{"opcode":"operator_mod","next":null,"parent":"aBe","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aBf":{"opcode":"operator_gt","next":null,"parent":"C]","inputs":{"OPERAND1":[3,"bxc",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"bxc":{"opcode":"operator_mod","next":null,"parent":"aBf","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aBg":{"opcode":"procedures_definition","next":"C^","parent":null,"inputs":{"custom_block":[1,"bxd"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5760},"bxd":{"opcode":"procedures_prototype","next":null,"parent":"aBg","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"axs","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"C^":{"opcode":"data_setvariableto","next":"C_","parent":"aBg","inputs":{"VALUE":[3,"aBh",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aBh":{"opcode":"data_itemoflist","next":null,"parent":"C^","inputs":{"INDEX":[3,"aBi",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aBi":{"opcode":"operator_add","next":null,"parent":"aBh","inputs":{"NUM1":[3,"aBj",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aBj":{"opcode":"operator_add","next":null,"parent":"aBi","inputs":{"NUM1":[3,"bxe",[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bxe":{"opcode":"operator_multiply","next":null,"parent":"aBj","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C_":{"opcode":"data_setvariableto","next":"#!","parent":"C^","inputs":{"VALUE":[3,"bxf",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"bxf":{"opcode":"operator_subtract","next":null,"parent":"C_","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"#!":{"opcode":"data_setvariableto","next":"##","parent":"C_","inputs":{"VALUE":[3,"aBk",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aBk":{"opcode":"operator_add","next":null,"parent":"#!","inputs":{"NUM1":[3,"bxg",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bxg":{"opcode":"operator_gt","next":null,"parent":"aBk","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"##":{"opcode":"data_setvariableto","next":"bxh","parent":"#!","inputs":{"VALUE":[3,"bxi",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"bxi":{"opcode":"operator_mod","next":null,"parent":"##","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bxh":{"opcode":"procedures_call","next":null,"parent":"##","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aBl":{"opcode":"procedures_definition","next":"#%","parent":null,"inputs":{"custom_block":[1,"aBm"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":5808},"aBm":{"opcode":"procedures_prototype","next":null,"parent":"aBl","inputs":{";YPPd1Il~yIF,jjNOe?s":[1,"bxj"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!interrupt %s","argumentids":"[\";YPPd1Il~yIF,jjNOe?s\"]","argumentnames":"[\"vector\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bxj":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBm","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":true,"topLevel":false},"#%":{"opcode":"data_setvariableto","next":"aBn","parent":"aBl","inputs":{"VALUE":[3,"aBo",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aBo":{"opcode":"operator_mathop","next":null,"parent":"#%","inputs":{"NUM":[3,"bxk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bxk":{"opcode":"operator_divide","next":null,"parent":"aBo","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBn":{"opcode":"procedures_call","next":"#(","parent":"#%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"#(":{"opcode":"data_setvariableto","next":"aBp","parent":"aBn","inputs":{"VALUE":[3,"bxl",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxl":{"opcode":"operator_mod","next":null,"parent":"#(","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBp":{"opcode":"procedures_call","next":"#)","parent":"#(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"#)":{"opcode":"data_setvariableto","next":"aBq","parent":"aBp","inputs":{"VALUE":[3,"bxm",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxm":{"opcode":"operator_add","next":null,"parent":"#)","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[3,[12,"!break","6zFO5H,!X[g$Ax)0BDc:"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aBq":{"opcode":"procedures_call","next":"#*","parent":"#)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"#*":{"opcode":"data_setvariableto","next":"aBr","parent":"aBq","inputs":{"VALUE":[3,"bxn",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxn":{"opcode":"argument_reporter_string_number","next":null,"parent":"#*","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":false,"topLevel":false},"aBr":{"opcode":"procedures_call","next":"aBs","parent":"#*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aBs":{"opcode":"data_setvariableto","next":"#+","parent":"aBr","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"#+":{"opcode":"data_setvariableto","next":"aBt","parent":"aBs","inputs":{"VALUE":[3,"aBu",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aBu":{"opcode":"operator_add","next":null,"parent":"#+","inputs":{"NUM1":[3,"bxo",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bxo":{"opcode":"argument_reporter_string_number","next":null,"parent":"aBu","inputs":{},"fields":{"VALUE":["vector",null]},"shadow":false,"topLevel":false},"aBt":{"opcode":"procedures_call","next":"#,","parent":"#+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"#,":{"opcode":"data_setvariableto","next":"bxp","parent":"aBt","inputs":{"VALUE":[3,"aBv",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBv":{"opcode":"operator_add","next":null,"parent":"#,","inputs":{"NUM1":[3,"bxq",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bxq":{"opcode":"operator_multiply","next":null,"parent":"aBv","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bxp":{"opcode":"data_setvariableto","next":null,"parent":"#,","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"b.u":{"opcode":"procedures_call","next":null,"parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":795,"y":5280,"mutation":{"tagName":"mutation","children":[],"proccode":"!reset","argumentids":"[]","warp":"true"}},"aBw":{"opcode":"procedures_definition","next":"aBx","parent":null,"inputs":{"custom_block":[1,"bxr"]},"fields":{},"shadow":false,"topLevel":true,"x":6620,"y":2348},"bxr":{"opcode":"procedures_prototype","next":null,"parent":"aBw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!trace","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aBx":{"opcode":"data_addtolist","next":null,"parent":"aBw","inputs":{"ITEM":[3,"aBy",[10,""]]},"fields":{"LIST":["!trace","T$5A;?z~P`Hle{DQ-4sz"]},"shadow":false,"topLevel":false},"aBy":{"opcode":"operator_join","next":null,"parent":"aBx","inputs":{"STRING1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]],"STRING2":[3,"#-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#-":{"opcode":"operator_join","next":null,"parent":"aBy","inputs":{"STRING1":[3,"bxs",[10,""]],"STRING2":[3,"#.",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bxs":{"opcode":"operator_join","next":null,"parent":"#-","inputs":{"STRING1":[1,[10," A:"]],"STRING2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#.":{"opcode":"operator_join","next":null,"parent":"#-","inputs":{"STRING1":[3,"bxt",[10,""]],"STRING2":[3,"C`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bxt":{"opcode":"operator_join","next":null,"parent":"#.","inputs":{"STRING1":[1,[10," X:"]],"STRING2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"C`":{"opcode":"operator_join","next":null,"parent":"#.","inputs":{"STRING1":[3,"bxu",[10,""]],"STRING2":[3,"C{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bxu":{"opcode":"operator_join","next":null,"parent":"C`","inputs":{"STRING1":[1,[10," Y:"]],"STRING2":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"C{":{"opcode":"operator_join","next":null,"parent":"C`","inputs":{"STRING1":[3,"aBz",[10,""]],"STRING2":[3,"C|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aBz":{"opcode":"operator_join","next":null,"parent":"C{","inputs":{"STRING1":[1,[10," P:"]],"STRING2":[3,"aBA",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aBA":{"opcode":"data_itemoflist","next":null,"parent":"aBz","inputs":{"INDEX":[3,"bxv",[7,0]]},"fields":{"LIST":["!hex","J!+O1tv.S4ifq^pnyyrA"]},"shadow":false,"topLevel":false},"bxv":{"opcode":"operator_subtract","next":null,"parent":"aBA","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"31"]]},"fields":{},"shadow":false,"topLevel":false},"C|":{"opcode":"operator_join","next":null,"parent":"C{","inputs":{"STRING1":[3,"bxw",[10,""]],"STRING2":[3,"bxx",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bxw":{"opcode":"operator_join","next":null,"parent":"C|","inputs":{"STRING1":[1,[10," SP:"]],"STRING2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bxx":{"opcode":"operator_join","next":null,"parent":"C|","inputs":{"STRING1":[1,[10," CPU:"]],"STRING2":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aBB":{"opcode":"procedures_definition","next":"aBC","parent":null,"inputs":{"custom_block":[1,"bxy"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5856},"bxy":{"opcode":"procedures_prototype","next":null,"parent":"aBB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jsr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aBC":{"opcode":"data_changevariableby","next":"aBD","parent":"aBB","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBD":{"opcode":"data_setvariableto","next":"C}","parent":"aBC","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"C}":{"opcode":"data_setvariableto","next":"aBE","parent":"aBD","inputs":{"VALUE":[3,"bxz",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxz":{"opcode":"operator_add","next":null,"parent":"C}","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBE":{"opcode":"procedures_call","next":"C~","parent":"C}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"C~":{"opcode":"data_setvariableto","next":"aBF","parent":"aBE","inputs":{"VALUE":[3,"aBG",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aBG":{"opcode":"operator_mathop","next":null,"parent":"C~","inputs":{"NUM":[3,"bxA",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bxA":{"opcode":"operator_divide","next":null,"parent":"aBG","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBF":{"opcode":"procedures_call","next":"Da","parent":"C~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"Da":{"opcode":"data_setvariableto","next":"aBH","parent":"aBF","inputs":{"VALUE":[3,"bxB",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxB":{"opcode":"operator_mod","next":null,"parent":"Da","inputs":{"NUM1":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBH":{"opcode":"procedures_call","next":"aBI","parent":"Da","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"aBI":{"opcode":"data_setvariableto","next":"aBJ","parent":"aBH","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aBJ":{"opcode":"procedures_call","next":"aBK","parent":"aBI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aBK":{"opcode":"data_setvariableto","next":null,"parent":"aBJ","inputs":{"VALUE":[3,"aBL",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBL":{"opcode":"operator_add","next":null,"parent":"aBK","inputs":{"NUM1":[3,"bxC",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bxC":{"opcode":"operator_multiply","next":null,"parent":"aBL","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBM":{"opcode":"procedures_definition","next":"Db","parent":null,"inputs":{"custom_block":[1,"bxD"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":7796},"bxD":{"opcode":"procedures_prototype","next":null,"parent":"aBM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"php","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Db":{"opcode":"data_setvariableto","next":"bxE","parent":"aBM","inputs":{"VALUE":[3,"bxF",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxF":{"opcode":"operator_add","next":null,"parent":"Db","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bxE":{"opcode":"procedures_call","next":null,"parent":"Db","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"aBN":{"opcode":"procedures_definition","next":"Dc","parent":null,"inputs":{"custom_block":[1,"bxG"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8040},"bxG":{"opcode":"procedures_prototype","next":null,"parent":"aBN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"plp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dc":{"opcode":"data_setvariableto","next":"aBO","parent":"aBN","inputs":{"VALUE":[3,"bxH",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxH":{"opcode":"operator_add","next":null,"parent":"Dc","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aBO":{"opcode":"procedures_call","next":"aBP","parent":"Dc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aBP":{"opcode":"procedures_call","next":"aBQ","parent":"aBO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aBQ":{"opcode":"data_setvariableto","next":"bxI","parent":"aBP","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"bxI":{"opcode":"procedures_call","next":null,"parent":"aBQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","warp":"true"}},"aBR":{"opcode":"procedures_definition","next":"Dd","parent":null,"inputs":{"custom_block":[1,"bxJ"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":6572},"bxJ":{"opcode":"procedures_prototype","next":null,"parent":"aBR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rts","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dd":{"opcode":"data_setvariableto","next":"aBS","parent":"aBR","inputs":{"VALUE":[3,"bxK",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxK":{"opcode":"operator_add","next":null,"parent":"Dd","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBS":{"opcode":"procedures_call","next":"aBT","parent":"Dd","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aBT":{"opcode":"data_setvariableto","next":"aBU","parent":"aBS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBU":{"opcode":"procedures_call","next":"aBV","parent":"aBT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aBV":{"opcode":"data_changevariableby","next":"aBW","parent":"aBU","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBW":{"opcode":"procedures_call","next":"De","parent":"aBV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"De":{"opcode":"data_changevariableby","next":"aBX","parent":"aBW","inputs":{"VALUE":[3,"bxL",[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"bxL":{"opcode":"operator_multiply","next":null,"parent":"De","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aBX":{"opcode":"data_setvariableto","next":"aBY","parent":"De","inputs":{"VALUE":[3,[12,"!PC","h8`w|l[}rxX:~@aRHHz5"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aBY":{"opcode":"procedures_call","next":"bxM","parent":"aBX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"bxM":{"opcode":"data_changevariableby","next":null,"parent":"aBY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aBZ":{"opcode":"procedures_definition","next":"Df","parent":null,"inputs":{"custom_block":[1,"bxN"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":7208},"bxN":{"opcode":"procedures_prototype","next":null,"parent":"aBZ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rti","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Df":{"opcode":"data_setvariableto","next":"aB!","parent":"aBZ","inputs":{"VALUE":[3,"bxO",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxO":{"opcode":"operator_add","next":null,"parent":"Df","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aB!":{"opcode":"procedures_call","next":"aB#","parent":"Df","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aB#":{"opcode":"procedures_call","next":"aB%","parent":"aB!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aB%":{"opcode":"data_setvariableto","next":"aB(","parent":"aB#","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"aB(":{"opcode":"procedures_call","next":"aB)","parent":"aB%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","warp":"true"}},"aB)":{"opcode":"procedures_call","next":"aB*","parent":"aB(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aB*":{"opcode":"data_setvariableto","next":"aB+","parent":"aB)","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aB+":{"opcode":"procedures_call","next":"aB,","parent":"aB*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aB,":{"opcode":"data_changevariableby","next":null,"parent":"aB+","inputs":{"VALUE":[3,"bxP",[4,0]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"bxP":{"opcode":"operator_multiply","next":null,"parent":"aB,","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aB-":{"opcode":"procedures_definition","next":"bxQ","parent":null,"inputs":{"custom_block":[1,"bxR"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5668},"bxR":{"opcode":"procedures_prototype","next":null,"parent":"aB-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jmp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"false"}},"bxQ":{"opcode":"data_setvariableto","next":null,"parent":"aB-","inputs":{"VALUE":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aB.":{"opcode":"procedures_definition","next":"aB/","parent":null,"inputs":{"custom_block":[1,"bxS"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8428},"bxS":{"opcode":"procedures_prototype","next":null,"parent":"aB.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pha","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aB/":{"opcode":"data_setvariableto","next":"bxT","parent":"aB.","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxT":{"opcode":"procedures_call","next":null,"parent":"aB/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!push","argumentids":"[]","warp":"true"}},"aB:":{"opcode":"procedures_definition","next":"Dg","parent":null,"inputs":{"custom_block":[1,"bxU"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":8664},"bxU":{"opcode":"procedures_prototype","next":null,"parent":"aB:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"pla","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dg":{"opcode":"data_setvariableto","next":"aB;","parent":"aB:","inputs":{"VALUE":[3,"bxV",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bxV":{"opcode":"operator_add","next":null,"parent":"Dg","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aB;":{"opcode":"procedures_call","next":"aB=","parent":"Dg","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aB=":{"opcode":"procedures_call","next":"aB?","parent":"aB;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!pull","argumentids":"[]","warp":"true"}},"aB?":{"opcode":"data_setvariableto","next":"bxW","parent":"aB=","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bxW":{"opcode":"procedures_call","next":null,"parent":"aB?","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aB@":{"opcode":"procedures_definition","next":"aB[","parent":null,"inputs":{"custom_block":[1,"bxX"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":2532},"bxX":{"opcode":"procedures_prototype","next":null,"parent":"aB@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sta","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aB[":{"opcode":"data_setvariableto","next":"bxY","parent":"aB@","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bxY":{"opcode":"procedures_call","next":null,"parent":"aB[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"awV":{"opcode":"procedures_definition","next":"cS","parent":null,"inputs":{"custom_block":[1,"bxZ"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":2768},"bxZ":{"opcode":"procedures_prototype","next":null,"parent":"awV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lda","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"awW":{"opcode":"operator_equals","next":null,"parent":"cS","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"awX":{"opcode":"procedures_call","next":null,"parent":"cS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"jW":{"opcode":"data_setvariableto","next":"Dh","parent":"cS","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"Dh":{"opcode":"procedures_call","next":null,"parent":"jW","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aB]":{"opcode":"procedures_definition","next":"r","parent":null,"inputs":{"custom_block":[1,"bx!"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":3140},"bx!":{"opcode":"procedures_prototype","next":null,"parent":"aB]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cmp","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"r":{"opcode":"control_if","next":"Di","parent":"aB]","inputs":{"CONDITION":[2,"aB^"],"SUBSTACK":[2,"aB_"]},"fields":{},"shadow":false,"topLevel":false},"aB^":{"opcode":"operator_equals","next":null,"parent":"r","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aB_":{"opcode":"procedures_call","next":null,"parent":"r","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Di":{"opcode":"data_setvariableto","next":"Dj","parent":"r","inputs":{"VALUE":[3,"aB`",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aB`":{"opcode":"operator_add","next":null,"parent":"Di","inputs":{"NUM1":[3,"aB{",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aB{":{"opcode":"operator_gt","next":null,"parent":"aB`","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,"bx#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bx#":{"opcode":"operator_subtract","next":null,"parent":"aB{","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dj":{"opcode":"data_setvariableto","next":"aB|","parent":"Di","inputs":{"VALUE":[3,"aB}",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"aB}":{"opcode":"operator_add","next":null,"parent":"Dj","inputs":{"NUM1":[3,"bx%",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bx%":{"opcode":"operator_equals","next":null,"parent":"aB}","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aB|":{"opcode":"data_setvariableto","next":null,"parent":"Dj","inputs":{"VALUE":[3,"aB~",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"aB~":{"opcode":"operator_add","next":null,"parent":"aB|","inputs":{"NUM1":[3,"aCa",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aCa":{"opcode":"operator_gt","next":null,"parent":"aB~","inputs":{"OPERAND1":[3,"aCb",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aCb":{"opcode":"operator_mod","next":null,"parent":"aCa","inputs":{"NUM1":[3,"bx(",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bx(":{"opcode":"operator_subtract","next":null,"parent":"aCb","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bx)":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"bx*"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":5620},"bx*":{"opcode":"procedures_prototype","next":null,"parent":"bx)","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"xaa","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"awY":{"opcode":"procedures_definition","next":"cT","parent":null,"inputs":{"custom_block":[1,"bx+"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13224},"bx+":{"opcode":"procedures_prototype","next":null,"parent":"awY","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"awZ":{"opcode":"operator_equals","next":null,"parent":"cT","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw!":{"opcode":"procedures_call","next":null,"parent":"cT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"jX":{"opcode":"procedures_call","next":"Dk","parent":"cT","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"Dk":{"opcode":"data_setvariableto","next":null,"parent":"jX","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aCc":{"opcode":"procedures_definition","next":"aCd","parent":null,"inputs":{"custom_block":[1,"bx,"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13968},"bx,":{"opcode":"procedures_prototype","next":null,"parent":"aCc","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sty","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCd":{"opcode":"data_setvariableto","next":"bx-","parent":"aCc","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bx-":{"opcode":"procedures_call","next":null,"parent":"aCd","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aCe":{"opcode":"procedures_definition","next":"s","parent":null,"inputs":{"custom_block":[1,"bx."]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14440},"bx.":{"opcode":"procedures_prototype","next":null,"parent":"aCe","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"s":{"opcode":"control_if","next":"Dl","parent":"aCe","inputs":{"CONDITION":[2,"aCf"],"SUBSTACK":[2,"aCg"]},"fields":{},"shadow":false,"topLevel":false},"aCf":{"opcode":"operator_equals","next":null,"parent":"s","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aCg":{"opcode":"procedures_call","next":null,"parent":"s","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Dl":{"opcode":"data_setvariableto","next":"Dm","parent":"s","inputs":{"VALUE":[3,"aCh",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aCh":{"opcode":"operator_add","next":null,"parent":"Dl","inputs":{"NUM1":[3,"aCi",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aCi":{"opcode":"operator_gt","next":null,"parent":"aCh","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,"bx/",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bx/":{"opcode":"operator_subtract","next":null,"parent":"aCi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dm":{"opcode":"data_setvariableto","next":"aCj","parent":"Dl","inputs":{"VALUE":[3,"aCk",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"aCk":{"opcode":"operator_add","next":null,"parent":"Dm","inputs":{"NUM1":[3,"bx:",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bx:":{"opcode":"operator_equals","next":null,"parent":"aCk","inputs":{"OPERAND1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aCj":{"opcode":"data_setvariableto","next":null,"parent":"Dm","inputs":{"VALUE":[3,"aCl",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"aCl":{"opcode":"operator_add","next":null,"parent":"aCj","inputs":{"NUM1":[3,"aCm",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aCm":{"opcode":"operator_gt","next":null,"parent":"aCl","inputs":{"OPERAND1":[3,"aCn",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aCn":{"opcode":"operator_mod","next":null,"parent":"aCm","inputs":{"NUM1":[3,"bx;",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bx;":{"opcode":"operator_subtract","next":null,"parent":"aCn","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aCo":{"opcode":"procedures_definition","next":"t","parent":null,"inputs":{"custom_block":[1,"bx="]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14932},"bx=":{"opcode":"procedures_prototype","next":null,"parent":"aCo","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"t":{"opcode":"control_if","next":"Dn","parent":"aCo","inputs":{"CONDITION":[2,"aCp"],"SUBSTACK":[2,"aCq"]},"fields":{},"shadow":false,"topLevel":false},"aCp":{"opcode":"operator_equals","next":null,"parent":"t","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aCq":{"opcode":"procedures_call","next":null,"parent":"t","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Dn":{"opcode":"data_setvariableto","next":"Do","parent":"t","inputs":{"VALUE":[3,"aCr",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aCr":{"opcode":"operator_add","next":null,"parent":"Dn","inputs":{"NUM1":[3,"aCs",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aCs":{"opcode":"operator_gt","next":null,"parent":"aCr","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,"bx?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bx?":{"opcode":"operator_subtract","next":null,"parent":"aCs","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Do":{"opcode":"data_setvariableto","next":"aCt","parent":"Dn","inputs":{"VALUE":[3,"aCu",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"aCu":{"opcode":"operator_add","next":null,"parent":"Do","inputs":{"NUM1":[3,"bx@",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bx@":{"opcode":"operator_equals","next":null,"parent":"aCu","inputs":{"OPERAND1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]],"OPERAND2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aCt":{"opcode":"data_setvariableto","next":null,"parent":"Do","inputs":{"VALUE":[3,"aCv",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"aCv":{"opcode":"operator_add","next":null,"parent":"aCt","inputs":{"NUM1":[3,"aCw",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aCw":{"opcode":"operator_gt","next":null,"parent":"aCv","inputs":{"OPERAND1":[3,"aCx",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aCx":{"opcode":"operator_mod","next":null,"parent":"aCw","inputs":{"NUM1":[3,"bx[",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bx[":{"opcode":"operator_subtract","next":null,"parent":"aCx","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aCy":{"opcode":"procedures_definition","next":"Dp","parent":null,"inputs":{"custom_block":[1,"bx]"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12216},"bx]":{"opcode":"procedures_prototype","next":null,"parent":"aCy","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"iny","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dp":{"opcode":"data_setvariableto","next":"bx^","parent":"aCy","inputs":{"VALUE":[3,"aCz",[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aCz":{"opcode":"operator_mod","next":null,"parent":"Dp","inputs":{"NUM1":[3,"bx_",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bx_":{"opcode":"operator_add","next":null,"parent":"aCz","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bx^":{"opcode":"procedures_call","next":null,"parent":"Dp","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCA":{"opcode":"procedures_definition","next":"Dq","parent":null,"inputs":{"custom_block":[1,"bx`"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12468},"bx`":{"opcode":"procedures_prototype","next":null,"parent":"aCA","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dey","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dq":{"opcode":"data_setvariableto","next":"bx{","parent":"aCA","inputs":{"VALUE":[3,"aCB",[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aCB":{"opcode":"operator_mod","next":null,"parent":"Dq","inputs":{"NUM1":[3,"bx|",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bx|":{"opcode":"operator_subtract","next":null,"parent":"aCB","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bx{":{"opcode":"procedures_call","next":null,"parent":"Dq","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCC":{"opcode":"procedures_definition","next":"Dr","parent":null,"inputs":{"custom_block":[1,"bx}"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12720},"bx}":{"opcode":"procedures_prototype","next":null,"parent":"aCC","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dr":{"opcode":"data_setvariableto","next":"bx~","parent":"aCC","inputs":{"VALUE":[3,"aCD",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aCD":{"opcode":"operator_mod","next":null,"parent":"Dr","inputs":{"NUM1":[3,"bya",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bya":{"opcode":"operator_add","next":null,"parent":"aCD","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bx~":{"opcode":"procedures_call","next":null,"parent":"Dr","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCE":{"opcode":"procedures_definition","next":"aCF","parent":null,"inputs":{"custom_block":[1,"byb"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4300},"byb":{"opcode":"procedures_prototype","next":null,"parent":"aCE","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tay","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCF":{"opcode":"data_setvariableto","next":"byc","parent":"aCE","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"byc":{"opcode":"procedures_call","next":null,"parent":"aCF","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCG":{"opcode":"procedures_definition","next":"aCH","parent":null,"inputs":{"custom_block":[1,"byd"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4536},"byd":{"opcode":"procedures_prototype","next":null,"parent":"aCG","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tya","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCH":{"opcode":"data_setvariableto","next":"bye","parent":"aCG","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bye":{"opcode":"procedures_call","next":null,"parent":"aCH","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCI":{"opcode":"procedures_definition","next":"aCJ","parent":null,"inputs":{"custom_block":[1,"byf"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":14204},"byf":{"opcode":"procedures_prototype","next":null,"parent":"aCI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"stx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCJ":{"opcode":"data_setvariableto","next":"byg","parent":"aCI","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"byg":{"opcode":"procedures_call","next":null,"parent":"aCJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aw#":{"opcode":"procedures_definition","next":"b","parent":null,"inputs":{"custom_block":[1,"byh"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":13596},"byh":{"opcode":"procedures_prototype","next":null,"parent":"aw#","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aw%":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw(":{"opcode":"procedures_call","next":null,"parent":"b","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"bo":{"opcode":"procedures_call","next":"Ds","parent":"b","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"Ds":{"opcode":"data_setvariableto","next":null,"parent":"bo","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aCK":{"opcode":"procedures_definition","next":"aCL","parent":null,"inputs":{"custom_block":[1,"byi"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":4772},"byi":{"opcode":"procedures_prototype","next":null,"parent":"aCK","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txa","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCL":{"opcode":"data_setvariableto","next":"byj","parent":"aCK","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"byj":{"opcode":"procedures_call","next":null,"parent":"aCL","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCM":{"opcode":"procedures_definition","next":"aCN","parent":null,"inputs":{"custom_block":[1,"byk"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5008},"byk":{"opcode":"procedures_prototype","next":null,"parent":"aCM","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tax","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCN":{"opcode":"data_setvariableto","next":"byl","parent":"aCM","inputs":{"VALUE":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"byl":{"opcode":"procedures_call","next":null,"parent":"aCN","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCO":{"opcode":"procedures_definition","next":"Dt","parent":null,"inputs":{"custom_block":[1,"bym"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":12972},"bym":{"opcode":"procedures_prototype","next":null,"parent":"aCO","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dex","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Dt":{"opcode":"data_setvariableto","next":"byn","parent":"aCO","inputs":{"VALUE":[3,"aCP",[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aCP":{"opcode":"operator_mod","next":null,"parent":"Dt","inputs":{"NUM1":[3,"byo",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"byo":{"opcode":"operator_subtract","next":null,"parent":"aCP","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"byn":{"opcode":"procedures_call","next":null,"parent":"Dt","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCQ":{"opcode":"procedures_definition","next":"byp","parent":null,"inputs":{"custom_block":[1,"byq"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5244},"byq":{"opcode":"procedures_prototype","next":null,"parent":"aCQ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txs","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"byp":{"opcode":"data_setvariableto","next":null,"parent":"aCQ","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"aCR":{"opcode":"procedures_definition","next":"aCS","parent":null,"inputs":{"custom_block":[1,"byr"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":5432},"byr":{"opcode":"procedures_prototype","next":null,"parent":"aCR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tsx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCS":{"opcode":"data_setvariableto","next":"bys","parent":"aCR","inputs":{"VALUE":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"bys":{"opcode":"procedures_call","next":null,"parent":"aCS","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aCT":{"opcode":"procedures_definition","next":"aCU","parent":null,"inputs":{"custom_block":[1,"byt"]},"fields":{},"shadow":false,"topLevel":true,"x":4304,"y":11820},"byt":{"opcode":"procedures_prototype","next":null,"parent":"aCT","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dec","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aCU":{"opcode":"procedures_call","next":"aCV","parent":"aCT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aCV":{"opcode":"procedures_call","next":"Kg","parent":"aCU","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"Kg":{"opcode":"data_setvariableto","next":"aCW","parent":"aCV","inputs":{"VALUE":[3,"aCX",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aCX":{"opcode":"operator_mod","next":null,"parent":"Kg","inputs":{"NUM1":[3,"byu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"byu":{"opcode":"operator_subtract","next":null,"parent":"aCX","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aCW":{"opcode":"procedures_call","next":"byv","parent":"Kg","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"byv":{"opcode":"procedures_call","next":null,"parent":"aCW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aCY":{"opcode":"procedures_definition","next":"Kh","parent":null,"inputs":{"custom_block":[1,"byw"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":6204},"byw":{"opcode":"procedures_prototype","next":null,"parent":"aCY","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Kh":{"opcode":"data_setvariableto","next":"byx","parent":"aCY","inputs":{"VALUE":[3,"aCZ",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aCZ":{"opcode":"data_itemoflist","next":null,"parent":"Kh","inputs":{"INDEX":[3,"Ki",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"Ki":{"opcode":"operator_add","next":null,"parent":"aCZ","inputs":{"NUM1":[3,"byy",[4,0]],"NUM2":[3,"byz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"byy":{"opcode":"operator_multiply","next":null,"parent":"Ki","inputs":{"NUM1":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"byz":{"opcode":"operator_add","next":null,"parent":"Ki","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"byx":{"opcode":"procedures_call","next":null,"parent":"Kh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aC!":{"opcode":"procedures_definition","next":"Kj","parent":null,"inputs":{"custom_block":[1,"byA"]},"fields":{},"shadow":false,"topLevel":true,"x":5462,"y":6464},"byA":{"opcode":"procedures_prototype","next":null,"parent":"aC!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shx","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"Kj":{"opcode":"data_setvariableto","next":"byB","parent":"aC!","inputs":{"VALUE":[3,"aC#",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aC#":{"opcode":"data_itemoflist","next":null,"parent":"Kj","inputs":{"INDEX":[3,"Kk",[7,0]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"Kk":{"opcode":"operator_add","next":null,"parent":"aC#","inputs":{"NUM1":[3,"byC",[4,0]],"NUM2":[3,"byD",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"byC":{"opcode":"operator_multiply","next":null,"parent":"Kk","inputs":{"NUM1":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"byD":{"opcode":"operator_add","next":null,"parent":"Kk","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"byB":{"opcode":"procedures_call","next":null,"parent":"Kj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!write","argumentids":"[]","warp":"true"}},"aC%":{"opcode":"procedures_definition","next":"aC(","parent":null,"inputs":{"custom_block":[1,"byE"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":4128},"byE":{"opcode":"procedures_prototype","next":null,"parent":"aC%","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set p","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aC(":{"opcode":"data_setvariableto","next":"Kl","parent":"aC%","inputs":{"VALUE":[1,[10,"32"]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"Kl":{"opcode":"data_changevariableby","next":"Km","parent":"aC(","inputs":{"VALUE":[3,"byF",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byF":{"opcode":"operator_multiply","next":null,"parent":"Kl","inputs":{"NUM1":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Km":{"opcode":"data_changevariableby","next":"Kn","parent":"Kl","inputs":{"VALUE":[3,"byG",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byG":{"opcode":"operator_multiply","next":null,"parent":"Km","inputs":{"NUM1":[3,[12,"!Z","*Hk9oR1;3ZLP2cBS$Bu["],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Kn":{"opcode":"data_changevariableby","next":"Ko","parent":"Km","inputs":{"VALUE":[3,"byH",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byH":{"opcode":"operator_multiply","next":null,"parent":"Kn","inputs":{"NUM1":[3,[12,"!I","wJv)p=)7?CJ}66t~yQza"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ko":{"opcode":"data_changevariableby","next":"Kp","parent":"Kn","inputs":{"VALUE":[3,"byI",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byI":{"opcode":"operator_multiply","next":null,"parent":"Ko","inputs":{"NUM1":[3,[12,"!D","3;^us/Z(haF2h@u#ixfd"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Kp":{"opcode":"data_changevariableby","next":"aC)","parent":"Ko","inputs":{"VALUE":[3,"byJ",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byJ":{"opcode":"operator_multiply","next":null,"parent":"Kp","inputs":{"NUM1":[3,[12,"!V","6UhPihgrE#HibT*P,RHy"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aC)":{"opcode":"data_changevariableby","next":null,"parent":"Kp","inputs":{"VALUE":[3,"byK",[4,0]]},"fields":{"VARIABLE":["!P","1zbCCns)7a+FK@Nf^A#/"]},"shadow":false,"topLevel":false},"byK":{"opcode":"operator_multiply","next":null,"parent":"aC)","inputs":{"NUM1":[3,[12,"!N","6|L=PAzk5$k7/hNNP_Ms"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aC*":{"opcode":"procedures_definition","next":"Du","parent":null,"inputs":{"custom_block":[1,"byL"]},"fields":{},"shadow":false,"topLevel":true,"x":3362,"y":4652},"byL":{"opcode":"procedures_prototype","next":null,"parent":"aC*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!set flags","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Du":{"opcode":"data_setvariableto","next":"Dv","parent":"aC*","inputs":{"VALUE":[3,"aC+",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aC+":{"opcode":"data_itemoflist","next":null,"parent":"Du","inputs":{"INDEX":[3,"byM",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"byM":{"opcode":"operator_add","next":null,"parent":"aC+","inputs":{"NUM1":[3,[12,"!P","1zbCCns)7a+FK@Nf^A#/"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dv":{"opcode":"data_setvariableto","next":"Dw","parent":"Du","inputs":{"VALUE":[3,"byN",[10,""]]},"fields":{"VARIABLE":["!N","6|L=PAzk5$k7/hNNP_Ms"]},"shadow":false,"topLevel":false},"byN":{"opcode":"operator_letter_of","next":null,"parent":"Dv","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dw":{"opcode":"data_setvariableto","next":"Dx","parent":"Dv","inputs":{"VALUE":[3,"byO",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"byO":{"opcode":"operator_letter_of","next":null,"parent":"Dw","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dx":{"opcode":"data_setvariableto","next":"Dy","parent":"Dw","inputs":{"VALUE":[3,"byP",[10,""]]},"fields":{"VARIABLE":["!D","3;^us/Z(haF2h@u#ixfd"]},"shadow":false,"topLevel":false},"byP":{"opcode":"operator_letter_of","next":null,"parent":"Dx","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dy":{"opcode":"data_setvariableto","next":"Dz","parent":"Dx","inputs":{"VALUE":[3,"byQ",[10,""]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"byQ":{"opcode":"operator_letter_of","next":null,"parent":"Dy","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Dz":{"opcode":"data_setvariableto","next":"aC,","parent":"Dy","inputs":{"VALUE":[3,"byR",[10,""]]},"fields":{"VARIABLE":["!Z","*Hk9oR1;3ZLP2cBS$Bu["]},"shadow":false,"topLevel":false},"byR":{"opcode":"operator_letter_of","next":null,"parent":"Dz","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aC,":{"opcode":"data_setvariableto","next":null,"parent":"Dz","inputs":{"VALUE":[3,"byS",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"byS":{"opcode":"operator_letter_of","next":null,"parent":"aC,","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aC-":{"opcode":"procedures_definition","next":"aC.","parent":null,"inputs":{"custom_block":[1,"byT"]},"fields":{},"shadow":false,"topLevel":true,"x":2496,"y":3748},"byT":{"opcode":"procedures_prototype","next":null,"parent":"aC-","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!address","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aC.":{"opcode":"data_setvariableto","next":"DA","parent":"aC-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"DA":{"opcode":"data_setvariableto","next":"Kq","parent":"aC.","inputs":{"VALUE":[3,"aC/",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aC/":{"opcode":"operator_mod","next":null,"parent":"DA","inputs":{"NUM1":[3,"byU",[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"byU":{"opcode":"data_itemoflist","next":null,"parent":"aC/","inputs":{"INDEX":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[7,0]]},"fields":{"LIST":["!modes","(FqH+{kk!n$8Z^)0|4F|"]},"shadow":false,"topLevel":false},"Kq":{"opcode":"control_if_else","next":"u","parent":"DA","inputs":{"CONDITION":[2,"aC:"],"SUBSTACK":[2,"byV"],"SUBSTACK2":[2,"byW"]},"fields":{},"shadow":false,"topLevel":false},"aC:":{"opcode":"operator_gt","next":null,"parent":"Kq","inputs":{"OPERAND1":[3,"byX",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"byX":{"opcode":"data_itemoflist","next":null,"parent":"aC:","inputs":{"INDEX":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[7,0]]},"fields":{"LIST":["!modes","(FqH+{kk!n$8Z^)0|4F|"]},"shadow":false,"topLevel":false},"byV":{"opcode":"data_setvariableto","next":null,"parent":"Kq","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"byW":{"opcode":"data_setvariableto","next":null,"parent":"Kq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!penalty","$4AJvv6|*3+i6I3,wC{("]},"shadow":false,"topLevel":false},"u":{"opcode":"control_if","next":"v","parent":"Kq","inputs":{"CONDITION":[2,"aC;"],"SUBSTACK":[2,"kR"]},"fields":{},"shadow":false,"topLevel":false},"aC;":{"opcode":"operator_equals","next":null,"parent":"u","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"kR":{"opcode":"data_setvariableto","next":"DB","parent":"u","inputs":{"VALUE":[1,[10,"80000"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"DB":{"opcode":"control_stop","next":null,"parent":"kR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"v":{"opcode":"control_if","next":"w","parent":"u","inputs":{"CONDITION":[2,"aC="],"SUBSTACK":[2,"kS"]},"fields":{},"shadow":false,"topLevel":false},"aC=":{"opcode":"operator_equals","next":null,"parent":"v","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kS":{"opcode":"data_changevariableby","next":"Kr","parent":"v","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Kr":{"opcode":"data_setvariableto","next":"kT","parent":"kS","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"kT":{"opcode":"procedures_call","next":"Xy","parent":"Kr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Xy":{"opcode":"data_setvariableto","next":"aC?","parent":"kT","inputs":{"VALUE":[3,"aC@",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aC@":{"opcode":"operator_mod","next":null,"parent":"Xy","inputs":{"NUM1":[3,"byY",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"byY":{"opcode":"operator_add","next":null,"parent":"aC@","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aC?":{"opcode":"procedures_call","next":"aC[","parent":"Xy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aC[":{"opcode":"data_setvariableto","next":"DC","parent":"aC?","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aC]":{"opcode":"operator_mod","next":null,"parent":"DC","inputs":{"NUM1":[3,"byZ",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aC^":{"opcode":"procedures_call","next":"DD","parent":"DC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"DD":{"opcode":"data_setvariableto","next":"by!","parent":"aC^","inputs":{"VALUE":[3,"aC_",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aC_":{"opcode":"operator_add","next":null,"parent":"DD","inputs":{"NUM1":[3,"by#",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"by#":{"opcode":"operator_multiply","next":null,"parent":"aC_","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"by!":{"opcode":"control_stop","next":null,"parent":"DD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"w":{"opcode":"control_if","next":"x","parent":"v","inputs":{"CONDITION":[2,"aC`"],"SUBSTACK":[2,"Xz"]},"fields":{},"shadow":false,"topLevel":false},"aC`":{"opcode":"operator_equals","next":null,"parent":"w","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Xz":{"opcode":"data_changevariableby","next":"Ks","parent":"w","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Ks":{"opcode":"data_setvariableto","next":"DE","parent":"Xz","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"DE":{"opcode":"control_stop","next":null,"parent":"Ks","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"x":{"opcode":"control_if","next":"y","parent":"w","inputs":{"CONDITION":[2,"aC{"],"SUBSTACK":[2,"XA"]},"fields":{},"shadow":false,"topLevel":false},"aC{":{"opcode":"operator_equals","next":null,"parent":"x","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"XA":{"opcode":"data_changevariableby","next":"Kt","parent":"x","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Kt":{"opcode":"data_setvariableto","next":"DF","parent":"XA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"DF":{"opcode":"control_stop","next":null,"parent":"Kt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"by%":{"opcode":"event_whenbroadcastreceived","next":"aC|","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":48,"y":3048},"aC|":{"opcode":"data_deletealloflist","next":"aC}","parent":"by%","inputs":{},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aC}":{"opcode":"data_deletealloflist","next":"aC~","parent":"aC|","inputs":{},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aC~":{"opcode":"data_deletealloflist","next":"aDa","parent":"aC}","inputs":{},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aDa":{"opcode":"data_deletealloflist","next":"aDb","parent":"aC~","inputs":{},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aDb":{"opcode":"data_deletealloflist","next":"aDc","parent":"aDa","inputs":{},"fields":{"LIST":["!ram","X_VP{NmPL`h[GvuS[,%%"]},"shadow":false,"topLevel":false},"aDc":{"opcode":"data_deletealloflist","next":"aDd","parent":"aDb","inputs":{},"fields":{"LIST":["!wram","zl)~s~6Ua9dNhPa9qb2b"]},"shadow":false,"topLevel":false},"aDd":{"opcode":"data_deletealloflist","next":"aDe","parent":"aDc","inputs":{},"fields":{"LIST":["!trace","T$5A;?z~P`Hle{DQ-4sz"]},"shadow":false,"topLevel":false},"aDe":{"opcode":"data_deletealloflist","next":"aDf","parent":"aDd","inputs":{},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aDf":{"opcode":"data_deletealloflist","next":"aDg","parent":"aDe","inputs":{},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"aDg":{"opcode":"data_deletealloflist","next":"aDh","parent":"aDf","inputs":{},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"aDh":{"opcode":"data_deletealloflist","next":"aDi","parent":"aDg","inputs":{},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"aDi":{"opcode":"data_deletealloflist","next":"aDj","parent":"aDh","inputs":{},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"aDj":{"opcode":"data_deletealloflist","next":"aDk","parent":"aDi","inputs":{},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"aDk":{"opcode":"data_deletealloflist","next":"aDl","parent":"aDj","inputs":{},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aDl":{"opcode":"data_deletealloflist","next":"aDm","parent":"aDk","inputs":{},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aDm":{"opcode":"data_deletealloflist","next":"aDn","parent":"aDl","inputs":{},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aDn":{"opcode":"data_deletealloflist","next":"aDo","parent":"aDm","inputs":{},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aDo":{"opcode":"data_deletealloflist","next":"aDp","parent":"aDn","inputs":{},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aDp":{"opcode":"data_deletealloflist","next":"aDq","parent":"aDo","inputs":{},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aDq":{"opcode":"data_deletealloflist","next":"aDr","parent":"aDp","inputs":{},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"aDr":{"opcode":"data_deletealloflist","next":"aDs","parent":"aDq","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"aDs":{"opcode":"data_deletealloflist","next":"aDt","parent":"aDr","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"by(":{"opcode":"data_setvariableto","next":null,"parent":"aDt","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["battery","H0q(Yr;S8emYQ`u=.co}"]},"shadow":false,"topLevel":false},"aDu":{"opcode":"procedures_definition","next":"aDv","parent":null,"inputs":{"custom_block":[1,"by)"]},"fields":{},"shadow":false,"topLevel":true,"x":8644,"y":165},"by)":{"opcode":"procedures_prototype","next":null,"parent":"aDu","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@init","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aDv":{"opcode":"data_deletealloflist","next":"aDw","parent":"aDu","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aDw":{"opcode":"data_deletealloflist","next":"aDx","parent":"aDv","inputs":{},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aDx":{"opcode":"data_deletealloflist","next":"DG","parent":"aDw","inputs":{},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"DG":{"opcode":"control_repeat","next":"DH","parent":"aDx","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"DI"]},"fields":{},"shadow":false,"topLevel":false},"DI":{"opcode":"data_addtolist","next":"aDy","parent":"DG","inputs":{"ITEM":[3,"aDz",[10,""]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aDz":{"opcode":"data_itemoflist","next":null,"parent":"DI","inputs":{"INDEX":[3,"by*",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"by*":{"opcode":"operator_random","next":null,"parent":"aDz","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aDy":{"opcode":"data_addtolist","next":null,"parent":"DI","inputs":{"ITEM":[3,"aDA",[10,""]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aDA":{"opcode":"data_itemoflist","next":null,"parent":"aDy","inputs":{"INDEX":[3,"by+",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"by+":{"opcode":"operator_random","next":null,"parent":"aDA","inputs":{"FROM":[1,[4,"1"]],"TO":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"DH":{"opcode":"data_setvariableto","next":"aDB","parent":"DG","inputs":{"VALUE":[3,"by,",[10,""]]},"fields":{"VARIABLE":["bg_color","~s-a1kNvmHy%k|6}Y3^~"]},"shadow":false,"topLevel":false},"by,":{"opcode":"data_itemoflist","next":null,"parent":"DH","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aDB":{"opcode":"data_deletealloflist","next":"aDC","parent":"DH","inputs":{},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"aDC":{"opcode":"data_deletealloflist","next":"aDD","parent":"aDB","inputs":{},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"aDD":{"opcode":"data_deletealloflist","next":"aDE","parent":"aDC","inputs":{},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"aDE":{"opcode":"data_deletealloflist","next":"DJ","parent":"aDD","inputs":{},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"DJ":{"opcode":"control_repeat","next":"aDF","parent":"aDE","inputs":{"TIMES":[1,[6,"1024"]],"SUBSTACK":[2,"aDG"]},"fields":{},"shadow":false,"topLevel":false},"aDG":{"opcode":"data_addtolist","next":"aDH","parent":"DJ","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"aDH":{"opcode":"data_addtolist","next":"aDI","parent":"aDG","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"aDI":{"opcode":"data_addtolist","next":"by-","parent":"aDH","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"by-":{"opcode":"data_addtolist","next":null,"parent":"aDI","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"aDF":{"opcode":"data_deletealloflist","next":"aDJ","parent":"DJ","inputs":{},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aDJ":{"opcode":"data_deletealloflist","next":"aDK","parent":"aDF","inputs":{},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aDK":{"opcode":"data_deletealloflist","next":"aDL","parent":"aDJ","inputs":{},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aDL":{"opcode":"data_deletealloflist","next":"DK","parent":"aDK","inputs":{},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"DK":{"opcode":"control_repeat","next":"aDM","parent":"aDL","inputs":{"TIMES":[1,[6,"960"]],"SUBSTACK":[2,"aDN"]},"fields":{},"shadow":false,"topLevel":false},"aDN":{"opcode":"data_addtolist","next":"aDO","parent":"DK","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aDO":{"opcode":"data_addtolist","next":"aDP","parent":"aDN","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aDP":{"opcode":"data_addtolist","next":"by.","parent":"aDO","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"by.":{"opcode":"data_addtolist","next":null,"parent":"aDP","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aDM":{"opcode":"data_deletealloflist","next":"DL","parent":"DK","inputs":{},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"DL":{"opcode":"control_repeat","next":"ax)","parent":"aDM","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"by/"]},"fields":{},"shadow":false,"topLevel":false},"by/":{"opcode":"data_addtolist","next":null,"parent":"DL","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"ax)":{"opcode":"data_deletealloflist","next":"ax(","parent":"DL","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"aDQ":{"opcode":"data_setvariableto","next":"aDR","parent":"by:","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"aDR":{"opcode":"data_setvariableto","next":"aDS","parent":"aDQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"aDS":{"opcode":"data_setvariableto","next":"aDT","parent":"aDR","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"]},"shadow":false,"topLevel":false},"aDT":{"opcode":"data_setvariableto","next":"aDU","parent":"aDS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@vram_incr","|,-0zY+!?.Wa?z)q2;cN"]},"shadow":false,"topLevel":false},"aDU":{"opcode":"data_setvariableto","next":"aDV","parent":"aDT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"]},"shadow":false,"topLevel":false},"aDV":{"opcode":"data_setvariableto","next":"aDW","parent":"aDU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bg_pattern","vTq-oq{gvgqfjW3L4iSt"]},"shadow":false,"topLevel":false},"aDW":{"opcode":"data_setvariableto","next":"aDX","parent":"aDV","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_size","6-5_Tcd.JImB^+U#4bLB"]},"shadow":false,"topLevel":false},"aDX":{"opcode":"data_setvariableto","next":"aDY","parent":"aDW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_enabled","2j/RBbii5O{|d#5d)@hc"]},"shadow":false,"topLevel":false},"aDY":{"opcode":"data_setvariableto","next":"aDZ","parent":"aDX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"aDZ":{"opcode":"data_setvariableto","next":"aD!","parent":"aDY","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@mask_bg","rp0u9foKc3@?]%7O5HRb"]},"shadow":false,"topLevel":false},"aD!":{"opcode":"data_setvariableto","next":"aD#","parent":"aDZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"]},"shadow":false,"topLevel":false},"aD#":{"opcode":"data_setvariableto","next":"aD%","parent":"aD!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@render_bg","~C;tFyLG;WJlq~1ZPX1f"]},"shadow":false,"topLevel":false},"aD%":{"opcode":"data_setvariableto","next":"aD(","parent":"aD#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@render_sprite","xu#/+b%vNGX}5y8HCFJ#"]},"shadow":false,"topLevel":false},"aD(":{"opcode":"data_setvariableto","next":"aD)","parent":"aD%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["render_enabled","kG=l#K?vQ345t{T6HPPz"]},"shadow":false,"topLevel":false},"aD)":{"opcode":"data_setvariableto","next":"aD*","parent":"aD(","inputs":{"VALUE":[1,[10,"8192"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"aD*":{"opcode":"data_setvariableto","next":"aD+","parent":"aD)","inputs":{"VALUE":[1,[10,"00000000"]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"aD+":{"opcode":"data_setvariableto","next":"aD,","parent":"aD*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"aD,":{"opcode":"data_setvariableto","next":"aD-","parent":"aD+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"aD-":{"opcode":"data_setvariableto","next":"axE","parent":"aD,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"axE":{"opcode":"data_setvariableto","next":"axD","parent":"aD-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"BT":{"opcode":"data_setvariableto","next":"by;","parent":"ax%","inputs":{"VALUE":[3,"by=",[10,""]]},"fields":{"VARIABLE":["@lastframe","n;0UExIQMoO!Lz=!vPek"]},"shadow":false,"topLevel":false},"by=":{"opcode":"sensing_dayssince2000","next":null,"parent":"BT","inputs":{},"fields":{},"shadow":false,"topLevel":false},"by;":{"opcode":"procedures_call","next":null,"parent":"BT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@init","argumentids":"[]","warp":"true"}},"aD.":{"opcode":"procedures_definition","next":"aD/","parent":null,"inputs":{"custom_block":[1,"by?"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":64},"by?":{"opcode":"procedures_prototype","next":null,"parent":"aD.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw bg line","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"false\",\"false\"]","warp":"true"}},"aD/":{"opcode":"data_setvariableto","next":"aD:","parent":"aD.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"aD:":{"opcode":"control_repeat","next":null,"parent":"aD/","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aD;"]},"fields":{},"shadow":false,"topLevel":false},"aD;":{"opcode":"data_changevariableby","next":"z","parent":"aD:","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"z":{"opcode":"control_if_else","next":null,"parent":"aD;","inputs":{"CONDITION":[2,"DM"],"SUBSTACK":[2,"aD="],"SUBSTACK2":[2,"XB"]},"fields":{},"shadow":false,"topLevel":false},"DM":{"opcode":"operator_or","next":null,"parent":"z","inputs":{"OPERAND1":[2,"aD?"],"OPERAND2":[2,"DN"]},"fields":{},"shadow":false,"topLevel":false},"aD?":{"opcode":"operator_equals","next":null,"parent":"DM","inputs":{"OPERAND1":[3,"by@",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"by@":{"opcode":"operator_letter_of","next":null,"parent":"aD?","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"DN":{"opcode":"operator_and","next":null,"parent":"DM","inputs":{"OPERAND1":[2,"by["],"OPERAND2":[2,"aD@"]},"fields":{},"shadow":false,"topLevel":false},"by[":{"opcode":"operator_equals","next":null,"parent":"DN","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aD@":{"opcode":"operator_lt","next":null,"parent":"DN","inputs":{"OPERAND1":[3,"aD[",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aD[":{"opcode":"operator_mod","next":null,"parent":"aD@","inputs":{"NUM1":[3,"by]",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"by]":{"opcode":"data_lengthoflist","next":null,"parent":"aD[","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aD=":{"opcode":"data_addtolist","next":null,"parent":"z","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"XB":{"opcode":"data_addtolist","next":null,"parent":"z","inputs":{"ITEM":[3,"Ku",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ku":{"opcode":"data_itemoflist","next":null,"parent":"XB","inputs":{"INDEX":[3,"Kv",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kv":{"opcode":"operator_add","next":null,"parent":"Ku","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"DO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"DO":{"opcode":"operator_letter_of","next":null,"parent":"Kv","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aD]":{"opcode":"procedures_definition","next":"aD^","parent":null,"inputs":{"custom_block":[1,"by^"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":644},"by^":{"opcode":"procedures_prototype","next":null,"parent":"aD]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped left","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aD^":{"opcode":"data_setvariableto","next":"X","parent":"aD]","inputs":{"VALUE":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"X":{"opcode":"control_if","next":"DP","parent":"aD^","inputs":{"CONDITION":[2,"aD_"],"SUBSTACK":[2,"e"]},"fields":{},"shadow":false,"topLevel":false},"aD_":{"opcode":"operator_equals","next":null,"parent":"X","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw*":{"opcode":"operator_subtract","next":null,"parent":"e","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aw+":{"opcode":"data_addtolist","next":null,"parent":"e","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aw)":{"opcode":"control_stop","next":null,"parent":"e","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"DP":{"opcode":"control_repeat","next":null,"parent":"X","inputs":{"TIMES":[3,"by_",[6,0]],"SUBSTACK":[2,"aw,"]},"fields":{},"shadow":false,"topLevel":false},"by_":{"opcode":"operator_subtract","next":null,"parent":"DP","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aw,":{"opcode":"data_changevariableby","next":"k","parent":"DP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"bp":{"opcode":"operator_equals","next":null,"parent":"k","inputs":{"OPERAND1":[3,"DQ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DQ":{"opcode":"operator_letter_of","next":null,"parent":"bp","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aw-":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"bq":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[3,"Kw",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Kw":{"opcode":"data_itemoflist","next":null,"parent":"bq","inputs":{"INDEX":[3,"Kx",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kx":{"opcode":"operator_add","next":null,"parent":"Kw","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"DR",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"DR":{"opcode":"operator_letter_of","next":null,"parent":"Kx","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aD`":{"opcode":"procedures_definition","next":"aD{","parent":null,"inputs":{"custom_block":[1,"by`"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":1488},"by`":{"opcode":"procedures_prototype","next":null,"parent":"aD`","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aD{":{"opcode":"data_setvariableto","next":"aD|","parent":"aD`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"aD|":{"opcode":"control_repeat","next":null,"parent":"aD{","inputs":{"TIMES":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[6,0]],"SUBSTACK":[2,"aw."]},"fields":{},"shadow":false,"topLevel":false},"aw.":{"opcode":"data_changevariableby","next":"l","parent":"aD|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"jY":{"opcode":"operator_equals","next":null,"parent":"l","inputs":{"OPERAND1":[3,"DS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DS":{"opcode":"operator_letter_of","next":null,"parent":"jY","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aw/":{"opcode":"data_addtolist","next":null,"parent":"l","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"jZ":{"opcode":"data_addtolist","next":null,"parent":"l","inputs":{"ITEM":[3,"Ky",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ky":{"opcode":"data_itemoflist","next":null,"parent":"jZ","inputs":{"INDEX":[3,"Kz",[7,0]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kz":{"opcode":"operator_add","next":null,"parent":"Ky","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"DT",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"DT":{"opcode":"operator_letter_of","next":null,"parent":"Kz","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aD}":{"opcode":"procedures_definition","next":"DU","parent":null,"inputs":{"custom_block":[1,"by{"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":2052},"by{":{"opcode":"procedures_prototype","next":null,"parent":"aD}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw sprite line","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"DU":{"opcode":"data_setvariableto","next":"KA","parent":"aD}","inputs":{"VALUE":[3,"by|",[10,""]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"by|":{"opcode":"operator_multiply","next":null,"parent":"DU","inputs":{"NUM1":[3,[12,"@hflip","O-XGEJrBMMOorrV6rRfY"],[4,0]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"KA":{"opcode":"control_if_else","next":"aD~","parent":"DU","inputs":{"CONDITION":[2,"by}"],"SUBSTACK":[2,"DV"],"SUBSTACK2":[2,"DW"]},"fields":{},"shadow":false,"topLevel":false},"by}":{"opcode":"operator_gt","next":null,"parent":"KA","inputs":{"OPERAND1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"DV":{"opcode":"data_setvariableto","next":"by~","parent":"KA","inputs":{"VALUE":[3,"DX",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"DX":{"opcode":"operator_add","next":null,"parent":"DV","inputs":{"NUM1":[3,"bza",[4,0]],"NUM2":[3,"aEa",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bza":{"opcode":"operator_multiply","next":null,"parent":"DX","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aEa":{"opcode":"operator_multiply","next":null,"parent":"DX","inputs":{"NUM1":[3,"DY",[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"DY":{"opcode":"operator_mod","next":null,"parent":"aEa","inputs":{"NUM1":[3,"aEb",[4,0]],"NUM2":[3,"bzb",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aEb":{"opcode":"operator_add","next":null,"parent":"DY","inputs":{"NUM1":[3,"aEc",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aEc":{"opcode":"operator_subtract","next":null,"parent":"aEb","inputs":{"NUM1":[3,"bzc",[4,0]],"NUM2":[3,[12,"@sprite_y","y`PaeB/{^[+=lUi~^f35"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzc":{"opcode":"operator_subtract","next":null,"parent":"aEc","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzb":{"opcode":"operator_multiply","next":null,"parent":"DY","inputs":{"NUM1":[1,[4,"-8"]],"NUM2":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"by~":{"opcode":"procedures_call","next":null,"parent":"DV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"DW":{"opcode":"data_setvariableto","next":"bzd","parent":"KA","inputs":{"VALUE":[3,"DZ",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"DZ":{"opcode":"operator_add","next":null,"parent":"DW","inputs":{"NUM1":[3,"bze",[4,0]],"NUM2":[3,"aEd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bze":{"opcode":"operator_multiply","next":null,"parent":"DZ","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aEd":{"opcode":"operator_subtract","next":null,"parent":"DZ","inputs":{"NUM1":[3,"bzf",[4,0]],"NUM2":[3,[12,"@sprite_y","y`PaeB/{^[+=lUi~^f35"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzf":{"opcode":"operator_subtract","next":null,"parent":"aEd","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzd":{"opcode":"procedures_call","next":null,"parent":"DW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"aD~":{"opcode":"control_repeat","next":null,"parent":"KA","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"D!"]},"fields":{},"shadow":false,"topLevel":false},"D!":{"opcode":"data_changevariableby","next":"aEe","parent":"aD~","inputs":{"VALUE":[3,"aEf",[4,0]]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"aEf":{"opcode":"operator_subtract","next":null,"parent":"D!","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"bzg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzg":{"opcode":"operator_multiply","next":null,"parent":"aEf","inputs":{"NUM1":[3,[12,"@hflip","O-XGEJrBMMOorrV6rRfY"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aEe":{"opcode":"data_changevariableby","next":"D#","parent":"D!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@sprite_x","*`+18/=FU3Ni:/*T,!l("]},"shadow":false,"topLevel":false},"D#":{"opcode":"control_if","next":null,"parent":"aEe","inputs":{"CONDITION":[2,"aEg"],"SUBSTACK":[2,"Y"]},"fields":{},"shadow":false,"topLevel":false},"aEg":{"opcode":"operator_not","next":null,"parent":"D#","inputs":{"OPERAND":[2,"D%"]},"fields":{},"shadow":false,"topLevel":false},"D%":{"opcode":"operator_or","next":null,"parent":"aEg","inputs":{"OPERAND1":[2,"aEh"],"OPERAND2":[2,"D("]},"fields":{},"shadow":false,"topLevel":false},"aEh":{"opcode":"operator_equals","next":null,"parent":"D%","inputs":{"OPERAND1":[3,"bzh",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bzh":{"opcode":"operator_letter_of","next":null,"parent":"aEh","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D(":{"opcode":"operator_and","next":null,"parent":"D%","inputs":{"OPERAND1":[2,"bzi"],"OPERAND2":[2,"bzj"]},"fields":{},"shadow":false,"topLevel":false},"bzi":{"opcode":"operator_equals","next":null,"parent":"D(","inputs":{"OPERAND1":[3,[12,"@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bzj":{"opcode":"operator_lt","next":null,"parent":"D(","inputs":{"OPERAND1":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Y":{"opcode":"control_if","next":"kU","parent":"D#","inputs":{"CONDITION":[2,"D)"],"SUBSTACK":[2,"aEi"]},"fields":{},"shadow":false,"topLevel":false},"D)":{"opcode":"operator_and","next":null,"parent":"Y","inputs":{"OPERAND1":[2,"bzk"],"OPERAND2":[2,"D*"]},"fields":{},"shadow":false,"topLevel":false},"bzk":{"opcode":"operator_equals","next":null,"parent":"D)","inputs":{"OPERAND1":[3,[12,"@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"D*":{"opcode":"operator_and","next":null,"parent":"D)","inputs":{"OPERAND1":[2,"bzl"],"OPERAND2":[2,"D+"]},"fields":{},"shadow":false,"topLevel":false},"bzl":{"opcode":"operator_lt","next":null,"parent":"D*","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"D+":{"opcode":"operator_and","next":null,"parent":"D*","inputs":{"OPERAND1":[2,"bzm"],"OPERAND2":[2,"aEj"]},"fields":{},"shadow":false,"topLevel":false},"bzm":{"opcode":"operator_lt","next":null,"parent":"D+","inputs":{"OPERAND1":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEj":{"opcode":"operator_not","next":null,"parent":"D+","inputs":{"OPERAND":[2,"aEk"]},"fields":{},"shadow":false,"topLevel":false},"aEk":{"opcode":"operator_equals","next":null,"parent":"aEj","inputs":{"OPERAND1":[3,"aEl",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEl":{"opcode":"data_itemoflist","next":null,"parent":"aEk","inputs":{"INDEX":[3,"aEm",[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aEm":{"opcode":"operator_add","next":null,"parent":"aEl","inputs":{"NUM1":[3,"bzn",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzn":{"opcode":"operator_multiply","next":null,"parent":"aEm","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEi":{"opcode":"data_setvariableto","next":null,"parent":"Y","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"kU":{"opcode":"control_if_else","next":null,"parent":"Y","inputs":{"CONDITION":[2,"aEn"],"SUBSTACK":[2,"D,"],"SUBSTACK2":[2,"D-"]},"fields":{},"shadow":false,"topLevel":false},"aEn":{"opcode":"operator_equals","next":null,"parent":"kU","inputs":{"OPERAND1":[3,[12,"@sprite_priority","q:J@[.C#brGXD1scwWlL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"D,":{"opcode":"control_if","next":null,"parent":"kU","inputs":{"CONDITION":[2,"aEo"],"SUBSTACK":[2,"KB"]},"fields":{},"shadow":false,"topLevel":false},"aEo":{"opcode":"operator_equals","next":null,"parent":"D,","inputs":{"OPERAND1":[3,"aEp",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aEp":{"opcode":"data_itemoflist","next":null,"parent":"aEo","inputs":{"INDEX":[3,"aEq",[7,0]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aEq":{"opcode":"operator_add","next":null,"parent":"aEp","inputs":{"NUM1":[3,"bzo",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzo":{"opcode":"operator_multiply","next":null,"parent":"aEq","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"KB":{"opcode":"data_replaceitemoflist","next":null,"parent":"D,","inputs":{"INDEX":[3,"aEr",[7,0]],"ITEM":[3,"aEs",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aEr":{"opcode":"operator_add","next":null,"parent":"KB","inputs":{"NUM1":[3,"bzp",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzp":{"opcode":"operator_multiply","next":null,"parent":"aEr","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEs":{"opcode":"data_itemoflist","next":null,"parent":"KB","inputs":{"INDEX":[3,"aEt",[7,0]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aEt":{"opcode":"operator_add","next":null,"parent":"aEs","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"bzq",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzq":{"opcode":"operator_letter_of","next":null,"parent":"aEt","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D-":{"opcode":"data_replaceitemoflist","next":null,"parent":"kU","inputs":{"INDEX":[3,"aEu",[7,0]],"ITEM":[3,"aEv",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aEu":{"opcode":"operator_add","next":null,"parent":"D-","inputs":{"NUM1":[3,"bzr",[4,0]],"NUM2":[3,[12,"@sprite_x","*`+18/=FU3Ni:/*T,!l("],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzr":{"opcode":"operator_multiply","next":null,"parent":"aEu","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aEv":{"opcode":"data_itemoflist","next":null,"parent":"D-","inputs":{"INDEX":[3,"aEw",[7,0]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aEw":{"opcode":"operator_add","next":null,"parent":"aEv","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,0]],"NUM2":[3,"bzs",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzs":{"opcode":"operator_letter_of","next":null,"parent":"aEw","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aEx":{"opcode":"procedures_definition","next":"aEy","parent":null,"inputs":{"custom_block":[1,"bzt"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":3504},"bzt":{"opcode":"procedures_prototype","next":null,"parent":"aEx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aEy":{"opcode":"control_for_each","next":null,"parent":"aEx","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"KC"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"KC":{"opcode":"control_if","next":null,"parent":"aEy","inputs":{"CONDITION":[2,"KD"],"SUBSTACK":[2,"a*"]},"fields":{},"shadow":false,"topLevel":false},"KD":{"opcode":"operator_lt","next":null,"parent":"KC","inputs":{"OPERAND1":[3,"bzu",[10,""]],"OPERAND2":[3,"bzv",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bzu":{"opcode":"operator_mod","next":null,"parent":"KD","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bzv":{"opcode":"operator_multiply","next":null,"parent":"KD","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"a*":{"opcode":"control_if","next":"}","parent":"KC","inputs":{"CONDITION":[2,"XC"],"SUBSTACK":[2,"KE"]},"fields":{},"shadow":false,"topLevel":false},"XC":{"opcode":"operator_equals","next":null,"parent":"a*","inputs":{"OPERAND1":[3,"KF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KF":{"opcode":"data_itemoflist","next":null,"parent":"XC","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KE":{"opcode":"data_setvariableto","next":"bzw","parent":"a*","inputs":{"VALUE":[3,"aEz",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aEz":{"opcode":"data_itemoflist","next":null,"parent":"KE","inputs":{"INDEX":[3,"aEA",[7,0]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"aEA":{"opcode":"operator_add","next":null,"parent":"aEz","inputs":{"NUM1":[3,"bzx",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzx":{"opcode":"operator_mod","next":null,"parent":"aEA","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzw":{"opcode":"control_stop","next":null,"parent":"KE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aEB":{"opcode":"procedures_definition","next":"aEC","parent":null,"inputs":{"custom_block":[1,"bzy"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":4684},"bzy":{"opcode":"procedures_prototype","next":null,"parent":"aEB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write nt","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aEC":{"opcode":"control_for_each","next":null,"parent":"aEB","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"KG"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"KG":{"opcode":"control_if","next":null,"parent":"aEC","inputs":{"CONDITION":[2,"KH"],"SUBSTACK":[2,"br"]},"fields":{},"shadow":false,"topLevel":false},"KH":{"opcode":"operator_lt","next":null,"parent":"KG","inputs":{"OPERAND1":[3,"bzz",[10,""]],"OPERAND2":[3,"bzA",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bzz":{"opcode":"operator_mod","next":null,"parent":"KH","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bzA":{"opcode":"operator_multiply","next":null,"parent":"KH","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"br":{"opcode":"control_if","next":"bs","parent":"KG","inputs":{"CONDITION":[2,"XD"],"SUBSTACK":[2,"KI"]},"fields":{},"shadow":false,"topLevel":false},"XD":{"opcode":"operator_equals","next":null,"parent":"br","inputs":{"OPERAND1":[3,"KJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KJ":{"opcode":"data_itemoflist","next":null,"parent":"XD","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KI":{"opcode":"data_replaceitemoflist","next":"bzB","parent":"br","inputs":{"INDEX":[3,"aED",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram0","oJgU|x!842eP+q,1(.#,"]},"shadow":false,"topLevel":false},"aED":{"opcode":"operator_add","next":null,"parent":"KI","inputs":{"NUM1":[3,"bzC",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzC":{"opcode":"operator_mod","next":null,"parent":"aED","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzB":{"opcode":"control_stop","next":null,"parent":"KI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bs":{"opcode":"control_if","next":"bt","parent":"br","inputs":{"CONDITION":[2,"XE"],"SUBSTACK":[2,"#/"]},"fields":{},"shadow":false,"topLevel":false},"XE":{"opcode":"operator_equals","next":null,"parent":"bs","inputs":{"OPERAND1":[3,"#:",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"#:":{"opcode":"data_itemoflist","next":null,"parent":"XE","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"#/":{"opcode":"data_replaceitemoflist","next":"bzD","parent":"bs","inputs":{"INDEX":[3,"aEE",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"aEE":{"opcode":"operator_add","next":null,"parent":"#/","inputs":{"NUM1":[3,"bzE",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzE":{"opcode":"operator_mod","next":null,"parent":"aEE","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzD":{"opcode":"control_stop","next":null,"parent":"#/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bt":{"opcode":"control_if","next":"#;","parent":"bs","inputs":{"CONDITION":[2,"XF"],"SUBSTACK":[2,"#="]},"fields":{},"shadow":false,"topLevel":false},"XF":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,"#?",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"#?":{"opcode":"data_itemoflist","next":null,"parent":"XF","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"#=":{"opcode":"data_replaceitemoflist","next":"bzF","parent":"bt","inputs":{"INDEX":[3,"aEF",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"aEF":{"opcode":"operator_add","next":null,"parent":"#=","inputs":{"NUM1":[3,"bzG",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzG":{"opcode":"operator_mod","next":null,"parent":"aEF","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzF":{"opcode":"control_stop","next":null,"parent":"#=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"#;":{"opcode":"control_if","next":null,"parent":"bt","inputs":{"CONDITION":[2,"aEG"],"SUBSTACK":[2,"#@"]},"fields":{},"shadow":false,"topLevel":false},"aEG":{"opcode":"operator_equals","next":null,"parent":"#;","inputs":{"OPERAND1":[3,"bzH",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bzH":{"opcode":"data_itemoflist","next":null,"parent":"aEG","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"#@":{"opcode":"data_replaceitemoflist","next":"bzI","parent":"#;","inputs":{"INDEX":[3,"aEH",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"aEH":{"opcode":"operator_add","next":null,"parent":"#@","inputs":{"NUM1":[3,"bzJ",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzJ":{"opcode":"operator_mod","next":null,"parent":"aEH","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzI":{"opcode":"control_stop","next":null,"parent":"#@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aEI":{"opcode":"procedures_definition","next":"aEJ","parent":null,"inputs":{"custom_block":[1,"bzK"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":5832},"bzK":{"opcode":"procedures_prototype","next":null,"parent":"aEI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read at","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aEJ":{"opcode":"control_for_each","next":null,"parent":"aEI","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"#["]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"#[":{"opcode":"control_if","next":null,"parent":"aEJ","inputs":{"CONDITION":[2,"#]"],"SUBSTACK":[2,"bu"]},"fields":{},"shadow":false,"topLevel":false},"#]":{"opcode":"operator_lt","next":null,"parent":"#[","inputs":{"OPERAND1":[3,"bzL",[10,""]],"OPERAND2":[3,"bzM",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bzL":{"opcode":"operator_mod","next":null,"parent":"#]","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bzM":{"opcode":"operator_multiply","next":null,"parent":"#]","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bu":{"opcode":"control_if","next":"bv","parent":"#[","inputs":{"CONDITION":[2,"XG"],"SUBSTACK":[2,"#^"]},"fields":{},"shadow":false,"topLevel":false},"XG":{"opcode":"operator_equals","next":null,"parent":"bu","inputs":{"OPERAND1":[3,"#_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#_":{"opcode":"data_itemoflist","next":null,"parent":"XG","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"#^":{"opcode":"data_setvariableto","next":"bzN","parent":"bu","inputs":{"VALUE":[3,"aEK",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aEK":{"opcode":"data_itemoflist","next":null,"parent":"#^","inputs":{"INDEX":[3,"aEL",[7,0]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aEL":{"opcode":"operator_add","next":null,"parent":"aEK","inputs":{"NUM1":[3,"bzO",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzO":{"opcode":"operator_mod","next":null,"parent":"aEL","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzN":{"opcode":"control_stop","next":null,"parent":"#^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bv":{"opcode":"control_if","next":"bw","parent":"bu","inputs":{"CONDITION":[2,"XH"],"SUBSTACK":[2,"KK"]},"fields":{},"shadow":false,"topLevel":false},"XH":{"opcode":"operator_equals","next":null,"parent":"bv","inputs":{"OPERAND1":[3,"KL",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KL":{"opcode":"data_itemoflist","next":null,"parent":"XH","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KK":{"opcode":"data_setvariableto","next":"bzP","parent":"bv","inputs":{"VALUE":[3,"aEM",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aEM":{"opcode":"data_itemoflist","next":null,"parent":"KK","inputs":{"INDEX":[3,"aEN",[7,0]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aEN":{"opcode":"operator_add","next":null,"parent":"aEM","inputs":{"NUM1":[3,"bzQ",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzQ":{"opcode":"operator_mod","next":null,"parent":"aEN","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzP":{"opcode":"control_stop","next":null,"parent":"KK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bw":{"opcode":"control_if","next":"KM","parent":"bv","inputs":{"CONDITION":[2,"kV"],"SUBSTACK":[2,"KN"]},"fields":{},"shadow":false,"topLevel":false},"kV":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"KO",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"KO":{"opcode":"data_itemoflist","next":null,"parent":"kV","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KN":{"opcode":"data_setvariableto","next":"bzR","parent":"bw","inputs":{"VALUE":[3,"aEO",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aEO":{"opcode":"data_itemoflist","next":null,"parent":"KN","inputs":{"INDEX":[3,"aEP",[7,0]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aEP":{"opcode":"operator_add","next":null,"parent":"aEO","inputs":{"NUM1":[3,"bzS",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzS":{"opcode":"operator_mod","next":null,"parent":"aEP","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzR":{"opcode":"control_stop","next":null,"parent":"KN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"KM":{"opcode":"control_if","next":null,"parent":"bw","inputs":{"CONDITION":[2,"aEQ"],"SUBSTACK":[2,"KP"]},"fields":{},"shadow":false,"topLevel":false},"aEQ":{"opcode":"operator_equals","next":null,"parent":"KM","inputs":{"OPERAND1":[3,"bzT",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bzT":{"opcode":"data_itemoflist","next":null,"parent":"aEQ","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KP":{"opcode":"data_setvariableto","next":"bzU","parent":"KM","inputs":{"VALUE":[3,"aER",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aER":{"opcode":"data_itemoflist","next":null,"parent":"KP","inputs":{"INDEX":[3,"aES",[7,0]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aES":{"opcode":"operator_add","next":null,"parent":"aER","inputs":{"NUM1":[3,"bzV",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bzV":{"opcode":"operator_mod","next":null,"parent":"aES","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bzU":{"opcode":"control_stop","next":null,"parent":"KP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aET":{"opcode":"procedures_definition","next":"KQ","parent":null,"inputs":{"custom_block":[1,"bzW"]},"fields":{},"shadow":false,"topLevel":true,"x":12583,"y":64},"bzW":{"opcode":"procedures_prototype","next":null,"parent":"aET","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write at","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"KQ":{"opcode":"data_setvariableto","next":"KR","parent":"aET","inputs":{"VALUE":[3,"aEU",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aEU":{"opcode":"operator_subtract","next":null,"parent":"KQ","inputs":{"NUM1":[3,"bzX",[4,0]],"NUM2":[1,[4,"960"]]},"fields":{},"shadow":false,"topLevel":false},"bzX":{"opcode":"operator_mod","next":null,"parent":"aEU","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"KR":{"opcode":"data_setvariableto","next":"aEV","parent":"KQ","inputs":{"VALUE":[3,"aEW",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aEW":{"opcode":"operator_add","next":null,"parent":"KR","inputs":{"NUM1":[3,"KS",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KS":{"opcode":"operator_add","next":null,"parent":"aEW","inputs":{"NUM1":[3,"bzY",[4,0]],"NUM2":[3,"aEX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bzY":{"opcode":"operator_multiply","next":null,"parent":"KS","inputs":{"NUM1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aEX":{"opcode":"operator_multiply","next":null,"parent":"KS","inputs":{"NUM1":[3,"aEY",[4,0]],"NUM2":[1,[4,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aEY":{"opcode":"operator_mathop","next":null,"parent":"aEX","inputs":{"NUM":[3,"bzZ",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bzZ":{"opcode":"operator_divide","next":null,"parent":"aEY","inputs":{"NUM1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aEV":{"opcode":"control_for_each","next":null,"parent":"KR","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"KT"]},"fields":{"VARIABLE":["@nametable_index",":{s`ni1Fg)H5!ukHNf.u"]},"shadow":false,"topLevel":false},"KT":{"opcode":"control_if","next":null,"parent":"aEV","inputs":{"CONDITION":[2,"KU"],"SUBSTACK":[2,"bx"]},"fields":{},"shadow":false,"topLevel":false},"KU":{"opcode":"operator_lt","next":null,"parent":"KT","inputs":{"OPERAND1":[3,"bz!",[10,""]],"OPERAND2":[3,"bz#",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bz!":{"opcode":"operator_mod","next":null,"parent":"KU","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bz#":{"opcode":"operator_multiply","next":null,"parent":"KU","inputs":{"NUM1":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bx":{"opcode":"control_if","next":"b=","parent":"KT","inputs":{"CONDITION":[2,"kW"],"SUBSTACK":[2,"KV"]},"fields":{},"shadow":false,"topLevel":false},"kW":{"opcode":"operator_equals","next":null,"parent":"bx","inputs":{"OPERAND1":[3,"KW",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KW":{"opcode":"data_itemoflist","next":null,"parent":"kW","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"KV":{"opcode":"control_repeat","next":"KX","parent":"bx","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"KY"]},"fields":{},"shadow":false,"topLevel":false},"KY":{"opcode":"control_repeat","next":"KZ","parent":"KV","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K!"]},"fields":{},"shadow":false,"topLevel":false},"K!":{"opcode":"data_replaceitemoflist","next":"bz%","parent":"KY","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aEZ",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aEZ":{"opcode":"operator_multiply","next":null,"parent":"K!","inputs":{"NUM1":[3,"bz(",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz(":{"opcode":"operator_mod","next":null,"parent":"aEZ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz%":{"opcode":"data_changevariableby","next":null,"parent":"K!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"KZ":{"opcode":"control_repeat","next":"bz)","parent":"KY","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K#"]},"fields":{},"shadow":false,"topLevel":false},"K#":{"opcode":"data_replaceitemoflist","next":"bz*","parent":"KZ","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE!",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aE!":{"opcode":"operator_multiply","next":null,"parent":"K#","inputs":{"NUM1":[3,"aE#",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE#":{"opcode":"operator_mod","next":null,"parent":"aE!","inputs":{"NUM1":[3,"aE%",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE%":{"opcode":"operator_mathop","next":null,"parent":"aE#","inputs":{"NUM":[3,"bz+",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz+":{"opcode":"operator_divide","next":null,"parent":"aE%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz*":{"opcode":"data_changevariableby","next":null,"parent":"K#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz)":{"opcode":"data_changevariableby","next":null,"parent":"KZ","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"KX":{"opcode":"control_repeat","next":"bz,","parent":"KV","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K%"]},"fields":{},"shadow":false,"topLevel":false},"K%":{"opcode":"control_repeat","next":"K(","parent":"KX","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K)"]},"fields":{},"shadow":false,"topLevel":false},"K)":{"opcode":"data_replaceitemoflist","next":"bz-","parent":"K%","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE(",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aE(":{"opcode":"operator_multiply","next":null,"parent":"K)","inputs":{"NUM1":[3,"aE)",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE)":{"opcode":"operator_mod","next":null,"parent":"aE(","inputs":{"NUM1":[3,"aE*",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE*":{"opcode":"operator_mathop","next":null,"parent":"aE)","inputs":{"NUM":[3,"bz.",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz.":{"opcode":"operator_divide","next":null,"parent":"aE*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bz-":{"opcode":"data_changevariableby","next":null,"parent":"K)","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"K(":{"opcode":"control_repeat","next":"bz/","parent":"K%","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K*"]},"fields":{},"shadow":false,"topLevel":false},"K*":{"opcode":"data_replaceitemoflist","next":"bz:","parent":"K(","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE+",[10,""]]},"fields":{"LIST":["@attribute0","[17+MWA-HD.KD]Sxa(vu"]},"shadow":false,"topLevel":false},"aE+":{"opcode":"operator_multiply","next":null,"parent":"K*","inputs":{"NUM1":[3,"aE,",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE,":{"opcode":"operator_mod","next":null,"parent":"aE+","inputs":{"NUM1":[3,"aE-",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE-":{"opcode":"operator_mathop","next":null,"parent":"aE,","inputs":{"NUM":[3,"bz;",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz;":{"opcode":"operator_divide","next":null,"parent":"aE-","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bz:":{"opcode":"data_changevariableby","next":null,"parent":"K*","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz/":{"opcode":"data_changevariableby","next":null,"parent":"K(","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz,":{"opcode":"control_stop","next":null,"parent":"KX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b=":{"opcode":"control_if","next":"by","parent":"bx","inputs":{"CONDITION":[2,"K+"],"SUBSTACK":[2,"K,"]},"fields":{},"shadow":false,"topLevel":false},"K+":{"opcode":"operator_equals","next":null,"parent":"b=","inputs":{"OPERAND1":[3,"bz=",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bz=":{"opcode":"data_itemoflist","next":null,"parent":"K+","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"K,":{"opcode":"control_repeat","next":"K-","parent":"b=","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K."]},"fields":{},"shadow":false,"topLevel":false},"K.":{"opcode":"control_repeat","next":"K/","parent":"K,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K:"]},"fields":{},"shadow":false,"topLevel":false},"K:":{"opcode":"data_replaceitemoflist","next":"bz?","parent":"K.","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE.",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aE.":{"opcode":"operator_multiply","next":null,"parent":"K:","inputs":{"NUM1":[3,"bz@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz@":{"opcode":"operator_mod","next":null,"parent":"aE.","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz?":{"opcode":"data_changevariableby","next":null,"parent":"K:","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"K/":{"opcode":"control_repeat","next":"bz[","parent":"K.","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K;"]},"fields":{},"shadow":false,"topLevel":false},"K;":{"opcode":"data_replaceitemoflist","next":"bz]","parent":"K/","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE/",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aE/":{"opcode":"operator_multiply","next":null,"parent":"K;","inputs":{"NUM1":[3,"aE:",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE:":{"opcode":"operator_mod","next":null,"parent":"aE/","inputs":{"NUM1":[3,"aE;",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE;":{"opcode":"operator_mathop","next":null,"parent":"aE:","inputs":{"NUM":[3,"bz^",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz^":{"opcode":"operator_divide","next":null,"parent":"aE;","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bz]":{"opcode":"data_changevariableby","next":null,"parent":"K;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz[":{"opcode":"data_changevariableby","next":null,"parent":"K/","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"K-":{"opcode":"control_repeat","next":"bz_","parent":"K,","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K="]},"fields":{},"shadow":false,"topLevel":false},"K=":{"opcode":"control_repeat","next":"K?","parent":"K-","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K@"]},"fields":{},"shadow":false,"topLevel":false},"K@":{"opcode":"data_replaceitemoflist","next":"bz`","parent":"K=","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE=",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aE=":{"opcode":"operator_multiply","next":null,"parent":"K@","inputs":{"NUM1":[3,"aE?",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE?":{"opcode":"operator_mod","next":null,"parent":"aE=","inputs":{"NUM1":[3,"aE@",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE@":{"opcode":"operator_mathop","next":null,"parent":"aE?","inputs":{"NUM":[3,"bz{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz{":{"opcode":"operator_divide","next":null,"parent":"aE@","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bz`":{"opcode":"data_changevariableby","next":null,"parent":"K@","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"K?":{"opcode":"control_repeat","next":"bz|","parent":"K=","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K["]},"fields":{},"shadow":false,"topLevel":false},"K[":{"opcode":"data_replaceitemoflist","next":"bz}","parent":"K?","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE[",[10,""]]},"fields":{"LIST":["@attribute1","6|12/+(e~t(1zW~z,vQQ"]},"shadow":false,"topLevel":false},"aE[":{"opcode":"operator_multiply","next":null,"parent":"K[","inputs":{"NUM1":[3,"aE]",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE]":{"opcode":"operator_mod","next":null,"parent":"aE[","inputs":{"NUM1":[3,"aE^",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE^":{"opcode":"operator_mathop","next":null,"parent":"aE]","inputs":{"NUM":[3,"bz~",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bz~":{"opcode":"operator_divide","next":null,"parent":"aE^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bz}":{"opcode":"data_changevariableby","next":null,"parent":"K[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz|":{"opcode":"data_changevariableby","next":null,"parent":"K?","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bz_":{"opcode":"control_stop","next":null,"parent":"K-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"by":{"opcode":"control_if","next":"K]","parent":"b=","inputs":{"CONDITION":[2,"kX"],"SUBSTACK":[2,"K^"]},"fields":{},"shadow":false,"topLevel":false},"kX":{"opcode":"operator_equals","next":null,"parent":"by","inputs":{"OPERAND1":[3,"K_",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"K_":{"opcode":"data_itemoflist","next":null,"parent":"kX","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"K^":{"opcode":"control_repeat","next":"K`","parent":"by","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K{"]},"fields":{},"shadow":false,"topLevel":false},"K`":{"opcode":"control_repeat","next":"bAa","parent":"K^","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K|"]},"fields":{},"shadow":false,"topLevel":false},"K|":{"opcode":"control_repeat","next":"K}","parent":"K`","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"K~"]},"fields":{},"shadow":false,"topLevel":false},"K~":{"opcode":"data_replaceitemoflist","next":"bAb","parent":"K|","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE_",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aE_":{"opcode":"operator_multiply","next":null,"parent":"K~","inputs":{"NUM1":[3,"aE`",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE`":{"opcode":"operator_mod","next":null,"parent":"aE_","inputs":{"NUM1":[3,"aE{",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE{":{"opcode":"operator_mathop","next":null,"parent":"aE`","inputs":{"NUM":[3,"bAc",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAc":{"opcode":"operator_divide","next":null,"parent":"aE{","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bAb":{"opcode":"data_changevariableby","next":null,"parent":"K~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"K}":{"opcode":"control_repeat","next":"bAd","parent":"K|","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"La"]},"fields":{},"shadow":false,"topLevel":false},"La":{"opcode":"data_replaceitemoflist","next":"bAe","parent":"K}","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aE|",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aE|":{"opcode":"operator_multiply","next":null,"parent":"La","inputs":{"NUM1":[3,"aE}",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE}":{"opcode":"operator_mod","next":null,"parent":"aE|","inputs":{"NUM1":[3,"aE~",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aE~":{"opcode":"operator_mathop","next":null,"parent":"aE}","inputs":{"NUM":[3,"bAf",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAf":{"opcode":"operator_divide","next":null,"parent":"aE~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bAe":{"opcode":"data_changevariableby","next":null,"parent":"La","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAd":{"opcode":"data_changevariableby","next":null,"parent":"K}","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAa":{"opcode":"control_stop","next":null,"parent":"K`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"K]":{"opcode":"control_if","next":null,"parent":"by","inputs":{"CONDITION":[2,"aFa"],"SUBSTACK":[2,"Lb"]},"fields":{},"shadow":false,"topLevel":false},"aFa":{"opcode":"operator_equals","next":null,"parent":"K]","inputs":{"OPERAND1":[3,"bAg",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bAg":{"opcode":"data_itemoflist","next":null,"parent":"aFa","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,0]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"Lb":{"opcode":"control_repeat","next":"Lc","parent":"K]","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Ld"]},"fields":{},"shadow":false,"topLevel":false},"Ld":{"opcode":"control_repeat","next":"Le","parent":"Lb","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Lf"]},"fields":{},"shadow":false,"topLevel":false},"Lf":{"opcode":"data_replaceitemoflist","next":"bAh","parent":"Ld","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aFb",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aFb":{"opcode":"operator_multiply","next":null,"parent":"Lf","inputs":{"NUM1":[3,"bAi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bAi":{"opcode":"operator_mod","next":null,"parent":"aFb","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bAh":{"opcode":"data_changevariableby","next":null,"parent":"Lf","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Le":{"opcode":"control_repeat","next":"bAj","parent":"Ld","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Lg"]},"fields":{},"shadow":false,"topLevel":false},"Lg":{"opcode":"data_replaceitemoflist","next":"bAk","parent":"Le","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aFc",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aFc":{"opcode":"operator_multiply","next":null,"parent":"Lg","inputs":{"NUM1":[3,"aFd",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFd":{"opcode":"operator_mod","next":null,"parent":"aFc","inputs":{"NUM1":[3,"aFe",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFe":{"opcode":"operator_mathop","next":null,"parent":"aFd","inputs":{"NUM":[3,"bAl",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAl":{"opcode":"operator_divide","next":null,"parent":"aFe","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bAk":{"opcode":"data_changevariableby","next":null,"parent":"Lg","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAj":{"opcode":"data_changevariableby","next":null,"parent":"Le","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lc":{"opcode":"control_repeat","next":"bAm","parent":"Lb","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Lh"]},"fields":{},"shadow":false,"topLevel":false},"Lh":{"opcode":"control_repeat","next":"Li","parent":"Lc","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Lj"]},"fields":{},"shadow":false,"topLevel":false},"Lj":{"opcode":"data_replaceitemoflist","next":"bAn","parent":"Lh","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aFf",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aFf":{"opcode":"operator_multiply","next":null,"parent":"Lj","inputs":{"NUM1":[3,"aFg",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFg":{"opcode":"operator_mod","next":null,"parent":"aFf","inputs":{"NUM1":[3,"aFh",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFh":{"opcode":"operator_mathop","next":null,"parent":"aFg","inputs":{"NUM":[3,"bAo",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAo":{"opcode":"operator_divide","next":null,"parent":"aFh","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bAn":{"opcode":"data_changevariableby","next":null,"parent":"Lj","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Li":{"opcode":"control_repeat","next":"bAp","parent":"Lh","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Lk"]},"fields":{},"shadow":false,"topLevel":false},"Lk":{"opcode":"data_replaceitemoflist","next":"bAq","parent":"Li","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,0]],"ITEM":[3,"aFi",[10,""]]},"fields":{"LIST":["@attribute3","Iq|PNms0eHTJa4kj75)b"]},"shadow":false,"topLevel":false},"aFi":{"opcode":"operator_multiply","next":null,"parent":"Lk","inputs":{"NUM1":[3,"aFj",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFj":{"opcode":"operator_mod","next":null,"parent":"aFi","inputs":{"NUM1":[3,"aFk",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aFk":{"opcode":"operator_mathop","next":null,"parent":"aFj","inputs":{"NUM":[3,"bAr",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAr":{"opcode":"operator_divide","next":null,"parent":"aFk","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bAq":{"opcode":"data_changevariableby","next":null,"parent":"Lk","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAp":{"opcode":"data_changevariableby","next":null,"parent":"Li","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAm":{"opcode":"control_stop","next":null,"parent":"Lc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aFl":{"opcode":"procedures_definition","next":"aFm","parent":null,"inputs":{"custom_block":[1,"bAs"]},"fields":{},"shadow":false,"topLevel":true,"x":12583,"y":5396},"bAs":{"opcode":"procedures_prototype","next":null,"parent":"aFl","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aFm":{"opcode":"data_deletealloflist","next":"aFn","parent":"aFl","inputs":{},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"aFn":{"opcode":"data_setvariableto","next":"Ll","parent":"aFm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Ll":{"opcode":"control_repeat","next":null,"parent":"aFn","inputs":{"TIMES":[3,"bAt",[6,0]],"SUBSTACK":[2,"Lm"]},"fields":{},"shadow":false,"topLevel":false},"bAt":{"opcode":"operator_divide","next":null,"parent":"Ll","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Lm":{"opcode":"control_repeat","next":"bAu","parent":"Ll","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"aFo"]},"fields":{},"shadow":false,"topLevel":false},"aFo":{"opcode":"data_changevariableby","next":"Ln","parent":"Lm","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Ln":{"opcode":"data_setvariableto","next":"aFp","parent":"aFo","inputs":{"VALUE":[3,"Lo",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"Lo":{"opcode":"operator_join","next":null,"parent":"Ln","inputs":{"STRING1":[3,"aFq",[10,""]],"STRING2":[3,"aFr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aFq":{"opcode":"data_itemoflist","next":null,"parent":"Lo","inputs":{"INDEX":[3,"aFs",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aFs":{"opcode":"operator_add","next":null,"parent":"aFq","inputs":{"NUM1":[3,"bAv",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAv":{"opcode":"data_itemoflist","next":null,"parent":"aFs","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"aFr":{"opcode":"data_itemoflist","next":null,"parent":"Lo","inputs":{"INDEX":[3,"aFt",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aFt":{"opcode":"operator_add","next":null,"parent":"aFr","inputs":{"NUM1":[3,"aFu",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFu":{"opcode":"data_itemoflist","next":null,"parent":"aFt","inputs":{"INDEX":[3,"bAw",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"bAw":{"opcode":"operator_add","next":null,"parent":"aFu","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aFp":{"opcode":"data_setvariableto","next":"Lp","parent":"Ln","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lp":{"opcode":"control_for_each","next":"bAx","parent":"aFp","inputs":{"VALUE":[1,[6,"8"]],"SUBSTACK":[2,"bz"]},"fields":{"VARIABLE":["@bit","OQF50=wL0|j4S5.I%k/,"]},"shadow":false,"topLevel":false},"bz":{"opcode":"control_if","next":"Lq","parent":"Lp","inputs":{"CONDITION":[2,"Lr"],"SUBSTACK":[2,"kY"]},"fields":{},"shadow":false,"topLevel":false},"Lr":{"opcode":"operator_and","next":null,"parent":"bz","inputs":{"OPERAND1":[2,"aFv"],"OPERAND2":[2,"aFw"]},"fields":{},"shadow":false,"topLevel":false},"aFv":{"opcode":"operator_equals","next":null,"parent":"Lr","inputs":{"OPERAND1":[3,"bAy",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bAy":{"opcode":"operator_letter_of","next":null,"parent":"aFv","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aFw":{"opcode":"operator_equals","next":null,"parent":"Lr","inputs":{"OPERAND1":[3,"aFx",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFx":{"opcode":"operator_letter_of","next":null,"parent":"aFw","inputs":{"LETTER":[3,"bAz",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bAz":{"opcode":"operator_add","next":null,"parent":"aFx","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"kY":{"opcode":"data_setvariableto","next":null,"parent":"bz","inputs":{"VALUE":[3,"Ls",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Ls":{"opcode":"operator_join","next":null,"parent":"kY","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Lq":{"opcode":"control_if","next":"Z","parent":"bz","inputs":{"CONDITION":[2,"Lt"],"SUBSTACK":[2,"kZ"]},"fields":{},"shadow":false,"topLevel":false},"Lt":{"opcode":"operator_and","next":null,"parent":"Lq","inputs":{"OPERAND1":[2,"aFy"],"OPERAND2":[2,"aFz"]},"fields":{},"shadow":false,"topLevel":false},"aFy":{"opcode":"operator_equals","next":null,"parent":"Lt","inputs":{"OPERAND1":[3,"bAA",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAA":{"opcode":"operator_letter_of","next":null,"parent":"aFy","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aFz":{"opcode":"operator_equals","next":null,"parent":"Lt","inputs":{"OPERAND1":[3,"aFA",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aFA":{"opcode":"operator_letter_of","next":null,"parent":"aFz","inputs":{"LETTER":[3,"bAB",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bAB":{"opcode":"operator_add","next":null,"parent":"aFA","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"kZ":{"opcode":"data_setvariableto","next":null,"parent":"Lq","inputs":{"VALUE":[3,"Lu",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lu":{"opcode":"operator_join","next":null,"parent":"kZ","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Z":{"opcode":"control_if","next":"Lv","parent":"Lq","inputs":{"CONDITION":[2,"Lw"],"SUBSTACK":[2,"k!"]},"fields":{},"shadow":false,"topLevel":false},"Lw":{"opcode":"operator_and","next":null,"parent":"Z","inputs":{"OPERAND1":[2,"aFB"],"OPERAND2":[2,"aFC"]},"fields":{},"shadow":false,"topLevel":false},"aFB":{"opcode":"operator_equals","next":null,"parent":"Lw","inputs":{"OPERAND1":[3,"bAC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bAC":{"opcode":"operator_letter_of","next":null,"parent":"aFB","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aFC":{"opcode":"operator_equals","next":null,"parent":"Lw","inputs":{"OPERAND1":[3,"aFD",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFD":{"opcode":"operator_letter_of","next":null,"parent":"aFC","inputs":{"LETTER":[3,"bAD",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bAD":{"opcode":"operator_add","next":null,"parent":"aFD","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"k!":{"opcode":"data_setvariableto","next":null,"parent":"Z","inputs":{"VALUE":[3,"Lx",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lx":{"opcode":"operator_join","next":null,"parent":"k!","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Lv":{"opcode":"control_if","next":null,"parent":"Z","inputs":{"CONDITION":[2,"Ly"],"SUBSTACK":[2,"aFE"]},"fields":{},"shadow":false,"topLevel":false},"Ly":{"opcode":"operator_and","next":null,"parent":"Lv","inputs":{"OPERAND1":[2,"aFF"],"OPERAND2":[2,"aFG"]},"fields":{},"shadow":false,"topLevel":false},"aFF":{"opcode":"operator_equals","next":null,"parent":"Ly","inputs":{"OPERAND1":[3,"bAE",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAE":{"opcode":"operator_letter_of","next":null,"parent":"aFF","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aFG":{"opcode":"operator_equals","next":null,"parent":"Ly","inputs":{"OPERAND1":[3,"aFH",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aFH":{"opcode":"operator_letter_of","next":null,"parent":"aFG","inputs":{"LETTER":[3,"bAF",[6,0]],"STRING":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bAF":{"opcode":"operator_add","next":null,"parent":"aFH","inputs":{"NUM1":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aFE":{"opcode":"data_setvariableto","next":null,"parent":"Lv","inputs":{"VALUE":[3,"bAG",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bAG":{"opcode":"operator_join","next":null,"parent":"aFE","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bAx":{"opcode":"data_addtolist","next":null,"parent":"Lp","inputs":{"ITEM":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"bAu":{"opcode":"data_changevariableby","next":null,"parent":"Lm","inputs":{"VALUE":[1,[4,"8"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"aFI":{"opcode":"procedures_definition","next":"W","parent":null,"inputs":{"custom_block":[1,"bAH"]},"fields":{},"shadow":false,"topLevel":true,"x":9236,"y":572},"bAH":{"opcode":"procedures_prototype","next":null,"parent":"aFI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@cycle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aFJ":{"opcode":"procedures_definition","next":"aFK","parent":null,"inputs":{"custom_block":[1,"bAI"]},"fields":{},"shadow":false,"topLevel":true,"x":9236,"y":64},"bAI":{"opcode":"procedures_prototype","next":null,"parent":"aFJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aFK":{"opcode":"procedures_call","next":"Lz","parent":"aFJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@cycle","argumentids":"[]","warp":"true"}},"Lz":{"opcode":"control_if","next":null,"parent":"aFK","inputs":{"CONDITION":[2,"bAJ"],"SUBSTACK":[2,"aFL"]},"fields":{},"shadow":false,"topLevel":false},"bAJ":{"opcode":"operator_equals","next":null,"parent":"Lz","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"aFL":{"opcode":"data_changevariableby","next":"LA","parent":"Lz","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"LA":{"opcode":"control_if","next":null,"parent":"aFL","inputs":{"CONDITION":[2,"bAK"],"SUBSTACK":[2,"aFM"]},"fields":{},"shadow":false,"topLevel":false},"bAK":{"opcode":"operator_gt","next":null,"parent":"LA","inputs":{"OPERAND1":[3,[12,"@frameskip","`oeC-QRVa|Hd.Tue!dpl"],[10,""]],"OPERAND2":[3,[12,"Frameskip","T*Lc1tcF[lxG@/W!jiQ0"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bAL":{"opcode":"data_setvariableto","next":null,"parent":"aFM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@frameskip","`oeC-QRVa|Hd.Tue!dpl"]},"shadow":false,"topLevel":false},"aFM":{"opcode":"event_broadcast","next":"bAL","parent":"LA","inputs":{"BROADCAST_INPUT":[1,[11,"draw","a,=[Gay5*+98NY%7e1=p"]]},"fields":{},"shadow":false,"topLevel":false},"aFN":{"opcode":"procedures_definition","next":"LB","parent":null,"inputs":{"custom_block":[1,"bAM"]},"fields":{},"shadow":false,"topLevel":true,"x":14155,"y":64},"bAM":{"opcode":"procedures_prototype","next":null,"parent":"aFN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"LB":{"opcode":"data_setvariableto","next":"k#","parent":"aFN","inputs":{"VALUE":[3,"aFO",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"aFO":{"opcode":"data_itemoflist","next":null,"parent":"LB","inputs":{"INDEX":[3,"bAN",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bAN":{"opcode":"operator_add","next":null,"parent":"aFO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"k#":{"opcode":"control_if","next":"k%","parent":"LB","inputs":{"CONDITION":[2,"aFP"],"SUBSTACK":[2,"LC"]},"fields":{},"shadow":false,"topLevel":false},"aFP":{"opcode":"operator_equals","next":null,"parent":"k#","inputs":{"OPERAND1":[3,"bAO",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bAO":{"opcode":"operator_mod","next":null,"parent":"aFP","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"LC":{"opcode":"data_setvariableto","next":"k(","parent":"k#","inputs":{"VALUE":[3,"bAP",[10,""]]},"fields":{"VARIABLE":["@nmi_enabled","2j/RBbii5O{|d#5d)@hc"]},"shadow":false,"topLevel":false},"bAP":{"opcode":"operator_letter_of","next":null,"parent":"LC","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"k(":{"opcode":"control_if","next":"LD","parent":"LC","inputs":{"CONDITION":[2,"LE"],"SUBSTACK":[2,"bAQ"]},"fields":{},"shadow":false,"topLevel":false},"LE":{"opcode":"operator_and","next":null,"parent":"k(","inputs":{"OPERAND1":[2,"bAR"],"OPERAND2":[2,"bAS"]},"fields":{},"shadow":false,"topLevel":false},"bAR":{"opcode":"operator_equals","next":null,"parent":"LE","inputs":{"OPERAND1":[3,[12,"@nmi_enabled","2j/RBbii5O{|d#5d)@hc"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAS":{"opcode":"operator_equals","next":null,"parent":"LE","inputs":{"OPERAND1":[3,[12,"@nmi_flag","]o%cE!~|lER;?d)!WgyR"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAQ":{"opcode":"data_setvariableto","next":null,"parent":"k(","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"LD":{"opcode":"data_setvariableto","next":"LF","parent":"k(","inputs":{"VALUE":[3,"aFQ",[10,""]]},"fields":{"VARIABLE":["@sprite_size","6-5_Tcd.JImB^+U#4bLB"]},"shadow":false,"topLevel":false},"aFQ":{"opcode":"operator_add","next":null,"parent":"LD","inputs":{"NUM1":[3,"bAT",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bAT":{"opcode":"operator_letter_of","next":null,"parent":"aFQ","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"LF":{"opcode":"data_setvariableto","next":"LG","parent":"LD","inputs":{"VALUE":[3,"aFR",[10,""]]},"fields":{"VARIABLE":["@bg_pattern","vTq-oq{gvgqfjW3L4iSt"]},"shadow":false,"topLevel":false},"aFR":{"opcode":"operator_multiply","next":null,"parent":"LF","inputs":{"NUM1":[3,"bAU",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bAU":{"opcode":"operator_letter_of","next":null,"parent":"aFR","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"LG":{"opcode":"data_setvariableto","next":"LH","parent":"LF","inputs":{"VALUE":[3,"aFS",[10,""]]},"fields":{"VARIABLE":["@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"]},"shadow":false,"topLevel":false},"aFS":{"opcode":"operator_multiply","next":null,"parent":"LG","inputs":{"NUM1":[3,"bAV",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bAV":{"opcode":"operator_letter_of","next":null,"parent":"aFS","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"LH":{"opcode":"data_setvariableto","next":"LI","parent":"LG","inputs":{"VALUE":[3,"bAW",[10,""]]},"fields":{"VARIABLE":["@vram_incr","|,-0zY+!?.Wa?z)q2;cN"]},"shadow":false,"topLevel":false},"bAW":{"opcode":"operator_letter_of","next":null,"parent":"LH","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"LI":{"opcode":"data_setvariableto","next":"LJ","parent":"LH","inputs":{"VALUE":[3,"aFT",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aFT":{"opcode":"operator_mathop","next":null,"parent":"LI","inputs":{"NUM":[3,"bAX",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bAX":{"opcode":"operator_divide","next":null,"parent":"aFT","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"LJ":{"opcode":"data_setvariableto","next":"LK","parent":"LI","inputs":{"VALUE":[3,"LL",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"LL":{"opcode":"operator_add","next":null,"parent":"LJ","inputs":{"NUM1":[3,"aFU",[4,0]],"NUM2":[3,"bAY",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aFU":{"opcode":"operator_subtract","next":null,"parent":"LL","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[3,"bAZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bAZ":{"opcode":"operator_mod","next":null,"parent":"aFU","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bAY":{"opcode":"operator_mod","next":null,"parent":"LL","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"LK":{"opcode":"data_setvariableto","next":"bA!","parent":"LJ","inputs":{"VALUE":[3,"#`",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"#`":{"opcode":"operator_add","next":null,"parent":"LK","inputs":{"NUM1":[3,"bA#",[4,0]],"NUM2":[3,"bA%",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bA#":{"opcode":"operator_mod","next":null,"parent":"#`","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bA%":{"opcode":"operator_multiply","next":null,"parent":"#`","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bA!":{"opcode":"control_stop","next":null,"parent":"LK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k%":{"opcode":"control_if","next":"k)","parent":"k#","inputs":{"CONDITION":[2,"aFV"],"SUBSTACK":[2,"#{"]},"fields":{},"shadow":false,"topLevel":false},"aFV":{"opcode":"operator_equals","next":null,"parent":"k%","inputs":{"OPERAND1":[3,"bA(",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bA(":{"opcode":"operator_mod","next":null,"parent":"aFV","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"#{":{"opcode":"data_setvariableto","next":"#|","parent":"k%","inputs":{"VALUE":[3,"bA)",[10,""]]},"fields":{"VARIABLE":["@render_sprite","xu#/+b%vNGX}5y8HCFJ#"]},"shadow":false,"topLevel":false},"bA)":{"opcode":"operator_letter_of","next":null,"parent":"#{","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#|":{"opcode":"data_setvariableto","next":"#}","parent":"#{","inputs":{"VALUE":[3,"bA*",[10,""]]},"fields":{"VARIABLE":["@render_bg","~C;tFyLG;WJlq~1ZPX1f"]},"shadow":false,"topLevel":false},"bA*":{"opcode":"operator_letter_of","next":null,"parent":"#|","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"#}":{"opcode":"data_setvariableto","next":"#~","parent":"#|","inputs":{"VALUE":[3,"aFW",[10,""]]},"fields":{"VARIABLE":["render_enabled","kG=l#K?vQ345t{T6HPPz"]},"shadow":false,"topLevel":false},"aFW":{"opcode":"operator_add","next":null,"parent":"#}","inputs":{"NUM1":[3,"%a",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"%a":{"opcode":"operator_or","next":null,"parent":"aFW","inputs":{"OPERAND1":[2,"bA+"],"OPERAND2":[2,"bA,"]},"fields":{},"shadow":false,"topLevel":false},"bA+":{"opcode":"operator_equals","next":null,"parent":"%a","inputs":{"OPERAND1":[3,[12,"@render_bg","~C;tFyLG;WJlq~1ZPX1f"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bA,":{"opcode":"operator_equals","next":null,"parent":"%a","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"#~":{"opcode":"data_setvariableto","next":"%b","parent":"#}","inputs":{"VALUE":[3,"bA-",[10,""]]},"fields":{"VARIABLE":["@mask_sprite","Tzlr[o(!fW{rTd~V:J,G"]},"shadow":false,"topLevel":false},"bA-":{"opcode":"operator_letter_of","next":null,"parent":"#~","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"%b":{"opcode":"data_setvariableto","next":"bA.","parent":"#~","inputs":{"VALUE":[3,"bA/",[10,""]]},"fields":{"VARIABLE":["@mask_bg","rp0u9foKc3@?]%7O5HRb"]},"shadow":false,"topLevel":false},"bA/":{"opcode":"operator_letter_of","next":null,"parent":"%b","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bA.":{"opcode":"control_stop","next":null,"parent":"%b","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k)":{"opcode":"control_if","next":"k*","parent":"k%","inputs":{"CONDITION":[2,"aFX"],"SUBSTACK":[2,"%c"]},"fields":{},"shadow":false,"topLevel":false},"aFX":{"opcode":"operator_equals","next":null,"parent":"k)","inputs":{"OPERAND1":[3,"bA:",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bA:":{"opcode":"operator_mod","next":null,"parent":"aFX","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"%c":{"opcode":"data_setvariableto","next":"bA;","parent":"k)","inputs":{"VALUE":[3,"bA=",[10,""]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"bA=":{"opcode":"operator_add","next":null,"parent":"%c","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bA;":{"opcode":"control_stop","next":null,"parent":"%c","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k*":{"opcode":"control_if","next":"k+","parent":"k)","inputs":{"CONDITION":[2,"aFY"],"SUBSTACK":[2,"aFZ"]},"fields":{},"shadow":false,"topLevel":false},"aFY":{"opcode":"operator_equals","next":null,"parent":"k*","inputs":{"OPERAND1":[3,"bA?",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bA?":{"opcode":"operator_mod","next":null,"parent":"aFY","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aFZ":{"opcode":"data_replaceitemoflist","next":"aF!","parent":"k*","inputs":{"INDEX":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"aF!":{"opcode":"data_changevariableby","next":"k,","parent":"aFZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"k,":{"opcode":"control_if","next":"bA@","parent":"aF!","inputs":{"CONDITION":[2,"bA["],"SUBSTACK":[2,"bA]"]},"fields":{},"shadow":false,"topLevel":false},"bA[":{"opcode":"operator_equals","next":null,"parent":"k,","inputs":{"OPERAND1":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[10,""]],"OPERAND2":[1,[10,"257"]]},"fields":{},"shadow":false,"topLevel":false},"bA]":{"opcode":"data_setvariableto","next":null,"parent":"k,","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"]},"shadow":false,"topLevel":false},"bA@":{"opcode":"control_stop","next":null,"parent":"k,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k+":{"opcode":"control_if","next":"k-","parent":"k*","inputs":{"CONDITION":[2,"aF#"],"SUBSTACK":[2,"LM"]},"fields":{},"shadow":false,"topLevel":false},"aF#":{"opcode":"operator_equals","next":null,"parent":"k+","inputs":{"OPERAND1":[3,"bA^",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bA^":{"opcode":"operator_mod","next":null,"parent":"aF#","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"LM":{"opcode":"control_if_else","next":"bA_","parent":"k+","inputs":{"CONDITION":[2,"bA`"],"SUBSTACK":[2,"%d"],"SUBSTACK2":[2,"%e"]},"fields":{},"shadow":false,"topLevel":false},"bA`":{"opcode":"operator_equals","next":null,"parent":"LM","inputs":{"OPERAND1":[3,[12,"@write_toggle","5@CAuX+T_vc:]!OZM32!"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%e":{"opcode":"data_setvariableto","next":"LN","parent":"LM","inputs":{"VALUE":[3,"aF%",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aF%":{"opcode":"operator_mathop","next":null,"parent":"%e","inputs":{"NUM":[3,"bA{",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bA{":{"opcode":"operator_divide","next":null,"parent":"aF%","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bA_":{"opcode":"control_stop","next":null,"parent":"LM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k-":{"opcode":"control_if","next":"LO","parent":"k+","inputs":{"CONDITION":[2,"aF("],"SUBSTACK":[2,"LP"]},"fields":{},"shadow":false,"topLevel":false},"aF(":{"opcode":"operator_equals","next":null,"parent":"k-","inputs":{"OPERAND1":[3,"bA|",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bA|":{"opcode":"operator_mod","next":null,"parent":"aF(","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"LP":{"opcode":"control_if_else","next":"bA}","parent":"k-","inputs":{"CONDITION":[2,"bA~"],"SUBSTACK":[2,"LQ"],"SUBSTACK2":[2,"LR"]},"fields":{},"shadow":false,"topLevel":false},"bA~":{"opcode":"operator_equals","next":null,"parent":"LP","inputs":{"OPERAND1":[3,[12,"@write_toggle","5@CAuX+T_vc:]!OZM32!"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LQ":{"opcode":"data_setvariableto","next":"LS","parent":"LP","inputs":{"VALUE":[3,"bBa",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"bBa":{"opcode":"operator_mod","next":null,"parent":"LQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"LS":{"opcode":"data_setvariableto","next":"bBb","parent":"LQ","inputs":{"VALUE":[3,"LT",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"LT":{"opcode":"operator_add","next":null,"parent":"LS","inputs":{"NUM1":[3,"bBc",[4,0]],"NUM2":[3,"bBd",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bBc":{"opcode":"operator_mod","next":null,"parent":"LT","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bBd":{"opcode":"operator_multiply","next":null,"parent":"LT","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bBb":{"opcode":"data_setvariableto","next":null,"parent":"LS","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"LR":{"opcode":"data_setvariableto","next":"aF)","parent":"LP","inputs":{"VALUE":[3,"aF*",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aF*":{"opcode":"operator_subtract","next":null,"parent":"LR","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[3,"bBe",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bBe":{"opcode":"operator_mod","next":null,"parent":"aF*","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aF)":{"opcode":"data_changevariableby","next":"aF+","parent":"LR","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aF+":{"opcode":"data_setvariableto","next":"bBf","parent":"aF)","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bBf":{"opcode":"data_setvariableto","next":null,"parent":"aF+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"bA}":{"opcode":"control_stop","next":null,"parent":"LP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"LO":{"opcode":"control_if","next":null,"parent":"k-","inputs":{"CONDITION":[2,"aF,"],"SUBSTACK":[2,"LU"]},"fields":{},"shadow":false,"topLevel":false},"aF,":{"opcode":"operator_equals","next":null,"parent":"LO","inputs":{"OPERAND1":[3,"bBg",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bBg":{"opcode":"operator_mod","next":null,"parent":"aF,","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"LU":{"opcode":"control_if_else","next":"k.","parent":"LO","inputs":{"CONDITION":[2,"bBh"],"SUBSTACK":[2,"k/"],"SUBSTACK2":[2,"k:"]},"fields":{},"shadow":false,"topLevel":false},"bBh":{"opcode":"operator_lt","next":null,"parent":"LU","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"16128"]]},"fields":{},"shadow":false,"topLevel":false},"k/":{"opcode":"control_if","next":"LV","parent":"LU","inputs":{"CONDITION":[2,"LW"],"SUBSTACK":[2,"LX"]},"fields":{},"shadow":false,"topLevel":false},"LW":{"opcode":"operator_and","next":null,"parent":"k/","inputs":{"OPERAND1":[2,"bBi"],"OPERAND2":[2,"bBj"]},"fields":{},"shadow":false,"topLevel":false},"bBi":{"opcode":"operator_lt","next":null,"parent":"LW","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bBj":{"opcode":"operator_equals","next":null,"parent":"LW","inputs":{"OPERAND1":[3,[12,"chr_ram","70;C?(`taL+qCsw6v*gi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"LX":{"opcode":"data_replaceitemoflist","next":"bBk","parent":"k/","inputs":{"INDEX":[3,"bBl",[7,0]],"ITEM":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"bBl":{"opcode":"operator_add","next":null,"parent":"LX","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bBk":{"opcode":"data_setvariableto","next":null,"parent":"LX","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"LV":{"opcode":"control_if","next":null,"parent":"k/","inputs":{"CONDITION":[2,"bBm"],"SUBSTACK":[2,"aF-"]},"fields":{},"shadow":false,"topLevel":false},"bBm":{"opcode":"operator_gt","next":null,"parent":"LV","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"aF-":{"opcode":"procedures_call","next":"LY","parent":"LV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write nt","argumentids":"[]","warp":"true"}},"LY":{"opcode":"control_if","next":null,"parent":"aF-","inputs":{"CONDITION":[2,"aF."],"SUBSTACK":[2,"bBn"]},"fields":{},"shadow":false,"topLevel":false},"aF.":{"opcode":"operator_gt","next":null,"parent":"LY","inputs":{"OPERAND1":[3,"bBo",[10,""]],"OPERAND2":[1,[10,"959"]]},"fields":{},"shadow":false,"topLevel":false},"bBo":{"opcode":"operator_mod","next":null,"parent":"aF.","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bBn":{"opcode":"procedures_call","next":null,"parent":"LY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@write at","argumentids":"[]","warp":"true"}},"k:":{"opcode":"control_if_else","next":"LZ","parent":"LU","inputs":{"CONDITION":[2,"aF/"],"SUBSTACK":[2,"L!"],"SUBSTACK2":[2,"L#"]},"fields":{},"shadow":false,"topLevel":false},"aF/":{"opcode":"operator_lt","next":null,"parent":"k:","inputs":{"OPERAND1":[3,"bBp",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bBp":{"opcode":"operator_mod","next":null,"parent":"aF/","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"L!":{"opcode":"data_replaceitemoflist","next":null,"parent":"k:","inputs":{"INDEX":[3,"aF:",[7,0]],"ITEM":[3,"aF;",[10,""]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"aF:":{"opcode":"operator_add","next":null,"parent":"L!","inputs":{"NUM1":[3,"bBq",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bBq":{"opcode":"operator_mod","next":null,"parent":"aF:","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aF;":{"opcode":"data_itemoflist","next":null,"parent":"L!","inputs":{"INDEX":[3,"aF=",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"aF=":{"opcode":"operator_add","next":null,"parent":"aF;","inputs":{"NUM1":[3,"bBr",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bBr":{"opcode":"operator_mod","next":null,"parent":"aF=","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"L#":{"opcode":"data_replaceitemoflist","next":null,"parent":"k:","inputs":{"INDEX":[3,"aF?",[7,0]],"ITEM":[3,"aF@",[10,""]]},"fields":{"LIST":["@spr_palette","H;sZ.%NMOG^`:O:Wj!U_"]},"shadow":false,"topLevel":false},"aF?":{"opcode":"operator_add","next":null,"parent":"L#","inputs":{"NUM1":[3,"bBs",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bBs":{"opcode":"operator_mod","next":null,"parent":"aF?","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aF@":{"opcode":"data_itemoflist","next":null,"parent":"L#","inputs":{"INDEX":[3,"aF[",[7,0]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"aF[":{"opcode":"operator_add","next":null,"parent":"aF@","inputs":{"NUM1":[3,"bBt",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bBt":{"opcode":"operator_mod","next":null,"parent":"aF[","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"k.":{"opcode":"control_if","next":"L%","parent":"LU","inputs":{"CONDITION":[2,"bBu"],"SUBSTACK":[2,"aF]"]},"fields":{},"shadow":false,"topLevel":false},"bBu":{"opcode":"operator_equals","next":null,"parent":"k.","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF]":{"opcode":"data_changevariableby","next":"bBv","parent":"k.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bBv":{"opcode":"control_stop","next":null,"parent":"aF]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"L%":{"opcode":"control_if","next":null,"parent":"k.","inputs":{"CONDITION":[2,"bBw"],"SUBSTACK":[2,"aF^"]},"fields":{},"shadow":false,"topLevel":false},"bBw":{"opcode":"operator_equals","next":null,"parent":"L%","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aF^":{"opcode":"data_changevariableby","next":"bBx","parent":"L%","inputs":{"VALUE":[1,[4,"32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bBx":{"opcode":"control_stop","next":null,"parent":"aF^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aF_":{"opcode":"procedures_definition","next":"k;","parent":null,"inputs":{"custom_block":[1,"bBy"]},"fields":{},"shadow":false,"topLevel":true,"x":15328,"y":64},"bBy":{"opcode":"procedures_prototype","next":null,"parent":"aF_","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"k;":{"opcode":"control_if","next":"k=","parent":"aF_","inputs":{"CONDITION":[2,"aF`"],"SUBSTACK":[2,"L("]},"fields":{},"shadow":false,"topLevel":false},"aF`":{"opcode":"operator_equals","next":null,"parent":"k;","inputs":{"OPERAND1":[3,"bBz",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bBz":{"opcode":"operator_mod","next":null,"parent":"aF`","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"L(":{"opcode":"data_setvariableto","next":"L)","parent":"k;","inputs":{"VALUE":[3,"L*",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"L*":{"opcode":"operator_join","next":null,"parent":"L(","inputs":{"STRING1":[3,"bBA",[10,""]],"STRING2":[3,"L+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBA":{"opcode":"operator_letter_of","next":null,"parent":"L*","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"L+":{"opcode":"operator_join","next":null,"parent":"L*","inputs":{"STRING1":[3,"bBB",[10,""]],"STRING2":[3,"L,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBB":{"opcode":"operator_letter_of","next":null,"parent":"L+","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"L,":{"opcode":"operator_join","next":null,"parent":"L+","inputs":{"STRING1":[3,"bBC",[10,""]],"STRING2":[3,"L-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBC":{"opcode":"operator_letter_of","next":null,"parent":"L,","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"L-":{"opcode":"operator_join","next":null,"parent":"L,","inputs":{"STRING1":[3,"bBD",[10,""]],"STRING2":[3,"bBE",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBD":{"opcode":"operator_letter_of","next":null,"parent":"L-","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBE":{"opcode":"operator_letter_of","next":null,"parent":"L-","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"L)":{"opcode":"data_setvariableto","next":"aF{","parent":"L(","inputs":{"VALUE":[3,"L.",[10,""]]},"fields":{"VARIABLE":["@data_latch","oS%53`U7y@bB1gbSz8^+"]},"shadow":false,"topLevel":false},"L.":{"opcode":"operator_join","next":null,"parent":"L)","inputs":{"STRING1":[3,"bBF",[10,""]],"STRING2":[3,"bBG",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBF":{"opcode":"operator_join","next":null,"parent":"L.","inputs":{"STRING1":[3,[12,"@nmi_flag","]o%cE!~|lER;?d)!WgyR"],[10,""]],"STRING2":[3,[12,"@sprite_hit","Y5dm@[4]PzSED`#Df2W["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBG":{"opcode":"operator_join","next":null,"parent":"L.","inputs":{"STRING1":[3,[12,"@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"],[10,""]],"STRING2":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aF{":{"opcode":"data_setvariableto","next":"aF|","parent":"L)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"aF|":{"opcode":"data_setvariableto","next":"aF}","parent":"aF{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"aF}":{"opcode":"data_setvariableto","next":"L/","parent":"aF|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"L/":{"opcode":"data_setvariableto","next":"bBH","parent":"aF}","inputs":{"VALUE":[3,"aF~",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aF~":{"opcode":"operator_add","next":null,"parent":"L/","inputs":{"NUM1":[3,"bBI",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bBI":{"opcode":"operator_join","next":null,"parent":"aF~","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,[12,"@data_latch","oS%53`U7y@bB1gbSz8^+"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bBH":{"opcode":"control_stop","next":null,"parent":"L/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"k=":{"opcode":"control_if","next":"L:","parent":"k;","inputs":{"CONDITION":[2,"aGa"],"SUBSTACK":[2,"L;"]},"fields":{},"shadow":false,"topLevel":false},"aGa":{"opcode":"operator_equals","next":null,"parent":"k=","inputs":{"OPERAND1":[3,"bBJ",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bBJ":{"opcode":"operator_mod","next":null,"parent":"aGa","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"L;":{"opcode":"data_setvariableto","next":"bBK","parent":"k=","inputs":{"VALUE":[3,"bBL",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"bBL":{"opcode":"data_itemoflist","next":null,"parent":"L;","inputs":{"INDEX":[3,[12,"@oam_addr","Vs}Qb!b2oi_SFKzkC=Ic"],[7,0]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"bBK":{"opcode":"control_stop","next":null,"parent":"L;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"L:":{"opcode":"control_if","next":null,"parent":"k=","inputs":{"CONDITION":[2,"aGb"],"SUBSTACK":[2,"aGc"]},"fields":{},"shadow":false,"topLevel":false},"aGb":{"opcode":"operator_equals","next":null,"parent":"L:","inputs":{"OPERAND1":[3,"bBM",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bBM":{"opcode":"operator_mod","next":null,"parent":"aGb","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aGc":{"opcode":"data_setvariableto","next":"L=","parent":"L:","inputs":{"VALUE":[3,[12,"@read_buffer","}Pgpy`,bfpd--EE?mgCu"],[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"L=":{"opcode":"control_if_else","next":"k?","parent":"aGc","inputs":{"CONDITION":[2,"bBN"],"SUBSTACK":[2,"aGd"],"SUBSTACK2":[2,"aGe"]},"fields":{},"shadow":false,"topLevel":false},"bBN":{"opcode":"operator_lt","next":null,"parent":"L=","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aGd":{"opcode":"procedures_call","next":"bBO","parent":"L=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read chr","argumentids":"[]","warp":"true"}},"bBO":{"opcode":"data_setvariableto","next":null,"parent":"aGd","inputs":{"VALUE":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"aGe":{"opcode":"procedures_call","next":"bBP","parent":"L=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","warp":"true"}},"bBP":{"opcode":"data_setvariableto","next":null,"parent":"aGe","inputs":{"VALUE":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[10,""]]},"fields":{"VARIABLE":["@read_buffer","}Pgpy`,bfpd--EE?mgCu"]},"shadow":false,"topLevel":false},"k?":{"opcode":"control_if","next":"L?","parent":"L=","inputs":{"CONDITION":[2,"bBQ"],"SUBSTACK":[2,"aGf"]},"fields":{},"shadow":false,"topLevel":false},"bBQ":{"opcode":"operator_equals","next":null,"parent":"k?","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGf":{"opcode":"data_changevariableby","next":"bBR","parent":"k?","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bBR":{"opcode":"control_stop","next":null,"parent":"aGf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aGg":{"opcode":"data_setvariableto","next":"aGi","parent":"aGh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"aGi":{"opcode":"data_setvariableto","next":"aGj","parent":"aGg","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"aGj":{"opcode":"data_setvariableto","next":"aGk","parent":"aGi","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"aGk":{"opcode":"data_setvariableto","next":"aGl","parent":"aGj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"aGl":{"opcode":"data_setvariableto","next":"aGm","parent":"aGk","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_enabled","e..v2zd5D#2(~C2#;wE5"]},"shadow":false,"topLevel":false},"aGm":{"opcode":"data_setvariableto","next":"aGn","parent":"aGl","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"]},"shadow":false,"topLevel":false},"aGn":{"opcode":"data_setvariableto","next":"aGo","parent":"aGm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"]},"shadow":false,"topLevel":false},"aGo":{"opcode":"data_setvariableto","next":"aGp","parent":"aGn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"]},"shadow":false,"topLevel":false},"aGp":{"opcode":"data_setvariableto","next":"aGq","parent":"aGo","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"aGq":{"opcode":"data_setvariableto","next":"aGr","parent":"aGp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"aGr":{"opcode":"data_setvariableto","next":"aGs","parent":"aGq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"aGs":{"opcode":"data_setvariableto","next":"aGt","parent":"aGr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"aGt":{"opcode":"data_setvariableto","next":"aGu","parent":"aGs","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"]},"shadow":false,"topLevel":false},"aGu":{"opcode":"data_setvariableto","next":"aGv","parent":"aGt","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"]},"shadow":false,"topLevel":false},"aGv":{"opcode":"data_setvariableto","next":"bBS","parent":"aGu","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"]},"shadow":false,"topLevel":false},"bBS":{"opcode":"data_setvariableto","next":null,"parent":"aGv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"]},"shadow":false,"topLevel":false},"aGw":{"opcode":"procedures_definition","next":"L@","parent":null,"inputs":{"custom_block":[1,"bBT"]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":2776},"bBT":{"opcode":"procedures_prototype","next":null,"parent":"aGw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"L@":{"opcode":"control_if_else","next":"L[","parent":"aGw","inputs":{"CONDITION":[2,"bBU"],"SUBSTACK":[2,"aGx"],"SUBSTACK2":[2,"k@"]},"fields":{},"shadow":false,"topLevel":false},"bBU":{"opcode":"operator_equals","next":null,"parent":"L@","inputs":{"OPERAND1":[3,[12,"#sq0_start","#Av;W`BG=vl=H0s()-!="],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGx":{"opcode":"data_setvariableto","next":"aGy","parent":"L@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_start","#Av;W`BG=vl=H0s()-!="]},"shadow":false,"topLevel":false},"aGy":{"opcode":"data_setvariableto","next":"bBV","parent":"aGx","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#sq0_decay","[Gs~6]:p]neDG4uT.*8R"]},"shadow":false,"topLevel":false},"bBV":{"opcode":"data_setvariableto","next":null,"parent":"aGy","inputs":{"VALUE":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[10,""]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"k@":{"opcode":"control_if_else","next":null,"parent":"L@","inputs":{"CONDITION":[2,"bBW"],"SUBSTACK":[2,"aGz"],"SUBSTACK2":[2,"bBX"]},"fields":{},"shadow":false,"topLevel":false},"bBW":{"opcode":"operator_equals","next":null,"parent":"k@","inputs":{"OPERAND1":[3,[12,"#sq0_divider","NEk/F*0W|$g}k?V!YnQs"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGz":{"opcode":"data_setvariableto","next":"L]","parent":"k@","inputs":{"VALUE":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[10,""]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"bBX":{"opcode":"data_changevariableby","next":null,"parent":"k@","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_divider","NEk/F*0W|$g}k?V!YnQs"]},"shadow":false,"topLevel":false},"L[":{"opcode":"control_if_else","next":"L^","parent":"L@","inputs":{"CONDITION":[2,"bBY"],"SUBSTACK":[2,"aGA"],"SUBSTACK2":[2,"k["]},"fields":{},"shadow":false,"topLevel":false},"bBY":{"opcode":"operator_equals","next":null,"parent":"L[","inputs":{"OPERAND1":[3,[12,"#sq1_start","@4/+@;`xIa1GD6lDn;es"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGA":{"opcode":"data_setvariableto","next":"aGB","parent":"L[","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_start","@4/+@;`xIa1GD6lDn;es"]},"shadow":false,"topLevel":false},"aGB":{"opcode":"data_setvariableto","next":"bBZ","parent":"aGA","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#sq1_decay","N3TVGftA]FVjj5Akw]@K"]},"shadow":false,"topLevel":false},"bBZ":{"opcode":"data_setvariableto","next":null,"parent":"aGB","inputs":{"VALUE":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[10,""]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"k[":{"opcode":"control_if_else","next":null,"parent":"L[","inputs":{"CONDITION":[2,"bB!"],"SUBSTACK":[2,"aGC"],"SUBSTACK2":[2,"bB#"]},"fields":{},"shadow":false,"topLevel":false},"bB!":{"opcode":"operator_equals","next":null,"parent":"k[","inputs":{"OPERAND1":[3,[12,"#sq1_divider","{;O=v5i=Jm,IZB/SItqV"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGC":{"opcode":"data_setvariableto","next":"L_","parent":"k[","inputs":{"VALUE":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[10,""]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"L_":{"opcode":"control_if","next":null,"parent":"aGC","inputs":{"CONDITION":[2,"bB%"],"SUBSTACK":[2,"bB("]},"fields":{},"shadow":false,"topLevel":false},"bB%":{"opcode":"operator_gt","next":null,"parent":"L_","inputs":{"OPERAND1":[3,[12,"#sq1_decay","N3TVGftA]FVjj5Akw]@K"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB(":{"opcode":"data_changevariableby","next":null,"parent":"L_","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_decay","N3TVGftA]FVjj5Akw]@K"]},"shadow":false,"topLevel":false},"bB#":{"opcode":"data_changevariableby","next":null,"parent":"k[","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_divider","{;O=v5i=Jm,IZB/SItqV"]},"shadow":false,"topLevel":false},"L^":{"opcode":"control_if_else","next":"k]","parent":"L[","inputs":{"CONDITION":[2,"bB)"],"SUBSTACK":[2,"bB*"],"SUBSTACK2":[2,"L`"]},"fields":{},"shadow":false,"topLevel":false},"bB)":{"opcode":"operator_equals","next":null,"parent":"L^","inputs":{"OPERAND1":[3,[12,"#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bB*":{"opcode":"data_setvariableto","next":null,"parent":"L^","inputs":{"VALUE":[3,[12,"#tri_reload","|%-hP?i[P7T1dz/;qptT"],[10,""]]},"fields":{"VARIABLE":["#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"]},"shadow":false,"topLevel":false},"L`":{"opcode":"control_if","next":null,"parent":"L^","inputs":{"CONDITION":[2,"bB+"],"SUBSTACK":[2,"bB,"]},"fields":{},"shadow":false,"topLevel":false},"bB+":{"opcode":"operator_gt","next":null,"parent":"L`","inputs":{"OPERAND1":[3,[12,"#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB,":{"opcode":"data_changevariableby","next":null,"parent":"L`","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"]},"shadow":false,"topLevel":false},"k]":{"opcode":"control_if","next":"L{","parent":"L^","inputs":{"CONDITION":[2,"bB-"],"SUBSTACK":[2,"bB."]},"fields":{},"shadow":false,"topLevel":false},"bB-":{"opcode":"operator_equals","next":null,"parent":"k]","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB.":{"opcode":"data_setvariableto","next":null,"parent":"k]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"L{":{"opcode":"control_if_else","next":"L|","parent":"k]","inputs":{"CONDITION":[2,"bB/"],"SUBSTACK":[2,"aGD"],"SUBSTACK2":[2,"k^"]},"fields":{},"shadow":false,"topLevel":false},"bB/":{"opcode":"operator_equals","next":null,"parent":"L{","inputs":{"OPERAND1":[3,[12,"#noise_start","wLUu:/;$@K16sJ?,vRSu"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGD":{"opcode":"data_setvariableto","next":"aGE","parent":"L{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_start","wLUu:/;$@K16sJ?,vRSu"]},"shadow":false,"topLevel":false},"aGE":{"opcode":"data_setvariableto","next":"bB:","parent":"aGD","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["#noise_decay","p,u2*;-v*L)r$MCvq%DP"]},"shadow":false,"topLevel":false},"bB:":{"opcode":"data_setvariableto","next":null,"parent":"aGE","inputs":{"VALUE":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[10,""]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"k^":{"opcode":"control_if_else","next":null,"parent":"L{","inputs":{"CONDITION":[2,"bB;"],"SUBSTACK":[2,"aGF"],"SUBSTACK2":[2,"bB="]},"fields":{},"shadow":false,"topLevel":false},"bB;":{"opcode":"operator_equals","next":null,"parent":"k^","inputs":{"OPERAND1":[3,[12,"#noise_divider","](XO5ySg.N?yyt`REZUa"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGF":{"opcode":"data_setvariableto","next":"L}","parent":"k^","inputs":{"VALUE":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[10,""]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"L}":{"opcode":"control_if","next":null,"parent":"aGF","inputs":{"CONDITION":[2,"bB?"],"SUBSTACK":[2,"bB@"]},"fields":{},"shadow":false,"topLevel":false},"bB?":{"opcode":"operator_gt","next":null,"parent":"L}","inputs":{"OPERAND1":[3,[12,"#noise_decay","p,u2*;-v*L)r$MCvq%DP"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB@":{"opcode":"data_changevariableby","next":null,"parent":"L}","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_decay","p,u2*;-v*L)r$MCvq%DP"]},"shadow":false,"topLevel":false},"bB=":{"opcode":"data_changevariableby","next":null,"parent":"k^","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_divider","](XO5ySg.N?yyt`REZUa"]},"shadow":false,"topLevel":false},"aGG":{"opcode":"procedures_definition","next":"k_","parent":null,"inputs":{"custom_block":[1,"bB["]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":5340},"bB[":{"opcode":"procedures_prototype","next":null,"parent":"aGG","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"k_":{"opcode":"control_if","next":"aGH","parent":"aGG","inputs":{"CONDITION":[2,"L~"],"SUBSTACK":[2,"bB]"]},"fields":{},"shadow":false,"topLevel":false},"L~":{"opcode":"operator_and","next":null,"parent":"k_","inputs":{"OPERAND1":[2,"bB^"],"OPERAND2":[2,"bB_"]},"fields":{},"shadow":false,"topLevel":false},"bB^":{"opcode":"operator_equals","next":null,"parent":"L~","inputs":{"OPERAND1":[3,[12,"#sq0_counter_halt","MHM3-iaaIPoFESXtQ;t5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB_":{"opcode":"operator_gt","next":null,"parent":"L~","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bB]":{"opcode":"data_changevariableby","next":null,"parent":"k_","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"aGH":{"opcode":"procedures_call","next":"k`","parent":"k_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"k`":{"opcode":"control_if","next":"Ma","parent":"aGH","inputs":{"CONDITION":[2,"Mb"],"SUBSTACK":[2,"aGI"]},"fields":{},"shadow":false,"topLevel":false},"Mb":{"opcode":"operator_and","next":null,"parent":"k`","inputs":{"OPERAND1":[2,"Mc"],"OPERAND2":[2,"aGJ"]},"fields":{},"shadow":false,"topLevel":false},"aGJ":{"opcode":"operator_not","next":null,"parent":"Mb","inputs":{"OPERAND":[2,"%f"]},"fields":{},"shadow":false,"topLevel":false},"%f":{"opcode":"operator_or","next":null,"parent":"aGJ","inputs":{"OPERAND1":[2,"bB`"],"OPERAND2":[2,"bB{"]},"fields":{},"shadow":false,"topLevel":false},"bB`":{"opcode":"operator_lt","next":null,"parent":"%f","inputs":{"OPERAND1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bB{":{"opcode":"operator_gt","next":null,"parent":"%f","inputs":{"OPERAND1":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"aGI":{"opcode":"data_setvariableto","next":"bB|","parent":"k`","inputs":{"VALUE":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"bB|":{"opcode":"procedures_call","next":null,"parent":"aGI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"aGK":{"opcode":"procedures_definition","next":"b?","parent":null,"inputs":{"custom_block":[1,"bB}"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":64},"bB}":{"opcode":"procedures_prototype","next":null,"parent":"aGK","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu read","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"b?":{"opcode":"data_setvariableto","next":"b@","parent":"aGK","inputs":{"VALUE":[3,"aGL",[10,""]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"aGL":{"opcode":"operator_multiply","next":null,"parent":"b?","inputs":{"NUM1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"b@":{"opcode":"data_changevariableby","next":"c}","parent":"b?","inputs":{"VALUE":[3,"XI",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"XI":{"opcode":"operator_multiply","next":null,"parent":"b@","inputs":{"NUM1":[3,"Md",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Md":{"opcode":"operator_gt","next":null,"parent":"XI","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c}":{"opcode":"data_changevariableby","next":"c~","parent":"b@","inputs":{"VALUE":[3,"XJ",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"XJ":{"opcode":"operator_multiply","next":null,"parent":"c}","inputs":{"NUM1":[3,"Me",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Me":{"opcode":"operator_gt","next":null,"parent":"XJ","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"c~":{"opcode":"data_changevariableby","next":"da","parent":"c}","inputs":{"VALUE":[3,"XK",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"XK":{"opcode":"operator_multiply","next":null,"parent":"c~","inputs":{"NUM1":[3,"Mf",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mf":{"opcode":"operator_gt","next":null,"parent":"XK","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"da":{"opcode":"data_changevariableby","next":"aE","parent":"c~","inputs":{"VALUE":[3,"XL",[4,0]]},"fields":{"VARIABLE":["nes: data","tlPB/|?Ne.:6uFQ;3`S1"]},"shadow":false,"topLevel":false},"XL":{"opcode":"operator_multiply","next":null,"parent":"da","inputs":{"NUM1":[3,"Mg",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Mg":{"opcode":"operator_gt","next":null,"parent":"XL","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aE":{"opcode":"control_if","next":null,"parent":"da","inputs":{"CONDITION":[2,"aGM"],"SUBSTACK":[2,"XM"]},"fields":{},"shadow":false,"topLevel":false},"aGM":{"opcode":"operator_equals","next":null,"parent":"aE","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"XM":{"opcode":"data_changevariableby","next":"Mh","parent":"aE","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Mh":{"opcode":"data_setvariableto","next":null,"parent":"XM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"aGN":{"opcode":"procedures_definition","next":"db","parent":null,"inputs":{"custom_block":[1,"bB~"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":700},"bB~":{"opcode":"procedures_prototype","next":null,"parent":"aGN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"db":{"opcode":"data_setvariableto","next":"XN","parent":"aGN","inputs":{"VALUE":[3,"XO",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"XO":{"opcode":"data_itemoflist","next":null,"parent":"db","inputs":{"INDEX":[3,"Mi",[7,0]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"Mi":{"opcode":"operator_add","next":null,"parent":"XO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"XN":{"opcode":"control_if","next":"XP","parent":"db","inputs":{"CONDITION":[2,"bCa"],"SUBSTACK":[2,"dc"]},"fields":{},"shadow":false,"topLevel":false},"bCa":{"opcode":"operator_equals","next":null,"parent":"XN","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"dc":{"opcode":"data_setvariableto","next":"dd","parent":"XN","inputs":{"VALUE":[3,"XQ",[10,""]]},"fields":{"VARIABLE":["#sq0_duty","dB0flbU!1%]JaiK.z7Y$"]},"shadow":false,"topLevel":false},"XQ":{"opcode":"operator_mathop","next":null,"parent":"dc","inputs":{"NUM":[3,"Mj",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mj":{"opcode":"operator_divide","next":null,"parent":"XQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"dd":{"opcode":"data_setvariableto","next":"de","parent":"dc","inputs":{"VALUE":[3,"aGO",[10,""]]},"fields":{"VARIABLE":["#sq0_counter_halt","MHM3-iaaIPoFESXtQ;t5"]},"shadow":false,"topLevel":false},"aGO":{"opcode":"operator_letter_of","next":null,"parent":"dd","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"de":{"opcode":"data_setvariableto","next":"aF","parent":"dd","inputs":{"VALUE":[3,"aGP",[10,""]]},"fields":{"VARIABLE":["#sq0_constant","wn(;l_KDki8)r5(ghAFC"]},"shadow":false,"topLevel":false},"aGP":{"opcode":"operator_letter_of","next":null,"parent":"de","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aF":{"opcode":"data_setvariableto","next":"aGQ","parent":"de","inputs":{"VALUE":[3,"aGR",[10,""]]},"fields":{"VARIABLE":["#sq0_volume","A%!%qRtLZC]nW~p,)!i%"]},"shadow":false,"topLevel":false},"aGR":{"opcode":"operator_mod","next":null,"parent":"aF","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aGQ":{"opcode":"control_stop","next":null,"parent":"aF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XP":{"opcode":"control_if","next":"XR","parent":"XN","inputs":{"CONDITION":[2,"bCb"],"SUBSTACK":[2,"df"]},"fields":{},"shadow":false,"topLevel":false},"bCb":{"opcode":"operator_equals","next":null,"parent":"XP","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16385"]]},"fields":{},"shadow":false,"topLevel":false},"df":{"opcode":"data_setvariableto","next":"dg","parent":"XP","inputs":{"VALUE":[3,"XS",[10,""]]},"fields":{"VARIABLE":["#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"]},"shadow":false,"topLevel":false},"XS":{"opcode":"operator_add","next":null,"parent":"df","inputs":{"NUM1":[3,"Mk",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mk":{"opcode":"operator_gt","next":null,"parent":"XS","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"dg":{"opcode":"data_setvariableto","next":"Ml","parent":"df","inputs":{"VALUE":[3,"XT",[10,""]]},"fields":{"VARIABLE":["#sq0_swperiod","6ZtJprVet|52~YE]#e.R"]},"shadow":false,"topLevel":false},"XT":{"opcode":"operator_mod","next":null,"parent":"dg","inputs":{"NUM1":[3,"Mm",[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Mm":{"opcode":"operator_mathop","next":null,"parent":"XT","inputs":{"NUM":[3,"Mn",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mn":{"opcode":"operator_divide","next":null,"parent":"Mm","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ml":{"opcode":"data_setvariableto","next":"bA","parent":"dg","inputs":{"VALUE":[3,"aGS",[10,""]]},"fields":{"VARIABLE":["#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"]},"shadow":false,"topLevel":false},"aGS":{"opcode":"operator_add","next":null,"parent":"Ml","inputs":{"NUM1":[3,"Mo",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mo":{"opcode":"operator_gt","next":null,"parent":"aGS","inputs":{"OPERAND1":[3,"bCc",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bCc":{"opcode":"operator_mod","next":null,"parent":"Mo","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bA":{"opcode":"data_setvariableto","next":"XU","parent":"Ml","inputs":{"VALUE":[3,"aGT",[10,""]]},"fields":{"VARIABLE":["#sq0_swshift","x):Akro;B?IDs}?a(1S#"]},"shadow":false,"topLevel":false},"aGT":{"opcode":"operator_mod","next":null,"parent":"bA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"XU":{"opcode":"data_setvariableto","next":"Mp","parent":"bA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"Mp":{"opcode":"control_stop","next":null,"parent":"XU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XR":{"opcode":"control_if","next":"XV","parent":"XP","inputs":{"CONDITION":[2,"bCd"],"SUBSTACK":[2,"aG"]},"fields":{},"shadow":false,"topLevel":false},"bCd":{"opcode":"operator_equals","next":null,"parent":"XR","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16386"]]},"fields":{},"shadow":false,"topLevel":false},"aG":{"opcode":"data_setvariableto","next":"XW","parent":"XR","inputs":{"VALUE":[3,"XX",[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"XX":{"opcode":"operator_add","next":null,"parent":"aG","inputs":{"NUM1":[3,"Mq",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Mq":{"opcode":"operator_subtract","next":null,"parent":"XX","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,"Mr",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Mr":{"opcode":"operator_mod","next":null,"parent":"Mq","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"XW":{"opcode":"procedures_call","next":"Ms","parent":"aG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"Ms":{"opcode":"control_stop","next":null,"parent":"XW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XV":{"opcode":"control_if","next":"XY","parent":"XR","inputs":{"CONDITION":[2,"bCe"],"SUBSTACK":[2,"Mt"]},"fields":{},"shadow":false,"topLevel":false},"bCe":{"opcode":"operator_equals","next":null,"parent":"XV","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16387"]]},"fields":{},"shadow":false,"topLevel":false},"Mt":{"opcode":"data_setvariableto","next":"XZ","parent":"XV","inputs":{"VALUE":[3,"bB",[10,""]]},"fields":{"VARIABLE":["#sq0_period","jy.7$]U@O1MkAbz98}T+"]},"shadow":false,"topLevel":false},"bB":{"opcode":"operator_add","next":null,"parent":"Mt","inputs":{"NUM1":[3,"aGU",[4,0]],"NUM2":[3,"X!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aGU":{"opcode":"operator_mod","next":null,"parent":"bB","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"X!":{"opcode":"operator_multiply","next":null,"parent":"bB","inputs":{"NUM1":[3,"Mu",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Mu":{"opcode":"operator_mod","next":null,"parent":"X!","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"XZ":{"opcode":"control_if","next":"aGV","parent":"Mt","inputs":{"CONDITION":[2,"bCf"],"SUBSTACK":[2,"aGW"]},"fields":{},"shadow":false,"topLevel":false},"bCf":{"opcode":"operator_equals","next":null,"parent":"XZ","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGW":{"opcode":"data_setvariableto","next":null,"parent":"XZ","inputs":{"VALUE":[3,"aGX",[10,""]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"aGX":{"opcode":"data_itemoflist","next":null,"parent":"aGW","inputs":{"INDEX":[3,"aGY",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"aGY":{"opcode":"operator_add","next":null,"parent":"aGX","inputs":{"NUM1":[3,"aGZ",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aGZ":{"opcode":"operator_mathop","next":null,"parent":"aGY","inputs":{"NUM":[3,"bCg",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bCg":{"opcode":"operator_divide","next":null,"parent":"aGZ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aGV":{"opcode":"data_setvariableto","next":"aG!","parent":"XZ","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_start","#Av;W`BG=vl=H0s()-!="]},"shadow":false,"topLevel":false},"aG!":{"opcode":"procedures_call","next":"bCh","parent":"aGV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"bCh":{"opcode":"control_stop","next":null,"parent":"aG!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XY":{"opcode":"control_if","next":"X#","parent":"XV","inputs":{"CONDITION":[2,"bCi"],"SUBSTACK":[2,"dh"]},"fields":{},"shadow":false,"topLevel":false},"bCi":{"opcode":"operator_equals","next":null,"parent":"XY","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16388"]]},"fields":{},"shadow":false,"topLevel":false},"dh":{"opcode":"data_setvariableto","next":"D.","parent":"XY","inputs":{"VALUE":[3,"X%",[10,""]]},"fields":{"VARIABLE":["#sq1_duty","JFkRP]sBcRFZA#p%(s5["]},"shadow":false,"topLevel":false},"X%":{"opcode":"operator_mathop","next":null,"parent":"dh","inputs":{"NUM":[3,"Mv",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mv":{"opcode":"operator_divide","next":null,"parent":"X%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"D.":{"opcode":"data_setvariableto","next":"D/","parent":"dh","inputs":{"VALUE":[3,"aG#",[10,""]]},"fields":{"VARIABLE":["#sq1_counter_halt","a7zy6G,GluFays4z,XP7"]},"shadow":false,"topLevel":false},"aG#":{"opcode":"operator_letter_of","next":null,"parent":"D.","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D/":{"opcode":"data_setvariableto","next":"aH","parent":"D.","inputs":{"VALUE":[3,"aG%",[10,""]]},"fields":{"VARIABLE":["#sq1_constant","V5`gP*J*-[d%pHYl=WL."]},"shadow":false,"topLevel":false},"aG%":{"opcode":"operator_letter_of","next":null,"parent":"D/","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH":{"opcode":"data_setvariableto","next":"aG(","parent":"D/","inputs":{"VALUE":[3,"aG)",[10,""]]},"fields":{"VARIABLE":["#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"]},"shadow":false,"topLevel":false},"aG)":{"opcode":"operator_mod","next":null,"parent":"aH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG(":{"opcode":"control_stop","next":null,"parent":"aH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X#":{"opcode":"control_if","next":"X(","parent":"XY","inputs":{"CONDITION":[2,"bCj"],"SUBSTACK":[2,"D:"]},"fields":{},"shadow":false,"topLevel":false},"bCj":{"opcode":"operator_equals","next":null,"parent":"X#","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16389"]]},"fields":{},"shadow":false,"topLevel":false},"D:":{"opcode":"data_setvariableto","next":"Mw","parent":"X#","inputs":{"VALUE":[3,"X)",[10,""]]},"fields":{"VARIABLE":["#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"]},"shadow":false,"topLevel":false},"X)":{"opcode":"operator_add","next":null,"parent":"D:","inputs":{"NUM1":[3,"Mx",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mx":{"opcode":"operator_gt","next":null,"parent":"X)","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"X(":{"opcode":"control_if","next":"D;","parent":"X#","inputs":{"CONDITION":[2,"bCk"],"SUBSTACK":[2,"bC"]},"fields":{},"shadow":false,"topLevel":false},"bCk":{"opcode":"operator_equals","next":null,"parent":"X(","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16390"]]},"fields":{},"shadow":false,"topLevel":false},"bC":{"opcode":"data_setvariableto","next":"D=","parent":"X(","inputs":{"VALUE":[3,"D?",[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"D?":{"opcode":"operator_add","next":null,"parent":"bC","inputs":{"NUM1":[3,"My",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"My":{"opcode":"operator_subtract","next":null,"parent":"D?","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,"Mz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Mz":{"opcode":"operator_mod","next":null,"parent":"My","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"D=":{"opcode":"procedures_call","next":"MA","parent":"bC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"MA":{"opcode":"control_stop","next":null,"parent":"D=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D;":{"opcode":"control_if","next":"D@","parent":"X(","inputs":{"CONDITION":[2,"bCl"],"SUBSTACK":[2,"MB"]},"fields":{},"shadow":false,"topLevel":false},"bCl":{"opcode":"operator_equals","next":null,"parent":"D;","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16391"]]},"fields":{},"shadow":false,"topLevel":false},"MB":{"opcode":"data_setvariableto","next":"D[","parent":"D;","inputs":{"VALUE":[3,"a+",[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"a+":{"opcode":"operator_add","next":null,"parent":"MB","inputs":{"NUM1":[3,"aG*",[4,0]],"NUM2":[3,"X*",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aG*":{"opcode":"operator_mod","next":null,"parent":"a+","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"X*":{"opcode":"operator_multiply","next":null,"parent":"a+","inputs":{"NUM1":[3,"%g",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%g":{"opcode":"operator_mod","next":null,"parent":"X*","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"D[":{"opcode":"control_if","next":"aG+","parent":"MB","inputs":{"CONDITION":[2,"bCm"],"SUBSTACK":[2,"aG,"]},"fields":{},"shadow":false,"topLevel":false},"bCm":{"opcode":"operator_equals","next":null,"parent":"D[","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG,":{"opcode":"data_setvariableto","next":null,"parent":"D[","inputs":{"VALUE":[3,"aG-",[10,""]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"aG-":{"opcode":"data_itemoflist","next":null,"parent":"aG,","inputs":{"INDEX":[3,"aG.",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"aG.":{"opcode":"operator_add","next":null,"parent":"aG-","inputs":{"NUM1":[3,"aG/",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG/":{"opcode":"operator_mathop","next":null,"parent":"aG.","inputs":{"NUM":[3,"bCn",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bCn":{"opcode":"operator_divide","next":null,"parent":"aG/","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aG+":{"opcode":"data_setvariableto","next":"aG:","parent":"D[","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_start","@4/+@;`xIa1GD6lDn;es"]},"shadow":false,"topLevel":false},"aG:":{"opcode":"procedures_call","next":"bCo","parent":"aG+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"bCo":{"opcode":"control_stop","next":null,"parent":"aG:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D@":{"opcode":"control_if","next":"D]","parent":"D;","inputs":{"CONDITION":[2,"bCp"],"SUBSTACK":[2,"D^"]},"fields":{},"shadow":false,"topLevel":false},"bCp":{"opcode":"operator_equals","next":null,"parent":"D@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16392"]]},"fields":{},"shadow":false,"topLevel":false},"D^":{"opcode":"data_setvariableto","next":"di","parent":"D@","inputs":{"VALUE":[3,"D_",[10,""]]},"fields":{"VARIABLE":["#tri_control",".BuyXV*dX#(v{Ybtg9SY"]},"shadow":false,"topLevel":false},"D_":{"opcode":"operator_add","next":null,"parent":"D^","inputs":{"NUM1":[3,"MC",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"MC":{"opcode":"operator_gt","next":null,"parent":"D_","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"di":{"opcode":"data_setvariableto","next":"aG;","parent":"D^","inputs":{"VALUE":[3,"aG=",[10,""]]},"fields":{"VARIABLE":["#tri_reload","|%-hP?i[P7T1dz/;qptT"]},"shadow":false,"topLevel":false},"aG=":{"opcode":"operator_mod","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aG;":{"opcode":"control_stop","next":null,"parent":"di","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D]":{"opcode":"control_if","next":"D`","parent":"D@","inputs":{"CONDITION":[2,"bCq"],"SUBSTACK":[2,"dj"]},"fields":{},"shadow":false,"topLevel":false},"bCq":{"opcode":"operator_equals","next":null,"parent":"D]","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16394"]]},"fields":{},"shadow":false,"topLevel":false},"dj":{"opcode":"data_setvariableto","next":"aG?","parent":"D]","inputs":{"VALUE":[3,"D{",[10,""]]},"fields":{"VARIABLE":["#tri_period",":~1CFOUK_x[i{fP8hA[3"]},"shadow":false,"topLevel":false},"D{":{"opcode":"operator_add","next":null,"parent":"dj","inputs":{"NUM1":[3,"MD",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"MD":{"opcode":"operator_subtract","next":null,"parent":"D{","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[3,"ME",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"ME":{"opcode":"operator_mod","next":null,"parent":"MD","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aG?":{"opcode":"control_stop","next":null,"parent":"dj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D`":{"opcode":"control_if","next":"X+","parent":"D]","inputs":{"CONDITION":[2,"bCr"],"SUBSTACK":[2,"k{"]},"fields":{},"shadow":false,"topLevel":false},"bCr":{"opcode":"operator_equals","next":null,"parent":"D`","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16395"]]},"fields":{},"shadow":false,"topLevel":false},"k{":{"opcode":"data_setvariableto","next":"!","parent":"D`","inputs":{"VALUE":[3,"lh",[10,""]]},"fields":{"VARIABLE":["#tri_period",":~1CFOUK_x[i{fP8hA[3"]},"shadow":false,"topLevel":false},"lh":{"opcode":"operator_add","next":null,"parent":"k{","inputs":{"NUM1":[3,"aG@",[4,0]],"NUM2":[3,"X,",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aG@":{"opcode":"operator_mod","next":null,"parent":"lh","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"X,":{"opcode":"operator_multiply","next":null,"parent":"lh","inputs":{"NUM1":[3,"MF",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"MF":{"opcode":"operator_mod","next":null,"parent":"X,","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"!":{"opcode":"control_if","next":"MG","parent":"k{","inputs":{"CONDITION":[2,"MH"],"SUBSTACK":[2,"MI"]},"fields":{},"shadow":false,"topLevel":false},"MH":{"opcode":"operator_equals","next":null,"parent":"!","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MI":{"opcode":"data_setvariableto","next":null,"parent":"!","inputs":{"VALUE":[3,"MJ",[10,""]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"MJ":{"opcode":"data_itemoflist","next":null,"parent":"MI","inputs":{"INDEX":[3,"MK",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"MK":{"opcode":"operator_add","next":null,"parent":"MJ","inputs":{"NUM1":[3,"ML",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ML":{"opcode":"operator_mathop","next":null,"parent":"MK","inputs":{"NUM":[3,"MM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"MM":{"opcode":"operator_divide","next":null,"parent":"ML","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MG":{"opcode":"data_setvariableto","next":"MN","parent":"!","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"MN":{"opcode":"control_stop","next":null,"parent":"MG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X+":{"opcode":"control_if","next":"X-","parent":"D`","inputs":{"CONDITION":[2,"bCs"],"SUBSTACK":[2,"D|"]},"fields":{},"shadow":false,"topLevel":false},"bCs":{"opcode":"operator_equals","next":null,"parent":"X+","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16396"]]},"fields":{},"shadow":false,"topLevel":false},"D|":{"opcode":"data_setvariableto","next":"D}","parent":"X+","inputs":{"VALUE":[3,"aG[",[10,""]]},"fields":{"VARIABLE":["#noise_counter_halt","d#{}}5.jeOzt/68f8/23"]},"shadow":false,"topLevel":false},"aG[":{"opcode":"operator_letter_of","next":null,"parent":"D|","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D}":{"opcode":"data_setvariableto","next":"li","parent":"D|","inputs":{"VALUE":[3,"aG]",[10,""]]},"fields":{"VARIABLE":["#noise_constant","9w#8ILSZ$^iPt|9!L6cw"]},"shadow":false,"topLevel":false},"aG]":{"opcode":"operator_letter_of","next":null,"parent":"D}","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"li":{"opcode":"data_setvariableto","next":"aG^","parent":"D}","inputs":{"VALUE":[3,"aG_",[10,""]]},"fields":{"VARIABLE":["#noise_volume","vBuLse(~z3!bQ+oQeC{l"]},"shadow":false,"topLevel":false},"aG_":{"opcode":"operator_mod","next":null,"parent":"li","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG^":{"opcode":"control_stop","next":null,"parent":"li","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X-":{"opcode":"control_if","next":"X.","parent":"X+","inputs":{"CONDITION":[2,"bCt"],"SUBSTACK":[2,"D~"]},"fields":{},"shadow":false,"topLevel":false},"bCt":{"opcode":"operator_equals","next":null,"parent":"X-","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16398"]]},"fields":{},"shadow":false,"topLevel":false},"D~":{"opcode":"data_setvariableto","next":"lj","parent":"X-","inputs":{"VALUE":[3,"X/",[10,""]]},"fields":{"VARIABLE":["#noise_mode","9]wlSTu+]*Y~:nsZ9z4n"]},"shadow":false,"topLevel":false},"X/":{"opcode":"operator_add","next":null,"parent":"D~","inputs":{"NUM1":[3,"MO",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"MO":{"opcode":"operator_gt","next":null,"parent":"X/","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"lj":{"opcode":"data_setvariableto","next":"aG`","parent":"D~","inputs":{"VALUE":[3,"aG{",[10,""]]},"fields":{"VARIABLE":["#noise_period","?A|Ii0235Jf)q]b{e^F;"]},"shadow":false,"topLevel":false},"aG{":{"opcode":"operator_mod","next":null,"parent":"lj","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG`":{"opcode":"control_stop","next":null,"parent":"lj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X.":{"opcode":"control_if","next":"X:","parent":"X-","inputs":{"CONDITION":[2,"bCu"],"SUBSTACK":[2,"X;"]},"fields":{},"shadow":false,"topLevel":false},"bCu":{"opcode":"operator_equals","next":null,"parent":"X.","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16399"]]},"fields":{},"shadow":false,"topLevel":false},"X;":{"opcode":"control_if","next":"aG|","parent":"X.","inputs":{"CONDITION":[2,"bCv"],"SUBSTACK":[2,"aG}"]},"fields":{},"shadow":false,"topLevel":false},"bCv":{"opcode":"operator_equals","next":null,"parent":"X;","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG}":{"opcode":"data_setvariableto","next":null,"parent":"X;","inputs":{"VALUE":[3,"aG~",[10,""]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"aG~":{"opcode":"data_itemoflist","next":null,"parent":"aG}","inputs":{"INDEX":[3,"aHa",[7,0]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"aHa":{"opcode":"operator_add","next":null,"parent":"aG~","inputs":{"NUM1":[3,"aHb",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aHb":{"opcode":"operator_mathop","next":null,"parent":"aHa","inputs":{"NUM":[3,"bCw",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bCw":{"opcode":"operator_divide","next":null,"parent":"aHb","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aG|":{"opcode":"data_setvariableto","next":"bCx","parent":"X;","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#noise_start","wLUu:/;$@K16sJ?,vRSu"]},"shadow":false,"topLevel":false},"bCx":{"opcode":"control_stop","next":null,"parent":"aG|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X:":{"opcode":"control_if","next":"X=","parent":"X.","inputs":{"CONDITION":[2,"bCy"],"SUBSTACK":[2,"lk"]},"fields":{},"shadow":false,"topLevel":false},"bCy":{"opcode":"operator_equals","next":null,"parent":"X:","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16400"]]},"fields":{},"shadow":false,"topLevel":false},"lk":{"opcode":"data_setvariableto","next":"aHc","parent":"X:","inputs":{"VALUE":[3,"aHd",[10,""]]},"fields":{"VARIABLE":["#dmc_rate","K:RgLhONccG8dn?:Gz`2"]},"shadow":false,"topLevel":false},"aHd":{"opcode":"operator_mod","next":null,"parent":"lk","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aHc":{"opcode":"control_stop","next":null,"parent":"lk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X=":{"opcode":"control_if","next":"X?","parent":"X:","inputs":{"CONDITION":[2,"bCz"],"SUBSTACK":[2,"bCA"]},"fields":{},"shadow":false,"topLevel":false},"bCz":{"opcode":"operator_equals","next":null,"parent":"X=","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16401"]]},"fields":{},"shadow":false,"topLevel":false},"bCA":{"opcode":"control_stop","next":null,"parent":"X=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X?":{"opcode":"control_if","next":"X@","parent":"X=","inputs":{"CONDITION":[2,"bCB"],"SUBSTACK":[2,"MP"]},"fields":{},"shadow":false,"topLevel":false},"bCB":{"opcode":"operator_equals","next":null,"parent":"X?","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16402"]]},"fields":{},"shadow":false,"topLevel":false},"MP":{"opcode":"data_setvariableto","next":"aHe","parent":"X?","inputs":{"VALUE":[3,"X[",[10,""]]},"fields":{"VARIABLE":["#dmc_address","gB~16fnQ{z]0?Ae}tWSd"]},"shadow":false,"topLevel":false},"X[":{"opcode":"operator_add","next":null,"parent":"MP","inputs":{"NUM1":[1,[4,"49152"]],"NUM2":[3,"MQ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"MQ":{"opcode":"operator_multiply","next":null,"parent":"X[","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aHe":{"opcode":"control_stop","next":null,"parent":"MP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X@":{"opcode":"control_if","next":"X]","parent":"X?","inputs":{"CONDITION":[2,"bCC"],"SUBSTACK":[2,"ll"]},"fields":{},"shadow":false,"topLevel":false},"bCC":{"opcode":"operator_equals","next":null,"parent":"X@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16403"]]},"fields":{},"shadow":false,"topLevel":false},"ll":{"opcode":"data_setvariableto","next":"aHf","parent":"X@","inputs":{"VALUE":[3,"X^",[10,""]]},"fields":{"VARIABLE":["#dmc_length","@|x/pnw9Y=K9[1rQ^9?."]},"shadow":false,"topLevel":false},"X^":{"opcode":"operator_add","next":null,"parent":"ll","inputs":{"NUM1":[3,"MR",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MR":{"opcode":"operator_multiply","next":null,"parent":"X^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aHf":{"opcode":"control_stop","next":null,"parent":"ll","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X]":{"opcode":"control_if","next":"MS","parent":"X@","inputs":{"CONDITION":[2,"bCD"],"SUBSTACK":[2,"MT"]},"fields":{},"shadow":false,"topLevel":false},"bCD":{"opcode":"operator_equals","next":null,"parent":"X]","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16405"]]},"fields":{},"shadow":false,"topLevel":false},"MT":{"opcode":"data_setvariableto","next":"MU","parent":"X]","inputs":{"VALUE":[3,"bCE",[10,""]]},"fields":{"VARIABLE":["#sq0_enabled","e..v2zd5D#2(~C2#;wE5"]},"shadow":false,"topLevel":false},"bCE":{"opcode":"operator_letter_of","next":null,"parent":"MT","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MU":{"opcode":"data_setvariableto","next":"MV","parent":"MT","inputs":{"VALUE":[3,"bCF",[10,""]]},"fields":{"VARIABLE":["#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"]},"shadow":false,"topLevel":false},"bCF":{"opcode":"operator_letter_of","next":null,"parent":"MU","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MV":{"opcode":"data_setvariableto","next":"MW","parent":"MU","inputs":{"VALUE":[3,"bCG",[10,""]]},"fields":{"VARIABLE":["#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"]},"shadow":false,"topLevel":false},"bCG":{"opcode":"operator_letter_of","next":null,"parent":"MV","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MW":{"opcode":"data_setvariableto","next":"MX","parent":"MV","inputs":{"VALUE":[3,"bCH",[10,""]]},"fields":{"VARIABLE":["#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"]},"shadow":false,"topLevel":false},"bCH":{"opcode":"operator_letter_of","next":null,"parent":"MW","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"MX":{"opcode":"data_setvariableto","next":"X_","parent":"MW","inputs":{"VALUE":[3,"bCI",[10,""]]},"fields":{"VARIABLE":["#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"]},"shadow":false,"topLevel":false},"bCI":{"opcode":"operator_letter_of","next":null,"parent":"MX","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"X_":{"opcode":"control_if","next":"X`","parent":"MX","inputs":{"CONDITION":[2,"bCJ"],"SUBSTACK":[2,"bCK"]},"fields":{},"shadow":false,"topLevel":false},"bCJ":{"opcode":"operator_equals","next":null,"parent":"X_","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bCK":{"opcode":"data_setvariableto","next":null,"parent":"X_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"]},"shadow":false,"topLevel":false},"X`":{"opcode":"control_if","next":"X{","parent":"X_","inputs":{"CONDITION":[2,"bCL"],"SUBSTACK":[2,"bCM"]},"fields":{},"shadow":false,"topLevel":false},"bCL":{"opcode":"operator_equals","next":null,"parent":"X`","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bCM":{"opcode":"data_setvariableto","next":null,"parent":"X`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"X{":{"opcode":"control_if","next":"j!","parent":"X`","inputs":{"CONDITION":[2,"bCN"],"SUBSTACK":[2,"bCO"]},"fields":{},"shadow":false,"topLevel":false},"bCN":{"opcode":"operator_equals","next":null,"parent":"X{","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bCO":{"opcode":"data_setvariableto","next":null,"parent":"X{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"j!":{"opcode":"control_if","next":"b(","parent":"X{","inputs":{"CONDITION":[2,"bCP"],"SUBSTACK":[2,"bCQ"]},"fields":{},"shadow":false,"topLevel":false},"bCP":{"opcode":"operator_equals","next":null,"parent":"j!","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bCQ":{"opcode":"data_setvariableto","next":null,"parent":"j!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"bsN":{"opcode":"operator_equals","next":null,"parent":"b(","inputs":{"OPERAND1":[3,[12,"#dmc_enabled","|9+L8O@JFIZ.bUzBKQDs"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bsO":{"opcode":"event_broadcast","next":null,"parent":"b(","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_start","?5cnTm~BIOy)iiINw1|j"]]},"fields":{},"shadow":false,"topLevel":false},"bsP":{"opcode":"event_broadcast","next":null,"parent":"b(","inputs":{"BROADCAST_INPUT":[1,[11,"dmc_stop","rKDIUs;/F{C6pMu5`JB^"]]},"fields":{},"shadow":false,"topLevel":false},"bsM":{"opcode":"control_stop","next":null,"parent":"b(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"MS":{"opcode":"control_if","next":null,"parent":"X]","inputs":{"CONDITION":[2,"bCR"],"SUBSTACK":[2,"aHg"]},"fields":{},"shadow":false,"topLevel":false},"bCR":{"opcode":"operator_equals","next":null,"parent":"MS","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"16407"]]},"fields":{},"shadow":false,"topLevel":false},"aHg":{"opcode":"data_setvariableto","next":"j#","parent":"MS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"j#":{"opcode":"control_if","next":"b)","parent":"aHg","inputs":{"CONDITION":[2,"MY"],"SUBSTACK":[2,"aHh"]},"fields":{},"shadow":false,"topLevel":false},"MY":{"opcode":"operator_and","next":null,"parent":"j#","inputs":{"OPERAND1":[2,"aHi"],"OPERAND2":[2,"bCS"]},"fields":{},"shadow":false,"topLevel":false},"aHi":{"opcode":"operator_equals","next":null,"parent":"MY","inputs":{"OPERAND1":[3,"bCT",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bCT":{"opcode":"operator_letter_of","next":null,"parent":"aHi","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bCS":{"opcode":"operator_equals","next":null,"parent":"MY","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aHh":{"opcode":"data_changevariableby","next":"bCU","parent":"j#","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bCU":{"opcode":"data_setvariableto","next":null,"parent":"aHh","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"bsQ":{"opcode":"operator_gt","next":null,"parent":"b)","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aw[":{"opcode":"data_setvariableto","next":"aHj","parent":"b)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"aHj":{"opcode":"procedures_call","next":"bCV","parent":"aw[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"bCV":{"opcode":"procedures_call","next":null,"parent":"aHj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"bsR":{"opcode":"data_setvariableto","next":null,"parent":"b)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_mode","^Wa,tZpWIEXY_cWgBvXd"]},"shadow":false,"topLevel":false},"b*":{"opcode":"control_if_else","next":"bCW","parent":"b)","inputs":{"CONDITION":[2,"aHk"],"SUBSTACK":[2,"bCX"],"SUBSTACK2":[2,"bCY"]},"fields":{},"shadow":false,"topLevel":false},"aHk":{"opcode":"operator_gt","next":null,"parent":"b*","inputs":{"OPERAND1":[3,"bCZ",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bCZ":{"opcode":"operator_mod","next":null,"parent":"aHk","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"bCX":{"opcode":"data_setvariableto","next":null,"parent":"b*","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"bCY":{"opcode":"data_setvariableto","next":null,"parent":"b*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"]},"shadow":false,"topLevel":false},"bCW":{"opcode":"control_stop","next":null,"parent":"b*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aHl":{"opcode":"procedures_definition","next":"aHm","parent":null,"inputs":{"custom_block":[1,"bC!"]},"fields":{},"shadow":false,"topLevel":true,"x":17148,"y":1232},"bC!":{"opcode":"procedures_prototype","next":null,"parent":"aHl","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHm":{"opcode":"data_changevariableby","next":"X|","parent":"aHl","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"X|":{"opcode":"control_if","next":"X}","parent":"aHm","inputs":{"CONDITION":[2,"bC#"],"SUBSTACK":[2,"aHn"]},"fields":{},"shadow":false,"topLevel":false},"bC#":{"opcode":"operator_equals","next":null,"parent":"X|","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aHn":{"opcode":"procedures_call","next":"bC%","parent":"X|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"bC%":{"opcode":"control_stop","next":null,"parent":"aHn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X}":{"opcode":"control_if","next":"X~","parent":"X|","inputs":{"CONDITION":[2,"bC("],"SUBSTACK":[2,"aHo"]},"fields":{},"shadow":false,"topLevel":false},"bC(":{"opcode":"operator_equals","next":null,"parent":"X}","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aHo":{"opcode":"procedures_call","next":"aHp","parent":"X}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"aHp":{"opcode":"procedures_call","next":"bC)","parent":"aHo","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"bC)":{"opcode":"control_stop","next":null,"parent":"aHp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X~":{"opcode":"control_if","next":"Ya","parent":"X}","inputs":{"CONDITION":[2,"bC*"],"SUBSTACK":[2,"aHq"]},"fields":{},"shadow":false,"topLevel":false},"bC*":{"opcode":"operator_equals","next":null,"parent":"X~","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aHq":{"opcode":"procedures_call","next":"bC+","parent":"X~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"bC+":{"opcode":"control_stop","next":null,"parent":"aHq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ya":{"opcode":"control_if","next":"MZ","parent":"X~","inputs":{"CONDITION":[2,"bC,"],"SUBSTACK":[2,"Yb"]},"fields":{},"shadow":false,"topLevel":false},"bC,":{"opcode":"operator_equals","next":null,"parent":"Ya","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Yb":{"opcode":"control_if","next":"bC-","parent":"Ya","inputs":{"CONDITION":[2,"bC."],"SUBSTACK":[2,"aHr"]},"fields":{},"shadow":false,"topLevel":false},"bC.":{"opcode":"operator_equals","next":null,"parent":"Yb","inputs":{"OPERAND1":[3,[12,"#frame_mode","^Wa,tZpWIEXY_cWgBvXd"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aHr":{"opcode":"procedures_call","next":"aHs","parent":"Yb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"aHs":{"opcode":"procedures_call","next":"Yc","parent":"aHr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"Yc":{"opcode":"control_if","next":"bC/","parent":"aHs","inputs":{"CONDITION":[2,"M!"],"SUBSTACK":[2,"aHt"]},"fields":{},"shadow":false,"topLevel":false},"M!":{"opcode":"operator_and","next":null,"parent":"Yc","inputs":{"OPERAND1":[2,"bC:"],"OPERAND2":[2,"bC;"]},"fields":{},"shadow":false,"topLevel":false},"bC:":{"opcode":"operator_equals","next":null,"parent":"M!","inputs":{"OPERAND1":[3,[12,"#irq_inhibit",")Pem#eJ?1b%tcUR/YLZ8"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bC;":{"opcode":"operator_equals","next":null,"parent":"M!","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aHt":{"opcode":"data_changevariableby","next":"bC=","parent":"Yc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bC=":{"opcode":"data_setvariableto","next":null,"parent":"aHt","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"bC/":{"opcode":"data_setvariableto","next":null,"parent":"Yc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"bC-":{"opcode":"control_stop","next":null,"parent":"Yb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"MZ":{"opcode":"control_if","next":null,"parent":"Ya","inputs":{"CONDITION":[2,"bC?"],"SUBSTACK":[2,"aHu"]},"fields":{},"shadow":false,"topLevel":false},"bC?":{"opcode":"operator_equals","next":null,"parent":"MZ","inputs":{"OPERAND1":[3,[12,"#sequence","fyS(EXct?2w*M.Nwqgr~"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aHu":{"opcode":"procedures_call","next":"aHv","parent":"MZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#half frame","argumentids":"[]","warp":"true"}},"aHv":{"opcode":"procedures_call","next":"aHw","parent":"aHu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#quarter frame","argumentids":"[]","warp":"true"}},"aHw":{"opcode":"data_setvariableto","next":"bC@","parent":"aHv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sequence","fyS(EXct?2w*M.Nwqgr~"]},"shadow":false,"topLevel":false},"bC@":{"opcode":"control_stop","next":null,"parent":"aHw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aHx":{"opcode":"procedures_definition","next":"aHy","parent":null,"inputs":{"custom_block":[1,"bC["]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":64},"bC[":{"opcode":"procedures_prototype","next":null,"parent":"aHx","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHy":{"opcode":"data_replaceitemoflist","next":"aHz","parent":"aHx","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHz":{"opcode":"data_replaceitemoflist","next":"aHA","parent":"aHy","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHA":{"opcode":"data_replaceitemoflist","next":"bC]","parent":"aHz","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bC]":{"opcode":"data_replaceitemoflist","next":null,"parent":"aHA","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHB":{"opcode":"procedures_definition","next":"aHC","parent":null,"inputs":{"custom_block":[1,"bC^"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":396},"bC^":{"opcode":"procedures_prototype","next":null,"parent":"aHB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHC":{"opcode":"data_replaceitemoflist","next":"aHD","parent":"aHB","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHD":{"opcode":"data_replaceitemoflist","next":"aHE","parent":"aHC","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHE":{"opcode":"data_replaceitemoflist","next":"bC_","parent":"aHD","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bC_":{"opcode":"data_replaceitemoflist","next":null,"parent":"aHE","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHF":{"opcode":"procedures_definition","next":"aHG","parent":null,"inputs":{"custom_block":[1,"bC`"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":728},"bC`":{"opcode":"procedures_prototype","next":null,"parent":"aHF","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHG":{"opcode":"data_replaceitemoflist","next":"aHH","parent":"aHF","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHH":{"opcode":"data_replaceitemoflist","next":"aHI","parent":"aHG","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHI":{"opcode":"data_replaceitemoflist","next":"bC{","parent":"aHH","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bC{":{"opcode":"data_replaceitemoflist","next":null,"parent":"aHI","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHJ":{"opcode":"procedures_definition","next":"aHK","parent":null,"inputs":{"custom_block":[1,"bC|"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1060},"bC|":{"opcode":"procedures_prototype","next":null,"parent":"aHJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aHK":{"opcode":"data_replaceitemoflist","next":"aHL","parent":"aHJ","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHL":{"opcode":"data_replaceitemoflist","next":"aHM","parent":"aHK","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHM":{"opcode":"data_replaceitemoflist","next":"bC}","parent":"aHL","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"bC}":{"opcode":"data_replaceitemoflist","next":null,"parent":"aHM","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"aHN":{"opcode":"procedures_definition","next":"M#","parent":null,"inputs":{"custom_block":[1,"bC~"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":64},"bC~":{"opcode":"procedures_prototype","next":null,"parent":"aHN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$unrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"M#":{"opcode":"data_setvariableto","next":"aHO","parent":"aHN","inputs":{"VALUE":[3,"bDa",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bDa":{"opcode":"operator_mod","next":null,"parent":"M#","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aHO":{"opcode":"procedures_call","next":null,"parent":"M#","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"bDb",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"bDb":{"opcode":"operator_subtract","next":null,"parent":"aHO","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aHP":{"opcode":"procedures_definition","next":"M%","parent":null,"inputs":{"custom_block":[1,"bDc"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":316},"bDc":{"opcode":"procedures_prototype","next":null,"parent":"aHP","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$cnrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"M%":{"opcode":"data_setvariableto","next":"bDd","parent":"aHP","inputs":{"VALUE":[3,"bDe",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"bDe":{"opcode":"operator_mod","next":null,"parent":"M%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDd":{"opcode":"procedures_call","next":null,"parent":"M%","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","warp":"true"}},"aHQ":{"opcode":"procedures_definition","next":"M(","parent":null,"inputs":{"custom_block":[1,"bDf"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":560},"bDf":{"opcode":"procedures_prototype","next":null,"parent":"aHQ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$anrom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"M(":{"opcode":"data_setvariableto","next":"lm","parent":"aHQ","inputs":{"VALUE":[3,"bDg",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bDg":{"opcode":"operator_mod","next":null,"parent":"M(","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"lm":{"opcode":"control_if_else","next":"bDh","parent":"M(","inputs":{"CONDITION":[2,"aHR"],"SUBSTACK":[2,"bDi"],"SUBSTACK2":[2,"bDj"]},"fields":{},"shadow":false,"topLevel":false},"aHR":{"opcode":"operator_equals","next":null,"parent":"lm","inputs":{"OPERAND1":[3,"aHS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aHS":{"opcode":"operator_mod","next":null,"parent":"aHR","inputs":{"NUM1":[3,"aHT",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aHT":{"opcode":"operator_mathop","next":null,"parent":"aHS","inputs":{"NUM":[3,"bDk",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bDk":{"opcode":"operator_divide","next":null,"parent":"aHT","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bDi":{"opcode":"procedures_call","next":null,"parent":"lm","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"bDj":{"opcode":"procedures_call","next":null,"parent":"lm","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"bDh":{"opcode":"procedures_call","next":null,"parent":"lm","inputs":{"La?#zJqoritu?9M,S2Y,":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","warp":"true"}},"aHU":{"opcode":"procedures_definition","next":"Yd","parent":null,"inputs":{"custom_block":[1,"bDl"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":1044},"bDl":{"opcode":"procedures_prototype","next":null,"parent":"aHU","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc1","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Yd":{"opcode":"control_if","next":"#","parent":"aHU","inputs":{"CONDITION":[2,"bDm"],"SUBSTACK":[2,"aHV"]},"fields":{},"shadow":false,"topLevel":false},"bDm":{"opcode":"operator_gt","next":null,"parent":"Yd","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aHV":{"opcode":"data_setvariableto","next":"aHW","parent":"Yd","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"aHW":{"opcode":"data_setvariableto","next":"M)","parent":"aHV","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"#":{"opcode":"control_if_else","next":"Ye","parent":"Yd","inputs":{"CONDITION":[2,"aHX"],"SUBSTACK":[2,"M*"],"SUBSTACK2":[2,"M+"]},"fields":{},"shadow":false,"topLevel":false},"aHX":{"opcode":"operator_lt","next":null,"parent":"#","inputs":{"OPERAND1":[3,"bDn",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDn":{"opcode":"operator_length","next":null,"parent":"aHX","inputs":{"STRING":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"M*":{"opcode":"data_setvariableto","next":"bDo","parent":"#","inputs":{"VALUE":[3,"aHY",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"aHY":{"opcode":"operator_join","next":null,"parent":"M*","inputs":{"STRING1":[3,"bDp",[10,""]],"STRING2":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bDp":{"opcode":"operator_mod","next":null,"parent":"aHY","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bDo":{"opcode":"control_stop","next":null,"parent":"M*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"M+":{"opcode":"data_setvariableto","next":"aHZ","parent":"#","inputs":{"VALUE":[3,"aH!",[10,""]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"aH!":{"opcode":"operator_add","next":null,"parent":"M+","inputs":{"NUM1":[3,"aH#",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH#":{"opcode":"operator_join","next":null,"parent":"aH!","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"aH%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aH%":{"opcode":"operator_join","next":null,"parent":"aH#","inputs":{"STRING1":[3,"bDq",[10,""]],"STRING2":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bDq":{"opcode":"operator_mod","next":null,"parent":"aH%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aHZ":{"opcode":"data_setvariableto","next":"Yf","parent":"M+","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"Yf":{"opcode":"control_if","next":"Yg","parent":"aHZ","inputs":{"CONDITION":[2,"M,"],"SUBSTACK":[2,"Yh"]},"fields":{},"shadow":false,"topLevel":false},"M,":{"opcode":"operator_and","next":null,"parent":"Yf","inputs":{"OPERAND1":[2,"bDr"],"OPERAND2":[2,"bDs"]},"fields":{},"shadow":false,"topLevel":false},"bDr":{"opcode":"operator_gt","next":null,"parent":"M,","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bDs":{"opcode":"operator_lt","next":null,"parent":"M,","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"Yh":{"opcode":"control_if","next":"Yi","parent":"Yf","inputs":{"CONDITION":[2,"aH("],"SUBSTACK":[2,"bDt"]},"fields":{},"shadow":false,"topLevel":false},"aH(":{"opcode":"operator_equals","next":null,"parent":"Yh","inputs":{"OPERAND1":[3,"bDu",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bDu":{"opcode":"operator_mod","next":null,"parent":"aH(","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDt":{"opcode":"procedures_call","next":null,"parent":"Yh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"Yi":{"opcode":"control_if","next":"Yj","parent":"Yh","inputs":{"CONDITION":[2,"aH)"],"SUBSTACK":[2,"bDv"]},"fields":{},"shadow":false,"topLevel":false},"aH)":{"opcode":"operator_equals","next":null,"parent":"Yi","inputs":{"OPERAND1":[3,"bDw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bDw":{"opcode":"operator_mod","next":null,"parent":"aH)","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDv":{"opcode":"procedures_call","next":null,"parent":"Yi","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"Yj":{"opcode":"control_if","next":"Yk","parent":"Yi","inputs":{"CONDITION":[2,"aH*"],"SUBSTACK":[2,"bDx"]},"fields":{},"shadow":false,"topLevel":false},"aH*":{"opcode":"operator_equals","next":null,"parent":"Yj","inputs":{"OPERAND1":[3,"bDy",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bDy":{"opcode":"operator_mod","next":null,"parent":"aH*","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDx":{"opcode":"procedures_call","next":null,"parent":"Yj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"Yk":{"opcode":"control_if","next":"Ea","parent":"Yj","inputs":{"CONDITION":[2,"aH+"],"SUBSTACK":[2,"bDz"]},"fields":{},"shadow":false,"topLevel":false},"aH+":{"opcode":"operator_equals","next":null,"parent":"Yk","inputs":{"OPERAND1":[3,"bDA",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bDA":{"opcode":"operator_mod","next":null,"parent":"aH+","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bDz":{"opcode":"procedures_call","next":null,"parent":"Yk","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"Ea":{"opcode":"data_setvariableto","next":"aH,","parent":"Yk","inputs":{"VALUE":[3,"aH-",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aH-":{"opcode":"operator_mod","next":null,"parent":"Ea","inputs":{"NUM1":[3,"aH.",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aH.":{"opcode":"operator_mathop","next":null,"parent":"aH-","inputs":{"NUM":[3,"bDB",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bDB":{"opcode":"operator_divide","next":null,"parent":"aH.","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aH,":{"opcode":"data_setvariableto","next":null,"parent":"Ea","inputs":{"VALUE":[3,"aH/",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"aH/":{"opcode":"operator_add","next":null,"parent":"aH,","inputs":{"NUM1":[3,"bDC",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bDC":{"opcode":"operator_gt","next":null,"parent":"aH/","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Yg":{"opcode":"control_if","next":"Yl","parent":"Yf","inputs":{"CONDITION":[2,"Eb"],"SUBSTACK":[2,"bDD"]},"fields":{},"shadow":false,"topLevel":false},"Eb":{"opcode":"operator_and","next":null,"parent":"Yg","inputs":{"OPERAND1":[2,"bDE"],"OPERAND2":[2,"bDF"]},"fields":{},"shadow":false,"topLevel":false},"bDE":{"opcode":"operator_gt","next":null,"parent":"Eb","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"bDF":{"opcode":"operator_lt","next":null,"parent":"Eb","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"bDD":{"opcode":"data_setvariableto","next":null,"parent":"Yg","inputs":{"VALUE":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"Yl":{"opcode":"control_if","next":"dk","parent":"Yg","inputs":{"CONDITION":[2,"dl"],"SUBSTACK":[2,"bDG"]},"fields":{},"shadow":false,"topLevel":false},"dl":{"opcode":"operator_and","next":null,"parent":"Yl","inputs":{"OPERAND1":[2,"bDH"],"OPERAND2":[2,"bDI"]},"fields":{},"shadow":false,"topLevel":false},"bDH":{"opcode":"operator_gt","next":null,"parent":"dl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bDI":{"opcode":"operator_lt","next":null,"parent":"dl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"bDG":{"opcode":"data_setvariableto","next":null,"parent":"Yl","inputs":{"VALUE":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"dk":{"opcode":"control_if","next":null,"parent":"Yl","inputs":{"CONDITION":[2,"dm"],"SUBSTACK":[2,"dn"]},"fields":{},"shadow":false,"topLevel":false},"dm":{"opcode":"operator_and","next":null,"parent":"dk","inputs":{"OPERAND1":[2,"bDJ"],"OPERAND2":[2,"bDK"]},"fields":{},"shadow":false,"topLevel":false},"bDJ":{"opcode":"operator_gt","next":null,"parent":"dm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"bDK":{"opcode":"operator_lt","next":null,"parent":"dm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"dn":{"opcode":"data_setvariableto","next":"aH:","parent":"dk","inputs":{"VALUE":[3,"aH;",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"aH;":{"opcode":"operator_add","next":null,"parent":"dn","inputs":{"NUM1":[3,"bDL",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bDL":{"opcode":"operator_lt","next":null,"parent":"aH;","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aH:":{"opcode":"data_setvariableto","next":null,"parent":"dn","inputs":{"VALUE":[3,"bDM",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bDM":{"opcode":"operator_mod","next":null,"parent":"aH:","inputs":{"NUM1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ye":{"opcode":"control_if","next":"Ym","parent":"#","inputs":{"CONDITION":[2,"bDN"],"SUBSTACK":[2,"aH="]},"fields":{},"shadow":false,"topLevel":false},"bDN":{"opcode":"operator_lt","next":null,"parent":"Ye","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aH=":{"opcode":"procedures_call","next":null,"parent":"Ye","inputs":{"La?#zJqoritu?9M,S2Y,":[3,"aH?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","warp":"true"}},"aH?":{"opcode":"operator_subtract","next":null,"parent":"aH=","inputs":{"NUM1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[4,0]],"NUM2":[3,"bDO",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bDO":{"opcode":"operator_mod","next":null,"parent":"aH?","inputs":{"NUM1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ym":{"opcode":"control_if","next":"Yn","parent":"Ye","inputs":{"CONDITION":[2,"bDP"],"SUBSTACK":[2,"bDQ"]},"fields":{},"shadow":false,"topLevel":false},"bDP":{"opcode":"operator_equals","next":null,"parent":"Ym","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bDQ":{"opcode":"procedures_call","next":null,"parent":"Ym","inputs":{"xw^iKl}Q9Utn5G${B3DL":[1,[10,"0"]],"-ka?M!q5i3ep8!$FNtaR":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"Yn":{"opcode":"control_if","next":"Yo","parent":"Ym","inputs":{"CONDITION":[2,"bDR"],"SUBSTACK":[2,"aH@"]},"fields":{},"shadow":false,"topLevel":false},"bDR":{"opcode":"operator_equals","next":null,"parent":"Yn","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aH@":{"opcode":"procedures_call","next":null,"parent":"Yn","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"bDS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"bDS":{"opcode":"operator_subtract","next":null,"parent":"aH@","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Yo":{"opcode":"control_if_else","next":null,"parent":"Yn","inputs":{"CONDITION":[2,"bDT"],"SUBSTACK":[2,"bDU"],"SUBSTACK2":[2,"aH["]},"fields":{},"shadow":false,"topLevel":false},"bDT":{"opcode":"operator_equals","next":null,"parent":"Yo","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bDU":{"opcode":"procedures_call","next":null,"parent":"Yo","inputs":{"GVNB1CwSzA9:lV]`a$I$":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"WGS!dwukgOkU#8[iyU[X":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","warp":"true"}},"aH[":{"opcode":"procedures_call","next":null,"parent":"Yo","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[3,"aH]",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","warp":"true"}},"aH]":{"opcode":"operator_subtract","next":null,"parent":"aH[","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[3,"bDV",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bDV":{"opcode":"operator_mod","next":null,"parent":"aH]","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aH^":{"opcode":"procedures_definition","next":"Yp","parent":null,"inputs":{"custom_block":[1,"bDW"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":3824},"bDW":{"opcode":"procedures_prototype","next":null,"parent":"aH^","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc3","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Yp":{"opcode":"control_if","next":"Yq","parent":"aH^","inputs":{"CONDITION":[2,"do"],"SUBSTACK":[2,"Yr"]},"fields":{},"shadow":false,"topLevel":false},"do":{"opcode":"operator_and","next":null,"parent":"Yp","inputs":{"OPERAND1":[2,"bDX"],"OPERAND2":[2,"bDY"]},"fields":{},"shadow":false,"topLevel":false},"bDX":{"opcode":"operator_gt","next":null,"parent":"do","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bDY":{"opcode":"operator_lt","next":null,"parent":"do","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"Yr":{"opcode":"control_if","next":"dp","parent":"Yp","inputs":{"CONDITION":[2,"aH_"],"SUBSTACK":[2,"dq"]},"fields":{},"shadow":false,"topLevel":false},"aH_":{"opcode":"operator_equals","next":null,"parent":"Yr","inputs":{"OPERAND1":[3,"bDZ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bDZ":{"opcode":"operator_mod","next":null,"parent":"aH_","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"dq":{"opcode":"data_setvariableto","next":"dr","parent":"Yr","inputs":{"VALUE":[3,"bD!",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"bD!":{"opcode":"operator_mod","next":null,"parent":"dq","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"dr":{"opcode":"data_setvariableto","next":"aH`","parent":"dq","inputs":{"VALUE":[3,"aH{",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aH{":{"opcode":"operator_add","next":null,"parent":"dr","inputs":{"NUM1":[3,"aH|",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aH|":{"opcode":"operator_gt","next":null,"parent":"aH{","inputs":{"OPERAND1":[3,"bD#",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bD#":{"opcode":"operator_mod","next":null,"parent":"aH|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aH`":{"opcode":"data_setvariableto","next":null,"parent":"dr","inputs":{"VALUE":[3,"aH}",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"aH}":{"opcode":"operator_add","next":null,"parent":"aH`","inputs":{"NUM1":[3,"bD%",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bD%":{"opcode":"operator_gt","next":null,"parent":"aH}","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"dp":{"opcode":"control_if","next":null,"parent":"Yr","inputs":{"CONDITION":[2,"aH~"],"SUBSTACK":[2,"Ys"]},"fields":{},"shadow":false,"topLevel":false},"aH~":{"opcode":"operator_equals","next":null,"parent":"dp","inputs":{"OPERAND1":[3,"bD(",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bD(":{"opcode":"operator_mod","next":null,"parent":"aH~","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Ys":{"opcode":"control_if","next":"Yt","parent":"dp","inputs":{"CONDITION":[2,"bD)"],"SUBSTACK":[2,"bD*"]},"fields":{},"shadow":false,"topLevel":false},"bD)":{"opcode":"operator_equals","next":null,"parent":"Ys","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bD*":{"opcode":"data_setvariableto","next":null,"parent":"Ys","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"Yt":{"opcode":"control_if","next":"Yu","parent":"Ys","inputs":{"CONDITION":[2,"bD+"],"SUBSTACK":[2,"bD,"]},"fields":{},"shadow":false,"topLevel":false},"bD+":{"opcode":"operator_equals","next":null,"parent":"Yt","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bD,":{"opcode":"data_setvariableto","next":null,"parent":"Yt","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"Yu":{"opcode":"control_if","next":"Yv","parent":"Yt","inputs":{"CONDITION":[2,"bD-"],"SUBSTACK":[2,"bD."]},"fields":{},"shadow":false,"topLevel":false},"bD-":{"opcode":"operator_equals","next":null,"parent":"Yu","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bD.":{"opcode":"data_setvariableto","next":null,"parent":"Yu","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"Yv":{"opcode":"control_if","next":"Yw","parent":"Yu","inputs":{"CONDITION":[2,"bD/"],"SUBSTACK":[2,"bD:"]},"fields":{},"shadow":false,"topLevel":false},"bD/":{"opcode":"operator_equals","next":null,"parent":"Yv","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bD:":{"opcode":"data_setvariableto","next":null,"parent":"Yv","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"Yw":{"opcode":"control_if","next":"Yx","parent":"Yv","inputs":{"CONDITION":[2,"bD;"],"SUBSTACK":[2,"bD="]},"fields":{},"shadow":false,"topLevel":false},"bD;":{"opcode":"operator_equals","next":null,"parent":"Yw","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bD=":{"opcode":"data_setvariableto","next":null,"parent":"Yw","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"Yx":{"opcode":"control_if","next":"Yy","parent":"Yw","inputs":{"CONDITION":[2,"bD?"],"SUBSTACK":[2,"bD@"]},"fields":{},"shadow":false,"topLevel":false},"bD?":{"opcode":"operator_equals","next":null,"parent":"Yx","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bD@":{"opcode":"data_setvariableto","next":null,"parent":"Yx","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"Yy":{"opcode":"control_if","next":"ds","parent":"Yx","inputs":{"CONDITION":[2,"bD["],"SUBSTACK":[2,"aIa"]},"fields":{},"shadow":false,"topLevel":false},"bD[":{"opcode":"operator_equals","next":null,"parent":"Yy","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aIa":{"opcode":"data_setvariableto","next":null,"parent":"Yy","inputs":{"VALUE":[3,"bD]",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bD]":{"opcode":"operator_mod","next":null,"parent":"aIa","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"ds":{"opcode":"control_if","next":null,"parent":"Yy","inputs":{"CONDITION":[2,"bD^"],"SUBSTACK":[2,"aIb"]},"fields":{},"shadow":false,"topLevel":false},"bD^":{"opcode":"operator_equals","next":null,"parent":"ds","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"aIb":{"opcode":"data_setvariableto","next":null,"parent":"ds","inputs":{"VALUE":[3,"bD_",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"bD_":{"opcode":"operator_mod","next":null,"parent":"aIb","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Yq":{"opcode":"control_if","next":"Yz","parent":"Yp","inputs":{"CONDITION":[2,"dt"],"SUBSTACK":[2,"YA"]},"fields":{},"shadow":false,"topLevel":false},"dt":{"opcode":"operator_and","next":null,"parent":"Yq","inputs":{"OPERAND1":[2,"bD`"],"OPERAND2":[2,"bD{"]},"fields":{},"shadow":false,"topLevel":false},"bD`":{"opcode":"operator_gt","next":null,"parent":"dt","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"bD{":{"opcode":"operator_lt","next":null,"parent":"dt","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"YA":{"opcode":"control_if","next":"du","parent":"Yq","inputs":{"CONDITION":[2,"aIc"],"SUBSTACK":[2,"YB"]},"fields":{},"shadow":false,"topLevel":false},"aIc":{"opcode":"operator_equals","next":null,"parent":"YA","inputs":{"OPERAND1":[3,"bD|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bD|":{"opcode":"operator_mod","next":null,"parent":"aIc","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"YB":{"opcode":"control_if_else","next":null,"parent":"YA","inputs":{"CONDITION":[2,"aId"],"SUBSTACK":[2,"bD}"],"SUBSTACK2":[2,"bD~"]},"fields":{},"shadow":false,"topLevel":false},"aId":{"opcode":"operator_equals","next":null,"parent":"YB","inputs":{"OPERAND1":[3,"bEa",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bEa":{"opcode":"operator_mod","next":null,"parent":"aId","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bD}":{"opcode":"procedures_call","next":null,"parent":"YB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"bD~":{"opcode":"procedures_call","next":null,"parent":"YB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"du":{"opcode":"control_if","next":null,"parent":"YA","inputs":{"CONDITION":[2,"aIe"],"SUBSTACK":[2,"aIf"]},"fields":{},"shadow":false,"topLevel":false},"aIe":{"opcode":"operator_equals","next":null,"parent":"du","inputs":{"OPERAND1":[3,"bEb",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bEb":{"opcode":"operator_mod","next":null,"parent":"aIe","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIf":{"opcode":"data_setvariableto","next":null,"parent":"du","inputs":{"VALUE":[3,"aIg",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"aIg":{"opcode":"operator_add","next":null,"parent":"aIf","inputs":{"NUM1":[3,"bEc",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bEc":{"opcode":"operator_gt","next":null,"parent":"aIg","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Yz":{"opcode":"control_if","next":"YC","parent":"Yq","inputs":{"CONDITION":[2,"M-"],"SUBSTACK":[2,"YD"]},"fields":{},"shadow":false,"topLevel":false},"M-":{"opcode":"operator_and","next":null,"parent":"Yz","inputs":{"OPERAND1":[2,"bEd"],"OPERAND2":[2,"bEe"]},"fields":{},"shadow":false,"topLevel":false},"bEd":{"opcode":"operator_gt","next":null,"parent":"M-","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bEe":{"opcode":"operator_lt","next":null,"parent":"M-","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"YD":{"opcode":"control_if","next":"dv","parent":"Yz","inputs":{"CONDITION":[2,"aIh"],"SUBSTACK":[2,"bEf"]},"fields":{},"shadow":false,"topLevel":false},"aIh":{"opcode":"operator_equals","next":null,"parent":"YD","inputs":{"OPERAND1":[3,"bEg",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bEg":{"opcode":"operator_mod","next":null,"parent":"aIh","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bEf":{"opcode":"data_setvariableto","next":null,"parent":"YD","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$irq_latch","MuVfO=YYlpa%T+H,NJnm"]},"shadow":false,"topLevel":false},"dv":{"opcode":"control_if","next":null,"parent":"YD","inputs":{"CONDITION":[2,"aIi"],"SUBSTACK":[2,"bEh"]},"fields":{},"shadow":false,"topLevel":false},"aIi":{"opcode":"operator_equals","next":null,"parent":"dv","inputs":{"OPERAND1":[3,"bEi",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bEi":{"opcode":"operator_mod","next":null,"parent":"aIi","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bEh":{"opcode":"data_setvariableto","next":null,"parent":"dv","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"YC":{"opcode":"control_if","next":"M.","parent":"Yz","inputs":{"CONDITION":[2,"dw"],"SUBSTACK":[2,"ln"]},"fields":{},"shadow":false,"topLevel":false},"dw":{"opcode":"operator_and","next":null,"parent":"YC","inputs":{"OPERAND1":[2,"bEj"],"OPERAND2":[2,"bEk"]},"fields":{},"shadow":false,"topLevel":false},"bEj":{"opcode":"operator_gt","next":null,"parent":"dw","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"bEk":{"opcode":"operator_lt","next":null,"parent":"dw","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"ln":{"opcode":"control_if","next":"dx","parent":"YC","inputs":{"CONDITION":[2,"aIj"],"SUBSTACK":[2,"aIk"]},"fields":{},"shadow":false,"topLevel":false},"aIj":{"opcode":"operator_equals","next":null,"parent":"ln","inputs":{"OPERAND1":[3,"bEl",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bEl":{"opcode":"operator_mod","next":null,"parent":"aIj","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIk":{"opcode":"data_setvariableto","next":"dy","parent":"ln","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"dy":{"opcode":"control_if","next":null,"parent":"aIk","inputs":{"CONDITION":[2,"bEm"],"SUBSTACK":[2,"aIl"]},"fields":{},"shadow":false,"topLevel":false},"bEm":{"opcode":"operator_equals","next":null,"parent":"dy","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIl":{"opcode":"data_changevariableby","next":"bEn","parent":"dy","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bEn":{"opcode":"data_setvariableto","next":null,"parent":"aIl","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"dx":{"opcode":"control_if","next":null,"parent":"ln","inputs":{"CONDITION":[2,"aIm"],"SUBSTACK":[2,"bEo"]},"fields":{},"shadow":false,"topLevel":false},"aIm":{"opcode":"operator_equals","next":null,"parent":"dx","inputs":{"OPERAND1":[3,"bEp",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bEp":{"opcode":"operator_mod","next":null,"parent":"aIm","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bEo":{"opcode":"data_setvariableto","next":null,"parent":"dx","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"M.":{"opcode":"control_if_else","next":"lo","parent":"YC","inputs":{"CONDITION":[2,"bEq"],"SUBSTACK":[2,"aIn"],"SUBSTACK2":[2,"aIo"]},"fields":{},"shadow":false,"topLevel":false},"bEq":{"opcode":"operator_equals","next":null,"parent":"M.","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aIn":{"opcode":"procedures_call","next":null,"parent":"M.","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,"bEr",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"bEr":{"opcode":"operator_subtract","next":null,"parent":"aIn","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIo":{"opcode":"procedures_call","next":null,"parent":"M.","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,"bEs",[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"bEs":{"opcode":"operator_subtract","next":null,"parent":"aIo","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"lo":{"opcode":"control_if_else","next":null,"parent":"M.","inputs":{"CONDITION":[2,"bEt"],"SUBSTACK":[2,"dz"],"SUBSTACK2":[2,"aIp"]},"fields":{},"shadow":false,"topLevel":false},"bEt":{"opcode":"operator_equals","next":null,"parent":"lo","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"dz":{"opcode":"procedures_call","next":"bEu","parent":"lo","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,"aIq",[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,"aIr",[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,"aIs",[10,""]],"M.aj{qup%g}995:UVZ[:":[3,"aIt",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"aIq":{"opcode":"operator_subtract","next":null,"parent":"dz","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"bEv",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEv":{"opcode":"operator_mod","next":null,"parent":"aIq","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIr":{"opcode":"operator_add","next":null,"parent":"dz","inputs":{"NUM1":[3,"aIu",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIu":{"opcode":"operator_subtract","next":null,"parent":"aIr","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"bEw",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEw":{"opcode":"operator_mod","next":null,"parent":"aIu","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIs":{"opcode":"operator_subtract","next":null,"parent":"dz","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"bEx",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEx":{"opcode":"operator_mod","next":null,"parent":"aIs","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIt":{"opcode":"operator_add","next":null,"parent":"dz","inputs":{"NUM1":[3,"aIv",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIv":{"opcode":"operator_subtract","next":null,"parent":"aIt","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"bEy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEy":{"opcode":"operator_mod","next":null,"parent":"aIv","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bEu":{"opcode":"procedures_call","next":null,"parent":"dz","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"aIp":{"opcode":"procedures_call","next":"M/","parent":"lo","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"M/":{"opcode":"procedures_call","next":null,"parent":"aIp","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,"aIw",[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,"aIx",[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,"aIy",[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,"aIz",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"aIw":{"opcode":"operator_subtract","next":null,"parent":"M/","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"bEz",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEz":{"opcode":"operator_mod","next":null,"parent":"aIw","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIx":{"opcode":"operator_add","next":null,"parent":"M/","inputs":{"NUM1":[3,"aIA",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIA":{"opcode":"operator_subtract","next":null,"parent":"aIx","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[3,"bEA",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEA":{"opcode":"operator_mod","next":null,"parent":"aIA","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIy":{"opcode":"operator_subtract","next":null,"parent":"M/","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"bEB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEB":{"opcode":"operator_mod","next":null,"parent":"aIy","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aIz":{"opcode":"operator_add","next":null,"parent":"M/","inputs":{"NUM1":[3,"aIB",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aIB":{"opcode":"operator_subtract","next":null,"parent":"aIz","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[3,"bEC",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEC":{"opcode":"operator_mod","next":null,"parent":"aIB","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bED":{"opcode":"event_whenbroadcastreceived","next":"aIC","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":19722,"y":64},"aIC":{"opcode":"data_deletealloflist","next":"dA","parent":"bED","inputs":{},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"dA":{"opcode":"data_addtolist","next":"dB","parent":"aIC","inputs":{"ITEM":[3,"aID",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aID":{"opcode":"operator_mod","next":null,"parent":"dA","inputs":{"NUM1":[3,"bEE",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEE":{"opcode":"operator_subtract","next":null,"parent":"aID","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"dB":{"opcode":"data_addtolist","next":"dC","parent":"dA","inputs":{"ITEM":[3,"aIE",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aIE":{"opcode":"operator_mod","next":null,"parent":"dB","inputs":{"NUM1":[3,"bEF",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEF":{"opcode":"operator_subtract","next":null,"parent":"aIE","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"24576"]]},"fields":{},"shadow":false,"topLevel":false},"dC":{"opcode":"data_addtolist","next":"dD","parent":"dB","inputs":{"ITEM":[3,"aIF",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aIF":{"opcode":"operator_mod","next":null,"parent":"dC","inputs":{"NUM1":[3,"bEG",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEG":{"opcode":"operator_subtract","next":null,"parent":"aIF","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"dD":{"opcode":"data_addtolist","next":"aIG","parent":"dC","inputs":{"ITEM":[3,"aIH",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aIH":{"opcode":"operator_mod","next":null,"parent":"dD","inputs":{"NUM1":[3,"bEH",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEH":{"opcode":"operator_subtract","next":null,"parent":"aIH","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aIG":{"opcode":"data_addtolist","next":"aII","parent":"dD","inputs":{"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aII":{"opcode":"data_deletealloflist","next":"dE","parent":"aIG","inputs":{},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"dE":{"opcode":"data_addtolist","next":"dF","parent":"aII","inputs":{"ITEM":[3,"aIJ",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIJ":{"opcode":"operator_mod","next":null,"parent":"dE","inputs":{"NUM1":[3,"bEI",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEI":{"opcode":"operator_subtract","next":null,"parent":"aIJ","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"dF":{"opcode":"data_addtolist","next":"dG","parent":"dE","inputs":{"ITEM":[3,"aIK",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIK":{"opcode":"operator_mod","next":null,"parent":"dF","inputs":{"NUM1":[3,"bEJ",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEJ":{"opcode":"operator_subtract","next":null,"parent":"aIK","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"dG":{"opcode":"data_addtolist","next":"dH","parent":"dF","inputs":{"ITEM":[3,"aIL",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIL":{"opcode":"operator_mod","next":null,"parent":"dG","inputs":{"NUM1":[3,"bEK",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEK":{"opcode":"operator_subtract","next":null,"parent":"aIL","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"dH":{"opcode":"data_addtolist","next":"dI","parent":"dG","inputs":{"ITEM":[3,"aIM",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIM":{"opcode":"operator_mod","next":null,"parent":"dH","inputs":{"NUM1":[3,"bEL",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEL":{"opcode":"operator_subtract","next":null,"parent":"aIM","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"dI":{"opcode":"data_addtolist","next":"dJ","parent":"dH","inputs":{"ITEM":[3,"aIN",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIN":{"opcode":"operator_mod","next":null,"parent":"dI","inputs":{"NUM1":[3,"bEM",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEM":{"opcode":"operator_subtract","next":null,"parent":"aIN","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"dJ":{"opcode":"data_addtolist","next":"dK","parent":"dI","inputs":{"ITEM":[3,"aIO",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIO":{"opcode":"operator_mod","next":null,"parent":"dJ","inputs":{"NUM1":[3,"bEN",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEN":{"opcode":"operator_subtract","next":null,"parent":"aIO","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"dK":{"opcode":"data_addtolist","next":"%h","parent":"dJ","inputs":{"ITEM":[3,"aIP",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIP":{"opcode":"operator_mod","next":null,"parent":"dK","inputs":{"NUM1":[3,"bEO",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEO":{"opcode":"operator_subtract","next":null,"parent":"aIP","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"%h":{"opcode":"data_addtolist","next":"aIQ","parent":"dK","inputs":{"ITEM":[3,"aIR",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aIR":{"opcode":"operator_mod","next":null,"parent":"%h","inputs":{"NUM1":[3,"bEP",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bEP":{"opcode":"operator_subtract","next":null,"parent":"aIR","inputs":{"NUM1":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aIQ":{"opcode":"data_setvariableto","next":"aIS","parent":"%h","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"aIS":{"opcode":"data_setvariableto","next":"aIT","parent":"aIQ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"aIT":{"opcode":"data_setvariableto","next":"aIU","parent":"aIS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"aIU":{"opcode":"data_setvariableto","next":"aIV","parent":"aIT","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"aIV":{"opcode":"data_setvariableto","next":"aIW","parent":"aIU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"aIW":{"opcode":"data_setvariableto","next":"aIX","parent":"aIV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"aIX":{"opcode":"data_setvariableto","next":"aIY","parent":"aIW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"aIY":{"opcode":"data_setvariableto","next":"aIZ","parent":"aIX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"aIZ":{"opcode":"data_setvariableto","next":"aI!","parent":"aIY","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"aI!":{"opcode":"data_setvariableto","next":"aI#","parent":"aIZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"aI#":{"opcode":"data_setvariableto","next":"aI%","parent":"aI!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"aI%":{"opcode":"data_setvariableto","next":"aI(","parent":"aI#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"aI(":{"opcode":"data_setvariableto","next":"aI)","parent":"aI%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"aI)":{"opcode":"data_setvariableto","next":"aI*","parent":"aI(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"aI*":{"opcode":"data_setvariableto","next":"aI+","parent":"aI)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aI+":{"opcode":"data_setvariableto","next":"aI,","parent":"aI*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"aI,":{"opcode":"data_setvariableto","next":"aI-","parent":"aI+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"aI-":{"opcode":"data_setvariableto","next":"aI.","parent":"aI,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aI.":{"opcode":"data_setvariableto","next":"aI/","parent":"aI-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_latch","MuVfO=YYlpa%T+H,NJnm"]},"shadow":false,"topLevel":false},"aI/":{"opcode":"data_setvariableto","next":"aI:","parent":"aI.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"aI:":{"opcode":"data_setvariableto","next":"aI;","parent":"aI/","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"aI;":{"opcode":"data_setvariableto","next":"lp","parent":"aI:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"lp":{"opcode":"control_if","next":"lq","parent":"aI;","inputs":{"CONDITION":[2,"bEQ"],"SUBSTACK":[2,"aI="]},"fields":{},"shadow":false,"topLevel":false},"bEQ":{"opcode":"operator_equals","next":null,"parent":"lp","inputs":{"OPERAND1":[3,[12,"chr_ram","70;C?(`taL+qCsw6v*gi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aI=":{"opcode":"data_deletealloflist","next":"aI?","parent":"lp","inputs":{},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"aI?":{"opcode":"control_repeat","next":null,"parent":"aI=","inputs":{"TIMES":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[6,0]],"SUBSTACK":[2,"bER"]},"fields":{},"shadow":false,"topLevel":false},"bER":{"opcode":"data_addtolist","next":null,"parent":"aI?","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"lq":{"opcode":"control_if","next":"lr","parent":"lp","inputs":{"CONDITION":[2,"bES"],"SUBSTACK":[2,"aI@"]},"fields":{},"shadow":false,"topLevel":false},"bES":{"opcode":"operator_equals","next":null,"parent":"lq","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aI@":{"opcode":"data_setvariableto","next":"aI[","parent":"lq","inputs":{"VALUE":[1,[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"aI[":{"opcode":"data_setvariableto","next":"aI]","parent":"aI@","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aI]":{"opcode":"data_setvariableto","next":null,"parent":"aI[","inputs":{"VALUE":[3,"bET",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bET":{"opcode":"operator_divide","next":null,"parent":"aI]","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"lr":{"opcode":"control_if","next":"ls","parent":"lq","inputs":{"CONDITION":[2,"bEU"],"SUBSTACK":[2,"aI^"]},"fields":{},"shadow":false,"topLevel":false},"bEU":{"opcode":"operator_equals","next":null,"parent":"lr","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aI^":{"opcode":"data_setvariableto","next":null,"parent":"lr","inputs":{"VALUE":[3,"bEV",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bEV":{"opcode":"operator_divide","next":null,"parent":"aI^","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"ls":{"opcode":"control_if","next":"lt","parent":"lr","inputs":{"CONDITION":[2,"bEW"],"SUBSTACK":[2,"aI_"]},"fields":{},"shadow":false,"topLevel":false},"bEW":{"opcode":"operator_equals","next":null,"parent":"ls","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aI_":{"opcode":"data_setvariableto","next":null,"parent":"ls","inputs":{"VALUE":[3,"bEX",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bEX":{"opcode":"operator_divide","next":null,"parent":"aI_","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"lt":{"opcode":"control_if","next":"lu","parent":"ls","inputs":{"CONDITION":[2,"bEY"],"SUBSTACK":[2,"aI`"]},"fields":{},"shadow":false,"topLevel":false},"bEY":{"opcode":"operator_equals","next":null,"parent":"lt","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aI`":{"opcode":"data_setvariableto","next":null,"parent":"lt","inputs":{"VALUE":[3,"bEZ",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bEZ":{"opcode":"operator_divide","next":null,"parent":"aI`","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"lu":{"opcode":"control_if","next":"lv","parent":"lt","inputs":{"CONDITION":[2,"bE!"],"SUBSTACK":[2,"aI{"]},"fields":{},"shadow":false,"topLevel":false},"bE!":{"opcode":"operator_equals","next":null,"parent":"lu","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"aI{":{"opcode":"procedures_call","next":"aI|","parent":"lu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"aI|":{"opcode":"data_setvariableto","next":null,"parent":"aI{","inputs":{"VALUE":[3,"bE#",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bE#":{"opcode":"operator_divide","next":null,"parent":"aI|","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"lv":{"opcode":"control_if","next":"lw","parent":"lu","inputs":{"CONDITION":[2,"bE%"],"SUBSTACK":[2,"aI}"]},"fields":{},"shadow":false,"topLevel":false},"bE%":{"opcode":"operator_equals","next":null,"parent":"lv","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"aI}":{"opcode":"data_setvariableto","next":"aI~","parent":"lv","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$5b_command","+yZB}NV9!4)X~Jf@W14_"]},"shadow":false,"topLevel":false},"aI~":{"opcode":"data_setvariableto","next":null,"parent":"aI}","inputs":{"VALUE":[3,"bE(",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bE(":{"opcode":"operator_divide","next":null,"parent":"aI~","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"lw":{"opcode":"control_if","next":"lx","parent":"lv","inputs":{"CONDITION":[2,"bE)"],"SUBSTACK":[2,"aJa"]},"fields":{},"shadow":false,"topLevel":false},"bE)":{"opcode":"operator_equals","next":null,"parent":"lw","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"aJa":{"opcode":"data_setvariableto","next":null,"parent":"lw","inputs":{"VALUE":[3,"bE*",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bE*":{"opcode":"operator_divide","next":null,"parent":"aJa","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"lx":{"opcode":"control_if","next":"%i","parent":"lw","inputs":{"CONDITION":[2,"bE+"],"SUBSTACK":[2,"aJb"]},"fields":{},"shadow":false,"topLevel":false},"bE+":{"opcode":"operator_equals","next":null,"parent":"lx","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"aJb":{"opcode":"data_setvariableto","next":"aJc","parent":"lx","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aJc":{"opcode":"data_setvariableto","next":"aJd","parent":"aJb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"]},"shadow":false,"topLevel":false},"aJd":{"opcode":"data_setvariableto","next":null,"parent":"aJc","inputs":{"VALUE":[3,"bE,",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bE,":{"opcode":"operator_divide","next":null,"parent":"aJd","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"%i":{"opcode":"control_if","next":null,"parent":"lx","inputs":{"CONDITION":[2,"bE-"],"SUBSTACK":[2,"aJe"]},"fields":{},"shadow":false,"topLevel":false},"bE-":{"opcode":"operator_equals","next":null,"parent":"%i","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"206"]]},"fields":{},"shadow":false,"topLevel":false},"aJe":{"opcode":"data_setvariableto","next":null,"parent":"%i","inputs":{"VALUE":[3,"bE.",[10,""]]},"fields":{"VARIABLE":["$prg_banks","HM)En0c}chMa#CL/6:U:"]},"shadow":false,"topLevel":false},"bE.":{"opcode":"operator_divide","next":null,"parent":"aJe","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aJf":{"opcode":"procedures_definition","next":"ly","parent":null,"inputs":{"custom_block":[1,"bE/"]},"fields":{},"shadow":false,"topLevel":true,"x":20344,"y":64},"bE/":{"opcode":"procedures_prototype","next":null,"parent":"aJf","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mapper write","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ly":{"opcode":"control_if","next":"lz","parent":"aJf","inputs":{"CONDITION":[2,"bE:"],"SUBSTACK":[2,"bE;"]},"fields":{},"shadow":false,"topLevel":false},"bE:":{"opcode":"operator_equals","next":null,"parent":"ly","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bE;":{"opcode":"control_stop","next":null,"parent":"ly","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lz":{"opcode":"control_if","next":"lA","parent":"ly","inputs":{"CONDITION":[2,"bE="],"SUBSTACK":[2,"aJg"]},"fields":{},"shadow":false,"topLevel":false},"bE=":{"opcode":"operator_equals","next":null,"parent":"lz","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJg":{"opcode":"procedures_call","next":"bE?","parent":"lz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc1","argumentids":"[]","warp":"true"}},"bE?":{"opcode":"control_stop","next":null,"parent":"aJg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lA":{"opcode":"control_if","next":"lB","parent":"lz","inputs":{"CONDITION":[2,"bE@"],"SUBSTACK":[2,"aJh"]},"fields":{},"shadow":false,"topLevel":false},"bE@":{"opcode":"operator_equals","next":null,"parent":"lA","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJh":{"opcode":"procedures_call","next":"bE[","parent":"lA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$unrom","argumentids":"[]","warp":"true"}},"bE[":{"opcode":"control_stop","next":null,"parent":"aJh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lB":{"opcode":"control_if","next":"lC","parent":"lA","inputs":{"CONDITION":[2,"bE]"],"SUBSTACK":[2,"aJi"]},"fields":{},"shadow":false,"topLevel":false},"bE]":{"opcode":"operator_equals","next":null,"parent":"lB","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aJi":{"opcode":"procedures_call","next":"bE^","parent":"lB","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$cnrom","argumentids":"[]","warp":"true"}},"bE^":{"opcode":"control_stop","next":null,"parent":"aJi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lC":{"opcode":"control_if","next":"lD","parent":"lB","inputs":{"CONDITION":[2,"bE_"],"SUBSTACK":[2,"aJj"]},"fields":{},"shadow":false,"topLevel":false},"bE_":{"opcode":"operator_equals","next":null,"parent":"lC","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aJj":{"opcode":"procedures_call","next":"bE`","parent":"lC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mmc3","argumentids":"[]","warp":"true"}},"bE`":{"opcode":"control_stop","next":null,"parent":"aJj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lD":{"opcode":"control_if","next":"lE","parent":"lC","inputs":{"CONDITION":[2,"bE{"],"SUBSTACK":[2,"aJk"]},"fields":{},"shadow":false,"topLevel":false},"bE{":{"opcode":"operator_equals","next":null,"parent":"lD","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"aJk":{"opcode":"procedures_call","next":"bE|","parent":"lD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$anrom","argumentids":"[]","warp":"true"}},"bE|":{"opcode":"control_stop","next":null,"parent":"aJk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lE":{"opcode":"control_if","next":"lF","parent":"lD","inputs":{"CONDITION":[2,"bE}"],"SUBSTACK":[2,"aJl"]},"fields":{},"shadow":false,"topLevel":false},"bE}":{"opcode":"operator_equals","next":null,"parent":"lE","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"aJl":{"opcode":"procedures_call","next":"bE~","parent":"lE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$fme7","argumentids":"[]","warp":"true"}},"bE~":{"opcode":"control_stop","next":null,"parent":"aJl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lF":{"opcode":"control_if","next":"lG","parent":"lE","inputs":{"CONDITION":[2,"bFa"],"SUBSTACK":[2,"aJm"]},"fields":{},"shadow":false,"topLevel":false},"bFa":{"opcode":"operator_equals","next":null,"parent":"lF","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"aJm":{"opcode":"procedures_call","next":"bFb","parent":"lF","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$vrc1","argumentids":"[]","warp":"true"}},"bFb":{"opcode":"control_stop","next":null,"parent":"aJm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lG":{"opcode":"control_if","next":"%j","parent":"lF","inputs":{"CONDITION":[2,"bFc"],"SUBSTACK":[2,"aJn"]},"fields":{},"shadow":false,"topLevel":false},"bFc":{"opcode":"operator_equals","next":null,"parent":"lG","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"aJn":{"opcode":"procedures_call","next":"bFd","parent":"lG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$jy","argumentids":"[]","warp":"true"}},"bFd":{"opcode":"control_stop","next":null,"parent":"aJn","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"%j":{"opcode":"control_if","next":null,"parent":"lG","inputs":{"CONDITION":[2,"bFe"],"SUBSTACK":[2,"aJo"]},"fields":{},"shadow":false,"topLevel":false},"bFe":{"opcode":"operator_equals","next":null,"parent":"%j","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"206"]]},"fields":{},"shadow":false,"topLevel":false},"aJo":{"opcode":"procedures_call","next":"bFf","parent":"%j","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$simple_mmc3","argumentids":"[]","warp":"true"}},"bFf":{"opcode":"control_stop","next":null,"parent":"aJo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aJp":{"opcode":"procedures_definition","next":"lH","parent":null,"inputs":{"custom_block":[1,"bFg"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":5216},"bFg":{"opcode":"procedures_prototype","next":null,"parent":"aJp","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"lH":{"opcode":"control_if","next":"%k","parent":"aJp","inputs":{"CONDITION":[2,"bFh"],"SUBSTACK":[2,"lI"]},"fields":{},"shadow":false,"topLevel":false},"bFh":{"opcode":"operator_equals","next":null,"parent":"lH","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"lI":{"opcode":"control_if","next":"bFi","parent":"lH","inputs":{"CONDITION":[2,"bFj"],"SUBSTACK":[2,"M:"]},"fields":{},"shadow":false,"topLevel":false},"bFj":{"opcode":"operator_equals","next":null,"parent":"lI","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"M:":{"opcode":"control_if_else","next":"%l","parent":"lI","inputs":{"CONDITION":[2,"%m"],"SUBSTACK":[2,"aJq"],"SUBSTACK2":[2,"bFk"]},"fields":{},"shadow":false,"topLevel":false},"%m":{"opcode":"operator_or","next":null,"parent":"M:","inputs":{"OPERAND1":[2,"bFl"],"OPERAND2":[2,"bFm"]},"fields":{},"shadow":false,"topLevel":false},"bFl":{"opcode":"operator_equals","next":null,"parent":"%m","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bFm":{"opcode":"operator_equals","next":null,"parent":"%m","inputs":{"OPERAND1":[3,[12,"$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJq":{"opcode":"data_setvariableto","next":"bFn","parent":"M:","inputs":{"VALUE":[3,[12,"$irq_latch","MuVfO=YYlpa%T+H,NJnm"],[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"bFn":{"opcode":"data_setvariableto","next":null,"parent":"aJq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_reload","bZQ~RwNT3xNz)9db7Z-Z"]},"shadow":false,"topLevel":false},"bFk":{"opcode":"data_changevariableby","next":null,"parent":"M:","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"%l":{"opcode":"control_if","next":null,"parent":"M:","inputs":{"CONDITION":[2,"%n"],"SUBSTACK":[2,"aJr"]},"fields":{},"shadow":false,"topLevel":false},"%n":{"opcode":"operator_and","next":null,"parent":"%l","inputs":{"OPERAND1":[2,"%o"],"OPERAND2":[2,"bFo"]},"fields":{},"shadow":false,"topLevel":false},"%o":{"opcode":"operator_and","next":null,"parent":"%n","inputs":{"OPERAND1":[2,"bFp"],"OPERAND2":[2,"bFq"]},"fields":{},"shadow":false,"topLevel":false},"bFp":{"opcode":"operator_equals","next":null,"parent":"%o","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bFq":{"opcode":"operator_equals","next":null,"parent":"%o","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bFo":{"opcode":"operator_equals","next":null,"parent":"%n","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aJr":{"opcode":"data_changevariableby","next":"bFr","parent":"%l","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bFr":{"opcode":"data_setvariableto","next":null,"parent":"aJr","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"bFi":{"opcode":"control_stop","next":null,"parent":"lI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"%k":{"opcode":"control_if","next":null,"parent":"lH","inputs":{"CONDITION":[2,"bFs"],"SUBSTACK":[2,"lJ"]},"fields":{},"shadow":false,"topLevel":false},"bFs":{"opcode":"operator_equals","next":null,"parent":"%k","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"90"]]},"fields":{},"shadow":false,"topLevel":false},"lJ":{"opcode":"control_if","next":"bFt","parent":"%k","inputs":{"CONDITION":[2,"%p"],"SUBSTACK":[2,"%q"]},"fields":{},"shadow":false,"topLevel":false},"%p":{"opcode":"operator_and","next":null,"parent":"lJ","inputs":{"OPERAND1":[2,"bFu"],"OPERAND2":[2,"bFv"]},"fields":{},"shadow":false,"topLevel":false},"bFu":{"opcode":"operator_equals","next":null,"parent":"%p","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bFv":{"opcode":"operator_equals","next":null,"parent":"%p","inputs":{"OPERAND1":[3,[12,"$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%q":{"opcode":"data_setvariableto","next":"dL","parent":"lJ","inputs":{"VALUE":[3,"aJs",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aJs":{"opcode":"operator_mod","next":null,"parent":"%q","inputs":{"NUM1":[3,"bFw",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bFw":{"opcode":"operator_subtract","next":null,"parent":"aJs","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"dL":{"opcode":"control_if","next":null,"parent":"%q","inputs":{"CONDITION":[2,"dM"],"SUBSTACK":[2,"aJt"]},"fields":{},"shadow":false,"topLevel":false},"dM":{"opcode":"operator_and","next":null,"parent":"dL","inputs":{"OPERAND1":[2,"dN"],"OPERAND2":[2,"bFx"]},"fields":{},"shadow":false,"topLevel":false},"dN":{"opcode":"operator_and","next":null,"parent":"dM","inputs":{"OPERAND1":[2,"bFy"],"OPERAND2":[2,"bFz"]},"fields":{},"shadow":false,"topLevel":false},"bFy":{"opcode":"operator_equals","next":null,"parent":"dN","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"bFz":{"opcode":"operator_equals","next":null,"parent":"dN","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bFx":{"opcode":"operator_equals","next":null,"parent":"dM","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aJt":{"opcode":"data_changevariableby","next":"bFA","parent":"dL","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bFA":{"opcode":"data_setvariableto","next":null,"parent":"aJt","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"bFt":{"opcode":"control_stop","next":null,"parent":"lJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aJu":{"opcode":"procedures_definition","next":"lK","parent":null,"inputs":{"custom_block":[1,"bFB"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":7668},"bFB":{"opcode":"procedures_prototype","next":null,"parent":"aJu","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$vrc1","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"lK":{"opcode":"control_if","next":"lL","parent":"aJu","inputs":{"CONDITION":[2,"dO"],"SUBSTACK":[2,"aJv"]},"fields":{},"shadow":false,"topLevel":false},"dO":{"opcode":"operator_and","next":null,"parent":"lK","inputs":{"OPERAND1":[2,"bFC"],"OPERAND2":[2,"bFD"]},"fields":{},"shadow":false,"topLevel":false},"bFC":{"opcode":"operator_gt","next":null,"parent":"dO","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bFD":{"opcode":"operator_lt","next":null,"parent":"dO","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36864"]]},"fields":{},"shadow":false,"topLevel":false},"aJv":{"opcode":"data_setvariableto","next":null,"parent":"lK","inputs":{"VALUE":[3,"bFE",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bFE":{"opcode":"operator_mod","next":null,"parent":"aJv","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"lL":{"opcode":"control_if","next":"lM","parent":"lK","inputs":{"CONDITION":[2,"dP"],"SUBSTACK":[2,"M;"]},"fields":{},"shadow":false,"topLevel":false},"dP":{"opcode":"operator_and","next":null,"parent":"lL","inputs":{"OPERAND1":[2,"bFF"],"OPERAND2":[2,"bFG"]},"fields":{},"shadow":false,"topLevel":false},"bFF":{"opcode":"operator_gt","next":null,"parent":"dP","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36863"]]},"fields":{},"shadow":false,"topLevel":false},"bFG":{"opcode":"operator_lt","next":null,"parent":"dP","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"M;":{"opcode":"control_if_else","next":"dQ","parent":"lL","inputs":{"CONDITION":[2,"aJw"],"SUBSTACK":[2,"bFH"],"SUBSTACK2":[2,"bFI"]},"fields":{},"shadow":false,"topLevel":false},"aJw":{"opcode":"operator_equals","next":null,"parent":"M;","inputs":{"OPERAND1":[3,"bFJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bFJ":{"opcode":"operator_mod","next":null,"parent":"aJw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bFH":{"opcode":"procedures_call","next":null,"parent":"M;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"bFI":{"opcode":"procedures_call","next":null,"parent":"M;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"dQ":{"opcode":"data_setvariableto","next":"aJx","parent":"M;","inputs":{"VALUE":[3,"dR",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"dR":{"opcode":"operator_add","next":null,"parent":"dQ","inputs":{"NUM1":[3,"bFK",[4,0]],"NUM2":[3,"aJy",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bFK":{"opcode":"operator_mod","next":null,"parent":"dR","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJy":{"opcode":"operator_multiply","next":null,"parent":"dR","inputs":{"NUM1":[3,"aJz",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJz":{"opcode":"operator_mod","next":null,"parent":"aJy","inputs":{"NUM1":[3,"aJA",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJA":{"opcode":"operator_mathop","next":null,"parent":"aJz","inputs":{"NUM":[3,"bFL",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bFL":{"opcode":"operator_divide","next":null,"parent":"aJA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJx":{"opcode":"data_setvariableto","next":null,"parent":"dQ","inputs":{"VALUE":[3,"dS",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"dS":{"opcode":"operator_add","next":null,"parent":"aJx","inputs":{"NUM1":[3,"bFM",[4,0]],"NUM2":[3,"aJB",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bFM":{"opcode":"operator_mod","next":null,"parent":"dS","inputs":{"NUM1":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJB":{"opcode":"operator_multiply","next":null,"parent":"dS","inputs":{"NUM1":[3,"aJC",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJC":{"opcode":"operator_mod","next":null,"parent":"aJB","inputs":{"NUM1":[3,"aJD",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aJD":{"opcode":"operator_mathop","next":null,"parent":"aJC","inputs":{"NUM":[3,"bFN",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bFN":{"opcode":"operator_divide","next":null,"parent":"aJD","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"lM":{"opcode":"control_if","next":"lN","parent":"lL","inputs":{"CONDITION":[2,"dT"],"SUBSTACK":[2,"aJE"]},"fields":{},"shadow":false,"topLevel":false},"dT":{"opcode":"operator_and","next":null,"parent":"lM","inputs":{"OPERAND1":[2,"bFO"],"OPERAND2":[2,"bFP"]},"fields":{},"shadow":false,"topLevel":false},"bFO":{"opcode":"operator_gt","next":null,"parent":"dT","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"bFP":{"opcode":"operator_lt","next":null,"parent":"dT","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"45056"]]},"fields":{},"shadow":false,"topLevel":false},"aJE":{"opcode":"data_setvariableto","next":null,"parent":"lM","inputs":{"VALUE":[3,"bFQ",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"bFQ":{"opcode":"operator_mod","next":null,"parent":"aJE","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"lN":{"opcode":"control_if","next":"lO","parent":"lM","inputs":{"CONDITION":[2,"dU"],"SUBSTACK":[2,"aJF"]},"fields":{},"shadow":false,"topLevel":false},"dU":{"opcode":"operator_and","next":null,"parent":"lN","inputs":{"OPERAND1":[2,"bFR"],"OPERAND2":[2,"bFS"]},"fields":{},"shadow":false,"topLevel":false},"bFR":{"opcode":"operator_gt","next":null,"parent":"dU","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bFS":{"opcode":"operator_lt","next":null,"parent":"dU","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53248"]]},"fields":{},"shadow":false,"topLevel":false},"aJF":{"opcode":"data_setvariableto","next":null,"parent":"lN","inputs":{"VALUE":[3,"bFT",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"bFT":{"opcode":"operator_mod","next":null,"parent":"aJF","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"lO":{"opcode":"control_if","next":"Ec","parent":"lN","inputs":{"CONDITION":[2,"dV"],"SUBSTACK":[2,"aJG"]},"fields":{},"shadow":false,"topLevel":false},"dV":{"opcode":"operator_and","next":null,"parent":"lO","inputs":{"OPERAND1":[2,"bFU"],"OPERAND2":[2,"bFV"]},"fields":{},"shadow":false,"topLevel":false},"bFU":{"opcode":"operator_gt","next":null,"parent":"dV","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"bFV":{"opcode":"operator_lt","next":null,"parent":"dV","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"61440"]]},"fields":{},"shadow":false,"topLevel":false},"aJG":{"opcode":"data_setvariableto","next":null,"parent":"lO","inputs":{"VALUE":[3,"dW",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"dW":{"opcode":"operator_add","next":null,"parent":"aJG","inputs":{"NUM1":[3,"bFW",[4,0]],"NUM2":[3,"aJH",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bFW":{"opcode":"operator_mod","next":null,"parent":"dW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJH":{"opcode":"operator_multiply","next":null,"parent":"dW","inputs":{"NUM1":[3,"aJI",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJI":{"opcode":"operator_mathop","next":null,"parent":"aJH","inputs":{"NUM":[3,"bFX",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bFX":{"opcode":"operator_divide","next":null,"parent":"aJI","inputs":{"NUM1":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ec":{"opcode":"control_if","next":"aJJ","parent":"lO","inputs":{"CONDITION":[2,"dX"],"SUBSTACK":[2,"aJK"]},"fields":{},"shadow":false,"topLevel":false},"dX":{"opcode":"operator_and","next":null,"parent":"Ec","inputs":{"OPERAND1":[2,"bFY"],"OPERAND2":[2,"bFZ"]},"fields":{},"shadow":false,"topLevel":false},"bFY":{"opcode":"operator_gt","next":null,"parent":"dX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"61439"]]},"fields":{},"shadow":false,"topLevel":false},"bFZ":{"opcode":"operator_lt","next":null,"parent":"dX","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aJK":{"opcode":"data_setvariableto","next":null,"parent":"Ec","inputs":{"VALUE":[3,"dY",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"dY":{"opcode":"operator_add","next":null,"parent":"aJK","inputs":{"NUM1":[3,"bF!",[4,0]],"NUM2":[3,"aJL",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bF!":{"opcode":"operator_mod","next":null,"parent":"dY","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJL":{"opcode":"operator_multiply","next":null,"parent":"dY","inputs":{"NUM1":[3,"aJM",[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJM":{"opcode":"operator_mathop","next":null,"parent":"aJL","inputs":{"NUM":[3,"bF#",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bF#":{"opcode":"operator_divide","next":null,"parent":"aJM","inputs":{"NUM1":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aJJ":{"opcode":"procedures_call","next":"bF%","parent":"Ec","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"bF%":{"opcode":"procedures_call","next":null,"parent":"aJJ","inputs":{"GVNB1CwSzA9:lV]`a$I$":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"WGS!dwukgOkU#8[iyU[X":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","warp":"true"}},"aJN":{"opcode":"procedures_definition","next":"dZ","parent":null,"inputs":{"custom_block":[1,"bF("]},"fields":{},"shadow":false,"topLevel":true,"x":17100,"y":7112},"bF(":{"opcode":"procedures_prototype","next":null,"parent":"aJN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu list","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"dZ":{"opcode":"data_replaceitemoflist","next":"d!","parent":"aJN","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aJO",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aJO":{"opcode":"operator_divide","next":null,"parent":"dZ","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aJP",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJP":{"opcode":"operator_multiply","next":null,"parent":"aJO","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"bF)",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bF)":{"opcode":"operator_add","next":null,"parent":"aJP","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d!":{"opcode":"control_if_else","next":"aJQ","parent":"dZ","inputs":{"CONDITION":[2,"d#"],"SUBSTACK":[2,"bF*"],"SUBSTACK2":[2,"Ed"]},"fields":{},"shadow":false,"topLevel":false},"d#":{"opcode":"operator_or","next":null,"parent":"d!","inputs":{"OPERAND1":[2,"d%"],"OPERAND2":[2,"d("]},"fields":{},"shadow":false,"topLevel":false},"d%":{"opcode":"operator_or","next":null,"parent":"d#","inputs":{"OPERAND1":[2,"bF+"],"OPERAND2":[2,"bF,"]},"fields":{},"shadow":false,"topLevel":false},"bF+":{"opcode":"operator_equals","next":null,"parent":"d%","inputs":{"OPERAND1":[3,[12,"#sq0_enabled","e..v2zd5D#2(~C2#;wE5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bF,":{"opcode":"operator_equals","next":null,"parent":"d%","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d(":{"opcode":"operator_or","next":null,"parent":"d#","inputs":{"OPERAND1":[2,"bF-"],"OPERAND2":[2,"bF."]},"fields":{},"shadow":false,"topLevel":false},"bF-":{"opcode":"operator_lt","next":null,"parent":"d(","inputs":{"OPERAND1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bF.":{"opcode":"operator_gt","next":null,"parent":"d(","inputs":{"OPERAND1":[3,[12,"#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"bF*":{"opcode":"data_replaceitemoflist","next":null,"parent":"d!","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ed":{"opcode":"control_if_else","next":null,"parent":"d!","inputs":{"CONDITION":[2,"bF/"],"SUBSTACK":[2,"aJR"],"SUBSTACK2":[2,"aJS"]},"fields":{},"shadow":false,"topLevel":false},"bF/":{"opcode":"operator_equals","next":null,"parent":"Ed","inputs":{"OPERAND1":[3,[12,"#sq0_constant","wn(;l_KDki8)r5(ghAFC"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJR":{"opcode":"data_replaceitemoflist","next":null,"parent":"Ed","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"bF:",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bF:":{"opcode":"operator_multiply","next":null,"parent":"aJR","inputs":{"NUM1":[3,[12,"#sq0_volume","A%!%qRtLZC]nW~p,)!i%"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"aJS":{"opcode":"data_replaceitemoflist","next":null,"parent":"Ed","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"bF;",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bF;":{"opcode":"operator_multiply","next":null,"parent":"aJS","inputs":{"NUM1":[3,[12,"#sq0_decay","[Gs~6]:p]neDG4uT.*8R"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"aJQ":{"opcode":"data_replaceitemoflist","next":"d)","parent":"d!","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,[12,"#sq0_duty","dB0flbU!1%]JaiK.z7Y$"],[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"d)":{"opcode":"data_replaceitemoflist","next":"d*","parent":"aJQ","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aJT",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aJT":{"opcode":"operator_divide","next":null,"parent":"d)","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aJU",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJU":{"opcode":"operator_multiply","next":null,"parent":"aJT","inputs":{"NUM1":[1,[4,"16"]],"NUM2":[3,"bF=",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bF=":{"opcode":"operator_add","next":null,"parent":"aJU","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d*":{"opcode":"control_if_else","next":"aJV","parent":"d)","inputs":{"CONDITION":[2,"d+"],"SUBSTACK":[2,"bF?"],"SUBSTACK2":[2,"Ee"]},"fields":{},"shadow":false,"topLevel":false},"d+":{"opcode":"operator_or","next":null,"parent":"d*","inputs":{"OPERAND1":[2,"d,"],"OPERAND2":[2,"d-"]},"fields":{},"shadow":false,"topLevel":false},"d,":{"opcode":"operator_or","next":null,"parent":"d+","inputs":{"OPERAND1":[2,"bF@"],"OPERAND2":[2,"bF["]},"fields":{},"shadow":false,"topLevel":false},"bF@":{"opcode":"operator_equals","next":null,"parent":"d,","inputs":{"OPERAND1":[3,[12,"#sq1_enabled","?J_Phm*-*3G*+ZF%mi,$"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bF[":{"opcode":"operator_equals","next":null,"parent":"d,","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d-":{"opcode":"operator_or","next":null,"parent":"d+","inputs":{"OPERAND1":[2,"bF]"],"OPERAND2":[2,"bF^"]},"fields":{},"shadow":false,"topLevel":false},"bF]":{"opcode":"operator_lt","next":null,"parent":"d-","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bF^":{"opcode":"operator_gt","next":null,"parent":"d-","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"bF?":{"opcode":"data_replaceitemoflist","next":null,"parent":"d*","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Ee":{"opcode":"control_if_else","next":null,"parent":"d*","inputs":{"CONDITION":[2,"bF_"],"SUBSTACK":[2,"aJW"],"SUBSTACK2":[2,"aJX"]},"fields":{},"shadow":false,"topLevel":false},"bF_":{"opcode":"operator_equals","next":null,"parent":"Ee","inputs":{"OPERAND1":[3,[12,"#sq1_constant","V5`gP*J*-[d%pHYl=WL."],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJW":{"opcode":"data_replaceitemoflist","next":null,"parent":"Ee","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"bF`",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bF`":{"opcode":"operator_multiply","next":null,"parent":"aJW","inputs":{"NUM1":[3,[12,"#sq1_volume","FMQ0!3hCZ/W1ODJaD|0!"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"aJX":{"opcode":"data_replaceitemoflist","next":null,"parent":"Ee","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"bF{",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bF{":{"opcode":"operator_multiply","next":null,"parent":"aJX","inputs":{"NUM1":[3,[12,"#sq1_decay","N3TVGftA]FVjj5Akw]@K"],[4,0]],"NUM2":[1,[4,"6.5"]]},"fields":{},"shadow":false,"topLevel":false},"aJV":{"opcode":"data_replaceitemoflist","next":"d.","parent":"d*","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"#sq1_duty","JFkRP]sBcRFZA#p%(s5["],[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"d.":{"opcode":"data_replaceitemoflist","next":"cU","parent":"aJV","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aJY",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aJY":{"opcode":"operator_divide","next":null,"parent":"d.","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aJZ",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJZ":{"opcode":"operator_multiply","next":null,"parent":"aJY","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"bF|",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bF|":{"opcode":"operator_add","next":null,"parent":"aJZ","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"cU":{"opcode":"control_if_else","next":"d/","parent":"d.","inputs":{"CONDITION":[2,"d:"],"SUBSTACK":[2,"bF}"],"SUBSTACK2":[2,"bF~"]},"fields":{},"shadow":false,"topLevel":false},"d:":{"opcode":"operator_or","next":null,"parent":"cU","inputs":{"OPERAND1":[2,"d;"],"OPERAND2":[2,"d="]},"fields":{},"shadow":false,"topLevel":false},"d;":{"opcode":"operator_or","next":null,"parent":"d:","inputs":{"OPERAND1":[2,"bGa"],"OPERAND2":[2,"bGb"]},"fields":{},"shadow":false,"topLevel":false},"bGa":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bGb":{"opcode":"operator_equals","next":null,"parent":"d;","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d=":{"opcode":"operator_or","next":null,"parent":"d:","inputs":{"OPERAND1":[2,"bGc"],"OPERAND2":[2,"bGd"]},"fields":{},"shadow":false,"topLevel":false},"bGc":{"opcode":"operator_equals","next":null,"parent":"d=","inputs":{"OPERAND1":[3,[12,"#tri_linearcounter","5?qKt~N62.Zitv?o]-Al"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bGd":{"opcode":"operator_lt","next":null,"parent":"d=","inputs":{"OPERAND1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bF}":{"opcode":"data_replaceitemoflist","next":null,"parent":"cU","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bF~":{"opcode":"data_replaceitemoflist","next":null,"parent":"cU","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"85"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"d/":{"opcode":"data_replaceitemoflist","next":"d?","parent":"cU","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[3,"aJ!",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aJ!":{"opcode":"operator_divide","next":null,"parent":"d/","inputs":{"NUM1":[1,[4,"1789773"]],"NUM2":[3,"aJ#",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJ#":{"opcode":"operator_add","next":null,"parent":"aJ!","inputs":{"NUM1":[3,"aJ%",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ%":{"opcode":"data_itemoflist","next":null,"parent":"aJ#","inputs":{"INDEX":[3,"bGe",[7,0]]},"fields":{"LIST":["#noise_period",".S|FktusGCQ:m9X)mIEJ"]},"shadow":false,"topLevel":false},"bGe":{"opcode":"operator_add","next":null,"parent":"aJ%","inputs":{"NUM1":[3,[12,"#noise_period","?A|Ii0235Jf)q]b{e^F;"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"data_replaceitemoflist","next":"Ef","parent":"d/","inputs":{"INDEX":[1,[7,"10"]],"ITEM":[3,"aJ(",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aJ(":{"opcode":"operator_add","next":null,"parent":"d?","inputs":{"NUM1":[3,[12,"#noise_period","?A|Ii0235Jf)q]b{e^F;"],[4,0]],"NUM2":[3,"bGf",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGf":{"opcode":"operator_multiply","next":null,"parent":"aJ(","inputs":{"NUM1":[3,[12,"#noise_mode","9]wlSTu+]*Y~:nsZ9z4n"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ef":{"opcode":"control_if_else","next":null,"parent":"d?","inputs":{"CONDITION":[2,"M="],"SUBSTACK":[2,"bGg"],"SUBSTACK2":[2,"Eg"]},"fields":{},"shadow":false,"topLevel":false},"M=":{"opcode":"operator_or","next":null,"parent":"Ef","inputs":{"OPERAND1":[2,"bGh"],"OPERAND2":[2,"bGi"]},"fields":{},"shadow":false,"topLevel":false},"bGh":{"opcode":"operator_equals","next":null,"parent":"M=","inputs":{"OPERAND1":[3,[12,"#noise_enabled","bNb:zYe.|6Wi-/?Dqy0V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bGi":{"opcode":"operator_equals","next":null,"parent":"M=","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bGg":{"opcode":"data_replaceitemoflist","next":null,"parent":"Ef","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"Eg":{"opcode":"control_if_else","next":null,"parent":"Ef","inputs":{"CONDITION":[2,"bGj"],"SUBSTACK":[2,"aJ)"],"SUBSTACK2":[2,"aJ*"]},"fields":{},"shadow":false,"topLevel":false},"bGj":{"opcode":"operator_equals","next":null,"parent":"Eg","inputs":{"OPERAND1":[3,[12,"#noise_constant","9w#8ILSZ$^iPt|9!L6cw"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ)":{"opcode":"data_replaceitemoflist","next":null,"parent":"Eg","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[3,"bGk",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bGk":{"opcode":"operator_multiply","next":null,"parent":"aJ)","inputs":{"NUM1":[3,[12,"#noise_volume","vBuLse(~z3!bQ+oQeC{l"],[4,0]],"NUM2":[1,[4,"5.6"]]},"fields":{},"shadow":false,"topLevel":false},"aJ*":{"opcode":"data_replaceitemoflist","next":null,"parent":"Eg","inputs":{"INDEX":[1,[7,"11"]],"ITEM":[3,"bGl",[10,""]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"bGl":{"opcode":"operator_multiply","next":null,"parent":"aJ*","inputs":{"NUM1":[3,[12,"#noise_decay","p,u2*;-v*L)r$MCvq%DP"],[4,0]],"NUM2":[1,[4,"5.6"]]},"fields":{},"shadow":false,"topLevel":false},"aJ+":{"opcode":"procedures_definition","next":"aJ,","parent":null,"inputs":{"custom_block":[1,"bGm"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":8616},"bGm":{"opcode":"procedures_prototype","next":null,"parent":"aJ+","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aJ,":{"opcode":"data_setvariableto","next":"M?","parent":"aJ+","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"M?":{"opcode":"control_repeat","next":"%r","parent":"aJ,","inputs":{"TIMES":[3,[12,"#sq0_swshift","x):Akro;B?IDs}?a(1S#"],[6,0]],"SUBSTACK":[2,"bGn"]},"fields":{},"shadow":false,"topLevel":false},"bGn":{"opcode":"data_changevariableby","next":null,"parent":"M?","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"%r":{"opcode":"data_setvariableto","next":"Eh","parent":"M?","inputs":{"VALUE":[3,"aJ-",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aJ-":{"opcode":"operator_mathop","next":null,"parent":"%r","inputs":{"NUM":[3,"bGo",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bGo":{"opcode":"operator_divide","next":null,"parent":"aJ-","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Eh":{"opcode":"control_if","next":"aJ.","parent":"%r","inputs":{"CONDITION":[2,"bGp"],"SUBSTACK":[2,"aJ/"]},"fields":{},"shadow":false,"topLevel":false},"bGp":{"opcode":"operator_equals","next":null,"parent":"Eh","inputs":{"OPERAND1":[3,[12,"#sq0_swnegate","Rf6NEi.Wvo+#UqyAaCGX"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ/":{"opcode":"data_setvariableto","next":null,"parent":"Eh","inputs":{"VALUE":[3,"aJ:",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aJ:":{"opcode":"operator_subtract","next":null,"parent":"aJ/","inputs":{"NUM1":[3,"bGq",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bGq":{"opcode":"operator_multiply","next":null,"parent":"aJ:","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ.":{"opcode":"data_setvariableto","next":null,"parent":"Eh","inputs":{"VALUE":[3,"bGr",[10,""]]},"fields":{"VARIABLE":["#sq0_swtarget","nCPj0{q-wGj=!O-:wX$%"]},"shadow":false,"topLevel":false},"bGr":{"opcode":"operator_add","next":null,"parent":"aJ.","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aJ;":{"opcode":"procedures_definition","next":"aJ=","parent":null,"inputs":{"custom_block":[1,"bGs"]},"fields":{},"shadow":false,"topLevel":true,"x":18768,"y":9204},"bGs":{"opcode":"procedures_prototype","next":null,"parent":"aJ;","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aJ=":{"opcode":"data_setvariableto","next":"%s","parent":"aJ;","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"%s":{"opcode":"control_repeat","next":"Ei","parent":"aJ=","inputs":{"TIMES":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[6,0]],"SUBSTACK":[2,"bGt"]},"fields":{},"shadow":false,"topLevel":false},"bGt":{"opcode":"data_changevariableby","next":null,"parent":"%s","inputs":{"VALUE":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"Ei":{"opcode":"data_setvariableto","next":"Ej","parent":"%s","inputs":{"VALUE":[3,"aJ?",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aJ?":{"opcode":"operator_mathop","next":null,"parent":"Ei","inputs":{"NUM":[3,"bGu",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bGu":{"opcode":"operator_divide","next":null,"parent":"aJ?","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"Ej":{"opcode":"control_if","next":"aJ@","parent":"Ei","inputs":{"CONDITION":[2,"bGv"],"SUBSTACK":[2,"aJ["]},"fields":{},"shadow":false,"topLevel":false},"bGv":{"opcode":"operator_equals","next":null,"parent":"Ej","inputs":{"OPERAND1":[3,[12,"#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ[":{"opcode":"data_setvariableto","next":null,"parent":"Ej","inputs":{"VALUE":[3,"bGw",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"bGw":{"opcode":"operator_multiply","next":null,"parent":"aJ[","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]],"NUM2":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ@":{"opcode":"data_setvariableto","next":null,"parent":"Ej","inputs":{"VALUE":[3,"bGx",[10,""]]},"fields":{"VARIABLE":["#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"]},"shadow":false,"topLevel":false},"bGx":{"opcode":"operator_add","next":null,"parent":"aJ@","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGy":{"opcode":"event_whenkeypressed","next":"bGz","parent":null,"inputs":{},"fields":{"KEY_OPTION":["6",null]},"shadow":false,"topLevel":true,"x":8483,"y":2920},"bGz":{"opcode":"data_setvariableto","next":null,"parent":"bGy","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"aJ]":{"opcode":"procedures_definition","next":"Ek","parent":null,"inputs":{"custom_block":[1,"bGA"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":7012},"bGA":{"opcode":"procedures_prototype","next":null,"parent":"aJ]","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Ek":{"opcode":"control_if","next":"El","parent":"aJ]","inputs":{"CONDITION":[2,"bGB"],"SUBSTACK":[2,"Em"]},"fields":{},"shadow":false,"topLevel":false},"bGB":{"opcode":"operator_lt","next":null,"parent":"Ek","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"512"]]},"fields":{},"shadow":false,"topLevel":false},"Em":{"opcode":"data_setvariableto","next":"bGC","parent":"Ek","inputs":{"VALUE":[3,"aJ^",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aJ^":{"opcode":"data_itemoflist","next":null,"parent":"Em","inputs":{"INDEX":[3,"En",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"En":{"opcode":"operator_add","next":null,"parent":"aJ^","inputs":{"NUM1":[3,"bGD",[4,0]],"NUM2":[3,"aJ_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGD":{"opcode":"operator_add","next":null,"parent":"En","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aJ_":{"opcode":"operator_divide","next":null,"parent":"En","inputs":{"NUM1":[3,"bGE",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGE":{"opcode":"data_itemoflist","next":null,"parent":"aJ_","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGC":{"opcode":"control_stop","next":null,"parent":"Em","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"El":{"opcode":"control_if","next":"Eo","parent":"Ek","inputs":{"CONDITION":[2,"bGF"],"SUBSTACK":[2,"Ep"]},"fields":{},"shadow":false,"topLevel":false},"bGF":{"opcode":"operator_lt","next":null,"parent":"El","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"Ep":{"opcode":"data_setvariableto","next":"bGG","parent":"El","inputs":{"VALUE":[3,"aJ`",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aJ`":{"opcode":"data_itemoflist","next":null,"parent":"Ep","inputs":{"INDEX":[3,"Eq",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"Eq":{"opcode":"operator_add","next":null,"parent":"aJ`","inputs":{"NUM1":[3,"bGH",[4,0]],"NUM2":[3,"aJ{",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGH":{"opcode":"operator_subtract","next":null,"parent":"Eq","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"511"]]},"fields":{},"shadow":false,"topLevel":false},"aJ{":{"opcode":"operator_divide","next":null,"parent":"Eq","inputs":{"NUM1":[3,"bGI",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGI":{"opcode":"data_itemoflist","next":null,"parent":"aJ{","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGG":{"opcode":"control_stop","next":null,"parent":"Ep","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Eo":{"opcode":"control_if","next":"lP","parent":"El","inputs":{"CONDITION":[2,"bGJ"],"SUBSTACK":[2,"Er"]},"fields":{},"shadow":false,"topLevel":false},"bGJ":{"opcode":"operator_lt","next":null,"parent":"Eo","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"1536"]]},"fields":{},"shadow":false,"topLevel":false},"Er":{"opcode":"data_setvariableto","next":"bGK","parent":"Eo","inputs":{"VALUE":[3,"aJ|",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aJ|":{"opcode":"data_itemoflist","next":null,"parent":"Er","inputs":{"INDEX":[3,"Es",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"Es":{"opcode":"operator_add","next":null,"parent":"aJ|","inputs":{"NUM1":[3,"bGL",[4,0]],"NUM2":[3,"aJ}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGL":{"opcode":"operator_subtract","next":null,"parent":"Es","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1023"]]},"fields":{},"shadow":false,"topLevel":false},"aJ}":{"opcode":"operator_divide","next":null,"parent":"Es","inputs":{"NUM1":[3,"bGM",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGM":{"opcode":"data_itemoflist","next":null,"parent":"aJ}","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGK":{"opcode":"control_stop","next":null,"parent":"Er","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lP":{"opcode":"control_if","next":"lQ","parent":"Eo","inputs":{"CONDITION":[2,"bGN"],"SUBSTACK":[2,"Et"]},"fields":{},"shadow":false,"topLevel":false},"bGN":{"opcode":"operator_lt","next":null,"parent":"lP","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"Et":{"opcode":"data_setvariableto","next":"bGO","parent":"lP","inputs":{"VALUE":[3,"aJ~",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aJ~":{"opcode":"data_itemoflist","next":null,"parent":"Et","inputs":{"INDEX":[3,"Eu",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"Eu":{"opcode":"operator_add","next":null,"parent":"aJ~","inputs":{"NUM1":[3,"bGP",[4,0]],"NUM2":[3,"aKa",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGP":{"opcode":"operator_subtract","next":null,"parent":"Eu","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"1535"]]},"fields":{},"shadow":false,"topLevel":false},"aKa":{"opcode":"operator_divide","next":null,"parent":"Eu","inputs":{"NUM1":[3,"bGQ",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGQ":{"opcode":"data_itemoflist","next":null,"parent":"aKa","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGO":{"opcode":"control_stop","next":null,"parent":"Et","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lQ":{"opcode":"control_if","next":"lR","parent":"lP","inputs":{"CONDITION":[2,"bGR"],"SUBSTACK":[2,"Ev"]},"fields":{},"shadow":false,"topLevel":false},"bGR":{"opcode":"operator_lt","next":null,"parent":"lQ","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"2560"]]},"fields":{},"shadow":false,"topLevel":false},"Ev":{"opcode":"data_setvariableto","next":"bGS","parent":"lQ","inputs":{"VALUE":[3,"aKb",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKb":{"opcode":"data_itemoflist","next":null,"parent":"Ev","inputs":{"INDEX":[3,"Ew",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"Ew":{"opcode":"operator_add","next":null,"parent":"aKb","inputs":{"NUM1":[3,"bGT",[4,0]],"NUM2":[3,"aKc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGT":{"opcode":"operator_subtract","next":null,"parent":"Ew","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"aKc":{"opcode":"operator_divide","next":null,"parent":"Ew","inputs":{"NUM1":[3,"bGU",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGU":{"opcode":"data_itemoflist","next":null,"parent":"aKc","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGS":{"opcode":"control_stop","next":null,"parent":"Ev","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lR":{"opcode":"control_if","next":"lS","parent":"lQ","inputs":{"CONDITION":[2,"bGV"],"SUBSTACK":[2,"Ex"]},"fields":{},"shadow":false,"topLevel":false},"bGV":{"opcode":"operator_lt","next":null,"parent":"lR","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"Ex":{"opcode":"data_setvariableto","next":"bGW","parent":"lR","inputs":{"VALUE":[3,"aKd",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKd":{"opcode":"data_itemoflist","next":null,"parent":"Ex","inputs":{"INDEX":[3,"Ey",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"Ey":{"opcode":"operator_add","next":null,"parent":"aKd","inputs":{"NUM1":[3,"bGX",[4,0]],"NUM2":[3,"aKe",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bGX":{"opcode":"operator_subtract","next":null,"parent":"Ey","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"2559"]]},"fields":{},"shadow":false,"topLevel":false},"aKe":{"opcode":"operator_divide","next":null,"parent":"Ey","inputs":{"NUM1":[3,"bGY",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bGY":{"opcode":"data_itemoflist","next":null,"parent":"aKe","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bGW":{"opcode":"control_stop","next":null,"parent":"Ex","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lS":{"opcode":"control_if","next":"Ez","parent":"lR","inputs":{"CONDITION":[2,"bGZ"],"SUBSTACK":[2,"EA"]},"fields":{},"shadow":false,"topLevel":false},"bGZ":{"opcode":"operator_lt","next":null,"parent":"lS","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"3584"]]},"fields":{},"shadow":false,"topLevel":false},"EA":{"opcode":"data_setvariableto","next":"bG!","parent":"lS","inputs":{"VALUE":[3,"aKf",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKf":{"opcode":"data_itemoflist","next":null,"parent":"EA","inputs":{"INDEX":[3,"EB",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"EB":{"opcode":"operator_add","next":null,"parent":"aKf","inputs":{"NUM1":[3,"bG#",[4,0]],"NUM2":[3,"aKg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG#":{"opcode":"operator_subtract","next":null,"parent":"EB","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"3071"]]},"fields":{},"shadow":false,"topLevel":false},"aKg":{"opcode":"operator_divide","next":null,"parent":"EB","inputs":{"NUM1":[3,"bG%",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bG%":{"opcode":"data_itemoflist","next":null,"parent":"aKg","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG!":{"opcode":"control_stop","next":null,"parent":"EA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Ez":{"opcode":"control_if","next":null,"parent":"lS","inputs":{"CONDITION":[2,"bG("],"SUBSTACK":[2,"M@"]},"fields":{},"shadow":false,"topLevel":false},"bG(":{"opcode":"operator_lt","next":null,"parent":"Ez","inputs":{"OPERAND1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[10,""]],"OPERAND2":[1,[10,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"M@":{"opcode":"data_setvariableto","next":"bG)","parent":"Ez","inputs":{"VALUE":[3,"aKh",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKh":{"opcode":"data_itemoflist","next":null,"parent":"M@","inputs":{"INDEX":[3,"EC",[7,0]]},"fields":{"LIST":["@convert","*R!h^Efk-^@f`k0l/%/H"]},"shadow":false,"topLevel":false},"EC":{"opcode":"operator_add","next":null,"parent":"aKh","inputs":{"NUM1":[3,"bG*",[4,0]],"NUM2":[3,"aKi",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG*":{"opcode":"operator_subtract","next":null,"parent":"EC","inputs":{"NUM1":[3,[12,"@pattern_addr","]k`#qf@6r-uzGs-*/KqF"],[4,0]],"NUM2":[1,[4,"3583"]]},"fields":{},"shadow":false,"topLevel":false},"aKi":{"opcode":"operator_divide","next":null,"parent":"EC","inputs":{"NUM1":[3,"bG+",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bG+":{"opcode":"data_itemoflist","next":null,"parent":"aKi","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG)":{"opcode":"control_stop","next":null,"parent":"M@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aKj":{"opcode":"procedures_definition","next":"lT","parent":null,"inputs":{"custom_block":[1,"bG,"]},"fields":{},"shadow":false,"topLevel":true,"x":10826,"y":8816},"bG,":{"opcode":"procedures_prototype","next":null,"parent":"aKj","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read chr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"lT":{"opcode":"control_if","next":"lU","parent":"aKj","inputs":{"CONDITION":[2,"bG-"],"SUBSTACK":[2,"ED"]},"fields":{},"shadow":false,"topLevel":false},"bG-":{"opcode":"operator_lt","next":null,"parent":"lT","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"ED":{"opcode":"data_setvariableto","next":"bG.","parent":"lT","inputs":{"VALUE":[3,"aKk",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKk":{"opcode":"data_itemoflist","next":null,"parent":"ED","inputs":{"INDEX":[3,"EE",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EE":{"opcode":"operator_add","next":null,"parent":"aKk","inputs":{"NUM1":[3,"bG/",[4,0]],"NUM2":[3,"bG:",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG/":{"opcode":"operator_add","next":null,"parent":"EE","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bG:":{"opcode":"data_itemoflist","next":null,"parent":"EE","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG.":{"opcode":"control_stop","next":null,"parent":"ED","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lU":{"opcode":"control_if","next":"lV","parent":"lT","inputs":{"CONDITION":[2,"bG;"],"SUBSTACK":[2,"EF"]},"fields":{},"shadow":false,"topLevel":false},"bG;":{"opcode":"operator_lt","next":null,"parent":"lU","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"EF":{"opcode":"data_setvariableto","next":"bG=","parent":"lU","inputs":{"VALUE":[3,"aKl",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKl":{"opcode":"data_itemoflist","next":null,"parent":"EF","inputs":{"INDEX":[3,"EG",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EG":{"opcode":"operator_add","next":null,"parent":"aKl","inputs":{"NUM1":[3,"bG?",[4,0]],"NUM2":[3,"bG@",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG?":{"opcode":"operator_subtract","next":null,"parent":"EG","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"1023"]]},"fields":{},"shadow":false,"topLevel":false},"bG@":{"opcode":"data_itemoflist","next":null,"parent":"EG","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG=":{"opcode":"control_stop","next":null,"parent":"EF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lV":{"opcode":"control_if","next":"lW","parent":"lU","inputs":{"CONDITION":[2,"bG["],"SUBSTACK":[2,"EH"]},"fields":{},"shadow":false,"topLevel":false},"bG[":{"opcode":"operator_lt","next":null,"parent":"lV","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"EH":{"opcode":"data_setvariableto","next":"bG]","parent":"lV","inputs":{"VALUE":[3,"aKm",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKm":{"opcode":"data_itemoflist","next":null,"parent":"EH","inputs":{"INDEX":[3,"EI",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EI":{"opcode":"operator_add","next":null,"parent":"aKm","inputs":{"NUM1":[3,"bG^",[4,0]],"NUM2":[3,"bG_",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG^":{"opcode":"operator_subtract","next":null,"parent":"EI","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"bG_":{"opcode":"data_itemoflist","next":null,"parent":"EI","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG]":{"opcode":"control_stop","next":null,"parent":"EH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lW":{"opcode":"control_if","next":"lX","parent":"lV","inputs":{"CONDITION":[2,"bG`"],"SUBSTACK":[2,"EJ"]},"fields":{},"shadow":false,"topLevel":false},"bG`":{"opcode":"operator_lt","next":null,"parent":"lW","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"EJ":{"opcode":"data_setvariableto","next":"bG{","parent":"lW","inputs":{"VALUE":[3,"aKn",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKn":{"opcode":"data_itemoflist","next":null,"parent":"EJ","inputs":{"INDEX":[3,"EK",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EK":{"opcode":"operator_add","next":null,"parent":"aKn","inputs":{"NUM1":[3,"bG|",[4,0]],"NUM2":[3,"bG}",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bG|":{"opcode":"operator_subtract","next":null,"parent":"EK","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"3071"]]},"fields":{},"shadow":false,"topLevel":false},"bG}":{"opcode":"data_itemoflist","next":null,"parent":"EK","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bG{":{"opcode":"control_stop","next":null,"parent":"EJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lX":{"opcode":"control_if","next":"lY","parent":"lW","inputs":{"CONDITION":[2,"bG~"],"SUBSTACK":[2,"EL"]},"fields":{},"shadow":false,"topLevel":false},"bG~":{"opcode":"operator_lt","next":null,"parent":"lX","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"EL":{"opcode":"data_setvariableto","next":"bHa","parent":"lX","inputs":{"VALUE":[3,"aKo",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKo":{"opcode":"data_itemoflist","next":null,"parent":"EL","inputs":{"INDEX":[3,"EM",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EM":{"opcode":"operator_add","next":null,"parent":"aKo","inputs":{"NUM1":[3,"bHb",[4,0]],"NUM2":[3,"bHc",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bHb":{"opcode":"operator_subtract","next":null,"parent":"EM","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"4095"]]},"fields":{},"shadow":false,"topLevel":false},"bHc":{"opcode":"data_itemoflist","next":null,"parent":"EM","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bHa":{"opcode":"control_stop","next":null,"parent":"EL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lY":{"opcode":"control_if","next":"lZ","parent":"lX","inputs":{"CONDITION":[2,"bHd"],"SUBSTACK":[2,"EN"]},"fields":{},"shadow":false,"topLevel":false},"bHd":{"opcode":"operator_lt","next":null,"parent":"lY","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"EN":{"opcode":"data_setvariableto","next":"bHe","parent":"lY","inputs":{"VALUE":[3,"aKp",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKp":{"opcode":"data_itemoflist","next":null,"parent":"EN","inputs":{"INDEX":[3,"EO",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EO":{"opcode":"operator_add","next":null,"parent":"aKp","inputs":{"NUM1":[3,"bHf",[4,0]],"NUM2":[3,"bHg",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bHf":{"opcode":"operator_subtract","next":null,"parent":"EO","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"5119"]]},"fields":{},"shadow":false,"topLevel":false},"bHg":{"opcode":"data_itemoflist","next":null,"parent":"EO","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bHe":{"opcode":"control_stop","next":null,"parent":"EN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"lZ":{"opcode":"control_if","next":"M[","parent":"lY","inputs":{"CONDITION":[2,"bHh"],"SUBSTACK":[2,"EP"]},"fields":{},"shadow":false,"topLevel":false},"bHh":{"opcode":"operator_lt","next":null,"parent":"lZ","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"EP":{"opcode":"data_setvariableto","next":"bHi","parent":"lZ","inputs":{"VALUE":[3,"aKq",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKq":{"opcode":"data_itemoflist","next":null,"parent":"EP","inputs":{"INDEX":[3,"EQ",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"EQ":{"opcode":"operator_add","next":null,"parent":"aKq","inputs":{"NUM1":[3,"bHj",[4,0]],"NUM2":[3,"bHk",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bHj":{"opcode":"operator_subtract","next":null,"parent":"EQ","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"6143"]]},"fields":{},"shadow":false,"topLevel":false},"bHk":{"opcode":"data_itemoflist","next":null,"parent":"EQ","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bHi":{"opcode":"control_stop","next":null,"parent":"EP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"M[":{"opcode":"control_if","next":null,"parent":"lZ","inputs":{"CONDITION":[2,"bHl"],"SUBSTACK":[2,"ER"]},"fields":{},"shadow":false,"topLevel":false},"bHl":{"opcode":"operator_lt","next":null,"parent":"M[","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"ER":{"opcode":"data_setvariableto","next":"bHm","parent":"M[","inputs":{"VALUE":[3,"aKr",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"aKr":{"opcode":"data_itemoflist","next":null,"parent":"ER","inputs":{"INDEX":[3,"ES",[7,0]]},"fields":{"LIST":["chr_rom",",41reDUn/;X!Ns7I!@{C"]},"shadow":false,"topLevel":false},"ES":{"opcode":"operator_add","next":null,"parent":"aKr","inputs":{"NUM1":[3,"bHn",[4,0]],"NUM2":[3,"bHo",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bHn":{"opcode":"operator_subtract","next":null,"parent":"ES","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,0]],"NUM2":[1,[4,"7167"]]},"fields":{},"shadow":false,"topLevel":false},"bHo":{"opcode":"data_itemoflist","next":null,"parent":"ES","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"bHm":{"opcode":"control_stop","next":null,"parent":"ER","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aKs":{"opcode":"procedures_definition","next":"ET","parent":null,"inputs":{"custom_block":[1,"aKt"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":3016},"aKt":{"opcode":"procedures_prototype","next":null,"parent":"aKs","inputs":{"1PpMQ]_vpIYNJ;E|i,)n":[1,"bHp"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_8k %s","argumentids":"[\"1PpMQ]_vpIYNJ;E|i,)n\"]","argumentnames":"[\"bank0\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bHp":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKt","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"ET":{"opcode":"data_replaceitemoflist","next":"EU","parent":"aKs","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aKu",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKu":{"opcode":"operator_mod","next":null,"parent":"ET","inputs":{"NUM1":[3,"aKv",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKv":{"opcode":"operator_multiply","next":null,"parent":"aKu","inputs":{"NUM1":[3,"bHq",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHq":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKv","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EU":{"opcode":"data_replaceitemoflist","next":"EV","parent":"ET","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aKw",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKw":{"opcode":"operator_mod","next":null,"parent":"EU","inputs":{"NUM1":[3,"aKx",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKx":{"opcode":"operator_add","next":null,"parent":"aKw","inputs":{"NUM1":[3,"aKy",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aKy":{"opcode":"operator_multiply","next":null,"parent":"aKx","inputs":{"NUM1":[3,"bHr",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKy","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EV":{"opcode":"data_replaceitemoflist","next":"EW","parent":"EU","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aKz",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKz":{"opcode":"operator_mod","next":null,"parent":"EV","inputs":{"NUM1":[3,"aKA",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKA":{"opcode":"operator_add","next":null,"parent":"aKz","inputs":{"NUM1":[3,"aKB",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"aKB":{"opcode":"operator_multiply","next":null,"parent":"aKA","inputs":{"NUM1":[3,"bHs",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHs":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKB","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EW":{"opcode":"data_replaceitemoflist","next":"EX","parent":"EV","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aKC",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKC":{"opcode":"operator_mod","next":null,"parent":"EW","inputs":{"NUM1":[3,"aKD",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKD":{"opcode":"operator_add","next":null,"parent":"aKC","inputs":{"NUM1":[3,"aKE",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"aKE":{"opcode":"operator_multiply","next":null,"parent":"aKD","inputs":{"NUM1":[3,"bHt",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHt":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKE","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EX":{"opcode":"data_replaceitemoflist","next":"EY","parent":"EW","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aKF",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKF":{"opcode":"operator_mod","next":null,"parent":"EX","inputs":{"NUM1":[3,"aKG",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKG":{"opcode":"operator_add","next":null,"parent":"aKF","inputs":{"NUM1":[3,"aKH",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"aKH":{"opcode":"operator_multiply","next":null,"parent":"aKG","inputs":{"NUM1":[3,"bHu",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKH","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EY":{"opcode":"data_replaceitemoflist","next":"EZ","parent":"EX","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"aKI",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKI":{"opcode":"operator_mod","next":null,"parent":"EY","inputs":{"NUM1":[3,"aKJ",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKJ":{"opcode":"operator_add","next":null,"parent":"aKI","inputs":{"NUM1":[3,"aKK",[4,0]],"NUM2":[1,[4,"5120"]]},"fields":{},"shadow":false,"topLevel":false},"aKK":{"opcode":"operator_multiply","next":null,"parent":"aKJ","inputs":{"NUM1":[3,"bHv",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKK","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"EZ":{"opcode":"data_replaceitemoflist","next":"aKL","parent":"EY","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aKM",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKM":{"opcode":"operator_mod","next":null,"parent":"EZ","inputs":{"NUM1":[3,"aKN",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKN":{"opcode":"operator_add","next":null,"parent":"aKM","inputs":{"NUM1":[3,"aKO",[4,0]],"NUM2":[1,[4,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"aKO":{"opcode":"operator_multiply","next":null,"parent":"aKN","inputs":{"NUM1":[3,"bHw",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHw":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKO","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"aKL":{"opcode":"data_replaceitemoflist","next":null,"parent":"EZ","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aKP",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKP":{"opcode":"operator_mod","next":null,"parent":"aKL","inputs":{"NUM1":[3,"aKQ",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKQ":{"opcode":"operator_add","next":null,"parent":"aKP","inputs":{"NUM1":[3,"aKR",[4,0]],"NUM2":[1,[4,"7168"]]},"fields":{},"shadow":false,"topLevel":false},"aKR":{"opcode":"operator_multiply","next":null,"parent":"aKQ","inputs":{"NUM1":[3,"bHx",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bHx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKR","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"aKS":{"opcode":"procedures_definition","next":"E!","parent":null,"inputs":{"custom_block":[1,"E#"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":3724},"E#":{"opcode":"procedures_prototype","next":null,"parent":"aKS","inputs":{"GVNB1CwSzA9:lV]`a$I$":[1,"bHy"],"WGS!dwukgOkU#8[iyU[X":[1,"bHz"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_4k %s %s","argumentids":"[\"GVNB1CwSzA9:lV]`a$I$\",\"WGS!dwukgOkU#8[iyU[X\"]","argumentnames":"[\"bank0\",\"bank1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bHy":{"opcode":"argument_reporter_string_number","next":null,"parent":"E#","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bHz":{"opcode":"argument_reporter_string_number","next":null,"parent":"E#","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"E!":{"opcode":"data_replaceitemoflist","next":"E%","parent":"aKS","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aKT",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKT":{"opcode":"operator_mod","next":null,"parent":"E!","inputs":{"NUM1":[3,"aKU",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKU":{"opcode":"operator_multiply","next":null,"parent":"aKT","inputs":{"NUM1":[3,"bHA",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKU","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"E%":{"opcode":"data_replaceitemoflist","next":"M]","parent":"E!","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aKV",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKV":{"opcode":"operator_mod","next":null,"parent":"E%","inputs":{"NUM1":[3,"aKW",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKW":{"opcode":"operator_add","next":null,"parent":"aKV","inputs":{"NUM1":[3,"aKX",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aKX":{"opcode":"operator_multiply","next":null,"parent":"aKW","inputs":{"NUM1":[3,"bHB",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aKX","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"M]":{"opcode":"data_replaceitemoflist","next":"M^","parent":"E%","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aKY",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aKY":{"opcode":"operator_mod","next":null,"parent":"M]","inputs":{"NUM1":[3,"aKZ",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aKZ":{"opcode":"operator_add","next":null,"parent":"aKY","inputs":{"NUM1":[3,"aK!",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"aK!":{"opcode":"operator_multiply","next":null,"parent":"aKZ","inputs":{"NUM1":[3,"bHC",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK!","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"M^":{"opcode":"data_replaceitemoflist","next":"M_","parent":"M]","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aK#",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aK#":{"opcode":"operator_mod","next":null,"parent":"M^","inputs":{"NUM1":[3,"aK%",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK%":{"opcode":"operator_add","next":null,"parent":"aK#","inputs":{"NUM1":[3,"aK(",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"aK(":{"opcode":"operator_multiply","next":null,"parent":"aK%","inputs":{"NUM1":[3,"bHD",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHD":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK(","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"M_":{"opcode":"data_replaceitemoflist","next":"M`","parent":"M^","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aK)",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aK)":{"opcode":"operator_mod","next":null,"parent":"M_","inputs":{"NUM1":[3,"aK*",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK*":{"opcode":"operator_multiply","next":null,"parent":"aK)","inputs":{"NUM1":[3,"bHE",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK*","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"M`":{"opcode":"data_replaceitemoflist","next":"M{","parent":"M_","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"aK+",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aK+":{"opcode":"operator_mod","next":null,"parent":"M`","inputs":{"NUM1":[3,"aK,",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK,":{"opcode":"operator_add","next":null,"parent":"aK+","inputs":{"NUM1":[3,"aK-",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aK-":{"opcode":"operator_multiply","next":null,"parent":"aK,","inputs":{"NUM1":[3,"bHF",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK-","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"M{":{"opcode":"data_replaceitemoflist","next":"aK.","parent":"M`","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aK/",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aK/":{"opcode":"operator_mod","next":null,"parent":"M{","inputs":{"NUM1":[3,"aK:",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK:":{"opcode":"operator_add","next":null,"parent":"aK/","inputs":{"NUM1":[3,"aK;",[4,0]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"aK;":{"opcode":"operator_multiply","next":null,"parent":"aK:","inputs":{"NUM1":[3,"bHG",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK;","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"aK.":{"opcode":"data_replaceitemoflist","next":null,"parent":"M{","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aK=",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aK=":{"opcode":"operator_mod","next":null,"parent":"aK.","inputs":{"NUM1":[3,"aK?",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK?":{"opcode":"operator_add","next":null,"parent":"aK=","inputs":{"NUM1":[3,"aK@",[4,0]],"NUM2":[1,[4,"3072"]]},"fields":{},"shadow":false,"topLevel":false},"aK@":{"opcode":"operator_multiply","next":null,"parent":"aK?","inputs":{"NUM1":[3,"bHH",[4,0]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bHH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK@","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"aK[":{"opcode":"procedures_definition","next":"M|","parent":null,"inputs":{"custom_block":[1,"aK]"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1392},"aK]":{"opcode":"procedures_prototype","next":null,"parent":"aK[","inputs":{"La?#zJqoritu?9M,S2Y,":[1,"bHI"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_32k %s","argumentids":"[\"La?#zJqoritu?9M,S2Y,\"]","argumentnames":"[\"bank0\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bHI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK]","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"M|":{"opcode":"data_replaceitemoflist","next":"M}","parent":"aK[","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aK^",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aK^":{"opcode":"operator_mod","next":null,"parent":"M|","inputs":{"NUM1":[3,"aK_",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK_":{"opcode":"operator_multiply","next":null,"parent":"aK^","inputs":{"NUM1":[3,"bHJ",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"bHJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK_","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"M}":{"opcode":"data_replaceitemoflist","next":"M~","parent":"M|","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aK`",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aK`":{"opcode":"operator_mod","next":null,"parent":"M}","inputs":{"NUM1":[3,"aK{",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aK{":{"opcode":"operator_add","next":null,"parent":"aK`","inputs":{"NUM1":[3,"aK|",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aK|":{"opcode":"operator_multiply","next":null,"parent":"aK{","inputs":{"NUM1":[3,"bHK",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"bHK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aK|","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"M~":{"opcode":"data_replaceitemoflist","next":"aK}","parent":"M}","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aK~",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aK~":{"opcode":"operator_mod","next":null,"parent":"M~","inputs":{"NUM1":[3,"aLa",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLa":{"opcode":"operator_add","next":null,"parent":"aK~","inputs":{"NUM1":[3,"aLb",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"aLb":{"opcode":"operator_multiply","next":null,"parent":"aLa","inputs":{"NUM1":[3,"bHL",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"bHL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLb","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"aK}":{"opcode":"data_replaceitemoflist","next":null,"parent":"M~","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aLc",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLc":{"opcode":"operator_mod","next":null,"parent":"aK}","inputs":{"NUM1":[3,"aLd",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLd":{"opcode":"operator_add","next":null,"parent":"aLc","inputs":{"NUM1":[3,"aLe",[4,0]],"NUM2":[1,[4,"24576"]]},"fields":{},"shadow":false,"topLevel":false},"aLe":{"opcode":"operator_multiply","next":null,"parent":"aLd","inputs":{"NUM1":[3,"bHM",[4,0]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"bHM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLe","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"aLf":{"opcode":"procedures_definition","next":"Na","parent":null,"inputs":{"custom_block":[1,"R"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":4424},"R":{"opcode":"procedures_prototype","next":null,"parent":"aLf","inputs":{"R}(8Cn3#y*26i(xa@[-V":[1,"bHN"],"GnVS0M9v5Op0apg}.{0D":[1,"bHO"],"8~FF,T{(cQ{AS5[`OPn[":[1,"bHP"],"M.aj{qup%g}995:UVZ[:":[1,"bHQ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"bHN":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bHO":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"bHP":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"bHQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"Na":{"opcode":"data_replaceitemoflist","next":"Nb","parent":"aLf","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aLg",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLg":{"opcode":"operator_mod","next":null,"parent":"Na","inputs":{"NUM1":[3,"aLh",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLh":{"opcode":"operator_multiply","next":null,"parent":"aLg","inputs":{"NUM1":[3,"bHR",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bHR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLh","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Nb":{"opcode":"data_replaceitemoflist","next":"E(","parent":"Na","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aLi",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLi":{"opcode":"operator_mod","next":null,"parent":"Nb","inputs":{"NUM1":[3,"aLj",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLj":{"opcode":"operator_multiply","next":null,"parent":"aLi","inputs":{"NUM1":[3,"bHS",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bHS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLj","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"E(":{"opcode":"data_replaceitemoflist","next":"aLk","parent":"Nb","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aLl",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLl":{"opcode":"operator_mod","next":null,"parent":"E(","inputs":{"NUM1":[3,"aLm",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLm":{"opcode":"operator_multiply","next":null,"parent":"aLl","inputs":{"NUM1":[3,"bHT",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bHT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLm","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"aLk":{"opcode":"data_replaceitemoflist","next":null,"parent":"E(","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aLn",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLn":{"opcode":"operator_mod","next":null,"parent":"aLk","inputs":{"NUM1":[3,"aLo",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLo":{"opcode":"operator_multiply","next":null,"parent":"aLn","inputs":{"NUM1":[3,"bHU",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bHU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLo","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"aLp":{"opcode":"procedures_definition","next":"E)","parent":null,"inputs":{"custom_block":[1,"S"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":4820},"S":{"opcode":"procedures_prototype","next":null,"parent":"aLp","inputs":{"zEgKC2?ujRK=)j3:+.w(":[1,"bHV"],"V,g^(cH^?K.@xOHvuKtw":[1,"bHW"],"s;]r;$gJ248kPn|tZMEK":[1,"bHX"],"2}nHlcvfboZI~h.|r/{|":[1,"bHY"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"bHV":{"opcode":"argument_reporter_string_number","next":null,"parent":"S","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bHW":{"opcode":"argument_reporter_string_number","next":null,"parent":"S","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"bHX":{"opcode":"argument_reporter_string_number","next":null,"parent":"S","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"bHY":{"opcode":"argument_reporter_string_number","next":null,"parent":"S","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"E)":{"opcode":"data_replaceitemoflist","next":"E*","parent":"aLp","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aLq",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLq":{"opcode":"operator_mod","next":null,"parent":"E)","inputs":{"NUM1":[3,"aLr",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLr":{"opcode":"operator_multiply","next":null,"parent":"aLq","inputs":{"NUM1":[3,"bHZ",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bHZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLr","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"E*":{"opcode":"data_replaceitemoflist","next":"E+","parent":"E)","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"aLs",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLs":{"opcode":"operator_mod","next":null,"parent":"E*","inputs":{"NUM1":[3,"aLt",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLt":{"opcode":"operator_multiply","next":null,"parent":"aLs","inputs":{"NUM1":[3,"bH!",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bH!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLt","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"E+":{"opcode":"data_replaceitemoflist","next":"aLu","parent":"E*","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aLv",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLv":{"opcode":"operator_mod","next":null,"parent":"E+","inputs":{"NUM1":[3,"aLw",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLw":{"opcode":"operator_multiply","next":null,"parent":"aLv","inputs":{"NUM1":[3,"bH#",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bH#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLw","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"aLu":{"opcode":"data_replaceitemoflist","next":null,"parent":"E+","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aLx",[10,""]]},"fields":{"LIST":["@chr_banks","KNRSCd@{D{rg%w?EkH2Y"]},"shadow":false,"topLevel":false},"aLx":{"opcode":"operator_mod","next":null,"parent":"aLu","inputs":{"NUM1":[3,"aLy",[4,0]],"NUM2":[3,[12,"chr_size","W35mZn3CY:LS+.IAtmge"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLy":{"opcode":"operator_multiply","next":null,"parent":"aLx","inputs":{"NUM1":[3,"bH%",[4,0]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bH%":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLy","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"aLz":{"opcode":"procedures_definition","next":"E,","parent":null,"inputs":{"custom_block":[1,"E-"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":1812},"E-":{"opcode":"procedures_prototype","next":null,"parent":"aLz","inputs":{"xw^iKl}Q9Utn5G${B3DL":[1,"bH("],"-ka?M!q5i3ep8!$FNtaR":[1,"bH)"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","argumentnames":"[\"bank0\",\"bank1\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bH(":{"opcode":"argument_reporter_string_number","next":null,"parent":"E-","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bH)":{"opcode":"argument_reporter_string_number","next":null,"parent":"E-","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"E,":{"opcode":"data_replaceitemoflist","next":"E.","parent":"aLz","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aLA",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLA":{"opcode":"operator_mod","next":null,"parent":"E,","inputs":{"NUM1":[3,"aLB",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLB":{"opcode":"operator_multiply","next":null,"parent":"aLA","inputs":{"NUM1":[3,"bH*",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bH*":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLB","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"E.":{"opcode":"data_replaceitemoflist","next":"E/","parent":"E,","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aLC",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLC":{"opcode":"operator_mod","next":null,"parent":"E.","inputs":{"NUM1":[3,"aLD",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLD":{"opcode":"operator_add","next":null,"parent":"aLC","inputs":{"NUM1":[3,"aLE",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aLE":{"opcode":"operator_multiply","next":null,"parent":"aLD","inputs":{"NUM1":[3,"bH+",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bH+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLE","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"E/":{"opcode":"data_replaceitemoflist","next":"aLF","parent":"E.","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aLG",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLG":{"opcode":"operator_mod","next":null,"parent":"E/","inputs":{"NUM1":[3,"aLH",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLH":{"opcode":"operator_multiply","next":null,"parent":"aLG","inputs":{"NUM1":[3,"bH,",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bH,":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLH","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"aLF":{"opcode":"data_replaceitemoflist","next":null,"parent":"E/","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aLI",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLI":{"opcode":"operator_mod","next":null,"parent":"aLF","inputs":{"NUM1":[3,"aLJ",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLJ":{"opcode":"operator_add","next":null,"parent":"aLI","inputs":{"NUM1":[3,"aLK",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aLK":{"opcode":"operator_multiply","next":null,"parent":"aLJ","inputs":{"NUM1":[3,"bH-",[4,0]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bH-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLK","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"aLL":{"opcode":"procedures_definition","next":"E:","parent":null,"inputs":{"custom_block":[1,"l!"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":2224},"l!":{"opcode":"procedures_prototype","next":null,"parent":"aLL","inputs":{"w#BC#Nq[j}#muQb6}dLa":[1,"bH."],"@NOZG?i.@jcwoJi(*EQ=":[1,"bH/"],"/=1M^S?9BD*f%@MRoeZC":[1,"bH:"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bH.":{"opcode":"argument_reporter_string_number","next":null,"parent":"l!","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bH/":{"opcode":"argument_reporter_string_number","next":null,"parent":"l!","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"bH:":{"opcode":"argument_reporter_string_number","next":null,"parent":"l!","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"E:":{"opcode":"data_replaceitemoflist","next":"E;","parent":"aLL","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aLM",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLM":{"opcode":"operator_mod","next":null,"parent":"E:","inputs":{"NUM1":[3,"aLN",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLN":{"opcode":"operator_multiply","next":null,"parent":"aLM","inputs":{"NUM1":[3,"bH;",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bH;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLN","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"E;":{"opcode":"data_replaceitemoflist","next":"E=","parent":"E:","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aLO",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLO":{"opcode":"operator_mod","next":null,"parent":"E;","inputs":{"NUM1":[3,"aLP",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLP":{"opcode":"operator_multiply","next":null,"parent":"aLO","inputs":{"NUM1":[3,"bH=",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bH=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLP","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"E=":{"opcode":"data_replaceitemoflist","next":"aLQ","parent":"E;","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aLR",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLR":{"opcode":"operator_mod","next":null,"parent":"E=","inputs":{"NUM1":[3,"aLS",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aLS":{"opcode":"operator_multiply","next":null,"parent":"aLR","inputs":{"NUM1":[3,"bH?",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bH?":{"opcode":"argument_reporter_string_number","next":null,"parent":"aLS","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"aLQ":{"opcode":"data_replaceitemoflist","next":null,"parent":"E=","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aLT",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aLT":{"opcode":"operator_mod","next":null,"parent":"aLQ","inputs":{"NUM1":[3,"bH@",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bH@":{"opcode":"operator_subtract","next":null,"parent":"aLT","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aLU":{"opcode":"procedures_definition","next":"aLV","parent":null,"inputs":{"custom_block":[1,"bH["]},"fields":{},"shadow":false,"topLevel":true,"x":543,"y":5344},"bH[":{"opcode":"procedures_prototype","next":null,"parent":"aLU","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aLV":{"opcode":"data_setvariableto","next":"aLW","parent":"aLU","inputs":{"VALUE":[1,[10,"65532"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aLW":{"opcode":"procedures_call","next":"aLX","parent":"aLV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aLX":{"opcode":"data_setvariableto","next":"aLY","parent":"aLW","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aLY":{"opcode":"data_setvariableto","next":"aLZ","parent":"aLX","inputs":{"VALUE":[1,[10,"65533"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aLZ":{"opcode":"procedures_call","next":"E?","parent":"aLY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"E?":{"opcode":"data_setvariableto","next":"aL!","parent":"aLZ","inputs":{"VALUE":[3,"aL#",[10,""]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"aL#":{"opcode":"operator_add","next":null,"parent":"E?","inputs":{"NUM1":[3,"bH]",[4,0]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bH]":{"opcode":"operator_multiply","next":null,"parent":"aL#","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aL!":{"opcode":"data_setvariableto","next":"aL%","parent":"E?","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!I","wJv)p=)7?CJ}66t~yQza"]},"shadow":false,"topLevel":false},"aL%":{"opcode":"data_setvariableto","next":null,"parent":"aL!","inputs":{"VALUE":[3,"aL(",[10,""]]},"fields":{"VARIABLE":["!SP","3U:*vMhK7gf],IM6zRp["]},"shadow":false,"topLevel":false},"aL(":{"opcode":"operator_mod","next":null,"parent":"aL%","inputs":{"NUM1":[3,"bH^",[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bH^":{"opcode":"operator_subtract","next":null,"parent":"aL(","inputs":{"NUM1":[3,[12,"!SP","3U:*vMhK7gf],IM6zRp["],[4,0]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aL)":{"opcode":"procedures_definition","next":"l#","parent":null,"inputs":{"custom_block":[1,"bH_"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":9208},"bH_":{"opcode":"procedures_prototype","next":null,"parent":"aL)","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$jy","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"l#":{"opcode":"control_if","next":"l%","parent":"aL)","inputs":{"CONDITION":[2,"E@"],"SUBSTACK":[2,"l("]},"fields":{},"shadow":false,"topLevel":false},"E@":{"opcode":"operator_and","next":null,"parent":"l#","inputs":{"OPERAND1":[2,"bH`"],"OPERAND2":[2,"bH{"]},"fields":{},"shadow":false,"topLevel":false},"bH`":{"opcode":"operator_gt","next":null,"parent":"E@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bH{":{"opcode":"operator_lt","next":null,"parent":"E@","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"34816"]]},"fields":{},"shadow":false,"topLevel":false},"l(":{"opcode":"control_if","next":"l)","parent":"l#","inputs":{"CONDITION":[2,"aL*"],"SUBSTACK":[2,"aL+"]},"fields":{},"shadow":false,"topLevel":false},"aL*":{"opcode":"operator_equals","next":null,"parent":"l(","inputs":{"OPERAND1":[3,"bH|",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bH|":{"opcode":"operator_mod","next":null,"parent":"aL*","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aL+":{"opcode":"data_setvariableto","next":null,"parent":"l(","inputs":{"VALUE":[3,"bH}",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bH}":{"opcode":"operator_mod","next":null,"parent":"aL+","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"l)":{"opcode":"control_if","next":"l*","parent":"l(","inputs":{"CONDITION":[2,"aL,"],"SUBSTACK":[2,"aL-"]},"fields":{},"shadow":false,"topLevel":false},"aL,":{"opcode":"operator_equals","next":null,"parent":"l)","inputs":{"OPERAND1":[3,"bH~",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bH~":{"opcode":"operator_mod","next":null,"parent":"aL,","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aL-":{"opcode":"data_setvariableto","next":null,"parent":"l)","inputs":{"VALUE":[3,"bIa",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"bIa":{"opcode":"operator_mod","next":null,"parent":"aL-","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"l*":{"opcode":"control_if","next":"E[","parent":"l)","inputs":{"CONDITION":[2,"aL."],"SUBSTACK":[2,"aL/"]},"fields":{},"shadow":false,"topLevel":false},"aL.":{"opcode":"operator_equals","next":null,"parent":"l*","inputs":{"OPERAND1":[3,"bIb",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bIb":{"opcode":"operator_mod","next":null,"parent":"aL.","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aL/":{"opcode":"data_setvariableto","next":null,"parent":"l*","inputs":{"VALUE":[3,"bIc",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"bIc":{"opcode":"operator_mod","next":null,"parent":"aL/","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"E[":{"opcode":"control_if","next":null,"parent":"l*","inputs":{"CONDITION":[2,"aL:"],"SUBSTACK":[2,"aL;"]},"fields":{},"shadow":false,"topLevel":false},"aL:":{"opcode":"operator_equals","next":null,"parent":"E[","inputs":{"OPERAND1":[3,"bId",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bId":{"opcode":"operator_mod","next":null,"parent":"aL:","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aL;":{"opcode":"data_setvariableto","next":null,"parent":"E[","inputs":{"VALUE":[3,"bIe",[10,""]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"bIe":{"opcode":"operator_mod","next":null,"parent":"aL;","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"l%":{"opcode":"control_if","next":"l+","parent":"l#","inputs":{"CONDITION":[2,"E]"],"SUBSTACK":[2,"l,"]},"fields":{},"shadow":false,"topLevel":false},"E]":{"opcode":"operator_and","next":null,"parent":"l%","inputs":{"OPERAND1":[2,"bIf"],"OPERAND2":[2,"bIg"]},"fields":{},"shadow":false,"topLevel":false},"bIf":{"opcode":"operator_gt","next":null,"parent":"E]","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"36863"]]},"fields":{},"shadow":false,"topLevel":false},"bIg":{"opcode":"operator_lt","next":null,"parent":"E]","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"38912"]]},"fields":{},"shadow":false,"topLevel":false},"l,":{"opcode":"control_if","next":"l-","parent":"l%","inputs":{"CONDITION":[2,"aL="],"SUBSTACK":[2,"bIh"]},"fields":{},"shadow":false,"topLevel":false},"aL=":{"opcode":"operator_equals","next":null,"parent":"l,","inputs":{"OPERAND1":[3,"bIi",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bIi":{"opcode":"operator_mod","next":null,"parent":"aL=","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIh":{"opcode":"data_setvariableto","next":null,"parent":"l,","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"l-":{"opcode":"control_if","next":"l.","parent":"l,","inputs":{"CONDITION":[2,"aL?"],"SUBSTACK":[2,"bIj"]},"fields":{},"shadow":false,"topLevel":false},"aL?":{"opcode":"operator_equals","next":null,"parent":"l-","inputs":{"OPERAND1":[3,"bIk",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bIk":{"opcode":"operator_mod","next":null,"parent":"aL?","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIj":{"opcode":"data_setvariableto","next":null,"parent":"l-","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"l.":{"opcode":"control_if","next":"l/","parent":"l-","inputs":{"CONDITION":[2,"aL@"],"SUBSTACK":[2,"bIl"]},"fields":{},"shadow":false,"topLevel":false},"aL@":{"opcode":"operator_equals","next":null,"parent":"l.","inputs":{"OPERAND1":[3,"bIm",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bIm":{"opcode":"operator_mod","next":null,"parent":"aL@","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIl":{"opcode":"data_setvariableto","next":null,"parent":"l.","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"l/":{"opcode":"control_if","next":"l:","parent":"l.","inputs":{"CONDITION":[2,"aL["],"SUBSTACK":[2,"bIn"]},"fields":{},"shadow":false,"topLevel":false},"aL[":{"opcode":"operator_equals","next":null,"parent":"l/","inputs":{"OPERAND1":[3,"bIo",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bIo":{"opcode":"operator_mod","next":null,"parent":"aL[","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIn":{"opcode":"data_setvariableto","next":null,"parent":"l/","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"l:":{"opcode":"control_if","next":"l;","parent":"l/","inputs":{"CONDITION":[2,"aL]"],"SUBSTACK":[2,"bIp"]},"fields":{},"shadow":false,"topLevel":false},"aL]":{"opcode":"operator_equals","next":null,"parent":"l:","inputs":{"OPERAND1":[3,"bIq",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bIq":{"opcode":"operator_mod","next":null,"parent":"aL]","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIp":{"opcode":"data_setvariableto","next":null,"parent":"l:","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"l;":{"opcode":"control_if","next":"l=","parent":"l:","inputs":{"CONDITION":[2,"aL^"],"SUBSTACK":[2,"bIr"]},"fields":{},"shadow":false,"topLevel":false},"aL^":{"opcode":"operator_equals","next":null,"parent":"l;","inputs":{"OPERAND1":[3,"bIs",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bIs":{"opcode":"operator_mod","next":null,"parent":"aL^","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIr":{"opcode":"data_setvariableto","next":null,"parent":"l;","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"l=":{"opcode":"control_if","next":"E^","parent":"l;","inputs":{"CONDITION":[2,"aL_"],"SUBSTACK":[2,"bIt"]},"fields":{},"shadow":false,"topLevel":false},"aL_":{"opcode":"operator_equals","next":null,"parent":"l=","inputs":{"OPERAND1":[3,"bIu",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bIu":{"opcode":"operator_mod","next":null,"parent":"aL_","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIt":{"opcode":"data_setvariableto","next":null,"parent":"l=","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"E^":{"opcode":"control_if","next":null,"parent":"l=","inputs":{"CONDITION":[2,"aL`"],"SUBSTACK":[2,"bIv"]},"fields":{},"shadow":false,"topLevel":false},"aL`":{"opcode":"operator_equals","next":null,"parent":"E^","inputs":{"OPERAND1":[3,"bIw",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bIw":{"opcode":"operator_mod","next":null,"parent":"aL`","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIv":{"opcode":"data_setvariableto","next":null,"parent":"E^","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"l+":{"opcode":"control_if","next":"l?","parent":"l%","inputs":{"CONDITION":[2,"E_"],"SUBSTACK":[2,"l@"]},"fields":{},"shadow":false,"topLevel":false},"E_":{"opcode":"operator_and","next":null,"parent":"l+","inputs":{"OPERAND1":[2,"bIx"],"OPERAND2":[2,"bIy"]},"fields":{},"shadow":false,"topLevel":false},"bIx":{"opcode":"operator_gt","next":null,"parent":"E_","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bIy":{"opcode":"operator_lt","next":null,"parent":"E_","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53248"]]},"fields":{},"shadow":false,"topLevel":false},"l@":{"opcode":"control_if","next":"l[","parent":"l+","inputs":{"CONDITION":[2,"aL{"],"SUBSTACK":[2,"aL|"]},"fields":{},"shadow":false,"topLevel":false},"aL{":{"opcode":"operator_equals","next":null,"parent":"l@","inputs":{"OPERAND1":[3,"bIz",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bIz":{"opcode":"operator_mod","next":null,"parent":"aL{","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aL|":{"opcode":"data_setvariableto","next":null,"parent":"l@","inputs":{"VALUE":[3,"bIA",[10,""]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"bIA":{"opcode":"operator_mod","next":null,"parent":"aL|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"l[":{"opcode":"control_if","next":"l]","parent":"l@","inputs":{"CONDITION":[2,"aL}"],"SUBSTACK":[2,"aL~"]},"fields":{},"shadow":false,"topLevel":false},"aL}":{"opcode":"operator_equals","next":null,"parent":"l[","inputs":{"OPERAND1":[3,"bIB",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bIB":{"opcode":"operator_mod","next":null,"parent":"aL}","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aL~":{"opcode":"data_setvariableto","next":"E`","parent":"l[","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"E`":{"opcode":"control_if","next":null,"parent":"aL~","inputs":{"CONDITION":[2,"bIC"],"SUBSTACK":[2,"aMa"]},"fields":{},"shadow":false,"topLevel":false},"bIC":{"opcode":"operator_equals","next":null,"parent":"E`","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aMa":{"opcode":"data_changevariableby","next":"bID","parent":"E`","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bID":{"opcode":"data_setvariableto","next":null,"parent":"aMa","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"l]":{"opcode":"control_if","next":"E{","parent":"l[","inputs":{"CONDITION":[2,"aMb"],"SUBSTACK":[2,"bIE"]},"fields":{},"shadow":false,"topLevel":false},"aMb":{"opcode":"operator_equals","next":null,"parent":"l]","inputs":{"OPERAND1":[3,"bIF",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bIF":{"opcode":"operator_mod","next":null,"parent":"aMb","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIE":{"opcode":"data_setvariableto","next":null,"parent":"l]","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"E{":{"opcode":"control_if","next":null,"parent":"l]","inputs":{"CONDITION":[2,"aMc"],"SUBSTACK":[2,"bIG"]},"fields":{},"shadow":false,"topLevel":false},"aMc":{"opcode":"operator_equals","next":null,"parent":"E{","inputs":{"OPERAND1":[3,"bIH",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bIH":{"opcode":"operator_mod","next":null,"parent":"aMc","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bIG":{"opcode":"data_setvariableto","next":null,"parent":"E{","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"l?":{"opcode":"control_if","next":"l^","parent":"l+","inputs":{"CONDITION":[2,"E|"],"SUBSTACK":[2,"E}"]},"fields":{},"shadow":false,"topLevel":false},"E|":{"opcode":"operator_and","next":null,"parent":"l?","inputs":{"OPERAND1":[2,"bII"],"OPERAND2":[2,"bIJ"]},"fields":{},"shadow":false,"topLevel":false},"bII":{"opcode":"operator_gt","next":null,"parent":"E|","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"53247"]]},"fields":{},"shadow":false,"topLevel":false},"bIJ":{"opcode":"operator_lt","next":null,"parent":"E|","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"55296"]]},"fields":{},"shadow":false,"topLevel":false},"E}":{"opcode":"control_if","next":null,"parent":"l?","inputs":{"CONDITION":[2,"aMd"],"SUBSTACK":[2,"E~"]},"fields":{},"shadow":false,"topLevel":false},"aMd":{"opcode":"operator_equals","next":null,"parent":"E}","inputs":{"OPERAND1":[3,"bIK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bIK":{"opcode":"operator_mod","next":null,"parent":"aMd","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"E~":{"opcode":"data_setvariableto","next":"Fa","parent":"E}","inputs":{"VALUE":[3,"bIL",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"bIL":{"opcode":"operator_mod","next":null,"parent":"E~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Fa":{"opcode":"data_setvariableto","next":"aMe","parent":"E~","inputs":{"VALUE":[3,"aMf",[10,""]]},"fields":{"VARIABLE":["$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"]},"shadow":false,"topLevel":false},"aMf":{"opcode":"operator_mod","next":null,"parent":"Fa","inputs":{"NUM1":[3,"aMg",[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aMg":{"opcode":"operator_mathop","next":null,"parent":"aMf","inputs":{"NUM":[3,"bIM",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bIM":{"opcode":"operator_divide","next":null,"parent":"aMg","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aMe":{"opcode":"data_setvariableto","next":null,"parent":"Fa","inputs":{"VALUE":[3,"aMh",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"aMh":{"opcode":"operator_mod","next":null,"parent":"aMe","inputs":{"NUM1":[3,"aMi",[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aMi":{"opcode":"operator_mathop","next":null,"parent":"aMh","inputs":{"NUM":[3,"bIN",[4,0]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bIN":{"opcode":"operator_divide","next":null,"parent":"aMi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"l^":{"opcode":"control_if","next":"Fb","parent":"l?","inputs":{"CONDITION":[2,"bIO"],"SUBSTACK":[2,"YE"]},"fields":{},"shadow":false,"topLevel":false},"bIO":{"opcode":"operator_equals","next":null,"parent":"l^","inputs":{"OPERAND1":[3,[12,"$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"YE":{"opcode":"control_if_else","next":null,"parent":"l^","inputs":{"CONDITION":[2,"bIP"],"SUBSTACK":[2,"bIQ"],"SUBSTACK2":[2,"bIR"]},"fields":{},"shadow":false,"topLevel":false},"bIP":{"opcode":"operator_equals","next":null,"parent":"YE","inputs":{"OPERAND1":[3,[12,"$jy_swaplastbank","LVknz2u[sZIs|sIk67S%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bIQ":{"opcode":"procedures_call","next":null,"parent":"YE","inputs":{"w4Y/{/2!4#(-!Xv9#x|1":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"4_=h1W.x?p]8pIme+4to":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"$q9;t|#EDp:4jRHOMaB)":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]],")bHR:Vs8O(F.Q5dylq?P":[3,[12,"$prg_bank3","IH-i^bTE9H)(~1qQP=%i"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k %s %s %s %s","argumentids":"[\"w4Y/{/2!4#(-!Xv9#x|1\",\"4_=h1W.x?p]8pIme+4to\",\"$q9;t|#EDp:4jRHOMaB)\",\")bHR:Vs8O(F.Q5dylq?P\"]","warp":"true"}},"bIR":{"opcode":"procedures_call","next":null,"parent":"YE","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"Fb":{"opcode":"control_if","next":null,"parent":"l^","inputs":{"CONDITION":[2,"bIS"],"SUBSTACK":[2,"aMj"]},"fields":{},"shadow":false,"topLevel":false},"bIS":{"opcode":"operator_equals","next":null,"parent":"Fb","inputs":{"OPERAND1":[3,[12,"$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aMj":{"opcode":"procedures_call","next":"bIT","parent":"Fb","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"bIT":{"opcode":"procedures_call","next":null,"parent":"aMj","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank7","BG.CoXmh.n|7S`teB%Cz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"aMk":{"opcode":"procedures_definition","next":"Fc","parent":null,"inputs":{"custom_block":[1,"~"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":2620},"~":{"opcode":"procedures_prototype","next":null,"parent":"aMk","inputs":{"w4Y/{/2!4#(-!Xv9#x|1":[1,"bIU"],"4_=h1W.x?p]8pIme+4to":[1,"bIV"],"$q9;t|#EDp:4jRHOMaB)":[1,"bIW"],")bHR:Vs8O(F.Q5dylq?P":[1,"bIX"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k %s %s %s %s","argumentids":"[\"w4Y/{/2!4#(-!Xv9#x|1\",\"4_=h1W.x?p]8pIme+4to\",\"$q9;t|#EDp:4jRHOMaB)\",\")bHR:Vs8O(F.Q5dylq?P\"]","argumentnames":"[\"bank0\",\"bank1\",\"bank2\",\"bank3\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"bIU":{"opcode":"argument_reporter_string_number","next":null,"parent":"~","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":true,"topLevel":false},"bIV":{"opcode":"argument_reporter_string_number","next":null,"parent":"~","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":true,"topLevel":false},"bIW":{"opcode":"argument_reporter_string_number","next":null,"parent":"~","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":true,"topLevel":false},"bIX":{"opcode":"argument_reporter_string_number","next":null,"parent":"~","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":true,"topLevel":false},"Fc":{"opcode":"data_replaceitemoflist","next":"Fd","parent":"aMk","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aMl",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aMl":{"opcode":"operator_mod","next":null,"parent":"Fc","inputs":{"NUM1":[3,"aMm",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aMm":{"opcode":"operator_multiply","next":null,"parent":"aMl","inputs":{"NUM1":[3,"bIY",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bIY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aMm","inputs":{},"fields":{"VALUE":["bank0",null]},"shadow":false,"topLevel":false},"Fd":{"opcode":"data_replaceitemoflist","next":"Fe","parent":"Fc","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"aMn",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aMn":{"opcode":"operator_mod","next":null,"parent":"Fd","inputs":{"NUM1":[3,"aMo",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aMo":{"opcode":"operator_multiply","next":null,"parent":"aMn","inputs":{"NUM1":[3,"bIZ",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bIZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aMo","inputs":{},"fields":{"VALUE":["bank1",null]},"shadow":false,"topLevel":false},"Fe":{"opcode":"data_replaceitemoflist","next":"aMp","parent":"Fd","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"aMq",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aMq":{"opcode":"operator_mod","next":null,"parent":"Fe","inputs":{"NUM1":[3,"aMr",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aMr":{"opcode":"operator_multiply","next":null,"parent":"aMq","inputs":{"NUM1":[3,"bI!",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bI!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aMr","inputs":{},"fields":{"VALUE":["bank2",null]},"shadow":false,"topLevel":false},"aMp":{"opcode":"data_replaceitemoflist","next":null,"parent":"Fe","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"aMs",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aMs":{"opcode":"operator_mod","next":null,"parent":"aMp","inputs":{"NUM1":[3,"aMt",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aMt":{"opcode":"operator_multiply","next":null,"parent":"aMs","inputs":{"NUM1":[3,"bI#",[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bI#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aMt","inputs":{},"fields":{"VALUE":["bank3",null]},"shadow":false,"topLevel":false},"aMu":{"opcode":"procedures_definition","next":"YF","parent":null,"inputs":{"custom_block":[1,"bI%"]},"fields":{},"shadow":false,"topLevel":true,"x":20732,"y":13044},"bI%":{"opcode":"procedures_prototype","next":null,"parent":"aMu","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$simple_mmc3","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"YF":{"opcode":"control_if","next":"Ff","parent":"aMu","inputs":{"CONDITION":[2,"Fg"],"SUBSTACK":[2,"YG"]},"fields":{},"shadow":false,"topLevel":false},"Fg":{"opcode":"operator_and","next":null,"parent":"YF","inputs":{"OPERAND1":[2,"bI("],"OPERAND2":[2,"bI)"]},"fields":{},"shadow":false,"topLevel":false},"bI(":{"opcode":"operator_gt","next":null,"parent":"Fg","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bI)":{"opcode":"operator_lt","next":null,"parent":"Fg","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"YG":{"opcode":"control_if","next":"Fh","parent":"YF","inputs":{"CONDITION":[2,"aMv"],"SUBSTACK":[2,"Fi"]},"fields":{},"shadow":false,"topLevel":false},"aMv":{"opcode":"operator_equals","next":null,"parent":"YG","inputs":{"OPERAND1":[3,"bI*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bI*":{"opcode":"operator_mod","next":null,"parent":"aMv","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fi":{"opcode":"data_setvariableto","next":"Fj","parent":"YG","inputs":{"VALUE":[3,"bI+",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"bI+":{"opcode":"operator_mod","next":null,"parent":"Fi","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Fj":{"opcode":"data_setvariableto","next":"aMw","parent":"Fi","inputs":{"VALUE":[3,"aMx",[10,""]]},"fields":{"VARIABLE":["$prg_bank_mode","O#|syv58E[Gj7U_`IiNq"]},"shadow":false,"topLevel":false},"aMx":{"opcode":"operator_add","next":null,"parent":"Fj","inputs":{"NUM1":[3,"aMy",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aMy":{"opcode":"operator_gt","next":null,"parent":"aMx","inputs":{"OPERAND1":[3,"bI,",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bI,":{"opcode":"operator_mod","next":null,"parent":"aMy","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aMw":{"opcode":"data_setvariableto","next":null,"parent":"Fj","inputs":{"VALUE":[3,"aMz",[10,""]]},"fields":{"VARIABLE":["$chr_bank_mode","=4{R,[SzAGXWuCu4/kL2"]},"shadow":false,"topLevel":false},"aMz":{"opcode":"operator_add","next":null,"parent":"aMw","inputs":{"NUM1":[3,"bI-",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bI-":{"opcode":"operator_gt","next":null,"parent":"aMz","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Fh":{"opcode":"control_if","next":null,"parent":"YG","inputs":{"CONDITION":[2,"aMA"],"SUBSTACK":[2,"YH"]},"fields":{},"shadow":false,"topLevel":false},"aMA":{"opcode":"operator_equals","next":null,"parent":"Fh","inputs":{"OPERAND1":[3,"bI.",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bI.":{"opcode":"operator_mod","next":null,"parent":"aMA","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"YH":{"opcode":"control_if","next":"YI","parent":"Fh","inputs":{"CONDITION":[2,"bI/"],"SUBSTACK":[2,"aMB"]},"fields":{},"shadow":false,"topLevel":false},"bI/":{"opcode":"operator_equals","next":null,"parent":"YH","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aMB":{"opcode":"data_setvariableto","next":null,"parent":"YH","inputs":{"VALUE":[3,"bI:",[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"bI:":{"opcode":"operator_mod","next":null,"parent":"aMB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YI":{"opcode":"control_if","next":"YJ","parent":"YH","inputs":{"CONDITION":[2,"bI;"],"SUBSTACK":[2,"aMC"]},"fields":{},"shadow":false,"topLevel":false},"bI;":{"opcode":"operator_equals","next":null,"parent":"YI","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aMC":{"opcode":"data_setvariableto","next":null,"parent":"YI","inputs":{"VALUE":[3,"bI=",[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"bI=":{"opcode":"operator_mod","next":null,"parent":"aMC","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YJ":{"opcode":"control_if","next":"YK","parent":"YI","inputs":{"CONDITION":[2,"bI?"],"SUBSTACK":[2,"aMD"]},"fields":{},"shadow":false,"topLevel":false},"bI?":{"opcode":"operator_equals","next":null,"parent":"YJ","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aMD":{"opcode":"data_setvariableto","next":null,"parent":"YJ","inputs":{"VALUE":[3,"bI@",[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"bI@":{"opcode":"operator_mod","next":null,"parent":"aMD","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YK":{"opcode":"control_if","next":"YL","parent":"YJ","inputs":{"CONDITION":[2,"bI["],"SUBSTACK":[2,"aME"]},"fields":{},"shadow":false,"topLevel":false},"bI[":{"opcode":"operator_equals","next":null,"parent":"YK","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aME":{"opcode":"data_setvariableto","next":null,"parent":"YK","inputs":{"VALUE":[3,"bI]",[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"bI]":{"opcode":"operator_mod","next":null,"parent":"aME","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YL":{"opcode":"control_if","next":"YM","parent":"YK","inputs":{"CONDITION":[2,"bI^"],"SUBSTACK":[2,"aMF"]},"fields":{},"shadow":false,"topLevel":false},"bI^":{"opcode":"operator_equals","next":null,"parent":"YL","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aMF":{"opcode":"data_setvariableto","next":null,"parent":"YL","inputs":{"VALUE":[3,"bI_",[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"bI_":{"opcode":"operator_mod","next":null,"parent":"aMF","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YM":{"opcode":"control_if","next":"YN","parent":"YL","inputs":{"CONDITION":[2,"bI`"],"SUBSTACK":[2,"aMG"]},"fields":{},"shadow":false,"topLevel":false},"bI`":{"opcode":"operator_equals","next":null,"parent":"YM","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aMG":{"opcode":"data_setvariableto","next":null,"parent":"YM","inputs":{"VALUE":[3,"bI{",[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"bI{":{"opcode":"operator_mod","next":null,"parent":"aMG","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"YN":{"opcode":"control_if","next":"Fk","parent":"YM","inputs":{"CONDITION":[2,"bI|"],"SUBSTACK":[2,"aMH"]},"fields":{},"shadow":false,"topLevel":false},"bI|":{"opcode":"operator_equals","next":null,"parent":"YN","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aMH":{"opcode":"data_setvariableto","next":null,"parent":"YN","inputs":{"VALUE":[3,"bI}",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bI}":{"opcode":"operator_mod","next":null,"parent":"aMH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Fk":{"opcode":"control_if","next":null,"parent":"YN","inputs":{"CONDITION":[2,"bI~"],"SUBSTACK":[2,"aMI"]},"fields":{},"shadow":false,"topLevel":false},"bI~":{"opcode":"operator_equals","next":null,"parent":"Fk","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"aMI":{"opcode":"data_setvariableto","next":null,"parent":"Fk","inputs":{"VALUE":[3,"bJa",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"bJa":{"opcode":"operator_mod","next":null,"parent":"aMI","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ff":{"opcode":"procedures_call","next":"d@","parent":"YF","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,"bJb",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"bJb":{"opcode":"operator_subtract","next":null,"parent":"Ff","inputs":{"NUM1":[3,[12,"$prg_banks","HM)En0c}chMa#CL/6:U:"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aMJ":{"opcode":"procedures_definition","next":"l_","parent":null,"inputs":{"custom_block":[1,"bJc"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":7176},"bJc":{"opcode":"procedures_prototype","next":null,"parent":"aMJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$fme7","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"l_":{"opcode":"control_if","next":"l`","parent":"aMJ","inputs":{"CONDITION":[2,"Fl"],"SUBSTACK":[2,"aMK"]},"fields":{},"shadow":false,"topLevel":false},"Fl":{"opcode":"operator_and","next":null,"parent":"l_","inputs":{"OPERAND1":[2,"bJd"],"OPERAND2":[2,"bJe"]},"fields":{},"shadow":false,"topLevel":false},"bJd":{"opcode":"operator_gt","next":null,"parent":"Fl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"bJe":{"opcode":"operator_lt","next":null,"parent":"Fl","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40960"]]},"fields":{},"shadow":false,"topLevel":false},"aMK":{"opcode":"data_setvariableto","next":null,"parent":"l_","inputs":{"VALUE":[3,"bJf",[10,""]]},"fields":{"VARIABLE":["$reg0","Rsej-utFuPehsXAVyTSL"]},"shadow":false,"topLevel":false},"bJf":{"opcode":"operator_mod","next":null,"parent":"aMK","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"l`":{"opcode":"control_if","next":"l{","parent":"l_","inputs":{"CONDITION":[2,"%t"],"SUBSTACK":[2,"l|"]},"fields":{},"shadow":false,"topLevel":false},"%t":{"opcode":"operator_and","next":null,"parent":"l`","inputs":{"OPERAND1":[2,"bJg"],"OPERAND2":[2,"bJh"]},"fields":{},"shadow":false,"topLevel":false},"bJg":{"opcode":"operator_gt","next":null,"parent":"%t","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"40959"]]},"fields":{},"shadow":false,"topLevel":false},"bJh":{"opcode":"operator_lt","next":null,"parent":"%t","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49152"]]},"fields":{},"shadow":false,"topLevel":false},"l|":{"opcode":"control_if","next":"l}","parent":"l`","inputs":{"CONDITION":[2,"bJi"],"SUBSTACK":[2,"bJj"]},"fields":{},"shadow":false,"topLevel":false},"bJi":{"opcode":"operator_equals","next":null,"parent":"l|","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bJj":{"opcode":"data_setvariableto","next":null,"parent":"l|","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank0","v9nn2/IOi1xI42vV9gmp"]},"shadow":false,"topLevel":false},"l}":{"opcode":"control_if","next":"l~","parent":"l|","inputs":{"CONDITION":[2,"bJk"],"SUBSTACK":[2,"bJl"]},"fields":{},"shadow":false,"topLevel":false},"bJk":{"opcode":"operator_equals","next":null,"parent":"l}","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bJl":{"opcode":"data_setvariableto","next":null,"parent":"l}","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank1","+cW@y^s2F)I5Dqe`It(A"]},"shadow":false,"topLevel":false},"l~":{"opcode":"control_if","next":"ma","parent":"l}","inputs":{"CONDITION":[2,"bJm"],"SUBSTACK":[2,"bJn"]},"fields":{},"shadow":false,"topLevel":false},"bJm":{"opcode":"operator_equals","next":null,"parent":"l~","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bJn":{"opcode":"data_setvariableto","next":null,"parent":"l~","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank2","[UuKc9PitdeXDW{kY%E-"]},"shadow":false,"topLevel":false},"ma":{"opcode":"control_if","next":"mb","parent":"l~","inputs":{"CONDITION":[2,"bJo"],"SUBSTACK":[2,"bJp"]},"fields":{},"shadow":false,"topLevel":false},"bJo":{"opcode":"operator_equals","next":null,"parent":"ma","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bJp":{"opcode":"data_setvariableto","next":null,"parent":"ma","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"]},"shadow":false,"topLevel":false},"mb":{"opcode":"control_if","next":"mc","parent":"ma","inputs":{"CONDITION":[2,"bJq"],"SUBSTACK":[2,"bJr"]},"fields":{},"shadow":false,"topLevel":false},"bJq":{"opcode":"operator_equals","next":null,"parent":"mb","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bJr":{"opcode":"data_setvariableto","next":null,"parent":"mb","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank4","#:3i`qtdaYV)X/d.1nWL"]},"shadow":false,"topLevel":false},"mc":{"opcode":"control_if","next":"md","parent":"mb","inputs":{"CONDITION":[2,"bJs"],"SUBSTACK":[2,"bJt"]},"fields":{},"shadow":false,"topLevel":false},"bJs":{"opcode":"operator_equals","next":null,"parent":"mc","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bJt":{"opcode":"data_setvariableto","next":null,"parent":"mc","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"]},"shadow":false,"topLevel":false},"md":{"opcode":"control_if","next":"me","parent":"mc","inputs":{"CONDITION":[2,"bJu"],"SUBSTACK":[2,"bJv"]},"fields":{},"shadow":false,"topLevel":false},"bJu":{"opcode":"operator_equals","next":null,"parent":"md","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bJv":{"opcode":"data_setvariableto","next":null,"parent":"md","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"]},"shadow":false,"topLevel":false},"me":{"opcode":"control_if","next":"mf","parent":"md","inputs":{"CONDITION":[2,"bJw"],"SUBSTACK":[2,"bJx"]},"fields":{},"shadow":false,"topLevel":false},"bJw":{"opcode":"operator_equals","next":null,"parent":"me","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bJx":{"opcode":"data_setvariableto","next":null,"parent":"me","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$chr_bank7","BG.CoXmh.n|7S`teB%Cz"]},"shadow":false,"topLevel":false},"mf":{"opcode":"control_if","next":"mg","parent":"me","inputs":{"CONDITION":[2,"bJy"],"SUBSTACK":[2,"%u"]},"fields":{},"shadow":false,"topLevel":false},"bJy":{"opcode":"operator_equals","next":null,"parent":"mf","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"%u":{"opcode":"data_setvariableto","next":"%v","parent":"mf","inputs":{"VALUE":[3,"bJz",[10,""]]},"fields":{"VARIABLE":["$prg_bank3","IH-i^bTE9H)(~1qQP=%i"]},"shadow":false,"topLevel":false},"bJz":{"opcode":"operator_mod","next":null,"parent":"%u","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"%v":{"opcode":"data_setvariableto","next":"aML","parent":"%u","inputs":{"VALUE":[3,"aMM",[10,""]]},"fields":{"VARIABLE":["$reg1",":qHrq7o:g@OR|zUf/9t("]},"shadow":false,"topLevel":false},"aMM":{"opcode":"operator_add","next":null,"parent":"%v","inputs":{"NUM1":[3,"aMN",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aMN":{"opcode":"operator_gt","next":null,"parent":"aMM","inputs":{"OPERAND1":[3,"bJA",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bJA":{"opcode":"operator_mod","next":null,"parent":"aMN","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aML":{"opcode":"data_setvariableto","next":null,"parent":"%v","inputs":{"VALUE":[3,"aMO",[10,""]]},"fields":{"VARIABLE":["wram_enabled","%XjU5(A-f?.:2f)2OCXj"]},"shadow":false,"topLevel":false},"aMO":{"opcode":"operator_add","next":null,"parent":"aML","inputs":{"NUM1":[3,"bJB",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bJB":{"opcode":"operator_gt","next":null,"parent":"aMO","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"mg":{"opcode":"control_if","next":"mh","parent":"mf","inputs":{"CONDITION":[2,"bJC"],"SUBSTACK":[2,"aMP"]},"fields":{},"shadow":false,"topLevel":false},"bJC":{"opcode":"operator_equals","next":null,"parent":"mg","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aMP":{"opcode":"data_setvariableto","next":null,"parent":"mg","inputs":{"VALUE":[3,"bJD",[10,""]]},"fields":{"VARIABLE":["$prg_bank0","^NQIbN*Yt8ZTd++^lhob"]},"shadow":false,"topLevel":false},"bJD":{"opcode":"operator_mod","next":null,"parent":"aMP","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"mh":{"opcode":"control_if","next":"mi","parent":"mg","inputs":{"CONDITION":[2,"bJE"],"SUBSTACK":[2,"aMQ"]},"fields":{},"shadow":false,"topLevel":false},"bJE":{"opcode":"operator_equals","next":null,"parent":"mh","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aMQ":{"opcode":"data_setvariableto","next":null,"parent":"mh","inputs":{"VALUE":[3,"bJF",[10,""]]},"fields":{"VARIABLE":["$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"]},"shadow":false,"topLevel":false},"bJF":{"opcode":"operator_mod","next":null,"parent":"aMQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"mi":{"opcode":"control_if","next":"mj","parent":"mh","inputs":{"CONDITION":[2,"bJG"],"SUBSTACK":[2,"aMR"]},"fields":{},"shadow":false,"topLevel":false},"bJG":{"opcode":"operator_equals","next":null,"parent":"mi","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aMR":{"opcode":"data_setvariableto","next":null,"parent":"mi","inputs":{"VALUE":[3,"bJH",[10,""]]},"fields":{"VARIABLE":["$prg_bank2","%@XOzsp%nquc!t7pwyH1"]},"shadow":false,"topLevel":false},"bJH":{"opcode":"operator_mod","next":null,"parent":"aMR","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"mj":{"opcode":"control_if","next":"mk","parent":"mi","inputs":{"CONDITION":[2,"bJI"],"SUBSTACK":[2,"ml"]},"fields":{},"shadow":false,"topLevel":false},"bJI":{"opcode":"operator_equals","next":null,"parent":"mj","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"ml":{"opcode":"control_if","next":"mm","parent":"mj","inputs":{"CONDITION":[2,"aMS"],"SUBSTACK":[2,"bJJ"]},"fields":{},"shadow":false,"topLevel":false},"aMS":{"opcode":"operator_equals","next":null,"parent":"ml","inputs":{"OPERAND1":[3,"bJK",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bJK":{"opcode":"operator_mod","next":null,"parent":"aMS","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bJJ":{"opcode":"procedures_call","next":null,"parent":"ml","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_v","argumentids":"[]","warp":"true"}},"mm":{"opcode":"control_if","next":"mn","parent":"ml","inputs":{"CONDITION":[2,"aMT"],"SUBSTACK":[2,"bJL"]},"fields":{},"shadow":false,"topLevel":false},"aMT":{"opcode":"operator_equals","next":null,"parent":"mm","inputs":{"OPERAND1":[3,"bJM",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bJM":{"opcode":"operator_mod","next":null,"parent":"aMT","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bJL":{"opcode":"procedures_call","next":null,"parent":"mm","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_h","argumentids":"[]","warp":"true"}},"mn":{"opcode":"control_if","next":"%w","parent":"mm","inputs":{"CONDITION":[2,"aMU"],"SUBSTACK":[2,"bJN"]},"fields":{},"shadow":false,"topLevel":false},"aMU":{"opcode":"operator_equals","next":null,"parent":"mn","inputs":{"OPERAND1":[3,"bJO",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bJO":{"opcode":"operator_mod","next":null,"parent":"aMU","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bJN":{"opcode":"procedures_call","next":null,"parent":"mn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_a","argumentids":"[]","warp":"true"}},"%w":{"opcode":"control_if","next":null,"parent":"mn","inputs":{"CONDITION":[2,"aMV"],"SUBSTACK":[2,"bJP"]},"fields":{},"shadow":false,"topLevel":false},"aMV":{"opcode":"operator_equals","next":null,"parent":"%w","inputs":{"OPERAND1":[3,"bJQ",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bJQ":{"opcode":"operator_mod","next":null,"parent":"aMV","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bJP":{"opcode":"procedures_call","next":null,"parent":"%w","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$mirror_b","argumentids":"[]","warp":"true"}},"mk":{"opcode":"control_if","next":"mo","parent":"mj","inputs":{"CONDITION":[2,"bJR"],"SUBSTACK":[2,"%x"]},"fields":{},"shadow":false,"topLevel":false},"bJR":{"opcode":"operator_equals","next":null,"parent":"mk","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"%x":{"opcode":"data_setvariableto","next":"%y","parent":"mk","inputs":{"VALUE":[3,"bJS",[10,""]]},"fields":{"VARIABLE":["$irq_enabled","fwFL=0cpY^V5KbYAj;F9"]},"shadow":false,"topLevel":false},"bJS":{"opcode":"operator_mod","next":null,"parent":"%x","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"%y":{"opcode":"data_setvariableto","next":"%z","parent":"%x","inputs":{"VALUE":[3,"aMW",[10,""]]},"fields":{"VARIABLE":["$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"]},"shadow":false,"topLevel":false},"aMW":{"opcode":"operator_add","next":null,"parent":"%y","inputs":{"NUM1":[3,"bJT",[4,0]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bJT":{"opcode":"operator_gt","next":null,"parent":"aMW","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"%z":{"opcode":"control_if","next":null,"parent":"%y","inputs":{"CONDITION":[2,"bJU"],"SUBSTACK":[2,"aMX"]},"fields":{},"shadow":false,"topLevel":false},"bJU":{"opcode":"operator_equals","next":null,"parent":"%z","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aMX":{"opcode":"data_changevariableby","next":"bJV","parent":"%z","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bJV":{"opcode":"data_setvariableto","next":null,"parent":"aMX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"mo":{"opcode":"control_if","next":"%A","parent":"mk","inputs":{"CONDITION":[2,"bJW"],"SUBSTACK":[2,"aMY"]},"fields":{},"shadow":false,"topLevel":false},"bJW":{"opcode":"operator_equals","next":null,"parent":"mo","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aMY":{"opcode":"data_setvariableto","next":null,"parent":"mo","inputs":{"VALUE":[3,"aMZ",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aMZ":{"opcode":"operator_add","next":null,"parent":"aMY","inputs":{"NUM1":[3,"aM!",[4,0]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"aM!":{"opcode":"operator_subtract","next":null,"parent":"aMZ","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[3,"bJX",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bJX":{"opcode":"operator_mod","next":null,"parent":"aM!","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%A":{"opcode":"control_if","next":null,"parent":"mo","inputs":{"CONDITION":[2,"bJY"],"SUBSTACK":[2,"aM#"]},"fields":{},"shadow":false,"topLevel":false},"bJY":{"opcode":"operator_equals","next":null,"parent":"%A","inputs":{"OPERAND1":[3,[12,"$reg0","Rsej-utFuPehsXAVyTSL"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"aM#":{"opcode":"data_setvariableto","next":null,"parent":"%A","inputs":{"VALUE":[3,"%B",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"%B":{"opcode":"operator_add","next":null,"parent":"aM#","inputs":{"NUM1":[3,"bJZ",[4,0]],"NUM2":[3,"bJ!",[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bJZ":{"opcode":"operator_mod","next":null,"parent":"%B","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bJ!":{"opcode":"operator_multiply","next":null,"parent":"%B","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"l{":{"opcode":"control_if","next":"mp","parent":"l`","inputs":{"CONDITION":[2,"%C"],"SUBSTACK":[2,"bJ#"]},"fields":{},"shadow":false,"topLevel":false},"%C":{"opcode":"operator_and","next":null,"parent":"l{","inputs":{"OPERAND1":[2,"bJ%"],"OPERAND2":[2,"bJ("]},"fields":{},"shadow":false,"topLevel":false},"bJ%":{"opcode":"operator_gt","next":null,"parent":"%C","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"49151"]]},"fields":{},"shadow":false,"topLevel":false},"bJ(":{"opcode":"operator_lt","next":null,"parent":"%C","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57344"]]},"fields":{},"shadow":false,"topLevel":false},"bJ#":{"opcode":"data_setvariableto","next":null,"parent":"l{","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["$5b_command","+yZB}NV9!4)X~Jf@W14_"]},"shadow":false,"topLevel":false},"mp":{"opcode":"control_if","next":"aa","parent":"l{","inputs":{"CONDITION":[2,"Fm"],"SUBSTACK":[2,"bJ)"]},"fields":{},"shadow":false,"topLevel":false},"Fm":{"opcode":"operator_and","next":null,"parent":"mp","inputs":{"OPERAND1":[2,"bJ*"],"OPERAND2":[2,"bJ+"]},"fields":{},"shadow":false,"topLevel":false},"bJ*":{"opcode":"operator_gt","next":null,"parent":"Fm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"57343"]]},"fields":{},"shadow":false,"topLevel":false},"bJ+":{"opcode":"operator_lt","next":null,"parent":"Fm","inputs":{"OPERAND1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[10,""]],"OPERAND2":[1,[10,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bJ)":{"opcode":"event_broadcastandwait","next":null,"parent":"mp","inputs":{"BROADCAST_INPUT":[1,[11,"5b","ET.1ru=%3YXJv8(/!(4S"]]},"fields":{},"shadow":false,"topLevel":false},"aa":{"opcode":"control_if_else","next":"aM%","parent":"mp","inputs":{"CONDITION":[2,"bJ,"],"SUBSTACK":[2,"bJ-"],"SUBSTACK2":[2,"aM("]},"fields":{},"shadow":false,"topLevel":false},"bJ,":{"opcode":"operator_equals","next":null,"parent":"aa","inputs":{"OPERAND1":[3,[12,"$reg1",":qHrq7o:g@OR|zUf/9t("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bJ-":{"opcode":"data_replaceitemoflist","next":null,"parent":"aa","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aM(":{"opcode":"data_replaceitemoflist","next":null,"parent":"aa","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aM)",[10,""]]},"fields":{"LIST":["!prg_banks","r-I3Q/$PgbvKTUVcmg/."]},"shadow":false,"topLevel":false},"aM)":{"opcode":"operator_mod","next":null,"parent":"aM(","inputs":{"NUM1":[3,"bJ.",[4,0]],"NUM2":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bJ.":{"opcode":"operator_multiply","next":null,"parent":"aM)","inputs":{"NUM1":[3,[12,"$prg_bank3","IH-i^bTE9H)(~1qQP=%i"],[4,0]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"aM%":{"opcode":"procedures_call","next":"aM*","parent":"aa","inputs":{"w#BC#Nq[j}#muQb6}dLa":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"@NOZG?i.@jcwoJi(*EQ=":[3,[12,"$prg_bank1","PSk+(J[Bg:SNyKArZZZ!"],[10,""]],"/=1M^S?9BD*f%@MRoeZC":[3,[12,"$prg_bank2","%@XOzsp%nquc!t7pwyH1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_8k_fix %s %s %s","argumentids":"[\"w#BC#Nq[j}#muQb6}dLa\",\"@NOZG?i.@jcwoJi(*EQ=\",\"/=1M^S?9BD*f%@MRoeZC\"]","warp":"true"}},"aM*":{"opcode":"procedures_call","next":"bJ/","parent":"aM%","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"M.aj{qup%g}995:UVZ[:":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"bJ/":{"opcode":"procedures_call","next":null,"parent":"aM*","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank6","V[@{,SY}EFC|sP=BL]Hu"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank7","BG.CoXmh.n|7S`teB%Cz"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"aM+":{"opcode":"procedures_definition","next":"Fn","parent":null,"inputs":{"custom_block":[1,"bJ:"]},"fields":{},"shadow":false,"topLevel":true,"x":22510,"y":6548},"bJ:":{"opcode":"procedures_prototype","next":null,"parent":"aM+","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Fn":{"opcode":"control_if","next":null,"parent":"aM+","inputs":{"CONDITION":[2,"bJ;"],"SUBSTACK":[2,"mq"]},"fields":{},"shadow":false,"topLevel":false},"bJ;":{"opcode":"operator_equals","next":null,"parent":"Fn","inputs":{"OPERAND1":[3,[12,"mapper","2YEF=*pQ`ymj}xOTf{?k"],[10,""]],"OPERAND2":[1,[10,"69"]]},"fields":{},"shadow":false,"topLevel":false},"mq":{"opcode":"control_if","next":"bJ=","parent":"Fn","inputs":{"CONDITION":[2,"bJ?"],"SUBSTACK":[2,"Fo"]},"fields":{},"shadow":false,"topLevel":false},"bJ?":{"opcode":"operator_equals","next":null,"parent":"mq","inputs":{"OPERAND1":[3,[12,"$irq_mode","rs}5r[IDZ4Y0+A.8v_C%"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Fo":{"opcode":"data_setvariableto","next":"Fp","parent":"mq","inputs":{"VALUE":[3,"aM,",[10,""]]},"fields":{"VARIABLE":["$irq_counter","t,oYIHDtfb?VPjK%fd^["]},"shadow":false,"topLevel":false},"aM,":{"opcode":"operator_mod","next":null,"parent":"Fo","inputs":{"NUM1":[3,"bJ@",[4,0]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bJ@":{"opcode":"operator_subtract","next":null,"parent":"aM,","inputs":{"NUM1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Fp":{"opcode":"control_if","next":null,"parent":"Fo","inputs":{"CONDITION":[2,"Fq"],"SUBSTACK":[2,"aM-"]},"fields":{},"shadow":false,"topLevel":false},"Fq":{"opcode":"operator_and","next":null,"parent":"Fp","inputs":{"OPERAND1":[2,"bJ["],"OPERAND2":[2,"Fr"]},"fields":{},"shadow":false,"topLevel":false},"bJ[":{"opcode":"operator_equals","next":null,"parent":"Fq","inputs":{"OPERAND1":[3,[12,"$irq_counter","t,oYIHDtfb?VPjK%fd^["],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"Fr":{"opcode":"operator_and","next":null,"parent":"Fq","inputs":{"OPERAND1":[2,"bJ]"],"OPERAND2":[2,"bJ^"]},"fields":{},"shadow":false,"topLevel":false},"bJ]":{"opcode":"operator_equals","next":null,"parent":"Fr","inputs":{"OPERAND1":[3,[12,"$irq_enabled","fwFL=0cpY^V5KbYAj;F9"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bJ^":{"opcode":"operator_equals","next":null,"parent":"Fr","inputs":{"OPERAND1":[3,[12,"$irq_occured","(Bva{aj,%,g7M19235_|"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM-":{"opcode":"data_changevariableby","next":"bJ_","parent":"Fp","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"bJ_":{"opcode":"data_setvariableto","next":null,"parent":"aM-","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["$irq_occured","(Bva{aj,%,g7M19235_|"]},"shadow":false,"topLevel":false},"bJ=":{"opcode":"control_stop","next":null,"parent":"mq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aGh":{"opcode":"data_setvariableto","next":"aGg","parent":"bJ`","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["Enable APU","ZU1H]fgUo{pr?8j#775;"]},"shadow":false,"topLevel":false},"bJ{":{"opcode":"data_addtolist","next":null,"parent":"aM.","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"aM.":{"opcode":"control_repeat","next":null,"parent":"ax*","inputs":{"TIMES":[1,[6,"11"]],"SUBSTACK":[2,"bJ{"]},"fields":{},"shadow":false,"topLevel":false},"aDt":{"opcode":"data_setvariableto","next":"by(","parent":"aDs","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["coolnes_regenerate","lWF?u*+y?xh}I(}~K.X2"]},"shadow":false,"topLevel":false},"b;":{"opcode":"control_if","next":"Fs","parent":"azw","inputs":{"CONDITION":[2,"bJ|"],"SUBSTACK":[2,"bJ}"]},"fields":{},"shadow":false,"topLevel":false},"bJ|":{"opcode":"operator_equals","next":null,"parent":"b;","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bJ}":{"opcode":"procedures_call","next":null,"parent":"b;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Fs":{"opcode":"data_setvariableto","next":"bJ~","parent":"b;","inputs":{"VALUE":[3,"aM/",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aM/":{"opcode":"data_itemoflist","next":null,"parent":"Fs","inputs":{"INDEX":[3,"aM:",[7,0]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aM:":{"opcode":"operator_add","next":null,"parent":"aM/","inputs":{"NUM1":[3,"aM;",[4,0]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aM;":{"opcode":"operator_add","next":null,"parent":"aM:","inputs":{"NUM1":[3,"bKa",[4,0]],"NUM2":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,0]]},"fields":{},"shadow":false,"topLevel":false},"bKa":{"opcode":"operator_multiply","next":null,"parent":"aM;","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,0]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bJ~":{"opcode":"procedures_call","next":null,"parent":"Fs","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"Mc":{"opcode":"operator_and","next":null,"parent":"Mb","inputs":{"OPERAND1":[2,"Ft"],"OPERAND2":[2,"bKb"]},"fields":{},"shadow":false,"topLevel":false},"Ft":{"opcode":"operator_and","next":null,"parent":"Mc","inputs":{"OPERAND1":[2,"bKc"],"OPERAND2":[2,"bKd"]},"fields":{},"shadow":false,"topLevel":false},"bKc":{"opcode":"operator_equals","next":null,"parent":"Ft","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKd":{"opcode":"operator_equals","next":null,"parent":"Ft","inputs":{"OPERAND1":[3,[12,"#sq0_swenable","lDVHu)]uV4^~JEFcX2gF"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bKb":{"opcode":"operator_gt","next":null,"parent":"Mc","inputs":{"OPERAND1":[3,[12,"#sq0_swshift","x):Akro;B?IDs}?a(1S#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p":{"opcode":"control_if","next":"Fu","parent":"azV","inputs":{"CONDITION":[2,"aM="],"SUBSTACK":[2,"aM?"]},"fields":{},"shadow":false,"topLevel":false},"aM=":{"opcode":"operator_equals","next":null,"parent":"p","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM?":{"opcode":"procedures_call","next":null,"parent":"p","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"Fu":{"opcode":"data_setvariableto","next":"Fv","parent":"p","inputs":{"VALUE":[3,"aM@",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aM@":{"opcode":"operator_add","next":null,"parent":"Fu","inputs":{"NUM1":[3,"Fw",[4,"0"]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Fw":{"opcode":"operator_add","next":null,"parent":"aM@","inputs":{"NUM1":[3,"aM[",[4,"0"]],"NUM2":[3,"aM]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM[":{"opcode":"operator_subtract","next":null,"parent":"Fw","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,"aM^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM^":{"opcode":"operator_multiply","next":null,"parent":"aM[","inputs":{"NUM1":[3,"bKe",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKe":{"opcode":"operator_gt","next":null,"parent":"aM^","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aM]":{"opcode":"operator_subtract","next":null,"parent":"Fw","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[3,"aM_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM_":{"opcode":"operator_multiply","next":null,"parent":"aM]","inputs":{"NUM1":[3,"bKf",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKf":{"opcode":"operator_gt","next":null,"parent":"aM_","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Fv":{"opcode":"data_setvariableto","next":"Fx","parent":"Fu","inputs":{"VALUE":[3,"aM`",[10,""]]},"fields":{"VARIABLE":["!V","6UhPihgrE#HibT*P,RHy"]},"shadow":false,"topLevel":false},"aM`":{"opcode":"operator_add","next":null,"parent":"Fv","inputs":{"NUM1":[3,"Fy",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fy":{"opcode":"operator_or","next":null,"parent":"aM`","inputs":{"OPERAND1":[2,"bKg"],"OPERAND2":[2,"bKh"]},"fields":{},"shadow":false,"topLevel":false},"bKg":{"opcode":"operator_gt","next":null,"parent":"Fy","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bKh":{"opcode":"operator_lt","next":null,"parent":"Fy","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"Fx":{"opcode":"data_setvariableto","next":"Fz","parent":"Fv","inputs":{"VALUE":[3,"aM{",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"aM{":{"opcode":"operator_add","next":null,"parent":"Fx","inputs":{"NUM1":[3,"bKi",[4,"0"]],"NUM2":[3,[12,"!C","kCSOy9d,i:SuF$IT*yY@"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKi":{"opcode":"operator_add","next":null,"parent":"aM{","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Fz":{"opcode":"data_setvariableto","next":"FA","parent":"Fx","inputs":{"VALUE":[3,"aM|",[10,""]]},"fields":{"VARIABLE":["!C","kCSOy9d,i:SuF$IT*yY@"]},"shadow":false,"topLevel":false},"aM|":{"opcode":"operator_add","next":null,"parent":"Fz","inputs":{"NUM1":[3,"bKj",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bKj":{"opcode":"operator_gt","next":null,"parent":"aM|","inputs":{"OPERAND1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"FA":{"opcode":"data_setvariableto","next":"bKk","parent":"Fz","inputs":{"VALUE":[3,"bKl",[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"bKl":{"opcode":"operator_mod","next":null,"parent":"FA","inputs":{"NUM1":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKk":{"opcode":"procedures_call","next":null,"parent":"FA","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"y":{"opcode":"control_if","next":"A","parent":"x","inputs":{"CONDITION":[2,"aM}"],"SUBSTACK":[2,"mr"]},"fields":{},"shadow":false,"topLevel":false},"aM}":{"opcode":"operator_equals","next":null,"parent":"y","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"mr":{"opcode":"data_changevariableby","next":"d[","parent":"y","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d[":{"opcode":"data_setvariableto","next":"d]","parent":"mr","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d]":{"opcode":"data_changevariableby","next":"ms","parent":"d[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ms":{"opcode":"procedures_call","next":"mt","parent":"d]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mt":{"opcode":"data_setvariableto","next":"bKm","parent":"ms","inputs":{"VALUE":[3,"aM~",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aM~":{"opcode":"operator_add","next":null,"parent":"mt","inputs":{"NUM1":[3,"bKn",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKn":{"opcode":"operator_multiply","next":null,"parent":"aM~","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKm":{"opcode":"control_stop","next":null,"parent":"mt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"A":{"opcode":"control_if","next":"B","parent":"y","inputs":{"CONDITION":[2,"aNa"],"SUBSTACK":[2,"mu"]},"fields":{},"shadow":false,"topLevel":false},"aNa":{"opcode":"operator_equals","next":null,"parent":"A","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"mu":{"opcode":"data_changevariableby","next":"d^","parent":"A","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d^":{"opcode":"data_setvariableto","next":"d_","parent":"mu","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"d_":{"opcode":"procedures_call","next":"mv","parent":"d^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mv":{"opcode":"data_setvariableto","next":"mw","parent":"d_","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"mw":{"opcode":"data_setvariableto","next":"aNb","parent":"mv","inputs":{"VALUE":[3,"aNc",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNc":{"opcode":"operator_mod","next":null,"parent":"mw","inputs":{"NUM1":[3,"bKo",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKo":{"opcode":"operator_add","next":null,"parent":"aNc","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aNb":{"opcode":"procedures_call","next":"aNd","parent":"mw","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNd":{"opcode":"data_changevariableby","next":"FB","parent":"aNb","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FB":{"opcode":"data_setvariableto","next":"C","parent":"aNd","inputs":{"VALUE":[3,"FC",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"FC":{"opcode":"operator_add","next":null,"parent":"FB","inputs":{"NUM1":[3,"bKp",[4,"0"]],"NUM2":[3,"bKq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKp":{"opcode":"operator_multiply","next":null,"parent":"FC","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKq":{"opcode":"operator_mod","next":null,"parent":"FC","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C":{"opcode":"control_if","next":"aNe","parent":"FB","inputs":{"CONDITION":[2,"FD"],"SUBSTACK":[2,"FE"]},"fields":{},"shadow":false,"topLevel":false},"FD":{"opcode":"operator_or","next":null,"parent":"C","inputs":{"OPERAND1":[2,"bKr"],"OPERAND2":[2,"bKs"]},"fields":{},"shadow":false,"topLevel":false},"bKr":{"opcode":"operator_gt","next":null,"parent":"FD","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"bKs":{"opcode":"operator_equals","next":null,"parent":"FD","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FE":{"opcode":"procedures_call","next":"mx","parent":"C","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mx":{"opcode":"control_if","next":null,"parent":"FE","inputs":{"CONDITION":[2,"bKt"],"SUBSTACK":[2,"aNf"]},"fields":{},"shadow":false,"topLevel":false},"bKt":{"opcode":"operator_gt","next":null,"parent":"mx","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"aNf":{"opcode":"data_setvariableto","next":null,"parent":"mx","inputs":{"VALUE":[3,"aNg",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNg":{"opcode":"operator_mod","next":null,"parent":"aNf","inputs":{"NUM1":[3,"bKu",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bKu":{"opcode":"operator_add","next":null,"parent":"aNg","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aNe":{"opcode":"control_stop","next":null,"parent":"C","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"B":{"opcode":"control_if","next":"D","parent":"A","inputs":{"CONDITION":[2,"aNh"],"SUBSTACK":[2,"my"]},"fields":{},"shadow":false,"topLevel":false},"aNh":{"opcode":"operator_equals","next":null,"parent":"B","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"my":{"opcode":"data_changevariableby","next":"d`","parent":"B","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d`":{"opcode":"data_setvariableto","next":"mz","parent":"my","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"mz":{"opcode":"procedures_call","next":"mA","parent":"d`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mA":{"opcode":"data_setvariableto","next":"bKv","parent":"mz","inputs":{"VALUE":[3,"aNi",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNi":{"opcode":"operator_mod","next":null,"parent":"mA","inputs":{"NUM1":[3,"bKw",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKw":{"opcode":"operator_add","next":null,"parent":"aNi","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKv":{"opcode":"control_stop","next":null,"parent":"mA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D":{"opcode":"control_if","next":"E","parent":"B","inputs":{"CONDITION":[2,"aNj"],"SUBSTACK":[2,"mB"]},"fields":{},"shadow":false,"topLevel":false},"aNj":{"opcode":"operator_equals","next":null,"parent":"D","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"mB":{"opcode":"data_changevariableby","next":"d{","parent":"D","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d{":{"opcode":"data_setvariableto","next":"d|","parent":"mB","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d|":{"opcode":"data_changevariableby","next":"YO","parent":"d{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"YO":{"opcode":"procedures_call","next":"FF","parent":"d|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FF":{"opcode":"data_changevariableby","next":"FG","parent":"YO","inputs":{"VALUE":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FG":{"opcode":"data_setvariableto","next":"F","parent":"FF","inputs":{"VALUE":[3,"FH",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"FH":{"opcode":"operator_add","next":null,"parent":"FG","inputs":{"NUM1":[3,"bKx",[4,"0"]],"NUM2":[3,"bKy",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKx":{"opcode":"operator_multiply","next":null,"parent":"FH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKy":{"opcode":"operator_mod","next":null,"parent":"FH","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"F":{"opcode":"control_if","next":"aNk","parent":"FG","inputs":{"CONDITION":[2,"FI"],"SUBSTACK":[2,"FJ"]},"fields":{},"shadow":false,"topLevel":false},"FI":{"opcode":"operator_or","next":null,"parent":"F","inputs":{"OPERAND1":[2,"bKz"],"OPERAND2":[2,"bKA"]},"fields":{},"shadow":false,"topLevel":false},"bKz":{"opcode":"operator_gt","next":null,"parent":"FI","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"bKA":{"opcode":"operator_equals","next":null,"parent":"FI","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FJ":{"opcode":"procedures_call","next":"FK","parent":"F","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FK":{"opcode":"control_if","next":null,"parent":"FJ","inputs":{"CONDITION":[2,"bKB"],"SUBSTACK":[2,"aNl"]},"fields":{},"shadow":false,"topLevel":false},"bKB":{"opcode":"operator_gt","next":null,"parent":"FK","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"aNl":{"opcode":"data_setvariableto","next":null,"parent":"FK","inputs":{"VALUE":[3,"aNm",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNm":{"opcode":"operator_mod","next":null,"parent":"aNl","inputs":{"NUM1":[3,"bKC",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bKC":{"opcode":"operator_add","next":null,"parent":"aNm","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aNk":{"opcode":"control_stop","next":null,"parent":"F","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"E":{"opcode":"control_if","next":"G","parent":"D","inputs":{"CONDITION":[2,"aNn"],"SUBSTACK":[2,"FL"]},"fields":{},"shadow":false,"topLevel":false},"aNn":{"opcode":"operator_equals","next":null,"parent":"E","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"FL":{"opcode":"data_changevariableby","next":"d}","parent":"E","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d}":{"opcode":"data_setvariableto","next":"d~","parent":"FL","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d~":{"opcode":"data_changevariableby","next":"ea","parent":"d}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ea":{"opcode":"procedures_call","next":"FM","parent":"d~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FM":{"opcode":"data_changevariableby","next":"FN","parent":"ea","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FN":{"opcode":"data_setvariableto","next":"H","parent":"FM","inputs":{"VALUE":[3,"FO",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"FO":{"opcode":"operator_add","next":null,"parent":"FN","inputs":{"NUM1":[3,"bKD",[4,"0"]],"NUM2":[3,"bKE",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKD":{"opcode":"operator_multiply","next":null,"parent":"FO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKE":{"opcode":"operator_mod","next":null,"parent":"FO","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"H":{"opcode":"control_if","next":"aNo","parent":"FN","inputs":{"CONDITION":[2,"FP"],"SUBSTACK":[2,"FQ"]},"fields":{},"shadow":false,"topLevel":false},"FP":{"opcode":"operator_or","next":null,"parent":"H","inputs":{"OPERAND1":[2,"bKF"],"OPERAND2":[2,"bKG"]},"fields":{},"shadow":false,"topLevel":false},"bKF":{"opcode":"operator_gt","next":null,"parent":"FP","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"bKG":{"opcode":"operator_equals","next":null,"parent":"FP","inputs":{"OPERAND1":[3,[12,"!penalty","$4AJvv6|*3+i6I3,wC{("],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FQ":{"opcode":"procedures_call","next":"FR","parent":"H","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FR":{"opcode":"control_if","next":null,"parent":"FQ","inputs":{"CONDITION":[2,"bKH"],"SUBSTACK":[2,"aNp"]},"fields":{},"shadow":false,"topLevel":false},"bKH":{"opcode":"operator_gt","next":null,"parent":"FR","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"aNp":{"opcode":"data_setvariableto","next":null,"parent":"FR","inputs":{"VALUE":[3,"aNq",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNq":{"opcode":"operator_mod","next":null,"parent":"aNp","inputs":{"NUM1":[3,"bKI",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bKI":{"opcode":"operator_add","next":null,"parent":"aNq","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aNo":{"opcode":"control_stop","next":null,"parent":"H","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G":{"opcode":"control_if","next":"I","parent":"E","inputs":{"CONDITION":[2,"aNr"],"SUBSTACK":[2,"FS"]},"fields":{},"shadow":false,"topLevel":false},"aNr":{"opcode":"operator_equals","next":null,"parent":"G","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"FS":{"opcode":"data_changevariableby","next":"%","parent":"G","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"%":{"opcode":"control_if_else","next":"FT","parent":"FS","inputs":{"CONDITION":[2,"FU"],"SUBSTACK":[2,"FV"],"SUBSTACK2":[2,"ab"]},"fields":{},"shadow":false,"topLevel":false},"FU":{"opcode":"operator_equals","next":null,"parent":"%","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"FV":{"opcode":"data_setvariableto","next":null,"parent":"%","inputs":{"VALUE":[1,[10,"-128"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ab":{"opcode":"control_if_else","next":null,"parent":"%","inputs":{"CONDITION":[2,"aNs"],"SUBSTACK":[2,"FW"],"SUBSTACK2":[2,"aNt"]},"fields":{},"shadow":false,"topLevel":false},"aNs":{"opcode":"operator_gt","next":null,"parent":"ab","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"FW":{"opcode":"data_setvariableto","next":null,"parent":"ab","inputs":{"VALUE":[3,"FX",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FX":{"opcode":"operator_mod","next":null,"parent":"FW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"aNt":{"opcode":"data_setvariableto","next":null,"parent":"ab","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FT":{"opcode":"control_stop","next":null,"parent":"%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"I":{"opcode":"control_if","next":"J","parent":"G","inputs":{"CONDITION":[2,"aNu"],"SUBSTACK":[2,"FY"]},"fields":{},"shadow":false,"topLevel":false},"aNu":{"opcode":"operator_equals","next":null,"parent":"I","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"FY":{"opcode":"data_changevariableby","next":"eb","parent":"I","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"eb":{"opcode":"data_setvariableto","next":"FZ","parent":"FY","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"FZ":{"opcode":"procedures_call","next":"F!","parent":"eb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"F!":{"opcode":"data_setvariableto","next":"bKJ","parent":"FZ","inputs":{"VALUE":[3,"aNv",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNv":{"opcode":"operator_mod","next":null,"parent":"F!","inputs":{"NUM1":[3,"bKK",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKK":{"opcode":"operator_add","next":null,"parent":"aNv","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[3,[12,"!Y","FvIw9c;onN-C-qYdNkXU"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKJ":{"opcode":"control_stop","next":null,"parent":"F!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"J":{"opcode":"control_if","next":"F#","parent":"I","inputs":{"CONDITION":[2,"aNw"],"SUBSTACK":[2,"mC"]},"fields":{},"shadow":false,"topLevel":false},"aNw":{"opcode":"operator_equals","next":null,"parent":"J","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"mC":{"opcode":"data_changevariableby","next":"ec","parent":"J","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"ec":{"opcode":"data_setvariableto","next":"ed","parent":"mC","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ed":{"opcode":"data_changevariableby","next":"mD","parent":"ec","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"mD":{"opcode":"procedures_call","next":"mE","parent":"ed","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mE":{"opcode":"data_setvariableto","next":"aNx","parent":"mD","inputs":{"VALUE":[3,"aNy",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNy":{"opcode":"operator_add","next":null,"parent":"mE","inputs":{"NUM1":[3,"bKL",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKL":{"opcode":"operator_multiply","next":null,"parent":"aNy","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aNx":{"opcode":"procedures_call","next":"aw:","parent":"mE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aw:":{"opcode":"data_setvariableto","next":"b#","parent":"aNx","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aw=":{"opcode":"operator_equals","next":null,"parent":"b#","inputs":{"OPERAND1":[3,"bKM",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"bKM":{"opcode":"operator_mod","next":null,"parent":"aw=","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bsI":{"opcode":"data_changevariableby","next":null,"parent":"b#","inputs":{"VALUE":[1,[4,"-255"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"bsJ":{"opcode":"data_changevariableby","next":null,"parent":"b#","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aw;":{"opcode":"procedures_call","next":"F%","parent":"b#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"F%":{"opcode":"data_setvariableto","next":"bKN","parent":"aw;","inputs":{"VALUE":[3,"aNz",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"aNz":{"opcode":"operator_add","next":null,"parent":"F%","inputs":{"NUM1":[3,"bKO",[4,"0"]],"NUM2":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bKO":{"opcode":"operator_multiply","next":null,"parent":"aNz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bKN":{"opcode":"control_stop","next":null,"parent":"F%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"F#":{"opcode":"control_if","next":null,"parent":"J","inputs":{"CONDITION":[2,"bKP"],"SUBSTACK":[2,"aNA"]},"fields":{},"shadow":false,"topLevel":false},"bKP":{"opcode":"operator_equals","next":null,"parent":"F#","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aNA":{"opcode":"sensing_askandwait","next":"bKQ","parent":"F#","inputs":{"QUESTION":[1,[10,"CPU halted"]]},"fields":{},"shadow":false,"topLevel":false},"bKQ":{"opcode":"control_stop","next":null,"parent":"aNA","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"}":{"opcode":"control_if","next":"ac","parent":"a*","inputs":{"CONDITION":[2,"mF"],"SUBSTACK":[2,"F("]},"fields":{},"shadow":false,"topLevel":false},"mF":{"opcode":"operator_equals","next":null,"parent":"}","inputs":{"OPERAND1":[3,"F)",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F)":{"opcode":"data_itemoflist","next":null,"parent":"mF","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"F(":{"opcode":"data_setvariableto","next":"bKR","parent":"}","inputs":{"VALUE":[3,"aNB",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aNB":{"opcode":"data_itemoflist","next":null,"parent":"F(","inputs":{"INDEX":[3,"aNC",[7,"0"]]},"fields":{"LIST":["@ciram1","p5xmBfJ0lhk757f@^i+("]},"shadow":false,"topLevel":false},"aNC":{"opcode":"operator_add","next":null,"parent":"aNB","inputs":{"NUM1":[3,"bKS",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bKS":{"opcode":"operator_mod","next":null,"parent":"aNC","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bKR":{"opcode":"control_stop","next":null,"parent":"F(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ac":{"opcode":"control_if","next":"F*","parent":"}","inputs":{"CONDITION":[2,"mG"],"SUBSTACK":[2,"Nc"]},"fields":{},"shadow":false,"topLevel":false},"mG":{"opcode":"operator_equals","next":null,"parent":"ac","inputs":{"OPERAND1":[3,"Nd",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Nd":{"opcode":"data_itemoflist","next":null,"parent":"mG","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"Nc":{"opcode":"data_setvariableto","next":"bKT","parent":"ac","inputs":{"VALUE":[3,"aND",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aND":{"opcode":"data_itemoflist","next":null,"parent":"Nc","inputs":{"INDEX":[3,"aNE",[7,"0"]]},"fields":{"LIST":["@ciram2","l_SdM8J9l+s4GCCBOzH}"]},"shadow":false,"topLevel":false},"aNE":{"opcode":"operator_add","next":null,"parent":"aND","inputs":{"NUM1":[3,"bKU",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bKU":{"opcode":"operator_mod","next":null,"parent":"aNE","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bKT":{"opcode":"control_stop","next":null,"parent":"Nc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"F*":{"opcode":"control_if","next":null,"parent":"ac","inputs":{"CONDITION":[2,"aNF"],"SUBSTACK":[2,"Ne"]},"fields":{},"shadow":false,"topLevel":false},"aNF":{"opcode":"operator_equals","next":null,"parent":"F*","inputs":{"OPERAND1":[3,"bKV",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bKV":{"opcode":"data_itemoflist","next":null,"parent":"aNF","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"Ne":{"opcode":"data_setvariableto","next":"bKW","parent":"F*","inputs":{"VALUE":[3,"aNG",[10,""]]},"fields":{"VARIABLE":["@nt_data","c8^9ZpQ-zkSNe^OG*WmN"]},"shadow":false,"topLevel":false},"aNG":{"opcode":"data_itemoflist","next":null,"parent":"Ne","inputs":{"INDEX":[3,"aNH",[7,"0"]]},"fields":{"LIST":["@ciram3","{%!cZhFPAz@2p4$Z97oc"]},"shadow":false,"topLevel":false},"aNH":{"opcode":"operator_add","next":null,"parent":"aNG","inputs":{"NUM1":[3,"bKX",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bKX":{"opcode":"operator_mod","next":null,"parent":"aNH","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bKW":{"opcode":"control_stop","next":null,"parent":"Ne","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"W":{"opcode":"control_if","next":"cV","parent":"aFI","inputs":{"CONDITION":[2,"aNI"],"SUBSTACK":[2,"cR"]},"fields":{},"shadow":false,"topLevel":false},"aNI":{"opcode":"operator_equals","next":null,"parent":"W","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"awT":{"opcode":"operator_equals","next":null,"parent":"cR","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awU":{"opcode":"data_setvariableto","next":null,"parent":"cR","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"jV":{"opcode":"data_changevariableby","next":"Nf","parent":"cR","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Nf":{"opcode":"control_stop","next":null,"parent":"jV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cV":{"opcode":"control_if","next":"ad","parent":"W","inputs":{"CONDITION":[2,"Ng"],"SUBSTACK":[2,"ae"]},"fields":{},"shadow":false,"topLevel":false},"Ng":{"opcode":"operator_and","next":null,"parent":"cV","inputs":{"OPERAND1":[2,"bKY"],"OPERAND2":[2,"bKZ"]},"fields":{},"shadow":false,"topLevel":false},"bKY":{"opcode":"operator_gt","next":null,"parent":"Ng","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"bKZ":{"opcode":"operator_lt","next":null,"parent":"Ng","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"control_if","next":"ee","parent":"cV","inputs":{"CONDITION":[2,"Nh"],"SUBSTACK":[2,"mH"]},"fields":{},"shadow":false,"topLevel":false},"Nh":{"opcode":"operator_and","next":null,"parent":"ae","inputs":{"OPERAND1":[2,"bK!"],"OPERAND2":[2,"bK#"]},"fields":{},"shadow":false,"topLevel":false},"bK!":{"opcode":"operator_equals","next":null,"parent":"Nh","inputs":{"OPERAND1":[3,[12,"coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bK#":{"opcode":"operator_equals","next":null,"parent":"Nh","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"mH":{"opcode":"procedures_call","next":"Ni","parent":"ae","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","warp":"true"}},"Ni":{"opcode":"data_setvariableto","next":null,"parent":"mH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"ee":{"opcode":"control_if_else","next":"K","parent":"ae","inputs":{"CONDITION":[2,"bK%"],"SUBSTACK":[2,"Nj"],"SUBSTACK2":[2,"aNJ"]},"fields":{},"shadow":false,"topLevel":false},"bK%":{"opcode":"operator_equals","next":null,"parent":"ee","inputs":{"OPERAND1":[3,[12,"@render_bg","~C;tFyLG;WJlq~1ZPX1f"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nj":{"opcode":"control_for_each","next":"Nk","parent":"ee","inputs":{"VALUE":[1,[6,"33"]],"SUBSTACK":[2,"aNK"]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aNK":{"opcode":"procedures_call","next":"Nl","parent":"Nj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read nt","argumentids":"[]","warp":"true"}},"Nl":{"opcode":"data_setvariableto","next":"aNL","parent":"aNK","inputs":{"VALUE":[3,"bK(",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"bK(":{"opcode":"operator_add","next":null,"parent":"Nl","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,"0"]],"NUM2":[3,[12,"@bg_pattern","vTq-oq{gvgqfjW3L4iSt"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNL":{"opcode":"procedures_call","next":"F+","parent":"Nl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read at","argumentids":"[]","warp":"true"}},"F+":{"opcode":"data_setvariableto","next":"F,","parent":"aNL","inputs":{"VALUE":[3,"bK)",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"bK)":{"opcode":"operator_add","next":null,"parent":"F+","inputs":{"NUM1":[3,[12,"@nt_data","c8^9ZpQ-zkSNe^OG*WmN"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F,":{"opcode":"data_setvariableto","next":"aNM","parent":"F+","inputs":{"VALUE":[3,"F-",[10,""]]},"fields":{"VARIABLE":["@pattern_addr","]k`#qf@6r-uzGs-*/KqF"]},"shadow":false,"topLevel":false},"F-":{"opcode":"operator_add","next":null,"parent":"F,","inputs":{"NUM1":[3,"bK*",[4,"0"]],"NUM2":[3,"aNN",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK*":{"opcode":"operator_multiply","next":null,"parent":"F-","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aNN":{"opcode":"operator_mathop","next":null,"parent":"F-","inputs":{"NUM":[3,"bK+",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bK+":{"opcode":"operator_divide","next":null,"parent":"aNN","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"aNM":{"opcode":"procedures_call","next":"ef","parent":"F,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@read convert","argumentids":"[]","warp":"true"}},"ef":{"opcode":"control_if_else","next":"aNO","parent":"aNM","inputs":{"CONDITION":[2,"F."],"SUBSTACK":[2,"bK,"],"SUBSTACK2":[2,"af"]},"fields":{},"shadow":false,"topLevel":false},"F.":{"opcode":"operator_and","next":null,"parent":"ef","inputs":{"OPERAND1":[2,"bK-"],"OPERAND2":[2,"bK."]},"fields":{},"shadow":false,"topLevel":false},"bK-":{"opcode":"operator_gt","next":null,"parent":"F.","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK.":{"opcode":"operator_equals","next":null,"parent":"F.","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bK,":{"opcode":"procedures_call","next":null,"parent":"ef","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped left","argumentids":"[]","warp":"true"}},"af":{"opcode":"control_if_else","next":null,"parent":"ef","inputs":{"CONDITION":[2,"F/"],"SUBSTACK":[2,"aNP"],"SUBSTACK2":[2,"F:"]},"fields":{},"shadow":false,"topLevel":false},"F/":{"opcode":"operator_and","next":null,"parent":"af","inputs":{"OPERAND1":[2,"bK/"],"OPERAND2":[2,"bK:"]},"fields":{},"shadow":false,"topLevel":false},"bK/":{"opcode":"operator_gt","next":null,"parent":"F/","inputs":{"OPERAND1":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK:":{"opcode":"operator_equals","next":null,"parent":"F/","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"aNP":{"opcode":"procedures_call","next":null,"parent":"af","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","warp":"true"}},"F:":{"opcode":"control_if","next":null,"parent":"af","inputs":{"CONDITION":[2,"bK;"],"SUBSTACK":[2,"bK="]},"fields":{},"shadow":false,"topLevel":false},"bK;":{"opcode":"operator_lt","next":null,"parent":"F:","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"33"]]},"fields":{},"shadow":false,"topLevel":false},"bK=":{"opcode":"procedures_call","next":null,"parent":"F:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw bg line","argumentids":"[]","warp":"true"}},"aNO":{"opcode":"data_changevariableby","next":"F;","parent":"ef","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F;":{"opcode":"control_if","next":null,"parent":"aNO","inputs":{"CONDITION":[2,"aNQ"],"SUBSTACK":[2,"aNR"]},"fields":{},"shadow":false,"topLevel":false},"aNQ":{"opcode":"operator_equals","next":null,"parent":"F;","inputs":{"OPERAND1":[3,"bK?",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK?":{"opcode":"operator_mod","next":null,"parent":"aNQ","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aNR":{"opcode":"data_changevariableby","next":"F=","parent":"F;","inputs":{"VALUE":[1,[4,"-32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F=":{"opcode":"data_setvariableto","next":"F?","parent":"aNR","inputs":{"VALUE":[3,"aNS",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aNS":{"opcode":"operator_mathop","next":null,"parent":"F=","inputs":{"NUM":[3,"bK@",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bK@":{"opcode":"operator_divide","next":null,"parent":"aNS","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"F?":{"opcode":"data_setvariableto","next":"aNT","parent":"F=","inputs":{"VALUE":[3,"aNU",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"aNU":{"opcode":"operator_mod","next":null,"parent":"F?","inputs":{"NUM1":[3,"bK[",[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"bK[":{"opcode":"operator_add","next":null,"parent":"aNU","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aNT":{"opcode":"data_changevariableby","next":null,"parent":"F?","inputs":{"VALUE":[3,"bK]",[4,"0"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bK]":{"opcode":"operator_multiply","next":null,"parent":"aNT","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"Nk":{"opcode":"data_setvariableto","next":"F@","parent":"Nj","inputs":{"VALUE":[3,"F[",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F[":{"opcode":"operator_add","next":null,"parent":"Nk","inputs":{"NUM1":[3,"aNV",[4,"0"]],"NUM2":[3,"bK^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNV":{"opcode":"operator_subtract","next":null,"parent":"F[","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[3,"bK_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK_":{"opcode":"operator_mod","next":null,"parent":"aNV","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"bK^":{"opcode":"operator_mod","next":null,"parent":"F[","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"F@":{"opcode":"data_setvariableto","next":"F]","parent":"Nk","inputs":{"VALUE":[3,"aNW",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aNW":{"opcode":"operator_mathop","next":null,"parent":"F@","inputs":{"NUM":[3,"bK`",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bK`":{"opcode":"operator_divide","next":null,"parent":"aNW","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"F]":{"opcode":"data_setvariableto","next":"F^","parent":"F@","inputs":{"VALUE":[3,"F_",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"F_":{"opcode":"operator_add","next":null,"parent":"F]","inputs":{"NUM1":[3,"aNX",[4,"0"]],"NUM2":[3,"aNY",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aNX":{"opcode":"operator_subtract","next":null,"parent":"F_","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[3,"bK{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK{":{"opcode":"operator_mod","next":null,"parent":"aNX","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aNY":{"opcode":"operator_mathop","next":null,"parent":"F_","inputs":{"NUM":[3,"aNZ",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aNZ":{"opcode":"operator_divide","next":null,"parent":"aNY","inputs":{"NUM1":[3,"bK|",[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bK|":{"opcode":"operator_mod","next":null,"parent":"aNZ","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"F^":{"opcode":"data_setvariableto","next":"aN!","parent":"F]","inputs":{"VALUE":[3,"F`",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F`":{"opcode":"operator_add","next":null,"parent":"F^","inputs":{"NUM1":[3,"bK}",[4,"0"]],"NUM2":[3,"bK~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK}":{"opcode":"operator_mod","next":null,"parent":"F`","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bK~":{"opcode":"operator_multiply","next":null,"parent":"F`","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aN!":{"opcode":"data_changevariableby","next":"F{","parent":"F^","inputs":{"VALUE":[1,[4,"4096"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F{":{"opcode":"control_if","next":null,"parent":"aN!","inputs":{"CONDITION":[2,"bLa"],"SUBSTACK":[2,"aN#"]},"fields":{},"shadow":false,"topLevel":false},"bLa":{"opcode":"operator_gt","next":null,"parent":"F{","inputs":{"OPERAND1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[10,""]],"OPERAND2":[1,[10,"32767"]]},"fields":{},"shadow":false,"topLevel":false},"aN#":{"opcode":"data_changevariableby","next":"F|","parent":"F{","inputs":{"VALUE":[1,[4,"-32736"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F|":{"opcode":"control_if","next":null,"parent":"aN#","inputs":{"CONDITION":[2,"aN%"],"SUBSTACK":[2,"aN("]},"fields":{},"shadow":false,"topLevel":false},"aN%":{"opcode":"operator_equals","next":null,"parent":"F|","inputs":{"OPERAND1":[3,"aN)",[10,""]],"OPERAND2":[1,[10,"30"]]},"fields":{},"shadow":false,"topLevel":false},"aN)":{"opcode":"operator_mathop","next":null,"parent":"aN%","inputs":{"NUM":[3,"aN*",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aN*":{"opcode":"operator_divide","next":null,"parent":"aN)","inputs":{"NUM1":[3,"bLb",[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"bLb":{"opcode":"operator_mod","next":null,"parent":"aN*","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"aN(":{"opcode":"data_changevariableby","next":"F}","parent":"F|","inputs":{"VALUE":[1,[4,"-960"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"F}":{"opcode":"data_setvariableto","next":"F~","parent":"aN(","inputs":{"VALUE":[3,"aN+",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aN+":{"opcode":"operator_mathop","next":null,"parent":"F}","inputs":{"NUM":[3,"bLc",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bLc":{"opcode":"operator_divide","next":null,"parent":"aN+","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"F~":{"opcode":"data_setvariableto","next":"aN,","parent":"F}","inputs":{"VALUE":[3,"aN-",[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"aN-":{"opcode":"operator_mod","next":null,"parent":"F~","inputs":{"NUM1":[3,"bLd",[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"bLd":{"opcode":"operator_add","next":null,"parent":"aN-","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"2048"]]},"fields":{},"shadow":false,"topLevel":false},"aN,":{"opcode":"data_changevariableby","next":null,"parent":"F~","inputs":{"VALUE":[3,"bLe",[4,"0"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bLe":{"opcode":"operator_multiply","next":null,"parent":"aN,","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"aNJ":{"opcode":"control_repeat","next":null,"parent":"ee","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"bLf"]},"fields":{},"shadow":false,"topLevel":false},"bLf":{"opcode":"data_addtolist","next":null,"parent":"aNJ","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"K":{"opcode":"control_if","next":"mI","parent":"ee","inputs":{"CONDITION":[2,"aN."],"SUBSTACK":[2,"Ga"]},"fields":{},"shadow":false,"topLevel":false},"aN.":{"opcode":"operator_equals","next":null,"parent":"K","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ga":{"opcode":"data_setvariableto","next":"bD","parent":"K","inputs":{"VALUE":[3,"aN/",[10,""]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"aN/":{"opcode":"operator_subtract","next":null,"parent":"Ga","inputs":{"NUM1":[3,"bLg",[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bLg":{"opcode":"data_lengthoflist","next":null,"parent":"aN/","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bD":{"opcode":"control_repeat","next":"mJ","parent":"Ga","inputs":{"TIMES":[3,"mK",[6,"0"]],"SUBSTACK":[2,"Gb"]},"fields":{},"shadow":false,"topLevel":false},"mK":{"opcode":"operator_divide","next":null,"parent":"bD","inputs":{"NUM1":[3,"Gc",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Gc":{"opcode":"data_lengthoflist","next":null,"parent":"mK","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Gb":{"opcode":"data_setvariableto","next":"Gd","parent":"bD","inputs":{"VALUE":[3,"bLh",[10,""]]},"fields":{"VARIABLE":["@sprite_y","y`PaeB/{^[+=lUi~^f35"]},"shadow":false,"topLevel":false},"bLh":{"opcode":"data_itemoflist","next":null,"parent":"Gb","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"Gd":{"opcode":"data_setvariableto","next":"Ge","parent":"Gb","inputs":{"VALUE":[3,"aN:",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"aN:":{"opcode":"data_itemoflist","next":null,"parent":"Gd","inputs":{"INDEX":[3,"bLi",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bLi":{"opcode":"operator_add","next":null,"parent":"aN:","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"mJ":{"opcode":"data_deletealloflist","next":"eg","parent":"bD","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"eg":{"opcode":"data_setvariableto","next":"mL","parent":"mJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"mL":{"opcode":"data_setvariableto","next":"mM","parent":"eg","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"mM":{"opcode":"control_repeat_until","next":null,"parent":"mL","inputs":{"CONDITION":[2,"Gf"],"SUBSTACK":[2,"ag"]},"fields":{},"shadow":false,"topLevel":false},"Gf":{"opcode":"operator_or","next":null,"parent":"mM","inputs":{"OPERAND1":[2,"bLj"],"OPERAND2":[2,"bLk"]},"fields":{},"shadow":false,"topLevel":false},"bLj":{"opcode":"operator_equals","next":null,"parent":"Gf","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bLk":{"opcode":"operator_equals","next":null,"parent":"Gf","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"257"]]},"fields":{},"shadow":false,"topLevel":false},"ag":{"opcode":"control_if_else","next":null,"parent":"mM","inputs":{"CONDITION":[2,"Gg"],"SUBSTACK":[2,"BE"],"SUBSTACK2":[2,"aN;"]},"fields":{},"shadow":false,"topLevel":false},"Gg":{"opcode":"operator_and","next":null,"parent":"ag","inputs":{"OPERAND1":[2,"Gh"],"OPERAND2":[2,"Gi"]},"fields":{},"shadow":false,"topLevel":false},"Gh":{"opcode":"operator_lt","next":null,"parent":"Gg","inputs":{"OPERAND1":[3,"bLl",[10,""]],"OPERAND2":[3,"bLm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bLl":{"opcode":"data_itemoflist","next":null,"parent":"Gh","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"bLm":{"opcode":"operator_add","next":null,"parent":"Gh","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gi":{"opcode":"operator_gt","next":null,"parent":"Gg","inputs":{"OPERAND1":[3,"bLn",[10,""]],"OPERAND2":[3,"aN=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bLn":{"opcode":"data_itemoflist","next":null,"parent":"Gi","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"aN=":{"opcode":"operator_subtract","next":null,"parent":"Gi","inputs":{"NUM1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[4,"0"]],"NUM2":[3,"bLo",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bLo":{"opcode":"operator_multiply","next":null,"parent":"aN=","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"BE":{"opcode":"control_repeat","next":"bLp","parent":"ag","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"b%"]},"fields":{},"shadow":false,"topLevel":false},"bsL":{"opcode":"operator_equals","next":null,"parent":"b%","inputs":{"OPERAND1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aw?":{"opcode":"data_addtolist","next":null,"parent":"b%","inputs":{"ITEM":[3,"aN?",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"aN?":{"opcode":"operator_add","next":null,"parent":"aw?","inputs":{"NUM1":[3,"bLq",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bLq":{"opcode":"data_itemoflist","next":null,"parent":"aN?","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"aw@":{"opcode":"data_addtolist","next":null,"parent":"b%","inputs":{"ITEM":[3,"bLr",[10,""]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bLr":{"opcode":"data_itemoflist","next":null,"parent":"aw@","inputs":{"INDEX":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[7,"0"]]},"fields":{"LIST":["@oam_mem","XD{?H?Uh}uGjJ|Mb@Y+!"]},"shadow":false,"topLevel":false},"bsK":{"opcode":"data_changevariableby","next":null,"parent":"b%","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"bLp":{"opcode":"data_changevariableby","next":null,"parent":"BE","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aN;":{"opcode":"data_changevariableby","next":null,"parent":"ag","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"mI":{"opcode":"procedures_call","next":"eh","parent":"K","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","warp":"true"}},"eh":{"opcode":"data_changevariableby","next":"Gj","parent":"mI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Gj":{"opcode":"control_stop","next":null,"parent":"eh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ad":{"opcode":"control_if","next":"bE","parent":"cV","inputs":{"CONDITION":[2,"aN@"],"SUBSTACK":[2,"Gk"]},"fields":{},"shadow":false,"topLevel":false},"aN@":{"opcode":"operator_equals","next":null,"parent":"ad","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"Gk":{"opcode":"control_wait_until","next":"Gl","parent":"ad","inputs":{"CONDITION":[2,"Gm"]},"fields":{},"shadow":false,"topLevel":false},"Gm":{"opcode":"operator_gt","next":null,"parent":"Gk","inputs":{"OPERAND1":[3,"bLs",[10,""]],"OPERAND2":[3,"bLt",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bLs":{"opcode":"sensing_dayssince2000","next":null,"parent":"Gm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bLt":{"opcode":"operator_add","next":null,"parent":"Gm","inputs":{"NUM1":[3,[12,"@lastframe","n;0UExIQMoO!Lz=!vPek"],[4,"0"]],"NUM2":[1,[4,"0.0000001938"]]},"fields":{},"shadow":false,"topLevel":false},"Gl":{"opcode":"data_setvariableto","next":"aN[","parent":"Gk","inputs":{"VALUE":[3,"bLu",[10,""]]},"fields":{"VARIABLE":["@lastframe","n;0UExIQMoO!Lz=!vPek"]},"shadow":false,"topLevel":false},"bLu":{"opcode":"sensing_dayssince2000","next":null,"parent":"Gl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aN[":{"opcode":"data_changevariableby","next":"bLv","parent":"Gl","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"bLv":{"opcode":"control_stop","next":null,"parent":"aN[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bE":{"opcode":"control_if","next":"mN","parent":"ad","inputs":{"CONDITION":[2,"aN]"],"SUBSTACK":[2,"Gn"]},"fields":{},"shadow":false,"topLevel":false},"aN]":{"opcode":"operator_equals","next":null,"parent":"bE","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"Gn":{"opcode":"data_setvariableto","next":"ei","parent":"bE","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"ei":{"opcode":"control_if","next":"aN^","parent":"Gn","inputs":{"CONDITION":[2,"bLw"],"SUBSTACK":[2,"bLx"]},"fields":{},"shadow":false,"topLevel":false},"bLw":{"opcode":"operator_equals","next":null,"parent":"ei","inputs":{"OPERAND1":[3,[12,"@nmi_enabled","2j/RBbii5O{|d#5d)@hc"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bLx":{"opcode":"data_setvariableto","next":null,"parent":"ei","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"aN^":{"opcode":"data_changevariableby","next":"bLy","parent":"ei","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"bLy":{"opcode":"control_stop","next":null,"parent":"aN^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mN":{"opcode":"control_if","next":"Go","parent":"bE","inputs":{"CONDITION":[2,"bLz"],"SUBSTACK":[2,"aN_"]},"fields":{},"shadow":false,"topLevel":false},"bLz":{"opcode":"operator_lt","next":null,"parent":"mN","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"aN_":{"opcode":"data_changevariableby","next":"bLA","parent":"mN","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"bLA":{"opcode":"control_stop","next":null,"parent":"aN_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Go":{"opcode":"control_if","next":null,"parent":"mN","inputs":{"CONDITION":[2,"bLB"],"SUBSTACK":[2,"aN`"]},"fields":{},"shadow":false,"topLevel":false},"bLB":{"opcode":"operator_equals","next":null,"parent":"Go","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"261"]]},"fields":{},"shadow":false,"topLevel":false},"aN`":{"opcode":"data_changevariableby","next":"aN{","parent":"Go","inputs":{"VALUE":[1,[4,"-262"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"aN{":{"opcode":"data_setvariableto","next":"aN|","parent":"aN`","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"aN|":{"opcode":"data_setvariableto","next":"aN}","parent":"aN{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@sprite_overflow","n/uGuI@m:8GT`1-G^|Oe"]},"shadow":false,"topLevel":false},"aN}":{"opcode":"data_setvariableto","next":"aN~","parent":"aN|","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"aN~":{"opcode":"data_setvariableto","next":"aOa","parent":"aN}","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["nes: NMI","G2?CoJ$Jx$O?F?(7oUHy"]},"shadow":false,"topLevel":false},"aOa":{"opcode":"data_changevariableby","next":"aOb","parent":"aN~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"aOb":{"opcode":"data_deletealloflist","next":"aOc","parent":"aOa","inputs":{},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aOc":{"opcode":"data_deletealloflist","next":"bLC","parent":"aOb","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bLC":{"opcode":"control_stop","next":null,"parent":"aOc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Mw":{"opcode":"data_setvariableto","next":"ej","parent":"D:","inputs":{"VALUE":[3,"mO",[10,""]]},"fields":{"VARIABLE":["#sq1_swperiod","8IbJ`L:k(VYE2y+AXNN`"]},"shadow":false,"topLevel":false},"mO":{"opcode":"operator_mod","next":null,"parent":"Mw","inputs":{"NUM1":[3,"ek",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ek":{"opcode":"operator_mathop","next":null,"parent":"mO","inputs":{"NUM":[3,"Gp",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Gp":{"opcode":"operator_divide","next":null,"parent":"ek","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ej":{"opcode":"data_setvariableto","next":"k|","parent":"Mw","inputs":{"VALUE":[3,"mP",[10,""]]},"fields":{"VARIABLE":["#sq1_swnegate","@38r@HPL^9siX}wJ8M!P"]},"shadow":false,"topLevel":false},"mP":{"opcode":"operator_add","next":null,"parent":"ej","inputs":{"NUM1":[3,"el",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"el":{"opcode":"operator_gt","next":null,"parent":"mP","inputs":{"OPERAND1":[3,"Gq",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Gq":{"opcode":"operator_mod","next":null,"parent":"el","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"k|":{"opcode":"data_setvariableto","next":"mQ","parent":"ej","inputs":{"VALUE":[3,"aOd",[10,""]]},"fields":{"VARIABLE":["#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"]},"shadow":false,"topLevel":false},"aOd":{"opcode":"operator_mod","next":null,"parent":"k|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"mQ":{"opcode":"data_setvariableto","next":"Gr","parent":"k|","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"Gr":{"opcode":"control_stop","next":null,"parent":"mQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"DC":{"opcode":"data_setvariableto","next":"aC^","parent":"aC[","inputs":{"VALUE":[3,"aC]",[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"byZ":{"opcode":"operator_add","next":null,"parent":"aC]","inputs":{"NUM1":[3,[12,"nes: address","LieAxAMhdI5M{cEs}+(t"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"j;":{"opcode":"control_if","next":"Gs","parent":"j:","inputs":{"CONDITION":[2,"bLD"],"SUBSTACK":[2,"aOe"]},"fields":{},"shadow":false,"topLevel":false},"bLD":{"opcode":"operator_equals","next":null,"parent":"j;","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"200"]]},"fields":{},"shadow":false,"topLevel":false},"aOe":{"opcode":"procedures_call","next":"bLE","parent":"j;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"iny","argumentids":"[]","warp":"false"}},"bLE":{"opcode":"control_stop","next":null,"parent":"aOe","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gs":{"opcode":"control_if","next":null,"parent":"j;","inputs":{"CONDITION":[2,"bLF"],"SUBSTACK":[2,"aOf"]},"fields":{},"shadow":false,"topLevel":false},"bLF":{"opcode":"operator_equals","next":null,"parent":"Gs","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"232"]]},"fields":{},"shadow":false,"topLevel":false},"aOf":{"opcode":"procedures_call","next":"bLG","parent":"Gs","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inx","argumentids":"[]","warp":"false"}},"bLG":{"opcode":"control_stop","next":null,"parent":"aOf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"kh":{"opcode":"control_if","next":"mR","parent":"kg","inputs":{"CONDITION":[2,"bLH"],"SUBSTACK":[2,"aOg"]},"fields":{},"shadow":false,"topLevel":false},"bLH":{"opcode":"operator_equals","next":null,"parent":"kh","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aOg":{"opcode":"procedures_call","next":"bLI","parent":"kh","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rti","argumentids":"[]","warp":"false"}},"bLI":{"opcode":"control_stop","next":null,"parent":"aOg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mR":{"opcode":"control_if","next":"mS","parent":"kh","inputs":{"CONDITION":[2,"bLJ"],"SUBSTACK":[2,"aOh"]},"fields":{},"shadow":false,"topLevel":false},"bLJ":{"opcode":"operator_equals","next":null,"parent":"mR","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aOh":{"opcode":"procedures_call","next":"bLK","parent":"mR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rts","argumentids":"[]","warp":"false"}},"bLK":{"opcode":"control_stop","next":null,"parent":"aOh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mS":{"opcode":"control_if","next":"mT","parent":"mR","inputs":{"CONDITION":[2,"Gt"],"SUBSTACK":[2,"aOi"]},"fields":{},"shadow":false,"topLevel":false},"Gt":{"opcode":"operator_or","next":null,"parent":"mS","inputs":{"OPERAND1":[2,"bLL"],"OPERAND2":[2,"bLM"]},"fields":{},"shadow":false,"topLevel":false},"bLL":{"opcode":"operator_equals","next":null,"parent":"Gt","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"36"]]},"fields":{},"shadow":false,"topLevel":false},"bLM":{"opcode":"operator_equals","next":null,"parent":"Gt","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"44"]]},"fields":{},"shadow":false,"topLevel":false},"aOi":{"opcode":"procedures_call","next":"bLN","parent":"mS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"bit","argumentids":"[]","warp":"false"}},"bLN":{"opcode":"control_stop","next":null,"parent":"aOi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mT":{"opcode":"control_if","next":"aOj","parent":"mS","inputs":{"CONDITION":[2,"Gu"],"SUBSTACK":[2,"aOk"]},"fields":{},"shadow":false,"topLevel":false},"Gu":{"opcode":"operator_or","next":null,"parent":"mT","inputs":{"OPERAND1":[2,"bLO"],"OPERAND2":[2,"bLP"]},"fields":{},"shadow":false,"topLevel":false},"bLO":{"opcode":"operator_equals","next":null,"parent":"Gu","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"76"]]},"fields":{},"shadow":false,"topLevel":false},"bLP":{"opcode":"operator_equals","next":null,"parent":"Gu","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"108"]]},"fields":{},"shadow":false,"topLevel":false},"aOk":{"opcode":"procedures_call","next":"bLQ","parent":"mT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"jmp","argumentids":"[]","warp":"false"}},"bLQ":{"opcode":"control_stop","next":null,"parent":"aOk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOj":{"opcode":"procedures_call","next":"bLR","parent":"mT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"bLR":{"opcode":"control_stop","next":null,"parent":"aOj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"km":{"opcode":"control_if","next":"aOl","parent":"kl","inputs":{"CONDITION":[2,"bLS"],"SUBSTACK":[2,"aOm"]},"fields":{},"shadow":false,"topLevel":false},"bLS":{"opcode":"operator_gt","next":null,"parent":"km","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"211"]]},"fields":{},"shadow":false,"topLevel":false},"aOm":{"opcode":"procedures_call","next":"bLT","parent":"km","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"bLT":{"opcode":"control_stop","next":null,"parent":"aOm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOl":{"opcode":"procedures_call","next":"bLU","parent":"km","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpy","argumentids":"[]","warp":"false"}},"bLU":{"opcode":"control_stop","next":null,"parent":"aOl","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ko":{"opcode":"control_if","next":"mU","parent":"j(","inputs":{"CONDITION":[2,"aOn"],"SUBSTACK":[2,"mV"]},"fields":{},"shadow":false,"topLevel":false},"aOn":{"opcode":"operator_equals","next":null,"parent":"ko","inputs":{"OPERAND1":[3,"bLV",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bLV":{"opcode":"operator_mod","next":null,"parent":"aOn","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"mV":{"opcode":"control_if","next":"mW","parent":"ko","inputs":{"CONDITION":[2,"bLW"],"SUBSTACK":[2,"mX"]},"fields":{},"shadow":false,"topLevel":false},"bLW":{"opcode":"operator_lt","next":null,"parent":"mV","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"mX":{"opcode":"control_if","next":"mY","parent":"mV","inputs":{"CONDITION":[2,"aOo"],"SUBSTACK":[2,"bLX"]},"fields":{},"shadow":false,"topLevel":false},"aOo":{"opcode":"operator_equals","next":null,"parent":"mX","inputs":{"OPERAND1":[3,"bLY",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"bLY":{"opcode":"operator_mod","next":null,"parent":"aOo","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"bLX":{"opcode":"control_stop","next":null,"parent":"mX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mY":{"opcode":"control_if","next":"mZ","parent":"mX","inputs":{"CONDITION":[2,"bLZ"],"SUBSTACK":[2,"aOp"]},"fields":{},"shadow":false,"topLevel":false},"bLZ":{"opcode":"operator_lt","next":null,"parent":"mY","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aOp":{"opcode":"procedures_call","next":"bL!","parent":"mY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"asl","argumentids":"[]","warp":"false"}},"bL!":{"opcode":"control_stop","next":null,"parent":"aOp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mZ":{"opcode":"control_if","next":"m!","parent":"mY","inputs":{"CONDITION":[2,"bL#"],"SUBSTACK":[2,"aOq"]},"fields":{},"shadow":false,"topLevel":false},"bL#":{"opcode":"operator_lt","next":null,"parent":"mZ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aOq":{"opcode":"procedures_call","next":"bL%","parent":"mZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rol","argumentids":"[]","warp":"false"}},"bL%":{"opcode":"control_stop","next":null,"parent":"aOq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m!":{"opcode":"control_if","next":"Gv","parent":"mZ","inputs":{"CONDITION":[2,"bL("],"SUBSTACK":[2,"aOr"]},"fields":{},"shadow":false,"topLevel":false},"bL(":{"opcode":"operator_lt","next":null,"parent":"m!","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aOr":{"opcode":"procedures_call","next":"bL)","parent":"m!","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lsr","argumentids":"[]","warp":"false"}},"bL)":{"opcode":"control_stop","next":null,"parent":"aOr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gv":{"opcode":"control_if","next":null,"parent":"m!","inputs":{"CONDITION":[2,"bL*"],"SUBSTACK":[2,"aOs"]},"fields":{},"shadow":false,"topLevel":false},"bL*":{"opcode":"operator_lt","next":null,"parent":"Gv","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aOs":{"opcode":"procedures_call","next":"bL+","parent":"Gv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ror","argumentids":"[]","warp":"false"}},"bL+":{"opcode":"control_stop","next":null,"parent":"aOs","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mW":{"opcode":"control_if","next":"m#","parent":"mV","inputs":{"CONDITION":[2,"aOt"],"SUBSTACK":[2,"m%"]},"fields":{},"shadow":false,"topLevel":false},"aOt":{"opcode":"operator_equals","next":null,"parent":"mW","inputs":{"OPERAND1":[3,"bL,",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"bL,":{"opcode":"operator_mod","next":null,"parent":"aOt","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"m%":{"opcode":"control_if","next":"m(","parent":"mW","inputs":{"CONDITION":[2,"bL-"],"SUBSTACK":[2,"aOu"]},"fields":{},"shadow":false,"topLevel":false},"bL-":{"opcode":"operator_equals","next":null,"parent":"m%","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"138"]]},"fields":{},"shadow":false,"topLevel":false},"aOu":{"opcode":"procedures_call","next":"bL.","parent":"m%","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txa","argumentids":"[]","warp":"false"}},"bL.":{"opcode":"control_stop","next":null,"parent":"aOu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m(":{"opcode":"control_if","next":"m)","parent":"m%","inputs":{"CONDITION":[2,"bL/"],"SUBSTACK":[2,"aOv"]},"fields":{},"shadow":false,"topLevel":false},"bL/":{"opcode":"operator_equals","next":null,"parent":"m(","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"170"]]},"fields":{},"shadow":false,"topLevel":false},"aOv":{"opcode":"procedures_call","next":"bL:","parent":"m(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tax","argumentids":"[]","warp":"false"}},"bL:":{"opcode":"control_stop","next":null,"parent":"aOv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m)":{"opcode":"control_if","next":"bL;","parent":"m(","inputs":{"CONDITION":[2,"bL="],"SUBSTACK":[2,"aOw"]},"fields":{},"shadow":false,"topLevel":false},"bL=":{"opcode":"operator_equals","next":null,"parent":"m)","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"202"]]},"fields":{},"shadow":false,"topLevel":false},"aOw":{"opcode":"procedures_call","next":"bL?","parent":"m)","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dex","argumentids":"[]","warp":"false"}},"bL?":{"opcode":"control_stop","next":null,"parent":"aOw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bL;":{"opcode":"control_stop","next":null,"parent":"m)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m#":{"opcode":"control_if","next":"m*","parent":"mW","inputs":{"CONDITION":[2,"aOx"],"SUBSTACK":[2,"m+"]},"fields":{},"shadow":false,"topLevel":false},"aOx":{"opcode":"operator_equals","next":null,"parent":"m#","inputs":{"OPERAND1":[3,"bL@",[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"bL@":{"opcode":"operator_mod","next":null,"parent":"aOx","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"m+":{"opcode":"control_if","next":"m,","parent":"m#","inputs":{"CONDITION":[2,"bL["],"SUBSTACK":[2,"aOy"]},"fields":{},"shadow":false,"topLevel":false},"bL[":{"opcode":"operator_equals","next":null,"parent":"m+","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"154"]]},"fields":{},"shadow":false,"topLevel":false},"aOy":{"opcode":"procedures_call","next":"bL]","parent":"m+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"txs","argumentids":"[]","warp":"false"}},"bL]":{"opcode":"control_stop","next":null,"parent":"aOy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m,":{"opcode":"control_if","next":"bL^","parent":"m+","inputs":{"CONDITION":[2,"bL_"],"SUBSTACK":[2,"aOz"]},"fields":{},"shadow":false,"topLevel":false},"bL_":{"opcode":"operator_equals","next":null,"parent":"m,","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"186"]]},"fields":{},"shadow":false,"topLevel":false},"aOz":{"opcode":"procedures_call","next":"bL`","parent":"m,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tsx","argumentids":"[]","warp":"false"}},"bL`":{"opcode":"control_stop","next":null,"parent":"aOz","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bL^":{"opcode":"control_stop","next":null,"parent":"m,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m*":{"opcode":"control_if","next":"Gw","parent":"m#","inputs":{"CONDITION":[2,"bL{"],"SUBSTACK":[2,"Gx"]},"fields":{},"shadow":false,"topLevel":false},"bL{":{"opcode":"operator_lt","next":null,"parent":"m*","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"Gx":{"opcode":"control_if","next":"m-","parent":"m*","inputs":{"CONDITION":[2,"bL|"],"SUBSTACK":[2,"bL}"]},"fields":{},"shadow":false,"topLevel":false},"bL|":{"opcode":"operator_equals","next":null,"parent":"Gx","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"130"]]},"fields":{},"shadow":false,"topLevel":false},"bL}":{"opcode":"control_stop","next":null,"parent":"Gx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m-":{"opcode":"control_if","next":"aOA","parent":"Gx","inputs":{"CONDITION":[2,"bL~"],"SUBSTACK":[2,"aOB"]},"fields":{},"shadow":false,"topLevel":false},"bL~":{"opcode":"operator_equals","next":null,"parent":"m-","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"158"]]},"fields":{},"shadow":false,"topLevel":false},"aOB":{"opcode":"procedures_call","next":"bMa","parent":"m-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"shx","argumentids":"[]","warp":"false"}},"bMa":{"opcode":"control_stop","next":null,"parent":"aOB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOA":{"opcode":"procedures_call","next":"bMb","parent":"m-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"stx","argumentids":"[]","warp":"false"}},"bMb":{"opcode":"control_stop","next":null,"parent":"aOA","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gw":{"opcode":"control_if","next":"m.","parent":"m*","inputs":{"CONDITION":[2,"bMc"],"SUBSTACK":[2,"aOC"]},"fields":{},"shadow":false,"topLevel":false},"bMc":{"opcode":"operator_lt","next":null,"parent":"Gw","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"aOC":{"opcode":"procedures_call","next":"bMd","parent":"Gw","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ldx","argumentids":"[]","warp":"false"}},"bMd":{"opcode":"control_stop","next":null,"parent":"aOC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m.":{"opcode":"control_if","next":"Gy","parent":"Gw","inputs":{"CONDITION":[2,"bMe"],"SUBSTACK":[2,"m/"]},"fields":{},"shadow":false,"topLevel":false},"bMe":{"opcode":"operator_lt","next":null,"parent":"m.","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"m/":{"opcode":"control_if","next":"aOD","parent":"m.","inputs":{"CONDITION":[2,"bMf"],"SUBSTACK":[2,"bMg"]},"fields":{},"shadow":false,"topLevel":false},"bMf":{"opcode":"operator_equals","next":null,"parent":"m/","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"194"]]},"fields":{},"shadow":false,"topLevel":false},"bMg":{"opcode":"control_stop","next":null,"parent":"m/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOD":{"opcode":"procedures_call","next":"bMh","parent":"m/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dec","argumentids":"[]","warp":"false"}},"bMh":{"opcode":"control_stop","next":null,"parent":"aOD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gy":{"opcode":"control_if","next":null,"parent":"m.","inputs":{"CONDITION":[2,"bMi"],"SUBSTACK":[2,"m:"]},"fields":{},"shadow":false,"topLevel":false},"bMi":{"opcode":"operator_lt","next":null,"parent":"Gy","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"m:":{"opcode":"control_if","next":"aOE","parent":"Gy","inputs":{"CONDITION":[2,"bMj"],"SUBSTACK":[2,"bMk"]},"fields":{},"shadow":false,"topLevel":false},"bMj":{"opcode":"operator_equals","next":null,"parent":"m:","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"226"]]},"fields":{},"shadow":false,"topLevel":false},"bMk":{"opcode":"control_stop","next":null,"parent":"m:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOE":{"opcode":"procedures_call","next":"bMl","parent":"m:","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"inc","argumentids":"[]","warp":"false"}},"bMl":{"opcode":"control_stop","next":null,"parent":"aOE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mU":{"opcode":"control_if","next":"aOF","parent":"ko","inputs":{"CONDITION":[2,"aOG"],"SUBSTACK":[2,"m;"]},"fields":{},"shadow":false,"topLevel":false},"aOG":{"opcode":"operator_equals","next":null,"parent":"mU","inputs":{"OPERAND1":[3,"bMm",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bMm":{"opcode":"operator_mod","next":null,"parent":"aOG","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"m;":{"opcode":"control_if","next":"m=","parent":"mU","inputs":{"CONDITION":[2,"aOH"],"SUBSTACK":[2,"m?"]},"fields":{},"shadow":false,"topLevel":false},"aOH":{"opcode":"operator_equals","next":null,"parent":"m;","inputs":{"OPERAND1":[3,"bMn",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"bMn":{"opcode":"operator_mod","next":null,"parent":"aOH","inputs":{"NUM1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"m?":{"opcode":"control_if","next":"m@","parent":"m;","inputs":{"CONDITION":[2,"bMo"],"SUBSTACK":[2,"aOI"]},"fields":{},"shadow":false,"topLevel":false},"bMo":{"opcode":"operator_lt","next":null,"parent":"m?","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"44"]]},"fields":{},"shadow":false,"topLevel":false},"aOI":{"opcode":"procedures_call","next":"bMp","parent":"m?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"anc","argumentids":"[]","warp":"true"}},"bMp":{"opcode":"control_stop","next":null,"parent":"aOI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m@":{"opcode":"control_if","next":"m[","parent":"m?","inputs":{"CONDITION":[2,"bMq"],"SUBSTACK":[2,"aOJ"]},"fields":{},"shadow":false,"topLevel":false},"bMq":{"opcode":"operator_equals","next":null,"parent":"m@","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"75"]]},"fields":{},"shadow":false,"topLevel":false},"aOJ":{"opcode":"procedures_call","next":"bMr","parent":"m@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"alr","argumentids":"[]","warp":"false"}},"bMr":{"opcode":"control_stop","next":null,"parent":"aOJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m[":{"opcode":"control_if","next":"YP","parent":"m@","inputs":{"CONDITION":[2,"bMs"],"SUBSTACK":[2,"aOK"]},"fields":{},"shadow":false,"topLevel":false},"bMs":{"opcode":"operator_equals","next":null,"parent":"m[","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"107"]]},"fields":{},"shadow":false,"topLevel":false},"aOK":{"opcode":"procedures_call","next":"bMt","parent":"m[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"arr","argumentids":"[]","warp":"false"}},"bMt":{"opcode":"control_stop","next":null,"parent":"aOK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YP":{"opcode":"control_if","next":"YQ","parent":"m[","inputs":{"CONDITION":[2,"bMu"],"SUBSTACK":[2,"aOL"]},"fields":{},"shadow":false,"topLevel":false},"bMu":{"opcode":"operator_equals","next":null,"parent":"YP","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"139"]]},"fields":{},"shadow":false,"topLevel":false},"aOL":{"opcode":"procedures_call","next":"bMv","parent":"YP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"xaa","argumentids":"[]","warp":"false"}},"bMv":{"opcode":"control_stop","next":null,"parent":"aOL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YQ":{"opcode":"control_if","next":"YR","parent":"YP","inputs":{"CONDITION":[2,"bMw"],"SUBSTACK":[2,"aOM"]},"fields":{},"shadow":false,"topLevel":false},"bMw":{"opcode":"operator_equals","next":null,"parent":"YQ","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"171"]]},"fields":{},"shadow":false,"topLevel":false},"aOM":{"opcode":"procedures_call","next":"bMx","parent":"YQ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","warp":"false"}},"bMx":{"opcode":"control_stop","next":null,"parent":"aOM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YR":{"opcode":"control_if","next":"Gz","parent":"YQ","inputs":{"CONDITION":[2,"bMy"],"SUBSTACK":[2,"aON"]},"fields":{},"shadow":false,"topLevel":false},"bMy":{"opcode":"operator_equals","next":null,"parent":"YR","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"203"]]},"fields":{},"shadow":false,"topLevel":false},"aON":{"opcode":"procedures_call","next":"bMz","parent":"YR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"axs","argumentids":"[]","warp":"false"}},"bMz":{"opcode":"control_stop","next":null,"parent":"aON","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Gz":{"opcode":"control_if","next":null,"parent":"YR","inputs":{"CONDITION":[2,"bMA"],"SUBSTACK":[2,"aOO"]},"fields":{},"shadow":false,"topLevel":false},"bMA":{"opcode":"operator_equals","next":null,"parent":"Gz","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"235"]]},"fields":{},"shadow":false,"topLevel":false},"aOO":{"opcode":"procedures_call","next":"bMB","parent":"Gz","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sbc","argumentids":"[]","warp":"false"}},"bMB":{"opcode":"control_stop","next":null,"parent":"aOO","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m=":{"opcode":"control_if","next":"YS","parent":"m;","inputs":{"CONDITION":[2,"bMC"],"SUBSTACK":[2,"aOP"]},"fields":{},"shadow":false,"topLevel":false},"bMC":{"opcode":"operator_lt","next":null,"parent":"m=","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aOP":{"opcode":"procedures_call","next":"bMD","parent":"m=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"slo","argumentids":"[]","warp":"false"}},"bMD":{"opcode":"control_stop","next":null,"parent":"aOP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YS":{"opcode":"control_if","next":"YT","parent":"m=","inputs":{"CONDITION":[2,"bME"],"SUBSTACK":[2,"aOQ"]},"fields":{},"shadow":false,"topLevel":false},"bME":{"opcode":"operator_lt","next":null,"parent":"YS","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aOQ":{"opcode":"procedures_call","next":"bMF","parent":"YS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rla","argumentids":"[]","warp":"false"}},"bMF":{"opcode":"control_stop","next":null,"parent":"aOQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YT":{"opcode":"control_if","next":"YU","parent":"YS","inputs":{"CONDITION":[2,"bMG"],"SUBSTACK":[2,"aOR"]},"fields":{},"shadow":false,"topLevel":false},"bMG":{"opcode":"operator_lt","next":null,"parent":"YT","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"96"]]},"fields":{},"shadow":false,"topLevel":false},"aOR":{"opcode":"procedures_call","next":"bMH","parent":"YT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sre","argumentids":"[]","warp":"false"}},"bMH":{"opcode":"control_stop","next":null,"parent":"aOR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YU":{"opcode":"control_if","next":"YV","parent":"YT","inputs":{"CONDITION":[2,"bMI"],"SUBSTACK":[2,"aOS"]},"fields":{},"shadow":false,"topLevel":false},"bMI":{"opcode":"operator_lt","next":null,"parent":"YU","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aOS":{"opcode":"procedures_call","next":"bMJ","parent":"YU","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rra","argumentids":"[]","warp":"false"}},"bMJ":{"opcode":"control_stop","next":null,"parent":"aOS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YV":{"opcode":"control_if","next":"YW","parent":"YU","inputs":{"CONDITION":[2,"bMK"],"SUBSTACK":[2,"aOT"]},"fields":{},"shadow":false,"topLevel":false},"bMK":{"opcode":"operator_lt","next":null,"parent":"YV","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"aOT":{"opcode":"procedures_call","next":"bML","parent":"YV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"sax","argumentids":"[]","warp":"false"}},"bML":{"opcode":"control_stop","next":null,"parent":"aOT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YW":{"opcode":"control_if","next":"YX","parent":"YV","inputs":{"CONDITION":[2,"bMM"],"SUBSTACK":[2,"aOU"]},"fields":{},"shadow":false,"topLevel":false},"bMM":{"opcode":"operator_lt","next":null,"parent":"YW","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"aOU":{"opcode":"procedures_call","next":"bMN","parent":"YW","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"lax","argumentids":"[]","warp":"false"}},"bMN":{"opcode":"control_stop","next":null,"parent":"aOU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YX":{"opcode":"control_if","next":"%D","parent":"YW","inputs":{"CONDITION":[2,"bMO"],"SUBSTACK":[2,"aOV"]},"fields":{},"shadow":false,"topLevel":false},"bMO":{"opcode":"operator_lt","next":null,"parent":"YX","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"224"]]},"fields":{},"shadow":false,"topLevel":false},"aOV":{"opcode":"procedures_call","next":"bMP","parent":"YX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"dcp","argumentids":"[]","warp":"false"}},"bMP":{"opcode":"control_stop","next":null,"parent":"aOV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"%D":{"opcode":"control_if","next":null,"parent":"YX","inputs":{"CONDITION":[2,"bMQ"],"SUBSTACK":[2,"aOW"]},"fields":{},"shadow":false,"topLevel":false},"bMQ":{"opcode":"operator_lt","next":null,"parent":"%D","inputs":{"OPERAND1":[3,[12,"!op","PdO5iRC_RNzBVsdyMO(q"],[10,""]],"OPERAND2":[1,[10,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aOW":{"opcode":"procedures_call","next":"bMR","parent":"%D","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"isc","argumentids":"[]","warp":"false"}},"bMR":{"opcode":"control_stop","next":null,"parent":"aOW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aOF":{"opcode":"sensing_askandwait","next":"bMS","parent":"mU","inputs":{"QUESTION":[1,[10,"How did you get this message?"]]},"fields":{},"shadow":false,"topLevel":false},"bMS":{"opcode":"control_stop","next":null,"parent":"aOF","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"J]":{"opcode":"control_if_else","next":"bMT","parent":"kE","inputs":{"CONDITION":[2,"aOX"],"SUBSTACK":[2,"aOY"],"SUBSTACK2":[2,"bMU"]},"fields":{},"shadow":false,"topLevel":false},"aOX":{"opcode":"operator_equals","next":null,"parent":"J]","inputs":{"OPERAND1":[3,"bMV",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bMV":{"opcode":"operator_mod","next":null,"parent":"aOX","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aOY":{"opcode":"data_setvariableto","next":"aOZ","parent":"J]","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"aOZ":{"opcode":"data_setvariableto","next":"bMW","parent":"aOY","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port1_count","0D@F26Q(QbXNRv;sB.Ye"]},"shadow":false,"topLevel":false},"bMW":{"opcode":"data_setvariableto","next":null,"parent":"aOZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!port2_count","gJ4fW7d.auVkNJS*cbF."]},"shadow":false,"topLevel":false},"bMU":{"opcode":"data_setvariableto","next":null,"parent":"J]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["!ctrl_strobe",":!.1hRdP~CdZKrp$qkR@"]},"shadow":false,"topLevel":false},"bMT":{"opcode":"control_stop","next":null,"parent":"J]","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"K{":{"opcode":"control_repeat","next":"%E","parent":"K^","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"%F"]},"fields":{},"shadow":false,"topLevel":false},"%F":{"opcode":"data_replaceitemoflist","next":"bMX","parent":"K{","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"aO!",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aO!":{"opcode":"operator_multiply","next":null,"parent":"%F","inputs":{"NUM1":[3,"bMY",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bMY":{"opcode":"operator_mod","next":null,"parent":"aO!","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bMX":{"opcode":"data_changevariableby","next":null,"parent":"%F","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"%E":{"opcode":"control_repeat","next":"bMZ","parent":"K{","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"%G"]},"fields":{},"shadow":false,"topLevel":false},"%G":{"opcode":"data_replaceitemoflist","next":"bM!","parent":"%E","inputs":{"INDEX":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[7,"0"]],"ITEM":[3,"aO#",[10,""]]},"fields":{"LIST":["@attribute2","YVPgH6bmZSr~u;F.Qp|3"]},"shadow":false,"topLevel":false},"aO#":{"opcode":"operator_multiply","next":null,"parent":"%G","inputs":{"NUM1":[3,"aO%",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aO%":{"opcode":"operator_mod","next":null,"parent":"aO#","inputs":{"NUM1":[3,"aO(",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aO(":{"opcode":"operator_mathop","next":null,"parent":"aO%","inputs":{"NUM":[3,"bM#",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bM#":{"opcode":"operator_divide","next":null,"parent":"aO(","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bM!":{"opcode":"data_changevariableby","next":null,"parent":"%G","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"bMZ":{"opcode":"data_changevariableby","next":null,"parent":"%E","inputs":{"VALUE":[1,[4,"28"]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Ge":{"opcode":"data_setvariableto","next":"%H","parent":"Gd","inputs":{"VALUE":[3,"aO)",[10,""]]},"fields":{"VARIABLE":["@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"]},"shadow":false,"topLevel":false},"aO)":{"opcode":"data_itemoflist","next":null,"parent":"Ge","inputs":{"INDEX":[3,"bM%",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bM%":{"opcode":"operator_add","next":null,"parent":"aO)","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"%H":{"opcode":"data_setvariableto","next":"m]","parent":"Ge","inputs":{"VALUE":[3,"aO*",[10,""]]},"fields":{"VARIABLE":["@sprite_x","*`+18/=FU3Ni:/*T,!l("]},"shadow":false,"topLevel":false},"aO*":{"opcode":"data_itemoflist","next":null,"parent":"%H","inputs":{"INDEX":[3,"bM(",[7,"0"]]},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"bM(":{"opcode":"operator_add","next":null,"parent":"aO*","inputs":{"NUM1":[3,[12,"@counter","0hDEcBYI%En[Mn~,-dgZ"],[4,"0"]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"m]":{"opcode":"control_if_else","next":"%I","parent":"%H","inputs":{"CONDITION":[2,"bM)"],"SUBSTACK":[2,"aO+"],"SUBSTACK2":[2,"bM*"]},"fields":{},"shadow":false,"topLevel":false},"bM)":{"opcode":"operator_equals","next":null,"parent":"m]","inputs":{"OPERAND1":[3,[12,"@sprite_size","6-5_Tcd.JImB^+U#4bLB"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aO+":{"opcode":"data_setvariableto","next":null,"parent":"m]","inputs":{"VALUE":[3,"%J",[10,""]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"%J":{"opcode":"operator_add","next":null,"parent":"aO+","inputs":{"NUM1":[3,"aO,",[4,"0"]],"NUM2":[3,"aO-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO,":{"opcode":"operator_subtract","next":null,"parent":"%J","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[3,"bM+",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bM+":{"opcode":"operator_mod","next":null,"parent":"aO,","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aO-":{"opcode":"operator_multiply","next":null,"parent":"%J","inputs":{"NUM1":[3,"bM,",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bM,":{"opcode":"operator_mod","next":null,"parent":"aO-","inputs":{"NUM1":[3,[12,"@tile_index","x`t:)+)xe^7Rio7v]}F]"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bM*":{"opcode":"data_changevariableby","next":null,"parent":"m]","inputs":{"VALUE":[3,[12,"@sprite_pattern","OGQilL=pA|ghGCn/Ae3?"],[4,"0"]]},"fields":{"VARIABLE":["@tile_index","x`t:)+)xe^7Rio7v]}F]"]},"shadow":false,"topLevel":false},"%I":{"opcode":"data_setvariableto","next":"%K","parent":"m]","inputs":{"VALUE":[3,"aO.",[10,""]]},"fields":{"VARIABLE":["@palette","1oCHy{p]O4~gQKbeR[pS"]},"shadow":false,"topLevel":false},"aO.":{"opcode":"operator_add","next":null,"parent":"%I","inputs":{"NUM1":[3,"aO/",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aO/":{"opcode":"operator_multiply","next":null,"parent":"aO.","inputs":{"NUM1":[3,"bM-",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bM-":{"opcode":"operator_mod","next":null,"parent":"aO/","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"%K":{"opcode":"data_setvariableto","next":"%L","parent":"%I","inputs":{"VALUE":[3,"aO:",[10,""]]},"fields":{"VARIABLE":["@sprite0_bit","H,%zY0Kr47K}Znd}~]8+"]},"shadow":false,"topLevel":false},"aO:":{"opcode":"operator_add","next":null,"parent":"%K","inputs":{"NUM1":[3,"aO;",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aO;":{"opcode":"operator_gt","next":null,"parent":"aO:","inputs":{"OPERAND1":[3,"bM.",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bM.":{"opcode":"operator_mod","next":null,"parent":"aO;","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"%L":{"opcode":"data_setvariableto","next":"%M","parent":"%K","inputs":{"VALUE":[3,"aO=",[10,""]]},"fields":{"VARIABLE":["@sprite_priority","q:J@[.C#brGXD1scwWlL"]},"shadow":false,"topLevel":false},"aO=":{"opcode":"operator_add","next":null,"parent":"%L","inputs":{"NUM1":[3,"aO?",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aO?":{"opcode":"operator_lt","next":null,"parent":"aO=","inputs":{"OPERAND1":[3,"bM/",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"bM/":{"opcode":"operator_mod","next":null,"parent":"aO?","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"%M":{"opcode":"data_setvariableto","next":"aO@","parent":"%L","inputs":{"VALUE":[3,"aO[",[10,""]]},"fields":{"VARIABLE":["@hflip","O-XGEJrBMMOorrV6rRfY"]},"shadow":false,"topLevel":false},"aO[":{"opcode":"operator_add","next":null,"parent":"%M","inputs":{"NUM1":[3,"aO]",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aO]":{"opcode":"operator_gt","next":null,"parent":"aO[","inputs":{"OPERAND1":[3,"bM:",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"bM:":{"opcode":"operator_mod","next":null,"parent":"aO]","inputs":{"NUM1":[3,[12,"@sprite_attribute","a5rGQ~(qxK.pdb@-7tv9"],[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aO@":{"opcode":"procedures_call","next":"bM;","parent":"%M","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw sprite line","argumentids":"[]","warp":"true"}},"bM;":{"opcode":"data_changevariableby","next":null,"parent":"aO@","inputs":{"VALUE":[1,[4,"-4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"Ma":{"opcode":"control_if_else","next":"m^","parent":"k`","inputs":{"CONDITION":[2,"bF"],"SUBSTACK":[2,"aO^"],"SUBSTACK2":[2,"bM="]},"fields":{},"shadow":false,"topLevel":false},"bF":{"opcode":"operator_or","next":null,"parent":"Ma","inputs":{"OPERAND1":[2,"aO_"],"OPERAND2":[2,"aO`"]},"fields":{},"shadow":false,"topLevel":false},"aO_":{"opcode":"operator_equals","next":null,"parent":"bF","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO`":{"opcode":"operator_equals","next":null,"parent":"bF","inputs":{"OPERAND1":[3,[12,"#sq0_swreload","elV@:}M3MreZKq22A%3?"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aO^":{"opcode":"data_setvariableto","next":"bM?","parent":"Ma","inputs":{"VALUE":[3,[12,"#sq0_swperiod","6ZtJprVet|52~YE]#e.R"],[10,""]]},"fields":{"VARIABLE":["#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"]},"shadow":false,"topLevel":false},"bM?":{"opcode":"data_setvariableto","next":null,"parent":"aO^","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"bM=":{"opcode":"data_changevariableby","next":null,"parent":"Ma","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"]},"shadow":false,"topLevel":false},"m^":{"opcode":"control_if","next":"aO{","parent":"Ma","inputs":{"CONDITION":[2,"bG"],"SUBSTACK":[2,"bM@"]},"fields":{},"shadow":false,"topLevel":false},"bG":{"opcode":"operator_and","next":null,"parent":"m^","inputs":{"OPERAND1":[2,"aO|"],"OPERAND2":[2,"aO}"]},"fields":{},"shadow":false,"topLevel":false},"aO|":{"opcode":"operator_equals","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,"#sq1_counter_halt","a7zy6G,GluFays4z,XP7"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO}":{"opcode":"operator_gt","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bM@":{"opcode":"data_changevariableby","next":null,"parent":"m^","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"]},"shadow":false,"topLevel":false},"aO{":{"opcode":"procedures_call","next":"m_","parent":"m^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"m_":{"opcode":"control_if","next":"em","parent":"aO{","inputs":{"CONDITION":[2,"en"],"SUBSTACK":[2,"aO~"]},"fields":{},"shadow":false,"topLevel":false},"en":{"opcode":"operator_and","next":null,"parent":"m_","inputs":{"OPERAND1":[2,"eo"],"OPERAND2":[2,"GA"]},"fields":{},"shadow":false,"topLevel":false},"eo":{"opcode":"operator_and","next":null,"parent":"en","inputs":{"OPERAND1":[2,"bH"],"OPERAND2":[2,"aPa"]},"fields":{},"shadow":false,"topLevel":false},"bH":{"opcode":"operator_and","next":null,"parent":"eo","inputs":{"OPERAND1":[2,"aPb"],"OPERAND2":[2,"aPc"]},"fields":{},"shadow":false,"topLevel":false},"aPb":{"opcode":"operator_equals","next":null,"parent":"bH","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPc":{"opcode":"operator_equals","next":null,"parent":"bH","inputs":{"OPERAND1":[3,[12,"#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPa":{"opcode":"operator_gt","next":null,"parent":"eo","inputs":{"OPERAND1":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"GA":{"opcode":"operator_not","next":null,"parent":"en","inputs":{"OPERAND":[2,"ah"]},"fields":{},"shadow":false,"topLevel":false},"ah":{"opcode":"operator_or","next":null,"parent":"GA","inputs":{"OPERAND1":[2,"aPd"],"OPERAND2":[2,"aPe"]},"fields":{},"shadow":false,"topLevel":false},"aPd":{"opcode":"operator_lt","next":null,"parent":"ah","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aPe":{"opcode":"operator_gt","next":null,"parent":"ah","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"aO~":{"opcode":"data_setvariableto","next":"bM[","parent":"m_","inputs":{"VALUE":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]]},"fields":{"VARIABLE":["#sq1_period","QXIh{vjr_WcT{5@Z9$V_"]},"shadow":false,"topLevel":false},"bM[":{"opcode":"procedures_call","next":null,"parent":"aO~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"em":{"opcode":"control_if_else","next":"m`","parent":"m_","inputs":{"CONDITION":[2,"bI"],"SUBSTACK":[2,"aPf"],"SUBSTACK2":[2,"bM]"]},"fields":{},"shadow":false,"topLevel":false},"bI":{"opcode":"operator_or","next":null,"parent":"em","inputs":{"OPERAND1":[2,"aPg"],"OPERAND2":[2,"aPh"]},"fields":{},"shadow":false,"topLevel":false},"aPg":{"opcode":"operator_equals","next":null,"parent":"bI","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPh":{"opcode":"operator_equals","next":null,"parent":"bI","inputs":{"OPERAND1":[3,[12,"#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPf":{"opcode":"data_setvariableto","next":"bM^","parent":"em","inputs":{"VALUE":[3,[12,"#sq1_swperiod","8IbJ`L:k(VYE2y+AXNN`"],[10,""]]},"fields":{"VARIABLE":["#sq1_swcounter","*esvLM8NOPIYxzMcC4])"]},"shadow":false,"topLevel":false},"bM^":{"opcode":"data_setvariableto","next":null,"parent":"aPf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"bM]":{"opcode":"data_changevariableby","next":null,"parent":"em","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq1_swcounter","*esvLM8NOPIYxzMcC4])"]},"shadow":false,"topLevel":false},"m`":{"opcode":"control_if","next":"ep","parent":"em","inputs":{"CONDITION":[2,"bJ"],"SUBSTACK":[2,"bM_"]},"fields":{},"shadow":false,"topLevel":false},"bJ":{"opcode":"operator_and","next":null,"parent":"m`","inputs":{"OPERAND1":[2,"aPi"],"OPERAND2":[2,"aPj"]},"fields":{},"shadow":false,"topLevel":false},"aPi":{"opcode":"operator_equals","next":null,"parent":"bJ","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPj":{"opcode":"operator_gt","next":null,"parent":"bJ","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bM_":{"opcode":"data_changevariableby","next":null,"parent":"m`","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"ep":{"opcode":"control_if","next":null,"parent":"m`","inputs":{"CONDITION":[2,"bK"],"SUBSTACK":[2,"aPk"]},"fields":{},"shadow":false,"topLevel":false},"bK":{"opcode":"operator_and","next":null,"parent":"ep","inputs":{"OPERAND1":[2,"aPl"],"OPERAND2":[2,"aPm"]},"fields":{},"shadow":false,"topLevel":false},"aPl":{"opcode":"operator_equals","next":null,"parent":"bK","inputs":{"OPERAND1":[3,[12,"#noise_counter_halt","d#{}}5.jeOzt/68f8/23"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPm":{"opcode":"operator_gt","next":null,"parent":"bK","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPk":{"opcode":"data_changevariableby","next":null,"parent":"ep","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"M)":{"opcode":"procedures_call","next":"bM`","parent":"aHW","inputs":{"xw^iKl}Q9Utn5G${B3DL":[3,[12,"$prg_bank0","^NQIbN*Yt8ZTd++^lhob"],[10,""]],"-ka?M!q5i3ep8!$FNtaR":[3,"aPn",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$prgbank_16k %s %s","argumentids":"[\"xw^iKl}Q9Utn5G${B3DL\",\"-ka?M!q5i3ep8!$FNtaR\"]","warp":"true"}},"aPn":{"opcode":"operator_subtract","next":null,"parent":"M)","inputs":{"NUM1":[3,"bM{",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bM{":{"opcode":"operator_divide","next":null,"parent":"aPn","inputs":{"NUM1":[3,[12,"prg_size","_5s67veUe?q~:arP76/I"],[4,"0"]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bM`":{"opcode":"control_stop","next":null,"parent":"M)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"d@":{"opcode":"procedures_call","next":"bM|","parent":"Ff","inputs":{"R}(8Cn3#y*26i(xa@[-V":[3,"aPo",[10,""]],"GnVS0M9v5Op0apg}.{0D":[3,"aPp",[10,""]],"8~FF,T{(cQ{AS5[`OPn[":[3,"aPq",[10,""]],"M.aj{qup%g}995:UVZ[:":[3,"aPr",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_lo %s %s %s %s","argumentids":"[\"R}(8Cn3#y*26i(xa@[-V\",\"GnVS0M9v5Op0apg}.{0D\",\"8~FF,T{(cQ{AS5[`OPn[\",\"M.aj{qup%g}995:UVZ[:\"]","warp":"true"}},"aPo":{"opcode":"operator_subtract","next":null,"parent":"d@","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,"0"]],"NUM2":[3,"bM}",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bM}":{"opcode":"operator_mod","next":null,"parent":"aPo","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aPp":{"opcode":"operator_add","next":null,"parent":"d@","inputs":{"NUM1":[3,"aPs",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPs":{"opcode":"operator_subtract","next":null,"parent":"aPp","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,"0"]],"NUM2":[3,"bM~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bM~":{"opcode":"operator_mod","next":null,"parent":"aPs","inputs":{"NUM1":[3,[12,"$chr_bank4","#:3i`qtdaYV)X/d.1nWL"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aPq":{"opcode":"operator_subtract","next":null,"parent":"d@","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,"0"]],"NUM2":[3,"bNa",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNa":{"opcode":"operator_mod","next":null,"parent":"aPq","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aPr":{"opcode":"operator_add","next":null,"parent":"d@","inputs":{"NUM1":[3,"aPt",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPt":{"opcode":"operator_subtract","next":null,"parent":"aPr","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,"0"]],"NUM2":[3,"bNb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNb":{"opcode":"operator_mod","next":null,"parent":"aPt","inputs":{"NUM1":[3,[12,"$chr_bank5","Vek`-Q5H.Nb!r^O9AL:W"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bM|":{"opcode":"procedures_call","next":null,"parent":"d@","inputs":{"zEgKC2?ujRK=)j3:+.w(":[3,[12,"$chr_bank0","v9nn2/IOi1xI42vV9gmp"],[10,""]],"V,g^(cH^?K.@xOHvuKtw":[3,[12,"$chr_bank1","+cW@y^s2F)I5Dqe`It(A"],[10,""]],"s;]r;$gJ248kPn|tZMEK":[3,[12,"$chr_bank2","[UuKc9PitdeXDW{kY%E-"],[10,""]],"2}nHlcvfboZI~h.|r/{|":[3,[12,"$chr_bank3","=Y#[cj!#=E2~0_YB0cvD"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"$chrbank_1k_hi %s %s %s %s","argumentids":"[\"zEgKC2?ujRK=)j3:+.w(\",\"V,g^(cH^?K.@xOHvuKtw\",\"s;]r;$gJ248kPn|tZMEK\",\"2}nHlcvfboZI~h.|r/{|\"]","warp":"true"}},"bJ`":{"opcode":"event_whenbroadcastreceived","next":"aGh","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":17100,"y":64},"by:":{"opcode":"event_whenbroadcastreceived","next":"aDQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["init","/]Pw*,JgP~%ctRqLaCr]"]},"shadow":false,"topLevel":true,"x":6875,"y":85},"ax*":{"opcode":"data_deletealloflist","next":"aM.","parent":"kx","inputs":{},"fields":{"LIST":["apu","v]0UUq`G]chfwu4/UQ~q"]},"shadow":false,"topLevel":false},"B#":{"opcode":"control_if","next":"m{","parent":"ax|","inputs":{"CONDITION":[2,"bNc"],"SUBSTACK":[2,"aPu"]},"fields":{},"shadow":false,"topLevel":false},"bNc":{"opcode":"operator_gt","next":null,"parent":"B#","inputs":{"OPERAND1":[3,[12,"!ppu_cycle","4_*DN3EPL}ongsmeF*~C"],[10,""]],"OPERAND2":[1,[10,"340"]]},"fields":{},"shadow":false,"topLevel":false},"aPu":{"opcode":"data_changevariableby","next":"bNd","parent":"B#","inputs":{"VALUE":[1,[4,"-341"]]},"fields":{"VARIABLE":["!ppu_cycle","4_*DN3EPL}ongsmeF*~C"]},"shadow":false,"topLevel":false},"bNd":{"opcode":"procedures_call","next":null,"parent":"aPu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@ppu","argumentids":"[]","warp":"true"}},"m{":{"opcode":"control_if","next":"bNe","parent":"B#","inputs":{"CONDITION":[2,"bNf"],"SUBSTACK":[2,"aPv"]},"fields":{},"shadow":false,"topLevel":false},"bNf":{"opcode":"operator_gt","next":null,"parent":"m{","inputs":{"OPERAND1":[3,[12,"cpu_cycle","e5mXhyD?uqx!4zY}kb,2"],[10,""]],"OPERAND2":[3,[12,"!apu_cycle","~__5y{t{J/3[Txcl^o6q"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aPv":{"opcode":"data_changevariableby","next":"bNg","parent":"m{","inputs":{"VALUE":[1,[4,"7457"]]},"fields":{"VARIABLE":["!apu_cycle","~__5y{t{J/3[Txcl^o6q"]},"shadow":false,"topLevel":false},"bNg":{"opcode":"procedures_call","next":null,"parent":"aPv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu","argumentids":"[]","warp":"true"}},"bNe":{"opcode":"procedures_call","next":null,"parent":"m{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_cycle","argumentids":"[]","warp":"true"}},"%d":{"opcode":"data_setvariableto","next":"GB","parent":"LM","inputs":{"VALUE":[3,"GC",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"GC":{"opcode":"operator_add","next":null,"parent":"%d","inputs":{"NUM1":[3,"aPw",[4,"0"]],"NUM2":[3,"aPx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPw":{"opcode":"operator_subtract","next":null,"parent":"GC","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[3,"bNh",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNh":{"opcode":"operator_mod","next":null,"parent":"aPw","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aPx":{"opcode":"operator_mathop","next":null,"parent":"GC","inputs":{"NUM":[3,"bNi",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bNi":{"opcode":"operator_divide","next":null,"parent":"aPx","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"GB":{"opcode":"data_setvariableto","next":"bNj","parent":"%d","inputs":{"VALUE":[3,"bNk",[10,""]]},"fields":{"VARIABLE":["@fine_x","s2;D+jIwjcX@LdHBZp2L"]},"shadow":false,"topLevel":false},"bNk":{"opcode":"operator_mod","next":null,"parent":"GB","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bNj":{"opcode":"data_setvariableto","next":null,"parent":"GB","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"LN":{"opcode":"data_setvariableto","next":"GD","parent":"%e","inputs":{"VALUE":[3,"bNl",[10,""]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"bNl":{"opcode":"operator_mod","next":null,"parent":"LN","inputs":{"NUM1":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[4,"0"]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"GD":{"opcode":"data_changevariableby","next":"GE","parent":"LN","inputs":{"VALUE":[3,"aPy",[4,"0"]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"aPy":{"opcode":"operator_multiply","next":null,"parent":"GD","inputs":{"NUM1":[3,"aPz",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aPz":{"opcode":"operator_subtract","next":null,"parent":"aPy","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[3,"bNm",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNm":{"opcode":"operator_mod","next":null,"parent":"aPz","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"GE":{"opcode":"data_setvariableto","next":"GF","parent":"GD","inputs":{"VALUE":[3,"GG",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"GG":{"opcode":"operator_add","next":null,"parent":"GE","inputs":{"NUM1":[3,"bNn",[4,"0"]],"NUM2":[3,"aPA",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNn":{"opcode":"operator_mod","next":null,"parent":"GG","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aPA":{"opcode":"operator_multiply","next":null,"parent":"GG","inputs":{"NUM1":[3,"bNo",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bNo":{"opcode":"operator_mod","next":null,"parent":"aPA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"GF":{"opcode":"data_changevariableby","next":"bNp","parent":"GE","inputs":{"VALUE":[3,"bNq",[4,"0"]]},"fields":{"VARIABLE":["@temp_addr","3sIlg`D|dR5*_=UFh2mC"]},"shadow":false,"topLevel":false},"bNq":{"opcode":"operator_multiply","next":null,"parent":"GF","inputs":{"NUM1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[4,"0"]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"bNp":{"opcode":"data_setvariableto","next":null,"parent":"GF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["@write_toggle","5@CAuX+T_vc:]!OZM32!"]},"shadow":false,"topLevel":false},"LZ":{"opcode":"control_if","next":null,"parent":"k:","inputs":{"CONDITION":[2,"aPB"],"SUBSTACK":[2,"eq"]},"fields":{},"shadow":false,"topLevel":false},"aPB":{"opcode":"operator_equals","next":null,"parent":"LZ","inputs":{"OPERAND1":[3,"bNr",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bNr":{"opcode":"operator_mod","next":null,"parent":"aPB","inputs":{"NUM1":[3,[12,"@vram_addr","w0R+jC2MWt7iHMnRlqZn"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"eq":{"opcode":"data_setvariableto","next":null,"parent":"LZ","inputs":{"VALUE":[3,"er",[10,""]]},"fields":{"VARIABLE":["bg_color","~s-a1kNvmHy%k|6}Y3^~"]},"shadow":false,"topLevel":false},"er":{"opcode":"data_itemoflist","next":null,"parent":"eq","inputs":{"INDEX":[3,"es",[7,"0"]]},"fields":{"LIST":["@palette","03o?sn/t}PjCbeDx#3{w"]},"shadow":false,"topLevel":false},"es":{"opcode":"operator_add","next":null,"parent":"er","inputs":{"NUM1":[3,"bNs",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bNs":{"opcode":"operator_mod","next":null,"parent":"es","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"L?":{"opcode":"control_if","next":null,"parent":"k?","inputs":{"CONDITION":[2,"bNt"],"SUBSTACK":[2,"et"]},"fields":{},"shadow":false,"topLevel":false},"bNt":{"opcode":"operator_equals","next":null,"parent":"L?","inputs":{"OPERAND1":[3,[12,"@vram_incr","|,-0zY+!?.Wa?z)q2;cN"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"et":{"opcode":"data_changevariableby","next":"bNu","parent":"L?","inputs":{"VALUE":[1,[4,"32"]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"bNu":{"opcode":"control_stop","next":null,"parent":"et","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"L]":{"opcode":"control_if","next":null,"parent":"aGz","inputs":{"CONDITION":[2,"bNv"],"SUBSTACK":[2,"GH"]},"fields":{},"shadow":false,"topLevel":false},"bNv":{"opcode":"operator_gt","next":null,"parent":"L]","inputs":{"OPERAND1":[3,[12,"#sq0_decay","[Gs~6]:p]neDG4uT.*8R"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"L|":{"opcode":"control_if","next":null,"parent":"L{","inputs":{"CONDITION":[2,"GI"],"SUBSTACK":[2,"GJ"]},"fields":{},"shadow":false,"topLevel":false},"GI":{"opcode":"operator_equals","next":null,"parent":"L|","inputs":{"OPERAND1":[3,[12,"Enable APU","ZU1H]fgUo{pr?8j#775;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"GH":{"opcode":"data_changevariableby","next":null,"parent":"L]","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#sq0_decay","[Gs~6]:p]neDG4uT.*8R"]},"shadow":false,"topLevel":false},"GJ":{"opcode":"procedures_call","next":null,"parent":"L|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#apu list","argumentids":"[]","warp":"true"}}},"comments":{"b.v":{"blockId":"b.w","x":3578.798807144165,"y":2100,"width":159.378662109375,"height":133.5286865234375,"minimized":false,"text":"Oh come on, don't be such a meanie! Who doesn't love speed hacks?"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":2,"dataFormat":"png","assetId":"106a066f859acd4c5e5728e8f4d861ae","md5ext":"106a066f859acd4c5e5728e8f4d861ae.png","rotationCenterX":16,"rotationCenterY":16}],"sounds":[],"volume":36,"layerOrder":15,"visible":false,"x":0,"y":0,"size":250,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"SI8080","variables":{"Sx;#S`yw8}4Z[VDB*X~[":["8080.cycles",16683],"mZ)9?(KkB8T|Agp7]MZ9":["8080.readreturn","0x02"],"M}(6FQ$ph-O-oCmv%Unj":["8080.shift register offset",0],"yuzMq0ho]TXgzPWJIl=#":["8080.RAM mirror",65536],"JsT9jov2rLS,p[Y=2YHv":["i",8],"y:MI[jH$Un515#+v3[#@":["FPS",333.3463177175499]},"lists":{")yF+1`NW6;S!1GicT2N]":["_flags",[1,"1",1,"0",0,"0",0,0]]},"broadcasts":{},"blocks":{"GH":{"opcode":"event_whenbroadcastreceived","next":"GI","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["8080","5F;%8N/Qr^Di?+)(*eE."]},"shadow":false,"topLevel":true,"x":926,"y":716},"GI":{"opcode":"procedures_call","next":null,"parent":"GH","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"initialize","argumentids":"[]","warp":"false"}},"GJ":{"opcode":"event_whenbroadcastreceived","next":"eq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":768,"y":-3},"eq":{"opcode":"control_stop","next":"er","parent":"GJ","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"er":{"opcode":"looks_hide","next":"es","parent":"eq","inputs":{},"fields":{},"shadow":false,"topLevel":false},"es":{"opcode":"looks_setsizeto","next":"et","parent":"er","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"et":{"opcode":"data_hidevariable","next":"aPC","parent":"es","inputs":{},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aPC":{"opcode":"data_hidelist","next":"aPD","parent":"et","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aPD":{"opcode":"data_hidevariable","next":"aPE","parent":"aPC","inputs":{},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aPE":{"opcode":"data_hidelist","next":"aPF","parent":"aPD","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aPF":{"opcode":"data_hidevariable","next":"aPG","parent":"aPE","inputs":{},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aPG":{"opcode":"data_hidevariable","next":"aPH","parent":"aPF","inputs":{},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aPH":{"opcode":"data_hidevariable","next":"aPI","parent":"aPG","inputs":{},"fields":{"VARIABLE":["FPS","y:MI[jH$Un515#+v3[#@"]},"shadow":false,"topLevel":false},"aPI":{"opcode":"data_deletealloflist","next":"aPJ","parent":"aPH","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aPJ":{"opcode":"data_hidelist","next":"aPK","parent":"aPI","inputs":{},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aPK":{"opcode":"data_hidelist","next":"bNw","parent":"aPJ","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bNw":{"opcode":"control_delete_this_clone","next":null,"parent":"aPK","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aPL":{"opcode":"procedures_definition","next":"aPM","parent":null,"inputs":{"custom_block":[1,"aPN"]},"fields":{},"shadow":false,"topLevel":true,"x":1804,"y":1140},"aPN":{"opcode":"procedures_prototype","next":null,"parent":"aPL","inputs":{"qQ}-I6z8x}.R[rfw~o}T":[1,"bNx"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"qQ}-I6z8x}.R[rfw~o}T\"]","argumentnames":"[\"op1\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bNx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPN","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":true,"topLevel":false},"aPM":{"opcode":"data_changevariableby","next":"m|","parent":"aPL","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"m|":{"opcode":"control_if","next":"m}","parent":"aPM","inputs":{"CONDITION":[2,"aPO"],"SUBSTACK":[2,"eu"]},"fields":{},"shadow":false,"topLevel":false},"aPO":{"opcode":"operator_lt","next":null,"parent":"m|","inputs":{"OPERAND1":[3,"bNy",[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"bNy":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPO","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eu":{"opcode":"control_if_else","next":"bNz","parent":"m|","inputs":{"CONDITION":[2,"aPP"],"SUBSTACK":[2,"ev"],"SUBSTACK2":[2,"m~"]},"fields":{},"shadow":false,"topLevel":false},"aPP":{"opcode":"operator_lt","next":null,"parent":"eu","inputs":{"OPERAND1":[3,"aPQ",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aPQ":{"opcode":"operator_mod","next":null,"parent":"aPP","inputs":{"NUM1":[3,"bNA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ev":{"opcode":"control_if_else","next":"bNB","parent":"eu","inputs":{"CONDITION":[2,"aPR"],"SUBSTACK":[2,"na"],"SUBSTACK2":[2,"nb"]},"fields":{},"shadow":false,"topLevel":false},"aPR":{"opcode":"operator_lt","next":null,"parent":"ev","inputs":{"OPERAND1":[3,"aPS",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aPS":{"opcode":"operator_mod","next":null,"parent":"aPR","inputs":{"NUM1":[3,"bNC",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"na":{"opcode":"control_if","next":"nc","parent":"ev","inputs":{"CONDITION":[2,"aPT"],"SUBSTACK":[2,"aPU"]},"fields":{},"shadow":false,"topLevel":false},"aPT":{"opcode":"operator_equals","next":null,"parent":"na","inputs":{"OPERAND1":[3,"aPV",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPV":{"opcode":"operator_mod","next":null,"parent":"aPT","inputs":{"NUM1":[3,"bND",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bND":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPV","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aPU":{"opcode":"procedures_call","next":"bNE","parent":"na","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"bNE":{"opcode":"control_stop","next":null,"parent":"aPU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nc":{"opcode":"control_if","next":"nd","parent":"na","inputs":{"CONDITION":[2,"aPW"],"SUBSTACK":[2,"aPX"]},"fields":{},"shadow":false,"topLevel":false},"aPW":{"opcode":"operator_equals","next":null,"parent":"nc","inputs":{"OPERAND1":[3,"aPY",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aPY":{"opcode":"operator_mod","next":null,"parent":"aPW","inputs":{"NUM1":[3,"bNF",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aPY","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aPX":{"opcode":"procedures_call","next":"bNG","parent":"nc","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,[10,"7"]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"bNG":{"opcode":"control_stop","next":null,"parent":"aPX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nd":{"opcode":"control_if","next":"aPZ","parent":"nc","inputs":{"CONDITION":[2,"aP!"],"SUBSTACK":[2,"aP#"]},"fields":{},"shadow":false,"topLevel":false},"aP!":{"opcode":"operator_equals","next":null,"parent":"nd","inputs":{"OPERAND1":[3,"aP%",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aP%":{"opcode":"operator_mod","next":null,"parent":"aP!","inputs":{"NUM1":[3,"bNH",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP#":{"opcode":"procedures_call","next":"bNI","parent":"nd","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"1"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bNI":{"opcode":"control_stop","next":null,"parent":"aP#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aPZ":{"opcode":"data_changevariableby","next":"bNJ","parent":"nd","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bNJ":{"opcode":"control_stop","next":null,"parent":"aPZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nb":{"opcode":"control_if","next":"ne","parent":"ev","inputs":{"CONDITION":[2,"aP("],"SUBSTACK":[2,"aP)"]},"fields":{},"shadow":false,"topLevel":false},"aP(":{"opcode":"operator_equals","next":null,"parent":"nb","inputs":{"OPERAND1":[3,"aP*",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aP*":{"opcode":"operator_mod","next":null,"parent":"aP(","inputs":{"NUM1":[3,"bNK",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP)":{"opcode":"procedures_call","next":"bNL","parent":"nb","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"0"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bNL":{"opcode":"control_stop","next":null,"parent":"aP)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ne":{"opcode":"control_if","next":"nf","parent":"nb","inputs":{"CONDITION":[2,"aP+"],"SUBSTACK":[2,"aP,"]},"fields":{},"shadow":false,"topLevel":false},"aP+":{"opcode":"operator_equals","next":null,"parent":"ne","inputs":{"OPERAND1":[3,"aP-",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aP-":{"opcode":"operator_mod","next":null,"parent":"aP+","inputs":{"NUM1":[3,"bNM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP,":{"opcode":"procedures_call","next":"bNN","parent":"ne","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"0"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bNN":{"opcode":"control_stop","next":null,"parent":"aP,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nf":{"opcode":"control_if","next":"bNO","parent":"ne","inputs":{"CONDITION":[2,"aP."],"SUBSTACK":[2,"aP/"]},"fields":{},"shadow":false,"topLevel":false},"aP.":{"opcode":"operator_equals","next":null,"parent":"nf","inputs":{"OPERAND1":[3,"aP:",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aP:":{"opcode":"operator_mod","next":null,"parent":"aP.","inputs":{"NUM1":[3,"bNP",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP:","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP/":{"opcode":"procedures_call","next":"bNQ","parent":"nf","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bNQ":{"opcode":"control_stop","next":null,"parent":"aP/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bNO":{"opcode":"procedures_call","next":null,"parent":"nf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","warp":"true"}},"bNB":{"opcode":"control_stop","next":null,"parent":"ev","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m~":{"opcode":"control_if_else","next":null,"parent":"eu","inputs":{"CONDITION":[2,"aP;"],"SUBSTACK":[2,"ng"],"SUBSTACK2":[2,"nh"]},"fields":{},"shadow":false,"topLevel":false},"aP;":{"opcode":"operator_lt","next":null,"parent":"m~","inputs":{"OPERAND1":[3,"aP=",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aP=":{"opcode":"operator_mod","next":null,"parent":"aP;","inputs":{"NUM1":[3,"bNR",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP=","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ng":{"opcode":"control_if","next":"ni","parent":"m~","inputs":{"CONDITION":[2,"aP?"],"SUBSTACK":[2,"aP@"]},"fields":{},"shadow":false,"topLevel":false},"aP?":{"opcode":"operator_equals","next":null,"parent":"ng","inputs":{"OPERAND1":[3,"aP[",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aP[":{"opcode":"operator_mod","next":null,"parent":"aP?","inputs":{"NUM1":[3,"bNS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP[","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP@":{"opcode":"procedures_call","next":"bNT","parent":"ng","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"bNT":{"opcode":"control_stop","next":null,"parent":"aP@","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ni":{"opcode":"control_if","next":"nj","parent":"ng","inputs":{"CONDITION":[2,"aP]"],"SUBSTACK":[2,"aP^"]},"fields":{},"shadow":false,"topLevel":false},"aP]":{"opcode":"operator_equals","next":null,"parent":"ni","inputs":{"OPERAND1":[3,"aP_",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aP_":{"opcode":"operator_mod","next":null,"parent":"aP]","inputs":{"NUM1":[3,"bNU",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP_","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP^":{"opcode":"procedures_call","next":"bNV","parent":"ni","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","warp":"true"}},"bNV":{"opcode":"control_stop","next":null,"parent":"aP^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nj":{"opcode":"control_if","next":"aP`","parent":"ni","inputs":{"CONDITION":[2,"aP{"],"SUBSTACK":[2,"aP|"]},"fields":{},"shadow":false,"topLevel":false},"aP{":{"opcode":"operator_equals","next":null,"parent":"nj","inputs":{"OPERAND1":[3,"aP}",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aP}":{"opcode":"operator_mod","next":null,"parent":"aP{","inputs":{"NUM1":[3,"bNW",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aP}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aP|":{"opcode":"procedures_call","next":"bNX","parent":"nj","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"1"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bNX":{"opcode":"control_stop","next":null,"parent":"aP|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aP`":{"opcode":"data_changevariableby","next":"bNY","parent":"nj","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bNY":{"opcode":"control_stop","next":null,"parent":"aP`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nh":{"opcode":"control_if","next":"nk","parent":"m~","inputs":{"CONDITION":[2,"aP~"],"SUBSTACK":[2,"aQa"]},"fields":{},"shadow":false,"topLevel":false},"aP~":{"opcode":"operator_equals","next":null,"parent":"nh","inputs":{"OPERAND1":[3,"aQb",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aQb":{"opcode":"operator_mod","next":null,"parent":"aP~","inputs":{"NUM1":[3,"bNZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bNZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQa":{"opcode":"procedures_call","next":"bN!","parent":"nh","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"1"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bN!":{"opcode":"control_stop","next":null,"parent":"aQa","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nk":{"opcode":"control_if","next":"nl","parent":"nh","inputs":{"CONDITION":[2,"aQc"],"SUBSTACK":[2,"aQd"]},"fields":{},"shadow":false,"topLevel":false},"aQc":{"opcode":"operator_equals","next":null,"parent":"nk","inputs":{"OPERAND1":[3,"aQe",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aQe":{"opcode":"operator_mod","next":null,"parent":"aQc","inputs":{"NUM1":[3,"bN#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQe","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQd":{"opcode":"procedures_call","next":"bN%","parent":"nk","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"1"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bN%":{"opcode":"control_stop","next":null,"parent":"aQd","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nl":{"opcode":"control_if","next":"bN(","parent":"nk","inputs":{"CONDITION":[2,"aQf"],"SUBSTACK":[2,"aQg"]},"fields":{},"shadow":false,"topLevel":false},"aQf":{"opcode":"operator_equals","next":null,"parent":"nl","inputs":{"OPERAND1":[3,"aQh",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aQh":{"opcode":"operator_mod","next":null,"parent":"aQf","inputs":{"NUM1":[3,"bN)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN)":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQh","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQg":{"opcode":"procedures_call","next":"bN*","parent":"nl","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bN*":{"opcode":"control_stop","next":null,"parent":"aQg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bN(":{"opcode":"procedures_call","next":null,"parent":"nl","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","warp":"true"}},"bNz":{"opcode":"control_stop","next":null,"parent":"eu","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"m}":{"opcode":"control_if","next":"nm","parent":"m|","inputs":{"CONDITION":[2,"aQi"],"SUBSTACK":[2,"ew"]},"fields":{},"shadow":false,"topLevel":false},"aQi":{"opcode":"operator_lt","next":null,"parent":"m}","inputs":{"OPERAND1":[3,"bN+",[10,""]],"OPERAND2":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false},"bN+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQi","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ew":{"opcode":"control_if_else","next":"bN,","parent":"m}","inputs":{"CONDITION":[2,"aQj"],"SUBSTACK":[2,"ex"],"SUBSTACK2":[2,"nn"]},"fields":{},"shadow":false,"topLevel":false},"aQj":{"opcode":"operator_lt","next":null,"parent":"ew","inputs":{"OPERAND1":[3,"aQk",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aQk":{"opcode":"operator_mod","next":null,"parent":"aQj","inputs":{"NUM1":[3,"bN-",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQk","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ex":{"opcode":"control_if_else","next":"bN.","parent":"ew","inputs":{"CONDITION":[2,"aQl"],"SUBSTACK":[2,"no"],"SUBSTACK2":[2,"np"]},"fields":{},"shadow":false,"topLevel":false},"aQl":{"opcode":"operator_lt","next":null,"parent":"ex","inputs":{"OPERAND1":[3,"aQm",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aQm":{"opcode":"operator_mod","next":null,"parent":"aQl","inputs":{"NUM1":[3,"bN/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN/":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQm","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"no":{"opcode":"control_if","next":"nq","parent":"ex","inputs":{"CONDITION":[2,"aQn"],"SUBSTACK":[2,"aQo"]},"fields":{},"shadow":false,"topLevel":false},"aQn":{"opcode":"operator_equals","next":null,"parent":"no","inputs":{"OPERAND1":[3,"aQp",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQp":{"opcode":"operator_mod","next":null,"parent":"aQn","inputs":{"NUM1":[3,"bN:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQp","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQo":{"opcode":"procedures_call","next":"bN;","parent":"no","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"bN;":{"opcode":"control_stop","next":null,"parent":"aQo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nq":{"opcode":"control_if","next":"nr","parent":"no","inputs":{"CONDITION":[2,"aQq"],"SUBSTACK":[2,"aQr"]},"fields":{},"shadow":false,"topLevel":false},"aQq":{"opcode":"operator_equals","next":null,"parent":"nq","inputs":{"OPERAND1":[3,"aQs",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQs":{"opcode":"operator_mod","next":null,"parent":"aQq","inputs":{"NUM1":[3,"bN=",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQs","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQr":{"opcode":"procedures_call","next":"bN?","parent":"nq","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,[10,"7"]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"bN?":{"opcode":"control_stop","next":null,"parent":"aQr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nr":{"opcode":"control_if","next":"aQt","parent":"nq","inputs":{"CONDITION":[2,"aQu"],"SUBSTACK":[2,"aQv"]},"fields":{},"shadow":false,"topLevel":false},"aQu":{"opcode":"operator_equals","next":null,"parent":"nr","inputs":{"OPERAND1":[3,"aQw",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aQw":{"opcode":"operator_mod","next":null,"parent":"aQu","inputs":{"NUM1":[3,"bN@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQw","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQv":{"opcode":"procedures_call","next":"bN[","parent":"nr","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"3"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bN[":{"opcode":"control_stop","next":null,"parent":"aQv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aQt":{"opcode":"data_changevariableby","next":"bN]","parent":"nr","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bN]":{"opcode":"control_stop","next":null,"parent":"aQt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"np":{"opcode":"control_if","next":"GK","parent":"ex","inputs":{"CONDITION":[2,"aQx"],"SUBSTACK":[2,"aQy"]},"fields":{},"shadow":false,"topLevel":false},"aQx":{"opcode":"operator_equals","next":null,"parent":"np","inputs":{"OPERAND1":[3,"aQz",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aQz":{"opcode":"operator_mod","next":null,"parent":"aQx","inputs":{"NUM1":[3,"bN^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQz","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQy":{"opcode":"procedures_call","next":"bN_","parent":"np","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"2"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bN_":{"opcode":"control_stop","next":null,"parent":"aQy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GK":{"opcode":"control_if","next":"GL","parent":"np","inputs":{"CONDITION":[2,"aQA"],"SUBSTACK":[2,"aQB"]},"fields":{},"shadow":false,"topLevel":false},"aQA":{"opcode":"operator_equals","next":null,"parent":"GK","inputs":{"OPERAND1":[3,"aQC",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aQC":{"opcode":"operator_mod","next":null,"parent":"aQA","inputs":{"NUM1":[3,"bN`",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQB":{"opcode":"procedures_call","next":"bN{","parent":"GK","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"2"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bN{":{"opcode":"control_stop","next":null,"parent":"aQB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GL":{"opcode":"control_if","next":"aQD","parent":"GK","inputs":{"CONDITION":[2,"aQE"],"SUBSTACK":[2,"aQF"]},"fields":{},"shadow":false,"topLevel":false},"aQE":{"opcode":"operator_equals","next":null,"parent":"GL","inputs":{"OPERAND1":[3,"aQG",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aQG":{"opcode":"operator_mod","next":null,"parent":"aQE","inputs":{"NUM1":[3,"bN|",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bN|":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQG","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQF":{"opcode":"procedures_call","next":"bN}","parent":"GL","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bN}":{"opcode":"control_stop","next":null,"parent":"aQF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aQD":{"opcode":"procedures_call","next":null,"parent":"GL","inputs":{"lyJ3dc5LleeV*f/MqhBH":[2,"bN~"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","warp":"true"}},"bN~":{"opcode":"operator_not","next":null,"parent":"aQD","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bN.":{"opcode":"control_stop","next":null,"parent":"ex","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nn":{"opcode":"control_if_else","next":null,"parent":"ew","inputs":{"CONDITION":[2,"aQH"],"SUBSTACK":[2,"GM"],"SUBSTACK2":[2,"GN"]},"fields":{},"shadow":false,"topLevel":false},"aQH":{"opcode":"operator_lt","next":null,"parent":"nn","inputs":{"OPERAND1":[3,"aQI",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aQI":{"opcode":"operator_mod","next":null,"parent":"aQH","inputs":{"NUM1":[3,"bOa",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOa":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"GM":{"opcode":"control_if","next":"GO","parent":"nn","inputs":{"CONDITION":[2,"aQJ"],"SUBSTACK":[2,"aQK"]},"fields":{},"shadow":false,"topLevel":false},"aQJ":{"opcode":"operator_equals","next":null,"parent":"GM","inputs":{"OPERAND1":[3,"aQL",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aQL":{"opcode":"operator_mod","next":null,"parent":"aQJ","inputs":{"NUM1":[3,"bOb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQK":{"opcode":"procedures_call","next":"bOc","parent":"GM","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"bOc":{"opcode":"control_stop","next":null,"parent":"aQK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GO":{"opcode":"control_if","next":"GP","parent":"GM","inputs":{"CONDITION":[2,"aQM"],"SUBSTACK":[2,"aQN"]},"fields":{},"shadow":false,"topLevel":false},"aQM":{"opcode":"operator_equals","next":null,"parent":"GO","inputs":{"OPERAND1":[3,"aQO",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aQO":{"opcode":"operator_mod","next":null,"parent":"aQM","inputs":{"NUM1":[3,"bOd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOd":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQO","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQN":{"opcode":"procedures_call","next":"bOe","parent":"GO","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","warp":"true"}},"bOe":{"opcode":"control_stop","next":null,"parent":"aQN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GP":{"opcode":"control_if","next":"aQP","parent":"GO","inputs":{"CONDITION":[2,"aQQ"],"SUBSTACK":[2,"aQR"]},"fields":{},"shadow":false,"topLevel":false},"aQQ":{"opcode":"operator_equals","next":null,"parent":"GP","inputs":{"OPERAND1":[3,"aQS",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aQS":{"opcode":"operator_mod","next":null,"parent":"aQQ","inputs":{"NUM1":[3,"bOf",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOf":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQR":{"opcode":"procedures_call","next":"bOg","parent":"GP","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"3"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bOg":{"opcode":"control_stop","next":null,"parent":"aQR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aQP":{"opcode":"data_changevariableby","next":"bOh","parent":"GP","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bOh":{"opcode":"control_stop","next":null,"parent":"aQP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GN":{"opcode":"control_if","next":"GQ","parent":"nn","inputs":{"CONDITION":[2,"aQT"],"SUBSTACK":[2,"aQU"]},"fields":{},"shadow":false,"topLevel":false},"aQT":{"opcode":"operator_equals","next":null,"parent":"GN","inputs":{"OPERAND1":[3,"aQV",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aQV":{"opcode":"operator_mod","next":null,"parent":"aQT","inputs":{"NUM1":[3,"bOi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQV","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQU":{"opcode":"procedures_call","next":"bOj","parent":"GN","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"3"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOj":{"opcode":"control_stop","next":null,"parent":"aQU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GQ":{"opcode":"control_if","next":"GR","parent":"GN","inputs":{"CONDITION":[2,"aQW"],"SUBSTACK":[2,"aQX"]},"fields":{},"shadow":false,"topLevel":false},"aQW":{"opcode":"operator_equals","next":null,"parent":"GQ","inputs":{"OPERAND1":[3,"aQY",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aQY":{"opcode":"operator_mod","next":null,"parent":"aQW","inputs":{"NUM1":[3,"bOk",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOk":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQY","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQX":{"opcode":"procedures_call","next":"bOl","parent":"GQ","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"3"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOl":{"opcode":"control_stop","next":null,"parent":"aQX","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GR":{"opcode":"control_if","next":"aQZ","parent":"GQ","inputs":{"CONDITION":[2,"aQ!"],"SUBSTACK":[2,"aQ#"]},"fields":{},"shadow":false,"topLevel":false},"aQ!":{"opcode":"operator_equals","next":null,"parent":"GR","inputs":{"OPERAND1":[3,"aQ%",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aQ%":{"opcode":"operator_mod","next":null,"parent":"aQ!","inputs":{"NUM1":[3,"bOm",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOm":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ#":{"opcode":"procedures_call","next":"bOn","parent":"GR","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bOn":{"opcode":"control_stop","next":null,"parent":"aQ#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aQZ":{"opcode":"procedures_call","next":null,"parent":"GR","inputs":{"f%{;w~N|GRSB$;Wt6u{t":[2,"bOo"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","warp":"true"}},"bOo":{"opcode":"operator_not","next":null,"parent":"aQZ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bN,":{"opcode":"control_stop","next":null,"parent":"ew","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nm":{"opcode":"control_if","next":"GS","parent":"m}","inputs":{"CONDITION":[2,"aQ("],"SUBSTACK":[2,"ey"]},"fields":{},"shadow":false,"topLevel":false},"aQ(":{"opcode":"operator_lt","next":null,"parent":"nm","inputs":{"OPERAND1":[3,"bOp",[10,""]],"OPERAND2":[1,[10,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"bOp":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ(","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ey":{"opcode":"control_if_else","next":"bOq","parent":"nm","inputs":{"CONDITION":[2,"aQ)"],"SUBSTACK":[2,"ez"],"SUBSTACK2":[2,"GT"]},"fields":{},"shadow":false,"topLevel":false},"aQ)":{"opcode":"operator_lt","next":null,"parent":"ey","inputs":{"OPERAND1":[3,"aQ*",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aQ*":{"opcode":"operator_mod","next":null,"parent":"aQ)","inputs":{"NUM1":[3,"bOr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ez":{"opcode":"control_if_else","next":"bOs","parent":"ey","inputs":{"CONDITION":[2,"aQ+"],"SUBSTACK":[2,"ns"],"SUBSTACK2":[2,"nt"]},"fields":{},"shadow":false,"topLevel":false},"aQ+":{"opcode":"operator_lt","next":null,"parent":"ez","inputs":{"OPERAND1":[3,"aQ,",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aQ,":{"opcode":"operator_mod","next":null,"parent":"aQ+","inputs":{"NUM1":[3,"bOt",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOt":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ,","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ns":{"opcode":"control_if","next":"nu","parent":"ez","inputs":{"CONDITION":[2,"aQ-"],"SUBSTACK":[2,"aQ."]},"fields":{},"shadow":false,"topLevel":false},"aQ-":{"opcode":"operator_equals","next":null,"parent":"ns","inputs":{"OPERAND1":[3,"aQ/",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aQ/":{"opcode":"operator_mod","next":null,"parent":"aQ-","inputs":{"NUM1":[3,"bOu",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ/","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ.":{"opcode":"procedures_call","next":"bOv","parent":"ns","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","warp":"true"}},"bOv":{"opcode":"control_stop","next":null,"parent":"aQ.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nu":{"opcode":"control_if","next":"nv","parent":"ns","inputs":{"CONDITION":[2,"aQ:"],"SUBSTACK":[2,"aQ;"]},"fields":{},"shadow":false,"topLevel":false},"aQ:":{"opcode":"operator_equals","next":null,"parent":"nu","inputs":{"OPERAND1":[3,"aQ=",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aQ=":{"opcode":"operator_mod","next":null,"parent":"aQ:","inputs":{"NUM1":[3,"bOw",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOw":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ=","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ;":{"opcode":"procedures_call","next":"bOx","parent":"nu","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SHLD","argumentids":"[]","warp":"true"}},"bOx":{"opcode":"control_stop","next":null,"parent":"aQ;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nv":{"opcode":"control_if","next":"aQ?","parent":"nu","inputs":{"CONDITION":[2,"aQ@"],"SUBSTACK":[2,"aQ["]},"fields":{},"shadow":false,"topLevel":false},"aQ@":{"opcode":"operator_equals","next":null,"parent":"nv","inputs":{"OPERAND1":[3,"aQ]",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aQ]":{"opcode":"operator_mod","next":null,"parent":"aQ@","inputs":{"NUM1":[3,"bOy",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOy":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ[":{"opcode":"procedures_call","next":"bOz","parent":"nv","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"5"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bOz":{"opcode":"control_stop","next":null,"parent":"aQ[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aQ?":{"opcode":"data_changevariableby","next":"bOA","parent":"nv","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bOA":{"opcode":"control_stop","next":null,"parent":"aQ?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nt":{"opcode":"control_if","next":"nw","parent":"ez","inputs":{"CONDITION":[2,"aQ^"],"SUBSTACK":[2,"aQ_"]},"fields":{},"shadow":false,"topLevel":false},"aQ^":{"opcode":"operator_equals","next":null,"parent":"nt","inputs":{"OPERAND1":[3,"aQ`",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aQ`":{"opcode":"operator_mod","next":null,"parent":"aQ^","inputs":{"NUM1":[3,"bOB",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ_":{"opcode":"procedures_call","next":"bOC","parent":"nt","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"4"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOC":{"opcode":"control_stop","next":null,"parent":"aQ_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nw":{"opcode":"control_if","next":"nx","parent":"nt","inputs":{"CONDITION":[2,"aQ{"],"SUBSTACK":[2,"aQ|"]},"fields":{},"shadow":false,"topLevel":false},"aQ{":{"opcode":"operator_equals","next":null,"parent":"nw","inputs":{"OPERAND1":[3,"aQ}",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aQ}":{"opcode":"operator_mod","next":null,"parent":"aQ{","inputs":{"NUM1":[3,"bOD",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOD":{"opcode":"argument_reporter_string_number","next":null,"parent":"aQ}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aQ|":{"opcode":"procedures_call","next":"bOE","parent":"nw","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"4"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOE":{"opcode":"control_stop","next":null,"parent":"aQ|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nx":{"opcode":"control_if","next":"bOF","parent":"nw","inputs":{"CONDITION":[2,"aQ~"],"SUBSTACK":[2,"aRa"]},"fields":{},"shadow":false,"topLevel":false},"aQ~":{"opcode":"operator_equals","next":null,"parent":"nx","inputs":{"OPERAND1":[3,"aRb",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aRb":{"opcode":"operator_mod","next":null,"parent":"aQ~","inputs":{"NUM1":[3,"bOG",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRa":{"opcode":"procedures_call","next":"bOH","parent":"nx","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bOH":{"opcode":"control_stop","next":null,"parent":"aRa","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bOF":{"opcode":"procedures_call","next":null,"parent":"nx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAA","argumentids":"[]","warp":"true"}},"bOs":{"opcode":"control_stop","next":null,"parent":"ez","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GT":{"opcode":"control_if_else","next":null,"parent":"ey","inputs":{"CONDITION":[2,"aRc"],"SUBSTACK":[2,"ny"],"SUBSTACK2":[2,"nz"]},"fields":{},"shadow":false,"topLevel":false},"aRc":{"opcode":"operator_lt","next":null,"parent":"GT","inputs":{"OPERAND1":[3,"aRd",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aRd":{"opcode":"operator_mod","next":null,"parent":"aRc","inputs":{"NUM1":[3,"bOI",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRd","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"ny":{"opcode":"control_if","next":"nA","parent":"GT","inputs":{"CONDITION":[2,"aRe"],"SUBSTACK":[2,"aRf"]},"fields":{},"shadow":false,"topLevel":false},"aRe":{"opcode":"operator_equals","next":null,"parent":"ny","inputs":{"OPERAND1":[3,"aRg",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aRg":{"opcode":"operator_mod","next":null,"parent":"aRe","inputs":{"NUM1":[3,"bOJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRf":{"opcode":"procedures_call","next":"bOK","parent":"ny","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","warp":"true"}},"bOK":{"opcode":"control_stop","next":null,"parent":"aRf","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nA":{"opcode":"control_if","next":"nB","parent":"ny","inputs":{"CONDITION":[2,"aRh"],"SUBSTACK":[2,"aRi"]},"fields":{},"shadow":false,"topLevel":false},"aRh":{"opcode":"operator_equals","next":null,"parent":"nA","inputs":{"OPERAND1":[3,"aRj",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aRj":{"opcode":"operator_mod","next":null,"parent":"aRh","inputs":{"NUM1":[3,"bOL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRi":{"opcode":"procedures_call","next":"bOM","parent":"nA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LHLD","argumentids":"[]","warp":"true"}},"bOM":{"opcode":"control_stop","next":null,"parent":"aRi","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nB":{"opcode":"control_if","next":"aRk","parent":"nA","inputs":{"CONDITION":[2,"aRl"],"SUBSTACK":[2,"aRm"]},"fields":{},"shadow":false,"topLevel":false},"aRl":{"opcode":"operator_equals","next":null,"parent":"nB","inputs":{"OPERAND1":[3,"aRn",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aRn":{"opcode":"operator_mod","next":null,"parent":"aRl","inputs":{"NUM1":[3,"bON",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bON":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRn","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRm":{"opcode":"procedures_call","next":"bOO","parent":"nB","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,[10,"5"]],"Yu^K(g7gNtyUc!zhhe]]":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","warp":"true"}},"bOO":{"opcode":"control_stop","next":null,"parent":"aRm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aRk":{"opcode":"data_changevariableby","next":"bOP","parent":"nB","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bOP":{"opcode":"control_stop","next":null,"parent":"aRk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nz":{"opcode":"control_if","next":"nC","parent":"GT","inputs":{"CONDITION":[2,"aRo"],"SUBSTACK":[2,"aRp"]},"fields":{},"shadow":false,"topLevel":false},"aRo":{"opcode":"operator_equals","next":null,"parent":"nz","inputs":{"OPERAND1":[3,"aRq",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aRq":{"opcode":"operator_mod","next":null,"parent":"aRo","inputs":{"NUM1":[3,"bOQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRp":{"opcode":"procedures_call","next":"bOR","parent":"nz","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"5"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOR":{"opcode":"control_stop","next":null,"parent":"aRp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nC":{"opcode":"control_if","next":"nD","parent":"nz","inputs":{"CONDITION":[2,"aRr"],"SUBSTACK":[2,"aRs"]},"fields":{},"shadow":false,"topLevel":false},"aRr":{"opcode":"operator_equals","next":null,"parent":"nC","inputs":{"OPERAND1":[3,"aRt",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aRt":{"opcode":"operator_mod","next":null,"parent":"aRr","inputs":{"NUM1":[3,"bOS",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRt","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRs":{"opcode":"procedures_call","next":"bOT","parent":"nC","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"5"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bOT":{"opcode":"control_stop","next":null,"parent":"aRs","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nD":{"opcode":"control_if","next":"GU","parent":"nC","inputs":{"CONDITION":[2,"aRu"],"SUBSTACK":[2,"aRv"]},"fields":{},"shadow":false,"topLevel":false},"aRu":{"opcode":"operator_equals","next":null,"parent":"nD","inputs":{"OPERAND1":[3,"aRw",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aRw":{"opcode":"operator_mod","next":null,"parent":"aRu","inputs":{"NUM1":[3,"bOU",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRw","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRv":{"opcode":"procedures_call","next":"bOV","parent":"nD","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bOV":{"opcode":"control_stop","next":null,"parent":"aRv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GU":{"opcode":"data_replaceitemoflist","next":"bOW","parent":"nD","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aRx",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aRx":{"opcode":"operator_subtract","next":null,"parent":"GU","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[3,"bOX",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bOX":{"opcode":"data_itemoflist","next":null,"parent":"aRx","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bOW":{"opcode":"data_changevariableby","next":null,"parent":"GU","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bOq":{"opcode":"control_stop","next":null,"parent":"ey","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GS":{"opcode":"control_if","next":"nE","parent":"nm","inputs":{"CONDITION":[2,"aRy"],"SUBSTACK":[2,"eA"]},"fields":{},"shadow":false,"topLevel":false},"aRy":{"opcode":"operator_lt","next":null,"parent":"GS","inputs":{"OPERAND1":[3,"bOY",[10,""]],"OPERAND2":[1,[10,"0x40"]]},"fields":{},"shadow":false,"topLevel":false},"bOY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRy","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eA":{"opcode":"control_if_else","next":"GV","parent":"GS","inputs":{"CONDITION":[2,"aRz"],"SUBSTACK":[2,"nF"],"SUBSTACK2":[2,"nG"]},"fields":{},"shadow":false,"topLevel":false},"aRz":{"opcode":"operator_lt","next":null,"parent":"eA","inputs":{"OPERAND1":[3,"aRA",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aRA":{"opcode":"operator_mod","next":null,"parent":"aRz","inputs":{"NUM1":[3,"bOZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bOZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRA","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"nF":{"opcode":"control_if","next":"nH","parent":"eA","inputs":{"CONDITION":[2,"aRB"],"SUBSTACK":[2,"nI"]},"fields":{},"shadow":false,"topLevel":false},"aRB":{"opcode":"operator_lt","next":null,"parent":"nF","inputs":{"OPERAND1":[3,"aRC",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aRC":{"opcode":"operator_mod","next":null,"parent":"aRB","inputs":{"NUM1":[3,"bO!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRC","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"nI":{"opcode":"control_if","next":"nJ","parent":"nF","inputs":{"CONDITION":[2,"aRD"],"SUBSTACK":[2,"aRE"]},"fields":{},"shadow":false,"topLevel":false},"aRD":{"opcode":"operator_equals","next":null,"parent":"nI","inputs":{"OPERAND1":[3,"aRF",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aRF":{"opcode":"operator_mod","next":null,"parent":"aRD","inputs":{"NUM1":[3,"bO#",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRE":{"opcode":"procedures_call","next":"bO%","parent":"nI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI SP","argumentids":"[]","warp":"true"}},"bO%":{"opcode":"control_stop","next":null,"parent":"aRE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nJ":{"opcode":"control_if","next":"nK","parent":"nI","inputs":{"CONDITION":[2,"aRG"],"SUBSTACK":[2,"aRH"]},"fields":{},"shadow":false,"topLevel":false},"aRG":{"opcode":"operator_equals","next":null,"parent":"nJ","inputs":{"OPERAND1":[3,"aRI",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aRI":{"opcode":"operator_mod","next":null,"parent":"aRG","inputs":{"NUM1":[3,"bO(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRH":{"opcode":"procedures_call","next":"bO)","parent":"nJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"STA","argumentids":"[]","warp":"true"}},"bO)":{"opcode":"control_stop","next":null,"parent":"aRH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nK":{"opcode":"control_if","next":"aRJ","parent":"nJ","inputs":{"CONDITION":[2,"aRK"],"SUBSTACK":[2,"GW"]},"fields":{},"shadow":false,"topLevel":false},"aRK":{"opcode":"operator_equals","next":null,"parent":"nK","inputs":{"OPERAND1":[3,"aRL",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aRL":{"opcode":"operator_mod","next":null,"parent":"aRK","inputs":{"NUM1":[3,"bO*",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO*":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"GW":{"opcode":"data_setvariableto","next":"aRM","parent":"nK","inputs":{"VALUE":[3,"aRN",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aRN":{"opcode":"operator_mod","next":null,"parent":"GW","inputs":{"NUM1":[3,"bO+",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bO+":{"opcode":"operator_add","next":null,"parent":"aRN","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aRM":{"opcode":"data_changevariableby","next":"bO,","parent":"GW","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bO,":{"opcode":"control_stop","next":null,"parent":"aRM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aRJ":{"opcode":"data_changevariableby","next":"bO-","parent":"nK","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bO-":{"opcode":"control_stop","next":null,"parent":"aRJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nH":{"opcode":"control_if","next":"nL","parent":"nF","inputs":{"CONDITION":[2,"aRO"],"SUBSTACK":[2,"aRP"]},"fields":{},"shadow":false,"topLevel":false},"aRO":{"opcode":"operator_equals","next":null,"parent":"nH","inputs":{"OPERAND1":[3,"aRQ",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aRQ":{"opcode":"operator_mod","next":null,"parent":"aRO","inputs":{"NUM1":[3,"bO.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRP":{"opcode":"procedures_call","next":"bO/","parent":"nH","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"6"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bO/":{"opcode":"control_stop","next":null,"parent":"aRP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nL":{"opcode":"control_if","next":"nM","parent":"nH","inputs":{"CONDITION":[2,"aRR"],"SUBSTACK":[2,"aRS"]},"fields":{},"shadow":false,"topLevel":false},"aRR":{"opcode":"operator_equals","next":null,"parent":"nL","inputs":{"OPERAND1":[3,"aRT",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aRT":{"opcode":"operator_mod","next":null,"parent":"aRR","inputs":{"NUM1":[3,"bO:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRT","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRS":{"opcode":"procedures_call","next":"bO;","parent":"nL","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"6"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bO;":{"opcode":"control_stop","next":null,"parent":"aRS","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nM":{"opcode":"control_if","next":"aRU","parent":"nL","inputs":{"CONDITION":[2,"aRV"],"SUBSTACK":[2,"aRW"]},"fields":{},"shadow":false,"topLevel":false},"aRV":{"opcode":"operator_equals","next":null,"parent":"nM","inputs":{"OPERAND1":[3,"aRX",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aRX":{"opcode":"operator_mod","next":null,"parent":"aRV","inputs":{"NUM1":[3,"bO=",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aRX","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aRW":{"opcode":"procedures_call","next":"bO?","parent":"nM","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bO?":{"opcode":"control_stop","next":null,"parent":"aRW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aRU":{"opcode":"data_replaceitemoflist","next":"aRY","parent":"nM","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aRY":{"opcode":"data_changevariableby","next":"bO@","parent":"aRU","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bO@":{"opcode":"control_stop","next":null,"parent":"aRY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nG":{"opcode":"control_if_else","next":null,"parent":"eA","inputs":{"CONDITION":[2,"aRZ"],"SUBSTACK":[2,"nN"],"SUBSTACK2":[2,"nO"]},"fields":{},"shadow":false,"topLevel":false},"aRZ":{"opcode":"operator_lt","next":null,"parent":"nG","inputs":{"OPERAND1":[3,"aR!",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aR!":{"opcode":"operator_mod","next":null,"parent":"aRZ","inputs":{"NUM1":[3,"bO[",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO[":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR!","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"nN":{"opcode":"control_if","next":"nP","parent":"nG","inputs":{"CONDITION":[2,"aR#"],"SUBSTACK":[2,"aR%"]},"fields":{},"shadow":false,"topLevel":false},"aR#":{"opcode":"operator_equals","next":null,"parent":"nN","inputs":{"OPERAND1":[3,"aR(",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aR(":{"opcode":"operator_mod","next":null,"parent":"aR#","inputs":{"NUM1":[3,"bO]",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO]":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR(","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR%":{"opcode":"procedures_call","next":"bO^","parent":"nN","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD SP","argumentids":"[]","warp":"true"}},"bO^":{"opcode":"control_stop","next":null,"parent":"aR%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nP":{"opcode":"control_if","next":"nQ","parent":"nN","inputs":{"CONDITION":[2,"aR)"],"SUBSTACK":[2,"aR*"]},"fields":{},"shadow":false,"topLevel":false},"aR)":{"opcode":"operator_equals","next":null,"parent":"nP","inputs":{"OPERAND1":[3,"aR+",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aR+":{"opcode":"operator_mod","next":null,"parent":"aR)","inputs":{"NUM1":[3,"bO_",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO_":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR+","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR*":{"opcode":"procedures_call","next":"bO`","parent":"nP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDA","argumentids":"[]","warp":"true"}},"bO`":{"opcode":"control_stop","next":null,"parent":"aR*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nQ":{"opcode":"control_if","next":"aR,","parent":"nP","inputs":{"CONDITION":[2,"aR-"],"SUBSTACK":[2,"GX"]},"fields":{},"shadow":false,"topLevel":false},"aR-":{"opcode":"operator_equals","next":null,"parent":"nQ","inputs":{"OPERAND1":[3,"aR.",[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"aR.":{"opcode":"operator_mod","next":null,"parent":"aR-","inputs":{"NUM1":[3,"bO{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bO{":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"GX":{"opcode":"data_setvariableto","next":"aR/","parent":"nQ","inputs":{"VALUE":[3,"aR:",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aR:":{"opcode":"operator_mod","next":null,"parent":"GX","inputs":{"NUM1":[3,"bO|",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bO|":{"opcode":"operator_subtract","next":null,"parent":"aR:","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aR/":{"opcode":"data_changevariableby","next":"bO}","parent":"GX","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bO}":{"opcode":"control_stop","next":null,"parent":"aR/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aR,":{"opcode":"data_changevariableby","next":"bO~","parent":"nQ","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bO~":{"opcode":"control_stop","next":null,"parent":"aR,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nO":{"opcode":"control_if","next":"nR","parent":"nG","inputs":{"CONDITION":[2,"aR;"],"SUBSTACK":[2,"aR="]},"fields":{},"shadow":false,"topLevel":false},"aR;":{"opcode":"operator_equals","next":null,"parent":"nO","inputs":{"OPERAND1":[3,"aR?",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aR?":{"opcode":"operator_mod","next":null,"parent":"aR;","inputs":{"NUM1":[3,"bPa",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPa":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR?","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR=":{"opcode":"procedures_call","next":"bPb","parent":"nO","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"7"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bPb":{"opcode":"control_stop","next":null,"parent":"aR=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nR":{"opcode":"control_if","next":"GY","parent":"nO","inputs":{"CONDITION":[2,"aR@"],"SUBSTACK":[2,"aR["]},"fields":{},"shadow":false,"topLevel":false},"aR@":{"opcode":"operator_equals","next":null,"parent":"nR","inputs":{"OPERAND1":[3,"aR]",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aR]":{"opcode":"operator_mod","next":null,"parent":"aR@","inputs":{"NUM1":[3,"bPc",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPc":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR[":{"opcode":"procedures_call","next":"bPd","parent":"nR","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,[10,"7"]],"Z+wi](,vdi;*E;ha|R)J":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","warp":"true"}},"bPd":{"opcode":"control_stop","next":null,"parent":"aR[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GY":{"opcode":"control_if","next":null,"parent":"nR","inputs":{"CONDITION":[2,"aR^"],"SUBSTACK":[2,"aR_"]},"fields":{},"shadow":false,"topLevel":false},"aR^":{"opcode":"operator_equals","next":null,"parent":"GY","inputs":{"OPERAND1":[3,"aR`",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aR`":{"opcode":"operator_mod","next":null,"parent":"aR^","inputs":{"NUM1":[3,"bPe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPe":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR`","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aR_":{"opcode":"procedures_call","next":"bPf","parent":"GY","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","warp":"true"}},"bPf":{"opcode":"control_stop","next":null,"parent":"aR_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"GV":{"opcode":"data_replaceitemoflist","next":"aR{","parent":"eA","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aR|",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aR|":{"opcode":"operator_round","next":null,"parent":"GV","inputs":{"NUM":[3,"aR}",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aR}":{"opcode":"operator_equals","next":null,"parent":"aR|","inputs":{"OPERAND1":[3,"bPg",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bPg":{"opcode":"data_itemoflist","next":null,"parent":"aR}","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aR{":{"opcode":"data_changevariableby","next":"bPh","parent":"GV","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bPh":{"opcode":"control_stop","next":null,"parent":"aR{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nE":{"opcode":"control_if","next":"nS","parent":"GS","inputs":{"CONDITION":[2,"aR~"],"SUBSTACK":[2,"eB"]},"fields":{},"shadow":false,"topLevel":false},"aR~":{"opcode":"operator_lt","next":null,"parent":"nE","inputs":{"OPERAND1":[3,"bPi",[10,""]],"OPERAND2":[1,[10,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"bPi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aR~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eB":{"opcode":"control_if_else","next":"bPj","parent":"nE","inputs":{"CONDITION":[2,"aSa"],"SUBSTACK":[2,"aSb"],"SUBSTACK2":[2,"aSc"]},"fields":{},"shadow":false,"topLevel":false},"aSa":{"opcode":"operator_equals","next":null,"parent":"eB","inputs":{"OPERAND1":[3,"bPk",[10,""]],"OPERAND2":[1,[10,"0x76"]]},"fields":{},"shadow":false,"topLevel":false},"bPk":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSa","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSb":{"opcode":"data_changevariableby","next":"aSd","parent":"eB","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aSd":{"opcode":"control_stop","next":"aSe","parent":"aSb","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aSe":{"opcode":"sensing_askandwait","next":"bPl","parent":"aSd","inputs":{"QUESTION":[1,[10,"HALT 0x76"]]},"fields":{},"shadow":false,"topLevel":false},"bPl":{"opcode":"event_broadcast","next":null,"parent":"aSe","inputs":{"BROADCAST_INPUT":[1,[11,"exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]]},"fields":{},"shadow":false,"topLevel":false},"aSc":{"opcode":"procedures_call","next":null,"parent":"eB","inputs":{":/}9?76_i(ESE2kcL]C}":[3,"aSf",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV %s","argumentids":"[\":/}9?76_i(ESE2kcL]C}\"]","warp":"true"}},"aSf":{"opcode":"operator_subtract","next":null,"parent":"aSc","inputs":{"NUM1":[3,"bPm",[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bPm":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSf","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bPj":{"opcode":"control_stop","next":null,"parent":"eB","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nS":{"opcode":"control_if","next":"nT","parent":"nE","inputs":{"CONDITION":[2,"aSg"],"SUBSTACK":[2,"eC"]},"fields":{},"shadow":false,"topLevel":false},"aSg":{"opcode":"operator_lt","next":null,"parent":"nS","inputs":{"OPERAND1":[3,"bPn",[10,""]],"OPERAND2":[1,[10,"0x90"]]},"fields":{},"shadow":false,"topLevel":false},"bPn":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSg","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eC":{"opcode":"control_if_else","next":"bPo","parent":"nS","inputs":{"CONDITION":[2,"aSh"],"SUBSTACK":[2,"aSi"],"SUBSTACK2":[2,"aSj"]},"fields":{},"shadow":false,"topLevel":false},"aSh":{"opcode":"operator_lt","next":null,"parent":"eC","inputs":{"OPERAND1":[3,"aSk",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aSk":{"opcode":"operator_mod","next":null,"parent":"aSh","inputs":{"NUM1":[3,"bPp",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPp":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSk","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSi":{"opcode":"procedures_call","next":null,"parent":"eC","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[3,"aSl",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","warp":"true"}},"aSl":{"opcode":"operator_mod","next":null,"parent":"aSi","inputs":{"NUM1":[3,"bPq",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPq":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSl","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSj":{"opcode":"procedures_call","next":null,"parent":"eC","inputs":{"g~W%j(pxt{obs8]2L|in":[3,"aSm",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","warp":"true"}},"aSm":{"opcode":"operator_mod","next":null,"parent":"aSj","inputs":{"NUM1":[3,"bPr",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSm","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bPo":{"opcode":"control_stop","next":null,"parent":"eC","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nT":{"opcode":"control_if","next":"nU","parent":"nS","inputs":{"CONDITION":[2,"aSn"],"SUBSTACK":[2,"eD"]},"fields":{},"shadow":false,"topLevel":false},"aSn":{"opcode":"operator_lt","next":null,"parent":"nT","inputs":{"OPERAND1":[3,"bPs",[10,""]],"OPERAND2":[1,[10,"0xA0"]]},"fields":{},"shadow":false,"topLevel":false},"bPs":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSn","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eD":{"opcode":"control_if_else","next":"bPt","parent":"nT","inputs":{"CONDITION":[2,"aSo"],"SUBSTACK":[2,"aSp"],"SUBSTACK2":[2,"aSq"]},"fields":{},"shadow":false,"topLevel":false},"aSo":{"opcode":"operator_lt","next":null,"parent":"eD","inputs":{"OPERAND1":[3,"aSr",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aSr":{"opcode":"operator_mod","next":null,"parent":"aSo","inputs":{"NUM1":[3,"bPu",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSr","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSp":{"opcode":"procedures_call","next":null,"parent":"eD","inputs":{"69W4N%[To:QDj1jXCPU7":[3,"aSs",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","warp":"true"}},"aSs":{"opcode":"operator_mod","next":null,"parent":"aSp","inputs":{"NUM1":[3,"bPv",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSs","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSq":{"opcode":"procedures_call","next":null,"parent":"eD","inputs":{"R2;pFT-x31=s{}dTh^dR":[3,"aSt",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","warp":"true"}},"aSt":{"opcode":"operator_mod","next":null,"parent":"aSq","inputs":{"NUM1":[3,"bPw",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPw":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSt","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bPt":{"opcode":"control_stop","next":null,"parent":"eD","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nU":{"opcode":"control_if","next":"nV","parent":"nT","inputs":{"CONDITION":[2,"aSu"],"SUBSTACK":[2,"eE"]},"fields":{},"shadow":false,"topLevel":false},"aSu":{"opcode":"operator_lt","next":null,"parent":"nU","inputs":{"OPERAND1":[3,"bPx",[10,""]],"OPERAND2":[1,[10,"0xB0"]]},"fields":{},"shadow":false,"topLevel":false},"bPx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSu","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eE":{"opcode":"control_if_else","next":"bPy","parent":"nU","inputs":{"CONDITION":[2,"aSv"],"SUBSTACK":[2,"aSw"],"SUBSTACK2":[2,"aSx"]},"fields":{},"shadow":false,"topLevel":false},"aSv":{"opcode":"operator_lt","next":null,"parent":"eE","inputs":{"OPERAND1":[3,"aSy",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aSy":{"opcode":"operator_mod","next":null,"parent":"aSv","inputs":{"NUM1":[3,"bPz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPz":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSy","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSw":{"opcode":"procedures_call","next":null,"parent":"eE","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[3,"aSz",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","warp":"true"}},"aSz":{"opcode":"operator_mod","next":null,"parent":"aSw","inputs":{"NUM1":[3,"bPA",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSz","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSx":{"opcode":"procedures_call","next":null,"parent":"eE","inputs":{"t}uDb?K/qpdRG{z:HKi0":[3,"aSA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","warp":"true"}},"aSA":{"opcode":"operator_mod","next":null,"parent":"aSx","inputs":{"NUM1":[3,"bPB",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSA","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bPy":{"opcode":"control_stop","next":null,"parent":"eE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nV":{"opcode":"control_if","next":"nW","parent":"nU","inputs":{"CONDITION":[2,"aSB"],"SUBSTACK":[2,"eF"]},"fields":{},"shadow":false,"topLevel":false},"aSB":{"opcode":"operator_lt","next":null,"parent":"nV","inputs":{"OPERAND1":[3,"bPC",[10,""]],"OPERAND2":[1,[10,"0xC0"]]},"fields":{},"shadow":false,"topLevel":false},"bPC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eF":{"opcode":"control_if_else","next":"bPD","parent":"nV","inputs":{"CONDITION":[2,"aSC"],"SUBSTACK":[2,"aSD"],"SUBSTACK2":[2,"aSE"]},"fields":{},"shadow":false,"topLevel":false},"aSC":{"opcode":"operator_lt","next":null,"parent":"eF","inputs":{"OPERAND1":[3,"aSF",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aSF":{"opcode":"operator_mod","next":null,"parent":"aSC","inputs":{"NUM1":[3,"bPE",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSD":{"opcode":"procedures_call","next":null,"parent":"eF","inputs":{"HEES%ES}pzo}h9}$1(jb":[3,"aSG",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","warp":"true"}},"aSG":{"opcode":"operator_mod","next":null,"parent":"aSD","inputs":{"NUM1":[3,"bPF",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSG","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSE":{"opcode":"procedures_call","next":null,"parent":"eF","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[3,"aSH",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","warp":"true"}},"aSH":{"opcode":"operator_mod","next":null,"parent":"aSE","inputs":{"NUM1":[3,"bPG",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bPG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSH","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"bPD":{"opcode":"control_stop","next":null,"parent":"eF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nW":{"opcode":"control_if","next":"nX","parent":"nV","inputs":{"CONDITION":[2,"aSI"],"SUBSTACK":[2,"eG"]},"fields":{},"shadow":false,"topLevel":false},"aSI":{"opcode":"operator_lt","next":null,"parent":"nW","inputs":{"OPERAND1":[3,"bPH",[10,""]],"OPERAND2":[1,[10,"0xD0"]]},"fields":{},"shadow":false,"topLevel":false},"bPH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eG":{"opcode":"control_if_else","next":"bPI","parent":"nW","inputs":{"CONDITION":[2,"aSJ"],"SUBSTACK":[2,"eH"],"SUBSTACK2":[2,"nY"]},"fields":{},"shadow":false,"topLevel":false},"aSJ":{"opcode":"operator_lt","next":null,"parent":"eG","inputs":{"OPERAND1":[3,"aSK",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aSK":{"opcode":"operator_mod","next":null,"parent":"aSJ","inputs":{"NUM1":[3,"bPJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSK","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eH":{"opcode":"control_if_else","next":"aSL","parent":"eG","inputs":{"CONDITION":[2,"aSM"],"SUBSTACK":[2,"nZ"],"SUBSTACK2":[2,"n!"]},"fields":{},"shadow":false,"topLevel":false},"aSM":{"opcode":"operator_lt","next":null,"parent":"eH","inputs":{"OPERAND1":[3,"aSN",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aSN":{"opcode":"operator_mod","next":null,"parent":"aSM","inputs":{"NUM1":[3,"bPK",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSN","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"nZ":{"opcode":"control_if","next":"n#","parent":"eH","inputs":{"CONDITION":[2,"aSO"],"SUBSTACK":[2,"aSP"]},"fields":{},"shadow":false,"topLevel":false},"aSO":{"opcode":"operator_equals","next":null,"parent":"nZ","inputs":{"OPERAND1":[3,"aSQ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aSQ":{"opcode":"operator_mod","next":null,"parent":"aSO","inputs":{"NUM1":[3,"bPL",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aSP":{"opcode":"procedures_call","next":"bPM","parent":"nZ","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bPM":{"opcode":"control_stop","next":null,"parent":"aSP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n#":{"opcode":"control_if","next":"n%","parent":"nZ","inputs":{"CONDITION":[2,"aSR"],"SUBSTACK":[2,"GZ"]},"fields":{},"shadow":false,"topLevel":false},"aSR":{"opcode":"operator_equals","next":null,"parent":"n#","inputs":{"OPERAND1":[3,"aSS",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aSS":{"opcode":"operator_mod","next":null,"parent":"aSR","inputs":{"NUM1":[3,"bPN",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPN":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"GZ":{"opcode":"procedures_call","next":"bPO","parent":"n#","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aST"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aST":{"opcode":"operator_equals","next":null,"parent":"GZ","inputs":{"OPERAND1":[3,"bPP",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bPP":{"opcode":"data_itemoflist","next":null,"parent":"aST","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bPO":{"opcode":"control_stop","next":null,"parent":"GZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n%":{"opcode":"control_if","next":"G!","parent":"n#","inputs":{"CONDITION":[2,"aSU"],"SUBSTACK":[2,"G#"]},"fields":{},"shadow":false,"topLevel":false},"aSU":{"opcode":"operator_equals","next":null,"parent":"n%","inputs":{"OPERAND1":[3,"aSV",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aSV":{"opcode":"operator_mod","next":null,"parent":"aSU","inputs":{"NUM1":[3,"bPQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSV","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G#":{"opcode":"procedures_call","next":"bPR","parent":"n%","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"bPS"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"bPS":{"opcode":"operator_not","next":null,"parent":"G#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bPR":{"opcode":"control_stop","next":null,"parent":"G#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G!":{"opcode":"procedures_call","next":"bPT","parent":"n%","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aSW"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aSW":{"opcode":"operator_equals","next":null,"parent":"G!","inputs":{"OPERAND1":[3,"bPU",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bPU":{"opcode":"data_itemoflist","next":null,"parent":"aSW","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bPT":{"opcode":"control_stop","next":null,"parent":"G!","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n!":{"opcode":"control_if","next":"n(","parent":"eH","inputs":{"CONDITION":[2,"aSX"],"SUBSTACK":[2,"G%"]},"fields":{},"shadow":false,"topLevel":false},"aSX":{"opcode":"operator_equals","next":null,"parent":"n!","inputs":{"OPERAND1":[3,"aSY",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aSY":{"opcode":"operator_mod","next":null,"parent":"aSX","inputs":{"NUM1":[3,"bPV",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aSY","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G%":{"opcode":"procedures_call","next":"bPW","parent":"n!","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aSZ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aSZ":{"opcode":"operator_equals","next":null,"parent":"G%","inputs":{"OPERAND1":[3,"bPX",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bPX":{"opcode":"data_itemoflist","next":null,"parent":"aSZ","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bPW":{"opcode":"control_stop","next":null,"parent":"G%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n(":{"opcode":"control_if","next":"G(","parent":"n!","inputs":{"CONDITION":[2,"aS!"],"SUBSTACK":[2,"aS#"]},"fields":{},"shadow":false,"topLevel":false},"aS!":{"opcode":"operator_equals","next":null,"parent":"n(","inputs":{"OPERAND1":[3,"aS%",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aS%":{"opcode":"operator_mod","next":null,"parent":"aS!","inputs":{"NUM1":[3,"bPY",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bPY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS%","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aS#":{"opcode":"procedures_call","next":"bPZ","parent":"n(","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bPZ":{"opcode":"control_stop","next":null,"parent":"aS#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G(":{"opcode":"control_if","next":null,"parent":"n(","inputs":{"CONDITION":[2,"aS("],"SUBSTACK":[2,"aS)"]},"fields":{},"shadow":false,"topLevel":false},"aS(":{"opcode":"operator_equals","next":null,"parent":"G(","inputs":{"OPERAND1":[3,"aS*",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aS*":{"opcode":"operator_mod","next":null,"parent":"aS(","inputs":{"NUM1":[3,"bP!",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aS)":{"opcode":"procedures_call","next":"bP#","parent":"G(","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","warp":"true"}},"bP#":{"opcode":"control_stop","next":null,"parent":"aS)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aSL":{"opcode":"procedures_call","next":"bP%","parent":"eH","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bP%":{"opcode":"control_stop","next":null,"parent":"aSL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nY":{"opcode":"control_if_else","next":null,"parent":"eG","inputs":{"CONDITION":[2,"aS+"],"SUBSTACK":[2,"n)"],"SUBSTACK2":[2,"n*"]},"fields":{},"shadow":false,"topLevel":false},"aS+":{"opcode":"operator_lt","next":null,"parent":"nY","inputs":{"OPERAND1":[3,"aS,",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aS,":{"opcode":"operator_mod","next":null,"parent":"aS+","inputs":{"NUM1":[3,"bP(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS,","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"n)":{"opcode":"control_if","next":"n+","parent":"nY","inputs":{"CONDITION":[2,"aS-"],"SUBSTACK":[2,"Nm"]},"fields":{},"shadow":false,"topLevel":false},"aS-":{"opcode":"operator_equals","next":null,"parent":"n)","inputs":{"OPERAND1":[3,"aS.",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aS.":{"opcode":"operator_mod","next":null,"parent":"aS-","inputs":{"NUM1":[3,"bP)",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP)":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS.","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nm":{"opcode":"procedures_call","next":"bP*","parent":"n)","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aS/"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aS/":{"opcode":"operator_equals","next":null,"parent":"Nm","inputs":{"OPERAND1":[3,"bP+",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bP+":{"opcode":"data_itemoflist","next":null,"parent":"aS/","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bP*":{"opcode":"control_stop","next":null,"parent":"Nm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n+":{"opcode":"control_if","next":"n,","parent":"n)","inputs":{"CONDITION":[2,"aS:"],"SUBSTACK":[2,"Nn"]},"fields":{},"shadow":false,"topLevel":false},"aS:":{"opcode":"operator_equals","next":null,"parent":"n+","inputs":{"OPERAND1":[3,"aS;",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aS;":{"opcode":"operator_mod","next":null,"parent":"aS:","inputs":{"NUM1":[3,"bP,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP,":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nn":{"opcode":"procedures_call","next":"aS=","parent":"n+","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"bP-"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"bP-":{"opcode":"operator_not","next":null,"parent":"Nn","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aS=":{"opcode":"data_changevariableby","next":"bP.","parent":"Nn","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bP.":{"opcode":"control_stop","next":null,"parent":"aS=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n,":{"opcode":"control_if","next":"G)","parent":"n+","inputs":{"CONDITION":[2,"aS?"],"SUBSTACK":[2,"G*"]},"fields":{},"shadow":false,"topLevel":false},"aS?":{"opcode":"operator_equals","next":null,"parent":"n,","inputs":{"OPERAND1":[3,"aS@",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aS@":{"opcode":"operator_mod","next":null,"parent":"aS?","inputs":{"NUM1":[3,"bP/",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP/":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS@","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G*":{"opcode":"procedures_call","next":"bP:","parent":"n,","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aS["]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aS[":{"opcode":"operator_equals","next":null,"parent":"G*","inputs":{"OPERAND1":[3,"bP;",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bP;":{"opcode":"data_itemoflist","next":null,"parent":"aS[","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bP:":{"opcode":"control_stop","next":null,"parent":"G*","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G)":{"opcode":"procedures_call","next":"bP=","parent":"n,","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"bP?"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"bP?":{"opcode":"operator_not","next":null,"parent":"G)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bP=":{"opcode":"control_stop","next":null,"parent":"G)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n*":{"opcode":"control_if","next":"n-","parent":"nY","inputs":{"CONDITION":[2,"aS]"],"SUBSTACK":[2,"No"]},"fields":{},"shadow":false,"topLevel":false},"aS]":{"opcode":"operator_equals","next":null,"parent":"n*","inputs":{"OPERAND1":[3,"aS^",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aS^":{"opcode":"operator_mod","next":null,"parent":"aS]","inputs":{"NUM1":[3,"bP@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS^","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"No":{"opcode":"procedures_call","next":"bP[","parent":"n*","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aS_"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aS_":{"opcode":"operator_equals","next":null,"parent":"No","inputs":{"OPERAND1":[3,"bP]",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bP]":{"opcode":"data_itemoflist","next":null,"parent":"aS_","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bP[":{"opcode":"control_stop","next":null,"parent":"No","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n-":{"opcode":"control_if","next":"n.","parent":"n*","inputs":{"CONDITION":[2,"aS`"],"SUBSTACK":[2,"Np"]},"fields":{},"shadow":false,"topLevel":false},"aS`":{"opcode":"operator_equals","next":null,"parent":"n-","inputs":{"OPERAND1":[3,"aS{",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aS{":{"opcode":"operator_mod","next":null,"parent":"aS`","inputs":{"NUM1":[3,"bP^",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS{","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Np":{"opcode":"procedures_call","next":"bP_","parent":"n-","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bP`"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bP`":{"opcode":"operator_not","next":null,"parent":"Np","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bP_":{"opcode":"control_stop","next":null,"parent":"Np","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n.":{"opcode":"control_if","next":"bP{","parent":"n-","inputs":{"CONDITION":[2,"aS|"],"SUBSTACK":[2,"aS}"]},"fields":{},"shadow":false,"topLevel":false},"aS|":{"opcode":"operator_equals","next":null,"parent":"n.","inputs":{"OPERAND1":[3,"aS~",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aS~":{"opcode":"operator_mod","next":null,"parent":"aS|","inputs":{"NUM1":[3,"bP|",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bP|":{"opcode":"argument_reporter_string_number","next":null,"parent":"aS~","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aS}":{"opcode":"procedures_call","next":"bP}","parent":"n.","inputs":{"g~W%j(pxt{obs8]2L|in":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","warp":"true"}},"bP}":{"opcode":"control_stop","next":null,"parent":"aS}","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bP{":{"opcode":"procedures_call","next":null,"parent":"n.","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bPI":{"opcode":"control_stop","next":null,"parent":"eG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"nX":{"opcode":"control_if","next":"n/","parent":"nW","inputs":{"CONDITION":[2,"aTa"],"SUBSTACK":[2,"eI"]},"fields":{},"shadow":false,"topLevel":false},"aTa":{"opcode":"operator_lt","next":null,"parent":"nX","inputs":{"OPERAND1":[3,"bP~",[10,""]],"OPERAND2":[1,[10,"0xE0"]]},"fields":{},"shadow":false,"topLevel":false},"bP~":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTa","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eI":{"opcode":"control_if_else","next":"bQa","parent":"nX","inputs":{"CONDITION":[2,"aTb"],"SUBSTACK":[2,"eJ"],"SUBSTACK2":[2,"n:"]},"fields":{},"shadow":false,"topLevel":false},"aTb":{"opcode":"operator_lt","next":null,"parent":"eI","inputs":{"OPERAND1":[3,"aTc",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aTc":{"opcode":"operator_mod","next":null,"parent":"aTb","inputs":{"NUM1":[3,"bQb",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTc","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eJ":{"opcode":"control_if_else","next":"bQc","parent":"eI","inputs":{"CONDITION":[2,"aTd"],"SUBSTACK":[2,"n;"],"SUBSTACK2":[2,"n="]},"fields":{},"shadow":false,"topLevel":false},"aTd":{"opcode":"operator_lt","next":null,"parent":"eJ","inputs":{"OPERAND1":[3,"aTe",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aTe":{"opcode":"operator_mod","next":null,"parent":"aTd","inputs":{"NUM1":[3,"bQd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQd":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTe","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"n;":{"opcode":"control_if","next":"n?","parent":"eJ","inputs":{"CONDITION":[2,"aTf"],"SUBSTACK":[2,"aTg"]},"fields":{},"shadow":false,"topLevel":false},"aTf":{"opcode":"operator_equals","next":null,"parent":"n;","inputs":{"OPERAND1":[3,"aTh",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aTh":{"opcode":"operator_mod","next":null,"parent":"aTf","inputs":{"NUM1":[3,"bQe",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQe":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTh","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTg":{"opcode":"procedures_call","next":"bQf","parent":"n;","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bQf":{"opcode":"control_stop","next":null,"parent":"aTg","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n?":{"opcode":"control_if","next":"n@","parent":"n;","inputs":{"CONDITION":[2,"aTi"],"SUBSTACK":[2,"Nq"]},"fields":{},"shadow":false,"topLevel":false},"aTi":{"opcode":"operator_equals","next":null,"parent":"n?","inputs":{"OPERAND1":[3,"aTj",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aTj":{"opcode":"operator_mod","next":null,"parent":"aTi","inputs":{"NUM1":[3,"bQg",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQg":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTj","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nq":{"opcode":"procedures_call","next":"bQh","parent":"n?","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aTk"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aTk":{"opcode":"operator_equals","next":null,"parent":"Nq","inputs":{"OPERAND1":[3,"bQi",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQi":{"opcode":"data_itemoflist","next":null,"parent":"aTk","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQh":{"opcode":"control_stop","next":null,"parent":"Nq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n@":{"opcode":"control_if","next":"Nr","parent":"n?","inputs":{"CONDITION":[2,"aTl"],"SUBSTACK":[2,"aTm"]},"fields":{},"shadow":false,"topLevel":false},"aTl":{"opcode":"operator_equals","next":null,"parent":"n@","inputs":{"OPERAND1":[3,"aTn",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aTn":{"opcode":"operator_mod","next":null,"parent":"aTl","inputs":{"NUM1":[3,"bQj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQj":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTn","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTm":{"opcode":"procedures_call","next":"bQk","parent":"n@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"OUT","argumentids":"[]","warp":"true"}},"bQk":{"opcode":"control_stop","next":null,"parent":"aTm","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Nr":{"opcode":"procedures_call","next":"bQl","parent":"n@","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aTo"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aTo":{"opcode":"operator_equals","next":null,"parent":"Nr","inputs":{"OPERAND1":[3,"bQm",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQm":{"opcode":"data_itemoflist","next":null,"parent":"aTo","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQl":{"opcode":"control_stop","next":null,"parent":"Nr","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n=":{"opcode":"control_if","next":"n[","parent":"eJ","inputs":{"CONDITION":[2,"aTp"],"SUBSTACK":[2,"Ns"]},"fields":{},"shadow":false,"topLevel":false},"aTp":{"opcode":"operator_equals","next":null,"parent":"n=","inputs":{"OPERAND1":[3,"aTq",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aTq":{"opcode":"operator_mod","next":null,"parent":"aTp","inputs":{"NUM1":[3,"bQn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQn":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTq","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Ns":{"opcode":"procedures_call","next":"bQo","parent":"n=","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aTr"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aTr":{"opcode":"operator_equals","next":null,"parent":"Ns","inputs":{"OPERAND1":[3,"bQp",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQp":{"opcode":"data_itemoflist","next":null,"parent":"aTr","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQo":{"opcode":"control_stop","next":null,"parent":"Ns","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n[":{"opcode":"control_if","next":"n]","parent":"n=","inputs":{"CONDITION":[2,"aTs"],"SUBSTACK":[2,"aTt"]},"fields":{},"shadow":false,"topLevel":false},"aTs":{"opcode":"operator_equals","next":null,"parent":"n[","inputs":{"OPERAND1":[3,"aTu",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aTu":{"opcode":"operator_mod","next":null,"parent":"aTs","inputs":{"NUM1":[3,"bQq",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQq":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTu","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTt":{"opcode":"procedures_call","next":"bQr","parent":"n[","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bQr":{"opcode":"control_stop","next":null,"parent":"aTt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n]":{"opcode":"control_if","next":"bQs","parent":"n[","inputs":{"CONDITION":[2,"aTv"],"SUBSTACK":[2,"aTw"]},"fields":{},"shadow":false,"topLevel":false},"aTv":{"opcode":"operator_equals","next":null,"parent":"n]","inputs":{"OPERAND1":[3,"aTx",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aTx":{"opcode":"operator_mod","next":null,"parent":"aTv","inputs":{"NUM1":[3,"bQt",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQt":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTx","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTw":{"opcode":"procedures_call","next":"bQu","parent":"n]","inputs":{"69W4N%[To:QDj1jXCPU7":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","warp":"true"}},"bQu":{"opcode":"control_stop","next":null,"parent":"aTw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bQs":{"opcode":"procedures_call","next":null,"parent":"n]","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bQc":{"opcode":"control_stop","next":null,"parent":"eJ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n:":{"opcode":"control_if_else","next":null,"parent":"eI","inputs":{"CONDITION":[2,"aTy"],"SUBSTACK":[2,"YY"],"SUBSTACK2":[2,"YZ"]},"fields":{},"shadow":false,"topLevel":false},"aTy":{"opcode":"operator_lt","next":null,"parent":"n:","inputs":{"OPERAND1":[3,"aTz",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aTz":{"opcode":"operator_mod","next":null,"parent":"aTy","inputs":{"NUM1":[3,"bQv",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTz","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"YY":{"opcode":"control_if","next":"Y!","parent":"n:","inputs":{"CONDITION":[2,"aTA"],"SUBSTACK":[2,"Nt"]},"fields":{},"shadow":false,"topLevel":false},"aTA":{"opcode":"operator_equals","next":null,"parent":"YY","inputs":{"OPERAND1":[3,"aTB",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aTB":{"opcode":"operator_mod","next":null,"parent":"aTA","inputs":{"NUM1":[3,"bQw",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQw":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nt":{"opcode":"procedures_call","next":"bQx","parent":"YY","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aTC"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aTC":{"opcode":"operator_equals","next":null,"parent":"Nt","inputs":{"OPERAND1":[3,"bQy",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQy":{"opcode":"data_itemoflist","next":null,"parent":"aTC","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQx":{"opcode":"control_stop","next":null,"parent":"Nt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y!":{"opcode":"control_if","next":"Y#","parent":"YY","inputs":{"CONDITION":[2,"aTD"],"SUBSTACK":[2,"Nu"]},"fields":{},"shadow":false,"topLevel":false},"aTD":{"opcode":"operator_equals","next":null,"parent":"Y!","inputs":{"OPERAND1":[3,"aTE",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aTE":{"opcode":"operator_mod","next":null,"parent":"aTD","inputs":{"NUM1":[3,"bQz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQz":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTE","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nu":{"opcode":"procedures_call","next":"aTF","parent":"Y!","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"bQA"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"bQA":{"opcode":"operator_not","next":null,"parent":"Nu","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aTF":{"opcode":"data_changevariableby","next":"bQB","parent":"Nu","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bQB":{"opcode":"control_stop","next":null,"parent":"aTF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y#":{"opcode":"control_if","next":"aTG","parent":"Y!","inputs":{"CONDITION":[2,"aTH"],"SUBSTACK":[2,"Nv"]},"fields":{},"shadow":false,"topLevel":false},"aTH":{"opcode":"operator_equals","next":null,"parent":"Y#","inputs":{"OPERAND1":[3,"aTI",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aTI":{"opcode":"operator_mod","next":null,"parent":"aTH","inputs":{"NUM1":[3,"bQC",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nv":{"opcode":"procedures_call","next":"bQD","parent":"Y#","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aTJ"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aTJ":{"opcode":"operator_equals","next":null,"parent":"Nv","inputs":{"OPERAND1":[3,"bQE",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQE":{"opcode":"data_itemoflist","next":null,"parent":"aTJ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQD":{"opcode":"control_stop","next":null,"parent":"Nv","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aTG":{"opcode":"procedures_call","next":"bQF","parent":"Y#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"IN","argumentids":"[]","warp":"true"}},"bQF":{"opcode":"control_stop","next":null,"parent":"aTG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"YZ":{"opcode":"control_if","next":"Y%","parent":"n:","inputs":{"CONDITION":[2,"aTK"],"SUBSTACK":[2,"Nw"]},"fields":{},"shadow":false,"topLevel":false},"aTK":{"opcode":"operator_equals","next":null,"parent":"YZ","inputs":{"OPERAND1":[3,"aTL",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aTL":{"opcode":"operator_mod","next":null,"parent":"aTK","inputs":{"NUM1":[3,"bQG",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTL","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nw":{"opcode":"procedures_call","next":"bQH","parent":"YZ","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aTM"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aTM":{"opcode":"operator_equals","next":null,"parent":"Nw","inputs":{"OPERAND1":[3,"bQI",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQI":{"opcode":"data_itemoflist","next":null,"parent":"aTM","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQH":{"opcode":"control_stop","next":null,"parent":"Nw","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y%":{"opcode":"control_if","next":"Y(","parent":"YZ","inputs":{"CONDITION":[2,"aTN"],"SUBSTACK":[2,"Nx"]},"fields":{},"shadow":false,"topLevel":false},"aTN":{"opcode":"operator_equals","next":null,"parent":"Y%","inputs":{"OPERAND1":[3,"aTO",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aTO":{"opcode":"operator_mod","next":null,"parent":"aTN","inputs":{"NUM1":[3,"bQJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTO","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Nx":{"opcode":"procedures_call","next":"bQK","parent":"Y%","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bQL"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bQL":{"opcode":"operator_not","next":null,"parent":"Nx","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bQK":{"opcode":"control_stop","next":null,"parent":"Nx","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y(":{"opcode":"control_if","next":"bQM","parent":"Y%","inputs":{"CONDITION":[2,"aTP"],"SUBSTACK":[2,"aTQ"]},"fields":{},"shadow":false,"topLevel":false},"aTP":{"opcode":"operator_equals","next":null,"parent":"Y(","inputs":{"OPERAND1":[3,"aTR",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aTR":{"opcode":"operator_mod","next":null,"parent":"aTP","inputs":{"NUM1":[3,"bQN",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQN":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTR","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTQ":{"opcode":"procedures_call","next":"bQO","parent":"Y(","inputs":{"R2;pFT-x31=s{}dTh^dR":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","warp":"true"}},"bQO":{"opcode":"control_stop","next":null,"parent":"aTQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bQM":{"opcode":"procedures_call","next":null,"parent":"Y(","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bQa":{"opcode":"control_stop","next":null,"parent":"eI","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n/":{"opcode":"control_if","next":"Y)","parent":"nX","inputs":{"CONDITION":[2,"aTS"],"SUBSTACK":[2,"eK"]},"fields":{},"shadow":false,"topLevel":false},"aTS":{"opcode":"operator_lt","next":null,"parent":"n/","inputs":{"OPERAND1":[3,"bQP",[10,""]],"OPERAND2":[1,[10,"0xF0"]]},"fields":{},"shadow":false,"topLevel":false},"bQP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTS","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eK":{"opcode":"control_if_else","next":"bQQ","parent":"n/","inputs":{"CONDITION":[2,"aTT"],"SUBSTACK":[2,"eL"],"SUBSTACK2":[2,"Y*"]},"fields":{},"shadow":false,"topLevel":false},"aTT":{"opcode":"operator_lt","next":null,"parent":"eK","inputs":{"OPERAND1":[3,"aTU",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aTU":{"opcode":"operator_mod","next":null,"parent":"aTT","inputs":{"NUM1":[3,"bQR",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTU","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eL":{"opcode":"control_if_else","next":"bQS","parent":"eK","inputs":{"CONDITION":[2,"aTV"],"SUBSTACK":[2,"Y+"],"SUBSTACK2":[2,"Y,"]},"fields":{},"shadow":false,"topLevel":false},"aTV":{"opcode":"operator_lt","next":null,"parent":"eL","inputs":{"OPERAND1":[3,"aTW",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aTW":{"opcode":"operator_mod","next":null,"parent":"aTV","inputs":{"NUM1":[3,"bQT",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTW","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Y+":{"opcode":"control_if","next":"n^","parent":"eL","inputs":{"CONDITION":[2,"aTX"],"SUBSTACK":[2,"aTY"]},"fields":{},"shadow":false,"topLevel":false},"aTX":{"opcode":"operator_equals","next":null,"parent":"Y+","inputs":{"OPERAND1":[3,"aTZ",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aTZ":{"opcode":"operator_mod","next":null,"parent":"aTX","inputs":{"NUM1":[3,"bQU",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aTZ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aTY":{"opcode":"procedures_call","next":"bQV","parent":"Y+","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","warp":"true"}},"bQV":{"opcode":"control_stop","next":null,"parent":"aTY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n^":{"opcode":"control_if","next":"n_","parent":"Y+","inputs":{"CONDITION":[2,"aT!"],"SUBSTACK":[2,"G+"]},"fields":{},"shadow":false,"topLevel":false},"aT!":{"opcode":"operator_equals","next":null,"parent":"n^","inputs":{"OPERAND1":[3,"aT#",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aT#":{"opcode":"operator_mod","next":null,"parent":"aT!","inputs":{"NUM1":[3,"bQW",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT#","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G+":{"opcode":"procedures_call","next":"bQX","parent":"n^","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aT%"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aT%":{"opcode":"operator_equals","next":null,"parent":"G+","inputs":{"OPERAND1":[3,"bQY",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQY":{"opcode":"data_itemoflist","next":null,"parent":"aT%","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQX":{"opcode":"control_stop","next":null,"parent":"G+","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n_":{"opcode":"control_if","next":"G,","parent":"n^","inputs":{"CONDITION":[2,"aT("],"SUBSTACK":[2,"aT)"]},"fields":{},"shadow":false,"topLevel":false},"aT(":{"opcode":"operator_equals","next":null,"parent":"n_","inputs":{"OPERAND1":[3,"aT*",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aT*":{"opcode":"operator_mod","next":null,"parent":"aT(","inputs":{"NUM1":[3,"bQZ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT*","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT)":{"opcode":"procedures_call","next":"bQ!","parent":"n_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XTHL","argumentids":"[]","warp":"true"}},"bQ!":{"opcode":"control_stop","next":null,"parent":"aT)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G,":{"opcode":"procedures_call","next":"bQ#","parent":"n_","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aT+"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aT+":{"opcode":"operator_equals","next":null,"parent":"G,","inputs":{"OPERAND1":[3,"bQ%",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQ%":{"opcode":"data_itemoflist","next":null,"parent":"aT+","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQ#":{"opcode":"control_stop","next":null,"parent":"G,","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y,":{"opcode":"control_if","next":"n`","parent":"eL","inputs":{"CONDITION":[2,"aT,"],"SUBSTACK":[2,"G-"]},"fields":{},"shadow":false,"topLevel":false},"aT,":{"opcode":"operator_equals","next":null,"parent":"Y,","inputs":{"OPERAND1":[3,"aT-",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aT-":{"opcode":"operator_mod","next":null,"parent":"aT,","inputs":{"NUM1":[3,"bQ(",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT-","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G-":{"opcode":"procedures_call","next":"bQ)","parent":"Y,","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aT."]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aT.":{"opcode":"operator_equals","next":null,"parent":"G-","inputs":{"OPERAND1":[3,"bQ*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bQ*":{"opcode":"data_itemoflist","next":null,"parent":"aT.","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQ)":{"opcode":"control_stop","next":null,"parent":"G-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n`":{"opcode":"control_if","next":"n{","parent":"Y,","inputs":{"CONDITION":[2,"aT/"],"SUBSTACK":[2,"aT:"]},"fields":{},"shadow":false,"topLevel":false},"aT/":{"opcode":"operator_equals","next":null,"parent":"n`","inputs":{"OPERAND1":[3,"aT;",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aT;":{"opcode":"operator_mod","next":null,"parent":"aT/","inputs":{"NUM1":[3,"bQ+",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT;","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT:":{"opcode":"procedures_call","next":"bQ,","parent":"n`","inputs":{"WcF;@0._c|op{:JV~Utq":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","warp":"true"}},"bQ,":{"opcode":"control_stop","next":null,"parent":"aT:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n{":{"opcode":"control_if","next":"bQ-","parent":"n`","inputs":{"CONDITION":[2,"aT="],"SUBSTACK":[2,"aT?"]},"fields":{},"shadow":false,"topLevel":false},"aT=":{"opcode":"operator_equals","next":null,"parent":"n{","inputs":{"OPERAND1":[3,"aT@",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aT@":{"opcode":"operator_mod","next":null,"parent":"aT=","inputs":{"NUM1":[3,"bQ.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT@","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT?":{"opcode":"procedures_call","next":"bQ/","parent":"n{","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","warp":"true"}},"bQ/":{"opcode":"control_stop","next":null,"parent":"aT?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bQ-":{"opcode":"procedures_call","next":null,"parent":"n{","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bQS":{"opcode":"control_stop","next":null,"parent":"eL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y*":{"opcode":"control_if_else","next":null,"parent":"eK","inputs":{"CONDITION":[2,"aT["],"SUBSTACK":[2,"n|"],"SUBSTACK2":[2,"n}"]},"fields":{},"shadow":false,"topLevel":false},"aT[":{"opcode":"operator_lt","next":null,"parent":"Y*","inputs":{"OPERAND1":[3,"aT]",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aT]":{"opcode":"operator_mod","next":null,"parent":"aT[","inputs":{"NUM1":[3,"bQ:",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT]","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"n|":{"opcode":"control_if","next":"n~","parent":"Y*","inputs":{"CONDITION":[2,"aT^"],"SUBSTACK":[2,"G."]},"fields":{},"shadow":false,"topLevel":false},"aT^":{"opcode":"operator_equals","next":null,"parent":"n|","inputs":{"OPERAND1":[3,"aT_",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aT_":{"opcode":"operator_mod","next":null,"parent":"aT^","inputs":{"NUM1":[3,"bQ;",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT_","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G.":{"opcode":"procedures_call","next":"bQ=","parent":"n|","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aT`"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aT`":{"opcode":"operator_equals","next":null,"parent":"G.","inputs":{"OPERAND1":[3,"bQ?",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQ?":{"opcode":"data_itemoflist","next":null,"parent":"aT`","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQ=":{"opcode":"control_stop","next":null,"parent":"G.","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n~":{"opcode":"control_if","next":"oa","parent":"n|","inputs":{"CONDITION":[2,"aT{"],"SUBSTACK":[2,"aT|"]},"fields":{},"shadow":false,"topLevel":false},"aT{":{"opcode":"operator_equals","next":null,"parent":"n~","inputs":{"OPERAND1":[3,"aT}",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aT}":{"opcode":"operator_mod","next":null,"parent":"aT{","inputs":{"NUM1":[3,"bQ@",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aT}","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aT|":{"opcode":"procedures_call","next":"bQ[","parent":"n~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PCHL","argumentids":"[]","warp":"true"}},"bQ[":{"opcode":"control_stop","next":null,"parent":"aT|","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oa":{"opcode":"control_if","next":"aT~","parent":"n~","inputs":{"CONDITION":[2,"aUa"],"SUBSTACK":[2,"G/"]},"fields":{},"shadow":false,"topLevel":false},"aUa":{"opcode":"operator_equals","next":null,"parent":"oa","inputs":{"OPERAND1":[3,"aUb",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aUb":{"opcode":"operator_mod","next":null,"parent":"aUa","inputs":{"NUM1":[3,"bQ]",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ]":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUb","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G/":{"opcode":"procedures_call","next":"bQ^","parent":"oa","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aUc"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aUc":{"opcode":"operator_equals","next":null,"parent":"G/","inputs":{"OPERAND1":[3,"bQ_",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQ_":{"opcode":"data_itemoflist","next":null,"parent":"aUc","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQ^":{"opcode":"control_stop","next":null,"parent":"G/","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aT~":{"opcode":"procedures_call","next":"bQ`","parent":"oa","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XCHG","argumentids":"[]","warp":"true"}},"bQ`":{"opcode":"control_stop","next":null,"parent":"aT~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"n}":{"opcode":"control_if","next":"ob","parent":"Y*","inputs":{"CONDITION":[2,"aUd"],"SUBSTACK":[2,"G:"]},"fields":{},"shadow":false,"topLevel":false},"aUd":{"opcode":"operator_equals","next":null,"parent":"n}","inputs":{"OPERAND1":[3,"aUe",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aUe":{"opcode":"operator_mod","next":null,"parent":"aUd","inputs":{"NUM1":[3,"bQ{",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ{":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUe","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G:":{"opcode":"procedures_call","next":"bQ|","parent":"n}","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aUf"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aUf":{"opcode":"operator_equals","next":null,"parent":"G:","inputs":{"OPERAND1":[3,"bQ}",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bQ}":{"opcode":"data_itemoflist","next":null,"parent":"aUf","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bQ|":{"opcode":"control_stop","next":null,"parent":"G:","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ob":{"opcode":"control_if","next":"oc","parent":"n}","inputs":{"CONDITION":[2,"aUg"],"SUBSTACK":[2,"G;"]},"fields":{},"shadow":false,"topLevel":false},"aUg":{"opcode":"operator_equals","next":null,"parent":"ob","inputs":{"OPERAND1":[3,"aUh",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aUh":{"opcode":"operator_mod","next":null,"parent":"aUg","inputs":{"NUM1":[3,"bQ~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bQ~":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUh","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G;":{"opcode":"procedures_call","next":"bRa","parent":"ob","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bRb"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bRb":{"opcode":"operator_not","next":null,"parent":"G;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bRa":{"opcode":"control_stop","next":null,"parent":"G;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oc":{"opcode":"control_if","next":"bRc","parent":"ob","inputs":{"CONDITION":[2,"aUi"],"SUBSTACK":[2,"aUj"]},"fields":{},"shadow":false,"topLevel":false},"aUi":{"opcode":"operator_equals","next":null,"parent":"oc","inputs":{"OPERAND1":[3,"aUk",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aUk":{"opcode":"operator_mod","next":null,"parent":"aUi","inputs":{"NUM1":[3,"bRd",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRd":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUk","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUj":{"opcode":"procedures_call","next":"bRe","parent":"oc","inputs":{"t}uDb?K/qpdRG{z:HKi0":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","warp":"true"}},"bRe":{"opcode":"control_stop","next":null,"parent":"aUj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bRc":{"opcode":"procedures_call","next":null,"parent":"oc","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bQQ":{"opcode":"control_stop","next":null,"parent":"eK","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y)":{"opcode":"control_if_else","next":null,"parent":"n/","inputs":{"CONDITION":[2,"aUl"],"SUBSTACK":[2,"eM"],"SUBSTACK2":[2,"od"]},"fields":{},"shadow":false,"topLevel":false},"aUl":{"opcode":"operator_lt","next":null,"parent":"Y)","inputs":{"OPERAND1":[3,"aUm",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aUm":{"opcode":"operator_mod","next":null,"parent":"aUl","inputs":{"NUM1":[3,"bRf",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRf":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUm","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"eM":{"opcode":"control_if_else","next":"bRg","parent":"Y)","inputs":{"CONDITION":[2,"aUn"],"SUBSTACK":[2,"oe"],"SUBSTACK2":[2,"og"]},"fields":{},"shadow":false,"topLevel":false},"aUn":{"opcode":"operator_lt","next":null,"parent":"eM","inputs":{"OPERAND1":[3,"aUo",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aUo":{"opcode":"operator_mod","next":null,"parent":"aUn","inputs":{"NUM1":[3,"bRh",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRh":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUo","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"oe":{"opcode":"control_if","next":"oh","parent":"eM","inputs":{"CONDITION":[2,"aUp"],"SUBSTACK":[2,"aUq"]},"fields":{},"shadow":false,"topLevel":false},"aUp":{"opcode":"operator_equals","next":null,"parent":"oe","inputs":{"OPERAND1":[3,"aUr",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aUr":{"opcode":"operator_mod","next":null,"parent":"aUp","inputs":{"NUM1":[3,"bRi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRi":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUr","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUq":{"opcode":"procedures_call","next":"bRj","parent":"oe","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP PSW","argumentids":"[]","warp":"true"}},"bRj":{"opcode":"control_stop","next":null,"parent":"aUq","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oh":{"opcode":"control_if","next":"oi","parent":"oe","inputs":{"CONDITION":[2,"aUs"],"SUBSTACK":[2,"G="]},"fields":{},"shadow":false,"topLevel":false},"aUs":{"opcode":"operator_equals","next":null,"parent":"oh","inputs":{"OPERAND1":[3,"aUt",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aUt":{"opcode":"operator_mod","next":null,"parent":"aUs","inputs":{"NUM1":[3,"bRk",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRk":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUt","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G=":{"opcode":"procedures_call","next":"bRl","parent":"oh","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aUu"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aUu":{"opcode":"operator_equals","next":null,"parent":"G=","inputs":{"OPERAND1":[3,"bRm",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bRm":{"opcode":"data_itemoflist","next":null,"parent":"aUu","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRl":{"opcode":"control_stop","next":null,"parent":"G=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oi":{"opcode":"control_if","next":"G?","parent":"oh","inputs":{"CONDITION":[2,"aUv"],"SUBSTACK":[2,"aUw"]},"fields":{},"shadow":false,"topLevel":false},"aUv":{"opcode":"operator_equals","next":null,"parent":"oi","inputs":{"OPERAND1":[3,"aUx",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"aUx":{"opcode":"operator_mod","next":null,"parent":"aUv","inputs":{"NUM1":[3,"bRn",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRn":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUx","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUw":{"opcode":"data_setvariableto","next":"aUy","parent":"oi","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aUy":{"opcode":"data_changevariableby","next":"bRo","parent":"aUw","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bRo":{"opcode":"control_stop","next":null,"parent":"aUy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G?":{"opcode":"procedures_call","next":"bRp","parent":"oi","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aUz"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aUz":{"opcode":"operator_equals","next":null,"parent":"G?","inputs":{"OPERAND1":[3,"bRq",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bRq":{"opcode":"data_itemoflist","next":null,"parent":"aUz","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRp":{"opcode":"control_stop","next":null,"parent":"G?","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"og":{"opcode":"control_if","next":"G@","parent":"eM","inputs":{"CONDITION":[2,"aUA"],"SUBSTACK":[2,"G["]},"fields":{},"shadow":false,"topLevel":false},"aUA":{"opcode":"operator_equals","next":null,"parent":"og","inputs":{"OPERAND1":[3,"aUB",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aUB":{"opcode":"operator_mod","next":null,"parent":"aUA","inputs":{"NUM1":[3,"bRr",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRr":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUB","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G[":{"opcode":"procedures_call","next":"bRs","parent":"og","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aUC"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aUC":{"opcode":"operator_equals","next":null,"parent":"G[","inputs":{"OPERAND1":[3,"bRt",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bRt":{"opcode":"data_itemoflist","next":null,"parent":"aUC","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRs":{"opcode":"control_stop","next":null,"parent":"G[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G@":{"opcode":"control_if","next":"G]","parent":"og","inputs":{"CONDITION":[2,"aUD"],"SUBSTACK":[2,"aUE"]},"fields":{},"shadow":false,"topLevel":false},"aUD":{"opcode":"operator_equals","next":null,"parent":"G@","inputs":{"OPERAND1":[3,"aUF",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"aUF":{"opcode":"operator_mod","next":null,"parent":"aUD","inputs":{"NUM1":[3,"bRu",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUF","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUE":{"opcode":"procedures_call","next":"bRv","parent":"G@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH PSW","argumentids":"[]","warp":"true"}},"bRv":{"opcode":"control_stop","next":null,"parent":"aUE","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"G]":{"opcode":"control_if","next":"bRw","parent":"G@","inputs":{"CONDITION":[2,"aUG"],"SUBSTACK":[2,"aUH"]},"fields":{},"shadow":false,"topLevel":false},"aUG":{"opcode":"operator_equals","next":null,"parent":"G]","inputs":{"OPERAND1":[3,"aUI",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aUI":{"opcode":"operator_mod","next":null,"parent":"aUG","inputs":{"NUM1":[3,"bRx",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRx":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUI","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUH":{"opcode":"procedures_call","next":"bRy","parent":"G]","inputs":{"HEES%ES}pzo}h9}$1(jb":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","warp":"true"}},"bRy":{"opcode":"control_stop","next":null,"parent":"aUH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bRw":{"opcode":"procedures_call","next":null,"parent":"G]","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bRg":{"opcode":"control_stop","next":null,"parent":"eM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"od":{"opcode":"control_if_else","next":null,"parent":"Y)","inputs":{"CONDITION":[2,"aUJ"],"SUBSTACK":[2,"Y-"],"SUBSTACK2":[2,"Y."]},"fields":{},"shadow":false,"topLevel":false},"aUJ":{"opcode":"operator_lt","next":null,"parent":"od","inputs":{"OPERAND1":[3,"aUK",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aUK":{"opcode":"operator_mod","next":null,"parent":"aUJ","inputs":{"NUM1":[3,"bRz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRz":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUK","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"Y-":{"opcode":"control_if","next":"Y/","parent":"od","inputs":{"CONDITION":[2,"aUL"],"SUBSTACK":[2,"G^"]},"fields":{},"shadow":false,"topLevel":false},"aUL":{"opcode":"operator_equals","next":null,"parent":"Y-","inputs":{"OPERAND1":[3,"aUM",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aUM":{"opcode":"operator_mod","next":null,"parent":"aUL","inputs":{"NUM1":[3,"bRA",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUM","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G^":{"opcode":"procedures_call","next":"bRB","parent":"Y-","inputs":{"81jPTca|qI_$x~T9K=;g":[2,"aUN"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","warp":"true"}},"aUN":{"opcode":"operator_equals","next":null,"parent":"G^","inputs":{"OPERAND1":[3,"bRC",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bRC":{"opcode":"data_itemoflist","next":null,"parent":"aUN","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRB":{"opcode":"control_stop","next":null,"parent":"G^","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y/":{"opcode":"control_if","next":"Y:","parent":"Y-","inputs":{"CONDITION":[2,"aUO"],"SUBSTACK":[2,"aUP"]},"fields":{},"shadow":false,"topLevel":false},"aUO":{"opcode":"operator_equals","next":null,"parent":"Y/","inputs":{"OPERAND1":[3,"aUQ",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aUQ":{"opcode":"operator_mod","next":null,"parent":"aUO","inputs":{"NUM1":[3,"bRD",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRD":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUQ","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aUP":{"opcode":"procedures_call","next":"bRE","parent":"Y/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SPHL","argumentids":"[]","warp":"true"}},"bRE":{"opcode":"control_stop","next":null,"parent":"aUP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y:":{"opcode":"control_if","next":"aUR","parent":"Y/","inputs":{"CONDITION":[2,"aUS"],"SUBSTACK":[2,"G_"]},"fields":{},"shadow":false,"topLevel":false},"aUS":{"opcode":"operator_equals","next":null,"parent":"Y:","inputs":{"OPERAND1":[3,"aUT",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aUT":{"opcode":"operator_mod","next":null,"parent":"aUS","inputs":{"NUM1":[3,"bRF",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUT","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G_":{"opcode":"procedures_call","next":"bRG","parent":"Y:","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[2,"aUU"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","warp":"true"}},"aUU":{"opcode":"operator_equals","next":null,"parent":"G_","inputs":{"OPERAND1":[3,"bRH",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bRH":{"opcode":"data_itemoflist","next":null,"parent":"aUU","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRG":{"opcode":"control_stop","next":null,"parent":"G_","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aUR":{"opcode":"data_setvariableto","next":"aUV","parent":"Y:","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"aUV":{"opcode":"data_changevariableby","next":"bRI","parent":"aUR","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bRI":{"opcode":"control_stop","next":null,"parent":"aUV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y.":{"opcode":"control_if","next":"Y;","parent":"od","inputs":{"CONDITION":[2,"aUW"],"SUBSTACK":[2,"G`"]},"fields":{},"shadow":false,"topLevel":false},"aUW":{"opcode":"operator_equals","next":null,"parent":"Y.","inputs":{"OPERAND1":[3,"aUX",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"aUX":{"opcode":"operator_mod","next":null,"parent":"aUW","inputs":{"NUM1":[3,"bRJ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aUX","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G`":{"opcode":"procedures_call","next":"bRK","parent":"Y.","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"aUY"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"aUY":{"opcode":"operator_equals","next":null,"parent":"G`","inputs":{"OPERAND1":[3,"bRL",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bRL":{"opcode":"data_itemoflist","next":null,"parent":"aUY","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bRK":{"opcode":"control_stop","next":null,"parent":"G`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y;":{"opcode":"control_if","next":"Y=","parent":"Y.","inputs":{"CONDITION":[2,"aUZ"],"SUBSTACK":[2,"G{"]},"fields":{},"shadow":false,"topLevel":false},"aUZ":{"opcode":"operator_equals","next":null,"parent":"Y;","inputs":{"OPERAND1":[3,"aU!",[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"aU!":{"opcode":"operator_mod","next":null,"parent":"aUZ","inputs":{"NUM1":[3,"bRM",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aU!","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"G{":{"opcode":"procedures_call","next":"bRN","parent":"Y;","inputs":{"58~^|2E$I`?oic[jwf+C":[2,"bRO"]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","warp":"true"}},"bRO":{"opcode":"operator_not","next":null,"parent":"G{","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bRN":{"opcode":"control_stop","next":null,"parent":"G{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y=":{"opcode":"control_if","next":"bRP","parent":"Y;","inputs":{"CONDITION":[2,"aU#"],"SUBSTACK":[2,"aU%"]},"fields":{},"shadow":false,"topLevel":false},"aU#":{"opcode":"operator_equals","next":null,"parent":"Y=","inputs":{"OPERAND1":[3,"aU(",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aU(":{"opcode":"operator_mod","next":null,"parent":"aU#","inputs":{"NUM1":[3,"bRQ",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bRQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aU(","inputs":{},"fields":{"VALUE":["op1",null]},"shadow":false,"topLevel":false},"aU%":{"opcode":"procedures_call","next":"bRR","parent":"Y=","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","warp":"true"}},"bRR":{"opcode":"control_stop","next":null,"parent":"aU%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bRP":{"opcode":"procedures_call","next":null,"parent":"Y=","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"aU)":{"opcode":"procedures_definition","next":"aU*","parent":null,"inputs":{"custom_block":[1,"bRS"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"bRS":{"opcode":"procedures_prototype","next":null,"parent":"aU)","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"initialize","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"aU*":{"opcode":"pen_clear","next":"aU+","parent":"aU)","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aU+":{"opcode":"pen_penUp","next":"aU,","parent":"aU*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aU,":{"opcode":"pen_setPenSizeTo","next":"aU-","parent":"aU+","inputs":{"SIZE":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aU-":{"opcode":"data_setvariableto","next":"G|","parent":"aU,","inputs":{"VALUE":[1,[10,"99"]]},"fields":{"VARIABLE":["8080.mode","m]ROHZvewvW*HDY)ha@)"]},"shadow":false,"topLevel":false},"G|":{"opcode":"looks_switchcostumeto","next":"aU.","parent":"aU-","inputs":{"COSTUME":[1,"bRT"]},"fields":{},"shadow":false,"topLevel":false},"bRT":{"opcode":"looks_costume","next":null,"parent":"G|","inputs":{},"fields":{"COSTUME":["SI",null]},"shadow":true,"topLevel":false},"aU.":{"opcode":"data_deletealloflist","next":"aU/","parent":"G|","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"aU/":{"opcode":"looks_show","next":"aU:","parent":"aU.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aU:":{"opcode":"motion_gotoxy","next":"G}","parent":"aU/","inputs":{"X":[1,[4,"-141"]],"Y":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"G}":{"opcode":"control_repeat","next":"G~","parent":"aU:","inputs":{"TIMES":[1,[6,"2"]],"SUBSTACK":[2,"Ha"]},"fields":{},"shadow":false,"topLevel":false},"Ha":{"opcode":"control_create_clone_of","next":"aU;","parent":"G}","inputs":{"CLONE_OPTION":[1,"bRU"]},"fields":{},"shadow":false,"topLevel":false},"bRU":{"opcode":"control_create_clone_of_menu","next":null,"parent":"Ha","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"aU;":{"opcode":"looks_nextcostume","next":"bRV","parent":"Ha","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bRV":{"opcode":"motion_changeyby","next":null,"parent":"aU;","inputs":{"DY":[1,[4,"-50"]]},"fields":{},"shadow":false,"topLevel":false},"G~":{"opcode":"looks_switchcostumeto","next":"aU=","parent":"G}","inputs":{"COSTUME":[1,"bRW"]},"fields":{},"shadow":false,"topLevel":false},"bRW":{"opcode":"looks_costume","next":null,"parent":"G~","inputs":{},"fields":{"COSTUME":["Manual",null]},"shadow":true,"topLevel":false},"aU=":{"opcode":"event_broadcastandwait","next":"Hb","parent":"G~","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","z5-P7L^,~Tl$WbM;J[:d"]]},"fields":{},"shadow":false,"topLevel":false},"Hb":{"opcode":"control_wait_until","next":"aU?","parent":"aU=","inputs":{"CONDITION":[2,"bRX"]},"fields":{},"shadow":false,"topLevel":false},"bRX":{"opcode":"operator_lt","next":null,"parent":"Hb","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"99"]]},"fields":{},"shadow":false,"topLevel":false},"aU?":{"opcode":"control_stop","next":"aU@","parent":"Hb","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aU@":{"opcode":"event_broadcastandwait","next":"bRY","parent":"aU?","inputs":{"BROADCAST_INPUT":[1,[11,"clonekiller","1amq:*wJaAnoe7q=5[5t"]]},"fields":{},"shadow":false,"topLevel":false},"bRY":{"opcode":"procedures_call","next":null,"parent":"aU@","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"8080.boot","argumentids":"[]","warp":"false"}},"aU[":{"opcode":"procedures_definition","next":"aU]","parent":null,"inputs":{"custom_block":[1,"aU^"]},"fields":{},"shadow":false,"topLevel":true,"x":1245,"y":69},"aU^":{"opcode":"procedures_prototype","next":null,"parent":"aU[","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,"bRZ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","argumentnames":"[\"cycles\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bRZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aU^","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":true,"topLevel":false},"aU]":{"opcode":"data_setvariableto","next":"Hc","parent":"aU[","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"Hc":{"opcode":"control_repeat_until","next":null,"parent":"aU]","inputs":{"CONDITION":[2,"Hd"],"SUBSTACK":[2,"He"]},"fields":{},"shadow":false,"topLevel":false},"Hd":{"opcode":"operator_or","next":null,"parent":"Hc","inputs":{"OPERAND1":[2,"aU_"],"OPERAND2":[2,"aU`"]},"fields":{},"shadow":false,"topLevel":false},"aU_":{"opcode":"operator_equals","next":null,"parent":"Hd","inputs":{"OPERAND1":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[10,""]],"OPERAND2":[3,"bR!",[10,"17066"]]},"fields":{},"shadow":false,"topLevel":false},"bR!":{"opcode":"argument_reporter_string_number","next":null,"parent":"aU_","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"aU`":{"opcode":"operator_lt","next":null,"parent":"Hd","inputs":{"OPERAND1":[3,"bR#",[10,""]],"OPERAND2":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR#":{"opcode":"argument_reporter_string_number","next":null,"parent":"aU`","inputs":{},"fields":{"VALUE":["cycles",null]},"shadow":false,"topLevel":false},"He":{"opcode":"procedures_call","next":"Hf","parent":"Hc","inputs":{"qQ}-I6z8x}.R[rfw~o}T":[3,"aU{",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"opcode %s","argumentids":"[\"qQ}-I6z8x}.R[rfw~o}T\"]","warp":"true"}},"aU{":{"opcode":"data_itemoflist","next":null,"parent":"He","inputs":{"INDEX":[3,"bR%",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bR%":{"opcode":"operator_add","next":null,"parent":"aU{","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Hf":{"opcode":"control_if","next":null,"parent":"He","inputs":{"CONDITION":[2,"bR("],"SUBSTACK":[2,"Y?"]},"fields":{},"shadow":false,"topLevel":false},"bR(":{"opcode":"operator_equals","next":null,"parent":"Hf","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Y?":{"opcode":"control_if","next":"Hg","parent":"Hf","inputs":{"CONDITION":[2,"bR)"],"SUBSTACK":[2,"aU|"]},"fields":{},"shadow":false,"topLevel":false},"bR)":{"opcode":"operator_equals","next":null,"parent":"Y?","inputs":{"OPERAND1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aU|":{"opcode":"control_stop","next":"aU}","parent":"Y?","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"aU}":{"opcode":"data_addtolist","next":"aU~","parent":"aU|","inputs":{"ITEM":[1,[10,"Jump to 0: CP/M reboot"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"aU~":{"opcode":"data_showlist","next":"bR*","parent":"aU}","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bR*":{"opcode":"control_stop","next":null,"parent":"aU~","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Hg":{"opcode":"control_if","next":null,"parent":"Y?","inputs":{"CONDITION":[2,"bR+"],"SUBSTACK":[2,"bR,"]},"fields":{},"shadow":false,"topLevel":false},"bR+":{"opcode":"operator_equals","next":null,"parent":"Hg","inputs":{"OPERAND1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bR,":{"opcode":"event_broadcastandwait","next":null,"parent":"Hg","inputs":{"BROADCAST_INPUT":[1,[11,"CP/M Call","Hl=mTBLxLS*0,~TGH|OS"]]},"fields":{},"shadow":false,"topLevel":false},"aVa":{"opcode":"data_setvariableto","next":"aVb","parent":null,"inputs":{"VALUE":[3,"Hh",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":true,"x":1587,"y":482},"Hh":{"opcode":"operator_join","next":null,"parent":"aVa","inputs":{"STRING1":[3,"aVc",[10,""]],"STRING2":[3,"Hi",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aVc":{"opcode":"operator_letter_of","next":null,"parent":"Hh","inputs":{"LETTER":[3,"aVd",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"aVd":{"opcode":"operator_add","next":null,"parent":"aVc","inputs":{"NUM1":[3,"aVe",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aVe":{"opcode":"operator_mod","next":null,"parent":"aVd","inputs":{"NUM1":[3,"aVf",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVf":{"opcode":"operator_mathop","next":null,"parent":"aVe","inputs":{"NUM":[3,"bR-",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bR-":{"opcode":"operator_divide","next":null,"parent":"aVf","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"Hi":{"opcode":"operator_join","next":null,"parent":"Hh","inputs":{"STRING1":[3,"aVg",[10,""]],"STRING2":[3,"Hj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aVg":{"opcode":"operator_letter_of","next":null,"parent":"Hi","inputs":{"LETTER":[3,"aVh",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"aVh":{"opcode":"operator_add","next":null,"parent":"aVg","inputs":{"NUM1":[3,"aVi",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aVi":{"opcode":"operator_mod","next":null,"parent":"aVh","inputs":{"NUM1":[3,"aVj",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVj":{"opcode":"operator_mathop","next":null,"parent":"aVi","inputs":{"NUM":[3,"bR.",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bR.":{"opcode":"operator_divide","next":null,"parent":"aVj","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Hj":{"opcode":"operator_join","next":null,"parent":"Hi","inputs":{"STRING1":[3,"aVk",[10,""]],"STRING2":[3,"aVl",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aVk":{"opcode":"operator_letter_of","next":null,"parent":"Hj","inputs":{"LETTER":[3,"aVm",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"aVm":{"opcode":"operator_add","next":null,"parent":"aVk","inputs":{"NUM1":[3,"aVn",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aVn":{"opcode":"operator_mod","next":null,"parent":"aVm","inputs":{"NUM1":[3,"aVo",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVo":{"opcode":"operator_mathop","next":null,"parent":"aVn","inputs":{"NUM":[3,"bR/",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bR/":{"opcode":"operator_divide","next":null,"parent":"aVo","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVl":{"opcode":"operator_letter_of","next":null,"parent":"Hj","inputs":{"LETTER":[3,"aVp",[6,"0"]],"STRING":[1,[10,"0123456789ABCDEF"]]},"fields":{},"shadow":false,"topLevel":false},"aVp":{"opcode":"operator_add","next":null,"parent":"aVl","inputs":{"NUM1":[3,"bR:",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bR:":{"opcode":"operator_mod","next":null,"parent":"aVp","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aVb":{"opcode":"data_addtolist","next":null,"parent":"aVa","inputs":{"ITEM":[3,"Hk",[10,""]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"Hk":{"opcode":"operator_join","next":null,"parent":"aVb","inputs":{"STRING1":[3,"aVq",[10,""]],"STRING2":[3,"Hl",[10," "]]},"fields":{},"shadow":false,"topLevel":false},"aVq":{"opcode":"data_itemoflist","next":null,"parent":"Hk","inputs":{"INDEX":[3,"bR;",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bR;":{"opcode":"operator_add","next":null,"parent":"aVq","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Hl":{"opcode":"operator_join","next":null,"parent":"Hk","inputs":{"STRING1":[3,"bR=",[10,""]],"STRING2":[3,"Hm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR=":{"opcode":"operator_join","next":null,"parent":"Hl","inputs":{"STRING1":[1,[10," PC: "]],"STRING2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Hm":{"opcode":"operator_join","next":null,"parent":"Hl","inputs":{"STRING1":[3,"bR?",[10,""]],"STRING2":[3,"aVr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR?":{"opcode":"operator_join","next":null,"parent":"Hm","inputs":{"STRING1":[1,[10," Regs: "]],"STRING2":[3,[13,"_registers","E$.ShehU4wuDtCF}{|rY"],[10," "]]},"fields":{},"shadow":false,"topLevel":false},"aVr":{"opcode":"operator_join","next":null,"parent":"Hm","inputs":{"STRING1":[1,[10," Flags: "]],"STRING2":[3,"aVs",[10," "]]},"fields":{},"shadow":false,"topLevel":false},"aVs":{"opcode":"operator_round","next":null,"parent":"aVr","inputs":{"NUM":[3,"aVt",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aVt":{"opcode":"operator_join","next":null,"parent":"aVs","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"Hn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Hn":{"opcode":"operator_join","next":null,"parent":"aVt","inputs":{"STRING1":[3,"Ho",[10,""]],"STRING2":[3,"Hp",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ho":{"opcode":"operator_join","next":null,"parent":"Hn","inputs":{"STRING1":[3,"Hq",[10,""]],"STRING2":[3,"Hr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Hq":{"opcode":"operator_join","next":null,"parent":"Ho","inputs":{"STRING1":[3,"bR@",[10,""]],"STRING2":[3,"bR[",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR@":{"opcode":"data_itemoflist","next":null,"parent":"Hq","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bR[":{"opcode":"data_itemoflist","next":null,"parent":"Hq","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"Hr":{"opcode":"operator_join","next":null,"parent":"Ho","inputs":{"STRING1":[3,"bR]",[10,""]],"STRING2":[3,"bR^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR]":{"opcode":"data_itemoflist","next":null,"parent":"Hr","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bR^":{"opcode":"data_itemoflist","next":null,"parent":"Hr","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"Hp":{"opcode":"operator_join","next":null,"parent":"Hn","inputs":{"STRING1":[3,"Hs",[10,""]],"STRING2":[3,"Ht",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Hs":{"opcode":"operator_join","next":null,"parent":"Hp","inputs":{"STRING1":[3,"bR_",[10,""]],"STRING2":[3,"bR`",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR_":{"opcode":"data_itemoflist","next":null,"parent":"Hs","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bR`":{"opcode":"data_itemoflist","next":null,"parent":"Hs","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"Ht":{"opcode":"operator_join","next":null,"parent":"Hp","inputs":{"STRING1":[3,"bR{",[10,""]],"STRING2":[3,"bR|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bR{":{"opcode":"data_itemoflist","next":null,"parent":"Ht","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bR|":{"opcode":"data_itemoflist","next":null,"parent":"Ht","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bR}":{"opcode":"event_whenbroadcastreceived","next":"bR~","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","x8INpJ;)l|hiI!g`;GE|"]},"shadow":false,"topLevel":true,"x":1690,"y":21},"bR~":{"opcode":"data_deletealloflist","next":null,"parent":"bR}","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aVu":{"opcode":"procedures_definition","next":"aVv","parent":null,"inputs":{"custom_block":[1,"aVw"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":64},"aVw":{"opcode":"procedures_prototype","next":null,"parent":"aVu","inputs":{"`Jz%)W/g-1ti]Qj1X8tE":[1,"bSa"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI %s","argumentids":"[\"`Jz%)W/g-1ti]Qj1X8tE\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bSa":{"opcode":"argument_reporter_string_number","next":null,"parent":"aVw","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"aVv":{"opcode":"procedures_call","next":"Hu","parent":"aVu","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"Hu":{"opcode":"data_replaceitemoflist","next":"Hv","parent":"aVv","inputs":{"INDEX":[3,"aVx",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aVx":{"opcode":"operator_add","next":null,"parent":"Hu","inputs":{"NUM1":[3,"bSb",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSb":{"opcode":"argument_reporter_string_number","next":null,"parent":"aVx","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"Hv":{"opcode":"procedures_call","next":"Hw","parent":"Hu","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bSc",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bSc":{"opcode":"operator_add","next":null,"parent":"Hv","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Hw":{"opcode":"data_replaceitemoflist","next":"aVy","parent":"Hv","inputs":{"INDEX":[3,"bSd",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bSd":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hw","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aVy":{"opcode":"data_changevariableby","next":"bSe","parent":"Hw","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bSe":{"opcode":"data_changevariableby","next":null,"parent":"aVy","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aVz":{"opcode":"procedures_definition","next":"Hx","parent":null,"inputs":{"custom_block":[1,"bSf"]},"fields":{},"shadow":false,"topLevel":true,"x":13121,"y":320},"bSf":{"opcode":"procedures_prototype","next":null,"parent":"aVz","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.vertical","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"Hx":{"opcode":"control_repeat","next":null,"parent":"aVz","inputs":{"TIMES":[3,"bSg",[6,"10"]],"SUBSTACK":[2,"Hy"]},"fields":{},"shadow":false,"topLevel":false},"bSg":{"opcode":"data_lengthoflist","next":null,"parent":"Hx","inputs":{},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"Hy":{"opcode":"data_setvariableto","next":"aVA","parent":"Hx","inputs":{"VALUE":[3,"bSh",[10,"9216"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bSh":{"opcode":"data_itemoflist","next":null,"parent":"Hy","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"aVA":{"opcode":"data_deleteoflist","next":"Hz","parent":"Hy","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"Hz":{"opcode":"data_replaceitemoflist","next":"HA","parent":"aVA","inputs":{"INDEX":[3,"bSi",[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"bSi":{"opcode":"operator_add","next":null,"parent":"Hz","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HA":{"opcode":"data_setvariableto","next":"HB","parent":"Hz","inputs":{"VALUE":[3,"aVB",[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aVB":{"opcode":"data_itemoflist","next":null,"parent":"HA","inputs":{"INDEX":[3,"bSj",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bSj":{"opcode":"operator_add","next":null,"parent":"aVB","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"9217"]]},"fields":{},"shadow":false,"topLevel":false},"HB":{"opcode":"control_if","next":null,"parent":"HA","inputs":{"CONDITION":[2,"aVC"],"SUBSTACK":[2,"HC"]},"fields":{},"shadow":false,"topLevel":false},"aVC":{"opcode":"operator_not","next":null,"parent":"HB","inputs":{"OPERAND":[2,"aVD"]},"fields":{},"shadow":false,"topLevel":false},"aVD":{"opcode":"operator_equals","next":null,"parent":"aVC","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[3,"aVE",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"aVE":{"opcode":"data_itemoflist","next":null,"parent":"aVD","inputs":{"INDEX":[3,"bSk",[7,"0"]]},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},"bSk":{"opcode":"operator_add","next":null,"parent":"aVE","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HC":{"opcode":"data_replaceitemoflist","next":"Y@","parent":"HB","inputs":{"INDEX":[3,"bSl",[7,"1"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,"0"]]},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},"bSl":{"opcode":"operator_add","next":null,"parent":"HC","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Y@":{"opcode":"motion_gotoxy","next":"HD","parent":"HC","inputs":{"X":[3,"aVF",[4,"94"]],"Y":[3,"aVG",[4,"106"]]},"fields":{},"shadow":false,"topLevel":false},"aVF":{"opcode":"operator_subtract","next":null,"parent":"Y@","inputs":{"NUM1":[3,"aVH",[4,"100"]],"NUM2":[1,[4,"130"]]},"fields":{},"shadow":false,"topLevel":false},"aVH":{"opcode":"operator_mathop","next":null,"parent":"aVF","inputs":{"NUM":[3,"bSm",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bSm":{"opcode":"operator_divide","next":null,"parent":"aVH","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"aVG":{"opcode":"operator_subtract","next":null,"parent":"Y@","inputs":{"NUM1":[3,"aVI",[4,"-150"]],"NUM2":[1,[4,"150"]]},"fields":{},"shadow":false,"topLevel":false},"aVI":{"opcode":"operator_multiply","next":null,"parent":"aVG","inputs":{"NUM1":[3,"bSn",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bSn":{"opcode":"operator_mod","next":null,"parent":"aVI","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"HD":{"opcode":"data_setvariableto","next":"HE","parent":"Y@","inputs":{"VALUE":[3,"aVJ",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aVJ":{"opcode":"data_itemoflist","next":null,"parent":"HD","inputs":{"INDEX":[3,"bSo",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bSo":{"opcode":"operator_add","next":null,"parent":"aVJ","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HE":{"opcode":"pen_setPenColorToColor","next":"aVK","parent":"HD","inputs":{"COLOR":[3,"aVL",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aVL":{"opcode":"data_itemoflist","next":null,"parent":"HE","inputs":{"INDEX":[3,"aVM",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aVM":{"opcode":"operator_add","next":null,"parent":"aVL","inputs":{"NUM1":[3,"bSp",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSp":{"opcode":"operator_letter_of","next":null,"parent":"aVM","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aVK":{"opcode":"pen_penDown","next":"aVN","parent":"HE","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aVN":{"opcode":"motion_changeyby","next":"HF","parent":"aVK","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HF":{"opcode":"pen_setPenColorToColor","next":"aVO","parent":"aVN","inputs":{"COLOR":[3,"aVP",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aVP":{"opcode":"data_itemoflist","next":null,"parent":"HF","inputs":{"INDEX":[3,"aVQ",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aVQ":{"opcode":"operator_add","next":null,"parent":"aVP","inputs":{"NUM1":[3,"bSq",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSq":{"opcode":"operator_letter_of","next":null,"parent":"aVQ","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aVO":{"opcode":"motion_changeyby","next":"HG","parent":"HF","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HG":{"opcode":"pen_setPenColorToColor","next":"aVR","parent":"aVO","inputs":{"COLOR":[3,"aVS",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aVS":{"opcode":"data_itemoflist","next":null,"parent":"HG","inputs":{"INDEX":[3,"aVT",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aVT":{"opcode":"operator_add","next":null,"parent":"aVS","inputs":{"NUM1":[3,"bSr",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSr":{"opcode":"operator_letter_of","next":null,"parent":"aVT","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aVR":{"opcode":"motion_changeyby","next":"HH","parent":"HG","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HH":{"opcode":"pen_setPenColorToColor","next":"aVU","parent":"aVR","inputs":{"COLOR":[3,"aVV",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aVV":{"opcode":"data_itemoflist","next":null,"parent":"HH","inputs":{"INDEX":[3,"aVW",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aVW":{"opcode":"operator_add","next":null,"parent":"aVV","inputs":{"NUM1":[3,"bSs",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSs":{"opcode":"operator_letter_of","next":null,"parent":"aVW","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aVU":{"opcode":"motion_changeyby","next":"HI","parent":"HH","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HI":{"opcode":"pen_setPenColorToColor","next":"aVX","parent":"aVU","inputs":{"COLOR":[3,"aVY",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aVY":{"opcode":"data_itemoflist","next":null,"parent":"HI","inputs":{"INDEX":[3,"aVZ",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aVZ":{"opcode":"operator_add","next":null,"parent":"aVY","inputs":{"NUM1":[3,"bSt",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSt":{"opcode":"operator_letter_of","next":null,"parent":"aVZ","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aVX":{"opcode":"motion_changeyby","next":"HJ","parent":"HI","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HJ":{"opcode":"pen_setPenColorToColor","next":"aV!","parent":"aVX","inputs":{"COLOR":[3,"aV#",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aV#":{"opcode":"data_itemoflist","next":null,"parent":"HJ","inputs":{"INDEX":[3,"aV%",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aV%":{"opcode":"operator_add","next":null,"parent":"aV#","inputs":{"NUM1":[3,"bSu",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSu":{"opcode":"operator_letter_of","next":null,"parent":"aV%","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aV!":{"opcode":"motion_changeyby","next":"HK","parent":"HJ","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HK":{"opcode":"pen_setPenColorToColor","next":"aV(","parent":"aV!","inputs":{"COLOR":[3,"aV)",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aV)":{"opcode":"data_itemoflist","next":null,"parent":"HK","inputs":{"INDEX":[3,"aV*",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aV*":{"opcode":"operator_add","next":null,"parent":"aV)","inputs":{"NUM1":[3,"bSv",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSv":{"opcode":"operator_letter_of","next":null,"parent":"aV*","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aV(":{"opcode":"motion_changeyby","next":"HL","parent":"HK","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HL":{"opcode":"pen_setPenColorToColor","next":"aV+","parent":"aV(","inputs":{"COLOR":[3,"aV,",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"aV,":{"opcode":"data_itemoflist","next":null,"parent":"HL","inputs":{"INDEX":[3,"aV-",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"aV-":{"opcode":"operator_add","next":null,"parent":"aV,","inputs":{"NUM1":[3,"bSw",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSw":{"opcode":"operator_letter_of","next":null,"parent":"aV-","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"aV+":{"opcode":"pen_penDown","next":"bSx","parent":"HL","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bSx":{"opcode":"pen_penUp","next":null,"parent":"aV+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aV.":{"opcode":"procedures_definition","next":"oj","parent":null,"inputs":{"custom_block":[1,"%N"]},"fields":{},"shadow":false,"topLevel":true,"x":3060,"y":1436},"%N":{"opcode":"procedures_prototype","next":null,"parent":"aV.","inputs":{".~B;B3z;6mw4k`-6G7vz":[1,"bSy"],"mawvJqmV!*RQKDRv}H7p":[1,"bSz"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to reg %s","argumentids":"[\".~B;B3z;6mw4k`-6G7vz\",\"mawvJqmV!*RQKDRv}H7p\"]","argumentnames":"[\"origin\",\"destination\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\"]","warp":"true"}},"bSy":{"opcode":"argument_reporter_string_number","next":null,"parent":"%N","inputs":{},"fields":{"VALUE":["origin",null]},"shadow":true,"topLevel":false},"bSz":{"opcode":"argument_reporter_string_number","next":null,"parent":"%N","inputs":{},"fields":{"VALUE":["destination",null]},"shadow":true,"topLevel":false},"oj":{"opcode":"data_replaceitemoflist","next":"bSA","parent":"aV.","inputs":{"INDEX":[3,"aV/",[7,"0"]],"ITEM":[3,"aV:",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aV/":{"opcode":"operator_add","next":null,"parent":"oj","inputs":{"NUM1":[3,"bSB",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSB":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV/","inputs":{},"fields":{"VALUE":["destination",null]},"shadow":false,"topLevel":false},"aV:":{"opcode":"data_itemoflist","next":null,"parent":"oj","inputs":{"INDEX":[3,"aV;",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aV;":{"opcode":"operator_add","next":null,"parent":"aV:","inputs":{"NUM1":[3,"bSC",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSC":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV;","inputs":{},"fields":{"VALUE":["origin",null]},"shadow":false,"topLevel":false},"bSA":{"opcode":"data_changevariableby","next":null,"parent":"oj","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aV=":{"opcode":"procedures_definition","next":"ok","parent":null,"inputs":{"custom_block":[1,"%O"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":1672},"%O":{"opcode":"procedures_prototype","next":null,"parent":"aV=","inputs":{"HO$UTfGk/*71}{qc6sgr":[1,"bSD"],",V2y.8EtZ4qvOo?AVZTV":[1,"bSE"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","argumentnames":"[\"register\",\"pair\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bSD":{"opcode":"argument_reporter_string_number","next":null,"parent":"%O","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"bSE":{"opcode":"argument_reporter_string_number","next":null,"parent":"%O","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":true,"topLevel":false},"ok":{"opcode":"procedures_call","next":"bSF","parent":"aV=","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"%P",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aV?",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"%P":{"opcode":"operator_add","next":null,"parent":"ok","inputs":{"NUM1":[3,"aV@",[4,"0"]],"NUM2":[3,"aV[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV@":{"opcode":"operator_multiply","next":null,"parent":"%P","inputs":{"NUM1":[3,"aV]",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aV]":{"opcode":"data_itemoflist","next":null,"parent":"aV@","inputs":{"INDEX":[3,"bSG",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bSG":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV]","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":false,"topLevel":false},"aV[":{"opcode":"data_itemoflist","next":null,"parent":"%P","inputs":{"INDEX":[3,"aV^",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aV^":{"opcode":"operator_add","next":null,"parent":"aV[","inputs":{"NUM1":[3,"bSH",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV^","inputs":{},"fields":{"VALUE":["pair",null]},"shadow":false,"topLevel":false},"aV?":{"opcode":"data_itemoflist","next":null,"parent":"ok","inputs":{"INDEX":[3,"aV_",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aV_":{"opcode":"operator_add","next":null,"parent":"aV?","inputs":{"NUM1":[3,"bSI",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV_","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bSF":{"opcode":"data_changevariableby","next":null,"parent":"ok","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aV`":{"opcode":"procedures_definition","next":"%Q","parent":null,"inputs":{"custom_block":[1,"aV{"]},"fields":{},"shadow":false,"topLevel":true,"x":2876,"y":1115},"aV{":{"opcode":"procedures_prototype","next":null,"parent":"aV`","inputs":{"]Wzru)MF=*sjN!BHvZ{V":[1,"bSJ"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV RAM to reg %s","argumentids":"[\"]Wzru)MF=*sjN!BHvZ{V\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bSJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV{","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"%Q":{"opcode":"procedures_call","next":"%R","parent":"aV`","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"%S",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"%S":{"opcode":"operator_add","next":null,"parent":"%Q","inputs":{"NUM1":[3,"aV|",[4,"0"]],"NUM2":[3,"bSK",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aV|":{"opcode":"operator_multiply","next":null,"parent":"%S","inputs":{"NUM1":[3,"bSL",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bSL":{"opcode":"data_itemoflist","next":null,"parent":"aV|","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bSK":{"opcode":"data_itemoflist","next":null,"parent":"%S","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"%R":{"opcode":"data_replaceitemoflist","next":"bSM","parent":"%Q","inputs":{"INDEX":[3,"aV}",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aV}":{"opcode":"operator_add","next":null,"parent":"%R","inputs":{"NUM1":[3,"bSN",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bSN":{"opcode":"argument_reporter_string_number","next":null,"parent":"aV}","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bSM":{"opcode":"data_changevariableby","next":null,"parent":"%R","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aV~":{"opcode":"procedures_definition","next":"ol","parent":null,"inputs":{"custom_block":[1,"aWa"]},"fields":{},"shadow":false,"topLevel":true,"x":3299,"y":514},"aWa":{"opcode":"procedures_prototype","next":null,"parent":"aV~","inputs":{":/}9?76_i(ESE2kcL]C}":[1,"bSO"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV %s","argumentids":"[\":/}9?76_i(ESE2kcL]C}\"]","argumentnames":"[\"op\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bSO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWa","inputs":{},"fields":{"VALUE":["op",null]},"shadow":true,"topLevel":false},"ol":{"opcode":"control_if_else","next":null,"parent":"aV~","inputs":{"CONDITION":[2,"aWb"],"SUBSTACK":[2,"aWc"],"SUBSTACK2":[2,"om"]},"fields":{},"shadow":false,"topLevel":false},"aWb":{"opcode":"operator_equals","next":null,"parent":"ol","inputs":{"OPERAND1":[3,"aWd",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aWd":{"opcode":"operator_mod","next":null,"parent":"aWb","inputs":{"NUM1":[3,"bSP",[4,"0xE"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bSP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWd","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aWc":{"opcode":"procedures_call","next":null,"parent":"ol","inputs":{"]Wzru)MF=*sjN!BHvZ{V":[3,"%T",[10,"7"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV RAM to reg %s","argumentids":"[\"]Wzru)MF=*sjN!BHvZ{V\"]","warp":"true"}},"%T":{"opcode":"operator_add","next":null,"parent":"aWc","inputs":{"NUM1":[3,"aWe",[4,""]],"NUM2":[3,"aWf",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aWe":{"opcode":"operator_multiply","next":null,"parent":"%T","inputs":{"NUM1":[3,"aWg",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aWg":{"opcode":"operator_subtract","next":null,"parent":"aWe","inputs":{"NUM1":[3,"aWh",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aWh":{"opcode":"operator_mathop","next":null,"parent":"aWg","inputs":{"NUM":[3,"aWi",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aWi":{"opcode":"operator_divide","next":null,"parent":"aWh","inputs":{"NUM1":[3,"aWj",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWj":{"opcode":"operator_add","next":null,"parent":"aWi","inputs":{"NUM1":[3,"bSQ",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bSQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWj","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aWf":{"opcode":"operator_equals","next":null,"parent":"%T","inputs":{"OPERAND1":[3,"aWk",[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"aWk":{"opcode":"operator_mod","next":null,"parent":"aWf","inputs":{"NUM1":[3,"aWl",[4,"0x7E"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aWl":{"opcode":"operator_add","next":null,"parent":"aWk","inputs":{"NUM1":[3,"bSR",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"bSR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWl","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"om":{"opcode":"control_if_else","next":null,"parent":"ol","inputs":{"CONDITION":[2,"aWm"],"SUBSTACK":[2,"aWn"],"SUBSTACK2":[2,"%U"]},"fields":{},"shadow":false,"topLevel":false},"aWm":{"opcode":"operator_equals","next":null,"parent":"om","inputs":{"OPERAND1":[3,"aWo",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"aWo":{"opcode":"operator_mathop","next":null,"parent":"aWm","inputs":{"NUM":[3,"aWp",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aWp":{"opcode":"operator_divide","next":null,"parent":"aWo","inputs":{"NUM1":[3,"bSS",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bSS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWp","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aWn":{"opcode":"procedures_call","next":null,"parent":"om","inputs":{"HO$UTfGk/*71}{qc6sgr":[3,"aWq",[10,""]],",V2y.8EtZ4qvOo?AVZTV":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to RAM at address in regpair %s","argumentids":"[\"HO$UTfGk/*71}{qc6sgr\",\",V2y.8EtZ4qvOo?AVZTV\"]","warp":"true"}},"aWq":{"opcode":"operator_mod","next":null,"parent":"aWn","inputs":{"NUM1":[3,"bST",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bST":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWq","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"%U":{"opcode":"procedures_call","next":null,"parent":"om","inputs":{".~B;B3z;6mw4k`-6G7vz":[3,"aWr",[10,""]],"mawvJqmV!*RQKDRv}H7p":[3,"aWs",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MOV reg %s to reg %s","argumentids":"[\".~B;B3z;6mw4k`-6G7vz\",\"mawvJqmV!*RQKDRv}H7p\"]","warp":"true"}},"aWr":{"opcode":"operator_mod","next":null,"parent":"%U","inputs":{"NUM1":[3,"bSU",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bSU":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWr","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aWs":{"opcode":"operator_mathop","next":null,"parent":"%U","inputs":{"NUM":[3,"aWt",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aWt":{"opcode":"operator_divide","next":null,"parent":"aWs","inputs":{"NUM1":[3,"bSV",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bSV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWt","inputs":{},"fields":{"VALUE":["op",null]},"shadow":false,"topLevel":false},"aWu":{"opcode":"procedures_definition","next":"aWv","parent":null,"inputs":{"custom_block":[1,"bSW"]},"fields":{},"shadow":false,"topLevel":true,"x":8188,"y":64},"bSW":{"opcode":"procedures_prototype","next":null,"parent":"aWu","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LXI SP","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aWv":{"opcode":"procedures_call","next":"aWw","parent":"aWu","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aWw":{"opcode":"data_setvariableto","next":"aWx","parent":"aWv","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"aWx":{"opcode":"data_changevariableby","next":"bSX","parent":"aWw","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bSX":{"opcode":"data_changevariableby","next":null,"parent":"aWx","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aWy":{"opcode":"procedures_definition","next":"eN","parent":null,"inputs":{"custom_block":[1,"aWz"]},"fields":{},"shadow":false,"topLevel":true,"x":3056,"y":1926},"aWz":{"opcode":"procedures_prototype","next":null,"parent":"aWy","inputs":{"jh8Q_{d;@#?Wf,NuSy#2":[1,"bSY"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"JMP %b","argumentids":"[\"jh8Q_{d;@#?Wf,NuSy#2\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"\",\"false\"]","warp":"true"}},"bSY":{"opcode":"argument_reporter_boolean","next":null,"parent":"aWz","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"eN":{"opcode":"control_if_else","next":"bSZ","parent":"aWy","inputs":{"CONDITION":[2,"bS!"],"SUBSTACK":[2,"aWA"],"SUBSTACK2":[2,"bS#"]},"fields":{},"shadow":false,"topLevel":false},"bS!":{"opcode":"argument_reporter_boolean","next":null,"parent":"eN","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aWA":{"opcode":"procedures_call","next":"bS%","parent":"eN","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bS%":{"opcode":"data_setvariableto","next":null,"parent":"aWA","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bS#":{"opcode":"data_changevariableby","next":null,"parent":"eN","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bSZ":{"opcode":"data_changevariableby","next":null,"parent":"eN","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aWB":{"opcode":"procedures_definition","next":"on","parent":null,"inputs":{"custom_block":[1,"%V"]},"fields":{},"shadow":false,"topLevel":true,"x":12504,"y":2709},"%V":{"opcode":"procedures_prototype","next":null,"parent":"aWB","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[1,"bS("],"vOp?}/Jc:6!H:))h4`(3":[1,"bS)"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","argumentnames":"[\"address\",\"byte\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"bS(":{"opcode":"argument_reporter_string_number","next":null,"parent":"%V","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"bS)":{"opcode":"argument_reporter_string_number","next":null,"parent":"%V","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"on":{"opcode":"control_if_else","next":null,"parent":"aWB","inputs":{"CONDITION":[2,"bS*"],"SUBSTACK":[2,"%W"],"SUBSTACK2":[2,"HM"]},"fields":{},"shadow":false,"topLevel":false},"bS*":{"opcode":"operator_equals","next":null,"parent":"on","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%W":{"opcode":"control_if","next":null,"parent":"on","inputs":{"CONDITION":[2,"HN"],"SUBSTACK":[2,"oo"]},"fields":{},"shadow":false,"topLevel":false},"HN":{"opcode":"operator_and","next":null,"parent":"%W","inputs":{"OPERAND1":[2,"aWC"],"OPERAND2":[2,"aWD"]},"fields":{},"shadow":false,"topLevel":false},"aWC":{"opcode":"operator_lt","next":null,"parent":"HN","inputs":{"OPERAND1":[1,[10,"8191"]],"OPERAND2":[3,"bS+",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bS+":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWC","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"aWD":{"opcode":"operator_lt","next":null,"parent":"HN","inputs":{"OPERAND1":[3,"bS,",[10,""]],"OPERAND2":[1,[10,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"bS,":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWD","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"oo":{"opcode":"control_if","next":"HO","parent":"%W","inputs":{"CONDITION":[2,"aWE"],"SUBSTACK":[2,"HP"]},"fields":{},"shadow":false,"topLevel":false},"aWE":{"opcode":"operator_gt","next":null,"parent":"oo","inputs":{"OPERAND1":[3,"bS-",[10,""]],"OPERAND2":[1,[10,"9215"]]},"fields":{},"shadow":false,"topLevel":false},"bS-":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWE","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"HP":{"opcode":"control_if","next":null,"parent":"oo","inputs":{"CONDITION":[2,"aWF"],"SUBSTACK":[2,"HQ"]},"fields":{},"shadow":false,"topLevel":false},"aWF":{"opcode":"operator_equals","next":null,"parent":"HP","inputs":{"OPERAND1":[3,"aWG",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWG":{"opcode":"data_itemoflist","next":null,"parent":"aWF","inputs":{"INDEX":[3,"aWH",[7,"1"]]},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"aWH":{"opcode":"operator_subtract","next":null,"parent":"aWG","inputs":{"NUM1":[3,"bS.",[4,"0"]],"NUM2":[1,[4,"9215"]]},"fields":{},"shadow":false,"topLevel":false},"bS.":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWH","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"HQ":{"opcode":"data_replaceitemoflist","next":"aWI","parent":"HP","inputs":{"INDEX":[3,"aWJ",[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"aWJ":{"opcode":"operator_subtract","next":null,"parent":"HQ","inputs":{"NUM1":[3,"bS/",[4,"0"]],"NUM2":[1,[4,"9215"]]},"fields":{},"shadow":false,"topLevel":false},"bS/":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWJ","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"aWI":{"opcode":"data_addtolist","next":null,"parent":"HQ","inputs":{"ITEM":[3,"aWK",[10,"thing"]]},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"aWK":{"opcode":"operator_subtract","next":null,"parent":"aWI","inputs":{"NUM1":[3,"bS:",[4,"0"]],"NUM2":[1,[4,"9216"]]},"fields":{},"shadow":false,"topLevel":false},"bS:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWK","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"HO":{"opcode":"data_replaceitemoflist","next":null,"parent":"oo","inputs":{"INDEX":[3,"aWL",[7,"0"]],"ITEM":[3,"bS;",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aWL":{"opcode":"operator_add","next":null,"parent":"HO","inputs":{"NUM1":[3,"bS=",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bS=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWL","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bS;":{"opcode":"argument_reporter_string_number","next":null,"parent":"HO","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"HM":{"opcode":"data_replaceitemoflist","next":null,"parent":"on","inputs":{"INDEX":[3,"aWM",[7,"0"]],"ITEM":[3,"bS?",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aWM":{"opcode":"operator_add","next":null,"parent":"HM","inputs":{"NUM1":[3,"bS@",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bS@":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWM","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bS?":{"opcode":"argument_reporter_string_number","next":null,"parent":"HM","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"aWN":{"opcode":"procedures_definition","next":"HR","parent":null,"inputs":{"custom_block":[1,"bS["]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":64},"bS[":{"opcode":"procedures_prototype","next":null,"parent":"aWN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SPHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"HR":{"opcode":"data_setvariableto","next":"bS]","parent":"aWN","inputs":{"VALUE":[3,"HS",[10,""]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"HS":{"opcode":"operator_add","next":null,"parent":"HR","inputs":{"NUM1":[3,"aWO",[4,"0"]],"NUM2":[3,"bS^",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWO":{"opcode":"operator_multiply","next":null,"parent":"HS","inputs":{"NUM1":[3,"bS_",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bS_":{"opcode":"data_itemoflist","next":null,"parent":"aWO","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bS^":{"opcode":"data_itemoflist","next":null,"parent":"HS","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bS]":{"opcode":"data_changevariableby","next":null,"parent":"HR","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aWP":{"opcode":"procedures_definition","next":"eO","parent":null,"inputs":{"custom_block":[1,"aWQ"]},"fields":{},"shadow":false,"topLevel":true,"x":8254,"y":408},"aWQ":{"opcode":"procedures_prototype","next":null,"parent":"aWP","inputs":{"KAZ4bB(A0V$8rH?xl;x#":[1,"bS`"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADD %s","argumentids":"[\"KAZ4bB(A0V$8rH?xl;x#\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bS`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWQ","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eO":{"opcode":"control_if_else","next":"HT","parent":"aWP","inputs":{"CONDITION":[2,"aWR"],"SUBSTACK":[2,"op"],"SUBSTACK2":[2,"aWS"]},"fields":{},"shadow":false,"topLevel":false},"aWR":{"opcode":"operator_lt","next":null,"parent":"eO","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bS{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bS{":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWR","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"op":{"opcode":"control_if_else","next":null,"parent":"eO","inputs":{"CONDITION":[2,"aWT"],"SUBSTACK":[2,"HU"],"SUBSTACK2":[2,"HV"]},"fields":{},"shadow":false,"topLevel":false},"aWT":{"opcode":"operator_equals","next":null,"parent":"op","inputs":{"OPERAND1":[3,"bS|",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bS|":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWT","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"HU":{"opcode":"procedures_call","next":"bS}","parent":"op","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"HW",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"HW":{"opcode":"operator_add","next":null,"parent":"HU","inputs":{"NUM1":[3,"aWU",[4,"0"]],"NUM2":[3,"bS~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aWU":{"opcode":"operator_multiply","next":null,"parent":"HW","inputs":{"NUM1":[3,"bTa",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bTa":{"opcode":"data_itemoflist","next":null,"parent":"aWU","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bS~":{"opcode":"data_itemoflist","next":null,"parent":"HW","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bS}":{"opcode":"data_changevariableby","next":null,"parent":"HU","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"HV":{"opcode":"data_setvariableto","next":"bTb","parent":"op","inputs":{"VALUE":[3,"aWV",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aWV":{"opcode":"data_itemoflist","next":null,"parent":"HV","inputs":{"INDEX":[3,"aWW",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aWW":{"opcode":"operator_add","next":null,"parent":"aWV","inputs":{"NUM1":[3,"bTc",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bTc":{"opcode":"argument_reporter_string_number","next":null,"parent":"aWW","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bTb":{"opcode":"data_changevariableby","next":null,"parent":"HV","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aWS":{"opcode":"procedures_call","next":"aWX","parent":"eO","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aWX":{"opcode":"data_changevariableby","next":"bTd","parent":"aWS","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bTd":{"opcode":"data_changevariableby","next":null,"parent":"aWX","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"HT":{"opcode":"data_setvariableto","next":"HX","parent":"eO","inputs":{"VALUE":[3,"aWY",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aWY":{"opcode":"operator_add","next":null,"parent":"HT","inputs":{"NUM1":[3,"bTe",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTe":{"opcode":"data_itemoflist","next":null,"parent":"aWY","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"HX":{"opcode":"data_replaceitemoflist","next":"Ny","parent":"HT","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aWZ",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aWZ":{"opcode":"operator_round","next":null,"parent":"HX","inputs":{"NUM":[3,"bTf",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bTf":{"opcode":"operator_gt","next":null,"parent":"aWZ","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"Ny":{"opcode":"procedures_call","next":"Nz","parent":"HX","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aW!",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aW!":{"opcode":"data_itemoflist","next":null,"parent":"Ny","inputs":{"INDEX":[3,"aW#",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aW#":{"opcode":"operator_add","next":null,"parent":"aW!","inputs":{"NUM1":[3,"bTg",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bTg":{"opcode":"operator_mod","next":null,"parent":"aW#","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Nz":{"opcode":"data_replaceitemoflist","next":"NA","parent":"Ny","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aW%",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aW%":{"opcode":"operator_round","next":null,"parent":"Nz","inputs":{"NUM":[3,"aW(",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aW(":{"opcode":"operator_gt","next":null,"parent":"aW%","inputs":{"OPERAND1":[3,"NB",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"NB":{"opcode":"operator_add","next":null,"parent":"aW(","inputs":{"NUM1":[3,"bTh",[4,"0"]],"NUM2":[3,"aW)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTh":{"opcode":"operator_mod","next":null,"parent":"NB","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aW)":{"opcode":"operator_mod","next":null,"parent":"NB","inputs":{"NUM1":[3,"bTi",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bTi":{"opcode":"data_itemoflist","next":null,"parent":"aW)","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"NA":{"opcode":"data_replaceitemoflist","next":"NC","parent":"Nz","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aW*",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aW*":{"opcode":"operator_round","next":null,"parent":"NA","inputs":{"NUM":[3,"aW+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aW+":{"opcode":"operator_equals","next":null,"parent":"aW*","inputs":{"OPERAND1":[3,"bTj",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTj":{"opcode":"operator_mod","next":null,"parent":"aW+","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"NC":{"opcode":"data_replaceitemoflist","next":"aW,","parent":"NA","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aW-",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aW-":{"opcode":"operator_round","next":null,"parent":"NC","inputs":{"NUM":[3,"aW.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aW.":{"opcode":"operator_gt","next":null,"parent":"aW-","inputs":{"OPERAND1":[3,"bTk",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bTk":{"opcode":"operator_mod","next":null,"parent":"aW.","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aW,":{"opcode":"data_replaceitemoflist","next":null,"parent":"NC","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bTl",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTl":{"opcode":"operator_mod","next":null,"parent":"aW,","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aW/":{"opcode":"procedures_definition","next":"eP","parent":null,"inputs":{"custom_block":[1,"aW:"]},"fields":{},"shadow":false,"topLevel":true,"x":10327,"y":131},"aW:":{"opcode":"procedures_prototype","next":null,"parent":"aW/","inputs":{"g~W%j(pxt{obs8]2L|in":[1,"bTm"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ADC %s","argumentids":"[\"g~W%j(pxt{obs8]2L|in\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bTm":{"opcode":"argument_reporter_string_number","next":null,"parent":"aW:","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eP":{"opcode":"control_if_else","next":"ND","parent":"aW/","inputs":{"CONDITION":[2,"aW;"],"SUBSTACK":[2,"oq"],"SUBSTACK2":[2,"aW="]},"fields":{},"shadow":false,"topLevel":false},"aW;":{"opcode":"operator_lt","next":null,"parent":"eP","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bTn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bTn":{"opcode":"argument_reporter_string_number","next":null,"parent":"aW;","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"oq":{"opcode":"control_if_else","next":null,"parent":"eP","inputs":{"CONDITION":[2,"aW?"],"SUBSTACK":[2,"NE"],"SUBSTACK2":[2,"NF"]},"fields":{},"shadow":false,"topLevel":false},"aW?":{"opcode":"operator_equals","next":null,"parent":"oq","inputs":{"OPERAND1":[3,"bTo",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bTo":{"opcode":"argument_reporter_string_number","next":null,"parent":"aW?","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"NE":{"opcode":"procedures_call","next":"bTp","parent":"oq","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"NG",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"NG":{"opcode":"operator_add","next":null,"parent":"NE","inputs":{"NUM1":[3,"aW@",[4,"0"]],"NUM2":[3,"bTq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aW@":{"opcode":"operator_multiply","next":null,"parent":"NG","inputs":{"NUM1":[3,"bTr",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bTr":{"opcode":"data_itemoflist","next":null,"parent":"aW@","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTq":{"opcode":"data_itemoflist","next":null,"parent":"NG","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTp":{"opcode":"data_changevariableby","next":null,"parent":"NE","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"NF":{"opcode":"data_setvariableto","next":"bTs","parent":"oq","inputs":{"VALUE":[3,"aW[",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aW[":{"opcode":"data_itemoflist","next":null,"parent":"NF","inputs":{"INDEX":[3,"aW]",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aW]":{"opcode":"operator_add","next":null,"parent":"aW[","inputs":{"NUM1":[3,"bTt",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bTt":{"opcode":"argument_reporter_string_number","next":null,"parent":"aW]","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bTs":{"opcode":"data_changevariableby","next":null,"parent":"NF","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aW=":{"opcode":"procedures_call","next":"aW^","parent":"eP","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aW^":{"opcode":"data_changevariableby","next":"bTu","parent":"aW=","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bTu":{"opcode":"data_changevariableby","next":null,"parent":"aW^","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"ND":{"opcode":"data_setvariableto","next":"NH","parent":"eP","inputs":{"VALUE":[3,"HY",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"HY":{"opcode":"operator_add","next":null,"parent":"ND","inputs":{"NUM1":[3,"bTv",[4,"0"]],"NUM2":[3,"aW_",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTv":{"opcode":"data_itemoflist","next":null,"parent":"HY","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aW_":{"opcode":"operator_add","next":null,"parent":"HY","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bTw",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTw":{"opcode":"data_itemoflist","next":null,"parent":"aW_","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"NH":{"opcode":"data_replaceitemoflist","next":"HZ","parent":"ND","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aW`",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aW`":{"opcode":"operator_round","next":null,"parent":"NH","inputs":{"NUM":[3,"bTx",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bTx":{"opcode":"operator_gt","next":null,"parent":"aW`","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"HZ":{"opcode":"procedures_call","next":"H!","parent":"NH","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aW{",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aW{":{"opcode":"data_itemoflist","next":null,"parent":"HZ","inputs":{"INDEX":[3,"aW|",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aW|":{"opcode":"operator_add","next":null,"parent":"aW{","inputs":{"NUM1":[3,"bTy",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bTy":{"opcode":"operator_mod","next":null,"parent":"aW|","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"H!":{"opcode":"data_replaceitemoflist","next":"H#","parent":"HZ","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aW}",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aW}":{"opcode":"operator_round","next":null,"parent":"H!","inputs":{"NUM":[3,"aW~",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aW~":{"opcode":"operator_gt","next":null,"parent":"aW}","inputs":{"OPERAND1":[3,"H%",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"H%":{"opcode":"operator_add","next":null,"parent":"aW~","inputs":{"NUM1":[3,"aXa",[4,"0"]],"NUM2":[3,"aXb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aXa":{"opcode":"operator_mod","next":null,"parent":"H%","inputs":{"NUM1":[3,"bTz",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bTz":{"opcode":"data_itemoflist","next":null,"parent":"aXa","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aXb":{"opcode":"operator_mod","next":null,"parent":"H%","inputs":{"NUM1":[3,"aXc",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aXc":{"opcode":"operator_add","next":null,"parent":"aXb","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bTA",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTA":{"opcode":"data_itemoflist","next":null,"parent":"aXc","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"H#":{"opcode":"data_replaceitemoflist","next":"H(","parent":"H!","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aXd",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXd":{"opcode":"operator_round","next":null,"parent":"H#","inputs":{"NUM":[3,"aXe",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXe":{"opcode":"operator_equals","next":null,"parent":"aXd","inputs":{"OPERAND1":[3,"bTB",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bTB":{"opcode":"operator_mod","next":null,"parent":"aXe","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"H(":{"opcode":"data_replaceitemoflist","next":"aXf","parent":"H#","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aXg",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXg":{"opcode":"operator_round","next":null,"parent":"H(","inputs":{"NUM":[3,"aXh",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXh":{"opcode":"operator_gt","next":null,"parent":"aXg","inputs":{"OPERAND1":[3,"bTC",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bTC":{"opcode":"operator_mod","next":null,"parent":"aXh","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXf":{"opcode":"data_replaceitemoflist","next":null,"parent":"H(","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bTD",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTD":{"opcode":"operator_mod","next":null,"parent":"aXf","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXi":{"opcode":"procedures_definition","next":"or","parent":null,"inputs":{"custom_block":[1,"H)"]},"fields":{},"shadow":false,"topLevel":true,"x":13321,"y":2696},"H)":{"opcode":"procedures_prototype","next":null,"parent":"aXi","inputs":{"mDrFT4#uiurg4Fi]*G%T":[1,"bTE"],"!#ctWtPPjI+B?Uc*1(`?":[1,"bTF"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","argumentnames":"[\"address\",\"extrabytes\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bTE":{"opcode":"argument_reporter_string_number","next":null,"parent":"H)","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"bTF":{"opcode":"argument_reporter_string_number","next":null,"parent":"H)","inputs":{},"fields":{"VALUE":["extrabytes",null]},"shadow":true,"topLevel":false},"or":{"opcode":"control_if_else","next":null,"parent":"aXi","inputs":{"CONDITION":[2,"H*"],"SUBSTACK":[2,"H+"],"SUBSTACK2":[2,"H,"]},"fields":{},"shadow":false,"topLevel":false},"H*":{"opcode":"operator_and","next":null,"parent":"or","inputs":{"OPERAND1":[2,"aXj"],"OPERAND2":[2,"bTG"]},"fields":{},"shadow":false,"topLevel":false},"aXj":{"opcode":"operator_lt","next":null,"parent":"H*","inputs":{"OPERAND1":[1,[10,"16383"]],"OPERAND2":[3,"bTH",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bTH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXj","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bTG":{"opcode":"operator_equals","next":null,"parent":"H*","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"H+":{"opcode":"data_setvariableto","next":"H-","parent":"or","inputs":{"VALUE":[3,"aXk",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aXk":{"opcode":"data_itemoflist","next":null,"parent":"H+","inputs":{"INDEX":[3,"aXl",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aXl":{"opcode":"operator_subtract","next":null,"parent":"aXk","inputs":{"NUM1":[3,"bTI",[4,""]],"NUM2":[1,[4,"8191"]]},"fields":{},"shadow":false,"topLevel":false},"bTI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXl","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"H-":{"opcode":"control_if","next":null,"parent":"H+","inputs":{"CONDITION":[2,"aXm"],"SUBSTACK":[2,"aXn"]},"fields":{},"shadow":false,"topLevel":false},"aXm":{"opcode":"operator_equals","next":null,"parent":"H-","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"bTJ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bTJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXm","inputs":{},"fields":{"VALUE":["extrabytes",null]},"shadow":false,"topLevel":false},"aXn":{"opcode":"data_changevariableby","next":null,"parent":"H-","inputs":{"VALUE":[3,"aXo",[4,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aXo":{"opcode":"operator_multiply","next":null,"parent":"aXn","inputs":{"NUM1":[3,"aXp",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXp":{"opcode":"data_itemoflist","next":null,"parent":"aXo","inputs":{"INDEX":[3,"aXq",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aXq":{"opcode":"operator_subtract","next":null,"parent":"aXp","inputs":{"NUM1":[3,"bTK",[4,""]],"NUM2":[1,[4,"8190"]]},"fields":{},"shadow":false,"topLevel":false},"bTK":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXq","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"H,":{"opcode":"data_setvariableto","next":"H.","parent":"or","inputs":{"VALUE":[3,"aXr",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aXr":{"opcode":"data_itemoflist","next":null,"parent":"H,","inputs":{"INDEX":[3,"aXs",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aXs":{"opcode":"operator_add","next":null,"parent":"aXr","inputs":{"NUM1":[3,"aXt",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aXt":{"opcode":"operator_mod","next":null,"parent":"aXs","inputs":{"NUM1":[3,"bTL",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bTL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXt","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"H.":{"opcode":"control_if","next":null,"parent":"H,","inputs":{"CONDITION":[2,"aXu"],"SUBSTACK":[2,"aXv"]},"fields":{},"shadow":false,"topLevel":false},"aXu":{"opcode":"operator_equals","next":null,"parent":"H.","inputs":{"OPERAND1":[1,[10,"1"]],"OPERAND2":[3,"bTM",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bTM":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXu","inputs":{},"fields":{"VALUE":["extrabytes",null]},"shadow":false,"topLevel":false},"aXv":{"opcode":"data_changevariableby","next":null,"parent":"H.","inputs":{"VALUE":[3,"aXw",[4,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aXw":{"opcode":"operator_multiply","next":null,"parent":"aXv","inputs":{"NUM1":[3,"aXx",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXx":{"opcode":"data_itemoflist","next":null,"parent":"aXw","inputs":{"INDEX":[3,"aXy",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"aXy":{"opcode":"operator_add","next":null,"parent":"aXx","inputs":{"NUM1":[3,"aXz",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aXz":{"opcode":"operator_mod","next":null,"parent":"aXy","inputs":{"NUM1":[3,"bTN",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"bTN":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXz","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"aXA":{"opcode":"procedures_definition","next":"eQ","parent":null,"inputs":{"custom_block":[1,"aXB"]},"fields":{},"shadow":false,"topLevel":true,"x":9618,"y":338},"aXB":{"opcode":"procedures_prototype","next":null,"parent":"aXA","inputs":{"69W4N%[To:QDj1jXCPU7":[1,"bTO"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SUB %s","argumentids":"[\"69W4N%[To:QDj1jXCPU7\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bTO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXB","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eQ":{"opcode":"control_if_else","next":"H/","parent":"aXA","inputs":{"CONDITION":[2,"aXC"],"SUBSTACK":[2,"os"],"SUBSTACK2":[2,"aXD"]},"fields":{},"shadow":false,"topLevel":false},"aXC":{"opcode":"operator_lt","next":null,"parent":"eQ","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bTP",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bTP":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXC","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"os":{"opcode":"control_if_else","next":null,"parent":"eQ","inputs":{"CONDITION":[2,"aXE"],"SUBSTACK":[2,"H:"],"SUBSTACK2":[2,"H;"]},"fields":{},"shadow":false,"topLevel":false},"aXE":{"opcode":"operator_equals","next":null,"parent":"os","inputs":{"OPERAND1":[3,"bTQ",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bTQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXE","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"H:":{"opcode":"procedures_call","next":"bTR","parent":"os","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"H=",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"H=":{"opcode":"operator_add","next":null,"parent":"H:","inputs":{"NUM1":[3,"aXF",[4,"0"]],"NUM2":[3,"bTS",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aXF":{"opcode":"operator_multiply","next":null,"parent":"H=","inputs":{"NUM1":[3,"bTT",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bTT":{"opcode":"data_itemoflist","next":null,"parent":"aXF","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTS":{"opcode":"data_itemoflist","next":null,"parent":"H=","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bTR":{"opcode":"data_changevariableby","next":null,"parent":"H:","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"H;":{"opcode":"data_setvariableto","next":"bTU","parent":"os","inputs":{"VALUE":[3,"aXG",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aXG":{"opcode":"data_itemoflist","next":null,"parent":"H;","inputs":{"INDEX":[3,"aXH",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aXH":{"opcode":"operator_add","next":null,"parent":"aXG","inputs":{"NUM1":[3,"bTV",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bTV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aXH","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bTU":{"opcode":"data_changevariableby","next":null,"parent":"H;","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aXD":{"opcode":"procedures_call","next":"aXI","parent":"eQ","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aXI":{"opcode":"data_changevariableby","next":"bTW","parent":"aXD","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bTW":{"opcode":"data_changevariableby","next":null,"parent":"aXI","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"H/":{"opcode":"data_setvariableto","next":"H?","parent":"eQ","inputs":{"VALUE":[3,"bTX",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"bTX":{"opcode":"operator_subtract","next":null,"parent":"H/","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"H?":{"opcode":"data_setvariableto","next":"H@","parent":"H/","inputs":{"VALUE":[3,"aXJ",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aXJ":{"opcode":"operator_add","next":null,"parent":"H?","inputs":{"NUM1":[3,"bTY",[4,""]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bTY":{"opcode":"data_itemoflist","next":null,"parent":"aXJ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"H@":{"opcode":"data_replaceitemoflist","next":"H[","parent":"H?","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aXK",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXK":{"opcode":"operator_round","next":null,"parent":"H@","inputs":{"NUM":[3,"bTZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bTZ":{"opcode":"operator_gt","next":null,"parent":"aXK","inputs":{"OPERAND1":[1,[10,"256"]],"OPERAND2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"H[":{"opcode":"procedures_call","next":"%X","parent":"H@","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aXL",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aXL":{"opcode":"data_itemoflist","next":null,"parent":"H[","inputs":{"INDEX":[3,"aXM",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aXM":{"opcode":"operator_add","next":null,"parent":"aXL","inputs":{"NUM1":[3,"bT!",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bT!":{"opcode":"operator_mod","next":null,"parent":"aXM","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%X":{"opcode":"data_replaceitemoflist","next":"%Y","parent":"H[","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aXN",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXN":{"opcode":"operator_round","next":null,"parent":"%X","inputs":{"NUM":[3,"aXO",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXO":{"opcode":"operator_gt","next":null,"parent":"aXN","inputs":{"OPERAND1":[3,"%Z",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"%Z":{"opcode":"operator_add","next":null,"parent":"aXO","inputs":{"NUM1":[3,"aXP",[4,"0"]],"NUM2":[3,"bT#",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aXP":{"opcode":"operator_mod","next":null,"parent":"%Z","inputs":{"NUM1":[3,"bT%",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bT%":{"opcode":"data_itemoflist","next":null,"parent":"aXP","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT#":{"opcode":"operator_mod","next":null,"parent":"%Z","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"%Y":{"opcode":"data_replaceitemoflist","next":"%!","parent":"%X","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aXQ",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXQ":{"opcode":"operator_round","next":null,"parent":"%Y","inputs":{"NUM":[3,"aXR",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXR":{"opcode":"operator_equals","next":null,"parent":"aXQ","inputs":{"OPERAND1":[3,"bT(",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bT(":{"opcode":"operator_mod","next":null,"parent":"aXR","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%!":{"opcode":"data_replaceitemoflist","next":"aXS","parent":"%Y","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aXT",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aXT":{"opcode":"operator_round","next":null,"parent":"%!","inputs":{"NUM":[3,"aXU",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXU":{"opcode":"operator_gt","next":null,"parent":"aXT","inputs":{"OPERAND1":[3,"bT)",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bT)":{"opcode":"operator_mod","next":null,"parent":"aXU","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXS":{"opcode":"data_replaceitemoflist","next":null,"parent":"%!","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bT*",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT*":{"opcode":"operator_mod","next":null,"parent":"aXS","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aXV":{"opcode":"data_replaceitemoflist","next":"H]","parent":null,"inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aXW",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":true,"x":8701,"y":164},"aXW":{"opcode":"operator_round","next":null,"parent":"aXV","inputs":{"NUM":[3,"aXX",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXX":{"opcode":"operator_gt","next":null,"parent":"aXW","inputs":{"OPERAND1":[3,"aXY",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aXY":{"opcode":"operator_mod","next":null,"parent":"aXX","inputs":{"NUM1":[3,"H^",[4,""]],"NUM2":[1,[4,"17"]]},"fields":{},"shadow":false,"topLevel":false},"H^":{"opcode":"operator_add","next":null,"parent":"aXY","inputs":{"NUM1":[3,"aXZ",[4,""]],"NUM2":[3,"bT+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aXZ":{"opcode":"operator_mod","next":null,"parent":"H^","inputs":{"NUM1":[3,"bT,",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bT,":{"opcode":"data_itemoflist","next":null,"parent":"aXZ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT+":{"opcode":"operator_mod","next":null,"parent":"H^","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"H]":{"opcode":"data_replaceitemoflist","next":"H_","parent":"aXV","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aX!",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aX!":{"opcode":"operator_round","next":null,"parent":"H]","inputs":{"NUM":[3,"aX#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aX#":{"opcode":"operator_equals","next":null,"parent":"aX!","inputs":{"OPERAND1":[3,"bT-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bT-":{"opcode":"operator_mod","next":null,"parent":"aX#","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"H_":{"opcode":"data_replaceitemoflist","next":"aX%","parent":"H]","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aX(",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aX(":{"opcode":"operator_round","next":null,"parent":"H_","inputs":{"NUM":[3,"aX)",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aX)":{"opcode":"operator_gt","next":null,"parent":"aX(","inputs":{"OPERAND1":[3,"bT.",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bT.":{"opcode":"operator_mod","next":null,"parent":"aX)","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aX%":{"opcode":"data_replaceitemoflist","next":null,"parent":"H_","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bT/",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT/":{"opcode":"operator_mod","next":null,"parent":"aX%","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aX*":{"opcode":"procedures_definition","next":"eR","parent":null,"inputs":{"custom_block":[1,"aX+"]},"fields":{},"shadow":false,"topLevel":true,"x":10262,"y":1452},"aX+":{"opcode":"procedures_prototype","next":null,"parent":"aX*","inputs":{"R2;pFT-x31=s{}dTh^dR":[1,"bT:"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SBB %s","argumentids":"[\"R2;pFT-x31=s{}dTh^dR\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bT:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aX+","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eR":{"opcode":"control_if_else","next":"H`","parent":"aX*","inputs":{"CONDITION":[2,"aX,"],"SUBSTACK":[2,"ot"],"SUBSTACK2":[2,"aX-"]},"fields":{},"shadow":false,"topLevel":false},"aX,":{"opcode":"operator_lt","next":null,"parent":"eR","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bT;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bT;":{"opcode":"argument_reporter_string_number","next":null,"parent":"aX,","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ot":{"opcode":"control_if_else","next":null,"parent":"eR","inputs":{"CONDITION":[2,"aX."],"SUBSTACK":[2,"H{"],"SUBSTACK2":[2,"H|"]},"fields":{},"shadow":false,"topLevel":false},"aX.":{"opcode":"operator_equals","next":null,"parent":"ot","inputs":{"OPERAND1":[3,"bT=",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bT=":{"opcode":"argument_reporter_string_number","next":null,"parent":"aX.","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"H{":{"opcode":"procedures_call","next":"bT?","parent":"ot","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"H}",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"H}":{"opcode":"operator_add","next":null,"parent":"H{","inputs":{"NUM1":[3,"aX/",[4,"0"]],"NUM2":[3,"bT@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX/":{"opcode":"operator_multiply","next":null,"parent":"H}","inputs":{"NUM1":[3,"bT[",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bT[":{"opcode":"data_itemoflist","next":null,"parent":"aX/","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT@":{"opcode":"data_itemoflist","next":null,"parent":"H}","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bT?":{"opcode":"data_changevariableby","next":null,"parent":"H{","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"H|":{"opcode":"data_setvariableto","next":"bT]","parent":"ot","inputs":{"VALUE":[3,"aX:",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aX:":{"opcode":"data_itemoflist","next":null,"parent":"H|","inputs":{"INDEX":[3,"aX;",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aX;":{"opcode":"operator_add","next":null,"parent":"aX:","inputs":{"NUM1":[3,"bT^",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bT^":{"opcode":"argument_reporter_string_number","next":null,"parent":"aX;","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bT]":{"opcode":"data_changevariableby","next":null,"parent":"H|","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aX-":{"opcode":"procedures_call","next":"aX=","parent":"eR","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aX=":{"opcode":"data_changevariableby","next":"bT_","parent":"aX-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bT_":{"opcode":"data_changevariableby","next":null,"parent":"aX=","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"H`":{"opcode":"data_setvariableto","next":"H~","parent":"eR","inputs":{"VALUE":[3,"Ia",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"Ia":{"opcode":"operator_add","next":null,"parent":"H`","inputs":{"NUM1":[3,"bT`",[4,""]],"NUM2":[3,"aX?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bT`":{"opcode":"data_itemoflist","next":null,"parent":"Ia","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aX?":{"opcode":"operator_subtract","next":null,"parent":"Ia","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"aX@",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aX@":{"opcode":"operator_add","next":null,"parent":"aX?","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bT{",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bT{":{"opcode":"data_itemoflist","next":null,"parent":"aX@","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"H~":{"opcode":"data_replaceitemoflist","next":"Ib","parent":"H`","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aX[",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aX[":{"opcode":"operator_round","next":null,"parent":"H~","inputs":{"NUM":[3,"bT|",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bT|":{"opcode":"operator_gt","next":null,"parent":"aX[","inputs":{"OPERAND1":[1,[10,"256"]],"OPERAND2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ib":{"opcode":"procedures_call","next":"%#","parent":"H~","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aX]",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aX]":{"opcode":"data_itemoflist","next":null,"parent":"Ib","inputs":{"INDEX":[3,"aX^",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aX^":{"opcode":"operator_add","next":null,"parent":"aX]","inputs":{"NUM1":[3,"bT}",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bT}":{"opcode":"operator_mod","next":null,"parent":"aX^","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%#":{"opcode":"data_replaceitemoflist","next":"%%","parent":"Ib","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aX_",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aX_":{"opcode":"operator_round","next":null,"parent":"%#","inputs":{"NUM":[3,"aX`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aX`":{"opcode":"operator_gt","next":null,"parent":"aX_","inputs":{"OPERAND1":[3,"%(",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"%(":{"opcode":"operator_add","next":null,"parent":"aX`","inputs":{"NUM1":[3,"aX{",[4,"0"]],"NUM2":[3,"aX|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aX{":{"opcode":"operator_mod","next":null,"parent":"%(","inputs":{"NUM1":[3,"bT~",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bT~":{"opcode":"data_itemoflist","next":null,"parent":"aX{","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aX|":{"opcode":"operator_mod","next":null,"parent":"%(","inputs":{"NUM1":[3,"aX}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aX}":{"opcode":"operator_subtract","next":null,"parent":"aX|","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,"aX~",[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"aX~":{"opcode":"operator_add","next":null,"parent":"aX}","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bUa",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bUa":{"opcode":"data_itemoflist","next":null,"parent":"aX~","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"%%":{"opcode":"data_replaceitemoflist","next":"%)","parent":"%#","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aYa",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYa":{"opcode":"operator_round","next":null,"parent":"%%","inputs":{"NUM":[3,"aYb",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aYb":{"opcode":"operator_equals","next":null,"parent":"aYa","inputs":{"OPERAND1":[3,"bUb",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bUb":{"opcode":"operator_mod","next":null,"parent":"aYb","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"%)":{"opcode":"data_replaceitemoflist","next":"aYc","parent":"%%","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aYd",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYd":{"opcode":"operator_round","next":null,"parent":"%)","inputs":{"NUM":[3,"aYe",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aYe":{"opcode":"operator_gt","next":null,"parent":"aYd","inputs":{"OPERAND1":[3,"bUc",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bUc":{"opcode":"operator_mod","next":null,"parent":"aYe","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aYc":{"opcode":"data_replaceitemoflist","next":null,"parent":"%)","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bUd",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUd":{"opcode":"operator_mod","next":null,"parent":"aYc","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aYf":{"opcode":"procedures_definition","next":"eS","parent":null,"inputs":{"custom_block":[1,"aYg"]},"fields":{},"shadow":false,"topLevel":true,"x":11407,"y":12},"aYg":{"opcode":"procedures_prototype","next":null,"parent":"aYf","inputs":{"tJg(AuZ1`$fW}M#S5QC0":[1,"bUe"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ANA %s","argumentids":"[\"tJg(AuZ1`$fW}M#S5QC0\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bUe":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYg","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eS":{"opcode":"control_if_else","next":"%*","parent":"aYf","inputs":{"CONDITION":[2,"aYh"],"SUBSTACK":[2,"ou"],"SUBSTACK2":[2,"aYi"]},"fields":{},"shadow":false,"topLevel":false},"aYh":{"opcode":"operator_lt","next":null,"parent":"eS","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bUf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bUf":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYh","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ou":{"opcode":"control_if_else","next":null,"parent":"eS","inputs":{"CONDITION":[2,"aYj"],"SUBSTACK":[2,"%+"],"SUBSTACK2":[2,"%,"]},"fields":{},"shadow":false,"topLevel":false},"aYj":{"opcode":"operator_equals","next":null,"parent":"ou","inputs":{"OPERAND1":[3,"bUg",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bUg":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYj","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"%+":{"opcode":"procedures_call","next":"bUh","parent":"ou","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"%-",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"%-":{"opcode":"operator_add","next":null,"parent":"%+","inputs":{"NUM1":[3,"aYk",[4,"0"]],"NUM2":[3,"bUi",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYk":{"opcode":"operator_multiply","next":null,"parent":"%-","inputs":{"NUM1":[3,"bUj",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUj":{"opcode":"data_itemoflist","next":null,"parent":"aYk","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUi":{"opcode":"data_itemoflist","next":null,"parent":"%-","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUh":{"opcode":"data_changevariableby","next":null,"parent":"%+","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%,":{"opcode":"data_setvariableto","next":"bUk","parent":"ou","inputs":{"VALUE":[3,"aYl",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aYl":{"opcode":"data_itemoflist","next":null,"parent":"%,","inputs":{"INDEX":[3,"aYm",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYm":{"opcode":"operator_add","next":null,"parent":"aYl","inputs":{"NUM1":[3,"bUl",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bUl":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYm","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bUk":{"opcode":"data_changevariableby","next":null,"parent":"%,","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aYi":{"opcode":"procedures_call","next":"aYn","parent":"eS","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aYn":{"opcode":"data_changevariableby","next":"bUm","parent":"aYi","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bUm":{"opcode":"data_changevariableby","next":null,"parent":"aYn","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%*":{"opcode":"data_setvariableto","next":"aYo","parent":"eS","inputs":{"VALUE":[3,"aYp",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aYp":{"opcode":"data_itemoflist","next":null,"parent":"%*","inputs":{"INDEX":[3,"aYq",[7,"0"]]},"fields":{"LIST":["and_table","u{Z6Yo:g|j(7O+@6yd=b"]},"shadow":false,"topLevel":false},"aYq":{"opcode":"operator_add","next":null,"parent":"aYp","inputs":{"NUM1":[3,"aYr",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYr":{"opcode":"operator_add","next":null,"parent":"aYq","inputs":{"NUM1":[3,"aYs",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYs":{"opcode":"operator_multiply","next":null,"parent":"aYr","inputs":{"NUM1":[3,"bUn",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUn":{"opcode":"data_itemoflist","next":null,"parent":"aYs","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYo":{"opcode":"data_replaceitemoflist","next":"%.","parent":"%*","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"%.":{"opcode":"procedures_call","next":"%/","parent":"aYo","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aYt",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aYt":{"opcode":"data_itemoflist","next":null,"parent":"%.","inputs":{"INDEX":[3,"bUo",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bUo":{"opcode":"operator_add","next":null,"parent":"aYt","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%/":{"opcode":"data_replaceitemoflist","next":"%:","parent":"%.","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aYu",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYu":{"opcode":"operator_round","next":null,"parent":"%/","inputs":{"NUM":[3,"aYv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aYv":{"opcode":"operator_gt","next":null,"parent":"aYu","inputs":{"OPERAND1":[3,"aYw",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYw":{"opcode":"operator_mod","next":null,"parent":"aYv","inputs":{"NUM1":[3,"aYx",[4,""]],"NUM2":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"aYx":{"opcode":"data_itemoflist","next":null,"parent":"aYw","inputs":{"INDEX":[3,"aYy",[7,"0"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aYy":{"opcode":"operator_add","next":null,"parent":"aYx","inputs":{"NUM1":[3,"aYz",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYz":{"opcode":"operator_add","next":null,"parent":"aYy","inputs":{"NUM1":[3,"aYA",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aYA":{"opcode":"operator_multiply","next":null,"parent":"aYz","inputs":{"NUM1":[3,"bUp",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUp":{"opcode":"data_itemoflist","next":null,"parent":"aYA","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"%:":{"opcode":"data_replaceitemoflist","next":"%;","parent":"%/","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aYB",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYB":{"opcode":"operator_round","next":null,"parent":"%:","inputs":{"NUM":[3,"bUq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUq":{"opcode":"operator_equals","next":null,"parent":"aYB","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%;":{"opcode":"data_replaceitemoflist","next":"bUr","parent":"%:","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aYC",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYC":{"opcode":"operator_round","next":null,"parent":"%;","inputs":{"NUM":[3,"bUs",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUs":{"opcode":"operator_gt","next":null,"parent":"aYC","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bUr":{"opcode":"data_replaceitemoflist","next":null,"parent":"%;","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYD":{"opcode":"procedures_definition","next":"eT","parent":null,"inputs":{"custom_block":[1,"aYE"]},"fields":{},"shadow":false,"topLevel":true,"x":11529,"y":1200},"aYE":{"opcode":"procedures_prototype","next":null,"parent":"aYD","inputs":{"t}uDb?K/qpdRG{z:HKi0":[1,"bUt"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XRA %s","argumentids":"[\"t}uDb?K/qpdRG{z:HKi0\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bUt":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYE","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eT":{"opcode":"control_if_else","next":"%=","parent":"aYD","inputs":{"CONDITION":[2,"aYF"],"SUBSTACK":[2,"ov"],"SUBSTACK2":[2,"aYG"]},"fields":{},"shadow":false,"topLevel":false},"aYF":{"opcode":"operator_lt","next":null,"parent":"eT","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bUu",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bUu":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYF","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ov":{"opcode":"control_if_else","next":null,"parent":"eT","inputs":{"CONDITION":[2,"aYH"],"SUBSTACK":[2,"%?"],"SUBSTACK2":[2,"%@"]},"fields":{},"shadow":false,"topLevel":false},"aYH":{"opcode":"operator_equals","next":null,"parent":"ov","inputs":{"OPERAND1":[3,"bUv",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bUv":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYH","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"%?":{"opcode":"procedures_call","next":"bUw","parent":"ov","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"%[",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"%[":{"opcode":"operator_add","next":null,"parent":"%?","inputs":{"NUM1":[3,"aYI",[4,"0"]],"NUM2":[3,"bUx",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aYI":{"opcode":"operator_multiply","next":null,"parent":"%[","inputs":{"NUM1":[3,"bUy",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUy":{"opcode":"data_itemoflist","next":null,"parent":"aYI","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUx":{"opcode":"data_itemoflist","next":null,"parent":"%[","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUw":{"opcode":"data_changevariableby","next":null,"parent":"%?","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%@":{"opcode":"data_setvariableto","next":"bUz","parent":"ov","inputs":{"VALUE":[3,"aYJ",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aYJ":{"opcode":"data_itemoflist","next":null,"parent":"%@","inputs":{"INDEX":[3,"aYK",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYK":{"opcode":"operator_add","next":null,"parent":"aYJ","inputs":{"NUM1":[3,"bUA",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bUA":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYK","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bUz":{"opcode":"data_changevariableby","next":null,"parent":"%@","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aYG":{"opcode":"procedures_call","next":"aYL","parent":"eT","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aYL":{"opcode":"data_changevariableby","next":"bUB","parent":"aYG","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bUB":{"opcode":"data_changevariableby","next":null,"parent":"aYL","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%=":{"opcode":"data_setvariableto","next":"aYM","parent":"eT","inputs":{"VALUE":[3,"aYN",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aYN":{"opcode":"data_itemoflist","next":null,"parent":"%=","inputs":{"INDEX":[3,"aYO",[7,""]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aYO":{"opcode":"operator_add","next":null,"parent":"aYN","inputs":{"NUM1":[3,"aYP",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aYP":{"opcode":"operator_add","next":null,"parent":"aYO","inputs":{"NUM1":[3,"aYQ",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aYQ":{"opcode":"operator_multiply","next":null,"parent":"aYP","inputs":{"NUM1":[3,"bUC",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUC":{"opcode":"data_itemoflist","next":null,"parent":"aYQ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYM":{"opcode":"data_replaceitemoflist","next":"aYR","parent":"%=","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYR":{"opcode":"data_replaceitemoflist","next":"%]","parent":"aYM","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"%]":{"opcode":"procedures_call","next":"%^","parent":"aYR","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aYS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aYS":{"opcode":"data_itemoflist","next":null,"parent":"%]","inputs":{"INDEX":[3,"bUD",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bUD":{"opcode":"operator_add","next":null,"parent":"aYS","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"%^":{"opcode":"data_replaceitemoflist","next":"%_","parent":"%]","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aYT",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYT":{"opcode":"operator_round","next":null,"parent":"%^","inputs":{"NUM":[3,"bUE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUE":{"opcode":"operator_equals","next":null,"parent":"aYT","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"%_":{"opcode":"data_replaceitemoflist","next":"bUF","parent":"%^","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aYU",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aYU":{"opcode":"operator_round","next":null,"parent":"%_","inputs":{"NUM":[3,"bUG",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUG":{"opcode":"operator_gt","next":null,"parent":"aYU","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bUF":{"opcode":"data_replaceitemoflist","next":null,"parent":"%_","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aYV":{"opcode":"procedures_definition","next":"eU","parent":null,"inputs":{"custom_block":[1,"aYW"]},"fields":{},"shadow":false,"topLevel":true,"x":10526,"y":2724},"aYW":{"opcode":"procedures_prototype","next":null,"parent":"aYV","inputs":{"HEES%ES}pzo}h9}$1(jb":[1,"bUH"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ORA %s","argumentids":"[\"HEES%ES}pzo}h9}$1(jb\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bUH":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYW","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eU":{"opcode":"control_if_else","next":"%`","parent":"aYV","inputs":{"CONDITION":[2,"aYX"],"SUBSTACK":[2,"ow"],"SUBSTACK2":[2,"aYY"]},"fields":{},"shadow":false,"topLevel":false},"aYX":{"opcode":"operator_lt","next":null,"parent":"eU","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bUI",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bUI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYX","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"ow":{"opcode":"control_if_else","next":null,"parent":"eU","inputs":{"CONDITION":[2,"aYZ"],"SUBSTACK":[2,"%{"],"SUBSTACK2":[2,"%|"]},"fields":{},"shadow":false,"topLevel":false},"aYZ":{"opcode":"operator_equals","next":null,"parent":"ow","inputs":{"OPERAND1":[3,"bUJ",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bUJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aYZ","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"%{":{"opcode":"procedures_call","next":"bUK","parent":"ow","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"%}",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"%}":{"opcode":"operator_add","next":null,"parent":"%{","inputs":{"NUM1":[3,"aY!",[4,"0"]],"NUM2":[3,"bUL",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY!":{"opcode":"operator_multiply","next":null,"parent":"%}","inputs":{"NUM1":[3,"bUM",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUM":{"opcode":"data_itemoflist","next":null,"parent":"aY!","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUL":{"opcode":"data_itemoflist","next":null,"parent":"%}","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUK":{"opcode":"data_changevariableby","next":null,"parent":"%{","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%|":{"opcode":"data_setvariableto","next":"bUN","parent":"ow","inputs":{"VALUE":[3,"aY#",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aY#":{"opcode":"data_itemoflist","next":null,"parent":"%|","inputs":{"INDEX":[3,"aY%",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aY%":{"opcode":"operator_add","next":null,"parent":"aY#","inputs":{"NUM1":[3,"bUO",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bUO":{"opcode":"argument_reporter_string_number","next":null,"parent":"aY%","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bUN":{"opcode":"data_changevariableby","next":null,"parent":"%|","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aYY":{"opcode":"procedures_call","next":"aY(","parent":"eU","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aY(":{"opcode":"data_changevariableby","next":"bUP","parent":"aYY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bUP":{"opcode":"data_changevariableby","next":null,"parent":"aY(","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"%`":{"opcode":"data_setvariableto","next":"aY)","parent":"eU","inputs":{"VALUE":[3,"aY*",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aY*":{"opcode":"data_itemoflist","next":null,"parent":"%`","inputs":{"INDEX":[3,"aY+",[7,"67"]]},"fields":{"LIST":["or_table","Lwfvqs]/^buKKht}YcaC"]},"shadow":false,"topLevel":false},"aY+":{"opcode":"operator_add","next":null,"parent":"aY*","inputs":{"NUM1":[3,"aY,",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aY,":{"opcode":"operator_add","next":null,"parent":"aY+","inputs":{"NUM1":[3,"aY-",[4,"0"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY-":{"opcode":"operator_multiply","next":null,"parent":"aY,","inputs":{"NUM1":[3,"bUQ",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bUQ":{"opcode":"data_itemoflist","next":null,"parent":"aY-","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aY)":{"opcode":"data_replaceitemoflist","next":"aY.","parent":"%`","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aY.":{"opcode":"data_replaceitemoflist","next":"%~","parent":"aY)","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"%~":{"opcode":"procedures_call","next":"(a","parent":"aY.","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aY/",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aY/":{"opcode":"data_itemoflist","next":null,"parent":"%~","inputs":{"INDEX":[3,"bUR",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bUR":{"opcode":"operator_add","next":null,"parent":"aY/","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(a":{"opcode":"data_replaceitemoflist","next":"(b","parent":"%~","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aY:",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aY:":{"opcode":"operator_round","next":null,"parent":"(a","inputs":{"NUM":[3,"bUS",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUS":{"opcode":"operator_equals","next":null,"parent":"aY:","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(b":{"opcode":"data_replaceitemoflist","next":"bUT","parent":"(a","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aY;",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aY;":{"opcode":"operator_round","next":null,"parent":"(b","inputs":{"NUM":[3,"bUU",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bUU":{"opcode":"operator_gt","next":null,"parent":"aY;","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bUT":{"opcode":"data_replaceitemoflist","next":null,"parent":"(b","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aY=":{"opcode":"procedures_definition","next":"eV","parent":null,"inputs":{"custom_block":[1,"aY?"]},"fields":{},"shadow":false,"topLevel":true,"x":9317,"y":2569},"aY?":{"opcode":"procedures_prototype","next":null,"parent":"aY=","inputs":{"N[xQPK`1_:[9lkuQd8Ur":[1,"bUV"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CMP %s","argumentids":"[\"N[xQPK`1_:[9lkuQd8Ur\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bUV":{"opcode":"argument_reporter_string_number","next":null,"parent":"aY?","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"eV":{"opcode":"control_if_else","next":"(c","parent":"aY=","inputs":{"CONDITION":[2,"aY@"],"SUBSTACK":[2,"aY["],"SUBSTACK2":[2,"ox"]},"fields":{},"shadow":false,"topLevel":false},"aY@":{"opcode":"operator_equals","next":null,"parent":"eV","inputs":{"OPERAND1":[1,[10,"-1"]],"OPERAND2":[3,"bUW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bUW":{"opcode":"argument_reporter_string_number","next":null,"parent":"aY@","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aY[":{"opcode":"procedures_call","next":"aY]","parent":"eV","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aY]":{"opcode":"data_changevariableby","next":"bUX","parent":"aY[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bUX":{"opcode":"data_changevariableby","next":null,"parent":"aY]","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"ox":{"opcode":"control_if_else","next":null,"parent":"eV","inputs":{"CONDITION":[2,"aY^"],"SUBSTACK":[2,"(d"],"SUBSTACK2":[2,"(e"]},"fields":{},"shadow":false,"topLevel":false},"aY^":{"opcode":"operator_equals","next":null,"parent":"ox","inputs":{"OPERAND1":[3,"bUY",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bUY":{"opcode":"argument_reporter_string_number","next":null,"parent":"aY^","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"(d":{"opcode":"procedures_call","next":"bUZ","parent":"ox","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"(f",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(f":{"opcode":"operator_add","next":null,"parent":"(d","inputs":{"NUM1":[3,"aY_",[4,"0"]],"NUM2":[3,"bU!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aY_":{"opcode":"operator_multiply","next":null,"parent":"(f","inputs":{"NUM1":[3,"bU#",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bU#":{"opcode":"data_itemoflist","next":null,"parent":"aY_","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bU!":{"opcode":"data_itemoflist","next":null,"parent":"(f","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bUZ":{"opcode":"data_changevariableby","next":null,"parent":"(d","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"(e":{"opcode":"data_setvariableto","next":"bU%","parent":"ox","inputs":{"VALUE":[3,"aY`",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aY`":{"opcode":"data_itemoflist","next":null,"parent":"(e","inputs":{"INDEX":[3,"aY{",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aY{":{"opcode":"operator_add","next":null,"parent":"aY`","inputs":{"NUM1":[3,"bU(",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bU(":{"opcode":"argument_reporter_string_number","next":null,"parent":"aY{","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bU%":{"opcode":"data_changevariableby","next":null,"parent":"(e","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"(c":{"opcode":"data_setvariableto","next":"(g","parent":"eV","inputs":{"VALUE":[3,"bU)",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"bU)":{"opcode":"operator_subtract","next":null,"parent":"(c","inputs":{"NUM1":[1,[4,"256"]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"200"]]},"fields":{},"shadow":false,"topLevel":false},"(g":{"opcode":"data_setvariableto","next":"(h","parent":"(c","inputs":{"VALUE":[3,"aY|",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aY|":{"opcode":"operator_add","next":null,"parent":"(g","inputs":{"NUM1":[3,"bU*",[4,""]],"NUM2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bU*":{"opcode":"data_itemoflist","next":null,"parent":"aY|","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(h":{"opcode":"data_replaceitemoflist","next":"(i","parent":"(g","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aY}",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aY}":{"opcode":"operator_round","next":null,"parent":"(h","inputs":{"NUM":[3,"bU+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bU+":{"opcode":"operator_gt","next":null,"parent":"aY}","inputs":{"OPERAND1":[1,[10,"256"]],"OPERAND2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"(i":{"opcode":"procedures_call","next":"(j","parent":"(h","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aY~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aY~":{"opcode":"data_itemoflist","next":null,"parent":"(i","inputs":{"INDEX":[3,"aZa",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aZa":{"opcode":"operator_add","next":null,"parent":"aY~","inputs":{"NUM1":[3,"bU,",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bU,":{"opcode":"operator_mod","next":null,"parent":"aZa","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"(j":{"opcode":"data_replaceitemoflist","next":"(k","parent":"(i","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aZb",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZb":{"opcode":"operator_round","next":null,"parent":"(j","inputs":{"NUM":[3,"aZc",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZc":{"opcode":"operator_gt","next":null,"parent":"aZb","inputs":{"OPERAND1":[3,"(l",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"(l":{"opcode":"operator_add","next":null,"parent":"aZc","inputs":{"NUM1":[3,"aZd",[4,"0"]],"NUM2":[3,"bU-",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZd":{"opcode":"operator_mod","next":null,"parent":"(l","inputs":{"NUM1":[3,"bU.",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bU.":{"opcode":"data_itemoflist","next":null,"parent":"aZd","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bU-":{"opcode":"operator_mod","next":null,"parent":"(l","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"(k":{"opcode":"data_replaceitemoflist","next":"aZe","parent":"(j","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aZf",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZf":{"opcode":"operator_round","next":null,"parent":"(k","inputs":{"NUM":[3,"aZg",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZg":{"opcode":"operator_equals","next":null,"parent":"aZf","inputs":{"OPERAND1":[3,"bU/",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bU/":{"opcode":"operator_mod","next":null,"parent":"aZg","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aZe":{"opcode":"data_replaceitemoflist","next":null,"parent":"(k","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aZh",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZh":{"opcode":"operator_round","next":null,"parent":"aZe","inputs":{"NUM":[3,"aZi",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZi":{"opcode":"operator_gt","next":null,"parent":"aZh","inputs":{"OPERAND1":[3,"bU:",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bU:":{"opcode":"operator_mod","next":null,"parent":"aZi","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aZj":{"opcode":"procedures_definition","next":"eW","parent":null,"inputs":{"custom_block":[1,"(m"]},"fields":{},"shadow":false,"topLevel":true,"x":11589,"y":2380},"(m":{"opcode":"procedures_prototype","next":null,"parent":"aZj","inputs":{"K!-,hb]nWgss{Co(Na6v":[1,"bU;"],"Z+wi](,vdi;*E;ha|R)J":[1,"bU="]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INR/DCR %s %s","argumentids":"[\"K!-,hb]nWgss{Co(Na6v\",\"Z+wi](,vdi;*E;ha|R)J\"]","argumentnames":"[\"register\",\"amount\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bU;":{"opcode":"argument_reporter_string_number","next":null,"parent":"(m","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"bU=":{"opcode":"argument_reporter_string_number","next":null,"parent":"(m","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":true,"topLevel":false},"eW":{"opcode":"control_if_else","next":"(n","parent":"aZj","inputs":{"CONDITION":[2,"aZk"],"SUBSTACK":[2,"(o"],"SUBSTACK2":[2,"(p"]},"fields":{},"shadow":false,"topLevel":false},"aZk":{"opcode":"operator_equals","next":null,"parent":"eW","inputs":{"OPERAND1":[3,"bU?",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bU?":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZk","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"(o":{"opcode":"procedures_call","next":"bU@","parent":"eW","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"(q",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(q":{"opcode":"operator_add","next":null,"parent":"(o","inputs":{"NUM1":[3,"aZl",[4,"0"]],"NUM2":[3,"bU[",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZl":{"opcode":"operator_multiply","next":null,"parent":"(q","inputs":{"NUM1":[3,"bU]",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bU]":{"opcode":"data_itemoflist","next":null,"parent":"aZl","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bU[":{"opcode":"data_itemoflist","next":null,"parent":"(q","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bU@":{"opcode":"data_changevariableby","next":null,"parent":"(o","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"(p":{"opcode":"data_setvariableto","next":"bU^","parent":"eW","inputs":{"VALUE":[3,"aZm",[10,""]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"aZm":{"opcode":"data_itemoflist","next":null,"parent":"(p","inputs":{"INDEX":[3,"aZn",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZn":{"opcode":"operator_add","next":null,"parent":"aZm","inputs":{"NUM1":[3,"bU_",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bU_":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZn","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bU^":{"opcode":"data_changevariableby","next":null,"parent":"(p","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"(n":{"opcode":"data_setvariableto","next":"(r","parent":"eW","inputs":{"VALUE":[3,"aZo",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"aZo":{"opcode":"operator_mod","next":null,"parent":"(n","inputs":{"NUM1":[3,"aZp",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"aZp":{"opcode":"operator_add","next":null,"parent":"aZo","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[3,"bU`",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bU`":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZp","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"(r":{"opcode":"procedures_call","next":"eX","parent":"(n","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"aZq",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"aZq":{"opcode":"data_itemoflist","next":null,"parent":"(r","inputs":{"INDEX":[3,"aZr",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"aZr":{"opcode":"operator_add","next":null,"parent":"aZq","inputs":{"NUM1":[3,"bU{",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bU{":{"opcode":"operator_mod","next":null,"parent":"aZr","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"eX":{"opcode":"control_if_else","next":"(s","parent":"(r","inputs":{"CONDITION":[2,"aZs"],"SUBSTACK":[2,"aZt"],"SUBSTACK2":[2,"aZu"]},"fields":{},"shadow":false,"topLevel":false},"aZs":{"opcode":"operator_equals","next":null,"parent":"eX","inputs":{"OPERAND1":[3,"bU|",[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"bU|":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZs","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"aZt":{"opcode":"data_replaceitemoflist","next":null,"parent":"eX","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aZv",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZv":{"opcode":"operator_round","next":null,"parent":"aZt","inputs":{"NUM":[3,"aZw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZw":{"opcode":"operator_not","next":null,"parent":"aZv","inputs":{"OPERAND":[2,"aZx"]},"fields":{},"shadow":false,"topLevel":false},"aZx":{"opcode":"operator_equals","next":null,"parent":"aZw","inputs":{"OPERAND1":[3,"aZy",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"aZy":{"opcode":"operator_mod","next":null,"parent":"aZx","inputs":{"NUM1":[3,"bU}",[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bU}":{"opcode":"operator_subtract","next":null,"parent":"aZy","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aZu":{"opcode":"data_replaceitemoflist","next":null,"parent":"eX","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aZz",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZz":{"opcode":"operator_round","next":null,"parent":"aZu","inputs":{"NUM":[3,"aZA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZA":{"opcode":"operator_equals","next":null,"parent":"aZz","inputs":{"OPERAND1":[3,"bU~",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bU~":{"opcode":"operator_mod","next":null,"parent":"aZA","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"(s":{"opcode":"data_replaceitemoflist","next":"(t","parent":"eX","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"aZB",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZB":{"opcode":"operator_round","next":null,"parent":"(s","inputs":{"NUM":[3,"aZC",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZC":{"opcode":"operator_equals","next":null,"parent":"aZB","inputs":{"OPERAND1":[3,"bVa",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bVa":{"opcode":"operator_mod","next":null,"parent":"aZC","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"(t":{"opcode":"data_replaceitemoflist","next":"oy","parent":"(s","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"aZD",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZD":{"opcode":"operator_round","next":null,"parent":"(t","inputs":{"NUM":[3,"aZE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aZE":{"opcode":"operator_gt","next":null,"parent":"aZD","inputs":{"OPERAND1":[3,"bVb",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bVb":{"opcode":"operator_mod","next":null,"parent":"aZE","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oy":{"opcode":"control_if_else","next":null,"parent":"(t","inputs":{"CONDITION":[2,"aZF"],"SUBSTACK":[2,"(u"],"SUBSTACK2":[2,"(v"]},"fields":{},"shadow":false,"topLevel":false},"aZF":{"opcode":"operator_equals","next":null,"parent":"oy","inputs":{"OPERAND1":[3,"bVc",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bVc":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZF","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"(u":{"opcode":"procedures_call","next":null,"parent":"oy","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"(w",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bVd",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"(w":{"opcode":"operator_add","next":null,"parent":"(u","inputs":{"NUM1":[3,"aZG",[4,"0"]],"NUM2":[3,"bVe",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZG":{"opcode":"operator_multiply","next":null,"parent":"(w","inputs":{"NUM1":[3,"bVf",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVf":{"opcode":"data_itemoflist","next":null,"parent":"aZG","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVe":{"opcode":"data_itemoflist","next":null,"parent":"(w","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVd":{"opcode":"operator_mod","next":null,"parent":"(u","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"(v":{"opcode":"data_replaceitemoflist","next":null,"parent":"oy","inputs":{"INDEX":[3,"aZH",[7,"0"]],"ITEM":[3,"bVg",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZH":{"opcode":"operator_add","next":null,"parent":"(v","inputs":{"NUM1":[3,"bVh",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bVh":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZH","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bVg":{"opcode":"operator_mod","next":null,"parent":"(v","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aZI":{"opcode":"procedures_definition","next":"(x","parent":null,"inputs":{"custom_block":[1,"bVi"]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":320},"bVi":{"opcode":"procedures_prototype","next":null,"parent":"aZI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PCHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"(x":{"opcode":"data_setvariableto","next":"bVj","parent":"aZI","inputs":{"VALUE":[3,"(y",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"(y":{"opcode":"operator_add","next":null,"parent":"(x","inputs":{"NUM1":[3,"aZJ",[4,"0"]],"NUM2":[3,"bVk",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZJ":{"opcode":"operator_multiply","next":null,"parent":"(y","inputs":{"NUM1":[3,"bVl",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVl":{"opcode":"data_itemoflist","next":null,"parent":"aZJ","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVk":{"opcode":"data_itemoflist","next":null,"parent":"(y","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVj":{"opcode":"data_changevariableby","next":null,"parent":"(x","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZK":{"opcode":"procedures_definition","next":"(z","parent":null,"inputs":{"custom_block":[1,"bVm"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":2384},"bVm":{"opcode":"procedures_prototype","next":null,"parent":"aZK","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XCHG","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"(z":{"opcode":"data_setvariableto","next":"(A","parent":"aZK","inputs":{"VALUE":[3,"bVn",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bVn":{"opcode":"data_itemoflist","next":null,"parent":"(z","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(A":{"opcode":"data_setvariableto","next":"(B","parent":"(z","inputs":{"VALUE":[3,"bVo",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bVo":{"opcode":"data_itemoflist","next":null,"parent":"(A","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(B":{"opcode":"data_replaceitemoflist","next":"(C","parent":"(A","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"bVp",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVp":{"opcode":"data_itemoflist","next":null,"parent":"(B","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(C":{"opcode":"data_replaceitemoflist","next":"aZL","parent":"(B","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"bVq",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVq":{"opcode":"data_itemoflist","next":null,"parent":"(C","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZL":{"opcode":"data_replaceitemoflist","next":"aZM","parent":"(C","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZM":{"opcode":"data_replaceitemoflist","next":"bVr","parent":"aZL","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVr":{"opcode":"data_changevariableby","next":null,"parent":"aZM","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZN":{"opcode":"procedures_definition","next":"aZO","parent":null,"inputs":{"custom_block":[1,"aZP"]},"fields":{},"shadow":false,"topLevel":true,"x":7511,"y":64},"aZP":{"opcode":"procedures_prototype","next":null,"parent":"aZN","inputs":{"58~^|2E$I`?oic[jwf+C":[1,"bVs"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"CALL %b","argumentids":"[\"58~^|2E$I`?oic[jwf+C\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bVs":{"opcode":"argument_reporter_boolean","next":null,"parent":"aZP","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"aZO":{"opcode":"data_changevariableby","next":"oz","parent":"aZN","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"oz":{"opcode":"control_if","next":"bVt","parent":"aZO","inputs":{"CONDITION":[2,"bVu"],"SUBSTACK":[2,"aZQ"]},"fields":{},"shadow":false,"topLevel":false},"bVu":{"opcode":"argument_reporter_boolean","next":null,"parent":"oz","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aZQ":{"opcode":"data_changevariableby","next":"(D","parent":"oz","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"(D":{"opcode":"procedures_call","next":"oA","parent":"aZQ","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bVv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bVv":{"opcode":"operator_mod","next":null,"parent":"(D","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oA":{"opcode":"procedures_call","next":"(E","parent":"(D","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bVw",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aZR",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bVw":{"opcode":"operator_add","next":null,"parent":"oA","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aZR":{"opcode":"operator_mathop","next":null,"parent":"oA","inputs":{"NUM":[3,"bVx",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bVx":{"opcode":"operator_divide","next":null,"parent":"aZR","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"(E":{"opcode":"procedures_call","next":"aZS","parent":"oA","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bVy",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bVy":{"opcode":"operator_subtract","next":null,"parent":"(E","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aZS":{"opcode":"data_setvariableto","next":"bVz","parent":"(E","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bVz":{"opcode":"data_changevariableby","next":null,"parent":"aZS","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bVt":{"opcode":"data_changevariableby","next":null,"parent":"oz","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZT":{"opcode":"procedures_definition","next":"oB","parent":null,"inputs":{"custom_block":[1,"aZU"]},"fields":{},"shadow":false,"topLevel":true,"x":4667,"y":64},"aZU":{"opcode":"procedures_prototype","next":null,"parent":"aZT","inputs":{"81jPTca|qI_$x~T9K=;g":[1,"bVA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RET %b","argumentids":"[\"81jPTca|qI_$x~T9K=;g\"]","argumentnames":"[\"condition\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bVA":{"opcode":"argument_reporter_boolean","next":null,"parent":"aZU","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":true,"topLevel":false},"oB":{"opcode":"control_if","next":"bVB","parent":"aZT","inputs":{"CONDITION":[2,"bVC"],"SUBSTACK":[2,"aZV"]},"fields":{},"shadow":false,"topLevel":false},"bVC":{"opcode":"argument_reporter_boolean","next":null,"parent":"oB","inputs":{},"fields":{"VALUE":["condition",null]},"shadow":false,"topLevel":false},"aZV":{"opcode":"procedures_call","next":"aZW","parent":"oB","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"aZW":{"opcode":"data_setvariableto","next":"aZX","parent":"aZV","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aZX":{"opcode":"data_changevariableby","next":"bVD","parent":"aZW","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"bVD":{"opcode":"data_changevariableby","next":null,"parent":"aZX","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bVB":{"opcode":"data_changevariableby","next":null,"parent":"oB","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZY":{"opcode":"procedures_definition","next":"aZZ","parent":null,"inputs":{"custom_block":[1,"aZ!"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":1272},"aZ!":{"opcode":"procedures_prototype","next":null,"parent":"aZY","inputs":{")g=jq43q(p;Y9*97Rmz@":[1,"bVE"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"MVI %s","argumentids":"[\")g=jq43q(p;Y9*97Rmz@\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bVE":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ!","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"aZZ":{"opcode":"procedures_call","next":"eY","parent":"aZY","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"eY":{"opcode":"control_if_else","next":"aZ#","parent":"aZZ","inputs":{"CONDITION":[2,"aZ%"],"SUBSTACK":[2,"(F"],"SUBSTACK2":[2,"aZ("]},"fields":{},"shadow":false,"topLevel":false},"aZ%":{"opcode":"operator_equals","next":null,"parent":"eY","inputs":{"OPERAND1":[3,"bVF",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bVF":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ%","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"(F":{"opcode":"procedures_call","next":"bVG","parent":"eY","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"(G",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"(G":{"opcode":"operator_add","next":null,"parent":"(F","inputs":{"NUM1":[3,"aZ)",[4,"0"]],"NUM2":[3,"bVH",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZ)":{"opcode":"operator_multiply","next":null,"parent":"(G","inputs":{"NUM1":[3,"bVI",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVI":{"opcode":"data_itemoflist","next":null,"parent":"aZ)","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVH":{"opcode":"data_itemoflist","next":null,"parent":"(G","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVG":{"opcode":"data_changevariableby","next":null,"parent":"(F","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZ(":{"opcode":"data_replaceitemoflist","next":null,"parent":"eY","inputs":{"INDEX":[3,"aZ*",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZ*":{"opcode":"operator_add","next":null,"parent":"aZ(","inputs":{"NUM1":[3,"bVJ",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bVJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ*","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"aZ#":{"opcode":"data_changevariableby","next":"bVK","parent":"eY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bVK":{"opcode":"data_changevariableby","next":null,"parent":"aZ#","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZ+":{"opcode":"procedures_definition","next":"aZ,","parent":null,"inputs":{"custom_block":[1,"aZ-"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":64},"aZ-":{"opcode":"procedures_prototype","next":null,"parent":"aZ+","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[1,"bVL"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","argumentnames":"[\"address\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bVL":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ-","inputs":{},"fields":{"VALUE":["address",null]},"shadow":true,"topLevel":false},"aZ,":{"opcode":"data_changevariableby","next":"NI","parent":"aZ+","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"NI":{"opcode":"procedures_call","next":"oC","parent":"aZ,","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bVM",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bVM":{"opcode":"operator_mod","next":null,"parent":"NI","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oC":{"opcode":"procedures_call","next":"NJ","parent":"NI","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bVN",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"aZ.",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bVN":{"opcode":"operator_add","next":null,"parent":"oC","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aZ.":{"opcode":"operator_mathop","next":null,"parent":"oC","inputs":{"NUM":[3,"bVO",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bVO":{"opcode":"operator_divide","next":null,"parent":"aZ.","inputs":{"NUM1":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"NJ":{"opcode":"data_setvariableto","next":"bVP","parent":"oC","inputs":{"VALUE":[3,"aZ/",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"aZ/":{"opcode":"operator_multiply","next":null,"parent":"NJ","inputs":{"NUM1":[3,"bVQ",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bVQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ/","inputs":{},"fields":{"VALUE":["address",null]},"shadow":false,"topLevel":false},"bVP":{"opcode":"data_changevariableby","next":null,"parent":"NJ","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZ:":{"opcode":"procedures_definition","next":"(H","parent":null,"inputs":{"custom_block":[1,"aZ;"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":2864},"aZ;":{"opcode":"procedures_prototype","next":null,"parent":"aZ:","inputs":{",SmqO;0)wJ8.!Se~2Vng":[1,"bVR"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD %s","argumentids":"[\",SmqO;0)wJ8.!Se~2Vng\"]","argumentnames":"[\"regpair\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bVR":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ;","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"(H":{"opcode":"data_setvariableto","next":"(I","parent":"aZ:","inputs":{"VALUE":[3,"(J",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"(J":{"opcode":"operator_add","next":null,"parent":"(H","inputs":{"NUM1":[3,"(K",[4,"0"]],"NUM2":[3,"(L",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(K":{"opcode":"operator_add","next":null,"parent":"(J","inputs":{"NUM1":[3,"aZ=",[4,"0"]],"NUM2":[3,"aZ?",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZ=":{"opcode":"operator_multiply","next":null,"parent":"(K","inputs":{"NUM1":[3,"aZ@",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aZ@":{"opcode":"data_itemoflist","next":null,"parent":"aZ=","inputs":{"INDEX":[3,"bVS",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVS":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ@","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"aZ?":{"opcode":"data_itemoflist","next":null,"parent":"(K","inputs":{"INDEX":[3,"aZ[",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZ[":{"opcode":"operator_add","next":null,"parent":"aZ?","inputs":{"NUM1":[3,"bVT",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bVT":{"opcode":"argument_reporter_string_number","next":null,"parent":"aZ[","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"(L":{"opcode":"operator_add","next":null,"parent":"(J","inputs":{"NUM1":[3,"aZ]",[4,"0"]],"NUM2":[3,"bVU",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZ]":{"opcode":"operator_multiply","next":null,"parent":"(L","inputs":{"NUM1":[3,"bVV",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVV":{"opcode":"data_itemoflist","next":null,"parent":"aZ]","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVU":{"opcode":"data_itemoflist","next":null,"parent":"(L","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(I":{"opcode":"data_replaceitemoflist","next":"(M","parent":"(H","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"aZ^",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"aZ^":{"opcode":"operator_round","next":null,"parent":"(I","inputs":{"NUM":[3,"bVW",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bVW":{"opcode":"operator_gt","next":null,"parent":"aZ^","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"(M":{"opcode":"data_replaceitemoflist","next":"(N","parent":"(I","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"aZ_",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZ_":{"opcode":"operator_mathop","next":null,"parent":"(M","inputs":{"NUM":[3,"aZ`",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"aZ`":{"opcode":"operator_divide","next":null,"parent":"aZ_","inputs":{"NUM1":[3,"bVX",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVX":{"opcode":"operator_mod","next":null,"parent":"aZ`","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"(N":{"opcode":"data_replaceitemoflist","next":"bVY","parent":"(M","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"bVZ",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bVZ":{"opcode":"operator_mod","next":null,"parent":"(N","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bVY":{"opcode":"data_changevariableby","next":null,"parent":"(N","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"aZ{":{"opcode":"procedures_definition","next":"(O","parent":null,"inputs":{"custom_block":[1,"aZ|"]},"fields":{},"shadow":false,"topLevel":true,"x":5395,"y":540},"aZ|":{"opcode":"procedures_prototype","next":null,"parent":"aZ{","inputs":{"lyJ3dc5LleeV*f/MqhBH":[1,"bV!"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RLC/RAL %b","argumentids":"[\"lyJ3dc5LleeV*f/MqhBH\"]","argumentnames":"[\"using carry\"]","argumentdefaults":"[\"\",\"false\"]","warp":"true"}},"bV!":{"opcode":"argument_reporter_boolean","next":null,"parent":"aZ|","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":true,"topLevel":false},"(O":{"opcode":"data_setvariableto","next":"oD","parent":"aZ{","inputs":{"VALUE":[3,"(P",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"(P":{"opcode":"operator_add","next":null,"parent":"(O","inputs":{"NUM1":[3,"aZ}",[4,"0"]],"NUM2":[3,"aZ~",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aZ}":{"opcode":"operator_multiply","next":null,"parent":"(P","inputs":{"NUM1":[3,"bV#",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV#":{"opcode":"data_itemoflist","next":null,"parent":"aZ}","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"aZ~":{"opcode":"operator_mathop","next":null,"parent":"(P","inputs":{"NUM":[3,"a!a",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a!a":{"opcode":"operator_divide","next":null,"parent":"aZ~","inputs":{"NUM1":[3,"bV%",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"bV%":{"opcode":"data_itemoflist","next":null,"parent":"a!a","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"oD":{"opcode":"control_if","next":"(Q","parent":"(O","inputs":{"CONDITION":[2,"bV("],"SUBSTACK":[2,"(R"]},"fields":{},"shadow":false,"topLevel":false},"bV(":{"opcode":"argument_reporter_boolean","next":null,"parent":"oD","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":false,"topLevel":false},"(R":{"opcode":"control_if","next":null,"parent":"oD","inputs":{"CONDITION":[2,"a!b"],"SUBSTACK":[2,"oE"]},"fields":{},"shadow":false,"topLevel":false},"a!b":{"opcode":"operator_not","next":null,"parent":"(R","inputs":{"OPERAND":[2,"(S"]},"fields":{},"shadow":false,"topLevel":false},"(S":{"opcode":"operator_equals","next":null,"parent":"a!b","inputs":{"OPERAND1":[3,"bV)",[10,""]],"OPERAND2":[3,"bV*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bV)":{"opcode":"operator_mod","next":null,"parent":"(S","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV*":{"opcode":"data_itemoflist","next":null,"parent":"(S","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"oE":{"opcode":"control_if_else","next":null,"parent":"(R","inputs":{"CONDITION":[2,"a!c"],"SUBSTACK":[2,"bV+"],"SUBSTACK2":[2,"bV,"]},"fields":{},"shadow":false,"topLevel":false},"a!c":{"opcode":"operator_equals","next":null,"parent":"oE","inputs":{"OPERAND1":[3,"bV-",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bV-":{"opcode":"operator_mod","next":null,"parent":"a!c","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV+":{"opcode":"data_changevariableby","next":null,"parent":"oE","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bV,":{"opcode":"data_changevariableby","next":null,"parent":"oE","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"(Q":{"opcode":"data_replaceitemoflist","next":"(T","parent":"oD","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a!d",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!d":{"opcode":"operator_round","next":null,"parent":"(Q","inputs":{"NUM":[3,"a!e",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a!e":{"opcode":"operator_gt","next":null,"parent":"a!d","inputs":{"OPERAND1":[3,"bV.",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bV.":{"opcode":"data_itemoflist","next":null,"parent":"a!e","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(T":{"opcode":"data_replaceitemoflist","next":"bV/","parent":"(Q","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bV:",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bV:":{"opcode":"operator_mod","next":null,"parent":"(T","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bV/":{"opcode":"data_changevariableby","next":null,"parent":"(T","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!f":{"opcode":"procedures_definition","next":"(U","parent":null,"inputs":{"custom_block":[1,"a!g"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":2232},"a!g":{"opcode":"procedures_prototype","next":null,"parent":"a!f","inputs":{"f%{;w~N|GRSB$;Wt6u{t":[1,"bV;"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RRC/RAR %b","argumentids":"[\"f%{;w~N|GRSB$;Wt6u{t\"]","argumentnames":"[\"using carry\"]","argumentdefaults":"[\"false\"]","warp":"true"}},"bV;":{"opcode":"argument_reporter_boolean","next":null,"parent":"a!g","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":true,"topLevel":false},"(U":{"opcode":"data_setvariableto","next":"oF","parent":"a!f","inputs":{"VALUE":[3,"a!h",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a!h":{"opcode":"operator_mod","next":null,"parent":"(U","inputs":{"NUM1":[3,"(V",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"(V":{"opcode":"operator_add","next":null,"parent":"a!h","inputs":{"NUM1":[3,"a!i",[4,"0"]],"NUM2":[3,"a!j",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a!i":{"opcode":"operator_mathop","next":null,"parent":"(V","inputs":{"NUM":[3,"a!k",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a!k":{"opcode":"operator_divide","next":null,"parent":"a!i","inputs":{"NUM1":[3,"bV=",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV=":{"opcode":"data_itemoflist","next":null,"parent":"a!k","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!j":{"opcode":"operator_multiply","next":null,"parent":"(V","inputs":{"NUM1":[3,"a!l",[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"a!l":{"opcode":"operator_mod","next":null,"parent":"a!j","inputs":{"NUM1":[3,"bV?",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV?":{"opcode":"data_itemoflist","next":null,"parent":"a!l","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"oF":{"opcode":"control_if","next":"(W","parent":"(U","inputs":{"CONDITION":[2,"bV@"],"SUBSTACK":[2,"(X"]},"fields":{},"shadow":false,"topLevel":false},"bV@":{"opcode":"argument_reporter_boolean","next":null,"parent":"oF","inputs":{},"fields":{"VALUE":["using carry",null]},"shadow":false,"topLevel":false},"(X":{"opcode":"control_if","next":null,"parent":"oF","inputs":{"CONDITION":[2,"a!m"],"SUBSTACK":[2,"oG"]},"fields":{},"shadow":false,"topLevel":false},"a!m":{"opcode":"operator_not","next":null,"parent":"(X","inputs":{"OPERAND":[2,"(Y"]},"fields":{},"shadow":false,"topLevel":false},"(Y":{"opcode":"operator_equals","next":null,"parent":"a!m","inputs":{"OPERAND1":[3,"bV[",[10,""]],"OPERAND2":[3,"bV]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bV[":{"opcode":"operator_gt","next":null,"parent":"(Y","inputs":{"OPERAND1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bV]":{"opcode":"data_itemoflist","next":null,"parent":"(Y","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"oG":{"opcode":"control_if_else","next":null,"parent":"(X","inputs":{"CONDITION":[2,"bV^"],"SUBSTACK":[2,"bV_"],"SUBSTACK2":[2,"bV`"]},"fields":{},"shadow":false,"topLevel":false},"bV^":{"opcode":"operator_gt","next":null,"parent":"oG","inputs":{"OPERAND1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bV_":{"opcode":"data_changevariableby","next":null,"parent":"oG","inputs":{"VALUE":[1,[4,"-128"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bV`":{"opcode":"data_changevariableby","next":null,"parent":"oG","inputs":{"VALUE":[1,[4,"128"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"(W":{"opcode":"data_replaceitemoflist","next":"(Z","parent":"oF","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a!n",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!n":{"opcode":"operator_mod","next":null,"parent":"(W","inputs":{"NUM1":[3,"bV{",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bV{":{"opcode":"data_itemoflist","next":null,"parent":"a!n","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(Z":{"opcode":"data_replaceitemoflist","next":"bV|","parent":"(W","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bV}",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bV}":{"opcode":"operator_mod","next":null,"parent":"(Z","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bV|":{"opcode":"data_changevariableby","next":null,"parent":"(Z","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!o":{"opcode":"procedures_definition","next":"(!","parent":null,"inputs":{"custom_block":[1,"bV~"]},"fields":{},"shadow":false,"topLevel":true,"x":3052,"y":3336},"bV~":{"opcode":"procedures_prototype","next":null,"parent":"a!o","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAD SP","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"(!":{"opcode":"data_setvariableto","next":"(#","parent":"a!o","inputs":{"VALUE":[3,"a!p",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a!p":{"opcode":"operator_add","next":null,"parent":"(!","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[3,"(%",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"(%":{"opcode":"operator_add","next":null,"parent":"a!p","inputs":{"NUM1":[3,"a!q",[4,"0"]],"NUM2":[3,"bWa",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a!q":{"opcode":"operator_multiply","next":null,"parent":"(%","inputs":{"NUM1":[3,"bWb",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bWb":{"opcode":"data_itemoflist","next":null,"parent":"a!q","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWa":{"opcode":"data_itemoflist","next":null,"parent":"(%","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(#":{"opcode":"data_replaceitemoflist","next":"((","parent":"(!","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a!r",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!r":{"opcode":"operator_round","next":null,"parent":"(#","inputs":{"NUM":[3,"bWc",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bWc":{"opcode":"operator_gt","next":null,"parent":"a!r","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"((":{"opcode":"data_replaceitemoflist","next":"()","parent":"(#","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"a!s",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!s":{"opcode":"operator_mathop","next":null,"parent":"((","inputs":{"NUM":[3,"a!t",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a!t":{"opcode":"operator_divide","next":null,"parent":"a!s","inputs":{"NUM1":[3,"bWd",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bWd":{"opcode":"operator_mod","next":null,"parent":"a!t","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"()":{"opcode":"data_replaceitemoflist","next":"bWe","parent":"((","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"bWf",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWf":{"opcode":"operator_mod","next":null,"parent":"()","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bWe":{"opcode":"data_changevariableby","next":null,"parent":"()","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!u":{"opcode":"procedures_definition","next":"a!v","parent":null,"inputs":{"custom_block":[1,"a!w"]},"fields":{},"shadow":false,"topLevel":true,"x":6475,"y":584},"a!w":{"opcode":"procedures_prototype","next":null,"parent":"a!u","inputs":{"X5ewSXUk4A:aoD+0{l!f":[1,"bWg"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP %s","argumentids":"[\"X5ewSXUk4A:aoD+0{l!f\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bWg":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!w","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"a!v":{"opcode":"procedures_call","next":"(*","parent":"a!u","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(*":{"opcode":"data_replaceitemoflist","next":"(+","parent":"a!v","inputs":{"INDEX":[3,"a!x",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!x":{"opcode":"operator_add","next":null,"parent":"(*","inputs":{"NUM1":[3,"bWh",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bWh":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!x","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"(+":{"opcode":"procedures_call","next":"(,","parent":"(*","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bWi",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bWi":{"opcode":"operator_add","next":null,"parent":"(+","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"(,":{"opcode":"data_replaceitemoflist","next":"a!y","parent":"(+","inputs":{"INDEX":[3,"bWj",[7,"0"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWj":{"opcode":"argument_reporter_string_number","next":null,"parent":"(,","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"a!y":{"opcode":"data_changevariableby","next":"bWk","parent":"(,","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"bWk":{"opcode":"data_changevariableby","next":null,"parent":"a!y","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!z":{"opcode":"procedures_definition","next":"(-","parent":null,"inputs":{"custom_block":[1,"bWl"]},"fields":{},"shadow":false,"topLevel":true,"x":6448,"y":1037},"bWl":{"opcode":"procedures_prototype","next":null,"parent":"a!z","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"POP PSW","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"(-":{"opcode":"procedures_call","next":"a!A","parent":"a!z","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bWm",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bWm":{"opcode":"operator_add","next":null,"parent":"(-","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!A":{"opcode":"data_replaceitemoflist","next":"a!B","parent":"(-","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!B":{"opcode":"procedures_call","next":"a!C","parent":"a!A","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a!C":{"opcode":"data_changevariableby","next":"a!D","parent":"a!B","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"a!D":{"opcode":"control_clear_counter","next":"(.","parent":"a!C","inputs":{},"fields":{},"shadow":false,"topLevel":false},"(.":{"opcode":"control_repeat","next":"a!E","parent":"a!D","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"a!F"]},"fields":{},"shadow":false,"topLevel":false},"a!F":{"opcode":"control_incr_counter","next":"(/","parent":"(.","inputs":{},"fields":{},"shadow":false,"topLevel":false},"(/":{"opcode":"data_replaceitemoflist","next":null,"parent":"a!F","inputs":{"INDEX":[3,"a!G",[7,"0"]],"ITEM":[3,"(:",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!G":{"opcode":"operator_subtract","next":null,"parent":"(/","inputs":{"NUM1":[1,[4,"9"]],"NUM2":[3,"bWn",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bWn":{"opcode":"control_get_counter","next":null,"parent":"a!G","inputs":{},"fields":{},"shadow":false,"topLevel":false},"(:":{"opcode":"operator_letter_of","next":null,"parent":"(/","inputs":{"LETTER":[3,"bWo",[6,"0"]],"STRING":[3,"a!H",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bWo":{"opcode":"control_get_counter","next":null,"parent":"(:","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a!H":{"opcode":"data_itemoflist","next":null,"parent":"(:","inputs":{"INDEX":[3,"bWp",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bWp":{"opcode":"operator_add","next":null,"parent":"a!H","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!E":{"opcode":"data_replaceitemoflist","next":"a!I","parent":"(.","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!I":{"opcode":"data_replaceitemoflist","next":"a!J","parent":"a!E","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!J":{"opcode":"data_replaceitemoflist","next":"bWq","parent":"a!I","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bWq":{"opcode":"data_changevariableby","next":null,"parent":"a!J","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!K":{"opcode":"procedures_definition","next":"a!L","parent":null,"inputs":{"custom_block":[1,"a!M"]},"fields":{},"shadow":false,"topLevel":true,"x":7511,"y":720},"a!M":{"opcode":"procedures_prototype","next":null,"parent":"a!K","inputs":{"WcF;@0._c|op{:JV~Utq":[1,"bWr"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH %s","argumentids":"[\"WcF;@0._c|op{:JV~Utq\"]","argumentnames":"[\"register\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bWr":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!M","inputs":{},"fields":{"VALUE":["register",null]},"shadow":true,"topLevel":false},"a!L":{"opcode":"data_changevariableby","next":"(;","parent":"a!K","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"(;":{"opcode":"procedures_call","next":"oH","parent":"a!L","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"a!N",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"a!N":{"opcode":"data_itemoflist","next":null,"parent":"(;","inputs":{"INDEX":[3,"a!O",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!O":{"opcode":"operator_add","next":null,"parent":"a!N","inputs":{"NUM1":[3,"bWs",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bWs":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!O","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"oH":{"opcode":"procedures_call","next":"bWt","parent":"(;","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bWu",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"a!P",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWu":{"opcode":"operator_add","next":null,"parent":"oH","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!P":{"opcode":"data_itemoflist","next":null,"parent":"oH","inputs":{"INDEX":[3,"bWv",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWv":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!P","inputs":{},"fields":{"VALUE":["register",null]},"shadow":false,"topLevel":false},"bWt":{"opcode":"data_changevariableby","next":null,"parent":"oH","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!Q":{"opcode":"procedures_definition","next":"a!R","parent":null,"inputs":{"custom_block":[1,"bWw"]},"fields":{},"shadow":false,"topLevel":true,"x":7574,"y":1112},"bWw":{"opcode":"procedures_prototype","next":null,"parent":"a!Q","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"PUSH PSW","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a!R":{"opcode":"data_changevariableby","next":"oI","parent":"a!Q","inputs":{"VALUE":[1,[4,"-2"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"oI":{"opcode":"procedures_call","next":"(=","parent":"a!R","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bWx",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bWy",[10,"0x0A"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWx":{"opcode":"operator_add","next":null,"parent":"oI","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bWy":{"opcode":"data_itemoflist","next":null,"parent":"oI","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(=":{"opcode":"procedures_call","next":"bWz","parent":"oI","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"a!S",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"a!S":{"opcode":"operator_round","next":null,"parent":"(=","inputs":{"NUM":[3,"a!T",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a!T":{"opcode":"operator_join","next":null,"parent":"a!S","inputs":{"STRING1":[1,[10,"0b"]],"STRING2":[3,"(?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(?":{"opcode":"operator_join","next":null,"parent":"a!T","inputs":{"STRING1":[3,"(@",[10,""]],"STRING2":[3,"([",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(@":{"opcode":"operator_join","next":null,"parent":"(?","inputs":{"STRING1":[3,"(]",[10,""]],"STRING2":[3,"a!U",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"(]":{"opcode":"operator_join","next":null,"parent":"(@","inputs":{"STRING1":[3,"bWA",[10,""]],"STRING2":[3,"bWB",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bWA":{"opcode":"data_itemoflist","next":null,"parent":"(]","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bWB":{"opcode":"data_itemoflist","next":null,"parent":"(]","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!U":{"opcode":"operator_join","next":null,"parent":"(@","inputs":{"STRING1":[1,[10,"0"]],"STRING2":[3,"bWC",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bWC":{"opcode":"data_itemoflist","next":null,"parent":"a!U","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"([":{"opcode":"operator_join","next":null,"parent":"(?","inputs":{"STRING1":[3,"a!V",[10,""]],"STRING2":[3,"a!W",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a!V":{"opcode":"operator_join","next":null,"parent":"([","inputs":{"STRING1":[1,[10,"0"]],"STRING2":[3,"bWD",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bWD":{"opcode":"data_itemoflist","next":null,"parent":"a!V","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a!W":{"opcode":"operator_join","next":null,"parent":"([","inputs":{"STRING1":[1,[10,"1"]],"STRING2":[3,"bWE",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bWE":{"opcode":"data_itemoflist","next":null,"parent":"a!W","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bWz":{"opcode":"data_changevariableby","next":null,"parent":"(=","inputs":{"VALUE":[1,[4,"11"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!X":{"opcode":"procedures_definition","next":"a!Y","parent":null,"inputs":{"custom_block":[1,"bWF"]},"fields":{},"shadow":false,"topLevel":true,"x":4667,"y":536},"bWF":{"opcode":"procedures_prototype","next":null,"parent":"a!X","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"STA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"a!Y":{"opcode":"procedures_call","next":"(^","parent":"a!X","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(^":{"opcode":"procedures_call","next":"a!Z","parent":"a!Y","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bWG",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWG":{"opcode":"data_itemoflist","next":null,"parent":"(^","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!Z":{"opcode":"data_changevariableby","next":"bWH","parent":"(^","inputs":{"VALUE":[1,[4,"13"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bWH":{"opcode":"data_changevariableby","next":null,"parent":"a!Z","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a!!":{"opcode":"procedures_definition","next":"(_","parent":null,"inputs":{"custom_block":[1,"a!#"]},"fields":{},"shadow":false,"topLevel":true,"x":6489,"y":1794},"a!#":{"opcode":"procedures_prototype","next":null,"parent":"a!!","inputs":{"#mSxt0xW6,q)EV08j2[y":[1,"bWI"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDAX %s","argumentids":"[\"#mSxt0xW6,q)EV08j2[y\"]","argumentnames":"[\"regpair\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bWI":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!#","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"(_":{"opcode":"procedures_call","next":"a!%","parent":"a!!","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"(`",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(`":{"opcode":"operator_add","next":null,"parent":"(_","inputs":{"NUM1":[3,"a!(",[4,"0"]],"NUM2":[3,"a!)",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a!(":{"opcode":"operator_multiply","next":null,"parent":"(`","inputs":{"NUM1":[3,"a!*",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a!*":{"opcode":"data_itemoflist","next":null,"parent":"a!(","inputs":{"INDEX":[3,"bWJ",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!*","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"a!)":{"opcode":"data_itemoflist","next":null,"parent":"(`","inputs":{"INDEX":[3,"a!+",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!+":{"opcode":"operator_add","next":null,"parent":"a!)","inputs":{"NUM1":[3,"bWK",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bWK":{"opcode":"argument_reporter_string_number","next":null,"parent":"a!+","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"a!%":{"opcode":"data_replaceitemoflist","next":"bWL","parent":"(_","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWL":{"opcode":"data_changevariableby","next":null,"parent":"a!%","inputs":{"VALUE":[1,[4,"7"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a!,":{"opcode":"procedures_definition","next":"a!-","parent":null,"inputs":{"custom_block":[1,"bWM"]},"fields":{},"shadow":false,"topLevel":true,"x":5248,"y":1848},"bWM":{"opcode":"procedures_prototype","next":null,"parent":"a!,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LDA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"a!-":{"opcode":"procedures_call","next":"a!.","parent":"a!,","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a!.":{"opcode":"procedures_call","next":"({","parent":"a!-","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"({":{"opcode":"data_replaceitemoflist","next":"a!/","parent":"a!.","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bWN",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bWN":{"opcode":"operator_mod","next":null,"parent":"({","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a!/":{"opcode":"data_changevariableby","next":"bWO","parent":"({","inputs":{"VALUE":[1,[4,"13"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bWO":{"opcode":"data_changevariableby","next":null,"parent":"a!/","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a!:":{"opcode":"procedures_definition","next":"a!;","parent":null,"inputs":{"custom_block":[1,"bWP"]},"fields":{},"shadow":false,"topLevel":true,"x":4600,"y":896},"bWP":{"opcode":"procedures_prototype","next":null,"parent":"a!:","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"SHLD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a!;":{"opcode":"procedures_call","next":"(|","parent":"a!:","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(|":{"opcode":"procedures_call","next":"oJ","parent":"a!;","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bWQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWQ":{"opcode":"data_itemoflist","next":null,"parent":"(|","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"oJ":{"opcode":"procedures_call","next":"a!=","parent":"(|","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bWR",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bWS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWR":{"opcode":"operator_add","next":null,"parent":"oJ","inputs":{"NUM1":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bWS":{"opcode":"data_itemoflist","next":null,"parent":"oJ","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!=":{"opcode":"data_changevariableby","next":"bWT","parent":"oJ","inputs":{"VALUE":[1,[4,"16"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bWT":{"opcode":"data_changevariableby","next":null,"parent":"a!=","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a!?":{"opcode":"procedures_definition","next":"a!@","parent":null,"inputs":{"custom_block":[1,"bWU"]},"fields":{},"shadow":false,"topLevel":true,"x":5802,"y":1736},"bWU":{"opcode":"procedures_prototype","next":null,"parent":"a!?","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"LHLD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a!@":{"opcode":"procedures_call","next":"a![","parent":"a!?","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a![":{"opcode":"data_setvariableto","next":"a!]","parent":"a!@","inputs":{"VALUE":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a!]":{"opcode":"procedures_call","next":"a!^","parent":"a![","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a!^":{"opcode":"data_replaceitemoflist","next":"(}","parent":"a!]","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"(}":{"opcode":"procedures_call","next":"a!_","parent":"a!^","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bWV",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bWV":{"opcode":"operator_add","next":null,"parent":"(}","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a!_":{"opcode":"data_replaceitemoflist","next":"a!`","parent":"(}","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!`":{"opcode":"data_changevariableby","next":"bWW","parent":"a!_","inputs":{"VALUE":[1,[4,"16"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bWW":{"opcode":"data_changevariableby","next":null,"parent":"a!`","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a!{":{"opcode":"procedures_definition","next":"a!|","parent":null,"inputs":{"custom_block":[1,"bWX"]},"fields":{},"shadow":false,"topLevel":true,"x":7549,"y":1582},"bWX":{"opcode":"procedures_prototype","next":null,"parent":"a!{","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"XTHL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a!|":{"opcode":"procedures_call","next":"(~","parent":"a!{","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"(~":{"opcode":"procedures_call","next":"a!}","parent":"a!|","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bWY",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bWY":{"opcode":"data_itemoflist","next":null,"parent":"(~","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!}":{"opcode":"data_replaceitemoflist","next":")a","parent":"(~","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},")a":{"opcode":"procedures_call","next":"oK","parent":"a!}","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,"bWZ",[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"bWZ":{"opcode":"operator_add","next":null,"parent":")a","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oK":{"opcode":"procedures_call","next":"a!~","parent":")a","inputs":{"j_G@y^Jrnhl,*/Ljf|P2":[3,"bW!",[10,""]],"vOp?}/Jc:6!H:))h4`(3":[3,"bW#",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Write byte %s %s","argumentids":"[\"j_G@y^Jrnhl,*/Ljf|P2\",\"vOp?}/Jc:6!H:))h4`(3\"]","warp":"true"}},"bW!":{"opcode":"operator_add","next":null,"parent":"oK","inputs":{"NUM1":[3,[12,"_SP","Au!*6~mqLy!.|jpv|6f!"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bW#":{"opcode":"data_itemoflist","next":null,"parent":"oK","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a!~":{"opcode":"data_replaceitemoflist","next":"bW%","parent":"oK","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bW%":{"opcode":"data_changevariableby","next":null,"parent":"a!~","inputs":{"VALUE":[1,[4,"18"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a#a":{"opcode":"procedures_definition","next":")b","parent":null,"inputs":{"custom_block":[1,")c"]},"fields":{},"shadow":false,"topLevel":true,"x":12421,"y":2345},")c":{"opcode":"procedures_prototype","next":null,"parent":"a#a","inputs":{"5w3f8`}}x#9N2DP3tk5F":[1,"bW("],"Yu^K(g7gNtyUc!zhhe]]":[1,"bW)"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"INX/DCX %s %s","argumentids":"[\"5w3f8`}}x#9N2DP3tk5F\",\"Yu^K(g7gNtyUc!zhhe]]\"]","argumentnames":"[\"regpair\",\"amount\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"bW(":{"opcode":"argument_reporter_string_number","next":null,"parent":")c","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":true,"topLevel":false},"bW)":{"opcode":"argument_reporter_string_number","next":null,"parent":")c","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":true,"topLevel":false},")b":{"opcode":"data_setvariableto","next":"oL","parent":"a#a","inputs":{"VALUE":[3,"a#b",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a#b":{"opcode":"operator_mod","next":null,"parent":")b","inputs":{"NUM1":[3,")d",[4,"0"]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},")d":{"opcode":"operator_add","next":null,"parent":"a#b","inputs":{"NUM1":[3,")e",[4,"0"]],"NUM2":[3,"bW*",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},")e":{"opcode":"operator_add","next":null,"parent":")d","inputs":{"NUM1":[3,"a#c",[4,"0"]],"NUM2":[3,"a#d",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a#c":{"opcode":"operator_multiply","next":null,"parent":")e","inputs":{"NUM1":[3,"a#e",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a#e":{"opcode":"data_itemoflist","next":null,"parent":"a#c","inputs":{"INDEX":[3,"bW+",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bW+":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#e","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"a#d":{"opcode":"data_itemoflist","next":null,"parent":")e","inputs":{"INDEX":[3,"a#f",[7,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#f":{"opcode":"operator_add","next":null,"parent":"a#d","inputs":{"NUM1":[3,"bW,",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bW,":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#f","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"bW*":{"opcode":"argument_reporter_string_number","next":null,"parent":")d","inputs":{},"fields":{"VALUE":["amount",null]},"shadow":false,"topLevel":false},"oL":{"opcode":"data_replaceitemoflist","next":"oM","parent":")b","inputs":{"INDEX":[3,"bW-",[7,"0"]],"ITEM":[3,"a#g",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bW-":{"opcode":"argument_reporter_string_number","next":null,"parent":"oL","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"a#g":{"opcode":"operator_mathop","next":null,"parent":"oL","inputs":{"NUM":[3,"bW.",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bW.":{"opcode":"operator_divide","next":null,"parent":"a#g","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oM":{"opcode":"data_replaceitemoflist","next":"bW/","parent":"oL","inputs":{"INDEX":[3,"a#h",[7,"0"]],"ITEM":[3,"bW:",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#h":{"opcode":"operator_add","next":null,"parent":"oM","inputs":{"NUM1":[3,"bW;",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bW;":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#h","inputs":{},"fields":{"VALUE":["regpair",null]},"shadow":false,"topLevel":false},"bW:":{"opcode":"operator_mod","next":null,"parent":"oM","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bW/":{"opcode":"data_changevariableby","next":null,"parent":"oM","inputs":{"VALUE":[1,[4,"5"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a#i":{"opcode":"procedures_definition","next":"a#j","parent":null,"inputs":{"custom_block":[1,"bW="]},"fields":{},"shadow":false,"topLevel":true,"x":3209,"y":3983},"bW=":{"opcode":"procedures_prototype","next":null,"parent":"a#i","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"DAA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a#j":{"opcode":"data_setvariableto","next":"oN","parent":"a#i","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"oN":{"opcode":"control_if","next":")f","parent":"a#j","inputs":{"CONDITION":[2,")g"],"SUBSTACK":[2,"bW?"]},"fields":{},"shadow":false,"topLevel":false},")g":{"opcode":"operator_or","next":null,"parent":"oN","inputs":{"OPERAND1":[2,"a#k"],"OPERAND2":[2,"a#l"]},"fields":{},"shadow":false,"topLevel":false},"a#k":{"opcode":"operator_gt","next":null,"parent":")g","inputs":{"OPERAND1":[3,"a#m",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a#m":{"opcode":"operator_mod","next":null,"parent":"a#k","inputs":{"NUM1":[3,"bW@",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bW@":{"opcode":"data_itemoflist","next":null,"parent":"a#m","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#l":{"opcode":"operator_equals","next":null,"parent":")g","inputs":{"OPERAND1":[3,"bW[",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bW[":{"opcode":"data_itemoflist","next":null,"parent":"a#l","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"bW?":{"opcode":"data_changevariableby","next":null,"parent":"oN","inputs":{"VALUE":[1,[4,"6"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},")f":{"opcode":"data_replaceitemoflist","next":"oO","parent":"oN","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"a#n",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a#n":{"opcode":"operator_round","next":null,"parent":")f","inputs":{"NUM":[3,"a#o",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a#o":{"opcode":"operator_gt","next":null,"parent":"a#n","inputs":{"OPERAND1":[3,"a#p",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a#p":{"opcode":"operator_mod","next":null,"parent":"a#o","inputs":{"NUM1":[3,"bW]",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bW]":{"opcode":"data_itemoflist","next":null,"parent":"a#p","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"oO":{"opcode":"control_if","next":")h","parent":")f","inputs":{"CONDITION":[2,")i"],"SUBSTACK":[2,"bW^"]},"fields":{},"shadow":false,"topLevel":false},")i":{"opcode":"operator_or","next":null,"parent":"oO","inputs":{"OPERAND1":[2,")j"],"OPERAND2":[2,")k"]},"fields":{},"shadow":false,"topLevel":false},")j":{"opcode":"operator_or","next":null,"parent":")i","inputs":{"OPERAND1":[2,"a#q"],"OPERAND2":[2,"a#r"]},"fields":{},"shadow":false,"topLevel":false},"a#q":{"opcode":"operator_gt","next":null,"parent":")j","inputs":{"OPERAND1":[3,"a#s",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a#s":{"opcode":"operator_mathop","next":null,"parent":"a#q","inputs":{"NUM":[3,"a#t",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a#t":{"opcode":"operator_divide","next":null,"parent":"a#s","inputs":{"NUM1":[3,"bW_",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bW_":{"opcode":"data_itemoflist","next":null,"parent":"a#t","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#r":{"opcode":"operator_equals","next":null,"parent":")j","inputs":{"OPERAND1":[3,"bW`",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bW`":{"opcode":"data_itemoflist","next":null,"parent":"a#r","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},")k":{"opcode":"operator_and","next":null,"parent":")i","inputs":{"OPERAND1":[2,"a#u"],"OPERAND2":[2,"a#v"]},"fields":{},"shadow":false,"topLevel":false},"a#u":{"opcode":"operator_gt","next":null,"parent":")k","inputs":{"OPERAND1":[3,"a#w",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a#w":{"opcode":"operator_mathop","next":null,"parent":"a#u","inputs":{"NUM":[3,"a#x",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a#x":{"opcode":"operator_divide","next":null,"parent":"a#w","inputs":{"NUM1":[3,"bW{",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bW{":{"opcode":"data_itemoflist","next":null,"parent":"a#x","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#v":{"opcode":"operator_gt","next":null,"parent":")k","inputs":{"OPERAND1":[3,"a#y",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a#y":{"opcode":"operator_mod","next":null,"parent":"a#v","inputs":{"NUM1":[3,"bW|",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bW|":{"opcode":"data_itemoflist","next":null,"parent":"a#y","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bW^":{"opcode":"data_changevariableby","next":null,"parent":"oO","inputs":{"VALUE":[1,[4,"96"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},")h":{"opcode":"data_changevariableby","next":")l","parent":"oO","inputs":{"VALUE":[3,"bW}",[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bW}":{"opcode":"data_itemoflist","next":null,"parent":")h","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},")l":{"opcode":"data_replaceitemoflist","next":")m","parent":")h","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"a#z",[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a#z":{"opcode":"operator_round","next":null,"parent":")l","inputs":{"NUM":[3,"bW~",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bW~":{"opcode":"operator_gt","next":null,"parent":"a#z","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},")m":{"opcode":"procedures_call","next":")n","parent":")l","inputs":{"]AJy~mKrUb,7+M_5L/DG":[3,"a#A",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","warp":"true"}},"a#A":{"opcode":"data_itemoflist","next":null,"parent":")m","inputs":{"INDEX":[3,"a#B",[7,""]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a#B":{"opcode":"operator_add","next":null,"parent":"a#A","inputs":{"NUM1":[3,"bXa",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXa":{"opcode":"operator_mod","next":null,"parent":"a#B","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},")n":{"opcode":"data_replaceitemoflist","next":")o","parent":")m","inputs":{"INDEX":[1,[7,"7"]],"ITEM":[3,"a#C",[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a#C":{"opcode":"operator_round","next":null,"parent":")n","inputs":{"NUM":[3,"a#D",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a#D":{"opcode":"operator_equals","next":null,"parent":"a#C","inputs":{"OPERAND1":[3,"bXb",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bXb":{"opcode":"operator_mod","next":null,"parent":"a#D","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},")o":{"opcode":"data_replaceitemoflist","next":")p","parent":")n","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"a#E",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a#E":{"opcode":"operator_round","next":null,"parent":")o","inputs":{"NUM":[3,"a#F",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a#F":{"opcode":"operator_gt","next":null,"parent":"a#E","inputs":{"OPERAND1":[3,"bXc",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bXc":{"opcode":"operator_mod","next":null,"parent":"a#F","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},")p":{"opcode":"data_replaceitemoflist","next":"bXd","parent":")o","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bXe",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bXe":{"opcode":"operator_mod","next":null,"parent":")p","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bXd":{"opcode":"data_changevariableby","next":null,"parent":")p","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a#G":{"opcode":"procedures_definition","next":"a#H","parent":null,"inputs":{"custom_block":[1,"bXf"]},"fields":{},"shadow":false,"topLevel":true,"x":2745,"y":18782},"bXf":{"opcode":"procedures_prototype","next":null,"parent":"a#G","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"OUT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a#H":{"opcode":"procedures_call","next":"a#I","parent":"a#G","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a#I":{"opcode":"procedures_call","next":"a#J","parent":"a#H","inputs":{"?m0*7}nDXhu}OGKM3[9Y":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Output to device # %s","argumentids":"[\"?m0*7}nDXhu}OGKM3[9Y\"]","warp":"true"}},"a#J":{"opcode":"data_changevariableby","next":"bXg","parent":"a#I","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bXg":{"opcode":"data_changevariableby","next":null,"parent":"a#J","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a#K":{"opcode":"procedures_definition","next":"a#L","parent":null,"inputs":{"custom_block":[1,"bXh"]},"fields":{},"shadow":false,"topLevel":true,"x":2581,"y":19852},"bXh":{"opcode":"procedures_prototype","next":null,"parent":"a#K","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"IN","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a#L":{"opcode":"procedures_call","next":"a#M","parent":"a#K","inputs":{"mDrFT4#uiurg4Fi]*G%T":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,""]],"!#ctWtPPjI+B?Uc*1(`?":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read byte %s %s","argumentids":"[\"mDrFT4#uiurg4Fi]*G%T\",\"!#ctWtPPjI+B?Uc*1(`?\"]","warp":"true"}},"a#M":{"opcode":"procedures_call","next":"a#N","parent":"a#L","inputs":{"Cm37E1C1p#dUX!wzAtMJ":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read from device # %s","argumentids":"[\"Cm37E1C1p#dUX!wzAtMJ\"]","warp":"true"}},"a#N":{"opcode":"data_replaceitemoflist","next":"a#O","parent":"a#M","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"],[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#O":{"opcode":"data_changevariableby","next":"bXi","parent":"a#N","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bXi":{"opcode":"data_changevariableby","next":null,"parent":"a#O","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a#P":{"opcode":"procedures_definition","next":"oP","parent":null,"inputs":{"custom_block":[1,"a#Q"]},"fields":{},"shadow":false,"topLevel":true,"x":8967,"y":3789},"a#Q":{"opcode":"procedures_prototype","next":null,"parent":"a#P","inputs":{"?m0*7}nDXhu}OGKM3[9Y":[1,"bXj"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Output to device # %s","argumentids":"[\"?m0*7}nDXhu}OGKM3[9Y\"]","argumentnames":"[\"device\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bXj":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#Q","inputs":{},"fields":{"VALUE":["device",null]},"shadow":true,"topLevel":false},"oP":{"opcode":"control_if","next":"a#R","parent":"a#P","inputs":{"CONDITION":[2,"bXk"],"SUBSTACK":[2,"oQ"]},"fields":{},"shadow":false,"topLevel":false},"bXk":{"opcode":"operator_equals","next":null,"parent":"oP","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"oQ":{"opcode":"control_if","next":"oR","parent":"oP","inputs":{"CONDITION":[2,"a#S"],"SUBSTACK":[2,")q"]},"fields":{},"shadow":false,"topLevel":false},"a#S":{"opcode":"operator_equals","next":null,"parent":"oQ","inputs":{"OPERAND1":[3,"bXl",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bXl":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#S","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")q":{"opcode":"data_setvariableto","next":"bXm","parent":"oQ","inputs":{"VALUE":[3,"a#T",[10,"0"]]},"fields":{"VARIABLE":["8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"]},"shadow":false,"topLevel":false},"a#T":{"opcode":"operator_mod","next":null,"parent":")q","inputs":{"NUM1":[3,"bXn",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bXn":{"opcode":"data_itemoflist","next":null,"parent":"a#T","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bXm":{"opcode":"control_stop","next":null,"parent":")q","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oR":{"opcode":"control_if","next":"oS","parent":"oQ","inputs":{"CONDITION":[2,"a#U"],"SUBSTACK":[2,"oT"]},"fields":{},"shadow":false,"topLevel":false},"a#U":{"opcode":"operator_equals","next":null,"parent":"oR","inputs":{"OPERAND1":[3,"bXo",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bXo":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#U","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"oT":{"opcode":"control_if","next":"bXp","parent":"oR","inputs":{"CONDITION":[2,"a#V"],"SUBSTACK":[2,")r"]},"fields":{},"shadow":false,"topLevel":false},"a#V":{"opcode":"operator_not","next":null,"parent":"oT","inputs":{"OPERAND":[2,"a#W"]},"fields":{},"shadow":false,"topLevel":false},"a#W":{"opcode":"operator_equals","next":null,"parent":"a#V","inputs":{"OPERAND1":[3,"a#X",[10,""]],"OPERAND2":[3,[12,"8080.lastout","Um=PAsB@zaqnQwbwz2%7"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a#X":{"opcode":"operator_mod","next":null,"parent":"a#W","inputs":{"NUM1":[3,"bXq",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bXq":{"opcode":"data_itemoflist","next":null,"parent":"a#X","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},")r":{"opcode":"data_setvariableto","next":"oU","parent":"oT","inputs":{"VALUE":[3,"a#Y",[10,"0"]]},"fields":{"VARIABLE":["8080.lastout","Um=PAsB@zaqnQwbwz2%7"]},"shadow":false,"topLevel":false},"a#Y":{"opcode":"operator_mod","next":null,"parent":")r","inputs":{"NUM1":[3,"bXr",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bXr":{"opcode":"data_itemoflist","next":null,"parent":"a#Y","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"oU":{"opcode":"control_if","next":"oV","parent":")r","inputs":{"CONDITION":[2,"a#Z"],"SUBSTACK":[2,"a#!"]},"fields":{},"shadow":false,"topLevel":false},"a#Z":{"opcode":"operator_equals","next":null,"parent":"oU","inputs":{"OPERAND1":[3,"a##",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a##":{"opcode":"operator_letter_of","next":null,"parent":"a#Z","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,"a#%",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a#%":{"opcode":"data_itemoflist","next":null,"parent":"a##","inputs":{"INDEX":[3,"a#(",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a#(":{"opcode":"operator_add","next":null,"parent":"a#%","inputs":{"NUM1":[3,"bXs",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXs":{"opcode":"data_itemoflist","next":null,"parent":"a#(","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#!":{"opcode":"sound_play","next":null,"parent":"oU","inputs":{"SOUND_MENU":[1,"bXt"]},"fields":{},"shadow":false,"topLevel":false},"bXt":{"opcode":"sound_sounds_menu","next":null,"parent":"a#!","inputs":{},"fields":{"SOUND_MENU":["3",null]},"shadow":true,"topLevel":false},"oV":{"opcode":"control_if","next":"oW","parent":"oU","inputs":{"CONDITION":[2,"a#)"],"SUBSTACK":[2,"a#*"]},"fields":{},"shadow":false,"topLevel":false},"a#)":{"opcode":"operator_equals","next":null,"parent":"oV","inputs":{"OPERAND1":[3,"a#+",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a#+":{"opcode":"operator_letter_of","next":null,"parent":"a#)","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,"a#,",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a#,":{"opcode":"data_itemoflist","next":null,"parent":"a#+","inputs":{"INDEX":[3,"a#-",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a#-":{"opcode":"operator_add","next":null,"parent":"a#,","inputs":{"NUM1":[3,"bXu",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXu":{"opcode":"data_itemoflist","next":null,"parent":"a#-","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#*":{"opcode":"sound_play","next":null,"parent":"oV","inputs":{"SOUND_MENU":[1,"bXv"]},"fields":{},"shadow":false,"topLevel":false},"bXv":{"opcode":"sound_sounds_menu","next":null,"parent":"a#*","inputs":{},"fields":{"SOUND_MENU":["2",null]},"shadow":true,"topLevel":false},"oW":{"opcode":"control_if","next":")s","parent":"oV","inputs":{"CONDITION":[2,"a#."],"SUBSTACK":[2,"a#/"]},"fields":{},"shadow":false,"topLevel":false},"a#.":{"opcode":"operator_equals","next":null,"parent":"oW","inputs":{"OPERAND1":[3,"a#:",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a#:":{"opcode":"operator_letter_of","next":null,"parent":"a#.","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,"a#;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a#;":{"opcode":"data_itemoflist","next":null,"parent":"a#:","inputs":{"INDEX":[3,"a#=",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a#=":{"opcode":"operator_add","next":null,"parent":"a#;","inputs":{"NUM1":[3,"bXw",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXw":{"opcode":"data_itemoflist","next":null,"parent":"a#=","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#/":{"opcode":"sound_play","next":null,"parent":"oW","inputs":{"SOUND_MENU":[1,"bXx"]},"fields":{},"shadow":false,"topLevel":false},"bXx":{"opcode":"sound_sounds_menu","next":null,"parent":"a#/","inputs":{},"fields":{"SOUND_MENU":["1",null]},"shadow":true,"topLevel":false},")s":{"opcode":"control_if","next":null,"parent":"oW","inputs":{"CONDITION":[2,"a#?"],"SUBSTACK":[2,"a#@"]},"fields":{},"shadow":false,"topLevel":false},"a#?":{"opcode":"operator_equals","next":null,"parent":")s","inputs":{"OPERAND1":[3,"a#[",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a#[":{"opcode":"operator_letter_of","next":null,"parent":"a#?","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,"a#]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a#]":{"opcode":"data_itemoflist","next":null,"parent":"a#[","inputs":{"INDEX":[3,"a#^",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a#^":{"opcode":"operator_add","next":null,"parent":"a#]","inputs":{"NUM1":[3,"bXy",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXy":{"opcode":"data_itemoflist","next":null,"parent":"a#^","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#@":{"opcode":"sound_play","next":null,"parent":")s","inputs":{"SOUND_MENU":[1,"bXz"]},"fields":{},"shadow":false,"topLevel":false},"bXz":{"opcode":"sound_sounds_menu","next":null,"parent":"a#@","inputs":{},"fields":{"SOUND_MENU":["0",null]},"shadow":true,"topLevel":false},"bXp":{"opcode":"control_stop","next":null,"parent":"oT","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oS":{"opcode":"control_if","next":"oX","parent":"oR","inputs":{"CONDITION":[2,"a#_"],"SUBSTACK":[2,")t"]},"fields":{},"shadow":false,"topLevel":false},"a#_":{"opcode":"operator_equals","next":null,"parent":"oS","inputs":{"OPERAND1":[3,"bXA",[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bXA":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#_","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")t":{"opcode":"data_replaceitemoflist","next":"bXB","parent":"oS","inputs":{"INDEX":[1,[7,"9"]],"ITEM":[3,")u",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},")u":{"opcode":"operator_add","next":null,"parent":")t","inputs":{"NUM1":[3,"a#`",[4,""]],"NUM2":[3,"a#{",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a#`":{"opcode":"operator_multiply","next":null,"parent":")u","inputs":{"NUM1":[3,"bXC",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bXC":{"opcode":"data_itemoflist","next":null,"parent":"a#`","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a#{":{"opcode":"operator_mathop","next":null,"parent":")u","inputs":{"NUM":[3,"a#|",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a#|":{"opcode":"operator_divide","next":null,"parent":"a#{","inputs":{"NUM1":[3,"bXD",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bXD":{"opcode":"data_itemoflist","next":null,"parent":"a#|","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bXB":{"opcode":"control_stop","next":null,"parent":")t","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"oX":{"opcode":"control_if","next":")v","parent":"oS","inputs":{"CONDITION":[2,"a#}"],"SUBSTACK":[2,"oY"]},"fields":{},"shadow":false,"topLevel":false},"a#}":{"opcode":"operator_equals","next":null,"parent":"oX","inputs":{"OPERAND1":[3,"bXE",[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"bXE":{"opcode":"argument_reporter_string_number","next":null,"parent":"a#}","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"oY":{"opcode":"control_if","next":"oZ","parent":"oX","inputs":{"CONDITION":[2,"a#~"],"SUBSTACK":[2,"a%a"]},"fields":{},"shadow":false,"topLevel":false},"a#~":{"opcode":"operator_equals","next":null,"parent":"oY","inputs":{"OPERAND1":[3,"a%b",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%b":{"opcode":"operator_letter_of","next":null,"parent":"a#~","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,"a%c",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%c":{"opcode":"data_itemoflist","next":null,"parent":"a%b","inputs":{"INDEX":[3,"a%d",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a%d":{"opcode":"operator_add","next":null,"parent":"a%c","inputs":{"NUM1":[3,"bXF",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXF":{"opcode":"data_itemoflist","next":null,"parent":"a%d","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%a":{"opcode":"sound_play","next":null,"parent":"oY","inputs":{"SOUND_MENU":[1,"bXG"]},"fields":{},"shadow":false,"topLevel":false},"bXG":{"opcode":"sound_sounds_menu","next":null,"parent":"a%a","inputs":{},"fields":{"SOUND_MENU":["4",null]},"shadow":true,"topLevel":false},"oZ":{"opcode":"control_if","next":"o!","parent":"oY","inputs":{"CONDITION":[2,"a%e"],"SUBSTACK":[2,"a%f"]},"fields":{},"shadow":false,"topLevel":false},"a%e":{"opcode":"operator_equals","next":null,"parent":"oZ","inputs":{"OPERAND1":[3,"a%g",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%g":{"opcode":"operator_letter_of","next":null,"parent":"a%e","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,"a%h",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%h":{"opcode":"data_itemoflist","next":null,"parent":"a%g","inputs":{"INDEX":[3,"a%i",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a%i":{"opcode":"operator_add","next":null,"parent":"a%h","inputs":{"NUM1":[3,"bXH",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXH":{"opcode":"data_itemoflist","next":null,"parent":"a%i","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%f":{"opcode":"sound_play","next":null,"parent":"oZ","inputs":{"SOUND_MENU":[1,"bXI"]},"fields":{},"shadow":false,"topLevel":false},"bXI":{"opcode":"sound_sounds_menu","next":null,"parent":"a%f","inputs":{},"fields":{"SOUND_MENU":["5",null]},"shadow":true,"topLevel":false},"o!":{"opcode":"control_if","next":"o#","parent":"oZ","inputs":{"CONDITION":[2,"a%j"],"SUBSTACK":[2,"a%k"]},"fields":{},"shadow":false,"topLevel":false},"a%j":{"opcode":"operator_equals","next":null,"parent":"o!","inputs":{"OPERAND1":[3,"a%l",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%l":{"opcode":"operator_letter_of","next":null,"parent":"a%j","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,"a%m",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%m":{"opcode":"data_itemoflist","next":null,"parent":"a%l","inputs":{"INDEX":[3,"a%n",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a%n":{"opcode":"operator_add","next":null,"parent":"a%m","inputs":{"NUM1":[3,"bXJ",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXJ":{"opcode":"data_itemoflist","next":null,"parent":"a%n","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%k":{"opcode":"sound_play","next":null,"parent":"o!","inputs":{"SOUND_MENU":[1,"bXK"]},"fields":{},"shadow":false,"topLevel":false},"bXK":{"opcode":"sound_sounds_menu","next":null,"parent":"a%k","inputs":{},"fields":{"SOUND_MENU":["6",null]},"shadow":true,"topLevel":false},"o#":{"opcode":"control_if","next":"o%","parent":"o!","inputs":{"CONDITION":[2,"a%o"],"SUBSTACK":[2,"a%p"]},"fields":{},"shadow":false,"topLevel":false},"a%o":{"opcode":"operator_equals","next":null,"parent":"o#","inputs":{"OPERAND1":[3,"a%q",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%q":{"opcode":"operator_letter_of","next":null,"parent":"a%o","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,"a%r",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%r":{"opcode":"data_itemoflist","next":null,"parent":"a%q","inputs":{"INDEX":[3,"a%s",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a%s":{"opcode":"operator_add","next":null,"parent":"a%r","inputs":{"NUM1":[3,"bXL",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXL":{"opcode":"data_itemoflist","next":null,"parent":"a%s","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%p":{"opcode":"sound_play","next":null,"parent":"o#","inputs":{"SOUND_MENU":[1,"bXM"]},"fields":{},"shadow":false,"topLevel":false},"bXM":{"opcode":"sound_sounds_menu","next":null,"parent":"a%p","inputs":{},"fields":{"SOUND_MENU":["7",null]},"shadow":true,"topLevel":false},"o%":{"opcode":"control_if","next":"bXN","parent":"o#","inputs":{"CONDITION":[2,"a%t"],"SUBSTACK":[2,"a%u"]},"fields":{},"shadow":false,"topLevel":false},"a%t":{"opcode":"operator_equals","next":null,"parent":"o%","inputs":{"OPERAND1":[3,"a%v",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%v":{"opcode":"operator_letter_of","next":null,"parent":"a%t","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,"a%w",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%w":{"opcode":"data_itemoflist","next":null,"parent":"a%v","inputs":{"INDEX":[3,"a%x",[7,"1"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a%x":{"opcode":"operator_add","next":null,"parent":"a%w","inputs":{"NUM1":[3,"bXO",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXO":{"opcode":"data_itemoflist","next":null,"parent":"a%x","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%u":{"opcode":"sound_play","next":null,"parent":"o%","inputs":{"SOUND_MENU":[1,"bXP"]},"fields":{},"shadow":false,"topLevel":false},"bXP":{"opcode":"sound_sounds_menu","next":null,"parent":"a%u","inputs":{},"fields":{"SOUND_MENU":["8",null]},"shadow":true,"topLevel":false},"bXN":{"opcode":"control_stop","next":null,"parent":"o%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},")v":{"opcode":"control_if","next":null,"parent":"oX","inputs":{"CONDITION":[2,"a%y"],"SUBSTACK":[2,"bXQ"]},"fields":{},"shadow":false,"topLevel":false},"a%y":{"opcode":"operator_equals","next":null,"parent":")v","inputs":{"OPERAND1":[3,"bXR",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"bXR":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%y","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"bXQ":{"opcode":"control_stop","next":null,"parent":")v","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a#R":{"opcode":"data_showlist","next":"bXS","parent":"oP","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bXS":{"opcode":"control_stop","next":null,"parent":"a#R","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a%z":{"opcode":"procedures_definition","next":"o(","parent":null,"inputs":{"custom_block":[1,"a%A"]},"fields":{},"shadow":false,"topLevel":true,"x":4969,"y":3695},"a%A":{"opcode":"procedures_prototype","next":null,"parent":"a%z","inputs":{"Cm37E1C1p#dUX!wzAtMJ":[1,"bXT"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Read from device # %s","argumentids":"[\"Cm37E1C1p#dUX!wzAtMJ\"]","argumentnames":"[\"device\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bXT":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%A","inputs":{},"fields":{"VALUE":["device",null]},"shadow":true,"topLevel":false},"o(":{"opcode":"control_if","next":")w","parent":"a%z","inputs":{"CONDITION":[2,"bXU"],"SUBSTACK":[2,"o)"]},"fields":{},"shadow":false,"topLevel":false},"bXU":{"opcode":"operator_equals","next":null,"parent":"o(","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o)":{"opcode":"control_if","next":"NK","parent":"o(","inputs":{"CONDITION":[2,"a%B"],"SUBSTACK":[2,"a%C"]},"fields":{},"shadow":false,"topLevel":false},"a%B":{"opcode":"operator_equals","next":null,"parent":"o)","inputs":{"OPERAND1":[3,"bXV",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bXV":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%B","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"a%C":{"opcode":"data_setvariableto","next":"bXW","parent":"o)","inputs":{"VALUE":[1,[10,"112"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"bXW":{"opcode":"control_stop","next":null,"parent":"a%C","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"NK":{"opcode":"control_if","next":"o*","parent":"o)","inputs":{"CONDITION":[2,"a%D"],"SUBSTACK":[2,")x"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bXX"},"a%D":{"opcode":"operator_equals","next":null,"parent":"NK","inputs":{"OPERAND1":[3,"bXY",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bXY":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%D","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")x":{"opcode":"data_setvariableto","next":"bXZ","parent":"NK","inputs":{"VALUE":[3,"a%E",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"a%E":{"opcode":"operator_round","next":null,"parent":")x","inputs":{"NUM":[3,"a%F",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a%F":{"opcode":"operator_join","next":null,"parent":"a%E","inputs":{"STRING1":[1,[10,"0b0"]],"STRING2":[3,")y",[10,""]]},"fields":{},"shadow":false,"topLevel":false},")y":{"opcode":"operator_join","next":null,"parent":"a%F","inputs":{"STRING1":[3,")z",[10,""]],"STRING2":[3,")A",[10,""]]},"fields":{},"shadow":false,"topLevel":false},")z":{"opcode":"operator_join","next":null,"parent":")y","inputs":{"STRING1":[3,"a%G",[10,""]],"STRING2":[3,")B",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%G":{"opcode":"operator_round","next":null,"parent":")z","inputs":{"NUM":[3,")C",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")C":{"opcode":"sensing_keypressed","next":null,"parent":"a%G","inputs":{"KEY_OPTION":[3,"bX!","bX#"]},"fields":{},"shadow":false,"topLevel":false},"bX!":{"opcode":"data_itemoflist","next":null,"parent":")C","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX#":{"opcode":"sensing_keyoptions","next":null,"parent":")C","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},")B":{"opcode":"operator_join","next":null,"parent":")z","inputs":{"STRING1":[3,"a%H",[10,""]],"STRING2":[3,"a%I",[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a%H":{"opcode":"operator_round","next":null,"parent":")B","inputs":{"NUM":[3,")D",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")D":{"opcode":"sensing_keypressed","next":null,"parent":"a%H","inputs":{"KEY_OPTION":[3,"bX%","bX("]},"fields":{},"shadow":false,"topLevel":false},"bX%":{"opcode":"data_itemoflist","next":null,"parent":")D","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX(":{"opcode":"sensing_keyoptions","next":null,"parent":")D","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a%I":{"opcode":"operator_round","next":null,"parent":")B","inputs":{"NUM":[3,")E",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")E":{"opcode":"sensing_keypressed","next":null,"parent":"a%I","inputs":{"KEY_OPTION":[3,"bX)","bX*"]},"fields":{},"shadow":false,"topLevel":false},"bX)":{"opcode":"data_itemoflist","next":null,"parent":")E","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX*":{"opcode":"sensing_keyoptions","next":null,"parent":")E","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},")A":{"opcode":"operator_join","next":null,"parent":")y","inputs":{"STRING1":[3,"a%J",[10,""]],"STRING2":[3,")F",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%J":{"opcode":"operator_join","next":null,"parent":")A","inputs":{"STRING1":[1,[10,"0"]],"STRING2":[3,"a%K",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%K":{"opcode":"operator_round","next":null,"parent":"a%J","inputs":{"NUM":[3,")G",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")G":{"opcode":"sensing_keypressed","next":null,"parent":"a%K","inputs":{"KEY_OPTION":[3,"bX+","bX,"]},"fields":{},"shadow":false,"topLevel":false},"bX+":{"opcode":"data_itemoflist","next":null,"parent":")G","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX,":{"opcode":"sensing_keyoptions","next":null,"parent":")G","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},")F":{"opcode":"operator_join","next":null,"parent":")A","inputs":{"STRING1":[3,"a%L",[10,"1"]],"STRING2":[3,"a%M",[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a%L":{"opcode":"operator_round","next":null,"parent":")F","inputs":{"NUM":[3,")H",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")H":{"opcode":"sensing_keypressed","next":null,"parent":"a%L","inputs":{"KEY_OPTION":[3,"bX-","bX."]},"fields":{},"shadow":false,"topLevel":false},"bX-":{"opcode":"data_itemoflist","next":null,"parent":")H","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX.":{"opcode":"sensing_keyoptions","next":null,"parent":")H","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"a%M":{"opcode":"operator_round","next":null,"parent":")F","inputs":{"NUM":[3,")I",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")I":{"opcode":"sensing_keypressed","next":null,"parent":"a%M","inputs":{"KEY_OPTION":[3,"bX/","bX:"]},"fields":{},"shadow":false,"topLevel":false},"bX/":{"opcode":"data_itemoflist","next":null,"parent":")I","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX:":{"opcode":"sensing_keyoptions","next":null,"parent":")I","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bXZ":{"opcode":"control_stop","next":null,"parent":")x","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o*":{"opcode":"control_if","next":")J","parent":"NK","inputs":{"CONDITION":[2,"a%N"],"SUBSTACK":[2,")K"]},"fields":{},"shadow":false,"topLevel":false},"a%N":{"opcode":"operator_equals","next":null,"parent":"o*","inputs":{"OPERAND1":[3,"bX;",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bX;":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%N","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")K":{"opcode":"data_setvariableto","next":"bX=","parent":"o*","inputs":{"VALUE":[3,"a%O",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"a%O":{"opcode":"operator_round","next":null,"parent":")K","inputs":{"NUM":[3,"a%P",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a%P":{"opcode":"operator_join","next":null,"parent":"a%O","inputs":{"STRING1":[1,[10,"0b0"]],"STRING2":[3,"a%Q",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%Q":{"opcode":"operator_join","next":null,"parent":"a%P","inputs":{"STRING1":[3,")L",[10,""]],"STRING2":[1,[10,"0000"]]},"fields":{},"shadow":false,"topLevel":false},")L":{"opcode":"operator_join","next":null,"parent":"a%Q","inputs":{"STRING1":[3,")M",[10,""]],"STRING2":[3,"a%R",[10,""]]},"fields":{},"shadow":false,"topLevel":false},")M":{"opcode":"operator_join","next":null,"parent":")L","inputs":{"STRING1":[3,"a%S",[10,""]],"STRING2":[3,"a%T",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a%S":{"opcode":"operator_round","next":null,"parent":")M","inputs":{"NUM":[3,")N",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")N":{"opcode":"sensing_keypressed","next":null,"parent":"a%S","inputs":{"KEY_OPTION":[3,"bX?","bX@"]},"fields":{},"shadow":false,"topLevel":false},"bX?":{"opcode":"data_itemoflist","next":null,"parent":")N","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX@":{"opcode":"sensing_keyoptions","next":null,"parent":")N","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a%T":{"opcode":"operator_round","next":null,"parent":")M","inputs":{"NUM":[3,")O",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")O":{"opcode":"sensing_keypressed","next":null,"parent":"a%T","inputs":{"KEY_OPTION":[3,"bX[","bX]"]},"fields":{},"shadow":false,"topLevel":false},"bX[":{"opcode":"data_itemoflist","next":null,"parent":")O","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX]":{"opcode":"sensing_keyoptions","next":null,"parent":")O","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"a%R":{"opcode":"operator_round","next":null,"parent":")L","inputs":{"NUM":[3,")P",[4,""]]},"fields":{},"shadow":false,"topLevel":false},")P":{"opcode":"sensing_keypressed","next":null,"parent":"a%R","inputs":{"KEY_OPTION":[3,"bX^","bX_"]},"fields":{},"shadow":false,"topLevel":false},"bX^":{"opcode":"data_itemoflist","next":null,"parent":")P","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["controls.SI8080","xYpkP=%}3N3fIXniRLxO"]},"shadow":false,"topLevel":false},"bX_":{"opcode":"sensing_keyoptions","next":null,"parent":")P","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"bX=":{"opcode":"control_stop","next":null,"parent":")K","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},")J":{"opcode":"control_if","next":null,"parent":"o*","inputs":{"CONDITION":[2,"a%U"],"SUBSTACK":[2,")Q"]},"fields":{},"shadow":false,"topLevel":false},"a%U":{"opcode":"operator_equals","next":null,"parent":")J","inputs":{"OPERAND1":[3,"bX`",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bX`":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%U","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")Q":{"opcode":"data_addtolist","next":")R","parent":")J","inputs":{"ITEM":[3,"a%V",[10,""]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"a%V":{"opcode":"operator_join","next":null,"parent":")Q","inputs":{"STRING1":[1,[10,"IN device ID # "]],"STRING2":[3,"bX{",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bX{":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%V","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},")R":{"opcode":"data_setvariableto","next":"bX|","parent":")Q","inputs":{"VALUE":[3,"a%W",[10,"0"]]},"fields":{"VARIABLE":["8080.readreturn","mZ)9?(KkB8T|Agp7]MZ9"]},"shadow":false,"topLevel":false},"a%W":{"opcode":"operator_mathop","next":null,"parent":")R","inputs":{"NUM":[3,"a%X",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"a%X":{"opcode":"operator_divide","next":null,"parent":"a%W","inputs":{"NUM1":[3,"a%Y",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"a%Y":{"opcode":"operator_mod","next":null,"parent":"a%X","inputs":{"NUM1":[3,")S",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},")S":{"opcode":"operator_multiply","next":null,"parent":"a%Y","inputs":{"NUM1":[3,"bX}",[4,""]],"NUM2":[3,"a%Z",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bX}":{"opcode":"data_itemoflist","next":null,"parent":")S","inputs":{"INDEX":[1,[7,"9"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a%Z":{"opcode":"operator_mathop","next":null,"parent":")S","inputs":{"NUM":[3,"a%!",[4,""]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"a%!":{"opcode":"operator_multiply","next":null,"parent":"a%Z","inputs":{"NUM1":[3,"bX~",[4,""]],"NUM2":[3,[12,"8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bX~":{"opcode":"operator_mathop","next":null,"parent":"a%!","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"bX|":{"opcode":"control_stop","next":null,"parent":")R","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},")w":{"opcode":"data_addtolist","next":"a%#","parent":"o(","inputs":{"ITEM":[3,"a%%",[10,""]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"a%%":{"opcode":"operator_join","next":null,"parent":")w","inputs":{"STRING1":[1,[10,"Invalid IN device ID # "]],"STRING2":[3,"bYa",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bYa":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%%","inputs":{},"fields":{"VALUE":["device",null]},"shadow":false,"topLevel":false},"a%#":{"opcode":"data_showlist","next":"bYb","parent":")w","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bYb":{"opcode":"control_stop","next":null,"parent":"a%#","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a%(":{"opcode":"procedures_definition","next":")T","parent":null,"inputs":{"custom_block":[1,"a%)"]},"fields":{},"shadow":false,"topLevel":true,"x":2258,"y":749},"a%)":{"opcode":"procedures_prototype","next":null,"parent":"a%(","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,"bYc"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","argumentnames":"[\"interrupt #\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bYc":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%)","inputs":{},"fields":{"VALUE":["interrupt #",null]},"shadow":true,"topLevel":false},")T":{"opcode":"control_if","next":null,"parent":"a%(","inputs":{"CONDITION":[2,"bYd"],"SUBSTACK":[2,"o+"]},"fields":{},"shadow":false,"topLevel":false},"bYd":{"opcode":"operator_equals","next":null,"parent":")T","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o+":{"opcode":"control_if","next":"bYe","parent":")T","inputs":{"CONDITION":[2,"bYf"],"SUBSTACK":[2,"a%*"]},"fields":{},"shadow":false,"topLevel":false},"bYf":{"opcode":"operator_equals","next":null,"parent":"o+","inputs":{"OPERAND1":[3,[12,"8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a%*":{"opcode":"procedures_call","next":null,"parent":"o+","inputs":{"Nly7r;0p+BbS~@rJbb1Z":[3,"bYg",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"RST %s","argumentids":"[\"Nly7r;0p+BbS~@rJbb1Z\"]","warp":"true"}},"bYg":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%*","inputs":{},"fields":{"VALUE":["interrupt #",null]},"shadow":false,"topLevel":false},"bYe":{"opcode":"data_setvariableto","next":null,"parent":"o+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"a%+":{"opcode":"procedures_definition","next":"a%,","parent":null,"inputs":{"custom_block":[1,"a%-"]},"fields":{},"shadow":false,"topLevel":true,"x":9083,"y":1628},"a%-":{"opcode":"procedures_prototype","next":null,"parent":"a%+","inputs":{"]AJy~mKrUb,7+M_5L/DG":[1,"bYh"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"parity flag %s","argumentids":"[\"]AJy~mKrUb,7+M_5L/DG\"]","argumentnames":"[\"binary\"]","argumentdefaults":"[\"\"]","warp":"true"}},"bYh":{"opcode":"argument_reporter_string_number","next":null,"parent":"a%-","inputs":{},"fields":{"VALUE":["binary",null]},"shadow":true,"topLevel":false},"a%,":{"opcode":"data_setvariableto","next":"a%.","parent":"a%+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"a%.":{"opcode":"control_clear_counter","next":")U","parent":"a%,","inputs":{},"fields":{},"shadow":false,"topLevel":false},")U":{"opcode":"control_repeat","next":"a%/","parent":"a%.","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"a%:"]},"fields":{},"shadow":false,"topLevel":false},"a%:":{"opcode":"control_incr_counter","next":"a%;","parent":")U","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a%;":{"opcode":"data_changevariableby","next":null,"parent":"a%:","inputs":{"VALUE":[3,")V",[4,"1"]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},")V":{"opcode":"operator_letter_of","next":null,"parent":"a%;","inputs":{"LETTER":[3,"bYi",[6,"1"]],"STRING":[3,"bYj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bYi":{"opcode":"control_get_counter","next":null,"parent":")V","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bYj":{"opcode":"argument_reporter_string_number","next":null,"parent":")V","inputs":{},"fields":{"VALUE":["binary",null]},"shadow":false,"topLevel":false},"a%/":{"opcode":"data_replaceitemoflist","next":null,"parent":")U","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"a%=",[10,""]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a%=":{"opcode":"operator_mod","next":null,"parent":"a%/","inputs":{"NUM1":[3,"a%?",[4,"1"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a%?":{"opcode":"operator_add","next":null,"parent":"a%=","inputs":{"NUM1":[3,"bYk",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bYk":{"opcode":"operator_mod","next":null,"parent":"a%?","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"a%@":{"opcode":"procedures_definition","next":")W","parent":null,"inputs":{"custom_block":[1,"bYl"]},"fields":{},"shadow":false,"topLevel":true,"x":910,"y":1302},"bYl":{"opcode":"procedures_prototype","next":null,"parent":"a%@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"8080.frame","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},")W":{"opcode":"data_setvariableto","next":"a%[","parent":"a%@","inputs":{"VALUE":[3,"bYm",[10,"0"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"bYm":{"opcode":"sensing_dayssince2000","next":null,"parent":")W","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a%[":{"opcode":"procedures_call","next":"a%]","parent":")W","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,[10,"16667"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","warp":"true"}},"a%]":{"opcode":"procedures_call","next":"a%^","parent":"a%[","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","warp":"true"}},"a%^":{"opcode":"procedures_call","next":"a%_","parent":"a%]","inputs":{"~aXH:%i,o85|#)yL(Rns":[1,[10,"16667"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Step CPU %s","argumentids":"[\"~aXH:%i,o85|#)yL(Rns\"]","warp":"true"}},"a%_":{"opcode":"procedures_call","next":"o,","parent":"a%^","inputs":{"njcBfPE)!}8eDT;wO_(r":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Interrupt %s","argumentids":"[\"njcBfPE)!}8eDT;wO_(r\"]","warp":"true"}},"o,":{"opcode":"control_if","next":"a%`","parent":"a%_","inputs":{"CONDITION":[2,"bYn"],"SUBSTACK":[2,"o-"]},"fields":{},"shadow":false,"topLevel":false},"bYn":{"opcode":"operator_equals","next":null,"parent":"o,","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o-":{"opcode":"control_if_else","next":null,"parent":"o,","inputs":{"CONDITION":[2,"bYo"],"SUBSTACK":[2,"bYp"],"SUBSTACK2":[2,"bYq"]},"fields":{},"shadow":false,"topLevel":false},"bYo":{"opcode":"operator_equals","next":null,"parent":"o-","inputs":{"OPERAND1":[3,[12,"8080.screenrotation","_T_UX}bQ?Q+%Ar.;!SD#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bYp":{"opcode":"procedures_call","next":null,"parent":"o-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.vertical","argumentids":"[]","warp":"true"}},"bYq":{"opcode":"procedures_call","next":null,"parent":"o-","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.horizontal","argumentids":"[]","warp":"true"}},"a%`":{"opcode":"data_setvariableto","next":null,"parent":"o,","inputs":{"VALUE":[3,"a%{",[10,"0"]]},"fields":{"VARIABLE":["FPS","y:MI[jH$Un515#+v3[#@"]},"shadow":false,"topLevel":false},"a%{":{"opcode":"operator_divide","next":null,"parent":"a%`","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a%|",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a%|":{"opcode":"operator_multiply","next":null,"parent":"a%{","inputs":{"NUM1":[3,"a%}",[4,"0"]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"a%}":{"opcode":"operator_subtract","next":null,"parent":"a%|","inputs":{"NUM1":[3,"bYr",[4,"0"]],"NUM2":[3,[12,"frame","wf$pnFUa#7qieC$aq~T9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bYr":{"opcode":"sensing_dayssince2000","next":null,"parent":"a%}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a%~":{"opcode":"procedures_definition","next":"a(a","parent":null,"inputs":{"custom_block":[1,"bYs"]},"fields":{},"shadow":false,"topLevel":true,"x":439,"y":1880},"bYs":{"opcode":"procedures_prototype","next":null,"parent":"a%~","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"8080.boot","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"a(a":{"opcode":"data_setvariableto","next":"a(b","parent":"a%~","inputs":{"VALUE":[3,[12,"_PC","w=hd1PshEda%bO|xM^6q"],[10,"1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"a(b":{"opcode":"data_setvariableto","next":"a(c","parent":"a(a","inputs":{"VALUE":[1,[10,"356"]]},"fields":{"VARIABLE":["_SP","Au!*6~mqLy!.|jpv|6f!"]},"shadow":false,"topLevel":false},"a(c":{"opcode":"data_setvariableto","next":"a(d","parent":"a(b","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.InterruptFlag","j+^-/^#ziTd]J%3izp|U"]},"shadow":false,"topLevel":false},"a(d":{"opcode":"data_setvariableto","next":"a(e","parent":"a(c","inputs":{"VALUE":[1,[10,"420"]]},"fields":{"VARIABLE":["8080.lastout","Um=PAsB@zaqnQwbwz2%7"]},"shadow":false,"topLevel":false},"a(e":{"opcode":"data_deletealloflist","next":"o.","parent":"a(d","inputs":{},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"o.":{"opcode":"control_repeat","next":"a(f","parent":"a(e","inputs":{"TIMES":[1,[6,"9"]],"SUBSTACK":[2,"bYu"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bYt"},"bYu":{"opcode":"data_addtolist","next":null,"parent":"o.","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a(f":{"opcode":"data_deletealloflist","next":"o/","parent":"o.","inputs":{},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"o/":{"opcode":"control_repeat","next":"a(g","parent":"a(f","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"bYw"]},"fields":{},"shadow":false,"topLevel":false,"comment":"bYv"},"bYw":{"opcode":"data_addtolist","next":null,"parent":"o/","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a(g":{"opcode":"data_replaceitemoflist","next":"a(h","parent":"o/","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["_flags",")yF+1`NW6;S!1GicT2N]"]},"shadow":false,"topLevel":false},"a(h":{"opcode":"data_deletealloflist","next":")X","parent":"a(g","inputs":{},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},")X":{"opcode":"control_repeat","next":"a(i","parent":"a(h","inputs":{"TIMES":[1,[6,"65536"]],"SUBSTACK":[2,"bYx"]},"fields":{},"shadow":false,"topLevel":false},"bYx":{"opcode":"data_addtolist","next":null,"parent":")X","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"a(i":{"opcode":"data_deletealloflist","next":"a(j","parent":")X","inputs":{},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"a(j":{"opcode":"data_deletealloflist","next":"a(k","parent":"a(i","inputs":{},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"a(k":{"opcode":"data_deletealloflist","next":")Y","parent":"a(j","inputs":{},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},")Y":{"opcode":"control_repeat","next":"a(l","parent":"a(k","inputs":{"TIMES":[1,[6,"7168"]],"SUBSTACK":[2,"a(m"]},"fields":{},"shadow":false,"topLevel":false},"a(m":{"opcode":"data_addtolist","next":"bYy","parent":")Y","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"bYy":{"opcode":"data_addtolist","next":null,"parent":"a(m","inputs":{"ITEM":[1,[10,"-1"]]},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},"a(l":{"opcode":"data_setvariableto","next":"a(n","parent":")Y","inputs":{"VALUE":[1,[10,"65536"]]},"fields":{"VARIABLE":["8080.RAM mirror","yuzMq0ho]TXgzPWJIl=#"]},"shadow":false,"topLevel":false},"a(n":{"opcode":"data_deletealloflist","next":"a(o","parent":"a(l","inputs":{},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(o":{"opcode":"data_addtolist","next":"a(p","parent":"a(n","inputs":{"ITEM":[1,[10,"0x00000000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(p":{"opcode":"data_addtolist","next":"a(q","parent":"a(o","inputs":{"ITEM":[1,[10,"0xFFFFFF"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(q":{"opcode":"data_addtolist","next":"a(r","parent":"a(p","inputs":{"ITEM":[1,[10,"0xFF0000"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(r":{"opcode":"data_addtolist","next":"o:","parent":"a(q","inputs":{"ITEM":[1,[10,"0x00FF00"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"o:":{"opcode":"control_if","next":"a(s","parent":"a(r","inputs":{"CONDITION":[2,"bYz"],"SUBSTACK":[2,"bYA"]},"fields":{},"shadow":false,"topLevel":false},"bYz":{"opcode":"operator_equals","next":null,"parent":"o:","inputs":{"OPERAND1":[3,[12,"8080.mode","m]ROHZvewvW*HDY)ha@)"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bYA":{"opcode":"data_replaceitemoflist","next":null,"parent":"o:","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[1,[10,"0xC9"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"a(s":{"opcode":"data_setvariableto","next":"a(t","parent":"o:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.shift register offset","M}(6FQ$ph-O-oCmv%Unj"]},"shadow":false,"topLevel":false},"a(t":{"opcode":"control_clear_counter","next":"o;","parent":"a(s","inputs":{},"fields":{},"shadow":false,"topLevel":false},"o;":{"opcode":"control_repeat","next":"a(u","parent":"a(t","inputs":{"TIMES":[3,"a(v",[6,"0"]],"SUBSTACK":[2,"o="]},"fields":{},"shadow":false,"topLevel":false},"a(v":{"opcode":"operator_add","next":null,"parent":"o;","inputs":{"NUM1":[3,"bYB",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bYB":{"opcode":"data_lengthoflist","next":null,"parent":"a(v","inputs":{},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"o=":{"opcode":"data_replaceitemoflist","next":"a(w","parent":"o;","inputs":{"INDEX":[3,"bYC",[7,"0"]],"ITEM":[3,"a(x",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bYC":{"opcode":"operator_add","next":null,"parent":"o=","inputs":{"NUM1":[3,[12,"8080.cycles","Sx;#S`yw8}4Z[VDB*X~["],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a(x":{"opcode":"data_itemoflist","next":null,"parent":"o=","inputs":{"INDEX":[3,"a(y",[7,"0"]]},"fields":{"LIST":["_rom","mLiY::;)lv|cNt1?Woo3"]},"shadow":false,"topLevel":false},"a(y":{"opcode":"operator_add","next":null,"parent":"a(x","inputs":{"NUM1":[3,"bYD",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bYD":{"opcode":"control_get_counter","next":null,"parent":"a(y","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(w":{"opcode":"data_changevariableby","next":"bYE","parent":"o=","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["8080.cycles","Sx;#S`yw8}4Z[VDB*X~["]},"shadow":false,"topLevel":false},"bYE":{"opcode":"control_incr_counter","next":null,"parent":"a(w","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(u":{"opcode":"data_deletealloflist","next":"a(z","parent":"o;","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"a(z":{"opcode":"data_showvariable","next":")Z","parent":"a(u","inputs":{},"fields":{"VARIABLE":["FPS","y:MI[jH$Un515#+v3[#@"]},"shadow":false,"topLevel":false},")Z":{"opcode":"looks_switchbackdropto","next":"a(A","parent":"a(z","inputs":{"BACKDROP":[1,"bYF"]},"fields":{},"shadow":false,"topLevel":false},"bYF":{"opcode":"looks_backdrops","next":null,"parent":")Z","inputs":{},"fields":{"BACKDROP":["Black",null]},"shadow":true,"topLevel":false},"a(A":{"opcode":"looks_say","next":"a(B","parent":")Z","inputs":{"MESSAGE":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a(B":{"opcode":"sound_stopallsounds","next":"a(C","parent":"a(A","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(C":{"opcode":"control_forever","next":null,"parent":"a(B","inputs":{"SUBSTACK":[2,"bYG"]},"fields":{},"shadow":false,"topLevel":false},"bYG":{"opcode":"procedures_call","next":null,"parent":"a(C","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"8080.frame","argumentids":"[]","warp":"true"}},"bYH":{"opcode":"control_start_as_clone","next":"a(D","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":451,"y":909},"a(D":{"opcode":"control_forever","next":null,"parent":"bYH","inputs":{"SUBSTACK":[2,"o?"]},"fields":{},"shadow":false,"topLevel":false},"o?":{"opcode":"control_if_else","next":null,"parent":"a(D","inputs":{"CONDITION":[2,"a(E"],"SUBSTACK":[2,"o@"],"SUBSTACK2":[2,"a(F"]},"fields":{},"shadow":false,"topLevel":false},"a(E":{"opcode":"sensing_touchingobject","next":null,"parent":"o?","inputs":{"TOUCHINGOBJECTMENU":[1,"bYI"]},"fields":{},"shadow":false,"topLevel":false},"bYI":{"opcode":"sensing_touchingobjectmenu","next":null,"parent":"a(E","inputs":{},"fields":{"TOUCHINGOBJECTMENU":["_mouse_",null]},"shadow":true,"topLevel":false},"o@":{"opcode":"control_if","next":")!","parent":"o?","inputs":{"CONDITION":[2,"a(G"],"SUBSTACK":[2,"bYJ"]},"fields":{},"shadow":false,"topLevel":false},"a(G":{"opcode":"operator_equals","next":null,"parent":"o@","inputs":{"OPERAND1":[3,"bYK",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bYK":{"opcode":"looks_costumenumbername","next":null,"parent":"a(G","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"bYJ":{"opcode":"looks_say","next":null,"parent":"o@","inputs":{"MESSAGE":[1,[10,"Starting Address = 0x0, Mode = 0 (screen)"]]},"fields":{},"shadow":false,"topLevel":false},")!":{"opcode":"control_if","next":null,"parent":"o@","inputs":{"CONDITION":[2,"a(H"],"SUBSTACK":[2,"bYL"]},"fields":{},"shadow":false,"topLevel":false},"a(H":{"opcode":"operator_equals","next":null,"parent":")!","inputs":{"OPERAND1":[3,"bYM",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bYM":{"opcode":"looks_costumenumbername","next":null,"parent":"a(H","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"bYL":{"opcode":"looks_say","next":null,"parent":")!","inputs":{"MESSAGE":[1,[10,"Starting Address = 0x100, Mode = 1 (terminal)"]]},"fields":{},"shadow":false,"topLevel":false},"a(F":{"opcode":"looks_setsizeto","next":"bYN","parent":"o?","inputs":{"SIZE":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"bYN":{"opcode":"looks_say","next":null,"parent":"a(F","inputs":{"MESSAGE":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bYO":{"opcode":"event_whenbroadcastreceived","next":"a(I","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["clonekiller","1amq:*wJaAnoe7q=5[5t"]},"shadow":false,"topLevel":true,"x":379,"y":214},"a(I":{"opcode":"looks_hide","next":"bYP","parent":"bYO","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bYP":{"opcode":"control_delete_this_clone","next":null,"parent":"a(I","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bYQ":{"opcode":"event_whenthisspriteclicked","next":")#","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":-521,"y":1077},")#":{"opcode":"sound_play","next":"o[","parent":"bYQ","inputs":{"SOUND_MENU":[1,"bYR"]},"fields":{},"shadow":false,"topLevel":false},"bYR":{"opcode":"sound_sounds_menu","next":null,"parent":")#","inputs":{},"fields":{"SOUND_MENU":["13",null]},"shadow":true,"topLevel":false},"o[":{"opcode":"control_if","next":"o]","parent":")#","inputs":{"CONDITION":[2,"a(J"],"SUBSTACK":[2,"a(K"]},"fields":{},"shadow":false,"topLevel":false},"a(J":{"opcode":"operator_equals","next":null,"parent":"o[","inputs":{"OPERAND1":[3,"bYS",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bYS":{"opcode":"looks_costumenumbername","next":null,"parent":"a(J","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"a(K":{"opcode":"data_setvariableto","next":"a(L","parent":"o[","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a(L":{"opcode":"data_setvariableto","next":"a(M","parent":"a(K","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.screenrotation","_T_UX}bQ?Q+%Ar.;!SD#"]},"shadow":false,"topLevel":false},"a(M":{"opcode":"data_setvariableto","next":"bYT","parent":"a(L","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["8080.mode","m]ROHZvewvW*HDY)ha@)"]},"shadow":false,"topLevel":false},"bYT":{"opcode":"control_stop","next":null,"parent":"a(M","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"o]":{"opcode":"control_if","next":"a(N","parent":"o[","inputs":{"CONDITION":[2,"a(O"],"SUBSTACK":[2,"a(P"]},"fields":{},"shadow":false,"topLevel":false},"a(O":{"opcode":"operator_equals","next":null,"parent":"o]","inputs":{"OPERAND1":[3,"bYU",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"bYU":{"opcode":"looks_costumenumbername","next":null,"parent":"a(O","inputs":{},"fields":{"NUMBER_NAME":["number",null]},"shadow":false,"topLevel":false},"a(P":{"opcode":"data_setvariableto","next":"a(Q","parent":"o]","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"a(Q":{"opcode":"data_setvariableto","next":"bYV","parent":"a(P","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["8080.mode","m]ROHZvewvW*HDY)ha@)"]},"shadow":false,"topLevel":false},"bYV":{"opcode":"control_stop","next":null,"parent":"a(Q","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a(N":{"opcode":"sensing_askandwait","next":")%","parent":"o]","inputs":{"QUESTION":[1,[10,"Where should the ROM be loaded in memory?"]]},"fields":{},"shadow":false,"topLevel":false},")%":{"opcode":"data_setvariableto","next":"a(R","parent":"a(N","inputs":{"VALUE":[3,"bYW",[10,""]]},"fields":{"VARIABLE":["_PC","w=hd1PshEda%bO|xM^6q"]},"shadow":false,"topLevel":false},"bYW":{"opcode":"sensing_answer","next":null,"parent":")%","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(R":{"opcode":"sensing_askandwait","next":")(","parent":")%","inputs":{"QUESTION":[1,[10,"How should the screen be oriented? (0=Vertical, 1=Horizontal)"]]},"fields":{},"shadow":false,"topLevel":false},")(":{"opcode":"data_setvariableto","next":"a(S","parent":"a(R","inputs":{"VALUE":[3,"a(T",[10,""]]},"fields":{"VARIABLE":["8080.screenrotation","_T_UX}bQ?Q+%Ar.;!SD#"]},"shadow":false,"topLevel":false},"a(T":{"opcode":"operator_mod","next":null,"parent":")(","inputs":{"NUM1":[3,"bYX",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bYX":{"opcode":"sensing_answer","next":null,"parent":"a(T","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(S":{"opcode":"sensing_askandwait","next":"a(U","parent":")(","inputs":{"QUESTION":[1,[10,"What mode should be used? (0=Space Invaders, 1=CP/M HLE)"]]},"fields":{},"shadow":false,"topLevel":false},"a(U":{"opcode":"data_setvariableto","next":null,"parent":"a(S","inputs":{"VALUE":[3,"a(V",[10,""]]},"fields":{"VARIABLE":["8080.mode","m]ROHZvewvW*HDY)ha@)"]},"shadow":false,"topLevel":false},"a(V":{"opcode":"operator_mod","next":null,"parent":"a(U","inputs":{"NUM1":[3,"bYY",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bYY":{"opcode":"sensing_answer","next":null,"parent":"a(V","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(W":{"opcode":"procedures_definition","next":"))","parent":null,"inputs":{"custom_block":[1,"bYZ"]},"fields":{},"shadow":false,"topLevel":true,"x":13750,"y":245},"bYZ":{"opcode":"procedures_prototype","next":null,"parent":"a(W","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.horizontal","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"))":{"opcode":"control_repeat","next":null,"parent":"a(W","inputs":{"TIMES":[3,"bY!",[6,"10"]],"SUBSTACK":[2,")*"]},"fields":{},"shadow":false,"topLevel":false},"bY!":{"opcode":"data_lengthoflist","next":null,"parent":"))","inputs":{},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},")*":{"opcode":"data_setvariableto","next":"a(X","parent":"))","inputs":{"VALUE":[3,"bY#",[10,"9216"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bY#":{"opcode":"data_itemoflist","next":null,"parent":")*","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},"a(X":{"opcode":"data_deleteoflist","next":")+","parent":")*","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["_memorydirtyaddresses",";;D#J[s+xqU=v5L_KPks"]},"shadow":false,"topLevel":false},")+":{"opcode":"data_replaceitemoflist","next":"),","parent":"a(X","inputs":{"INDEX":[3,"bY%",[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_memorydirtyflags","[sU2JI|(@n8Hh4}M,trk"]},"shadow":false,"topLevel":false},"bY%":{"opcode":"operator_add","next":null,"parent":")+","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"),":{"opcode":"data_setvariableto","next":")-","parent":")+","inputs":{"VALUE":[3,"a(Y",[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a(Y":{"opcode":"data_itemoflist","next":null,"parent":"),","inputs":{"INDEX":[3,"bY(",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bY(":{"opcode":"operator_add","next":null,"parent":"a(Y","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"9217"]]},"fields":{},"shadow":false,"topLevel":false},")-":{"opcode":"control_if","next":null,"parent":"),","inputs":{"CONDITION":[2,"a(Z"],"SUBSTACK":[2,")."]},"fields":{},"shadow":false,"topLevel":false},"a(Z":{"opcode":"operator_not","next":null,"parent":")-","inputs":{"OPERAND":[2,"a(!"]},"fields":{},"shadow":false,"topLevel":false},"a(!":{"opcode":"operator_equals","next":null,"parent":"a(Z","inputs":{"OPERAND1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,""]],"OPERAND2":[3,"a(#",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"a(#":{"opcode":"data_itemoflist","next":null,"parent":"a(!","inputs":{"INDEX":[3,"bY)",[7,"0"]]},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},"bY)":{"opcode":"operator_add","next":null,"parent":"a(#","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},").":{"opcode":"data_replaceitemoflist","next":"Y[","parent":")-","inputs":{"INDEX":[3,"bY*",[7,"1"]],"ITEM":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[10,"0"]]},"fields":{"LIST":["_memorylastdrawndisplay","fvlqLLgqWm;4trS;h4~E"]},"shadow":false,"topLevel":false},"bY*":{"opcode":"operator_add","next":null,"parent":").","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Y[":{"opcode":"motion_gotoxy","next":")/","parent":").","inputs":{"X":[3,"a(%",[4,"94"]],"Y":[3,"a((",[4,"106"]]},"fields":{},"shadow":false,"topLevel":false},"a(%":{"opcode":"operator_subtract","next":null,"parent":"Y[","inputs":{"NUM1":[3,"a()",[4,"100"]],"NUM2":[1,[4,"130"]]},"fields":{},"shadow":false,"topLevel":false},"a()":{"opcode":"operator_multiply","next":null,"parent":"a(%","inputs":{"NUM1":[3,"bY+",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bY+":{"opcode":"operator_mod","next":null,"parent":"a()","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"a((":{"opcode":"operator_subtract","next":null,"parent":"Y[","inputs":{"NUM1":[1,[4,"100"]],"NUM2":[3,"a(*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"a(*":{"opcode":"operator_mathop","next":null,"parent":"a((","inputs":{"NUM":[3,"bY,",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"bY,":{"opcode":"operator_divide","next":null,"parent":"a(*","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},")/":{"opcode":"data_setvariableto","next":"):","parent":"Y[","inputs":{"VALUE":[3,"a(+",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a(+":{"opcode":"data_itemoflist","next":null,"parent":")/","inputs":{"INDEX":[3,"bY-",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"bY-":{"opcode":"operator_add","next":null,"parent":"a(+","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"):":{"opcode":"pen_setPenColorToColor","next":"a(,","parent":")/","inputs":{"COLOR":[3,"a(-",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a(-":{"opcode":"data_itemoflist","next":null,"parent":"):","inputs":{"INDEX":[3,"a(.",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(.":{"opcode":"operator_add","next":null,"parent":"a(-","inputs":{"NUM1":[3,"bY.",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY.":{"opcode":"operator_letter_of","next":null,"parent":"a(.","inputs":{"LETTER":[1,[6,"8"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(,":{"opcode":"pen_penDown","next":"a(/","parent":"):","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a(/":{"opcode":"motion_changexby","next":");","parent":"a(,","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},");":{"opcode":"pen_setPenColorToColor","next":"a(:","parent":"a(/","inputs":{"COLOR":[3,"a(;",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a(;":{"opcode":"data_itemoflist","next":null,"parent":");","inputs":{"INDEX":[3,"a(=",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(=":{"opcode":"operator_add","next":null,"parent":"a(;","inputs":{"NUM1":[3,"bY/",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY/":{"opcode":"operator_letter_of","next":null,"parent":"a(=","inputs":{"LETTER":[1,[6,"7"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(:":{"opcode":"motion_changexby","next":")=","parent":");","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")=":{"opcode":"pen_setPenColorToColor","next":"a(?","parent":"a(:","inputs":{"COLOR":[3,"a(@",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a(@":{"opcode":"data_itemoflist","next":null,"parent":")=","inputs":{"INDEX":[3,"a([",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a([":{"opcode":"operator_add","next":null,"parent":"a(@","inputs":{"NUM1":[3,"bY:",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY:":{"opcode":"operator_letter_of","next":null,"parent":"a([","inputs":{"LETTER":[1,[6,"6"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(?":{"opcode":"motion_changexby","next":")?","parent":")=","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")?":{"opcode":"pen_setPenColorToColor","next":"a(]","parent":"a(?","inputs":{"COLOR":[3,"a(^",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a(^":{"opcode":"data_itemoflist","next":null,"parent":")?","inputs":{"INDEX":[3,"a(_",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(_":{"opcode":"operator_add","next":null,"parent":"a(^","inputs":{"NUM1":[3,"bY;",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY;":{"opcode":"operator_letter_of","next":null,"parent":"a(_","inputs":{"LETTER":[1,[6,"5"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(]":{"opcode":"motion_changexby","next":")@","parent":")?","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")@":{"opcode":"pen_setPenColorToColor","next":"a(`","parent":"a(]","inputs":{"COLOR":[3,"a({",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a({":{"opcode":"data_itemoflist","next":null,"parent":")@","inputs":{"INDEX":[3,"a(|",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a(|":{"opcode":"operator_add","next":null,"parent":"a({","inputs":{"NUM1":[3,"bY=",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY=":{"opcode":"operator_letter_of","next":null,"parent":"a(|","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(`":{"opcode":"motion_changexby","next":")[","parent":")@","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")[":{"opcode":"pen_setPenColorToColor","next":"a(}","parent":"a(`","inputs":{"COLOR":[3,"a(~",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a(~":{"opcode":"data_itemoflist","next":null,"parent":")[","inputs":{"INDEX":[3,"a)a",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)a":{"opcode":"operator_add","next":null,"parent":"a(~","inputs":{"NUM1":[3,"bY?",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY?":{"opcode":"operator_letter_of","next":null,"parent":"a)a","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a(}":{"opcode":"motion_changexby","next":")]","parent":")[","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")]":{"opcode":"pen_setPenColorToColor","next":"a)b","parent":"a(}","inputs":{"COLOR":[3,"a)c",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)c":{"opcode":"data_itemoflist","next":null,"parent":")]","inputs":{"INDEX":[3,"a)d",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)d":{"opcode":"operator_add","next":null,"parent":"a)c","inputs":{"NUM1":[3,"bY@",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY@":{"opcode":"operator_letter_of","next":null,"parent":"a)d","inputs":{"LETTER":[1,[6,"2"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a)b":{"opcode":"motion_changexby","next":")^","parent":")]","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},")^":{"opcode":"pen_setPenColorToColor","next":"a)e","parent":"a)b","inputs":{"COLOR":[3,"a)f",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)f":{"opcode":"data_itemoflist","next":null,"parent":")^","inputs":{"INDEX":[3,"a)g",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)g":{"opcode":"operator_add","next":null,"parent":"a)f","inputs":{"NUM1":[3,"bY[",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY[":{"opcode":"operator_letter_of","next":null,"parent":"a)g","inputs":{"LETTER":[1,[6,"1"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,"apple"]]},"fields":{},"shadow":false,"topLevel":false},"a)e":{"opcode":"motion_changexby","next":"bY]","parent":")^","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY]":{"opcode":"pen_penUp","next":null,"parent":"a)e","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bY^":{"opcode":"motion_sety","next":"a)h","parent":null,"inputs":{"Y":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":true,"x":14455,"y":3242},"a)h":{"opcode":"data_setvariableto","next":"a)i","parent":"bY^","inputs":{"VALUE":[1,[10,"9216"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a)i":{"opcode":"control_repeat","next":null,"parent":"a)h","inputs":{"TIMES":[1,[6,"224"]],"SUBSTACK":[2,"a)j"]},"fields":{},"shadow":false,"topLevel":false},"a)j":{"opcode":"data_deletealloflist","next":")_","parent":"a)i","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},")_":{"opcode":"control_repeat","next":"a)k","parent":"a)j","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"a)l"]},"fields":{},"shadow":false,"topLevel":false},"a)l":{"opcode":"data_changevariableby","next":")`","parent":")_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},")`":{"opcode":"data_setvariableto","next":"a)m","parent":"a)l","inputs":{"VALUE":[3,"a)n",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a)n":{"opcode":"data_itemoflist","next":null,"parent":")`","inputs":{"INDEX":[3,"a)o",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a)o":{"opcode":"operator_add","next":null,"parent":"a)n","inputs":{"NUM1":[3,"bY_",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY_":{"opcode":"data_itemoflist","next":null,"parent":"a)o","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"a)m":{"opcode":"data_setvariableto","next":"a)p","parent":")`","inputs":{"VALUE":[1,[10,"9"]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a)p":{"opcode":"control_repeat","next":null,"parent":"a)m","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"a)q"]},"fields":{},"shadow":false,"topLevel":false},"a)q":{"opcode":"data_changevariableby","next":"a)r","parent":"a)p","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a)r":{"opcode":"data_addtolist","next":null,"parent":"a)q","inputs":{"ITEM":[3,"bY`",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"bY`":{"opcode":"operator_letter_of","next":null,"parent":"a)r","inputs":{"LETTER":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[6,"0"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a)k":{"opcode":"motion_setx","next":"a)s","parent":")_","inputs":{"X":[1,[4,"-130"]]},"fields":{},"shadow":false,"topLevel":false},"a)s":{"opcode":"data_setvariableto","next":"){","parent":"a)k","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"){":{"opcode":"pen_setPenColorToColor","next":"a)t","parent":"a)s","inputs":{"COLOR":[3,"a)u",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)u":{"opcode":"data_itemoflist","next":null,"parent":"){","inputs":{"INDEX":[3,"a)v",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)v":{"opcode":"operator_add","next":null,"parent":"a)u","inputs":{"NUM1":[3,"bY{",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY{":{"opcode":"data_itemoflist","next":null,"parent":"a)v","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a)t":{"opcode":"pen_penDown","next":")|","parent":"){","inputs":{},"fields":{},"shadow":false,"topLevel":false},")|":{"opcode":"control_repeat","next":"a)w","parent":"a)t","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"a)x"]},"fields":{},"shadow":false,"topLevel":false},"a)x":{"opcode":"data_changevariableby","next":"a)y","parent":")|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a)y":{"opcode":"motion_changexby","next":"a)z","parent":"a)x","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a)z":{"opcode":"pen_setPenColorToColor","next":null,"parent":"a)y","inputs":{"COLOR":[3,"a)A",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)A":{"opcode":"data_itemoflist","next":null,"parent":"a)z","inputs":{"INDEX":[3,"a)B",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)B":{"opcode":"operator_add","next":null,"parent":"a)A","inputs":{"NUM1":[3,"bY|",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bY|":{"opcode":"data_itemoflist","next":null,"parent":"a)B","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a)w":{"opcode":"pen_penUp","next":"bY}","parent":")|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bY}":{"opcode":"motion_changeyby","next":null,"parent":"a)w","inputs":{"DY":[1,[4,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"bY~":{"opcode":"motion_setx","next":"a)C","parent":null,"inputs":{"X":[1,[4,"-130"]]},"fields":{},"shadow":false,"topLevel":true,"x":13721,"y":3389},"a)C":{"opcode":"data_setvariableto","next":"a)D","parent":"bY~","inputs":{"VALUE":[1,[10,"9216"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a)D":{"opcode":"control_repeat","next":null,"parent":"a)C","inputs":{"TIMES":[1,[6,"224"]],"SUBSTACK":[2,"a)E"]},"fields":{},"shadow":false,"topLevel":false},"a)E":{"opcode":"data_deletealloflist","next":")}","parent":"a)D","inputs":{},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},")}":{"opcode":"control_repeat","next":"a)F","parent":"a)E","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"a)G"]},"fields":{},"shadow":false,"topLevel":false},"a)G":{"opcode":"data_changevariableby","next":")~","parent":")}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},")~":{"opcode":"data_setvariableto","next":"a)H","parent":"a)G","inputs":{"VALUE":[3,"a)I",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a)I":{"opcode":"data_itemoflist","next":null,"parent":")~","inputs":{"INDEX":[3,"a)J",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"a)J":{"opcode":"operator_add","next":null,"parent":"a)I","inputs":{"NUM1":[3,"bZa",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bZa":{"opcode":"data_itemoflist","next":null,"parent":"a)J","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"a)H":{"opcode":"data_setvariableto","next":"a)K","parent":")~","inputs":{"VALUE":[1,[10,"9"]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a)K":{"opcode":"control_repeat","next":null,"parent":"a)H","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"a)L"]},"fields":{},"shadow":false,"topLevel":false},"a)L":{"opcode":"data_changevariableby","next":"a)M","parent":"a)K","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"a)M":{"opcode":"data_addtolist","next":null,"parent":"a)L","inputs":{"ITEM":[3,"bZb",[10,""]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"bZb":{"opcode":"operator_letter_of","next":null,"parent":"a)M","inputs":{"LETTER":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[6,"0"]],"STRING":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"a)F":{"opcode":"motion_sety","next":"a)N","parent":")}","inputs":{"Y":[1,[4,"-150"]]},"fields":{},"shadow":false,"topLevel":false},"a)N":{"opcode":"data_setvariableto","next":"*a","parent":"a)F","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"*a":{"opcode":"pen_setPenColorToColor","next":"a)O","parent":"a)N","inputs":{"COLOR":[3,"a)P",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)P":{"opcode":"data_itemoflist","next":null,"parent":"*a","inputs":{"INDEX":[3,"a)Q",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)Q":{"opcode":"operator_add","next":null,"parent":"a)P","inputs":{"NUM1":[3,"bZc",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bZc":{"opcode":"data_itemoflist","next":null,"parent":"a)Q","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a)O":{"opcode":"pen_penDown","next":"*b","parent":"*a","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*b":{"opcode":"control_repeat","next":"a)R","parent":"a)O","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"a)S"]},"fields":{},"shadow":false,"topLevel":false},"a)S":{"opcode":"data_changevariableby","next":"a)T","parent":"*b","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"a)T":{"opcode":"motion_changeyby","next":"a)U","parent":"a)S","inputs":{"DY":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a)U":{"opcode":"pen_setPenColorToColor","next":null,"parent":"a)T","inputs":{"COLOR":[3,"a)V",[9,"#b83880"]]},"fields":{},"shadow":false,"topLevel":false},"a)V":{"opcode":"data_itemoflist","next":null,"parent":"a)U","inputs":{"INDEX":[3,"a)W",[7,"0"]]},"fields":{"LIST":["_colours","|wrT},$[.z]EPbXVhvr["]},"shadow":false,"topLevel":false},"a)W":{"opcode":"operator_add","next":null,"parent":"a)V","inputs":{"NUM1":[3,"bZd",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bZd":{"opcode":"data_itemoflist","next":null,"parent":"a)W","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"0"]]},"fields":{"LIST":["_scanline","KciKQ4B%I^{Ge#cm.(%/"]},"shadow":false,"topLevel":false},"a)R":{"opcode":"pen_penUp","next":"bZe","parent":"*b","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bZe":{"opcode":"motion_changexby","next":null,"parent":"a)R","inputs":{"DX":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bZf":{"opcode":"control_repeat","next":"bZg","parent":null,"inputs":{"TIMES":[1,[6,"60"]]},"fields":{},"shadow":false,"topLevel":true,"x":831,"y":4084},"bZg":{"opcode":"procedures_call","next":null,"parent":"bZf","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Set FPS","argumentids":"[]","warp":"true"}},"a)X":{"opcode":"procedures_definition","next":"*c","parent":null,"inputs":{"custom_block":[1,"bZh"]},"fields":{},"shadow":false,"topLevel":true,"x":1118,"y":4137},"bZh":{"opcode":"procedures_prototype","next":null,"parent":"a)X","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Set FPS","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"*c":{"opcode":"data_setvariableto","next":"a)Y","parent":"a)X","inputs":{"VALUE":[3,"a)Z",[10,"0"]]},"fields":{"VARIABLE":["FPS","y:MI[jH$Un515#+v3[#@"]},"shadow":false,"topLevel":false},"a)Z":{"opcode":"operator_divide","next":null,"parent":"*c","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"a)!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a)!":{"opcode":"operator_multiply","next":null,"parent":"a)Z","inputs":{"NUM1":[3,"a)#",[4,"0"]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"a)#":{"opcode":"operator_subtract","next":null,"parent":"a)!","inputs":{"NUM1":[3,"bZi",[4,"0"]],"NUM2":[3,[12,"frame","wf$pnFUa#7qieC$aq~T9"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZi":{"opcode":"sensing_dayssince2000","next":null,"parent":"a)#","inputs":{},"fields":{},"shadow":false,"topLevel":false},"a)Y":{"opcode":"data_setvariableto","next":null,"parent":"*c","inputs":{"VALUE":[3,"bZj",[10,"0"]]},"fields":{"VARIABLE":["frame","wf$pnFUa#7qieC$aq~T9"]},"shadow":false,"topLevel":false},"bZj":{"opcode":"sensing_dayssince2000","next":null,"parent":"a)Y","inputs":{},"fields":{},"shadow":false,"topLevel":false},"b.x":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.y":[12,"-LCDC2","j%_uw7vcE;vljqGCEt;-"],"b.z":[12,".GBC?2","za5df3dC6Lq85;3lun8/"],"b.A":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.B":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.C":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.D":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.E":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.F":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.G":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.H":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.I":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.J":[12,",c2","Crf*ltOpxTp[zPgDlY{T"],"b.K":[12,",joypad2","W/n=I{ySVA3XJEP{k?=["],"b.L":[12,"_T2","|Cl^=?C:,/{Epnf![x2:"],"b.M":[12,"T12","ecaYd9sPeo:%`_LsAsJD"],"b.N":[12,"_RE2","4`Ni_=/i=RIJ0%Y?]=Fn"],"b.O":[12,"_IF","qOvY4@JXH3Z=q*#gP*-="],"b.P":[12,"_IF","qOvY4@JXH3Z=q*#gP*-="],"b.Q":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.R":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.S":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.T":[12,"T12","T`~F4~2,O!/[8pu)xO1,"],"b.U":[12,"render2","b#%5IA`afs~P-ErWHe%`"],"b.V":[12,"i3","*r-MV7B^PL30%%8PQz%`"],"b.W":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.X":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.Y":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.Z":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.!":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.#":[12,"_S2","!@vTj4c1The8*{(^_*O."],"b.%":[12,"_RE2","4`Ni_=/i=RIJ0%Y?]=Fn"],"b.(":[12,".IME2","Yyq0n/?:tZ-1R{!(9E,I"],"b.)":[12,"_HALT","F_}DPF^fI%3NP^P]}FKY"],"b.*":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.+":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.,":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.-":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b..":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b./":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.:":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.;":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.=":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.?":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.@":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.[":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.]":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.^":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b._":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.`":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b.{":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.|":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.}":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b.~":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/a":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/b":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b/c":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/d":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/e":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/f":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/g":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/h":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/i":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b/j":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b/k":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/l":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/m":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/n":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/o":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/p":[12,".instrID2","ZnIX}4]R}DE8HyQ,rg57"],"b/q":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/r":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"],"b/s":[12,".instr2","ujAlu]pJm2~uaC1iJUQ]"]},"comments":{"e#":{"blockId":"f","x":1699,"y":5823,"width":200,"height":200,"minimized":false,"text":"00EE- rts- return from subroutine call"},"bYt":{"blockId":"o.","x":630,"y":2190,"width":200,"height":200,"minimized":false,"text":"Register list entries in terms of what registers each one refers to\n1 = B\n2 = C\n3 = D\n4 = E\n5 = H\n6 = L\n7= \"M\" (anything writing here goes to RAM)\n8 = A\n9 = 16-bit Shift register"},"bYv":{"blockId":"o/","x":825,"y":2366,"width":217.066650390625,"height":208.53335571289062,"minimized":false,"text":"Flag list\n1 = C (Carry)\n2 = 1 (always 1)\n3 = P (Parity)\n4 = 0\n5 = AC (Auxiliary Carry)\n6 = 0\n7 = Z (Zero)\n8 = S (Sign)"},"bXX":{"blockId":"NK","x":6868.259258270264,"y":3623,"width":406.933349609375,"height":449.5999755859375,"minimized":false,"text":"Space Invaders:\nRead 1 \n BIT 0 coin (0 when active) \n 1 P2 start button \n 2 P1 start button \n 3 ? \n 4 P1 shoot button \n 5 P1 joystick left \n 6 P1 joystick right \n 7 ? \n\n Read 2 \n BIT 0,1 dipswitch number of lives (0:3,1:4,2:5,3:6) \n 2 tilt 'button' \n 3 dipswitch bonus life at 1:1000,0:1500 \n 4 P2 shoot button \n 5 P2 joystick left \n 6 P2 joystick right \n 7 dipswitch coin info 1:off,0:on \n\n Read 3 shift register result"},"bN":{"blockId":"b}","x":12130,"y":760,"width":200,"height":200,"minimized":true,"text":"Number font. This was a pain to make on mobile... really can’t wait until I get my computer back again :)"},"bO":{"blockId":"b~","x":12130,"y":952,"width":200,"height":200,"minimized":true,"text":"0"},"bP":{"blockId":"ca","x":12134,"y":1192,"width":200,"height":200,"minimized":true,"text":"1"},"bQ":{"blockId":"(","x":12130,"y":1432,"width":200,"height":200,"minimized":true,"text":"2"},"bR":{"blockId":"c*","x":12130,"y":1672,"width":200,"height":200,"minimized":true,"text":"3"},"bS":{"blockId":"c+","x":12134,"y":1912,"width":200,"height":200,"minimized":true,"text":"4"},"aJ":{"blockId":"L","x":12130,"y":2152,"width":200,"height":200,"minimized":true,"text":"5"},"aK":{"blockId":"M","x":12130,"y":2392,"width":200,"height":200,"minimized":true,"text":"6"},"a,":{"blockId":"N","x":12134,"y":2632,"width":200,"height":200,"minimized":true,"text":"7"},"a-":{"blockId":"O","x":12130,"y":2872,"width":200,"height":200,"minimized":true,"text":"8"},"a.":{"blockId":"aj","x":12130,"y":3112,"width":200,"height":200,"minimized":true,"text":"9"},"a/":{"blockId":"ak","x":12134,"y":3352,"width":200,"height":200,"minimized":true,"text":"A"},"aI":{"blockId":"a","x":2447,"y":1485,"width":200,"height":200,"minimized":false,"text":"00E0 & 0230- cls- clear the screen / HIRES_CLS"},"aL":{"blockId":"d","x":1984,"y":2521,"width":200,"height":200,"minimized":false,"text":"00CN (SCHIP) - SCD N"},"aM":{"blockId":"cY","x":1983,"y":3705,"width":200,"height":200,"minimized":false,"text":"00BN(Mega-Chip) / 00DN (XO-CHIP) Scroll up N lines"},"e%":{"blockId":"cZ","x":1934,"y":4849,"width":200,"height":200,"minimized":false,"text":"00E1 - HyperWaveCHIP-64 - NOT the selected plane"},"a:":{"blockId":"c!","x":1904,"y":6062,"width":200,"height":200,"minimized":false,"text":"00FB (SCHIP) Scroll right 4 or 2 pixels, depending on screen resolution"},"i":{"blockId":"j","x":1770,"y":8951,"width":200,"height":200,"minimized":false,"text":"00FC (SCHIP) Scroll left 4 pixels"},"pr":{"blockId":"h","x":1779,"y":11668,"width":200,"height":200,"minimized":false,"text":"00F1 - HyperWaveCHIP-64 - Set draw mode to OR"},"ps":{"blockId":"al","x":1758,"y":11860,"width":200,"height":200,"minimized":false,"text":"00F2 - HyperWaveCHIP-64 - Set draw mode to AND"},"pt":{"blockId":"am","x":1759,"y":12065,"width":200,"height":200,"minimized":false,"text":"00F3 - Hyper-WaveCHIP-64 - Set draw mode to XOR"},"e(":{"blockId":"n","x":2043,"y":12231,"width":200,"height":200,"minimized":false,"text":"00FF(SCHIP) - HIGH"},"pu":{"blockId":"m","x":1701,"y":12438,"width":200,"height":200,"minimized":false,"text":"00FE(SCHIP) LOW"},"=Z":{"blockId":"aw","x":1706,"y":12690,"width":200,"height":200,"minimized":false,"text":"0011 (Mega-Chip) - Enable Megachip mode"},"pv":{"blockId":"P","x":1723,"y":13071,"width":200,"height":200,"minimized":false,"text":"0010 (Mega-Chip) - Disable Megachip mode"},"b/t":{"blockId":null,"x":278,"y":-230,"width":200,"height":200,"minimized":false,"text":"SI8080 V1.0.1 by @oxiti8\n\nEmulates the Intel 8080, targets Space Invaders but is configured to also run certain other 8080 software"},"b/u":{"blockId":null,"x":2289,"y":27599,"width":214,"height":287,"minimized":false,"text":"Flag list\n1 = C (Carry)\n2 = 1 (always 1)\n3 = P (Parity)\n4 = 0\n5 = AC (Auxiliary Carry)\n6 = 0\n7 = Z (Zero)\n8 = S (Sign)"}},"currentCostume":3,"costumes":[{"name":"blank","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0},{"name":"SI","bitmapResolution":1,"dataFormat":"svg","assetId":"68cecb6575fee17ff3c3fe7cc4ae65f1","md5ext":"68cecb6575fee17ff3c3fe7cc4ae65f1.svg","rotationCenterX":94.5,"rotationCenterY":24},{"name":"CPM","bitmapResolution":1,"dataFormat":"svg","assetId":"fe7624c3a4c054f81ae0e6da1f2ff966","md5ext":"fe7624c3a4c054f81ae0e6da1f2ff966.svg","rotationCenterX":94.5,"rotationCenterY":24},{"name":"Manual","bitmapResolution":1,"dataFormat":"svg","assetId":"86d6ed52007885f0b0c442d85653f652","md5ext":"86d6ed52007885f0b0c442d85653f652.svg","rotationCenterX":94.5,"rotationCenterY":24}],"sounds":[{"name":"0","assetId":"556fdf9ffd8636d71f539453dd1d0b4c","dataFormat":"wav","rate":48000,"sampleCount":8216,"md5ext":"556fdf9ffd8636d71f539453dd1d0b4c.wav"},{"name":"1","assetId":"46e27d03072f73e0d740947fb6d7404a","dataFormat":"wav","rate":48000,"sampleCount":16640,"md5ext":"46e27d03072f73e0d740947fb6d7404a.wav"},{"name":"2","assetId":"0eb46490f15bb45d6c4ca56a816413df","dataFormat":"wav","rate":48000,"sampleCount":63676,"md5ext":"0eb46490f15bb45d6c4ca56a816413df.wav"},{"name":"3","assetId":"873c6cbad1469071639b44267c67bcae","dataFormat":"wav","rate":48000,"sampleCount":22022,"md5ext":"873c6cbad1469071639b44267c67bcae.wav"},{"name":"4","assetId":"d1b64909ae0058fa4f9224b2d3de3f11","dataFormat":"wav","rate":48000,"sampleCount":3522,"md5ext":"d1b64909ae0058fa4f9224b2d3de3f11.wav"},{"name":"5","assetId":"8782f8cf697e7e453dcbd70840ff2754","dataFormat":"wav","rate":48000,"sampleCount":3156,"md5ext":"8782f8cf697e7e453dcbd70840ff2754.wav"},{"name":"6","assetId":"de7adc40e0d68c50cf3ce271a25c2061","dataFormat":"wav","rate":48000,"sampleCount":3321,"md5ext":"de7adc40e0d68c50cf3ce271a25c2061.wav"},{"name":"7","assetId":"55f391146f484430b9b40ef46678eef6","dataFormat":"wav","rate":48000,"sampleCount":3561,"md5ext":"55f391146f484430b9b40ef46678eef6.wav"},{"name":"8","assetId":"637f5684934d6ab3a4699597d9bd590b","dataFormat":"wav","rate":48000,"sampleCount":105960,"md5ext":"637f5684934d6ab3a4699597d9bd590b.wav"},{"name":"11","assetId":"3877e31352403f8f1a47cc7560c9f83a","dataFormat":"wav","rate":48000,"sampleCount":7211,"md5ext":"3877e31352403f8f1a47cc7560c9f83a.wav"},{"name":"12","assetId":"102e69c7f60049f528435fd7ada2a664","dataFormat":"wav","rate":48000,"sampleCount":58527,"md5ext":"102e69c7f60049f528435fd7ada2a664.wav"},{"name":"9","assetId":"69c3b0149b0858d59e2426127dbc62e4","dataFormat":"wav","rate":48000,"sampleCount":91024,"md5ext":"69c3b0149b0858d59e2426127dbc62e4.wav"},{"name":"13","assetId":"691a426d57c18e0117a102290a75c6fe","dataFormat":"wav","rate":48000,"sampleCount":15256,"md5ext":"691a426d57c18e0117a102290a75c6fe.wav"},{"name":"14","assetId":"211bd32d691ba9cf0e3e13a4e91cfa0a","dataFormat":"wav","rate":48000,"sampleCount":3522,"md5ext":"211bd32d691ba9cf0e3e13a4e91cfa0a.wav"},{"name":"15","assetId":"5e48a0c509f4922f8a8d8600d3b1ea1f","dataFormat":"wav","rate":48000,"sampleCount":3156,"md5ext":"5e48a0c509f4922f8a8d8600d3b1ea1f.wav"},{"name":"16","assetId":"b3e71b5b08fe921af659b174eaac15ee","dataFormat":"wav","rate":48000,"sampleCount":3321,"md5ext":"b3e71b5b08fe921af659b174eaac15ee.wav"},{"name":"17","assetId":"63a1b7d4c3522687d3576ee40b52a1cf","dataFormat":"wav","rate":48000,"sampleCount":3561,"md5ext":"63a1b7d4c3522687d3576ee40b52a1cf.wav"},{"name":"18","assetId":"687fd3739dba42bd60fc2c29f8f9284b","dataFormat":"wav","rate":48000,"sampleCount":52371,"md5ext":"687fd3739dba42bd60fc2c29f8f9284b.wav"}],"volume":100,"layerOrder":21,"visible":false,"x":-141,"y":-36,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"font","variables":{"]/R0=fD8X3ukr[?)_:vL":["i","0"],"K{h~x6)DC:d*~Zu`CfAX":["k",1],"k:|mZZ-e3/}Z,@tSy,sK":["l",68],"8#GN`Bn0{e?U=[@Rvm;~":["m",16],"*r-MV7B^PL30%%8PQz%`":["i",0],"RBD.T_tlTqDvriQZH:[N":["x",-166],"|ke}j~q$D+WWLo05@rUl":["z",0.01],"xM[|Vl:5_:MuhN:9WJ%-":["v",0.015628747956440075],"J^e?eg%kT5zRj~Vb)VXI":["j","0"],"Ylpv#yntx`3MMU(uD;7(":["y",120],"YCX/}Ja|`ApccN*r;:,O":["!NMI_occured",0],"PdO5iRC_RNzBVsdyMO(q":["!op",0],"6zFO5H,!X[g$Ax)0BDc:":["!break",0],"tnat7=?L(.Gf;]^`o~![":["!A",0],"eKD6zRz^J$VNCFfut}ek":["!X",0],"FvIw9c;onN-C-qYdNkXU":["!Y",0],"3U:*vMhK7gf],IM6zRp[":["!SP",0],"1zbCCns)7a+FK@Nf^A#/":["!P",0],"kCSOy9d,i:SuF$IT*yY@":["!C",0],"3;^us/Z(haF2h@u#ixfd":["!D",0],"wJv)p=)7?CJ}66t~yQza":["!I",0],"6|L=PAzk5$k7/hNNP_Ms":["!N",0],"*Hk9oR1;3ZLP2cBS$Bu[":["!Z",0],"6UhPihgrE#HibT*P,RHy":["!V",0],"h8`w|l[}rxX:~@aRHHz5":["!PC",0],"0D@F26Q(QbXNRv;sB.Ye":["!port1_count",0],":!.1hRdP~CdZKrp$qkR@":["!ctrl_strobe",0],"G)X5:8nBe}gs.ik#[2!5":["temp",0],"$4AJvv6|*3+i6I3,wC{(":["!penalty",0],"4_*DN3EPL}ongsmeF*~C":["!ppu_cycle",0],"gJ4fW7d.auVkNJS*cbF.":["!port2_count",0],"~__5y{t{J/3[Txcl^o6q":["!apu_cycle",0],"*q7!$s|[`z8:pfv)YW#?":["!immediate",0],"Y5dm@[4]PzSED`#Df2W[":["@sprite_hit",0],"n/uGuI@m:8GT`1-G^|Oe":["@sprite_overflow",0],"|,-0zY+!?.Wa?z)q2;cN":["@vram_incr",0],"OGQilL=pA|ghGCn/Ae3?":["@sprite_pattern",0],"vTq-oq{gvgqfjW3L4iSt":["@bg_pattern",0],"6-5_Tcd.JImB^+U#4bLB":["@sprite_size",0],"2j/RBbii5O{|d#5d)@hc":["@nmi_enabled",0],"]o%cE!~|lER;?d)!WgyR":["@nmi_flag",0],"rp0u9foKc3@?]%7O5HRb":["@mask_bg",0],"Tzlr[o(!fW{rTd~V:J,G":["@mask_sprite",0],"~C;tFyLG;WJlq~1ZPX1f":["@render_bg",0],"xu#/+b%vNGX}5y8HCFJ#":["@render_sprite",0],"w0R+jC2MWt7iHMnRlqZn":["@vram_addr",0],"oS%53`U7y@bB1gbSz8^+":["@data_latch",0],"5@CAuX+T_vc:]!OZM32!":["@write_toggle",0],"}Pgpy`,bfpd--EE?mgCu":["@read_buffer",0],"`oeC-QRVa|Hd.Tue!dpl":["@frameskip",0],"-Bj6q@mZ2k6)U;uPWj9x":["@scanline",0],"3sIlg`D|dR5*_=UFh2mC":["@temp_addr",0],"/;^Ln0I[%/7~93and,t4":["@result",0],"x`t:)+)xe^7Rio7v]}F]":["@tile_index",0],"OQF50=wL0|j4S5.I%k/,":["@bit",0],"1oCHy{p]O4~gQKbeR[pS":["@palette",0],"s2;D+jIwjcX@LdHBZp2L":["@fine_x",0],"O-XGEJrBMMOorrV6rRfY":["@hflip",0],"a5rGQ~(qxK.pdb@-7tv9":["@sprite_attribute",0],"y`PaeB/{^[+=lUi~^f35":["@sprite_y",0],"*`+18/=FU3Ni:/*T,!l(":["@sprite_x",0],"H,%zY0Kr47K}Znd}~]8+":["@sprite0_bit",0],"q:J@[.C#brGXD1scwWlL":["@sprite_priority",0],":{s`ni1Fg)H5!ukHNf.u":["@nametable_index",0],"c8^9ZpQ-zkSNe^OG*WmN":["@nt_data",0],"0hDEcBYI%En[Mn~,-dgZ":["@counter",0],"Vs}Qb!b2oi_SFKzkC=Ic":["@oam_addr",0],"e+9hOLK@)5)Ss`T7ADb5":["#frame_interrupt",0],")Pem#eJ?1b%tcUR/YLZ8":["#irq_inhibit",0],"^Wa,tZpWIEXY_cWgBvXd":["#frame_mode",0],"fyS(EXct?2w*M.Nwqgr~":["#sequence",0],"MHM3-iaaIPoFESXtQ;t5":["#sq0_counter_halt",0],"7jB@6`ZeDqFpSM2|Z}eY":["#sq0_lengthcounter",0],"e..v2zd5D#2(~C2#;wE5":["#sq0_enabled",0],"^NQIbN*Yt8ZTd++^lhob":["$prg_bank0",0],"O#|syv58E[Gj7U_`IiNq":["$prg_bank_mode",0],"PSk+(J[Bg:SNyKArZZZ!":["$prg_bank1",0],"MuVfO=YYlpa%T+H,NJnm":["$irq_latch",0],"fwFL=0cpY^V5KbYAj;F9":["$irq_enabled",0],"(Bva{aj,%,g7M19235_|":["$irq_occured",0],"Rsej-utFuPehsXAVyTSL":["$reg0",0],":qHrq7o:g@OR|zUf/9t(":["$reg1",0],"=4{R,[SzAGXWuCu4/kL2":["$chr_bank_mode",0],"v9nn2/IOi1xI42vV9gmp":["$chr_bank0",0],"+cW@y^s2F)I5Dqe`It(A":["$chr_bank1",0],"[UuKc9PitdeXDW{kY%E-":["$chr_bank2",0],"=Y#[cj!#=E2~0_YB0cvD":["$chr_bank3",0],"#:3i`qtdaYV)X/d.1nWL":["$chr_bank4",0],"Vek`-Q5H.Nb!r^O9AL:W":["$chr_bank5",0],"bZQ~RwNT3xNz)9db7Z-Z":["$irq_reload",0],"%@XOzsp%nquc!t7pwyH1":["$prg_bank2",0],"IH-i^bTE9H)(~1qQP=%i":["$prg_bank3",0],"V[@{,SY}EFC|sP=BL]Hu":["$chr_bank6",0],"BG.CoXmh.n|7S`teB%Cz":["$chr_bank7",0],"t,oYIHDtfb?VPjK%fd^[":["$irq_counter",0],"N)orW@%%E%$4al|2,BkE":["nes: IRQ",0],"jy.7$]U@O1MkAbz98}T+":["#sq0_period",0],"dB0flbU!1%]JaiK.z7Y$":["#sq0_duty",0],"A%!%qRtLZC]nW~p,)!i%":["#sq0_volume",0],"wn(;l_KDki8)r5(ghAFC":["#sq0_constant",0],"#Av;W`BG=vl=H0s()-!=":["#sq0_start",0],"[Gs~6]:p]neDG4uT.*8R":["#sq0_decay",0],"NEk/F*0W|$g}k?V!YnQs":["#sq0_divider",0],"JFkRP]sBcRFZA#p%(s5[":["#sq1_duty",0],"QXIh{vjr_WcT{5@Z9$V_":["#sq1_period",0],"a7zy6G,GluFays4z,XP7":["#sq1_counter_halt",0],"FMQ0!3hCZ/W1ODJaD|0!":["#sq1_volume",0],"V5`gP*J*-[d%pHYl=WL.":["#sq1_constant",0],"@4/+@;`xIa1GD6lDn;es":["#sq1_start",0],"{;O=v5i=Jm,IZB/SItqV":["#sq1_divider",0],"N3TVGftA]FVjj5Akw]@K":["#sq1_decay",0],"?J_Phm*-*3G*+ZF%mi,$":["#sq1_enabled",0],"`p.Q31!g+-r7qB6~g;6V":["#sq1_lengthcounter",0],":~1CFOUK_x[i{fP8hA[3":["#tri_period",0],"AI4b`Ac.x4046hdwA*GK":["#tri_lengthcounter",0],"5?qKt~N62.Zitv?o]-Al":["#tri_linearcounter",0],".BuyXV*dX#(v{Ybtg9SY":["#tri_control",0],"|%-hP?i[P7T1dz/;qptT":["#tri_reload",0],"6/%DP,r5rh`6SIBt3v4y":["#tri_reloadflag",0],"}jS%rxlSc-3H~Gn~UC7O":["#tri_enabled",0],"JA8|Du$U5F}!TRea:xoo":["!idle_skip",0],"lDVHu)]uV4^~JEFcX2gF":["#sq0_swenable",0],"6ZtJprVet|52~YE]#e.R":["#sq0_swperiod",0],"Rf6NEi.Wvo+#UqyAaCGX":["#sq0_swnegate",0],"x):Akro;B?IDs}?a(1S#":["#sq0_swshift",0],"elV@:}M3MreZKq22A%3?":["#sq0_swreload",0],"Dp9BC8ueo97YbpaH)YZh":["#sq0_swcounter",0],"nCPj0{q-wGj=!O-:wX$%":["#sq0_swtarget",0],"d#{}}5.jeOzt/68f8/23":["#noise_counter_halt",0],"9w#8ILSZ$^iPt|9!L6cw":["#noise_constant",0],"vBuLse(~z3!bQ+oQeC{l":["#noise_volume",0],"wLUu:/;$@K16sJ?,vRSu":["#noise_start",0],"jGoXqn^SI^b!jk+UN[{Q":["#noise_lengthcounter",0],"9]wlSTu+]*Y~:nsZ9z4n":["#noise_mode",0],"?A|Ii0235Jf)q]b{e^F;":["#noise_period",0],"bNb:zYe.|6Wi-/?Dqy0V":["#noise_enabled",0],"p,u2*;-v*L)r$MCvq%DP":["#noise_decay",0],"](XO5ySg.N?yyt`REZUa":["#noise_divider",0],")TL[@w=%kNGGpKOt!j6K":["#sq1_swenable",0],"8IbJ`L:k(VYE2y+AXNN`":["#sq1_swperiod",0],"@38r@HPL^9siX}wJ8M!P":["#sq1_swnegate",0],"?;V(T8WDnRbrj{jtuq=C":["#sq1_swshift",0],"Pf-v8_2K9#-6+.(eR!!E":["#sq1_swreload",0],"*esvLM8NOPIYxzMcC4])":["#sq1_swcounter",0],"lMq)$[K=Pd?VS)hX|@wl":["#sq1_swtarget",0],"?knU,3_sJVt4l09i6{)x":["!sprite_dma",0],"G2?CoJ$Jx$O?F?(7oUHy":["nes: NMI",0],"e5mXhyD?uqx!4zY}kb,2":["cpu_cycle",0],"tlPB/|?Ne.:6uFQ;3`S1":["nes: data",0],"LieAxAMhdI5M{cEs}+(t":["nes: address",0],"n;0UExIQMoO!Lz=!vPek":["@lastframe",0],"]k`#qf@6r-uzGs-*/KqF":["@pattern_addr",0],"HM)En0c}chMa#CL/6:U:":["$prg_banks",0],"LVknz2u[sZIs|sIk67S%":["$jy_swaplastbank",0],"rs}5r[IDZ4Y0+A.8v_C%":["$irq_mode",0],"gB~16fnQ{z]0?Ae}tWSd":["#dmc_address",0],"@|x/pnw9Y=K9[1rQ^9?.":["#dmc_length",0],"K:RgLhONccG8dn?:Gz`2":["#dmc_rate",0],"|9+L8O@JFIZ.bUzBKQDs":["#dmc_enabled",0],"+yZB}NV9!4)X~Jf@W14_":["$5b_command",0],";E?SYI/y0cz0le)X4#4l":["_R",0],"io(,(TfDAEBRM2iX1c}h":["loop",0],"!@vTj4c1The8*{(^_*O.":["_S",0],"T`~F4~2,O!/[8pu)xO1,":["T1",0],"pI+E2RUGrnC0}Oxj[fQD":["g",0],"Yyq0n/?:tZ-1R{!(9E,I":[".IME",0],"R93(y;ezBDFNxz;R$.9{":["-LY",0],"]j0JoR^IRmZ%Dqa1U-3t":["-wx",0],"[P*KHQ#6Rk9]Ox;1v%3A":["-LYC",0],"FL2h%|upY.J#$}=ul8?a":[".spritesize",0],"0pKRpVmta7bZeii6{wYz":["-scx",0],"j%_uw7vcE;vljqGCEt;-":["-LCDC",0],".yqIokTgw8-|]3$}O%wt":["-STATUS",0],"hX1J)AVg^t88ELGv:hb%":["T2",0],"RJLtSXRx71$[%`nwOBtM":["@PIX",0],"Xa^xc{EoyO7r}@UX9*==":["h",0],"Tj+w!/(PV_!`zhKO@qb%":["@PAL",0],"Z]?-Im_0pF^!OOi!AX81":["-WLY",0],"dyPQEg`wlO+1vws5/HRV":["-windowWasDrawn?",0],":D[mPTcd3;]Yf==]Wvx`":["_X",0],"DmmVyMpO/ebSRU2g=Wc:":["T3",0],"7D2+hT#2qu+P*=`t{Hlz":["_current bank",0],"v.3%0+x.An^dc%ycqc,h":["*OAMDMAS",0],"w]/Z*A/dznMc;~79B@Ap":["*OAMDMA#",0],"WhM=KlgvY@V6x|(`!06Q":["T5",0],"xwd)j4SY4qa||w7J0yBP":["T6",0],"FJEs/3`VRSW|=4S_cI}F":["_frames",0],"%Z}6^@{`zI6YV~G_?)Jj":["_frameskip",0],"O*.$-nBOGKoJ7i+^Qwg2":["time1",0],"ZnIX}4]R}DE8HyQ,rg57":[".instrID",0],"ujAlu]pJm2~uaC1iJUQ]":[".instr",0],"|Cl^=?C:,/{Epnf![x2:":["_T",0],"d{oa^`AGe`;eIR$H[7uf":["T7",0],"4`Ni_=/i=RIJ0%Y?]=Fn":["_RE",0],"VR1C#;_dshr98xN-P9L|":["T8",0],"+rwgUY7_t16|rsI3)wfC":["_lineCyc",0],"o~PUUkHtM;d|0cL72}R,":["_STATcond1",0],"{}%R*l;pt#ssSJM}}m?-":["_STATcond2",0],"%H5F/uE0-oBcg#Ueg1HX":["-LCDS",0],"$bOgKA@,Cg7J(#lntKuz":["_YSHIFT",0],"7ge_EoziNOcpkF[hyyvb":["_XSHIFT",0],"951ss`PQmd4:$N48_hl;":[".soundEnable",0],"jQVk|kz76jS8DHck5*?e":["_rom size",0],"i{fSr|$u)-tpEX+a*y{]":["_SIZE",0],"za5df3dC6Lq85;3lun8/":[".GBC?",0],"l5]S3A7BUTfQhoeX1QMo":["_Z",0],"dOLNCNdWP`.36j7uacOp":[".windowflag",0],"*$a?01}j0xiTOD04my^,":["T10",0],"s18i.M`CVzl`g@kEVPGN":[".DIVCYCLES",0],"TyNKP)!4YD91CXr;Ofr%":[".TAC1",0],".C8gJ;d]=.XH;$5E8oB2":[".TAC2",0],"dK3?LB9A%FG6.YYddD?(":[".TACFLAG",0],"AX4IlWqKU({GdZ7:.?*!":[".spriteattributes",0],"ecaYd9sPeo:%`_LsAsJD":["T9",0],"W/n=I{ySVA3XJEP{k?=[":[",joypad",0],"(BHg(FiW6n7},,p-%q%%":["T4",0],"wJ{KQ$v8^;+Hlh@.7tJv":["_MBCnumber",0],"Crf*ltOpxTp[zPgDlY{T":[",c",0],"k_tzmxwQ^5),Egn!0L:3":["FPS",0],"!#:owuhU@|TD~fX?SQd0":["-SCXMOD8",0],"F-[0c$U5I;6bxPbW?^5C":[".vbank",0],"|:KA#88+TR_ky=lPP5oN":[".spriteCpal",0],"a^B*+PC_g3)^{A!L}XWv":[".tileB",0],";.CEwXh;.U;z^iL6kY}4":[".Mpri",0],";gzI_,?`HaxU*b,C$z,M":[".Spri",0],"QwG!GB*-SvenHq{bU0[6":["-LYmask",0],"b#%5IA`afs~P-ErWHe%`":["render",0],";{(|I#5z)oz:*|%#$atp":["_IEindex",0],"qOvY4@JXH3Z=q*#gP*-=":["_IFindex",0],"$:(/kN7.}P:lAp]`:oC)":[".timenable",0],"MzjtR%U}q{vlM~,lxGYF":[".SPEED",0],"q3];|lI;X@QP63GyUdgC":[".DMAstart",0],"gb)yqT91dr(YhxH_!$oK":[".DMAend",0],")y?/_!@Q{wFz2FZBZ)YR":[".DMAlength",0],"kk18ewt7HpVOvYWizQ?E":[".DMAenable",0],"0NzoLpmy^eZ1=JjkzYGg":[".DMAtype",0],"qXl$(oh,s-`,(d=7TISu":[".DIV2",0],")$_1A%[u4h%@g;$35$Xj":["time2",0],"j1eKKgYTu[qSVFb2,O.#":[".HDMAenable",0],"QGqvJ2ss)hMY|{h/*HlZ":["_INTRdest",0],"[THklOWON,rz#pznmehC":["_A",0],"jh2$j7v[s~2Jkx.#Z1+z":["_B",0],"tGe/Wd:o59i4QQ9}C^)o":["T11",0],"hpXj8g4|ZHczy1?w+*u`":["T4.1",0],"P6r1PrSf,aWdOUXT8nij":["T4.2",0],"_CW|-^_^`N}DL:?%3bn.":["-keyRandom",0],"AfAG@-SCQv_v!Pd(!ksr":["_PIXEL#",0],"(T;tOv.x|5[_=^tcd?s+":["_STATindex",0],"r-%xXbKR}U_Ukw8g(6?9":["lines",0],"-^88*(Y:JZOEd{YAhXza":["lock",0],"lTmVP1QU2X.8`:dRKK^u":["sound",0],"9]b,=u?R90w=tux{E^:8":["delta",0],"^O3jJx+xp(vzy`j-Qc^G":["s",0],"#_MF{}THpD}[S5u5NqvJ":[".t",0]},"lists":{"g1X0d%+|q`l:YKb?Jj_I":["dat",["0000000000000000","0000183C3C180000","2030383C38302000","040C1C3C1C0C0400","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","0000000000000000","3078783030003000","6C6C6C0000000000","6C6CFE6CFE6C6C00","307CC0780CF83000","00C6CC183066C600","38683876DCC87600","6060C00000000000","1830606060301800","6030181818306000","00663CFF3C660000","003030FC30300000","0000000000303060","000000FC00000000","0000000000303000","060C183060C08000","78CCDCFCECCC7800","307030303030FC00","78CC0C3860CCFC00","78CC0C380CCC7800","18385898FC183C00","FCC0F80C0CCC7800","3860C0F8CCCC7800","FCCC0C1830303000","78CCCC78CCCC7800","78CCCC7C0C187000","0030300000303000","0030300000303060","183060C060301800","0000FC0000FC0000","6030180C18306000","78CC0C1830003000","7CC6DEDEDEC07800","78CCCCFCCCCCCC00","FC66667C6666FC00","3C66C0C0C0663C00","F86C6666666CF800","FE6268786862FE00","FE6268786860F000","3C66C0CEC6663E00","CCCCCCFCCCCCCC00","7830303030307800","1E0C0C0CCCCC7800","E6666C786C66E600","F06060606266FE00","C6EEFEFED6C6C600","C6E6F6DECEC6C600","386CC6C6C66C3800","FC66667C6060F000","78CCCCCCDC781C00","FC66667C6C66E600","78CC603018CC7800","FCB4303030307800","CCCCCCCCCCCCFC00","CCCCCCCCCC783000","C6C6C6D6FEEEC600","C66C3810386CC600","CCCCCC7830307800","FE8E9C3872E2FE00","7860606060607800","C06030180C060200","7818181818187800","10386CC600000000","00000000000000FF","3030180000000000","0000780C7CCC7600","E060607C6262DC00","000078CCC0CC7800","1C0C0C7CCCCC7600","000078CCFCC07800","386C60F06060F000","000076CCCC7C0CF8","E06068766666E600","3000703030307800","0C000C0C0CCCCC78","E060666C786CE600","7030303030307800","0000CCFEFED6C600","0000F8CCCCCCCC00","000078CCCCCC7800","0000DC66667C60F0","000076CCCC7C0C1E","0000DC766660F000","000078C0780CF800","10307C3030341800","0000CCCCCCCC7600","0000CCCCCC783000","0000C6D6FEFE6C00","0000C66C386CC600","0000CCCCCC7C0CF8","0000FC983064FC00","1C3030E030301C00","1818180018181800","E03030183030E000","76DC000000000000","0010386CC6C6FE00","78CCC0CC78180C78","00CC00CCCCCC7E00","1C0078CCFCC07800","7EC33C063E663F00","CC00780C7CCC7E00","E000780C7CCC7E00","3030780C7CCC7E00","000078C0C0780C38","7EC33C667E603C00","CC0078CCFCC07800","E00078CCFCC07800","CC00703030307800","7CC6381818183C00","E000703030307800","C6386CC6FEC6C600","30300078CCFCCC00","1C00FC607860FC00","00007F0C7FCC7F00","3E6CCCFECCCCCE00","78CC0078CCCC7800","00CC0078CCCC7800","00E00078CCCC7800","78CC00CCCCCC7E00","00E000CCCCCC7E00","00CC00CCCC7C0CF8","C3183C66663C1800","CC00CCCCCCCC7800","18187EC0C07E1818","386C64F060E6FE00","CCCC78FC30FC3030","F8CCCCFAC6CFC6C7","0E1B183C1818D870","1800780C7CCC7E00","3800703030307800","001C0078CCCC7800","001C00CCCCCC7A00","00F800F8CCCCCC00","FC00CCECFCDCCC00","3C6C6C3E007E0000","386C6C38007C0000","30003060C0CC7800","000000FCC0C00000","000000FC0C0C0000","C3C6CCDE3362CC0F","C3C6CCDB376FCF03","1818001818181800","003366CC66330000","00CC663366CC0000","2288228822882288","55AA55AA55AA55AA","DD77DD77DD77DD77","1818181818181818","18181818F8181818","1818F818F8181818","36363636F6363636","00000000FE363636","0000F818F8181818","3636F606F6363636","3636363636363636","0000FE06F6363636","3636F606FE000000","36363636FE000000","1818F818F8000000","00000000F8181818","181818181F000000","18181818FF000000","00000000FF181818","181818181F181818","00000000FF000000","18181818FF181818","18181F181F181818","3636363637363636","363637303F000000","00003F3037363636","3636F700FF000000","0000FF00F7363636","3636373037363636","0000FF00FF000000","3636F700F7363636","1818FF00FF000000","36363636FF000000","0000FF00FF181818","00000000FF363636","363636363F000000","18181F181F000000","00001F181F181818","000000003F363636","36363636FF363636","1818FF18FF181818","18181818F8000000","000000001F181818","FFFFFFFFFFFFFFFF","00000000FFFFFFFF","F0F0F0F0F0F0F0F0","0F0F0F0F0F0F0F0F","FFFFFFFF00000000"]],"X_VP{NmPL`h[GvuS[,%%":["!ram",[]],"(FqH+{kk!n$8Z^)0|4F|":["!modes",[]],"T$5A;?z~P`Hle{DQ-4sz":["!trace",[]],"J!+O1tv.S4ifq^pnyyrA":["!hex",[]],"zl)~s~6Ua9dNhPa9qb2b":["!wram",[]],"l[6V7kN_:`z4_t@(@I.9":["@bg_palette",[]],"H;sZ.%NMOG^`:O:Wj!U_":["@spr_palette",[]],"03o?sn/t}PjCbeDx#3{w":["@palette",[]],"oJgU|x!842eP+q,1(.#,":["@ciram0",[]],"p5xmBfJ0lhk757f@^i+(":["@ciram1",[]],"[17+MWA-HD.KD]Sxa(vu":["@attribute0",[]],"6|12/+(e~t(1zW~z,vQQ":["@attribute1",[]],"XD{?H?Uh}uGjJ|Mb@Y+!":["@oam_mem",[]],":vA5RQqBZ#8*nYTx;t??":["@temp_oam",[]],"*R!h^Efk-^@f`k0l/%/H":["@convert",[]],"nFe_P%8kqprS]u|SqcT@":["#length_table",[]],".S|FktusGCQ:m9X)mIEJ":["#noise_period",[]],"r-I3Q/$PgbvKTUVcmg/.":["!prg_banks",[]],"KNRSCd@{D{rg%w?EkH2Y":["@chr_banks",[]],"l_SdM8J9l+s4GCCBOzH}":["@ciram2",[]],"{%!cZhFPAz@2p4$Z97oc":["@ciram3",[]],"YVPgH6bmZSr~u;F.Qp|3":["@attribute2",[]],"Iq|PNms0eHTJa4kj75)b":["@attribute3",[]],"I`5okbJQFT`oYf*Pv4E]":["Flag bits",[]],"#,HpQY,,NMZpTP#Z/$7a":["byteStack",[]],"M;Zg}Clnv_jRTTiVfz1x":["*OAMidx",[]],"`#n=K.W21Z+b9,1$DjCs":["$A",[]],"Ztb;SoN#-D4mbjS9_?T|":["$B",[]],"*2nK}A?8F`?ufZ@yn-PQ":["$C",[]],"`b}E$,6@R122(5y)._3=":["2^x",[]],"rt`J2N?0$d]K9j?Ynj$f":["*palette",[]],"Gxeo^a7r|uEHj#R[%7jG":["*OAMx",[]],"lN|dA_r%+dH9fhnepMn$":["*OAMy",[]],"[~q6:p[Kks?m0Rapk7eD":["_REGISTERS",[]],"`Nny$[X*@z~ce_9oE{M!":[".addr2ptr",[]],".7fdK[:S64[eA_H7p=d0":[".pointerStart",[]],"pi,4q[J]J/T2U|O`6bdM":[".ptr",[]],"iA7(P88z*!*iQtK8@cy1":[".ptr index",[]],"WYIpZLO@uiw_pjT%Sf.j":["_cartridge stuff",[]],"`KBp;:YVz$LYqY:-@q%C":["_instrParam",[]],"OsR*`-9=L4[RoZqDaF|B":["_instrIDs",[]],"u16r)vc%h8n1*rIQ+.aj":["_RAM",[]],"?d7S^.xq^5}3hEAhxJ.u":["_ROM",[]],"A}SPn)@|;K4@45j;UT4o":["_pix",[]],"/|!9RA(;bcQML{0,LacV":["_DMGPALETTE",[]],"80s*CPv1XN%@|_(/A,i$":["_PALETTE RAM",[]],"co=Q#-C]T_}X,w7fOhbc":["_GBCPALETTELOOKUP",[]],"QHPemIrZSCXS)P]=c(?5":["_soundregs",[]],"Sg#%}-2*EKW|ZXDbl4V7":[".vals",[]],"X`qJ$waq$}Fv`dbd;h$x":["testroms",[]]},"broadcasts":{},"blocks":{"cR":{"opcode":"operator_mod","next":null,"parent":"cV","inputs":{"NUM1":[3,"ad",[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"cS":{"opcode":"data_setvariableto","next":"r","parent":"aA","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["k","K{h~x6)DC:d*~Zu`CfAX"]},"shadow":false,"topLevel":false},"cT":{"opcode":"data_setvariableto","next":"s","parent":"r","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["j","J^e?eg%kT5zRj~Vb)VXI"]},"shadow":false,"topLevel":false},"aM=":{"opcode":"operator_equals","next":null,"parent":"p","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aM?":{"opcode":"procedures_call","next":null,"parent":"p","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"azX":{"opcode":"operator_equals","next":null,"parent":"q","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"azY":{"opcode":"procedures_call","next":null,"parent":"q","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"awW":{"opcode":"operator_equals","next":null,"parent":"cS","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"awX":{"opcode":"procedures_call","next":null,"parent":"cS","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"jW":{"opcode":"data_setvariableto","next":"Dh","parent":"cS","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!A","tnat7=?L(.Gf;]^`o~!["]},"shadow":false,"topLevel":false},"Dh":{"opcode":"procedures_call","next":null,"parent":"jW","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"!A","tnat7=?L(.Gf;]^`o~!["],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"aB^":{"opcode":"operator_equals","next":null,"parent":"r","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aB_":{"opcode":"procedures_call","next":null,"parent":"r","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"awZ":{"opcode":"operator_equals","next":null,"parent":"cT","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw!":{"opcode":"procedures_call","next":null,"parent":"cT","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"jX":{"opcode":"procedures_call","next":"Dk","parent":"cT","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"Dk":{"opcode":"data_setvariableto","next":null,"parent":"jX","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!Y","FvIw9c;onN-C-qYdNkXU"]},"shadow":false,"topLevel":false},"aCf":{"opcode":"operator_equals","next":null,"parent":"s","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aCg":{"opcode":"procedures_call","next":null,"parent":"s","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aCp":{"opcode":"operator_equals","next":null,"parent":"t","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aCq":{"opcode":"procedures_call","next":null,"parent":"t","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aw%":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,"!immediate","*q7!$s|[`z8:pfv)YW#?"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw(":{"opcode":"procedures_call","next":null,"parent":"b","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"bo":{"opcode":"procedures_call","next":"Ds","parent":"b","inputs":{"he_5I0Vn2LIG0pN#spRg":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!zn %s","argumentids":"[\"he_5I0Vn2LIG0pN#spRg\"]","warp":"true"}},"Ds":{"opcode":"data_setvariableto","next":null,"parent":"bo","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["!X","eKD6zRz^J$VNCFfut}ek"]},"shadow":false,"topLevel":false},"aC;":{"opcode":"operator_equals","next":null,"parent":"u","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"kR":{"opcode":"data_setvariableto","next":"DB","parent":"u","inputs":{"VALUE":[1,[10,"80000"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"DB":{"opcode":"control_stop","next":null,"parent":"kR","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aC=":{"opcode":"operator_equals","next":null,"parent":"v","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kS":{"opcode":"data_changevariableby","next":"Kr","parent":"v","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Kr":{"opcode":"data_setvariableto","next":"kT","parent":"kS","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"kT":{"opcode":"procedures_call","next":"Xy","parent":"Kr","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aC`":{"opcode":"operator_equals","next":null,"parent":"w","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Xz":{"opcode":"data_changevariableby","next":"Ks","parent":"w","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Ks":{"opcode":"data_setvariableto","next":"DE","parent":"Xz","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"DE":{"opcode":"control_stop","next":null,"parent":"Ks","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aC{":{"opcode":"operator_equals","next":null,"parent":"x","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"XA":{"opcode":"data_changevariableby","next":"Kt","parent":"x","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"Kt":{"opcode":"data_setvariableto","next":"DF","parent":"XA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["!immediate","*q7!$s|[`z8:pfv)YW#?"]},"shadow":false,"topLevel":false},"DF":{"opcode":"control_stop","next":null,"parent":"Kt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aM}":{"opcode":"operator_equals","next":null,"parent":"y","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"mr":{"opcode":"data_changevariableby","next":"d[","parent":"y","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d[":{"opcode":"data_setvariableto","next":"d]","parent":"mr","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d]":{"opcode":"data_changevariableby","next":"ms","parent":"d[","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ms":{"opcode":"procedures_call","next":"mt","parent":"d]","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNa":{"opcode":"operator_equals","next":null,"parent":"A","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"mu":{"opcode":"data_changevariableby","next":"d^","parent":"A","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d^":{"opcode":"data_setvariableto","next":"d_","parent":"mu","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"d_":{"opcode":"procedures_call","next":"mv","parent":"d^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"mv":{"opcode":"data_setvariableto","next":"mw","parent":"d_","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FE":{"opcode":"procedures_call","next":"mx","parent":"C","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNe":{"opcode":"control_stop","next":null,"parent":"C","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aNh":{"opcode":"operator_equals","next":null,"parent":"B","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"my":{"opcode":"data_changevariableby","next":"d`","parent":"B","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d`":{"opcode":"data_setvariableto","next":"mz","parent":"my","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"mz":{"opcode":"procedures_call","next":"mA","parent":"d`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNj":{"opcode":"operator_equals","next":null,"parent":"D","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"mB":{"opcode":"data_changevariableby","next":"d{","parent":"D","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d{":{"opcode":"data_setvariableto","next":"d|","parent":"mB","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d|":{"opcode":"data_changevariableby","next":"YO","parent":"d{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"YO":{"opcode":"procedures_call","next":"FF","parent":"d|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FJ":{"opcode":"procedures_call","next":"FK","parent":"F","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNk":{"opcode":"control_stop","next":null,"parent":"F","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aNn":{"opcode":"operator_equals","next":null,"parent":"E","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"FL":{"opcode":"data_changevariableby","next":"d}","parent":"E","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"d}":{"opcode":"data_setvariableto","next":"d~","parent":"FL","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"d~":{"opcode":"data_changevariableby","next":"ea","parent":"d}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"ea":{"opcode":"procedures_call","next":"FM","parent":"d~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"FM":{"opcode":"data_changevariableby","next":"FN","parent":"ea","inputs":{"VALUE":[3,[12,"!X","eKD6zRz^J$VNCFfut}ek"],[4,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FQ":{"opcode":"procedures_call","next":"FR","parent":"H","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNo":{"opcode":"control_stop","next":null,"parent":"H","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aNr":{"opcode":"operator_equals","next":null,"parent":"G","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"FS":{"opcode":"data_changevariableby","next":"%","parent":"G","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"%":{"opcode":"control_if_else","next":"FT","parent":"FS","inputs":{"CONDITION":[2,"FU"],"SUBSTACK":[2,"FV"],"SUBSTACK2":[2,"ab"]},"fields":{},"shadow":false,"topLevel":false},"FU":{"opcode":"operator_equals","next":null,"parent":"%","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"FV":{"opcode":"data_setvariableto","next":null,"parent":"%","inputs":{"VALUE":[1,[10,"-128"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"aNs":{"opcode":"operator_gt","next":null,"parent":"ab","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"FW":{"opcode":"data_setvariableto","next":null,"parent":"ab","inputs":{"VALUE":[3,"FX",[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FX":{"opcode":"operator_mod","next":null,"parent":"FW","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"-128"]]},"fields":{},"shadow":false,"topLevel":false},"aNt":{"opcode":"data_setvariableto","next":null,"parent":"ab","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"FT":{"opcode":"control_stop","next":null,"parent":"%","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aNu":{"opcode":"operator_equals","next":null,"parent":"I","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"FY":{"opcode":"data_changevariableby","next":"eb","parent":"I","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"eb":{"opcode":"data_setvariableto","next":"FZ","parent":"FY","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"FZ":{"opcode":"procedures_call","next":"F!","parent":"eb","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aNw":{"opcode":"operator_equals","next":null,"parent":"J","inputs":{"OPERAND1":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"mC":{"opcode":"data_changevariableby","next":"ec","parent":"J","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["!PC","h8`w|l[}rxX:~@aRHHz5"]},"shadow":false,"topLevel":false},"ec":{"opcode":"data_setvariableto","next":"ed","parent":"mC","inputs":{"VALUE":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"ed":{"opcode":"data_changevariableby","next":"mD","parent":"ec","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["nes: address","LieAxAMhdI5M{cEs}+(t"]},"shadow":false,"topLevel":false},"mD":{"opcode":"procedures_call","next":"mE","parent":"ed","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"!read","argumentids":"[]","warp":"true"}},"aD=":{"opcode":"data_addtolist","next":null,"parent":"z","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"XB":{"opcode":"data_addtolist","next":null,"parent":"z","inputs":{"ITEM":[3,"Ku",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ku":{"opcode":"data_itemoflist","next":null,"parent":"XB","inputs":{"INDEX":[3,"Kv",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kv":{"opcode":"operator_add","next":null,"parent":"Ku","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"DO",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DO":{"opcode":"operator_letter_of","next":null,"parent":"Kv","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aD_":{"opcode":"operator_equals","next":null,"parent":"X","inputs":{"OPERAND1":[3,[12,"@mask_bg","rp0u9foKc3@?]%7O5HRb"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw*":{"opcode":"operator_subtract","next":null,"parent":"e","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,[12,"@fine_x","s2;D+jIwjcX@LdHBZp2L"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aw+":{"opcode":"data_addtolist","next":null,"parent":"e","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"aw)":{"opcode":"control_stop","next":null,"parent":"e","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"bp":{"opcode":"operator_equals","next":null,"parent":"k","inputs":{"OPERAND1":[3,"DQ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DQ":{"opcode":"operator_letter_of","next":null,"parent":"bp","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aw-":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"bq":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[3,"Kw",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Kw":{"opcode":"data_itemoflist","next":null,"parent":"bq","inputs":{"INDEX":[3,"Kx",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kx":{"opcode":"operator_add","next":null,"parent":"Kw","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"DR",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DR":{"opcode":"operator_letter_of","next":null,"parent":"Kx","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"jY":{"opcode":"operator_equals","next":null,"parent":"l","inputs":{"OPERAND1":[3,"DS",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DS":{"opcode":"operator_letter_of","next":null,"parent":"jY","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aw/":{"opcode":"data_addtolist","next":null,"parent":"l","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"jZ":{"opcode":"data_addtolist","next":null,"parent":"l","inputs":{"ITEM":[3,"Ky",[10,""]]},"fields":{"LIST":["pixel_buffer","%0@eg_iM4%`6o1lYsAwI"]},"shadow":false,"topLevel":false},"Ky":{"opcode":"data_itemoflist","next":null,"parent":"jZ","inputs":{"INDEX":[3,"Kz",[7,"0"]]},"fields":{"LIST":["@bg_palette","l[6V7kN_:`z4_t@(@I.9"]},"shadow":false,"topLevel":false},"Kz":{"opcode":"operator_add","next":null,"parent":"Ky","inputs":{"NUM1":[3,[12,"@palette","1oCHy{p]O4~gQKbeR[pS"],[4,"0"]],"NUM2":[3,"DT",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"DT":{"opcode":"operator_letter_of","next":null,"parent":"Kz","inputs":{"LETTER":[3,[12,"@bit","OQF50=wL0|j4S5.I%k/,"],[6,"0"]],"STRING":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aEi":{"opcode":"data_setvariableto","next":null,"parent":"Y","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@sprite_hit","Y5dm@[4]PzSED`#Df2W["]},"shadow":false,"topLevel":false},"aEn":{"opcode":"operator_equals","next":null,"parent":"kU","inputs":{"OPERAND1":[3,[12,"@sprite_priority","q:J@[.C#brGXD1scwWlL"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XC":{"opcode":"operator_equals","next":null,"parent":"a*","inputs":{"OPERAND1":[3,"KF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KF":{"opcode":"data_itemoflist","next":null,"parent":"XC","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"mF":{"opcode":"operator_equals","next":null,"parent":"}","inputs":{"OPERAND1":[3,"F)",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F)":{"opcode":"data_itemoflist","next":null,"parent":"mF","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"mG":{"opcode":"operator_equals","next":null,"parent":"ac","inputs":{"OPERAND1":[3,"Nd",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Nd":{"opcode":"data_itemoflist","next":null,"parent":"mG","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"XD":{"opcode":"operator_equals","next":null,"parent":"br","inputs":{"OPERAND1":[3,"KJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KJ":{"opcode":"data_itemoflist","next":null,"parent":"XD","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"XE":{"opcode":"operator_equals","next":null,"parent":"bs","inputs":{"OPERAND1":[3,"#:",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"#:":{"opcode":"data_itemoflist","next":null,"parent":"XE","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"XF":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,"#?",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"#?":{"opcode":"data_itemoflist","next":null,"parent":"XF","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"XG":{"opcode":"operator_equals","next":null,"parent":"bu","inputs":{"OPERAND1":[3,"#_",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#_":{"opcode":"data_itemoflist","next":null,"parent":"XG","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"XH":{"opcode":"operator_equals","next":null,"parent":"bv","inputs":{"OPERAND1":[3,"KL",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"KL":{"opcode":"data_itemoflist","next":null,"parent":"XH","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"kV":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"KO",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"KO":{"opcode":"data_itemoflist","next":null,"parent":"kV","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"kW":{"opcode":"operator_equals","next":null,"parent":"bx","inputs":{"OPERAND1":[3,"KW",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"KW":{"opcode":"data_itemoflist","next":null,"parent":"kW","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"kX":{"opcode":"operator_equals","next":null,"parent":"by","inputs":{"OPERAND1":[3,"K_",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"K_":{"opcode":"data_itemoflist","next":null,"parent":"kX","inputs":{"INDEX":[3,[12,"@nametable_index",":{s`ni1Fg)H5!ukHNf.u"],[7,"0"]]},"fields":{"LIST":["nt_map","?y(KCJo)9i,S7J!}tsTu"]},"shadow":false,"topLevel":false},"kY":{"opcode":"data_setvariableto","next":null,"parent":"bz","inputs":{"VALUE":[3,"Ls",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Ls":{"opcode":"operator_join","next":null,"parent":"kY","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"kZ":{"opcode":"data_setvariableto","next":null,"parent":"Lq","inputs":{"VALUE":[3,"Lu",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lu":{"opcode":"operator_join","next":null,"parent":"kZ","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"k!":{"opcode":"data_setvariableto","next":null,"parent":"Z","inputs":{"VALUE":[3,"Lx",[10,""]]},"fields":{"VARIABLE":["@result","/;^Ln0I[%/7~93and,t4"]},"shadow":false,"topLevel":false},"Lx":{"opcode":"operator_join","next":null,"parent":"k!","inputs":{"STRING1":[3,[12,"@result","/;^Ln0I[%/7~93and,t4"],[10,""]],"STRING2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aNI":{"opcode":"operator_equals","next":null,"parent":"W","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"-1"]]},"fields":{},"shadow":false,"topLevel":false},"awT":{"opcode":"operator_equals","next":null,"parent":"cR","inputs":{"OPERAND1":[3,[12,"render_enabled","kG=l#K?vQ345t{T6HPPz"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"awU":{"opcode":"data_setvariableto","next":null,"parent":"cR","inputs":{"VALUE":[3,[12,"@temp_addr","3sIlg`D|dR5*_=UFh2mC"],[10,""]]},"fields":{"VARIABLE":["@vram_addr","w0R+jC2MWt7iHMnRlqZn"]},"shadow":false,"topLevel":false},"jV":{"opcode":"data_changevariableby","next":"Nf","parent":"cR","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Nf":{"opcode":"control_stop","next":null,"parent":"jV","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"mH":{"opcode":"procedures_call","next":"Ni","parent":"ae","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@convert","argumentids":"[]","warp":"true"}},"Ni":{"opcode":"data_setvariableto","next":null,"parent":"mH","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["coolnes_convert","NU:_6z!NTL[oUrq[!GqQ"]},"shadow":false,"topLevel":false},"aNP":{"opcode":"procedures_call","next":null,"parent":"af","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"@draw clipped right","argumentids":"[]","warp":"true"}},"aN.":{"opcode":"operator_equals","next":null,"parent":"K","inputs":{"OPERAND1":[3,[12,"@render_sprite","xu#/+b%vNGX}5y8HCFJ#"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"mK":{"opcode":"operator_divide","next":null,"parent":"bD","inputs":{"NUM1":[3,"Gc",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Gc":{"opcode":"data_lengthoflist","next":null,"parent":"mK","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"mJ":{"opcode":"data_deletealloflist","next":"eg","parent":"bD","inputs":{},"fields":{"LIST":["@temp_oam",":vA5RQqBZ#8*nYTx;t??"]},"shadow":false,"topLevel":false},"eg":{"opcode":"data_setvariableto","next":"mL","parent":"mJ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["temp","G)X5:8nBe}gs.ik#[2!5"]},"shadow":false,"topLevel":false},"mL":{"opcode":"data_setvariableto","next":"mM","parent":"eg","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"aN;":{"opcode":"data_changevariableby","next":null,"parent":"ag","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["@counter","0hDEcBYI%En[Mn~,-dgZ"]},"shadow":false,"topLevel":false},"mI":{"opcode":"procedures_call","next":"eh","parent":"K","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mapper_scanline","argumentids":"[]","warp":"true"}},"eh":{"opcode":"data_changevariableby","next":"Gj","parent":"mI","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["@scanline","-Bj6q@mZ2k6)U;uPWj9x"]},"shadow":false,"topLevel":false},"Gj":{"opcode":"control_stop","next":null,"parent":"eh","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aN@":{"opcode":"operator_equals","next":null,"parent":"ad","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"240"]]},"fields":{},"shadow":false,"topLevel":false},"aN]":{"opcode":"operator_equals","next":null,"parent":"bE","inputs":{"OPERAND1":[3,[12,"@scanline","-Bj6q@mZ2k6)U;uPWj9x"],[10,""]],"OPERAND2":[1,[10,"241"]]},"fields":{},"shadow":false,"topLevel":false},"Gn":{"opcode":"data_setvariableto","next":"ei","parent":"bE","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["@nmi_flag","]o%cE!~|lER;?d)!WgyR"]},"shadow":false,"topLevel":false},"aO_":{"opcode":"operator_equals","next":null,"parent":"bF","inputs":{"OPERAND1":[3,[12,"#sq0_swcounter","Dp9BC8ueo97YbpaH)YZh"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO`":{"opcode":"operator_equals","next":null,"parent":"bF","inputs":{"OPERAND1":[3,[12,"#sq0_swreload","elV@:}M3MreZKq22A%3?"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aO|":{"opcode":"operator_equals","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,"#sq1_counter_halt","a7zy6G,GluFays4z,XP7"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO}":{"opcode":"operator_gt","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPb":{"opcode":"operator_equals","next":null,"parent":"bH","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPc":{"opcode":"operator_equals","next":null,"parent":"bH","inputs":{"OPERAND1":[3,[12,"#sq1_swenable",")TL[@w=%kNGGpKOt!j6K"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPa":{"opcode":"operator_gt","next":null,"parent":"eo","inputs":{"OPERAND1":[3,[12,"#sq1_swshift","?;V(T8WDnRbrj{jtuq=C"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"GA":{"opcode":"operator_not","next":null,"parent":"en","inputs":{"OPERAND":[2,"ah"]},"fields":{},"shadow":false,"topLevel":false},"aPd":{"opcode":"operator_lt","next":null,"parent":"ah","inputs":{"OPERAND1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"aPe":{"opcode":"operator_gt","next":null,"parent":"ah","inputs":{"OPERAND1":[3,[12,"#sq1_swtarget","lMq)$[K=Pd?VS)hX|@wl"],[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"aPg":{"opcode":"operator_equals","next":null,"parent":"bI","inputs":{"OPERAND1":[3,[12,"#sq1_swcounter","*esvLM8NOPIYxzMcC4])"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPh":{"opcode":"operator_equals","next":null,"parent":"bI","inputs":{"OPERAND1":[3,[12,"#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aPi":{"opcode":"operator_equals","next":null,"parent":"bJ","inputs":{"OPERAND1":[3,[12,"#tri_control",".BuyXV*dX#(v{Ybtg9SY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPj":{"opcode":"operator_gt","next":null,"parent":"bJ","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPl":{"opcode":"operator_equals","next":null,"parent":"bK","inputs":{"OPERAND1":[3,[12,"#noise_counter_halt","d#{}}5.jeOzt/68f8/23"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPm":{"opcode":"operator_gt","next":null,"parent":"bK","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aPk":{"opcode":"data_changevariableby","next":null,"parent":"ep","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"]},"shadow":false,"topLevel":false},"aGL":{"opcode":"operator_multiply","next":null,"parent":"b?","inputs":{"NUM1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"XI":{"opcode":"operator_multiply","next":null,"parent":"b@","inputs":{"NUM1":[3,"Md",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Md":{"opcode":"operator_gt","next":null,"parent":"XI","inputs":{"OPERAND1":[3,[12,"#sq0_lengthcounter","7jB@6`ZeDqFpSM2|Z}eY"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XJ":{"opcode":"operator_multiply","next":null,"parent":"c}","inputs":{"NUM1":[3,"Me",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Me":{"opcode":"operator_gt","next":null,"parent":"XJ","inputs":{"OPERAND1":[3,[12,"#sq1_lengthcounter","`p.Q31!g+-r7qB6~g;6V"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XK":{"opcode":"operator_multiply","next":null,"parent":"c~","inputs":{"NUM1":[3,"Mf",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mf":{"opcode":"operator_gt","next":null,"parent":"XK","inputs":{"OPERAND1":[3,[12,"#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"XL":{"opcode":"operator_multiply","next":null,"parent":"da","inputs":{"NUM1":[3,"Mg",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Mg":{"opcode":"operator_gt","next":null,"parent":"XL","inputs":{"OPERAND1":[3,[12,"#noise_lengthcounter","jGoXqn^SI^b!jk+UN[{Q"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aGM":{"opcode":"operator_equals","next":null,"parent":"aE","inputs":{"OPERAND1":[3,[12,"#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"XM":{"opcode":"data_changevariableby","next":"Mh","parent":"aE","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["nes: IRQ","N)orW@%%E%$4al|2,BkE"]},"shadow":false,"topLevel":false},"Mh":{"opcode":"data_setvariableto","next":null,"parent":"XM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["#frame_interrupt","e+9hOLK@)5)Ss`T7ADb5"]},"shadow":false,"topLevel":false},"XO":{"opcode":"data_itemoflist","next":null,"parent":"db","inputs":{"INDEX":[3,"Mi",[7,"0"]]},"fields":{"LIST":["bin_table","dkAVj{sdjrdbPacRA(Ya"]},"shadow":false,"topLevel":false},"Mi":{"opcode":"operator_add","next":null,"parent":"XO","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"XQ":{"opcode":"operator_mathop","next":null,"parent":"dc","inputs":{"NUM":[3,"Mj",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mj":{"opcode":"operator_divide","next":null,"parent":"XQ","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aGO":{"opcode":"operator_letter_of","next":null,"parent":"dd","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aGP":{"opcode":"operator_letter_of","next":null,"parent":"de","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aGR":{"opcode":"operator_mod","next":null,"parent":"aF","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aGQ":{"opcode":"control_stop","next":null,"parent":"aF","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XS":{"opcode":"operator_add","next":null,"parent":"df","inputs":{"NUM1":[3,"Mk",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mk":{"opcode":"operator_gt","next":null,"parent":"XS","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"XT":{"opcode":"operator_mod","next":null,"parent":"dg","inputs":{"NUM1":[3,"Mm",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Mm":{"opcode":"operator_mathop","next":null,"parent":"XT","inputs":{"NUM":[3,"Mn",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mn":{"opcode":"operator_divide","next":null,"parent":"Mm","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aGT":{"opcode":"operator_mod","next":null,"parent":"bA","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"XU":{"opcode":"data_setvariableto","next":"Mp","parent":"bA","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq0_swreload","elV@:}M3MreZKq22A%3?"]},"shadow":false,"topLevel":false},"Mp":{"opcode":"control_stop","next":null,"parent":"XU","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"XX":{"opcode":"operator_add","next":null,"parent":"aG","inputs":{"NUM1":[3,"Mq",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Mq":{"opcode":"operator_subtract","next":null,"parent":"XX","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[3,"Mr",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Mr":{"opcode":"operator_mod","next":null,"parent":"Mq","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"XW":{"opcode":"procedures_call","next":"Ms","parent":"aG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq0 sweep target","argumentids":"[]","warp":"true"}},"Ms":{"opcode":"control_stop","next":null,"parent":"XW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aGU":{"opcode":"operator_mod","next":null,"parent":"bB","inputs":{"NUM1":[3,[12,"#sq0_period","jy.7$]U@O1MkAbz98}T+"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"X!":{"opcode":"operator_multiply","next":null,"parent":"bB","inputs":{"NUM1":[3,"Mu",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Mu":{"opcode":"operator_mod","next":null,"parent":"X!","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"X%":{"opcode":"operator_mathop","next":null,"parent":"dh","inputs":{"NUM":[3,"Mv",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Mv":{"opcode":"operator_divide","next":null,"parent":"X%","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aG#":{"opcode":"operator_letter_of","next":null,"parent":"D.","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aG%":{"opcode":"operator_letter_of","next":null,"parent":"D/","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aG)":{"opcode":"operator_mod","next":null,"parent":"aH","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG(":{"opcode":"control_stop","next":null,"parent":"aH","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X)":{"opcode":"operator_add","next":null,"parent":"D:","inputs":{"NUM1":[3,"Mx",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mx":{"opcode":"operator_gt","next":null,"parent":"X)","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"mO":{"opcode":"operator_mod","next":null,"parent":"Mw","inputs":{"NUM1":[3,"ek",[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"ek":{"opcode":"operator_mathop","next":null,"parent":"mO","inputs":{"NUM":[3,"Gp",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Gp":{"opcode":"operator_divide","next":null,"parent":"ek","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"mP":{"opcode":"operator_add","next":null,"parent":"ej","inputs":{"NUM1":[3,"el",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"el":{"opcode":"operator_gt","next":null,"parent":"mP","inputs":{"OPERAND1":[3,"Gq",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Gq":{"opcode":"operator_mod","next":null,"parent":"el","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aOd":{"opcode":"operator_mod","next":null,"parent":"k|","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"mQ":{"opcode":"data_setvariableto","next":"Gr","parent":"k|","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#sq1_swreload","Pf-v8_2K9#-6+.(eR!!E"]},"shadow":false,"topLevel":false},"Gr":{"opcode":"control_stop","next":null,"parent":"mQ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D?":{"opcode":"operator_add","next":null,"parent":"bC","inputs":{"NUM1":[3,"My",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"My":{"opcode":"operator_subtract","next":null,"parent":"D?","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[3,"Mz",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Mz":{"opcode":"operator_mod","next":null,"parent":"My","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"D=":{"opcode":"procedures_call","next":"MA","parent":"bC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"#sq1 sweep target","argumentids":"[]","warp":"true"}},"MA":{"opcode":"control_stop","next":null,"parent":"D=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aG*":{"opcode":"operator_mod","next":null,"parent":"a+","inputs":{"NUM1":[3,[12,"#sq1_period","QXIh{vjr_WcT{5@Z9$V_"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"D_":{"opcode":"operator_add","next":null,"parent":"D^","inputs":{"NUM1":[3,"MC",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"MC":{"opcode":"operator_gt","next":null,"parent":"D_","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aG=":{"opcode":"operator_mod","next":null,"parent":"di","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"aG;":{"opcode":"control_stop","next":null,"parent":"di","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"D{":{"opcode":"operator_add","next":null,"parent":"dj","inputs":{"NUM1":[3,"MD",[4,"0"]],"NUM2":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MD":{"opcode":"operator_subtract","next":null,"parent":"D{","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[3,"ME",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ME":{"opcode":"operator_mod","next":null,"parent":"MD","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"aG?":{"opcode":"control_stop","next":null,"parent":"dj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aG@":{"opcode":"operator_mod","next":null,"parent":"lh","inputs":{"NUM1":[3,[12,"#tri_period",":~1CFOUK_x[i{fP8hA[3"],[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"X,":{"opcode":"operator_multiply","next":null,"parent":"lh","inputs":{"NUM1":[3,"MF",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"MF":{"opcode":"operator_mod","next":null,"parent":"X,","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"!":{"opcode":"control_if","next":"MG","parent":"k{","inputs":{"CONDITION":[2,"MH"],"SUBSTACK":[2,"MI"]},"fields":{},"shadow":false,"topLevel":false},"MH":{"opcode":"operator_equals","next":null,"parent":"!","inputs":{"OPERAND1":[3,[12,"#tri_enabled","}jS%rxlSc-3H~Gn~UC7O"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MI":{"opcode":"data_setvariableto","next":null,"parent":"!","inputs":{"VALUE":[3,"MJ",[10,""]]},"fields":{"VARIABLE":["#tri_lengthcounter","AI4b`Ac.x4046hdwA*GK"]},"shadow":false,"topLevel":false},"MJ":{"opcode":"data_itemoflist","next":null,"parent":"MI","inputs":{"INDEX":[3,"MK",[7,"0"]]},"fields":{"LIST":["#length_table","nFe_P%8kqprS]u|SqcT@"]},"shadow":false,"topLevel":false},"MK":{"opcode":"operator_add","next":null,"parent":"MJ","inputs":{"NUM1":[3,"ML",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ML":{"opcode":"operator_mathop","next":null,"parent":"MK","inputs":{"NUM":[3,"MM",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"MM":{"opcode":"operator_divide","next":null,"parent":"ML","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"MG":{"opcode":"data_setvariableto","next":"MN","parent":"!","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["#tri_reloadflag","6/%DP,r5rh`6SIBt3v4y"]},"shadow":false,"topLevel":false},"MN":{"opcode":"control_stop","next":null,"parent":"MG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aG[":{"opcode":"operator_letter_of","next":null,"parent":"D|","inputs":{"LETTER":[1,[6,"3"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aG]":{"opcode":"operator_letter_of","next":null,"parent":"D}","inputs":{"LETTER":[1,[6,"4"]],"STRING":[3,[12,"temp","G)X5:8nBe}gs.ik#[2!5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"aG_":{"opcode":"operator_mod","next":null,"parent":"li","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG^":{"opcode":"control_stop","next":null,"parent":"li","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X/":{"opcode":"operator_add","next":null,"parent":"D~","inputs":{"NUM1":[3,"MO",[4,"0"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"MO":{"opcode":"operator_gt","next":null,"parent":"X/","inputs":{"OPERAND1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"aG{":{"opcode":"operator_mod","next":null,"parent":"lj","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aG`":{"opcode":"control_stop","next":null,"parent":"lj","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"aHd":{"opcode":"operator_mod","next":null,"parent":"lk","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aHc":{"opcode":"control_stop","next":null,"parent":"lk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X[":{"opcode":"operator_add","next":null,"parent":"MP","inputs":{"NUM1":[1,[4,"49152"]],"NUM2":[3,"MQ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"MQ":{"opcode":"operator_multiply","next":null,"parent":"X[","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"aHe":{"opcode":"control_stop","next":null,"parent":"MP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"X^":{"opcode":"operator_add","next":null,"parent":"ll","inputs":{"NUM1":[3,"MR",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"MR":{"opcode":"operator_multiply","next":null,"parent":"X^","inputs":{"NUM1":[3,[12,"nes: data","tlPB/|?Ne.:6uFQ;3`S1"],[4,"0"]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"aHf":{"opcode":"control_stop","next":null,"parent":"ll","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b!":{"opcode":"operator_add","next":null,"parent":"b/v","inputs":{"NUM1":[3,"%",[4,"0"]],"NUM2":[3,"cJ",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"gs":{"opcode":"data_itemoflist","next":null,"parent":"%","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"cJ":{"opcode":"data_itemoflist","next":null,"parent":"b!","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"f*":{"opcode":"argument_reporter_string_number","next":null,"parent":"b#","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"m]":{"opcode":"data_setvariableto","next":null,"parent":"ef","inputs":{"VALUE":[3,"bZk",[10,""]]},"fields":{"VARIABLE":["_S","!@vTj4c1The8*{(^_*O."]},"shadow":false,"topLevel":false},"bZk":{"opcode":"data_itemoflist","next":null,"parent":"m]","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["byteStack","#,HpQY,,NMZpTP#Z/$7a"]},"shadow":false,"topLevel":false},"gZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"b%","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"g*":{"opcode":"argument_reporter_string_number","next":null,"parent":"b)","inputs":{},"fields":{"VALUE":["r1",null]},"shadow":false,"topLevel":false},"lm":{"opcode":"procedures_call","next":null,"parent":"b*","inputs":{"0]ODgc:bK{?ML[NsH|O.":[3,"U",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".S = rMEM %s","argumentids":"[\"0]ODgc:bK{?ML[NsH|O.\"]","warp":"true"}},"U":{"opcode":"operator_add","next":null,"parent":"lm","inputs":{"NUM1":[3,"#",[4,"0"]],"NUM2":[3,"Jb",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"#":{"opcode":"operator_multiply","next":null,"parent":"U","inputs":{"NUM1":[3,"cP",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"cP":{"opcode":"data_itemoflist","next":null,"parent":"#","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"Jb":{"opcode":"data_itemoflist","next":null,"parent":"U","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"cU":{"opcode":"data_replaceitemoflist","next":"R","parent":"b(","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"R":{"opcode":"data_replaceitemoflist","next":"V","parent":"cU","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"V":{"opcode":"data_replaceitemoflist","next":"S","parent":"R","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"~",[10,""]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"~":{"opcode":"data_itemoflist","next":null,"parent":"V","inputs":{"INDEX":[3,"aa",[7,"0"]]},"fields":{"LIST":["xor_table","yYeY/%}@PaP{fMkLU1ve"]},"shadow":false,"topLevel":false},"aa":{"opcode":"operator_add","next":null,"parent":"~","inputs":{"NUM1":[3,"k}",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"k}":{"opcode":"operator_add","next":null,"parent":"aa","inputs":{"NUM1":[3,"ai",[4,"0"]],"NUM2":[3,[12,"_S","!@vTj4c1The8*{(^_*O."],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ai":{"opcode":"operator_multiply","next":null,"parent":"k}","inputs":{"NUM1":[3,"Jq",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Jq":{"opcode":"data_itemoflist","next":null,"parent":"ai","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"S":{"opcode":"data_replaceitemoflist","next":null,"parent":"V","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"eZ",[10,""]]},"fields":{"LIST":["Flag bits","I`5okbJQFT`oYf*Pv4E]"]},"shadow":false,"topLevel":false},"eZ":{"opcode":"operator_add","next":null,"parent":"S","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"e!",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"e!":{"opcode":"operator_equals","next":null,"parent":"eZ","inputs":{"OPERAND1":[3,"Jr",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Jr":{"opcode":"data_itemoflist","next":null,"parent":"e!","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["_REGISTERS","[~q6:p[Kks?m0Rapk7eD"]},"shadow":false,"topLevel":false},"y":{"opcode":"procedures_definition","next":"A","parent":null,"inputs":{"custom_block":[1,"cQ"]},"fields":{},"shadow":false,"topLevel":true,"x":-16,"y":64},"cQ":{"opcode":"procedures_prototype","next":null,"parent":"y","inputs":{"@zV:bUG_PX#GMhkP2e=P":[1,"c}"],"i6JLD9k5b4oK,]osUJ7x":[1,"c~"],"lwvx~{v*of[%v?I_BFas":[1,"da"],"Pl8yZ2T%vK)iRx9PsB6+":[1,"aE"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","argumentnames":"[\"x\",\"y\",\"s\",\"d\"]","argumentdefaults":"[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]","warp":"false"}},"c}":{"opcode":"argument_reporter_string_number","next":null,"parent":"cQ","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"c~":{"opcode":"argument_reporter_string_number","next":null,"parent":"cQ","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"da":{"opcode":"argument_reporter_string_number","next":null,"parent":"cQ","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"aE":{"opcode":"argument_reporter_string_number","next":null,"parent":"cQ","inputs":{},"fields":{"VALUE":["d",null]},"shadow":true,"topLevel":false},"A":{"opcode":"data_setvariableto","next":"B","parent":"y","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["m","8#GN`Bn0{e?U=[@Rvm;~"]},"shadow":false,"topLevel":false},"B":{"opcode":"control_repeat","next":null,"parent":"A","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"a"]},"fields":{},"shadow":false,"topLevel":false},"a":{"opcode":"procedures_call","next":"db","parent":"B","inputs":{"l#x`$3Ii.R@[[Y-Y$7n3":[3,"ar",[10,""]],"J|M%s%=WC@y1;p0_qTxp":[3,"*d",[10,""]],"V861ZPJ%5|4o/-r{;98V":[3,"dc",[10,""]],"~)@Xu22o%CdNtwp4oAZ;":[3,"C",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render4px %s %s %s %s","argumentids":"[\"l#x`$3Ii.R@[[Y-Y$7n3\",\"J|M%s%=WC@y1;p0_qTxp\",\"V861ZPJ%5|4o/-r{;98V\",\"~)@Xu22o%CdNtwp4oAZ;\"]","warp":"true"}},"ar":{"opcode":"operator_add","next":null,"parent":"a","inputs":{"NUM1":[3,"dd",[4,"0"]],"NUM2":[3,"ao",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"dd":{"opcode":"argument_reporter_string_number","next":null,"parent":"ar","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ao":{"opcode":"operator_multiply","next":null,"parent":"ar","inputs":{"NUM1":[3,"de",[4,"0"]],"NUM2":[3,"D",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"de":{"opcode":"operator_mod","next":null,"parent":"ao","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"D":{"opcode":"operator_multiply","next":null,"parent":"ao","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"aF",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aF":{"opcode":"argument_reporter_string_number","next":null,"parent":"D","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"*d":{"opcode":"operator_subtract","next":null,"parent":"a","inputs":{"NUM1":[3,"df",[4,"0"]],"NUM2":[3,"]",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"df":{"opcode":"argument_reporter_string_number","next":null,"parent":"*d","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"]":{"opcode":"operator_multiply","next":null,"parent":"*d","inputs":{"NUM1":[3,"E",[4,"0"]],"NUM2":[3,"dg",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"E":{"opcode":"operator_mathop","next":null,"parent":"]","inputs":{"NUM":[3,"Ml",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ml":{"opcode":"operator_divide","next":null,"parent":"E","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"dg":{"opcode":"argument_reporter_string_number","next":null,"parent":"]","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"dc":{"opcode":"argument_reporter_string_number","next":null,"parent":"a","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"C":{"opcode":"operator_join","next":null,"parent":"a","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"ax",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ax":{"opcode":"operator_letter_of","next":null,"parent":"C","inputs":{"LETTER":[3,"bA",[6,"0"]],"STRING":[3,"F",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bA":{"opcode":"operator_add","next":null,"parent":"ax","inputs":{"NUM1":[3,[12,"m","8#GN`Bn0{e?U=[@Rvm;~"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F":{"opcode":"data_itemoflist","next":null,"parent":"ax","inputs":{"INDEX":[3,"G",[7,"0"]]},"fields":{"LIST":["dat","g1X0d%+|q`l:YKb?Jj_I"]},"shadow":false,"topLevel":false},"G":{"opcode":"operator_add","next":null,"parent":"F","inputs":{"NUM1":[3,"aG",[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aG":{"opcode":"argument_reporter_string_number","next":null,"parent":"G","inputs":{},"fields":{"VALUE":["d",null]},"shadow":false,"topLevel":false},"db":{"opcode":"data_changevariableby","next":null,"parent":"a","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["m","8#GN`Bn0{e?U=[@Rvm;~"]},"shadow":false,"topLevel":false},"ab":{"opcode":"procedures_definition","next":"J","parent":null,"inputs":{"custom_block":[1,"dh"]},"fields":{},"shadow":false,"topLevel":true,"x":2117,"y":64},"dh":{"opcode":"procedures_prototype","next":null,"parent":"ab","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"J":{"opcode":"data_setvariableto","next":"ay","parent":"ab","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"ay":{"opcode":"control_repeat","next":null,"parent":"J","inputs":{"TIMES":[3,"D.",[6,"0"]],"SUBSTACK":[2,"Y]"]},"fields":{},"shadow":false,"topLevel":false},"D.":{"opcode":"data_lengthoflist","next":null,"parent":"ay","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"Y]":{"opcode":"procedures_call","next":"D/","parent":"ay","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"z",[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"170"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"X",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"z":{"opcode":"operator_multiply","next":null,"parent":"Y]","inputs":{"NUM1":[3,"e",[4,"0"]],"NUM2":[1,[4,"14"]]},"fields":{},"shadow":false,"topLevel":false},"e":{"opcode":"operator_subtract","next":null,"parent":"z","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[3,"k",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"k":{"opcode":"operator_divide","next":null,"parent":"e","inputs":{"NUM1":[3,"aH",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"aH":{"opcode":"data_lengthoflist","next":null,"parent":"k","inputs":{},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"X":{"opcode":"data_itemoflist","next":null,"parent":"Y]","inputs":{"INDEX":[3,"D:",[7,"0"]]},"fields":{"LIST":["_gametitle","#yxQVD.W=QA4e-TaHe-w"]},"shadow":false,"topLevel":false},"D:":{"opcode":"operator_add","next":null,"parent":"X","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"D/":{"opcode":"data_changevariableby","next":null,"parent":"Y]","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"Mw":{"opcode":"event_whenbroadcastreceived","next":null,"parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["reset emulator","#azR?e|zZPviPwY:dM%T"]},"shadow":false,"topLevel":true,"x":1457,"y":43},"l":{"opcode":"pen_setPenColorToColor","next":"Y","parent":null,"inputs":{"COLOR":[1,[9,"#65ffce"]]},"fields":{},"shadow":false,"topLevel":true,"x":1470,"y":186},"Y":{"opcode":"procedures_call","next":"ej","parent":"l","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","warp":"true"}},"ej":{"opcode":"procedures_call","next":null,"parent":"Y","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"rentitle","argumentids":"[]","warp":"true"}},"}":{"opcode":"procedures_definition","next":"ac","parent":null,"inputs":{"custom_block":[1,"MB"]},"fields":{},"shadow":false,"topLevel":true,"x":3148,"y":-11},"MB":{"opcode":"procedures_prototype","next":null,"parent":"}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"c","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"ac":{"opcode":"pen_penUp","next":"br","parent":"}","inputs":{},"fields":{},"shadow":false,"topLevel":false},"br":{"opcode":"pen_setPenColorToColor","next":"bs","parent":"ac","inputs":{"COLOR":[1,[9,"#346856"]]},"fields":{},"shadow":false,"topLevel":false},"bs":{"opcode":"pen_setPenSizeTo","next":"bt","parent":"br","inputs":{"SIZE":[1,[4,"66"]]},"fields":{},"shadow":false,"topLevel":false},"bt":{"opcode":"motion_gotoxy","next":"bu","parent":"bs","inputs":{"X":[1,[4,"-240"]],"Y":[1,[4,"-180"]]},"fields":{},"shadow":false,"topLevel":false},"bu":{"opcode":"pen_penDown","next":"bv","parent":"bt","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bv":{"opcode":"motion_changexby","next":"bw","parent":"bu","inputs":{"DX":[1,[4,"1111"]]},"fields":{},"shadow":false,"topLevel":false},"bw":{"opcode":"pen_penUp","next":"bx","parent":"bv","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bx":{"opcode":"data_setvariableto","next":"b=","parent":"bw","inputs":{"VALUE":[1,[10,"-226"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false},"b=":{"opcode":"pen_setPenColorToColor","next":"by","parent":"bx","inputs":{"COLOR":[1,[9,"#61f8c9"]]},"fields":{},"shadow":false,"topLevel":false},"by":{"opcode":"data_setvariableto","next":"*e","parent":"b=","inputs":{"VALUE":[1,[10,"100"]]},"fields":{"VARIABLE":["z","|ke}j~q$D+WWLo05@rUl"]},"shadow":false,"topLevel":false},"*e":{"opcode":"data_setvariableto","next":"bz","parent":"by","inputs":{"VALUE":[3,"a)%",[10,"fps og gb"]]},"fields":{"VARIABLE":["v","xM[|Vl:5_:MuhN:9WJ%-"]},"shadow":false,"topLevel":false},"a)%":{"opcode":"sensing_of","next":null,"parent":"*e","inputs":{"OBJECT":[1,"bZl"]},"fields":{"PROPERTY":["fps1",null]},"shadow":false,"topLevel":false},"bZl":{"opcode":"sensing_of_object_menu","next":null,"parent":"a)%","inputs":{},"fields":{"OBJECT":["GB",null]},"shadow":true,"topLevel":false},"bz":{"opcode":"procedures_call","next":"Z","parent":"*e","inputs":{"rP}-AE-Ca~:%Qi+nQcp9":[3,[12,"v","xM[|Vl:5_:MuhN:9WJ%-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fc %s","argumentids":"[\"rP}-AE-Ca~:%Qi+nQcp9\"]","warp":"false"}},"Z":{"opcode":"procedures_call","next":"*f","parent":"bz","inputs":{";3-J_653j%8j7mnxn*QG":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","warp":"true"}},"*f":{"opcode":"procedures_call","next":"ae","parent":"Z","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"k{",[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"-156"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[1,[10,"46"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"k{":{"opcode":"operator_subtract","next":null,"parent":"*f","inputs":{"NUM1":[3,[12,"x","RBD.T_tlTqDvriQZH:[N"],[4,"0"]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"data_changevariableby","next":"lh","parent":"*f","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false},"lh":{"opcode":"procedures_call","next":null,"parent":"ae","inputs":{";3-J_653j%8j7mnxn*QG":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","warp":"true"}},"bZm":{"opcode":"event_whenbroadcastreceived","next":"Y^","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["CP/M Call","Hl=mTBLxLS*0,~TGH|OS"]},"shadow":false,"topLevel":true,"x":2596,"y":1276},"Y^":{"opcode":"control_if","next":"Y_","parent":"bZm","inputs":{"CONDITION":[2,"a)("],"SUBSTACK":[2,"NL"]},"fields":{},"shadow":false,"topLevel":false},"a)(":{"opcode":"operator_equals","next":null,"parent":"Y^","inputs":{"OPERAND1":[3,"bZn",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bZn":{"opcode":"data_itemoflist","next":null,"parent":"a)(","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"NL":{"opcode":"control_if_else","next":"bZo","parent":"Y^","inputs":{"CONDITION":[2,"a))"],"SUBSTACK":[2,"a)*"],"SUBSTACK2":[2,"a)+"]},"fields":{},"shadow":false,"topLevel":false},"a))":{"opcode":"operator_equals","next":null,"parent":"NL","inputs":{"OPERAND1":[3,"bZp",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"bZp":{"opcode":"data_itemoflist","next":null,"parent":"a))","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a)*":{"opcode":"data_deletealloflist","next":"bZq","parent":"NL","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bZq":{"opcode":"data_changevariableby","next":null,"parent":"a)*","inputs":{"VALUE":[1,[4,"-10"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"a)+":{"opcode":"procedures_call","next":"*g","parent":"NL","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Clear line","argumentids":"[]","warp":"true"}},"*g":{"opcode":"data_addtolist","next":"bZr","parent":"a)+","inputs":{"ITEM":[3,"bZs",[10,""]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bZs":{"opcode":"data_itemoflist","next":null,"parent":"*g","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bZr":{"opcode":"procedures_call","next":null,"parent":"*g","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","warp":"true"}},"bZo":{"opcode":"control_stop","next":null,"parent":"NL","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y_":{"opcode":"control_if","next":"Y`","parent":"Y^","inputs":{"CONDITION":[2,"a),"],"SUBSTACK":[2,"a)-"]},"fields":{},"shadow":false,"topLevel":false},"a),":{"opcode":"operator_equals","next":null,"parent":"Y_","inputs":{"OPERAND1":[3,"bZt",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"bZt":{"opcode":"data_itemoflist","next":null,"parent":"a),","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a)-":{"opcode":"pen_setPenColorToColor","next":"a).","parent":"Y_","inputs":{"COLOR":[1,[9,"#468ed2"]]},"fields":{},"shadow":false,"topLevel":false},"a).":{"opcode":"data_deletealloflist","next":"*h","parent":"a)-","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"*h":{"opcode":"data_setvariableto","next":"Y{","parent":"a).","inputs":{"VALUE":[3,"*i",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"*i":{"opcode":"operator_add","next":null,"parent":"*h","inputs":{"NUM1":[3,"a)/",[4,"0"]],"NUM2":[3,"bZu",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a)/":{"opcode":"operator_multiply","next":null,"parent":"*i","inputs":{"NUM1":[3,"bZv",[4,"0"]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bZv":{"opcode":"data_itemoflist","next":null,"parent":"a)/","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bZu":{"opcode":"data_itemoflist","next":null,"parent":"*i","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"Y{":{"opcode":"control_repeat_until","next":"a):","parent":"*h","inputs":{"CONDITION":[2,"a);"],"SUBSTACK":[2,"*j"]},"fields":{},"shadow":false,"topLevel":false},"a);":{"opcode":"operator_equals","next":null,"parent":"Y{","inputs":{"OPERAND1":[3,"a)=",[10,""]],"OPERAND2":[1,[10,"36"]]},"fields":{},"shadow":false,"topLevel":false},"a)=":{"opcode":"data_itemoflist","next":null,"parent":"a);","inputs":{"INDEX":[3,"bZw",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bZw":{"opcode":"operator_add","next":null,"parent":"a)=","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"*j":{"opcode":"data_addtolist","next":"bZx","parent":"Y{","inputs":{"ITEM":[3,"a)?",[10,""]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"a)?":{"opcode":"data_itemoflist","next":null,"parent":"*j","inputs":{"INDEX":[3,"bZy",[7,"0"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bZy":{"opcode":"operator_add","next":null,"parent":"a)?","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bZx":{"opcode":"data_changevariableby","next":null,"parent":"*j","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a):":{"opcode":"procedures_call","next":"bZz","parent":"Y{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","warp":"true"}},"bZz":{"opcode":"control_stop","next":null,"parent":"a):","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y`":{"opcode":"control_if","next":"Y|","parent":"Y_","inputs":{"CONDITION":[2,"a)@"],"SUBSTACK":[2,"a)["]},"fields":{},"shadow":false,"topLevel":false},"a)@":{"opcode":"operator_equals","next":null,"parent":"Y`","inputs":{"OPERAND1":[3,"bZA",[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"bZA":{"opcode":"data_itemoflist","next":null,"parent":"a)@","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a)[":{"opcode":"data_replaceitemoflist","next":"bZB","parent":"Y`","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[1,[10,"0x22"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bZB":{"opcode":"control_stop","next":null,"parent":"a)[","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y|":{"opcode":"control_if","next":"Y}","parent":"Y`","inputs":{"CONDITION":[2,"a)]"],"SUBSTACK":[2,"*k"]},"fields":{},"shadow":false,"topLevel":false},"a)]":{"opcode":"operator_equals","next":null,"parent":"Y|","inputs":{"OPERAND1":[3,"bZC",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"bZC":{"opcode":"data_itemoflist","next":null,"parent":"a)]","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"*k":{"opcode":"data_replaceitemoflist","next":"bZD","parent":"Y|","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"bZE",[10,""]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bZE":{"opcode":"data_itemoflist","next":null,"parent":"*k","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bZD":{"opcode":"control_stop","next":null,"parent":"*k","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Y}":{"opcode":"control_if","next":"*l","parent":"Y|","inputs":{"CONDITION":[2,"a)^"],"SUBSTACK":[2,"*m"]},"fields":{},"shadow":false,"topLevel":false},"a)^":{"opcode":"operator_equals","next":null,"parent":"Y}","inputs":{"OPERAND1":[3,"bZF",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bZF":{"opcode":"data_itemoflist","next":null,"parent":"a)^","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"*m":{"opcode":"data_replaceitemoflist","next":"bZG","parent":"Y}","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"bZH",[10,""]]},"fields":{"LIST":["_memory","I63N$8?MbeN%*VS^[e`a"]},"shadow":false,"topLevel":false},"bZH":{"opcode":"data_itemoflist","next":null,"parent":"*m","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"bZG":{"opcode":"control_stop","next":null,"parent":"*m","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"*l":{"opcode":"control_if","next":null,"parent":"Y}","inputs":{"CONDITION":[2,"a)_"],"SUBSTACK":[2,"a)`"]},"fields":{},"shadow":false,"topLevel":false},"a)_":{"opcode":"operator_equals","next":null,"parent":"*l","inputs":{"OPERAND1":[3,"bZI",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZI":{"opcode":"data_itemoflist","next":null,"parent":"a)_","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["_registers","E$.ShehU4wuDtCF}{|rY"]},"shadow":false,"topLevel":false},"a)`":{"opcode":"control_stop","next":"a){","parent":"*l","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"a){":{"opcode":"data_addtolist","next":"a)|","parent":"a)`","inputs":{"ITEM":[1,[10,"CP/M function 0: System Reset"]]},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"a)|":{"opcode":"data_showlist","next":"bZJ","parent":"a){","inputs":{},"fields":{"LIST":["logzz","!M?/`s.Bs8q0RAQblZa9"]},"shadow":false,"topLevel":false},"bZJ":{"opcode":"control_stop","next":null,"parent":"a)|","inputs":{},"fields":{"STOP_OPTION":["all",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"a)}":{"opcode":"procedures_definition","next":"a)~","parent":null,"inputs":{"custom_block":[1,"bZK"]},"fields":{},"shadow":false,"topLevel":true,"x":2135,"y":638},"bZK":{"opcode":"procedures_prototype","next":null,"parent":"a)}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Renterminal","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\"]","warp":"true"}},"a)~":{"opcode":"data_setvariableto","next":"Y~","parent":"a)}","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"Y~":{"opcode":"control_repeat","next":"a*a","parent":"a)~","inputs":{"TIMES":[3,"bZL",[6,"0"]],"SUBSTACK":[2,"Za"]},"fields":{},"shadow":false,"topLevel":false},"bZL":{"opcode":"data_lengthoflist","next":null,"parent":"Y~","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"Za":{"opcode":"procedures_call","next":"a*b","parent":"Y~","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,"a*c",[10,"-200"]],"i6JLD9k5b4oK,]osUJ7x":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[10,""]],"lwvx~{v*of[%v?I_BFas":[1,[10,"1"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"a*d",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"a*c":{"opcode":"operator_multiply","next":null,"parent":"Za","inputs":{"NUM1":[3,"a*e",[4,"0"]],"NUM2":[1,[4,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a*e":{"opcode":"operator_subtract","next":null,"parent":"a*c","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[3,"a*f",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a*f":{"opcode":"operator_divide","next":null,"parent":"a*e","inputs":{"NUM1":[3,"bZM",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bZM":{"opcode":"data_lengthoflist","next":null,"parent":"a*f","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"a*d":{"opcode":"data_itemoflist","next":null,"parent":"Za","inputs":{"INDEX":[3,"bZN",[7,"0"]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bZN":{"opcode":"operator_add","next":null,"parent":"a*d","inputs":{"NUM1":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[4,"0"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*b":{"opcode":"data_changevariableby","next":"*n","parent":"Za","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["l","k:|mZZ-e3/}Z,@tSy,sK"]},"shadow":false,"topLevel":false},"*n":{"opcode":"control_if","next":null,"parent":"a*b","inputs":{"CONDITION":[2,"a*g"],"SUBSTACK":[2,"a*h"]},"fields":{},"shadow":false,"topLevel":false},"a*g":{"opcode":"operator_lt","next":null,"parent":"*n","inputs":{"OPERAND1":[1,[10,"100"]],"OPERAND2":[3,"bZO",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"bZO":{"opcode":"data_lengthoflist","next":null,"parent":"a*g","inputs":{},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"a*h":{"opcode":"data_deleteoflist","next":"bZP","parent":"*n","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"bZP":{"opcode":"data_changevariableby","next":null,"parent":"a*h","inputs":{"VALUE":[1,[4,"-5"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"a*a":{"opcode":"data_changevariableby","next":"*o","parent":"Y~","inputs":{"VALUE":[1,[4,"-10"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"*o":{"opcode":"control_if","next":null,"parent":"a*a","inputs":{"CONDITION":[2,"bZQ"],"SUBSTACK":[2,"a*i"]},"fields":{},"shadow":false,"topLevel":false},"bZQ":{"opcode":"operator_lt","next":null,"parent":"*o","inputs":{"OPERAND1":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[10,""]],"OPERAND2":[1,[10,"-150"]]},"fields":{},"shadow":false,"topLevel":false},"a*i":{"opcode":"pen_clear","next":"bZR","parent":"*o","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bZR":{"opcode":"data_setvariableto","next":null,"parent":"a*i","inputs":{"VALUE":[1,[10,"130"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"bZS":{"opcode":"event_whenbroadcastreceived","next":"a*j","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1096,"y":742},"a*j":{"opcode":"control_stop","next":"bZT","parent":"bZS","inputs":{},"fields":{"STOP_OPTION":["other scripts in sprite",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"true"}},"bZT":{"opcode":"data_setvariableto","next":null,"parent":"a*j","inputs":{"VALUE":[1,[10,"120"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"p":{"opcode":"procedures_definition","next":"q","parent":null,"inputs":{"custom_block":[1,"c"]},"fields":{},"shadow":false,"topLevel":true,"x":1560,"y":329},"c":{"opcode":"procedures_prototype","next":null,"parent":"p","inputs":{"l#x`$3Ii.R@[[Y-Y$7n3":[1,"bF"],"J|M%s%=WC@y1;p0_qTxp":[1,"bG"],"V861ZPJ%5|4o/-r{;98V":[1,"en"],"~)@Xu22o%CdNtwp4oAZ;":[1,"eo"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render4px %s %s %s %s","argumentids":"[\"l#x`$3Ii.R@[[Y-Y$7n3\",\"J|M%s%=WC@y1;p0_qTxp\",\"V861ZPJ%5|4o/-r{;98V\",\"~)@Xu22o%CdNtwp4oAZ;\"]","argumentnames":"[\"x\",\"y\",\"s\",\"d\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"bF":{"opcode":"argument_reporter_string_number","next":null,"parent":"c","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"bG":{"opcode":"argument_reporter_string_number","next":null,"parent":"c","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"en":{"opcode":"argument_reporter_string_number","next":null,"parent":"c","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"eo":{"opcode":"argument_reporter_string_number","next":null,"parent":"c","inputs":{},"fields":{"VALUE":["d",null]},"shadow":true,"topLevel":false},"q":{"opcode":"pen_penUp","next":"i","parent":"p","inputs":{},"fields":{},"shadow":false,"topLevel":false},"i":{"opcode":"motion_gotoxy","next":"aA","parent":"q","inputs":{"X":[3,"bH",[4,"0"]],"Y":[3,"ah",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bH":{"opcode":"argument_reporter_string_number","next":null,"parent":"i","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"ah":{"opcode":"argument_reporter_string_number","next":null,"parent":"i","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"aA":{"opcode":"pen_setPenSizeTo","next":"cS","parent":"i","inputs":{"SIZE":[3,"bI",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bI":{"opcode":"argument_reporter_string_number","next":null,"parent":"aA","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"r":{"opcode":"data_setvariableto","next":"cT","parent":"cS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i","]/R0=fD8X3ukr[?)_:vL"]},"shadow":false,"topLevel":false},"s":{"opcode":"control_repeat","next":null,"parent":"cT","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"ap"]},"fields":{},"shadow":false,"topLevel":false},"ap":{"opcode":"data_setvariableto","next":"o","parent":"s","inputs":{"VALUE":[3,"ep",[10,""]]},"fields":{"VARIABLE":["k","K{h~x6)DC:d*~Zu`CfAX"]},"shadow":false,"topLevel":false},"ep":{"opcode":"operator_divide","next":null,"parent":"ap","inputs":{"NUM1":[3,[12,"k","K{h~x6)DC:d*~Zu`CfAX"],[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"o":{"opcode":"control_if","next":"t","parent":"ap","inputs":{"CONDITION":[2,"b"],"SUBSTACK":[2,"aq"]},"fields":{},"shadow":false,"topLevel":false},"b":{"opcode":"operator_not","next":null,"parent":"o","inputs":{"OPERAND":[2,"u"]},"fields":{},"shadow":false,"topLevel":false},"u":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,"i","]/R0=fD8X3ukr[?)_:vL"],[10,""]],"OPERAND2":[3,"v",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"v":{"opcode":"operator_mod","next":null,"parent":"u","inputs":{"NUM1":[3,"w",[4,"0"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"w":{"opcode":"operator_mathop","next":null,"parent":"v","inputs":{"NUM":[3,"x",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"x":{"opcode":"operator_divide","next":null,"parent":"w","inputs":{"NUM1":[3,"bJ",[4,"0"]],"NUM2":[3,[12,"k","K{h~x6)DC:d*~Zu`CfAX"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"x","inputs":{},"fields":{"VALUE":["d",null]},"shadow":false,"topLevel":false},"aq":{"opcode":"data_setvariableto","next":"bK","parent":"o","inputs":{"VALUE":[3,"b?",[10,""]]},"fields":{"VARIABLE":["j2","OF2DV+zKpqx9z3vPfGKN"]},"shadow":false,"topLevel":false},"b?":{"opcode":"operator_subtract","next":null,"parent":"aq","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"j2","OF2DV+zKpqx9z3vPfGKN"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bK":{"opcode":"procedures_call","next":null,"parent":"aq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"px","argumentids":"[]","warp":"true"}},"t":{"opcode":"motion_changexby","next":null,"parent":"o","inputs":{"DX":[3,"b@",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"b@":{"opcode":"argument_reporter_string_number","next":null,"parent":"t","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"W":{"opcode":"procedures_definition","next":"*p","parent":null,"inputs":{"custom_block":[1,"bE"]},"fields":{},"shadow":false,"topLevel":true,"x":3152,"y":966},"bE":{"opcode":"procedures_prototype","next":null,"parent":"W","inputs":{";3-J_653j%8j7mnxn*QG":[1,"ll"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"d %s","argumentids":"[\";3-J_653j%8j7mnxn*QG\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\"]","warp":"true"}},"ll":{"opcode":"argument_reporter_string_number","next":null,"parent":"bE","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"*p":{"opcode":"control_repeat","next":null,"parent":"W","inputs":{"TIMES":[3,"a+",[6,"0"]],"SUBSTACK":[2,"*q"]},"fields":{},"shadow":false,"topLevel":false},"a+":{"opcode":"argument_reporter_string_number","next":null,"parent":"*p","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"*q":{"opcode":"procedures_call","next":"*r","parent":"*p","inputs":{"@zV:bUG_PX#GMhkP2e=P":[3,[12,"x","RBD.T_tlTqDvriQZH:[N"],[10,""]],"i6JLD9k5b4oK,]osUJ7x":[1,[10,"-156"]],"lwvx~{v*of[%v?I_BFas":[1,[10,"2"]],"Pl8yZ2T%vK)iRx9PsB6+":[3,"cV",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"renchar x %s y %s s %s d %s","argumentids":"[\"@zV:bUG_PX#GMhkP2e=P\",\"i6JLD9k5b4oK,]osUJ7x\",\"lwvx~{v*of[%v?I_BFas\",\"Pl8yZ2T%vK)iRx9PsB6+\"]","warp":"false"}},"cV":{"opcode":"operator_add","next":null,"parent":"*q","inputs":{"NUM1":[3,"cR",[4,"0"]],"NUM2":[1,[4,"48"]]},"fields":{},"shadow":false,"topLevel":false},"ad":{"opcode":"operator_mathop","next":null,"parent":"cR","inputs":{"NUM":[3,"D^",[4,"0"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"D^":{"opcode":"operator_divide","next":null,"parent":"ad","inputs":{"NUM1":[3,[12,"v","xM[|Vl:5_:MuhN:9WJ%-"],[4,"0"]],"NUM2":[3,[12,"z","|ke}j~q$D+WWLo05@rUl"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"*r":{"opcode":"data_setvariableto","next":"di","parent":"*q","inputs":{"VALUE":[3,"dj",[10,""]]},"fields":{"VARIABLE":["z","|ke}j~q$D+WWLo05@rUl"]},"shadow":false,"topLevel":false},"dj":{"opcode":"operator_divide","next":null,"parent":"*r","inputs":{"NUM1":[3,[12,"z","|ke}j~q$D+WWLo05@rUl"],[4,"0"]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"di":{"opcode":"data_changevariableby","next":null,"parent":"*r","inputs":{"VALUE":[1,[4,"14"]]},"fields":{"VARIABLE":["x","RBD.T_tlTqDvriQZH:[N"]},"shadow":false,"topLevel":false},"H":{"opcode":"procedures_definition","next":"I","parent":null,"inputs":{"custom_block":[1,"Mt"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":371},"Mt":{"opcode":"procedures_prototype","next":null,"parent":"H","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"px","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"I":{"opcode":"pen_penDown","next":"bB","parent":"H","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bB":{"opcode":"pen_penUp","next":null,"parent":"I","inputs":{},"fields":{},"shadow":false,"topLevel":false},"K":{"opcode":"procedures_definition","next":"o^","parent":null,"inputs":{"custom_block":[1,"af"]},"fields":{},"shadow":false,"topLevel":true,"x":3912,"y":64},"af":{"opcode":"procedures_prototype","next":null,"parent":"K","inputs":{"rP}-AE-Ca~:%Qi+nQcp9":[1,"D|"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fc %s","argumentids":"[\"rP}-AE-Ca~:%Qi+nQcp9\"]","argumentnames":"[\"s\"]","argumentdefaults":"[\"\"]","warp":"false"}},"D|":{"opcode":"argument_reporter_string_number","next":null,"parent":"af","inputs":{},"fields":{"VALUE":["s",null]},"shadow":true,"topLevel":false},"o^":{"opcode":"control_if_else","next":null,"parent":"K","inputs":{"CONDITION":[2,"bD"],"SUBSTACK":[2,"ag"],"SUBSTACK2":[2,"az"]},"fields":{},"shadow":false,"topLevel":false},"bD":{"opcode":"operator_gt","next":null,"parent":"o^","inputs":{"OPERAND1":[3,"D}",[10,""]],"OPERAND2":[1,[10,"60"]]},"fields":{},"shadow":false,"topLevel":false},"D}":{"opcode":"argument_reporter_string_number","next":null,"parent":"bD","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"ag":{"opcode":"pen_setPenColorParamTo","next":null,"parent":"o^","inputs":{"COLOR_PARAM":[1,"li"],"VALUE":[1,[4,"44"]]},"fields":{},"shadow":false,"topLevel":false},"li":{"opcode":"pen_menu_colorParam","next":null,"parent":"ag","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"az":{"opcode":"pen_setPenColorParamTo","next":null,"parent":"o^","inputs":{"COLOR_PARAM":[1,"D~"],"VALUE":[3,"at",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"D~":{"opcode":"pen_menu_colorParam","next":null,"parent":"az","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"at":{"opcode":"operator_divide","next":null,"parent":"az","inputs":{"NUM1":[3,"lj",[4,"0"]],"NUM2":[3,"lk",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"lj":{"opcode":"argument_reporter_string_number","next":null,"parent":"at","inputs":{},"fields":{"VALUE":["s",null]},"shadow":false,"topLevel":false},"lk":{"opcode":"operator_divide","next":null,"parent":"at","inputs":{"NUM1":[1,[4,"60"]],"NUM2":[1,[4,"44"]]},"fields":{},"shadow":false,"topLevel":false},"bZU":{"opcode":"operator_equals","next":null,"parent":null,"inputs":{"OPERAND1":[3,"bZV",[10,""]],"OPERAND2":[1,[10,"0x0a"]]},"fields":{},"shadow":false,"topLevel":true,"x":2558,"y":1055},"bZV":{"opcode":"data_itemoflist","next":null,"parent":"bZU","inputs":{"INDEX":[3,[12,"l","k:|mZZ-e3/}Z,@tSy,sK"],[7,"0"]]},"fields":{"LIST":["8080.Terminal","=Nnh8d@ok|B?)Hea*-9a"]},"shadow":false,"topLevel":false},"a*k":{"opcode":"procedures_definition","next":"a*l","parent":null,"inputs":{"custom_block":[1,"bZW"]},"fields":{},"shadow":false,"topLevel":true,"x":2092,"y":1519},"bZW":{"opcode":"procedures_prototype","next":null,"parent":"a*k","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"Clear line","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"a*l":{"opcode":"pen_setPenColorToColor","next":"a*m","parent":"a*k","inputs":{"COLOR":[1,[9,"#000000"]]},"fields":{},"shadow":false,"topLevel":false},"a*m":{"opcode":"pen_setPenSizeTo","next":"a*n","parent":"a*l","inputs":{"SIZE":[1,[4,"9"]]},"fields":{},"shadow":false,"topLevel":false},"a*n":{"opcode":"data_changevariableby","next":"*s","parent":"a*m","inputs":{"VALUE":[1,[4,"10"]]},"fields":{"VARIABLE":["y","Ylpv#yntx`3MMU(uD;7("]},"shadow":false,"topLevel":false},"*s":{"opcode":"motion_gotoxy","next":"a*o","parent":"a*n","inputs":{"X":[1,[4,"-240"]],"Y":[3,"bZX",[4,"33"]]},"fields":{},"shadow":false,"topLevel":false},"bZX":{"opcode":"operator_subtract","next":null,"parent":"*s","inputs":{"NUM1":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*o":{"opcode":"pen_penDown","next":"*t","parent":"*s","inputs":{},"fields":{},"shadow":false,"topLevel":false},"*t":{"opcode":"motion_gotoxy","next":"a*p","parent":"a*o","inputs":{"X":[1,[4,"240"]],"Y":[3,"bZY",[4,"33"]]},"fields":{},"shadow":false,"topLevel":false},"bZY":{"opcode":"operator_subtract","next":null,"parent":"*t","inputs":{"NUM1":[3,[12,"y","Ylpv#yntx`3MMU(uD;7("],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"a*p":{"opcode":"pen_penUp","next":"bZZ","parent":"*t","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bZZ":{"opcode":"pen_setPenColorToColor","next":null,"parent":"a*p","inputs":{"COLOR":[1,[9,"#468ed2"]]},"fields":{},"shadow":false,"topLevel":false},"b/w":[12,"loop","io(,(TfDAEBRM2iX1c}h"],"b/x":[12,"loop","io(,(TfDAEBRM2iX1c}h"],"b/y":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/z":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/A":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/B":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/C":[12,"T6","xwd)j4SY4qa||w7J0yBP"],"b/D":[12,"-LY","R93(y;ezBDFNxz;R$.9{"],"b/E":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/F":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/G":[12,".spritesize","FL2h%|upY.J#$}=ul8?a"],"b/H":[12,"g","pI+E2RUGrnC0}Oxj[fQD"],"b/I":[12,"g","pI+E2RUGrnC0}Oxj[fQD"],"b/J":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/K":[12,".IME","Yyq0n/?:tZ-1R{!(9E,I"],"b/L":[12,"T9","ecaYd9sPeo:%`_LsAsJD"],"b/M":[12,".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"],"b/N":[12,".DIVCYCLES","s18i.M`CVzl`g@kEVPGN"],"b/O":[12,".TACFLAG","dK3?LB9A%FG6.YYddD?("],"b/P":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/Q":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/R":[12,".TAC1","TyNKP)!4YD91CXr;Ofr%"],"b/S":[12,".TAC2",".C8gJ;d]=.XH;$5E8oB2"],"b/T":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/U":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/V":[12,"T9","ecaYd9sPeo:%`_LsAsJD"],"b/W":[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],"b/X":[12,"T2","hX1J)AVg^t88ELGv:hb%"],"b/Y":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"b/Z":[12,"T11","tGe/Wd:o59i4QQ9}C^)o"],"b/!":[12,"T4","(BHg(FiW6n7},,p-%q%%"],"b/#":[12,"T11","tGe/Wd:o59i4QQ9}C^)o"],"b/%":[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],"b/(":[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],"b/)":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b/*":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b/+":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b/,":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b/-":[12,"j3","DJ~1Ck7Y%xr-L5e*i(oz"],"b/.":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b//":[12,".GBC?","za5df3dC6Lq85;3lun8/"],"b/:":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/;":[12,"_Z","l5]S3A7BUTfQhoeX1QMo"],"b/=":[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],"b/?":[12,"-LCDC","j%_uw7vcE;vljqGCEt;-"],"b/@":[12,"T2","hX1J)AVg^t88ELGv:hb%"],"b/[":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"b/]":[12,"T3","DmmVyMpO/ebSRU2g=Wc:"],"b/^":[12,"@PIX","RJLtSXRx71$[%`nwOBtM"],"b/_":[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],"b/`":[12,".Spri",";gzI_,?`HaxU*b,C$z,M"],"b/{":[12,".Mpri",";.CEwXh;.U;z^iL6kY}4"],"b/|":[12,".spriteattributes","AX4IlWqKU({GdZ7:.?*!"],"b/}":[12,"_PC","w=hd1PshEda%bO|xM^6q"],"b/~":[12,"T6","xwd)j4SY4qa||w7J0yBP"],"b:a":[12,"T1","T`~F4~2,O!/[8pu)xO1,"],"b:b":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:c":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:d":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:e":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:f":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:g":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:h":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:i":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:j":[12,"-LYmask","QwG!GB*-SvenHq{bU0[6"],"b:k":[12,"-LYC","[P*KHQ#6Rk9]Ox;1v%3A"],"b:l":[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],"b:m":[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],"b:n":[12,"-LCDS","%H5F/uE0-oBcg#Ueg1HX"],"b:o":[12,"-STATUS",".yqIokTgw8-|]3$}O%wt"],"b:p":[12,"-LYmask","QwG!GB*-SvenHq{bU0[6"],"b:q":[12,"-LYC","[P*KHQ#6Rk9]Ox;1v%3A"],"b:r":[12,"_STATcond1","o~PUUkHtM;d|0cL72}R,"],"b:s":[12,"_STATcond2","{}%R*l;pt#ssSJM}}m?-"],"b:t":[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],"b:u":[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],"b:v":[12,".DMAlength",")y?/_!@Q{wFz2FZBZ)YR"],"b:w":[12,"_IFindex","qOvY4@JXH3Z=q*#gP*-="],"b:x":[12,"_IEindex",";{(|I#5z)oz:*|%#$atp"],"b:y":[12,"_A","[THklOWON,rz#pznmehC"],"b:z":[12,"_INTRdest","QGqvJ2ss)hMY|{h/*HlZ"],"b:A":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b:B":[12,"i","*r-MV7B^PL30%%8PQz%`"],"b:C":[12,"_B","jh2$j7v[s~2Jkx.#Z1+z"],"b:D":[12,".DMAenable","kk18ewt7HpVOvYWizQ?E"],"b:E":[12,".DMAtype","0NzoLpmy^eZ1=JjkzYGg"],"b:F":[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],"b:G":[12,"lock","-^88*(Y:JZOEd{YAhXza"],"b:H":[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],"b:I":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:J":[12,"_S","!@vTj4c1The8*{(^_*O."],"b:K":[12,"lines","r-%xXbKR}U_Ukw8g(6?9"],"b:L":[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],"b:M":[12,".DMAstart","q3];|lI;X@QP63GyUdgC"],"b:N":[12,".DMAend","gb)yqT91dr(YhxH_!$oK"],"b:O":[12,".DMAend","gb)yqT91dr(YhxH_!$oK"]},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"14e46ec3e2ba471c2adfe8f119052307","md5ext":"14e46ec3e2ba471c2adfe8f119052307.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[],"volume":100,"layerOrder":18,"visible":false,"x":240,"y":156,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"wave","variables":{"lTmVP1QU2X.8`:dRKK^u":["sound",128],"9]b,=u?R90w=tux{E^:8":["delta","0"],"#_MF{}THpD}[S5u5NqvJ":[".t",256],"KR:ESz#w/#b!.rl3f3]|":["return",35.62368343770409],"!_E%Z(.4*,Q~9[N}-hpn":["+is clone?","0"],"tZmx}o4R_R/#$1:asi9A":["lastFFTbuf","0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"],"hY9)8:Wbwz]tHOscv(Xs":["menu0exit",0]},"lists":{},"broadcasts":{},"blocks":{"cb":{"opcode":"control_repeat","next":"a|","parent":"l","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,"10"]],"SUBSTACK":[2,"V"]},"fields":{},"shadow":false,"topLevel":false},"cc":{"opcode":"control_repeat","next":"hP","parent":"hO","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,"10"]],"SUBSTACK":[2,":"]},"fields":{},"shadow":false,"topLevel":false},"cd":{"opcode":"data_setvariableto","next":"-","parent":"cm","inputs":{"VALUE":[3,"b.",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"cg":{"opcode":"operator_add","next":null,"parent":"D","inputs":{"NUM1":[3,"ci",[4,""]],"NUM2":[3,"/",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ch":{"opcode":"control_repeat","next":"g.","parent":"h","inputs":{"TIMES":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[6,"10"]],"SUBSTACK":[2,"cf"]},"fields":{},"shadow":false,"topLevel":false},"ci":{"opcode":"operator_multiply","next":null,"parent":"cg","inputs":{"NUM1":[3,"u=",[4,""]],"NUM2":[3,"u?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"cj":{"opcode":"data_addtolist","next":"W","parent":"X","inputs":{"ITEM":[3,"Y",[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"ck":{"opcode":"data_setvariableto","next":"m","parent":"_","inputs":{"VALUE":[3,"`",[10,""]]},"fields":{"VARIABLE":["r.6","flj)QgXS,93H6OayZ`w[-r.6-"]},"shadow":false,"topLevel":false},"cf":{"opcode":"data_setvariableto","next":"hO","parent":"ch","inputs":{"VALUE":[3,"bY",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"cm":{"opcode":"data_setvariableto","next":"cd","parent":"a)","inputs":{"VALUE":[3,"b-",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"T":{"opcode":"data_changevariableby","next":"n","parent":"m","inputs":{"VALUE":[3,"ad",[4,"10"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},")":{"opcode":"data_setvariableto","next":"u;","parent":"+","inputs":{"VALUE":[3,"lb",[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"/":{"opcode":"operator_multiply","next":null,"parent":"cg","inputs":{"NUM1":[3,"V_",[4,""]],"NUM2":[3,"bS",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"+":{"opcode":"data_setvariableto","next":")","parent":"(","inputs":{"VALUE":[3,"at",[10,"0"]]},"fields":{"VARIABLE":[".t","#_MF{}THpD}[S5u5NqvJ"]},"shadow":false,"topLevel":false},"as":{"opcode":"data_setvariableto","next":"e","parent":"dR","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["sound","lTmVP1QU2X.8`:dRKK^u"]},"shadow":false,"topLevel":false},"o":{"opcode":"data_changevariableby","next":"O","parent":"N","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"au":{"opcode":"data_deleteoflist","next":"Q","parent":"ja","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"av":{"opcode":"operator_mathop","next":null,"parent":"Q","inputs":{"NUM":[3,"ar",[4,""]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"an":{"opcode":"procedures_definition","next":"bk","parent":null,"inputs":{"custom_block":[1,"aw"]},"fields":{},"shadow":false,"topLevel":true,"x":634,"y":64},"aw":{"opcode":"procedures_prototype","next":null,"parent":"an","inputs":{"U[=0WfQ~_;kNx={661q+":[1,"ak"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"playsine %s","argumentids":"[\"U[=0WfQ~_;kNx={661q+\"]","argumentnames":"[\"number\"]","argumentdefaults":"[\"\"]","warp":"true"}},"aC":{"opcode":"operator_join","next":null,"parent":"f","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"al",[10,"\\"]]},"fields":{},"shadow":false,"topLevel":false},"aD":{"opcode":"operator_join","next":null,"parent":",","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"a:",[10,"\\"]]},"fields":{},"shadow":false,"topLevel":false},"q":{"opcode":"control_forever","next":null,"parent":"dS","inputs":{"SUBSTACK":[2,"bP"]},"fields":{},"shadow":false,"topLevel":false},"~":{"opcode":"sound_setvolumeto","next":null,"parent":"bN","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"e":{"opcode":"control_repeat","next":"V]","parent":"as","inputs":{"TIMES":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[6,"10"]],"SUBSTACK":[2,"b~"]},"fields":{},"shadow":false,"topLevel":false},"k":{"opcode":"control_repeat","next":null,"parent":"s","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"V^"]},"fields":{},"shadow":false,"topLevel":false},"b":{"opcode":"operator_lt","next":null,"parent":"a","inputs":{"OPERAND1":[3,"a=",[10,""]],"OPERAND2":[3,"a]",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"[":{"opcode":"data_addtolist","next":"hY","parent":"hP","inputs":{"ITEM":[3,"h]",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"-":{"opcode":"data_setvariableto","next":"_","parent":"cd","inputs":{"VALUE":[3,"b/",[10,""]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"^":{"opcode":"control_repeat","next":"it","parent":"g.","inputs":{"TIMES":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[6,"10"]],"SUBSTACK":[2,"U"]},"fields":{},"shadow":false,"topLevel":false},"l":{"opcode":"data_setvariableto","next":"cb","parent":"U","inputs":{"VALUE":[3,"a{",[10,""]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"_":{"opcode":"data_setvariableto","next":"ck","parent":"-","inputs":{"VALUE":[3,"aF",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},":":{"opcode":"data_setvariableto","next":"*","parent":"cc","inputs":{"VALUE":[3,"bZ",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"`":{"opcode":"operator_subtract","next":null,"parent":"ck","inputs":{"NUM1":[3,"b:",[4,"10"]],"NUM2":[3,"b;",[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},".":{"opcode":"control_repeat","next":"b,","parent":"c","inputs":{"TIMES":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,"10"]],"SUBSTACK":[2,"a)"]},"fields":{},"shadow":false,"topLevel":false},"ak":{"opcode":"argument_reporter_string_number","next":null,"parent":"aw","inputs":{},"fields":{"VALUE":["number",null]},"shadow":true,"topLevel":false},"f":{"opcode":"sound_playuntildone","next":",","parent":"bk","inputs":{"SOUND_MENU":[3,"aC","bL"]},"fields":{},"shadow":false,"topLevel":false},"al":{"opcode":"argument_reporter_string_number","next":null,"parent":"aC","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"bL":{"opcode":"sound_sounds_menu","next":null,"parent":"f","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},",":{"opcode":"sound_playuntildone","next":"b}","parent":"f","inputs":{"SOUND_MENU":[3,"aD","am"]},"fields":{},"shadow":false,"topLevel":false},"a:":{"opcode":"argument_reporter_string_number","next":null,"parent":"aD","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"am":{"opcode":"sound_sounds_menu","next":null,"parent":",","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},"b}":{"opcode":"sound_playuntildone","next":null,"parent":",","inputs":{"SOUND_MENU":[3,"p","bM"]},"fields":{},"shadow":false,"topLevel":false},"bM":{"opcode":"sound_sounds_menu","next":null,"parent":"b}","inputs":{},"fields":{"SOUND_MENU":["sine128",null]},"shadow":true,"topLevel":false},"bN":{"opcode":"control_start_as_clone","next":"~","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1055,"y":432},"a+":{"opcode":"control_start_as_clone","next":"dT","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1205,"y":894},"dT":{"opcode":"control_forever","next":null,"parent":"a+","inputs":{"SUBSTACK":[2,"dU"]},"fields":{},"shadow":false,"topLevel":false},"dU":{"opcode":"sound_seteffectto","next":null,"parent":"dT","inputs":{"VALUE":[3,"ac",[4,"0"]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"ac":{"opcode":"operator_add","next":null,"parent":"dU","inputs":{"NUM1":[3,[12,"pitch","1(hsS=.HEnKV_~]$(r+5"],[4,""]],"NUM2":[1,[4,"-20"]]},"fields":{},"shadow":false,"topLevel":false},"bO":{"opcode":"control_start_as_clone","next":"dS","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":2897,"y":64},"dS":{"opcode":"sound_setvolumeto","next":"q","parent":"bO","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bP":{"opcode":"procedures_call","next":null,"parent":"q","inputs":{"U[=0WfQ~_;kNx={661q+":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"playsine %s","argumentids":"[\"U[=0WfQ~_;kNx={661q+\"]","warp":"true"}},"!":{"opcode":"procedures_definition","next":"dR","parent":null,"inputs":{"custom_block":[1,"bQ"]},"fields":{},"shadow":false,"topLevel":true,"x":634,"y":786},"bQ":{"opcode":"procedures_prototype","next":null,"parent":"!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"b~":{"opcode":"control_create_clone_of","next":"bR","parent":"e","inputs":{"CLONE_OPTION":[1,"V`"]},"fields":{},"shadow":false,"topLevel":false},"V`":{"opcode":"control_create_clone_of_menu","next":null,"parent":"b~","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"bR":{"opcode":"data_changevariableby","next":null,"parent":"b~","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["sound","lTmVP1QU2X.8`:dRKK^u"]},"shadow":false,"topLevel":false},"la":{"opcode":"procedures_call","next":"Z","parent":"r","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"instant","argumentids":"[]","warp":"true"}},"E":{"opcode":"procedures_definition","next":"F","parent":null,"inputs":{"custom_block":[1,"cw"]},"fields":{},"shadow":false,"topLevel":true,"x":634,"y":2195},"cw":{"opcode":"procedures_prototype","next":null,"parent":"E","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"draw","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"F":{"opcode":"pen_penUp","next":"G","parent":"E","inputs":{},"fields":{},"shadow":false,"topLevel":false},"G":{"opcode":"data_setvariableto","next":"H","parent":"F","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i2","w+P+Pep[i1(OdhNI0ghA"]},"shadow":false,"topLevel":false},"aV":{"opcode":"procedures_definition","next":"#","parent":null,"inputs":{"custom_block":[1,"aW"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"aW":{"opcode":"procedures_prototype","next":null,"parent":"aV","inputs":{"input0":[1,"aA"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","argumentnames":"[\"I\"]","argumentdefaults":"[false]","warp":"true"}},"aA":{"opcode":"argument_reporter_boolean","next":null,"parent":"aW","inputs":{},"fields":{"VALUE":["I",null]},"shadow":true,"topLevel":false},"#":{"opcode":"data_deleteoflist","next":"aX","parent":"aV","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aX":{"opcode":"data_deleteoflist","next":"a","parent":"#","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a":{"opcode":"control_if_else","next":"a!","parent":"aX","inputs":{"CONDITION":[2,"b"],"SUBSTACK":[2,"aY"],"SUBSTACK2":[2,"aZ"]},"fields":{},"shadow":false,"topLevel":false},"a]":{"opcode":"data_lengthoflist","next":null,"parent":"b","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"aY":{"opcode":"data_setvariableto","next":null,"parent":"a","inputs":{"VALUE":[3,"bV",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"aZ":{"opcode":"data_setvariableto","next":null,"parent":"a","inputs":{"VALUE":[3,"bW",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bW":{"opcode":"data_lengthoflist","next":null,"parent":"aZ","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"a!":{"opcode":"data_changevariableby","next":"a#","parent":"a","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a#":{"opcode":"data_setvariableto","next":"aB","parent":"a!","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"aB":{"opcode":"data_setvariableto","next":"h","parent":"a#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"h":{"opcode":"control_repeat_until","next":"ch","parent":"aB","inputs":{"CONDITION":[2,"bX"],"SUBSTACK":[2,"g-"]},"fields":{},"shadow":false,"topLevel":false},"bX":{"opcode":"operator_gt","next":null,"parent":"h","inputs":{"OPERAND1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[10,""]],"OPERAND2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"g-":{"opcode":"data_changevariableby","next":"}","parent":"h","inputs":{"VALUE":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"10"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"bY":{"opcode":"data_lengthoflist","next":null,"parent":"cf","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"hO":{"opcode":"data_setvariableto","next":"cc","parent":"cf","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"bZ":{"opcode":"operator_multiply","next":null,"parent":":","inputs":{"NUM1":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"*":{"opcode":"data_changevariableby","next":"hQ","parent":":","inputs":{"VALUE":[3,"a^",[4,"10"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a^":{"opcode":"operator_mod","next":null,"parent":"*","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"10"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hQ":{"opcode":"data_setvariableto","next":null,"parent":"*","inputs":{"VALUE":[3,"hW",[10,""]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"hW":{"opcode":"operator_mathop","next":null,"parent":"hQ","inputs":{"NUM":[3,"a_",[4,"10"]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"hP":{"opcode":"data_changevariableby","next":"[","parent":"cc","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"h]":{"opcode":"operator_add","next":null,"parent":"[","inputs":{"NUM1":[3,"a`",[4,"10"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"a`":{"opcode":"data_itemoflist","next":null,"parent":"h]","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"10"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"hY":{"opcode":"data_addtolist","next":null,"parent":"[","inputs":{"ITEM":[3,"il",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"il":{"opcode":"operator_add","next":null,"parent":"hY","inputs":{"NUM1":[3,"aa",[4,"10"]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aa":{"opcode":"data_itemoflist","next":null,"parent":"il","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"10"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"g.":{"opcode":"data_setvariableto","next":"^","parent":"ch","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"U":{"opcode":"data_setvariableto","next":"l","parent":"^","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a{":{"opcode":"operator_divide","next":null,"parent":"l","inputs":{"NUM1":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[4,"10"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"V":{"opcode":"data_setvariableto","next":"c","parent":"cb","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"c":{"opcode":"control_if_else","next":".","parent":"V","inputs":{"CONDITION":[2,"a}"],"SUBSTACK":[2,"a%"],"SUBSTACK2":[2,"a("]},"fields":{},"shadow":false,"topLevel":false},"a}":{"opcode":"argument_reporter_boolean","next":null,"parent":"c","inputs":{},"fields":{"VALUE":["I",null]},"shadow":false,"topLevel":false},"a%":{"opcode":"data_setvariableto","next":null,"parent":"c","inputs":{"VALUE":[3,"a~",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"a~":{"opcode":"operator_divide","next":null,"parent":"a%","inputs":{"NUM1":[1,[4,"180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a(":{"opcode":"data_setvariableto","next":null,"parent":"c","inputs":{"VALUE":[3,"b+",[10,""]]},"fields":{"VARIABLE":["r.9","flj)QgXS,93H6OayZ`w[-r.9-"]},"shadow":false,"topLevel":false},"b+":{"opcode":"operator_divide","next":null,"parent":"a(","inputs":{"NUM1":[1,[4,"-180"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a)":{"opcode":"data_changevariableby","next":"cm","parent":".","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"b-":{"opcode":"operator_mathop","next":null,"parent":"cm","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,"10"]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"b.":{"opcode":"operator_mathop","next":null,"parent":"cd","inputs":{"NUM":[3,[12,"r.8","flj)QgXS,93H6OayZ`w[-r.8-"],[4,"10"]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"b/":{"opcode":"data_itemoflist","next":null,"parent":"-","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"aF":{"opcode":"data_itemoflist","next":null,"parent":"_","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"b:":{"opcode":"operator_multiply","next":null,"parent":"`","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,"10"]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"m":{"opcode":"data_setvariableto","next":"T","parent":"ck","inputs":{"VALUE":[3,"%",[10,""]]},"fields":{"VARIABLE":["r.7","flj)QgXS,93H6OayZ`w[-r.7-"]},"shadow":false,"topLevel":false},"%":{"opcode":"operator_add","next":null,"parent":"m","inputs":{"NUM1":[3,"ae",[4,"10"]],"NUM2":[3,"af",[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"operator_multiply","next":null,"parent":"%","inputs":{"NUM1":[3,[12,"r.3","flj)QgXS,93H6OayZ`w[-r.3-"],[4,"10"]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"af":{"opcode":"operator_multiply","next":null,"parent":"%","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"10"]],"NUM2":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"ad":{"opcode":"operator_subtract","next":null,"parent":"T","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"n":{"opcode":"data_setvariableto","next":"L","parent":"T","inputs":{"VALUE":[3,"ag",[10,""]]},"fields":{"VARIABLE":["r.4","flj)QgXS,93H6OayZ`w[-r.4-"]},"shadow":false,"topLevel":false},"ag":{"opcode":"data_itemoflist","next":null,"parent":"n","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"L":{"opcode":"data_setvariableto","next":"M","parent":"n","inputs":{"VALUE":[3,"ah",[10,""]]},"fields":{"VARIABLE":["r.5","flj)QgXS,93H6OayZ`w[-r.5-"]},"shadow":false,"topLevel":false},"ah":{"opcode":"data_itemoflist","next":null,"parent":"L","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"M":{"opcode":"data_replaceitemoflist","next":"N","parent":"L","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]],"ITEM":[3,"ai",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"ai":{"opcode":"operator_add","next":null,"parent":"M","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"10"]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"N":{"opcode":"data_replaceitemoflist","next":"o","parent":"M","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]],"ITEM":[3,"a,",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a,":{"opcode":"operator_add","next":null,"parent":"N","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"10"]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"O":{"opcode":"data_replaceitemoflist","next":"i","parent":"o","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]],"ITEM":[3,"a-",[10,""]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"a-":{"opcode":"operator_subtract","next":null,"parent":"O","inputs":{"NUM1":[3,[12,"r.4","flj)QgXS,93H6OayZ`w[-r.4-"],[4,"10"]],"NUM2":[3,[12,"r.6","flj)QgXS,93H6OayZ`w[-r.6-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"i":{"opcode":"data_replaceitemoflist","next":"P","parent":"O","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]],"ITEM":[3,"a.",[10,""]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"a.":{"opcode":"operator_subtract","next":null,"parent":"i","inputs":{"NUM1":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"10"]],"NUM2":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"P":{"opcode":"data_changevariableby","next":"aj","parent":"i","inputs":{"VALUE":[3,"a/",[4,"10"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a/":{"opcode":"operator_subtract","next":null,"parent":"P","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"aj":{"opcode":"data_changevariableby","next":null,"parent":"P","inputs":{"VALUE":[3,[12,"r.9","flj)QgXS,93H6OayZ`w[-r.9-"],[4,"10"]]},"fields":{"VARIABLE":["r.8","flj)QgXS,93H6OayZ`w[-r.8-"]},"shadow":false,"topLevel":false},"b,":{"opcode":"data_changevariableby","next":null,"parent":".","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"a|":{"opcode":"data_changevariableby","next":null,"parent":"cb","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"it":{"opcode":"data_setvariableto","next":"ja","parent":"^","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"ja":{"opcode":"data_deleteoflist","next":"au","parent":"it","inputs":{"INDEX":[1,[7,"all"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"Q":{"opcode":"data_setvariableto","next":"ab","parent":"au","inputs":{"VALUE":[3,"av",[10,""]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"ar":{"opcode":"data_lengthoflist","next":null,"parent":"av","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"AL":{"opcode":"event_whenbroadcastreceived","next":"dV","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["create sound","O7?o@Pl6XR6dG~oq]ZEc"]},"shadow":false,"topLevel":true,"x":492,"y":1208},"k{":{"opcode":"procedures_call","next":null,"parent":"dV","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","warp":"true"}},"S":{"opcode":"data_setvariableto","next":"bm","parent":"bl","inputs":{"VALUE":[3,"lc",[10,"0"]]},"fields":{"VARIABLE":["pitch","1(hsS=.HEnKV_~]$(r+5"]},"shadow":false,"topLevel":false},"lc":{"opcode":"operator_multiply","next":null,"parent":"S","inputs":{"NUM1":[3,"k}",[4,""]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"k}":{"opcode":"operator_subtract","next":null,"parent":"lc","inputs":{"NUM1":[3,[12,"return","KR:ESz#w/#b!.rl3f3]|"],[4,""]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"ld":{"opcode":"procedures_definition","next":"dW","parent":null,"inputs":{"custom_block":[1,"AM"]},"fields":{},"shadow":false,"topLevel":true,"x":2897,"y":304},"AM":{"opcode":"procedures_prototype","next":null,"parent":"ld","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"dW":{"opcode":"data_setvariableto","next":"r","parent":"ld","inputs":{"VALUE":[1,[10,"10"]]},"fields":{"VARIABLE":["amp","d8yQmxwHD@EL!![dF$O4"]},"shadow":false,"topLevel":false},"a*":{"opcode":"procedures_call","next":"u@","parent":"bm","inputs":{"P5f@u1RgDjs00|I_:M3~":[3,null,[10,""]],"8b4A{#Oh6Wy~vpD1J+zW":[3,null,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick ,","argumentids":"[]","warp":"true"}},"r":{"opcode":"data_setvariableto","next":"la","parent":"dW","inputs":{"VALUE":[1,[10,"128"]]},"fields":{"VARIABLE":["quality","),FI]}BC9Yl17xV5^-f8"]},"shadow":false,"topLevel":false},"Z":{"opcode":"data_setvariableto","next":"s","parent":"la","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["delta","9]b,=u?R90w=tux{E^:8"]},"shadow":false,"topLevel":false},"s":{"opcode":"data_deletealloflist","next":"k","parent":"Z","inputs":{},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"V^":{"opcode":"data_addtolist","next":null,"parent":"k","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"dX":{"opcode":"procedures_definition","next":"dY","parent":null,"inputs":{"custom_block":[1,"dZ"]},"fields":{},"shadow":false,"topLevel":true,"x":2147,"y":244},"dZ":{"opcode":"procedures_prototype","next":null,"parent":"dX","inputs":{"_95_Y~RD-:2ung;#5$b#":[1,"u["]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert pitch to MIDI note %s","argumentids":"[\"_95_Y~RD-:2ung;#5$b#\"]","argumentnames":"[\"p\"]","argumentdefaults":"[\"\"]","warp":"true"}},"u[":{"opcode":"argument_reporter_string_number","next":null,"parent":"dZ","inputs":{},"fields":{"VALUE":["p"]},"shadow":true,"topLevel":false},"dY":{"opcode":"data_setvariableto","next":null,"parent":"dX","inputs":{"VALUE":[3,"d#",[10,"0"]]},"fields":{"VARIABLE":["return","KR:ESz#w/#b!.rl3f3]|"]},"shadow":false,"topLevel":false},"d#":{"opcode":"operator_add","next":null,"parent":"dY","inputs":{"NUM1":[3,"d%",[4,""]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"d%":{"opcode":"operator_multiply","next":null,"parent":"d#","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"bn",[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"bn":{"opcode":"operator_divide","next":null,"parent":"d%","inputs":{"NUM1":[3,"d(",[4,""]],"NUM2":[3,"u]",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d(":{"opcode":"operator_mathop","next":null,"parent":"bn","inputs":{"NUM":[3,"d)",[4,""]]},"fields":{"OPERATOR":["ln"]},"shadow":false,"topLevel":false},"d)":{"opcode":"operator_divide","next":null,"parent":"d(","inputs":{"NUM1":[3,"u_",[4,""]],"NUM2":[1,[4,"440"]]},"fields":{},"shadow":false,"topLevel":false},"u_":{"opcode":"argument_reporter_string_number","next":null,"parent":"d)","inputs":{},"fields":{"VALUE":["p"]},"shadow":false,"topLevel":false},"u]":{"opcode":"operator_mathop","next":null,"parent":"bn","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln"]},"shadow":false,"topLevel":false},"bl":{"opcode":"procedures_call","next":"S","parent":"bo","inputs":{"_95_Y~RD-:2ung;#5$b#":[3,"d+",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert pitch to MIDI note %s","argumentids":"[\"_95_Y~RD-:2ung;#5$b#\"]","warp":"true"}},"u|":{"opcode":"data_itemoflist","next":null,"parent":"d,","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"d+":{"opcode":"operator_divide","next":null,"parent":"bl","inputs":{"NUM1":[1,[4,"131072"]],"NUM2":[3,"d,",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d,":{"opcode":"operator_subtract","next":null,"parent":"d+","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,"u|",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"u}":{"opcode":"event_whenbroadcastreceived","next":"d-","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["reset emulator","#azR?e|zZPviPwY:dM%T"]},"shadow":false,"topLevel":true,"x":2147,"y":64},"d-":{"opcode":"data_setvariableto","next":"va","parent":"u}","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","!_E%Z(.4*,Q~9[N}-hpn"]},"shadow":false,"topLevel":false},"va":{"opcode":"control_delete_this_clone","next":null,"parent":"d-","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vc":{"opcode":"event_whenbroadcastreceived","next":"bo","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+audioEngineUpdateAll","7m=3YPBU?W]n9k?^($RV"]},"shadow":false,"topLevel":true,"x":859,"y":1195},"dR":{"opcode":"data_setvariableto","next":"as","parent":"!","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["+is clone?","!_E%Z(.4*,Q~9[N}-hpn"]},"shadow":false,"topLevel":false},"V]":{"opcode":"data_setvariableto","next":null,"parent":"e","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","!_E%Z(.4*,Q~9[N}-hpn"]},"shadow":false,"topLevel":false},"bo":{"opcode":"control_if","next":null,"parent":"vc","inputs":{"SUBSTACK":[2,"bl"],"CONDITION":[2,"ve"]},"fields":{},"shadow":false,"topLevel":false},"ve":{"opcode":"operator_equals","next":null,"parent":"bo","inputs":{"OPERAND1":[3,[12,"+is clone?","!_E%Z(.4*,Q~9[N}-hpn"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"u@":{"opcode":"data_setvariableto","next":null,"parent":"a*","inputs":{"VALUE":[3,[13,"_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"],[10,"0"]]},"fields":{"VARIABLE":["lastFFTbuf","tZmx}o4R_R/#$1:asi9A"]},"shadow":false,"topLevel":false},"dV":{"opcode":"data_setvariableto","next":"k{","parent":"AL","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["lastFFTbuf","tZmx}o4R_R/#$1:asi9A"]},"shadow":false,"topLevel":false},"bm":{"opcode":"control_if","next":null,"parent":"S","inputs":{"SUBSTACK":[2,"a*"],"CONDITION":[2,"d."]},"fields":{},"shadow":false,"topLevel":false},"d.":{"opcode":"operator_not","next":null,"parent":"bm","inputs":{"OPERAND":[2,"bp"]},"fields":{},"shadow":false,"topLevel":false},"bp":{"opcode":"operator_equals","next":null,"parent":"d.","inputs":{"OPERAND1":[3,"vf",[10,""]],"OPERAND2":[3,"vg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vf":{"opcode":"operator_join","next":null,"parent":"bp","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[3,[13,"_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"vg":{"opcode":"operator_join","next":null,"parent":"bp","inputs":{"STRING1":[1,[10,"#"]],"STRING2":[3,[12,"lastFFTbuf","tZmx}o4R_R/#$1:asi9A"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"bk":{"opcode":"control_if","next":null,"parent":"an","inputs":{"SUBSTACK":[2,"f"],"CONDITION":[2,"d/"]},"fields":{},"shadow":false,"topLevel":false},"d/":{"opcode":"operator_gt","next":null,"parent":"bk","inputs":{"OPERAND1":[3,"vh",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vh":{"opcode":"sound_volume","next":null,"parent":"d/","inputs":{},"fields":{},"shadow":false,"topLevel":false},"d:":{"opcode":"sound_setvolumeto","next":null,"parent":"vj","inputs":{"VOLUME":[3,"d;",[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"d;":{"opcode":"operator_multiply","next":null,"parent":"d:","inputs":{"NUM1":[3,"bq",[4,""]],"NUM2":[3,[12,"+globalVol.R","46oK=P-#sVvKHaV@Dfkc"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bq":{"opcode":"operator_multiply","next":null,"parent":"d;","inputs":{"NUM1":[3,"d=",[4,""]],"NUM2":[3,"d?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d=":{"opcode":"data_itemoflist","next":null,"parent":"bq","inputs":{"INDEX":[3,"vl",[7,"6"]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"vl":{"opcode":"operator_add","next":null,"parent":"d=","inputs":{"NUM1":[3,[12,"sound","lTmVP1QU2X.8`:dRKK^u"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"operator_multiply","next":null,"parent":"bq","inputs":{"NUM1":[3,"vn",[4,"1"]],"NUM2":[1,[4,"0.01"]]},"fields":{},"shadow":false,"topLevel":false},"vn":{"opcode":"data_itemoflist","next":null,"parent":"d?","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"vo":{"opcode":"event_whenbroadcastreceived","next":"vq","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+turnoffaudio","^z1|H-hoS6S+QODIuSdP"]},"shadow":false,"topLevel":true,"x":1059,"y":734},"vq":{"opcode":"sound_setvolumeto","next":null,"parent":"vo","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vj":{"opcode":"event_whenbroadcastreceived","next":"d:","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+audioEngineUpdateAll","7m=3YPBU?W]n9k?^($RV"]},"shadow":false,"topLevel":true,"x":1371,"y":671},"a=":{"opcode":"data_lengthoflist","next":null,"parent":"b","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"bV":{"opcode":"data_lengthoflist","next":null,"parent":"aY","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"a_":{"opcode":"operator_divide","next":null,"parent":"hW","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"10"]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"b;":{"opcode":"operator_multiply","next":null,"parent":"`","inputs":{"NUM1":[3,[12,"r.7","flj)QgXS,93H6OayZ`w[-r.7-"],[4,"10"]],"NUM2":[3,[12,"r.5","flj)QgXS,93H6OayZ`w[-r.5-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"p":{"opcode":"operator_join","next":null,"parent":"b}","inputs":{"STRING1":[1,[10,"sine"]],"STRING2":[3,"qi",[10,"\\"]]},"fields":{},"shadow":false,"topLevel":false},"qi":{"opcode":"argument_reporter_string_number","next":null,"parent":"p","inputs":{},"fields":{"VALUE":["number",null]},"shadow":false,"topLevel":false},"y":{"opcode":"procedures_definition","next":"t","parent":null,"inputs":{"custom_block":[1,"a["]},"fields":{},"shadow":false,"topLevel":true,"x":634,"y":1419},"a[":{"opcode":"procedures_prototype","next":null,"parent":"y","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"tick ,","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"t":{"opcode":"data_deletealloflist","next":"u","parent":"y","inputs":{},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"u":{"opcode":"data_deletealloflist","next":"ca","parent":"t","inputs":{},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"ca":{"opcode":"data_setvariableto","next":"(","parent":"u","inputs":{"VALUE":[3,"a@",[10,"0"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"a@":{"opcode":"operator_multiply","next":null,"parent":"ca","inputs":{"NUM1":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"(":{"opcode":"control_for_each","next":"v","parent":"ca","inputs":{"VALUE":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[6,"512"]],"SUBSTACK":[2,"+"]},"fields":{"VARIABLE":["i2","w+P+Pep[i1(OdhNI0ghA"]},"shadow":false,"topLevel":false},"at":{"opcode":"operator_multiply","next":null,"parent":"+","inputs":{"NUM1":[3,[12,"i2","w+P+Pep[i1(OdhNI0ghA"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"lb":{"opcode":"operator_subtract","next":null,"parent":")","inputs":{"NUM1":[3,"w",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"w":{"opcode":"operator_divide","next":null,"parent":"lb","inputs":{"NUM1":[3,"AK",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"AK":{"opcode":"data_itemoflist","next":null,"parent":"w","inputs":{"INDEX":[3,[12,".t","#_MF{}THpD}[S5u5NqvJ"],[7,"1"]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"u;":{"opcode":"data_addtolist","next":null,"parent":")","inputs":{"ITEM":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[10,""]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"v":{"opcode":"procedures_call","next":"k~","parent":"(","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"FFT %b","argumentids":"[\"input0\"]","warp":"true"}},"k~":{"opcode":"data_changevariableby","next":"x","parent":"v","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["__","gn%VUcBWsE?[SfD^`rzY"]},"shadow":false,"topLevel":false},"x":{"opcode":"data_setvariableto","next":"z","parent":"k~","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"z":{"opcode":"data_setvariableto","next":"A","parent":"x","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"A":{"opcode":"control_repeat","next":null,"parent":"z","inputs":{"TIMES":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[6,"128"]],"SUBSTACK":[2,"B"]},"fields":{},"shadow":false,"topLevel":false},"B":{"opcode":"data_changevariableby","next":"R","parent":"A","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.2","flj)QgXS,93H6OayZ`w[-r.2-"]},"shadow":false,"topLevel":false},"R":{"opcode":"data_replaceitemoflist","next":"lf","parent":"B","inputs":{"INDEX":[3,[12,"r.2","flj)QgXS,93H6OayZ`w[-r.2-"],[7,"1"]],"ITEM":[3,"C",[10,""]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"C":{"opcode":"operator_multiply","next":null,"parent":"R","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"D",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"D":{"opcode":"operator_mathop","next":null,"parent":"C","inputs":{"NUM":[3,"cg",[4,""]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"u=":{"opcode":"data_itemoflist","next":null,"parent":"ci","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"1"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"u?":{"opcode":"data_itemoflist","next":null,"parent":"ci","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"1"]]},"fields":{"LIST":["FT.re","flj)QgXS,93H6OayZ`w[-FT.re-list"]},"shadow":false,"topLevel":false},"V_":{"opcode":"data_itemoflist","next":null,"parent":"/","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"1"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"bS":{"opcode":"data_itemoflist","next":null,"parent":"/","inputs":{"INDEX":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[7,"1"]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"lf":{"opcode":"data_changevariableby","next":null,"parent":"R","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.1","flj)QgXS,93H6OayZ`w[-r.1-"]},"shadow":false,"topLevel":false},"H":{"opcode":"pen_setPenColorToColor","next":"I","parent":"G","inputs":{"COLOR":[1,[9,"#ff0000"]]},"fields":{},"shadow":false,"topLevel":false},"I":{"opcode":"pen_setPenSizeTo","next":"J","parent":"H","inputs":{"SIZE":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"J":{"opcode":"control_repeat","next":null,"parent":"I","inputs":{"TIMES":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[6,"10"]],"SUBSTACK":[2,"K"]},"fields":{},"shadow":false,"topLevel":false},"K":{"opcode":"pen_setPenColorToColor","next":"cQ","parent":"J","inputs":{"COLOR":[1,[9,"#00f7c5"]]},"fields":{},"shadow":false,"topLevel":false},"cQ":{"opcode":"data_setvariableto","next":"j","parent":"K","inputs":{"VALUE":[3,"bD",[10,"0"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"bD":{"opcode":"operator_multiply","next":null,"parent":"cQ","inputs":{"NUM1":[3,"bE",[4,""]],"NUM2":[1,[4,"120"]]},"fields":{},"shadow":false,"topLevel":false},"bE":{"opcode":"operator_mathop","next":null,"parent":"bD","inputs":{"NUM":[3,"aI",[4,""]]},"fields":{"OPERATOR":["log",null]},"shadow":false,"topLevel":false},"aI":{"opcode":"operator_add","next":null,"parent":"bE","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"aJ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aJ":{"opcode":"operator_mathop","next":null,"parent":"aI","inputs":{"NUM":[3,"aK",[4,""]]},"fields":{"OPERATOR":["sqrt",null]},"shadow":false,"topLevel":false},"aK":{"opcode":"operator_add","next":null,"parent":"aJ","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"aL",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aL":{"opcode":"data_itemoflist","next":null,"parent":"aK","inputs":{"INDEX":[3,"bC",[7,"1"]]},"fields":{"LIST":["m","@Mu*IPvEI${W#Lm!SQml"]},"shadow":false,"topLevel":false},"bC":{"opcode":"operator_add","next":null,"parent":"aL","inputs":{"NUM1":[3,[12,"i2","w+P+Pep[i1(OdhNI0ghA"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"j":{"opcode":"pen_changePenColorParamBy","next":"d","parent":"cQ","inputs":{"COLOR_PARAM":[1,"aG"],"VALUE":[3,"ax",[4,"50"]]},"fields":{},"shadow":false,"topLevel":false},"aG":{"opcode":"pen_menu_colorParam","next":null,"parent":"j","inputs":{},"fields":{"colorParam":["color",null]},"shadow":true,"topLevel":false},"ax":{"opcode":"operator_divide","next":null,"parent":"j","inputs":{"NUM1":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]],"NUM2":[1,[4,"-2"]]},"fields":{},"shadow":false,"topLevel":false},"d":{"opcode":"control_if_else","next":"aH","parent":"j","inputs":{"SUBSTACK":[2,"{"],"SUBSTACK2":[2,"|"]},"fields":{},"shadow":false,"topLevel":false},"{":{"opcode":"motion_pointindirection","next":"g","parent":"d","inputs":{"DIRECTION":[3,"aM",[8,"90"]]},"fields":{},"shadow":false,"topLevel":false},"aM":{"opcode":"operator_multiply","next":null,"parent":"{","inputs":{"NUM1":[3,"ay",[4,""]],"NUM2":[3,[12,"i2","w+P+Pep[i1(OdhNI0ghA"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ay":{"opcode":"operator_divide","next":null,"parent":"aM","inputs":{"NUM1":[1,[4,"360"]],"NUM2":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"g":{"opcode":"motion_gotoxy","next":"aN","parent":"{","inputs":{"X":[3,"aO",[4,"192"]],"Y":[3,"aP",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aO":{"opcode":"operator_multiply","next":null,"parent":"g","inputs":{"NUM1":[3,"aQ",[4,""]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"aQ":{"opcode":"operator_mathop","next":null,"parent":"aO","inputs":{"NUM":[3,"]",[4,""]]},"fields":{"OPERATOR":["sin",null]},"shadow":false,"topLevel":false},"]":{"opcode":"motion_direction","next":null,"parent":"aQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aP":{"opcode":"operator_multiply","next":null,"parent":"g","inputs":{"NUM1":[3,"a;",[4,""]],"NUM2":[1,[4,"100"]]},"fields":{},"shadow":false,"topLevel":false},"a;":{"opcode":"operator_mathop","next":null,"parent":"aP","inputs":{"NUM":[3,"ap",[4,""]]},"fields":{"OPERATOR":["cos",null]},"shadow":false,"topLevel":false},"ap":{"opcode":"motion_direction","next":null,"parent":"a;","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aN":{"opcode":"pen_penDown","next":"aR","parent":"g","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aR":{"opcode":"motion_movesteps","next":"az","parent":"aN","inputs":{"STEPS":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"az":{"opcode":"pen_penUp","next":null,"parent":"aR","inputs":{},"fields":{},"shadow":false,"topLevel":false},"|":{"opcode":"motion_gotoxy","next":"aS","parent":"d","inputs":{"X":[3,"aT",[4,"192"]],"Y":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aT":{"opcode":"operator_multiply","next":null,"parent":"|","inputs":{"NUM1":[3,"aU",[4,""]],"NUM2":[1,[4,"400"]]},"fields":{},"shadow":false,"topLevel":false},"aU":{"opcode":"operator_subtract","next":null,"parent":"aT","inputs":{"NUM1":[3,"a?",[4,""]],"NUM2":[1,[4,".5"]]},"fields":{},"shadow":false,"topLevel":false},"a?":{"opcode":"operator_divide","next":null,"parent":"aU","inputs":{"NUM1":[3,[12,"i2","w+P+Pep[i1(OdhNI0ghA"],[4,""]],"NUM2":[3,[12,"quality","),FI]}BC9Yl17xV5^-f8"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aS":{"opcode":"pen_penDown","next":"cM","parent":"|","inputs":{},"fields":{},"shadow":false,"topLevel":false},"cM":{"opcode":"motion_sety","next":"ao","parent":"aS","inputs":{"Y":[3,"aq",[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"aq":{"opcode":"operator_subtract","next":null,"parent":"cM","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ao":{"opcode":"pen_penUp","next":null,"parent":"cM","inputs":{},"fields":{},"shadow":false,"topLevel":false},"aH":{"opcode":"data_changevariableby","next":null,"parent":"d","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i2","w+P+Pep[i1(OdhNI0ghA"]},"shadow":false,"topLevel":false},"}":{"opcode":"data_changevariableby","next":null,"parent":"g-","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.3","flj)QgXS,93H6OayZ`w[-r.3-"]},"shadow":false,"topLevel":false},"ab":{"opcode":"control_repeat","next":null,"parent":"Q","inputs":{"TIMES":[3,"aE",[6,"10"]],"SUBSTACK":[2,"X"]},"fields":{},"shadow":false,"topLevel":false},"aE":{"opcode":"data_lengthoflist","next":null,"parent":"ab","inputs":{},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"X":{"opcode":"data_changevariableby","next":"cj","parent":"ab","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["r.0","flj)QgXS,93H6OayZ`w[-r.0-"]},"shadow":false,"topLevel":false},"Y":{"opcode":"operator_divide","next":null,"parent":"cj","inputs":{"NUM1":[3,"di",[4,"10"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"di":{"opcode":"data_itemoflist","next":null,"parent":"Y","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.0","flj)QgXS,93H6OayZ`w[-temp.0-list"]},"shadow":false,"topLevel":false},"W":{"opcode":"data_addtolist","next":null,"parent":"cj","inputs":{"ITEM":[3,"kU",[10,""]]},"fields":{"LIST":["FT.im","flj)QgXS,93H6OayZ`w[-FT.im-list"]},"shadow":false,"topLevel":false},"kU":{"opcode":"operator_divide","next":null,"parent":"W","inputs":{"NUM1":[3,"dj",[4,"10"]],"NUM2":[3,[12,"r.1","flj)QgXS,93H6OayZ`w[-r.1-"],[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"dj":{"opcode":"data_itemoflist","next":null,"parent":"kU","inputs":{"INDEX":[3,[12,"r.0","flj)QgXS,93H6OayZ`w[-r.0-"],[7,"10"]]},"fields":{"LIST":["temp.1","flj)QgXS,93H6OayZ`w[-temp.1-list"]},"shadow":false,"topLevel":false},"bZ!":{"opcode":"event_whenbroadcastreceived","next":"a*q","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":1495,"y":128},"a*q":{"opcode":"data_setvariableto","next":"bZ#","parent":"bZ!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","!_E%Z(.4*,Q~9[N}-hpn"]},"shadow":false,"topLevel":false},"bZ#":{"opcode":"control_delete_this_clone","next":null,"parent":"a*q","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"sine1","assetId":"bfa430f51d262bbe6286cfa19c93cd0e","dataFormat":"wav","rate":48000,"sampleCount":6144000,"md5ext":"bfa430f51d262bbe6286cfa19c93cd0e.wav"},{"name":"sine2","assetId":"6c9d2eeb38c2c15459b77f5c56d59060","dataFormat":"wav","rate":48000,"sampleCount":3072000,"md5ext":"6c9d2eeb38c2c15459b77f5c56d59060.wav"},{"name":"sine3","assetId":"3e486ae5d11baaf067b3a9d460f88d8e","dataFormat":"wav","rate":48000,"sampleCount":2048000,"md5ext":"3e486ae5d11baaf067b3a9d460f88d8e.wav"},{"name":"sine4","assetId":"759a578a387ab696989e4d613c414b3d","dataFormat":"wav","rate":48000,"sampleCount":1536000,"md5ext":"759a578a387ab696989e4d613c414b3d.wav"},{"name":"sine5","assetId":"2217102afa3b6b7031c7b5124fd25102","dataFormat":"wav","rate":48000,"sampleCount":1228800,"md5ext":"2217102afa3b6b7031c7b5124fd25102.wav"},{"name":"sine6","assetId":"dedc0af79042b77f4a3d6233360deaa7","dataFormat":"wav","rate":48000,"sampleCount":1024000,"md5ext":"dedc0af79042b77f4a3d6233360deaa7.wav"},{"name":"sine7","assetId":"698f64cf71973e29ab75a5b8aff01dba","dataFormat":"wav","rate":48000,"sampleCount":877714,"md5ext":"698f64cf71973e29ab75a5b8aff01dba.wav"},{"name":"sine8","assetId":"888cefb457076baf3b15117b12da5ecb","dataFormat":"wav","rate":48000,"sampleCount":768000,"md5ext":"888cefb457076baf3b15117b12da5ecb.wav"},{"name":"sine9","assetId":"880dec8e00a4080e44e14b96cbff1405","dataFormat":"wav","rate":48000,"sampleCount":682666,"md5ext":"880dec8e00a4080e44e14b96cbff1405.wav"},{"name":"sine10","assetId":"7ae3164d92b042ad54ea65207a92381d","dataFormat":"wav","rate":48000,"sampleCount":614400,"md5ext":"7ae3164d92b042ad54ea65207a92381d.wav"},{"name":"sine11","assetId":"eb4b62d0bc94f0ef98aa0bbd80ad0532","dataFormat":"wav","rate":48000,"sampleCount":558545,"md5ext":"eb4b62d0bc94f0ef98aa0bbd80ad0532.wav"},{"name":"sine12","assetId":"20f8b9a56a6f95b749d87a5014e4c093","dataFormat":"wav","rate":48000,"sampleCount":512000,"md5ext":"20f8b9a56a6f95b749d87a5014e4c093.wav"},{"name":"sine13","assetId":"6d21e5450d70b0c230b41cf83ffc04ce","dataFormat":"wav","rate":48000,"sampleCount":472615,"md5ext":"6d21e5450d70b0c230b41cf83ffc04ce.wav"},{"name":"sine14","assetId":"cbc1b8329a43e98abe548a20769d56d4","dataFormat":"wav","rate":48000,"sampleCount":438857,"md5ext":"cbc1b8329a43e98abe548a20769d56d4.wav"},{"name":"sine15","assetId":"74b56af6cf099a73c65ae30de2e2928d","dataFormat":"wav","rate":48000,"sampleCount":409600,"md5ext":"74b56af6cf099a73c65ae30de2e2928d.wav"},{"name":"sine16","assetId":"58d9e9731c0dd42b1f343900817a1a52","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"58d9e9731c0dd42b1f343900817a1a52.wav"},{"name":"sine17","assetId":"bddcac6e842177df9df6c690bc9f70f9","dataFormat":"wav","rate":48000,"sampleCount":361411,"md5ext":"bddcac6e842177df9df6c690bc9f70f9.wav"},{"name":"sine18","assetId":"83458552c05dc69855bf515c1ae37f8f","dataFormat":"wav","rate":48000,"sampleCount":341333,"md5ext":"83458552c05dc69855bf515c1ae37f8f.wav"},{"name":"sine19","assetId":"68e5116ac6cf8537e9f706de580936e7","dataFormat":"wav","rate":48000,"sampleCount":323368,"md5ext":"68e5116ac6cf8537e9f706de580936e7.wav"},{"name":"sine20","assetId":"8666cc61cc4862fe7e82e68451c578ab","dataFormat":"wav","rate":48000,"sampleCount":307200,"md5ext":"8666cc61cc4862fe7e82e68451c578ab.wav"},{"name":"sine21","assetId":"cd08bc274c244210339062a5de3f5f88","dataFormat":"wav","rate":48000,"sampleCount":292571,"md5ext":"cd08bc274c244210339062a5de3f5f88.wav"},{"name":"sine22","assetId":"02ec0c2843ac90b4113e4aadf75d8a2e","dataFormat":"wav","rate":48000,"sampleCount":279272,"md5ext":"02ec0c2843ac90b4113e4aadf75d8a2e.wav"},{"name":"sine23","assetId":"65047a26adc0066f8192a0f28997ea5f","dataFormat":"wav","rate":48000,"sampleCount":267130,"md5ext":"65047a26adc0066f8192a0f28997ea5f.wav"},{"name":"sine24","assetId":"ef5d2d0ef5b0c4cc0b29df7b73f88e17","dataFormat":"wav","rate":48000,"sampleCount":256000,"md5ext":"ef5d2d0ef5b0c4cc0b29df7b73f88e17.wav"},{"name":"sine25","assetId":"6938a172570d03f3490e023c86f4d1d0","dataFormat":"wav","rate":48000,"sampleCount":245759,"md5ext":"6938a172570d03f3490e023c86f4d1d0.wav"},{"name":"sine26","assetId":"f2b136dd5eb0faf599d0fbf0b1ccf5f8","dataFormat":"wav","rate":48000,"sampleCount":236307,"md5ext":"f2b136dd5eb0faf599d0fbf0b1ccf5f8.wav"},{"name":"sine27","assetId":"d4e18efcd4a4aefe5fa5c8d32d6a7ab1","dataFormat":"wav","rate":48000,"sampleCount":227555,"md5ext":"d4e18efcd4a4aefe5fa5c8d32d6a7ab1.wav"},{"name":"sine28","assetId":"db472ca07a19c41abe4d10442a981309","dataFormat":"wav","rate":48000,"sampleCount":219428,"md5ext":"db472ca07a19c41abe4d10442a981309.wav"},{"name":"sine29","assetId":"e6e988f43549feaf1d6d9ffd2c5b7031","dataFormat":"wav","rate":48000,"sampleCount":211862,"md5ext":"e6e988f43549feaf1d6d9ffd2c5b7031.wav"},{"name":"sine30","assetId":"59b8387480615c39779e04248dfe1fab","dataFormat":"wav","rate":48000,"sampleCount":204800,"md5ext":"59b8387480615c39779e04248dfe1fab.wav"},{"name":"sine31","assetId":"933fcae894d6a655c66e4ec4f4867b4c","dataFormat":"wav","rate":48000,"sampleCount":198193,"md5ext":"933fcae894d6a655c66e4ec4f4867b4c.wav"},{"name":"sine32","assetId":"10852c9f0e9ac6790e9b2c14860b0b43","dataFormat":"wav","rate":48000,"sampleCount":192000,"md5ext":"10852c9f0e9ac6790e9b2c14860b0b43.wav"},{"name":"sine33","assetId":"ad7bd328f088875b73af74896b05bae3","dataFormat":"wav","rate":48000,"sampleCount":186181,"md5ext":"ad7bd328f088875b73af74896b05bae3.wav"},{"name":"sine34","assetId":"a53eb86463b1dffd4853ba037e0f506d","dataFormat":"wav","rate":48000,"sampleCount":180705,"md5ext":"a53eb86463b1dffd4853ba037e0f506d.wav"},{"name":"sine35","assetId":"b8c25ec5e53b7b312b69107fd95569e8","dataFormat":"wav","rate":48000,"sampleCount":175542,"md5ext":"b8c25ec5e53b7b312b69107fd95569e8.wav"},{"name":"sine36","assetId":"c27a29efbfa7850b1a4554b6d185e7a2","dataFormat":"wav","rate":48000,"sampleCount":170666,"md5ext":"c27a29efbfa7850b1a4554b6d185e7a2.wav"},{"name":"sine37","assetId":"4f67ec93287bfad584fedc8f4ff44318","dataFormat":"wav","rate":48000,"sampleCount":166054,"md5ext":"4f67ec93287bfad584fedc8f4ff44318.wav"},{"name":"sine38","assetId":"896d0c3651cb975bda0c25c1f3ee9d3a","dataFormat":"wav","rate":48000,"sampleCount":161684,"md5ext":"896d0c3651cb975bda0c25c1f3ee9d3a.wav"},{"name":"sine39","assetId":"4b827dde09b4c04c21de3ea169c314b8","dataFormat":"wav","rate":48000,"sampleCount":157538,"md5ext":"4b827dde09b4c04c21de3ea169c314b8.wav"},{"name":"sine40","assetId":"bcbf6121c8cea815012df6e56baef149","dataFormat":"wav","rate":48000,"sampleCount":153600,"md5ext":"bcbf6121c8cea815012df6e56baef149.wav"},{"name":"sine41","assetId":"f2d0bf137200076ef9627b5da63a8594","dataFormat":"wav","rate":48000,"sampleCount":149853,"md5ext":"f2d0bf137200076ef9627b5da63a8594.wav"},{"name":"sine42","assetId":"7f4edfaef7eef35d270b4544194f09b7","dataFormat":"wav","rate":48000,"sampleCount":146285,"md5ext":"7f4edfaef7eef35d270b4544194f09b7.wav"},{"name":"sine43","assetId":"744a7e4126a8bef7224686419546fb32","dataFormat":"wav","rate":48000,"sampleCount":142883,"md5ext":"744a7e4126a8bef7224686419546fb32.wav"},{"name":"sine44","assetId":"613d88166ecafd10adf8ad4a2d06e90d","dataFormat":"wav","rate":48000,"sampleCount":139636,"md5ext":"613d88166ecafd10adf8ad4a2d06e90d.wav"},{"name":"sine45","assetId":"6fa95ea0834b5a26f8e20547f44f7deb","dataFormat":"wav","rate":48000,"sampleCount":136533,"md5ext":"6fa95ea0834b5a26f8e20547f44f7deb.wav"},{"name":"sine46","assetId":"6a9756853339a3c49ef5b7edcd02689d","dataFormat":"wav","rate":48000,"sampleCount":133565,"md5ext":"6a9756853339a3c49ef5b7edcd02689d.wav"},{"name":"sine47","assetId":"1d4c5ac762c91132c53fc501055c666f","dataFormat":"wav","rate":48000,"sampleCount":130723,"md5ext":"1d4c5ac762c91132c53fc501055c666f.wav"},{"name":"sine48","assetId":"d0f2a9a536f649c2ba50d88afd626a4c","dataFormat":"wav","rate":48000,"sampleCount":128000,"md5ext":"d0f2a9a536f649c2ba50d88afd626a4c.wav"},{"name":"sine49","assetId":"7ca6e3b06e95901dba6d55d6f03083ca","dataFormat":"wav","rate":48000,"sampleCount":125387,"md5ext":"7ca6e3b06e95901dba6d55d6f03083ca.wav"},{"name":"sine50","assetId":"87e91c74e04dbfa3c559d05468a231ad","dataFormat":"wav","rate":48000,"sampleCount":122879,"md5ext":"87e91c74e04dbfa3c559d05468a231ad.wav"},{"name":"sine51","assetId":"f4215c14f02d400b5f8b2aaa710807d9","dataFormat":"wav","rate":48000,"sampleCount":120470,"md5ext":"f4215c14f02d400b5f8b2aaa710807d9.wav"},{"name":"sine52","assetId":"cf93ed82def7c17b7181203e1bcd39fa","dataFormat":"wav","rate":48000,"sampleCount":118153,"md5ext":"cf93ed82def7c17b7181203e1bcd39fa.wav"},{"name":"sine53","assetId":"6079badcb98d8562f6aaa47f264be86e","dataFormat":"wav","rate":48000,"sampleCount":115924,"md5ext":"6079badcb98d8562f6aaa47f264be86e.wav"},{"name":"sine54","assetId":"e2fa9d000fa1dfb0092d7a9010343f17","dataFormat":"wav","rate":48000,"sampleCount":113777,"md5ext":"e2fa9d000fa1dfb0092d7a9010343f17.wav"},{"name":"sine55","assetId":"360cab55f4133160e724545bbd03adb4","dataFormat":"wav","rate":48000,"sampleCount":111709,"md5ext":"360cab55f4133160e724545bbd03adb4.wav"},{"name":"sine56","assetId":"9be2ea7cf19c7179d3503a376e2c7b89","dataFormat":"wav","rate":48000,"sampleCount":109714,"md5ext":"9be2ea7cf19c7179d3503a376e2c7b89.wav"},{"name":"sine57","assetId":"f88cbbf84ff075a5d5bab8d944271010","dataFormat":"wav","rate":48000,"sampleCount":107789,"md5ext":"f88cbbf84ff075a5d5bab8d944271010.wav"},{"name":"sine58","assetId":"48217acc73bc3aa96c4a7e904407bb83","dataFormat":"wav","rate":48000,"sampleCount":105931,"md5ext":"48217acc73bc3aa96c4a7e904407bb83.wav"},{"name":"sine59","assetId":"ebc0a623611fdc225cdc1267597e32e3","dataFormat":"wav","rate":48000,"sampleCount":104135,"md5ext":"ebc0a623611fdc225cdc1267597e32e3.wav"},{"name":"sine60","assetId":"50d054f90db509b7683335e4e4f827a4","dataFormat":"wav","rate":48000,"sampleCount":102400,"md5ext":"50d054f90db509b7683335e4e4f827a4.wav"},{"name":"sine61","assetId":"f5282ae85ea91cb3abbae5a7d45e4c97","dataFormat":"wav","rate":48000,"sampleCount":100721,"md5ext":"f5282ae85ea91cb3abbae5a7d45e4c97.wav"},{"name":"sine62","assetId":"e253fd47fd656b3be083358e3b700818","dataFormat":"wav","rate":48000,"sampleCount":99096,"md5ext":"e253fd47fd656b3be083358e3b700818.wav"},{"name":"sine63","assetId":"aea725625af857665fa0c9969f1d0cf1","dataFormat":"wav","rate":48000,"sampleCount":97523,"md5ext":"aea725625af857665fa0c9969f1d0cf1.wav"},{"name":"sine64","assetId":"22b6f39217fb0f06dcbf339f579cb8ef","dataFormat":"wav","rate":48000,"sampleCount":96000,"md5ext":"22b6f39217fb0f06dcbf339f579cb8ef.wav"},{"name":"sine65","assetId":"e1d2683effff37269dcbfa180510cf4b","dataFormat":"wav","rate":48000,"sampleCount":94523,"md5ext":"e1d2683effff37269dcbfa180510cf4b.wav"},{"name":"sine66","assetId":"8d8cb920f0087197389fa0c42196dace","dataFormat":"wav","rate":48000,"sampleCount":93090,"md5ext":"8d8cb920f0087197389fa0c42196dace.wav"},{"name":"sine67","assetId":"0a4191a2ccb1869e74eb94fbb2c608e7","dataFormat":"wav","rate":48000,"sampleCount":91701,"md5ext":"0a4191a2ccb1869e74eb94fbb2c608e7.wav"},{"name":"sine68","assetId":"599333f2794ea4d44d2a4cc6ae782a96","dataFormat":"wav","rate":48000,"sampleCount":90352,"md5ext":"599333f2794ea4d44d2a4cc6ae782a96.wav"},{"name":"sine69","assetId":"b02753adf8f0b088e0b3d08a142534a7","dataFormat":"wav","rate":48000,"sampleCount":89043,"md5ext":"b02753adf8f0b088e0b3d08a142534a7.wav"},{"name":"sine70","assetId":"4c2642f6b7e3e9bf9c59e635f7829b80","dataFormat":"wav","rate":48000,"sampleCount":87771,"md5ext":"4c2642f6b7e3e9bf9c59e635f7829b80.wav"},{"name":"sine71","assetId":"abd12e61ccb4c10dac9d9a3539d71b63","dataFormat":"wav","rate":48000,"sampleCount":86535,"md5ext":"abd12e61ccb4c10dac9d9a3539d71b63.wav"},{"name":"sine72","assetId":"d0748ae1a524044a588b5b0f53fd43d6","dataFormat":"wav","rate":48000,"sampleCount":85333,"md5ext":"d0748ae1a524044a588b5b0f53fd43d6.wav"},{"name":"sine73","assetId":"042daa82a03de0e05a87414fe6937856","dataFormat":"wav","rate":48000,"sampleCount":84164,"md5ext":"042daa82a03de0e05a87414fe6937856.wav"},{"name":"sine74","assetId":"c5dbf8f96ca87422b24f894abdfb4fcf","dataFormat":"wav","rate":48000,"sampleCount":83027,"md5ext":"c5dbf8f96ca87422b24f894abdfb4fcf.wav"},{"name":"sine75","assetId":"dba15063b06043107f97c41ca79d2891","dataFormat":"wav","rate":48000,"sampleCount":81920,"md5ext":"dba15063b06043107f97c41ca79d2891.wav"},{"name":"sine76","assetId":"8a8aab1d9c71e505fdf9f76f6d3cfabb","dataFormat":"wav","rate":48000,"sampleCount":80842,"md5ext":"8a8aab1d9c71e505fdf9f76f6d3cfabb.wav"},{"name":"sine77","assetId":"6a74237144ccc14563f0b50d8740b1b9","dataFormat":"wav","rate":48000,"sampleCount":79792,"md5ext":"6a74237144ccc14563f0b50d8740b1b9.wav"},{"name":"sine78","assetId":"6323725bcdba0985a99b635311307323","dataFormat":"wav","rate":48000,"sampleCount":78769,"md5ext":"6323725bcdba0985a99b635311307323.wav"},{"name":"sine79","assetId":"7be8399413314be5a9b4215155c5bbf6","dataFormat":"wav","rate":48000,"sampleCount":77772,"md5ext":"7be8399413314be5a9b4215155c5bbf6.wav"},{"name":"sine80","assetId":"75b1302baed6e0c7e3bcf24102c827c6","dataFormat":"wav","rate":48000,"sampleCount":76800,"md5ext":"75b1302baed6e0c7e3bcf24102c827c6.wav"},{"name":"sine81","assetId":"fb5bba874144aff4c5f4c4a132f5d8c9","dataFormat":"wav","rate":48000,"sampleCount":75851,"md5ext":"fb5bba874144aff4c5f4c4a132f5d8c9.wav"},{"name":"sine82","assetId":"50b80906831cbb004160d0d3ab29c25f","dataFormat":"wav","rate":48000,"sampleCount":74926,"md5ext":"50b80906831cbb004160d0d3ab29c25f.wav"},{"name":"sine83","assetId":"fb4a906239af79dbaea9e35d8a333dcf","dataFormat":"wav","rate":48000,"sampleCount":74024,"md5ext":"fb4a906239af79dbaea9e35d8a333dcf.wav"},{"name":"sine84","assetId":"d4b6b8b1ac2083e58951cde8fc24d043","dataFormat":"wav","rate":48000,"sampleCount":73142,"md5ext":"d4b6b8b1ac2083e58951cde8fc24d043.wav"},{"name":"sine85","assetId":"566c3b199cdf4e222821c46df807bd71","dataFormat":"wav","rate":48000,"sampleCount":72282,"md5ext":"566c3b199cdf4e222821c46df807bd71.wav"},{"name":"sine86","assetId":"9c2c9219f97d6cee0f0447c6f930c641","dataFormat":"wav","rate":48000,"sampleCount":71441,"md5ext":"9c2c9219f97d6cee0f0447c6f930c641.wav"},{"name":"sine87","assetId":"ab7742faec0a73576aae5968f00a3557","dataFormat":"wav","rate":48000,"sampleCount":70620,"md5ext":"ab7742faec0a73576aae5968f00a3557.wav"},{"name":"sine88","assetId":"4b688ece31262559792f4bcb0fa9ab02","dataFormat":"wav","rate":48000,"sampleCount":69818,"md5ext":"4b688ece31262559792f4bcb0fa9ab02.wav"},{"name":"sine89","assetId":"43f283963ed23c280103932923170127","dataFormat":"wav","rate":48000,"sampleCount":69033,"md5ext":"43f283963ed23c280103932923170127.wav"},{"name":"sine90","assetId":"22da14750e1785450b348ebe9e06ced1","dataFormat":"wav","rate":48000,"sampleCount":68266,"md5ext":"22da14750e1785450b348ebe9e06ced1.wav"},{"name":"sine91","assetId":"63a40af7d5550e7f68c8e01fedfd6d86","dataFormat":"wav","rate":48000,"sampleCount":67516,"md5ext":"63a40af7d5550e7f68c8e01fedfd6d86.wav"},{"name":"sine92","assetId":"a348d5f7a73084b3b038612d48f6bb48","dataFormat":"wav","rate":48000,"sampleCount":66782,"md5ext":"a348d5f7a73084b3b038612d48f6bb48.wav"},{"name":"sine93","assetId":"0b79c21e61f9158673ac88b9867fc0d0","dataFormat":"wav","rate":48000,"sampleCount":66064,"md5ext":"0b79c21e61f9158673ac88b9867fc0d0.wav"},{"name":"sine94","assetId":"1f3ea465d54ec08676c14f5fed23b2c4","dataFormat":"wav","rate":48000,"sampleCount":65361,"md5ext":"1f3ea465d54ec08676c14f5fed23b2c4.wav"},{"name":"sine95","assetId":"0e1a97214676a300c9f0cd260a67b5d1","dataFormat":"wav","rate":48000,"sampleCount":64673,"md5ext":"0e1a97214676a300c9f0cd260a67b5d1.wav"},{"name":"sine96","assetId":"145f3080c3af778eae16b973d5095e52","dataFormat":"wav","rate":48000,"sampleCount":64000,"md5ext":"145f3080c3af778eae16b973d5095e52.wav"},{"name":"sine97","assetId":"6e69dfe70f53b88a9f5d8268b7f0c95b","dataFormat":"wav","rate":48000,"sampleCount":63340,"md5ext":"6e69dfe70f53b88a9f5d8268b7f0c95b.wav"},{"name":"sine98","assetId":"e7049363c619c09afba421d02baef6a0","dataFormat":"wav","rate":48000,"sampleCount":62693,"md5ext":"e7049363c619c09afba421d02baef6a0.wav"},{"name":"sine99","assetId":"1cfc2b709054954b15e5593fee7a16d9","dataFormat":"wav","rate":48000,"sampleCount":62060,"md5ext":"1cfc2b709054954b15e5593fee7a16d9.wav"},{"name":"sine100","assetId":"5f5b80be6a5c848aa3bbc2506cca0799","dataFormat":"wav","rate":48000,"sampleCount":61439,"md5ext":"5f5b80be6a5c848aa3bbc2506cca0799.wav"},{"name":"sine101","assetId":"dca4769bb80b64483cff2d17663942a4","dataFormat":"wav","rate":48000,"sampleCount":60831,"md5ext":"dca4769bb80b64483cff2d17663942a4.wav"},{"name":"sine102","assetId":"86088e23817a372c75664a34ef4b75b9","dataFormat":"wav","rate":48000,"sampleCount":60235,"md5ext":"86088e23817a372c75664a34ef4b75b9.wav"},{"name":"sine103","assetId":"5c1627200009261eee6cffa123963567","dataFormat":"wav","rate":48000,"sampleCount":59650,"md5ext":"5c1627200009261eee6cffa123963567.wav"},{"name":"sine104","assetId":"ac519a33460461aff7608477fd84c75b","dataFormat":"wav","rate":48000,"sampleCount":59076,"md5ext":"ac519a33460461aff7608477fd84c75b.wav"},{"name":"sine105","assetId":"26391c9902bd0f6403a59d3eda551df2","dataFormat":"wav","rate":48000,"sampleCount":58514,"md5ext":"26391c9902bd0f6403a59d3eda551df2.wav"},{"name":"sine106","assetId":"3615f18adb2ff39411e8f61c3806cd26","dataFormat":"wav","rate":48000,"sampleCount":57962,"md5ext":"3615f18adb2ff39411e8f61c3806cd26.wav"},{"name":"sine107","assetId":"c06b36acceff4c0b2407643d4ed88d4b","dataFormat":"wav","rate":48000,"sampleCount":57420,"md5ext":"c06b36acceff4c0b2407643d4ed88d4b.wav"},{"name":"sine108","assetId":"1cd9a55f06d12588fd95eb48029fa9ea","dataFormat":"wav","rate":48000,"sampleCount":56888,"md5ext":"1cd9a55f06d12588fd95eb48029fa9ea.wav"},{"name":"sine109","assetId":"cd7793e9058b5c0a06f36548b6fa5a6a","dataFormat":"wav","rate":48000,"sampleCount":56366,"md5ext":"cd7793e9058b5c0a06f36548b6fa5a6a.wav"},{"name":"sine110","assetId":"4a8cecd7cb1594c594a34b52bb660a77","dataFormat":"wav","rate":48000,"sampleCount":55854,"md5ext":"4a8cecd7cb1594c594a34b52bb660a77.wav"},{"name":"sine111","assetId":"1fac04316f556fa8c4ac22d54e43cb13","dataFormat":"wav","rate":48000,"sampleCount":55351,"md5ext":"1fac04316f556fa8c4ac22d54e43cb13.wav"},{"name":"sine112","assetId":"365eaf829d1c179363bbebffa5b815bb","dataFormat":"wav","rate":48000,"sampleCount":54857,"md5ext":"365eaf829d1c179363bbebffa5b815bb.wav"},{"name":"sine113","assetId":"8ef9373e35afcbe61a2cb0e8ad36d8c9","dataFormat":"wav","rate":48000,"sampleCount":54371,"md5ext":"8ef9373e35afcbe61a2cb0e8ad36d8c9.wav"},{"name":"sine114","assetId":"21fcab37866fdb22cfe96e23f1d920bc","dataFormat":"wav","rate":48000,"sampleCount":53894,"md5ext":"21fcab37866fdb22cfe96e23f1d920bc.wav"},{"name":"sine115","assetId":"acabb402f59628892368dc487cbb8e0e","dataFormat":"wav","rate":48000,"sampleCount":53426,"md5ext":"acabb402f59628892368dc487cbb8e0e.wav"},{"name":"sine116","assetId":"52028ca9a1ba8fd74ab4102d673ebf14","dataFormat":"wav","rate":48000,"sampleCount":52965,"md5ext":"52028ca9a1ba8fd74ab4102d673ebf14.wav"},{"name":"sine117","assetId":"31b46bb4d1cdc152dc1dfa29f427526b","dataFormat":"wav","rate":48000,"sampleCount":52512,"md5ext":"31b46bb4d1cdc152dc1dfa29f427526b.wav"},{"name":"sine118","assetId":"0beff39e5c5035ff0ea6382e13b5ce16","dataFormat":"wav","rate":48000,"sampleCount":52067,"md5ext":"0beff39e5c5035ff0ea6382e13b5ce16.wav"},{"name":"sine119","assetId":"e27a6f44d3ff67b8048235f0095e8007","dataFormat":"wav","rate":48000,"sampleCount":51630,"md5ext":"e27a6f44d3ff67b8048235f0095e8007.wav"},{"name":"sine120","assetId":"139ce6c86a78df6988ecc3b230262232","dataFormat":"wav","rate":48000,"sampleCount":51200,"md5ext":"139ce6c86a78df6988ecc3b230262232.wav"}],"volume":0,"layerOrder":22,"visible":true,"x":198.4375,"y":-4.841604987875465,"size":100,"direction":-1.40625,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":"sound","variables":{"z0B/Ub2$.$.jbbhOFsfA":["loop",4],"[aAY{qg0;wMY~=m5HrO8":["+channel ID",3],"H{fxkx!z2a95ORvG4}F9":["+channel Cycle","0"],"0O4|8);xAcMV@|2-Om/:":["+is clone?","0"],"C(Yr(O@@~u^^|Xr^s2{l":["i",0],"+x$8JEiX;fs$Z_aCx2w5":["return",155.62368343770407],"furBk`[^Ru0NtmPQQf-X":["menu0exit",0]},"lists":{},"broadcasts":{},"blocks":{"ut":{"opcode":"event_whenbroadcastreceived","next":";","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+audioEngineUpdateAll","7m=3YPBU?W]n9k?^($RV"]},"shadow":false,"topLevel":true,"x":930,"y":281},";":{"opcode":"control_if_else","next":null,"parent":"ut","inputs":{"CONDITION":[2,"uu"],"SUBSTACK":[2,"uv"],"SUBSTACK2":[2,"b"]},"fields":{},"shadow":false,"topLevel":false},"uu":{"opcode":"operator_equals","next":null,"parent":";","inputs":{"OPERAND1":[3,[12,"+is clone?","0O4|8);xAcMV@|2-Om/:"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ea":{"opcode":"control_for_each","next":null,"parent":"Eb","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"ba"]},"fields":{"VARIABLE":["loop","z0B/Ub2$.$.jbbhOFsfA"]},"shadow":false,"topLevel":false},"ba":{"opcode":"control_if","next":null,"parent":"Ea","inputs":{"CONDITION":[2,"bb"],"SUBSTACK":[2,"dk"]},"fields":{},"shadow":false,"topLevel":false},"bb":{"opcode":"operator_and","next":null,"parent":"ba","inputs":{"OPERAND1":[2,"dl"],"OPERAND2":[2,"dm"]},"fields":{},"shadow":false,"topLevel":false},"dl":{"opcode":"operator_equals","next":null,"parent":"bb","inputs":{"OPERAND1":[3,"uw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"uw":{"opcode":"data_itemoflist","next":null,"parent":"dl","inputs":{"INDEX":[3,[12,"loop","z0B/Ub2$.$.jbbhOFsfA"],[7,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"dm":{"opcode":"operator_equals","next":null,"parent":"bb","inputs":{"OPERAND1":[3,"ux",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ux":{"opcode":"data_itemoflist","next":null,"parent":"dm","inputs":{"INDEX":[3,[12,"loop","z0B/Ub2$.$.jbbhOFsfA"],[7,"1"]]},"fields":{"LIST":["+sound clones active","9skes?+O/Q=:LB5Z6/H0"]},"shadow":false,"topLevel":false},"dk":{"opcode":"data_replaceitemoflist","next":"dn","parent":"ba","inputs":{"INDEX":[3,[12,"loop","z0B/Ub2$.$.jbbhOFsfA"],[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["+sound clones active","9skes?+O/Q=:LB5Z6/H0"]},"shadow":false,"topLevel":false},"dn":{"opcode":"data_setvariableto","next":"uz","parent":"dk","inputs":{"VALUE":[3,[12,"loop","z0B/Ub2$.$.jbbhOFsfA"],[10,"0"]]},"fields":{"VARIABLE":["+channel ID","[aAY{qg0;wMY~=m5HrO8"]},"shadow":false,"topLevel":false},"uz":{"opcode":"procedures_call","next":null,"parent":"dn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","warp":"true"}},"b":{"opcode":"control_if_else","next":"do","parent":";","inputs":{"CONDITION":[2,"uA"],"SUBSTACK":[2,"dp"],"SUBSTACK2":[2,"dq"]},"fields":{},"shadow":false,"topLevel":false},"uA":{"opcode":"operator_equals","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"dp":{"opcode":"procedures_call","next":null,"parent":"b","inputs":{"_95_Y~RD-:2ung;#5$b#":[3,"dr",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert pitch to MIDI note %s","argumentids":"[\"_95_Y~RD-:2ung;#5$b#\"]","warp":"true"}},"dr":{"opcode":"operator_divide","next":null,"parent":"dp","inputs":{"NUM1":[1,[4,"524288"]],"NUM2":[3,"uB",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"uB":{"opcode":"data_itemoflist","next":null,"parent":"dr","inputs":{"INDEX":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"dq":{"opcode":"procedures_call","next":null,"parent":"b","inputs":{"_95_Y~RD-:2ung;#5$b#":[3,"ds",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert pitch to MIDI note %s","argumentids":"[\"_95_Y~RD-:2ung;#5$b#\"]","warp":"true"}},"ds":{"opcode":"operator_divide","next":null,"parent":"dq","inputs":{"NUM1":[1,[4,"131072"]],"NUM2":[3,"dt",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"dt":{"opcode":"operator_subtract","next":null,"parent":"ds","inputs":{"NUM1":[1,[4,"2048"]],"NUM2":[3,"uC",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"uC":{"opcode":"data_itemoflist","next":null,"parent":"dt","inputs":{"INDEX":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"do":{"opcode":"sound_seteffectto","next":null,"parent":"b","inputs":{"VALUE":[3,"du",[4,"100"]]},"fields":{"EFFECT":["PITCH",null]},"shadow":false,"topLevel":false},"du":{"opcode":"operator_multiply","next":null,"parent":"do","inputs":{"NUM1":[3,"uD",[4,""]],"NUM2":[1,[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"uD":{"opcode":"operator_subtract","next":null,"parent":"du","inputs":{"NUM1":[3,[12,"return","+x$8JEiX;fs$Z_aCx2w5"],[4,""]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"dv":{"opcode":"procedures_definition","next":"dw","parent":null,"inputs":{"custom_block":[1,"uE"]},"fields":{},"shadow":false,"topLevel":true,"x":1153,"y":-460},"uE":{"opcode":"procedures_prototype","next":null,"parent":"dv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"clone sound channel","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"dw":{"opcode":"data_setvariableto","next":"bc","parent":"dv","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["+is clone?","0O4|8);xAcMV@|2-Om/:"]},"shadow":false,"topLevel":false},"bc":{"opcode":"control_create_clone_of","next":"uF","parent":"dw","inputs":{"CLONE_OPTION":[1,"uG"]},"fields":{},"shadow":false,"topLevel":false},"uG":{"opcode":"control_create_clone_of_menu","next":null,"parent":"bc","inputs":{},"fields":{"CLONE_OPTION":["_myself_",null]},"shadow":true,"topLevel":false},"uF":{"opcode":"data_setvariableto","next":null,"parent":"bc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","0O4|8);xAcMV@|2-Om/:"]},"shadow":false,"topLevel":false},"dx":{"opcode":"procedures_definition","next":"dy","parent":null,"inputs":{"custom_block":[1,"dA"]},"fields":{},"shadow":false,"topLevel":true,"x":1147,"y":-243},"dA":{"opcode":"procedures_prototype","next":null,"parent":"dx","inputs":{"_95_Y~RD-:2ung;#5$b#":[1,"uH"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"convert pitch to MIDI note %s","argumentids":"[\"_95_Y~RD-:2ung;#5$b#\"]","argumentnames":"[\"p\"]","argumentdefaults":"[\"\"]","warp":"true"}},"uH":{"opcode":"argument_reporter_string_number","next":null,"parent":"dA","inputs":{},"fields":{"VALUE":["p",null]},"shadow":true,"topLevel":false},"dy":{"opcode":"data_setvariableto","next":null,"parent":"dx","inputs":{"VALUE":[3,"dB",[10,"0"]]},"fields":{"VARIABLE":["return","+x$8JEiX;fs$Z_aCx2w5"]},"shadow":false,"topLevel":false},"dB":{"opcode":"operator_add","next":null,"parent":"dy","inputs":{"NUM1":[3,"dC",[4,""]],"NUM2":[1,[4,"69"]]},"fields":{},"shadow":false,"topLevel":false},"dC":{"opcode":"operator_multiply","next":null,"parent":"dB","inputs":{"NUM1":[1,[4,"12"]],"NUM2":[3,"bd",[4,"12"]]},"fields":{},"shadow":false,"topLevel":false},"bd":{"opcode":"operator_divide","next":null,"parent":"dC","inputs":{"NUM1":[3,"dD",[4,""]],"NUM2":[3,"uI",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"dD":{"opcode":"operator_mathop","next":null,"parent":"bd","inputs":{"NUM":[3,"dE",[4,""]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"dE":{"opcode":"operator_divide","next":null,"parent":"dD","inputs":{"NUM1":[3,"uJ",[4,""]],"NUM2":[1,[4,"440"]]},"fields":{},"shadow":false,"topLevel":false},"uJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"dE","inputs":{},"fields":{"VALUE":["p",null]},"shadow":false,"topLevel":false},"uI":{"opcode":"operator_mathop","next":null,"parent":"bd","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"uK":{"opcode":"control_start_as_clone","next":"dF","parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":1696,"y":967},"dF":{"opcode":"control_forever","next":null,"parent":"uK","inputs":{"SUBSTACK":[2,"="]},"fields":{},"shadow":false,"topLevel":false},"=":{"opcode":"control_if","next":"?","parent":"dF","inputs":{"CONDITION":[2,"uQ"],"SUBSTACK":[2,"be"]},"fields":{},"shadow":false,"topLevel":false},"uQ":{"opcode":"operator_equals","next":null,"parent":"=","inputs":{"OPERAND1":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"be":{"opcode":"sound_playuntildone","next":null,"parent":"=","inputs":{"SOUND_MENU":[3,"dG","uS"]},"fields":{},"shadow":false,"topLevel":false},"dG":{"opcode":"operator_join","next":null,"parent":"be","inputs":{"STRING1":[1,[10,"P"]],"STRING2":[3,"uT",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"uT":{"opcode":"operator_join","next":null,"parent":"dG","inputs":{"STRING1":[3,[12,"+channel Cycle","H{fxkx!z2a95ORvG4}F9"],[10,"0"]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uS":{"opcode":"sound_sounds_menu","next":null,"parent":"be","inputs":{},"fields":{"SOUND_MENU":["P00",null]},"shadow":true,"topLevel":false},"?":{"opcode":"control_if","next":"bf","parent":"=","inputs":{"CONDITION":[2,"uU"],"SUBSTACK":[2,"bg"]},"fields":{},"shadow":false,"topLevel":false},"uU":{"opcode":"operator_equals","next":null,"parent":"?","inputs":{"OPERAND1":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"bg":{"opcode":"sound_playuntildone","next":null,"parent":"?","inputs":{"SOUND_MENU":[3,"dH","uV"]},"fields":{},"shadow":false,"topLevel":false},"dH":{"opcode":"operator_join","next":null,"parent":"bg","inputs":{"STRING1":[1,[10,"P"]],"STRING2":[3,"uW",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"uW":{"opcode":"operator_join","next":null,"parent":"dH","inputs":{"STRING1":[3,[12,"+channel Cycle","H{fxkx!z2a95ORvG4}F9"],[10,"0"]],"STRING2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"uV":{"opcode":"sound_sounds_menu","next":null,"parent":"bg","inputs":{},"fields":{"SOUND_MENU":["P00",null]},"shadow":true,"topLevel":false},"bf":{"opcode":"control_if","next":null,"parent":"?","inputs":{"CONDITION":[2,"uX"],"SUBSTACK":[2,"bh"]},"fields":{},"shadow":false,"topLevel":false},"uX":{"opcode":"operator_equals","next":null,"parent":"bf","inputs":{"OPERAND1":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bh":{"opcode":"sound_playuntildone","next":null,"parent":"bf","inputs":{"SOUND_MENU":[3,"dI","uY"]},"fields":{},"shadow":false,"topLevel":false},"dI":{"opcode":"operator_join","next":null,"parent":"bh","inputs":{"STRING1":[1,[10,"N"]],"STRING2":[3,"uZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"uZ":{"opcode":"operator_join","next":null,"parent":"dI","inputs":{"STRING1":[3,[12,"+channel Cycle","H{fxkx!z2a95ORvG4}F9"],[10,"0"]],"STRING2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"uY":{"opcode":"sound_sounds_menu","next":null,"parent":"bh","inputs":{},"fields":{"SOUND_MENU":["P00",null]},"shadow":true,"topLevel":false},"u!":{"opcode":"event_whenbroadcastreceived","next":"bi","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+audioEngineUpdateAll","7m=3YPBU?W]n9k?^($RV"]},"shadow":false,"topLevel":true,"x":563,"y":1039},"bi":{"opcode":"control_if_else","next":null,"parent":"u!","inputs":{"CONDITION":[2,"u#"],"SUBSTACK2":[2,"@"]},"fields":{},"shadow":false,"topLevel":false},"u#":{"opcode":"operator_equals","next":null,"parent":"bi","inputs":{"OPERAND1":[3,[12,"+is clone?","0O4|8);xAcMV@|2-Om/:"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"@":{"opcode":"control_if_else","next":null,"parent":"bi","inputs":{"CONDITION":[2,"dJ"],"SUBSTACK":[2,"dK"],"SUBSTACK2":[2,"u%"]},"fields":{},"shadow":false,"topLevel":false},"dJ":{"opcode":"operator_equals","next":null,"parent":"@","inputs":{"OPERAND1":[3,"V.",[10,""]],"OPERAND2":[3,[12,"+channel Cycle","H{fxkx!z2a95ORvG4}F9"],[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"V.":{"opcode":"data_itemoflist","next":null,"parent":"dJ","inputs":{"INDEX":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[7,"1"]]},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"dK":{"opcode":"sound_setvolumeto","next":null,"parent":"@","inputs":{"VOLUME":[3,"dL",[4,"10"]]},"fields":{},"shadow":false,"topLevel":false},"dM":{"opcode":"operator_multiply","next":null,"parent":"dL","inputs":{"NUM1":[3,"V/",[4,""]],"NUM2":[1,[4,".5"]]},"fields":{},"shadow":false,"topLevel":false},"V/":{"opcode":"data_itemoflist","next":null,"parent":"dM","inputs":{"INDEX":[3,[12,"+channel ID","[aAY{qg0;wMY~=m5HrO8"],[7,"1"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"u%":{"opcode":"sound_setvolumeto","next":null,"parent":"@","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"dN":{"opcode":"procedures_definition","next":"dO","parent":null,"inputs":{"custom_block":[1,"u*"]},"fields":{},"shadow":false,"topLevel":true,"x":1174,"y":-34},"u*":{"opcode":"procedures_prototype","next":null,"parent":"dN","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"fast","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"dO":{"opcode":"data_setvariableto","next":"bj","parent":"dN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+channel Cycle","H{fxkx!z2a95ORvG4}F9"]},"shadow":false,"topLevel":false},"bj":{"opcode":"control_repeat","next":null,"parent":"dO","inputs":{"TIMES":[3,"u+",[6,"4"]],"SUBSTACK":[2,"dP"]},"fields":{},"shadow":false,"topLevel":false},"u+":{"opcode":"operator_letter_of","next":null,"parent":"bj","inputs":{"LETTER":[3,[12,"loop","z0B/Ub2$.$.jbbhOFsfA"],[6,"4"]],"STRING":[1,[10,"4402"]]},"fields":{},"shadow":false,"topLevel":false},"dP":{"opcode":"procedures_call","next":"V:","parent":"bj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"clone sound channel","argumentids":"[]","warp":"true"}},"V:":{"opcode":"data_changevariableby","next":null,"parent":"dP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["+channel Cycle","H{fxkx!z2a95ORvG4}F9"]},"shadow":false,"topLevel":false},"V;":{"opcode":"event_whenbroadcastreceived","next":"dQ","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["reset emulator","#azR?e|zZPviPwY:dM%T"]},"shadow":false,"topLevel":true,"x":391,"y":128},"dQ":{"opcode":"data_setvariableto","next":"V=","parent":"V;","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","0O4|8);xAcMV@|2-Om/:"]},"shadow":false,"topLevel":false},"V=":{"opcode":"control_delete_this_clone","next":null,"parent":"dQ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Eb":{"opcode":"procedures_definition","next":"Ea","parent":null,"inputs":{"custom_block":[1,"V?"]},"fields":{},"shadow":false,"topLevel":true,"x":1574,"y":217},"V?":{"opcode":"procedures_prototype","next":null,"parent":"Eb","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"check audio clones","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"uv":{"opcode":"procedures_call","next":null,"parent":";","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"check audio clones","argumentids":"[]","warp":"true"}},"dL":{"opcode":"operator_multiply","next":null,"parent":"dK","inputs":{"NUM1":[3,"dM",[4,""]],"NUM2":[3,[12,"+globalVol.R","46oK=P-#sVvKHaV@Dfkc"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"V@":{"opcode":"event_whenbroadcastreceived","next":"V[","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["+turnoffaudio","^z1|H-hoS6S+QODIuSdP"]},"shadow":false,"topLevel":true,"x":686,"y":565},"V[":{"opcode":"sound_setvolumeto","next":null,"parent":"V@","inputs":{"VOLUME":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZ%":{"opcode":"event_whenbroadcastreceived","next":"a*r","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["exit emulator",";hlm4HQ+D)yZ$]6D9TXl"]},"shadow":false,"topLevel":true,"x":565,"y":-94},"a*r":{"opcode":"data_setvariableto","next":"bZ(","parent":"bZ%","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+is clone?","0O4|8);xAcMV@|2-Om/:"]},"shadow":false,"topLevel":false},"bZ(":{"opcode":"control_delete_this_clone","next":null,"parent":"a*r","inputs":{},"fields":{},"shadow":false,"topLevel":false}},"comments":{},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"3339a2953a3bf62bb80e54ff575dbced","md5ext":"3339a2953a3bf62bb80e54ff575dbced.svg","rotationCenterX":0,"rotationCenterY":0}],"sounds":[{"name":"P00","assetId":"7a5f50a3ca38f5497111eac1abef2a80","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"7a5f50a3ca38f5497111eac1abef2a80.wav"},{"name":"P10","assetId":"d252b0badc571b59fe8f99f5a07937df","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"d252b0badc571b59fe8f99f5a07937df.wav"},{"name":"P20","assetId":"ee7230d5b45d29710fe483d02c9784c5","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"ee7230d5b45d29710fe483d02c9784c5.wav"},{"name":"P30","assetId":"d78a1034f6e730083f876cc360ae675d","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"d78a1034f6e730083f876cc360ae675d.wav"},{"name":"P01","assetId":"7a5f50a3ca38f5497111eac1abef2a80","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"7a5f50a3ca38f5497111eac1abef2a80.wav"},{"name":"P11","assetId":"d252b0badc571b59fe8f99f5a07937df","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"d252b0badc571b59fe8f99f5a07937df.wav"},{"name":"P21","assetId":"ee7230d5b45d29710fe483d02c9784c5","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"ee7230d5b45d29710fe483d02c9784c5.wav"},{"name":"P31","assetId":"d78a1034f6e730083f876cc360ae675d","dataFormat":"wav","rate":48000,"sampleCount":384000,"md5ext":"d78a1034f6e730083f876cc360ae675d.wav"},{"name":"N00","assetId":"9e7157f1cf309e0a559272d1128bd650","dataFormat":"wav","rate":48000,"sampleCount":2880000,"md5ext":"9e7157f1cf309e0a559272d1128bd650.wav"},{"name":"N10","assetId":"de119070f7967660a9a7ae1e175c18d7","dataFormat":"wav","rate":48000,"sampleCount":2880000,"md5ext":"de119070f7967660a9a7ae1e175c18d7.wav"}],"volume":0,"layerOrder":23,"visible":true,"x":36,"y":28,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"},{"isStage":false,"name":" GB","variables":{")]#LvJ=|APrar9)?rYj}":["i",1024],"0+,D;]|@rr8TK9ys_aa8":["JIT.blocksizemax",256],"!7Po9_*W!#iS];em7]$r":["mmu.rombank","1"],":[3LIWWtxVuCUulM#[lh":["mmu.addr",51137],"g?mSsNCoU094~azf1Kw|":["mmu.vrambank","0"],"X):[=M.}b*15xJ-uP[dT":["mmu.wrambank","1"],"+F4tew{OQ9t*u:UEayCL":["mmu.srambank","0"],"AXL[T-I^honovPzU#(m=":["mmu.return","0"],"/S09*.9Jz9BpP4RS^0=5":["regs.PC",2846211],"=}I!6E[i(AsIA2.]#DCq":["regs.SP",65534],"A584l[L5GQMFFUH,c]J-":["JIT.cache",2845955],"?!3pJUlmn3jk$}udq^[s":["z1",0],"yE@/T6EV5@P.iHr9Me#)":["z2","0"],"{kf*mxp38zU|qJn*Z}mf":["z3","0"],"xO3+V,6v+^@INp?i#Jqt":["z4","0"],"Wq[VW}I%oU$|,q}CeN+@":["z5",80],";i-}X$@Y|?i8l[5|j2Ye":["z.HLreg",65535],"PdGlQ-*iS#U,!Q{W^=|U":["cpu.condition",1],"T2{Yzl11_xkw11Yf4s3m":["cpu.interruptSwitch","0"],"VX49Xu`},hz?8f0E/kd5":["z8",1],"x#m5WC6xePajnGn/?E=p":["z7",0],"[qKE*(?rjanqDG$G8@}b":["ppu.cachedcycles",164],"S!nfHnY(r2qq4s1O;CTn":["ppu.linecycles",80],"w.!q`NmG7MvoSZHTUh{6":["ppu.LineY",16],"R%W_a:%1i;[$!~/]6VCo":["ppu.cyclesincr",4],"nSL^k6xxL**59aM}a+G]":["cpu.speed","1"],"Ug#p2t3aVBGLx0sJe8da":["ppu.pixelX","0"],".D2L=#Tb4WDLFM.*fyky":["ppu.LCDstate","2"],"J2Vgi`9fi{f=C=v28Ymu":["ppu.statcond2",0],"esGkP)|*:Ao;yj5VE,@4":["ppu.statcond1",0],"79vji|y}}5{S*/J{~%e;":["z0",0],"v1RYSc29D5;g9w|WOVhZ":["ppu.windowcounter",0],"?@`6%*n_:ai9~7.}XHbt":["ppu.windowincr","0"],"=kz.QrNQtb(:Gy6i(sqP":["z10",0],"ltsWDl]QhF[q:;Hdaqe_":["z11",76],"GHy#R-.o1jTMkLkU@/xI":["z9",248],"5}F(~m#Fp)OHQKXV:,0j":["ppu.OAMdma#",160],"jJ3zo@6!=s7p/Ywe(3gh":["ppu.OAMdmastart",57088],"#6]}.c;IvQB#FlP?N7`b":["y1",152],"=|ycf[YN;_De1%F,uj@^":["y2",15],"[G+aYRFBsBQ@0)@VlZSs":["screenColor",0],"sqDTP/*RtaNn=5LUOT^F":["tim.DIV",45936],"!u~jcG^*$uH5V^jDA!S3":["x1",0],"OR*glQYx.J]o[~0Y^fJ%":["x2",0],",]v-T%bJ~R+f++sZkv7/":["xf","0"],"UF5:UF)p/5::_8Qn?wJH":["cpu.HALT","0"],"+Epu7Zk9jKe~]pb|YPFh":["LCDY *160",2400],":m^*=-k.c+0y=EF,uy?L":["cycles.frame",323],",m9d)mV}CqjB(/mdI+Ad":["z13",""],"T?ODoMa,{%ds6u(^ReiM":["z14",14],"V@7TC6e6AtIrZ@k3FpT+":["frameEvent","1"],"?8w-@IfeziV2F0~ghlM2":["y3",8],"j$5K!p8AZ+(P0pxJSbz.":["remainingPixels",0],"z+0J/(FO9+%4n5W`u3Mr":["w1",0],"M7vgX6A?=Z!~bof2q.Eo":["w2",0],"[sSs~UbJqe+0`o:1y5xf":["y0",248],"|vq^|Nw7_Em1t)+=ax#h":["cacheNext","0"],"JPG$FYxfb/]Hjw5bCKdL":["frameSkipFraction",0],"lfS[gpD+gL}rms2!4~{|":["frameSkipRender","1"],"Las(z%`v$cor_TO.+az|":["cart.GBCMode",0],"n=H43lZlH8T?0bDf`Qc8":["y4",128],"-pK9xq5)J@:ShYDLeDFI":["y5",1024],"XYGdd#/AN[r9Q-Z_(t6m":["z15",6195],"c-v[Hd1I/R,+ox=OFTdf":["z16","0"],"=Oz!GLSh4)O**:(*4Eo*":["z12",5133629],"%Efp?.T46DSgk%m_OQS#":["z6","0"],"gXx;[]@$RfVFnT]OP-H}":["JIT.cacheEnd",2846211],"|ciji-GBdT3e9V}@4R_%":["ppu.newByteFlag","1"],"X$WbMC_%FtEhkaO0w]r1":["ppu.temp","1"],"~fe4v58w!(Z,.oB?Luzl":["ppu.CGBDMAcount","0"],"^XNp?SBj+j9BODocp,Pi":["ppu.CGBDMAType","0"],"TuBS]0nKMHzchM-ho-%Z":["ppu.CGBDMAdest","0"],"*5zyv3=QQGvUrrQT)D0d":["ppu.CGBDMAsource","0"],"|CY5E9D|+Cu41W:#P`V^":["ppu.transferAmount",0],"72V,vNaxdBUH1$wNvmh~":["ppu.DMAflag","0"],"G-9paas{p]yITisCHH(.":["mmu.addrTemp",51137],")rGs=V-Kgx~+N7=l/%Av":[".MBC","0"],"h(Q|#r8}Je;G$v7;}D|r":["XX",134217.5],"[E$fJaU2C]]!*+L0vkou":["z_",8576.056818819445],"RldF^BG,ge1;xMY(LM1!":["frametime",0.005000067176297307],"h^{RWHXL@$`!pLh:D^r_":["fps1",0.01565476861918923],"`HZLQY,r.hBB${Q2dx.{":["APU.clock",1389],"o7EoB-}CoX@qHC;vxe7J":["z17",224],"dC+.?Qe{~~tRiUP;0*Ct":["z18",16],"DcDS)csOs5F_~-#_3p-R":["mbc.rambanks","0"],"`g_D=_8Gn8Z~!cW?tm8[":["mbc.rombanks","2"],"K]jvL}s+y4h|E-|ezXOX":["+sound sweep dir","0"],"me#*?L^7qHz#9J$tnFV(":["+sound sweep control","0"],"IMUkFA]JweK41~CZ5pa-":["+sound sweep clock cycle","0"]},"lists":{"GFliGOS)V5srwsIxK?:d":[".ROM",[]],"8s.yMYdv-,HD8*Lu!ZVs":[".VRAM",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],";Ux:|_c+-!{tS+~D)}_F":[".SRAM",[]],"Jl+tTKV)YMSt6U;,iZTq":[".WRAM",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"Yy28!2)g%)a,!N+-GbU;":[".OAM",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"[8yIR;9h6y(W8/O[lM%x":[".I/O",[15,"0","0","0",179,"0","0","0","0","0","0","0","0","0","0",1,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",145,2,"0","0",16,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"yYM^xNc|^5K.n|T3j@t3":[".HRAM",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"$rN++7k{S9((/fU5/ec:":["cpu.regs",[0,1,"0",216,255,255,"0",128]],"z:?Tj*BY|M[~/.xPbx$G":["z.bin",["00000000","00000001","00000010","00000011","00000100","00000101","00000110","00000111","00001000","00001001","00001010","00001011","00001100","00001101","00001110","00001111","00010000","00010001","00010010","00010011","00010100","00010101","00010110","00010111","00011000","00011001","00011010","00011011","00011100","00011101","00011110","00011111","00100000","00100001","00100010","00100011","00100100","00100101","00100110","00100111","00101000","00101001","00101010","00101011","00101100","00101101","00101110","00101111","00110000","00110001","00110010","00110011","00110100","00110101","00110110","00110111","00111000","00111001","00111010","00111011","00111100","00111101","00111110","00111111","01000000","01000001","01000010","01000011","01000100","01000101","01000110","01000111","01001000","01001001","01001010","01001011","01001100","01001101","01001110","01001111","01010000","01010001","01010010","01010011","01010100","01010101","01010110","01010111","01011000","01011001","01011010","01011011","01011100","01011101","01011110","01011111","01100000","01100001","01100010","01100011","01100100","01100101","01100110","01100111","01101000","01101001","01101010","01101011","01101100","01101101","01101110","01101111","01110000","01110001","01110010","01110011","01110100","01110101","01110110","01110111","01111000","01111001","01111010","01111011","01111100","01111101","01111110","01111111","10000000","10000001","10000010","10000011","10000100","10000101","10000110","10000111","10001000","10001001","10001010","10001011","10001100","10001101","10001110","10001111","10010000","10010001","10010010","10010011","10010100","10010101","10010110","10010111","10011000","10011001","10011010","10011011","10011100","10011101","10011110","10011111","10100000","10100001","10100010","10100011","10100100","10100101","10100110","10100111","10101000","10101001","10101010","10101011","10101100","10101101","10101110","10101111","10110000","10110001","10110010","10110011","10110100","10110101","10110110","10110111","10111000","10111001","10111010","10111011","10111100","10111101","10111110","10111111","11000000","11000001","11000010","11000011","11000100","11000101","11000110","11000111","11001000","11001001","11001010","11001011","11001100","11001101","11001110","11001111","11010000","11010001","11010010","11010011","11010100","11010101","11010110","11010111","11011000","11011001","11011010","11011011","11011100","11011101","11011110","11011111","11100000","11100001","11100010","11100011","11100100","11100101","11100110","11100111","11101000","11101001","11101010","11101011","11101100","11101101","11101110","11101111","11110000","11110001","11110010","11110011","11110100","11110101","11110110","11110111","11111000","11111001","11111010","11111011","11111100","11111101","11111110","11111111"]],"u]+rZIFXRrB)^_QPaU`W":["cpu.opblocks",[0,10,11,12,13,13,1,22,2,4,11,12,13,13,1,22,2,10,11,12,13,13,1,23,14,4,11,12,13,13,1,23,14,10,11,12,13,13,1,2,14,4,11,12,13,13,1,2,14,10,11,12,13,13,1,2,14,4,11,12,13,13,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,15,18,16,16,17,19,5,20,15,15,16,27,17,17,5,20,15,18,16,0,17,19,6,20,15,15,16,0,17,0,6,20,24,18,24,0,0,19,7,20,25,21,26,0,0,0,8,20,24,18,24,3,0,19,9,20,25,21,26,3,0,0,6,20]],"Q3|yW{aU7@dz|_`wAjQ8":["code parameters",["0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0,"0",0,0,0]],"2Cug3W,_=`]D+(4;6#Ng":["JIT.endblock",[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,0,1,1,0,1,1,0,1,0,1,0,0,1,1,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1]],"=UPLEXLt+sQha?gN(bE/":["cpu.op1",[0,0,0,0,0,1,1,0,0,0,1,1,0,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,0,1,1,0,1,0,0,0,0,1,1,2,1,0,1,1,0,1,1,3,1,0,0,0,0,1,1,4,1,0,1,1,0,1,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,0,1,0,1,0,0,0,1,0,1,7,1,0,1,0,1,0,1,0,1,0,0,0,1,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,1,0,0,0,2,0]],"Lt0wdY)J%D%!;#D7STRc":["cpu.op2",[0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,0,0,1,1,1,3,3,3,1,0,2,2,2,4,4,4,0,1,2,2,2,5,5,5,0,2,3,3,3,6,6,6,0,3,3,3,3,7,7,7,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,0,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,0,0,0,0,0,0,8,0,1,0,1,0,1,0,8,1,2,1,2,0,2,1,8,2,3,0,3,0,3,0,8,3,0,2,1,0,0,2,8,4,0,1,0,0,0,0,8,5,0,3,1,0,0,3,8,6,0,0,0,1,0,0,8,7]],"JfW/YPuk=+2r^T7Yy{Ex":["cpu.opbytes",[1,3,1,1,1,1,2,1,3,1,1,1,1,1,2,1,2,3,1,1,1,1,2,1,2,1,1,1,1,1,2,1,2,3,1,1,1,1,2,1,2,1,1,1,1,1,2,1,2,3,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,1,2,1,1,1,3,2,3,3,2,1,1,1,3,0,3,1,2,1,1,1,3,0,3,0,2,1,2,1,1,0,0,1,2,1,2,1,3,0,0,0,2,1,2,1,1,1,0,1,2,1,2,1,3,1,0,0,2,1]],"lR{+/-9q#,}JTn3tA!eu":["cpu.regF",[0,"1",0,0]],"g8`3hG5vhbTqGm2YagSG":["cpu.powersof2",["1",2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536]],"/U,dn3L:6^;B1j`YSedA":["s",[]],"!LF+B5^aU.s]aX+NtN@K":["ppu.LCDbuffer",["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"]],"9[#?NzlNMlp97}ee5Yq^":["ppu.spriteoverlay",[]],"ioy(uxm6RfkX3s-LMyG$":["ppu.spritebuffer",[]],"H{%?~x1nh6j`IJ}6}Kn5":["ppu.paletteconvertor",["0","0","0","0","0","0","0","0","0","0","0","0"]],"qdWEY7-|tKJ[%[=wv$:@":["ppu.DMGpalette",["0xc6d2a4",9279599,5133629,2105120]],"F7rUuKZp/*Qkk(*IfGDC":["ppu.GBCpalettesLUT",[]],",SgTxps/cX$9BObO4uik":["BRT",[0,128,64,192,32,160,96,224,16,144,80,208,48,176,112,240,8,136,72,200,40,168,104,232,24,152,88,216,56,184,120,248,4,132,68,196,36,164,100,228,20,148,84,212,52,180,116,244,12,140,76,204,44,172,108,236,28,156,92,220,60,188,124,252,2,130,66,194,34,162,98,226,18,146,82,210,50,178,114,242,10,138,74,202,42,170,106,234,26,154,90,218,58,186,122,250,6,134,70,198,38,166,102,230,22,150,86,214,54,182,118,246,14,142,78,206,46,174,110,238,30,158,94,222,62,190,126,254,1,129,65,193,33,161,97,225,17,145,81,209,49,177,113,241,9,137,73,201,41,169,105,233,25,153,89,217,57,185,121,249,5,133,69,197,37,165,101,229,21,149,85,213,53,181,117,245,13,141,77,205,45,173,109,237,29,157,93,221,61,189,125,253,3,131,67,195,35,163,99,227,19,147,83,211,51,179,115,243,11,139,75,203,43,171,107,235,27,155,91,219,59,187,123,251,7,135,71,199,39,167,103,231,23,151,87,215,55,183,119,247,15,143,79,207,47,175,111,239,31,159,95,223,63,191,127,255]],"hkYvD*`XPHHWy=I*?O!s":["ppu.PaletteRAM",[159,14,255,115,251,16,33,8,95,35,171,70,35,53,33,8,127,87,188,62,111,69,128,24,87,107,27,110,16,80,7,4,255,95,50,103,169,61,129,36,127,91,15,63,45,34,235,16,253,115,214,71,106,62,164,40,255,95,50,103,169,61,129,36,253,115,253,115,214,71,164,40,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4,223,115,223,115,27,62,0,4]],"=)3O,z?qwyfT(]bS.WCK":["ppu.objGBCpalette",[]],":Q8PfZnsd2Y}Q(-0bTUQ":["+sound envelope clock",["0","0","0","0"]],"Mnx_:!cjX+ZV2P1}V7AR":["+sound volume init",["0","0","0","0"]]},"broadcasts":{},"blocks":{"l(":{"opcode":"procedures_definition","next":"l)","parent":null,"inputs":{"custom_block":[1,"N#"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":1050},"N#":{"opcode":"procedures_prototype","next":null,"parent":"l(","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.reset","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"l)":{"opcode":"data_setvariableto","next":"l*","parent":"l(","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["JIT.blocksizemax","0+,D;]|@rr8TK9ys_aa8"]},"shadow":false,"topLevel":false},"l;":{"opcode":"procedures_definition","next":"l=","parent":null,"inputs":{"custom_block":[1,"N%"]},"fields":{},"shadow":false,"topLevel":true,"x":6518,"y":64},"N%":{"opcode":"procedures_prototype","next":null,"parent":"l;","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.import_rom","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"l=":{"opcode":"data_deletealloflist","next":"l?","parent":"l;","inputs":{},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"l?":{"opcode":"data_setvariableto","next":"eb","parent":"l=","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"eb":{"opcode":"control_while","next":null,"parent":"l?","inputs":{"CONDITION":[2,"l@"],"SUBSTACK":[2,"ec"]},"fields":{},"shadow":false,"topLevel":false},"l@":{"opcode":"operator_lt","next":null,"parent":"eb","inputs":{"OPERAND1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,""]],"OPERAND2":[3,"N(",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"N(":{"opcode":"operator_length","next":null,"parent":"l@","inputs":{"STRING":[3,[12,"input.ROMstr",",vG;q6F?{*W2%-~~m`t="],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ec":{"opcode":"data_addtolist","next":"N*","parent":"eb","inputs":{"ITEM":[3,"l[",[10,""]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"l[":{"opcode":"operator_add","next":null,"parent":"ec","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"l]",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"l]":{"opcode":"operator_join","next":null,"parent":"l[","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[3,"ed",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ed":{"opcode":"operator_join","next":null,"parent":"l]","inputs":{"STRING1":[3,"N+",[10,""]],"STRING2":[3,"l^",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"N+":{"opcode":"operator_letter_of","next":null,"parent":"ed","inputs":{"LETTER":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[6,"1"]],"STRING":[3,[12,"input.ROMstr",",vG;q6F?{*W2%-~~m`t="],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"l^":{"opcode":"operator_letter_of","next":null,"parent":"ed","inputs":{"LETTER":[3,"N,",[6,"1"]],"STRING":[3,[12,"input.ROMstr",",vG;q6F?{*W2%-~~m`t="],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"N,":{"opcode":"operator_add","next":null,"parent":"l^","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"N*":{"opcode":"data_changevariableby","next":null,"parent":"ec","inputs":{"VALUE":[1,[4,"2"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"l_":{"opcode":"procedures_definition","next":"lB","parent":null,"inputs":{"custom_block":[1,"l`"]},"fields":{},"shadow":false,"topLevel":true,"x":57359,"y":64},"l`":{"opcode":"procedures_prototype","next":null,"parent":"l_","inputs":{"[nX0I%M3g(6QrRa$/}.M":[1,"N-"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\",\"false\"]","warp":"true"}},"N-":{"opcode":"argument_reporter_string_number","next":null,"parent":"l`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"lB":{"opcode":"data_changevariableby","next":"a*","parent":"l_","inputs":{"VALUE":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"a*":{"opcode":"control_if_else","next":null,"parent":"lB","inputs":{"CONDITION":[2,"lC"],"SUBSTACK":[2,"c("],"SUBSTACK2":[2,"`"]},"fields":{},"shadow":false,"topLevel":false},"lC":{"opcode":"operator_lt","next":null,"parent":"a*","inputs":{"OPERAND1":[3,"N.",[10,""]],"OPERAND2":[1,[10,"0x8000"]]},"fields":{},"shadow":false,"topLevel":false},"N.":{"opcode":"argument_reporter_string_number","next":null,"parent":"lC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"c(":{"opcode":"control_if_else","next":null,"parent":"a*","inputs":{"CONDITION":[2,"GZ"],"SUBSTACK":[2,"G!"],"SUBSTACK2":[2,"G#"]},"fields":{},"shadow":false,"topLevel":false},"GZ":{"opcode":"operator_lt","next":null,"parent":"c(","inputs":{"OPERAND1":[3,"MS",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"MS":{"opcode":"argument_reporter_string_number","next":null,"parent":"GZ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"G!":{"opcode":"data_setvariableto","next":null,"parent":"c(","inputs":{"VALUE":[3,"G*",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"G*":{"opcode":"data_itemoflist","next":null,"parent":"G!","inputs":{"INDEX":[3,"G%",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"G%":{"opcode":"operator_add","next":null,"parent":"G*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"MT",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"MT":{"opcode":"argument_reporter_string_number","next":null,"parent":"G%","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"G#":{"opcode":"data_setvariableto","next":null,"parent":"c(","inputs":{"VALUE":[3,"G+",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"G+":{"opcode":"data_itemoflist","next":null,"parent":"G#","inputs":{"INDEX":[3,"G(",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"G(":{"opcode":"operator_add","next":null,"parent":"G+","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k%",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k%":{"opcode":"operator_add","next":null,"parent":"G(","inputs":{"NUM1":[3,"G)",[4,""]],"NUM2":[3,"MU",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G)":{"opcode":"operator_subtract","next":null,"parent":"k%","inputs":{"NUM1":[3,"MV",[4,""]],"NUM2":[1,[4,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"MV":{"opcode":"argument_reporter_string_number","next":null,"parent":"G)","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"MU":{"opcode":"operator_multiply","next":null,"parent":"k%","inputs":{"NUM1":[3,[12,"mmu.rombank","!7Po9_*W!#iS];em7]$r"],[4,""]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"`":{"opcode":"control_if_else","next":null,"parent":"a*","inputs":{"CONDITION":[2,"ly"],"SUBSTACK":[2,"_"],"SUBSTACK2":[2,"c#"]},"fields":{},"shadow":false,"topLevel":false},"ly":{"opcode":"operator_lt","next":null,"parent":"`","inputs":{"OPERAND1":[3,"N:",[10,""]],"OPERAND2":[1,[10,"0xC000"]]},"fields":{},"shadow":false,"topLevel":false},"N:":{"opcode":"argument_reporter_string_number","next":null,"parent":"ly","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"_":{"opcode":"control_if_else","next":null,"parent":"`","inputs":{"CONDITION":[2,"lv"],"SUBSTACK":[2,"lw"],"SUBSTACK2":[2,"lx"]},"fields":{},"shadow":false,"topLevel":false},"lv":{"opcode":"operator_lt","next":null,"parent":"_","inputs":{"OPERAND1":[3,"N;",[10,""]],"OPERAND2":[1,[10,"0xA000"]]},"fields":{},"shadow":false,"topLevel":false},"N;":{"opcode":"argument_reporter_string_number","next":null,"parent":"lv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"lw":{"opcode":"data_setvariableto","next":null,"parent":"_","inputs":{"VALUE":[3,"l{",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"l{":{"opcode":"data_itemoflist","next":null,"parent":"lw","inputs":{"INDEX":[3,"l|",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"l|":{"opcode":"operator_add","next":null,"parent":"l{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k(",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k(":{"opcode":"operator_add","next":null,"parent":"l|","inputs":{"NUM1":[3,"G,",[4,""]],"NUM2":[3,"MW",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G,":{"opcode":"operator_mod","next":null,"parent":"k(","inputs":{"NUM1":[3,"MX",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"MX":{"opcode":"argument_reporter_string_number","next":null,"parent":"G,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"MW":{"opcode":"operator_multiply","next":null,"parent":"k(","inputs":{"NUM1":[3,[12,"mmu.vrambank","g?mSsNCoU094~azf1Kw|"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"lx":{"opcode":"data_setvariableto","next":null,"parent":"_","inputs":{"VALUE":[3,"l}",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"l}":{"opcode":"data_itemoflist","next":null,"parent":"lx","inputs":{"INDEX":[3,"l~",[7,"1"]]},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"l~":{"opcode":"operator_add","next":null,"parent":"l}","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k)",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k)":{"opcode":"operator_add","next":null,"parent":"l~","inputs":{"NUM1":[3,"G-",[4,""]],"NUM2":[3,"MY",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G-":{"opcode":"operator_mod","next":null,"parent":"k)","inputs":{"NUM1":[3,"MZ",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"MZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"G-","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"MY":{"opcode":"operator_multiply","next":null,"parent":"k)","inputs":{"NUM1":[3,[12,"mmu.srambank","+F4tew{OQ9t*u:UEayCL"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"c#":{"opcode":"control_if_else","next":null,"parent":"`","inputs":{"CONDITION":[2,"lI"],"SUBSTACK":[2,"c)"],"SUBSTACK2":[2,"cv"]},"fields":{},"shadow":false,"topLevel":false},"lI":{"opcode":"operator_lt","next":null,"parent":"c#","inputs":{"OPERAND1":[3,"N=",[10,""]],"OPERAND2":[1,[10,"0xFE00"]]},"fields":{},"shadow":false,"topLevel":false},"N=":{"opcode":"argument_reporter_string_number","next":null,"parent":"lI","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"c)":{"opcode":"control_if_else","next":null,"parent":"c#","inputs":{"CONDITION":[2,"G/"],"SUBSTACK":[2,"G:"],"SUBSTACK2":[2,"ma"]},"fields":{},"shadow":false,"topLevel":false},"G/":{"opcode":"operator_lt","next":null,"parent":"c)","inputs":{"OPERAND1":[3,"G;",[10,""]],"OPERAND2":[1,[10,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"G;":{"opcode":"operator_mod","next":null,"parent":"G/","inputs":{"NUM1":[3,"M#",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"M#":{"opcode":"argument_reporter_string_number","next":null,"parent":"G;","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"G:":{"opcode":"data_setvariableto","next":null,"parent":"c)","inputs":{"VALUE":[3,"G^",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"G^":{"opcode":"data_itemoflist","next":null,"parent":"G:","inputs":{"INDEX":[3,"G?",[7,"1"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"G?":{"opcode":"operator_add","next":null,"parent":"G^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"G=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G=":{"opcode":"operator_mod","next":null,"parent":"G?","inputs":{"NUM1":[3,"M%",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"M%":{"opcode":"argument_reporter_string_number","next":null,"parent":"G=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ma":{"opcode":"data_setvariableto","next":null,"parent":"c)","inputs":{"VALUE":[3,"mb",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"mb":{"opcode":"data_itemoflist","next":null,"parent":"ma","inputs":{"INDEX":[3,"mc",[7,"1"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"mc":{"opcode":"operator_add","next":null,"parent":"mb","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k*":{"opcode":"operator_add","next":null,"parent":"mc","inputs":{"NUM1":[3,"G[",[4,""]],"NUM2":[3,"M(",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G[":{"opcode":"operator_mod","next":null,"parent":"k*","inputs":{"NUM1":[3,"M)",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"M)":{"opcode":"argument_reporter_string_number","next":null,"parent":"G[","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"M(":{"opcode":"operator_multiply","next":null,"parent":"k*","inputs":{"NUM1":[3,[12,"mmu.wrambank","X):[=M.}b*15xJ-uP[dT"],[4,""]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"cv":{"opcode":"control_if_else","next":null,"parent":"c#","inputs":{"CONDITION":[2,"lJ"],"SUBSTACK":[2,"lK"],"SUBSTACK2":[2,"ce"]},"fields":{},"shadow":false,"topLevel":false},"lJ":{"opcode":"operator_lt","next":null,"parent":"cv","inputs":{"OPERAND1":[3,"N?",[10,""]],"OPERAND2":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false},"N?":{"opcode":"argument_reporter_string_number","next":null,"parent":"lJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"lK":{"opcode":"data_setvariableto","next":null,"parent":"cv","inputs":{"VALUE":[3,"md",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"ce":{"opcode":"control_if_else","next":null,"parent":"cv","inputs":{"CONDITION":[2,"lL"],"SUBSTACK":[2,"lM"],"SUBSTACK2":[2,"lN"]},"fields":{},"shadow":false,"topLevel":false},"lL":{"opcode":"operator_lt","next":null,"parent":"ce","inputs":{"OPERAND1":[3,"N@",[10,""]],"OPERAND2":[1,[10,"0xFF80"]]},"fields":{},"shadow":false,"topLevel":false},"N@":{"opcode":"argument_reporter_string_number","next":null,"parent":"lL","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"lM":{"opcode":"procedures_call","next":"EP","parent":"ce","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"lN":{"opcode":"data_setvariableto","next":null,"parent":"ce","inputs":{"VALUE":[3,"mf",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"mf":{"opcode":"data_itemoflist","next":null,"parent":"lN","inputs":{"INDEX":[3,"mg",[7,"1"]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"mg":{"opcode":"operator_add","next":null,"parent":"mf","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"G`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G`":{"opcode":"operator_mod","next":null,"parent":"mg","inputs":{"NUM1":[3,"M+",[4,""]],"NUM2":[1,[4,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"M+":{"opcode":"argument_reporter_string_number","next":null,"parent":"G`","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"mh":{"opcode":"procedures_definition","next":"lo","parent":null,"inputs":{"custom_block":[1,"ee"]},"fields":{},"shadow":false,"topLevel":true,"x":49937,"y":64},"ee":{"opcode":"procedures_prototype","next":null,"parent":"mh","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[1,"N["],"C$TL9;+E/NLYhdI%ptis":[1,"N]"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","argumentnames":"[\"addr\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"N[":{"opcode":"argument_reporter_string_number","next":null,"parent":"ee","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"N]":{"opcode":"argument_reporter_string_number","next":null,"parent":"ee","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"lo":{"opcode":"data_changevariableby","next":"+","parent":"mh","inputs":{"VALUE":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"+":{"opcode":"control_if_else","next":null,"parent":"lo","inputs":{"CONDITION":[2,"lp"],"SUBSTACK":[2,"d!"],"SUBSTACK2":[2,"/"]},"fields":{},"shadow":false,"topLevel":false},"lp":{"opcode":"operator_lt","next":null,"parent":"+","inputs":{"OPERAND1":[3,"N^",[10,""]],"OPERAND2":[1,[10,"0x8000"]]},"fields":{},"shadow":false,"topLevel":false},"N^":{"opcode":"argument_reporter_string_number","next":null,"parent":"lp","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"d!":{"opcode":"procedures_call","next":null,"parent":"+","inputs":{"7/.|GCMKnckaak$ZySZ@":[3,"I]",[10,""]],"|/#evWHRr9BJyKF5:/#%":[3,"I^",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".MBC HANDLER %s %s","argumentids":"[\"7/.|GCMKnckaak$ZySZ@\",\"|/#evWHRr9BJyKF5:/#%\"]","warp":"true"}},"I]":{"opcode":"argument_reporter_string_number","next":null,"parent":"d!","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"I^":{"opcode":"argument_reporter_string_number","next":null,"parent":"d!","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"/":{"opcode":"control_if_else","next":null,"parent":"+","inputs":{"CONDITION":[2,"ln"],"SUBSTACK":[2,":"],"SUBSTACK2":[2,"["]},"fields":{},"shadow":false,"topLevel":false},"ln":{"opcode":"operator_lt","next":null,"parent":"/","inputs":{"OPERAND1":[3,"N_",[10,""]],"OPERAND2":[1,[10,"0xC000"]]},"fields":{},"shadow":false,"topLevel":false},"N_":{"opcode":"argument_reporter_string_number","next":null,"parent":"ln","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},":":{"opcode":"control_if_else","next":null,"parent":"/","inputs":{"CONDITION":[2,"lq"],"SUBSTACK":[2,"d*"],"SUBSTACK2":[2,"d["]},"fields":{},"shadow":false,"topLevel":false},"lq":{"opcode":"operator_lt","next":null,"parent":":","inputs":{"OPERAND1":[3,"N`",[10,""]],"OPERAND2":[1,[10,"0xA000"]]},"fields":{},"shadow":false,"topLevel":false},"N`":{"opcode":"argument_reporter_string_number","next":null,"parent":"lq","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"d*":{"opcode":"data_replaceitemoflist","next":null,"parent":":","inputs":{"INDEX":[3,"mi",[7,"1"]],"ITEM":[3,"N{",[10,""]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"mi":{"opcode":"operator_add","next":null,"parent":"d*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"kX",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kX":{"opcode":"operator_add","next":null,"parent":"mi","inputs":{"NUM1":[3,"GE",[4,""]],"NUM2":[3,"Mx",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GE":{"opcode":"operator_mod","next":null,"parent":"kX","inputs":{"NUM1":[3,"Mz",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"Mz":{"opcode":"argument_reporter_string_number","next":null,"parent":"GE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Mx":{"opcode":"operator_multiply","next":null,"parent":"kX","inputs":{"NUM1":[3,[12,"mmu.vrambank","g?mSsNCoU094~azf1Kw|"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"N{":{"opcode":"argument_reporter_string_number","next":null,"parent":"d*","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"d[":{"opcode":"data_replaceitemoflist","next":null,"parent":":","inputs":{"INDEX":[3,"mj",[7,"1"]],"ITEM":[3,"N|",[10,""]]},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"mj":{"opcode":"operator_add","next":null,"parent":"d[","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"kY",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"kY":{"opcode":"operator_add","next":null,"parent":"mj","inputs":{"NUM1":[3,"GF",[4,""]],"NUM2":[3,"MA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GF":{"opcode":"operator_mod","next":null,"parent":"kY","inputs":{"NUM1":[3,"%g",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"%g":{"opcode":"argument_reporter_string_number","next":null,"parent":"GF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"MA":{"opcode":"operator_multiply","next":null,"parent":"kY","inputs":{"NUM1":[3,[12,"mmu.srambank","+F4tew{OQ9t*u:UEayCL"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"N|":{"opcode":"argument_reporter_string_number","next":null,"parent":"d[","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"[":{"opcode":"control_if_else","next":null,"parent":"/","inputs":{"CONDITION":[2,"lr"],"SUBSTACK":[2,"c%"],"SUBSTACK2":[2,"-"]},"fields":{},"shadow":false,"topLevel":false},"lr":{"opcode":"operator_lt","next":null,"parent":"[","inputs":{"OPERAND1":[3,"Kg",[10,""]],"OPERAND2":[1,[10,"0xFE00"]]},"fields":{},"shadow":false,"topLevel":false},"Kg":{"opcode":"argument_reporter_string_number","next":null,"parent":"lr","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"c%":{"opcode":"control_if_else","next":null,"parent":"[","inputs":{"CONDITION":[2,"GG"],"SUBSTACK":[2,"kZ"],"SUBSTACK2":[2,"k!"]},"fields":{},"shadow":false,"topLevel":false},"GG":{"opcode":"operator_lt","next":null,"parent":"c%","inputs":{"OPERAND1":[3,"GH",[10,""]],"OPERAND2":[1,[10,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"GH":{"opcode":"operator_mod","next":null,"parent":"GG","inputs":{"NUM1":[3,"MC",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"MC":{"opcode":"argument_reporter_string_number","next":null,"parent":"GH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"c%","inputs":{"INDEX":[3,"GU",[7,"1"]],"ITEM":[3,"MM",[10,""]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"GU":{"opcode":"operator_add","next":null,"parent":"kZ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"GV",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GV":{"opcode":"operator_mod","next":null,"parent":"GU","inputs":{"NUM1":[3,"MN",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"MN":{"opcode":"argument_reporter_string_number","next":null,"parent":"GV","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"MM":{"opcode":"argument_reporter_string_number","next":null,"parent":"kZ","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"k!":{"opcode":"data_replaceitemoflist","next":null,"parent":"c%","inputs":{"INDEX":[3,"GI",[7,"1"]],"ITEM":[3,"MH",[10,""]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"GI":{"opcode":"operator_add","next":null,"parent":"k!","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k#":{"opcode":"operator_add","next":null,"parent":"GI","inputs":{"NUM1":[3,"GJ",[4,""]],"NUM2":[3,"ME",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GJ":{"opcode":"operator_mod","next":null,"parent":"k#","inputs":{"NUM1":[3,"MF",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"MF":{"opcode":"argument_reporter_string_number","next":null,"parent":"GJ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"ME":{"opcode":"operator_multiply","next":null,"parent":"k#","inputs":{"NUM1":[3,[12,"mmu.wrambank","X):[=M.}b*15xJ-uP[dT"],[4,""]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"MH":{"opcode":"argument_reporter_string_number","next":null,"parent":"k!","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"-":{"opcode":"control_if_else","next":null,"parent":"[","inputs":{"CONDITION":[2,"ls"],"SUBSTACK":[2,"d]"],"SUBSTACK2":[2,"^"]},"fields":{},"shadow":false,"topLevel":false},"ls":{"opcode":"operator_lt","next":null,"parent":"-","inputs":{"OPERAND1":[3,"Kh",[10,""]],"OPERAND2":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false},"Kh":{"opcode":"argument_reporter_string_number","next":null,"parent":"ls","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"d]":{"opcode":"data_replaceitemoflist","next":null,"parent":"-","inputs":{"INDEX":[3,"E%",[7,"1"]],"ITEM":[3,"Ki",[10,""]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"E%":{"opcode":"operator_add","next":null,"parent":"d]","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"GW",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"GW":{"opcode":"operator_mod","next":null,"parent":"E%","inputs":{"NUM1":[3,"MO",[4,""]],"NUM2":[1,[4,"0x100"]]},"fields":{},"shadow":false,"topLevel":false},"MO":{"opcode":"argument_reporter_string_number","next":null,"parent":"GW","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Ki":{"opcode":"argument_reporter_string_number","next":null,"parent":"d]","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"^":{"opcode":"control_if_else","next":null,"parent":"-","inputs":{"CONDITION":[2,"lt"],"SUBSTACK":[2,"lu"],"SUBSTACK2":[2,"d^"]},"fields":{},"shadow":false,"topLevel":false},"lt":{"opcode":"operator_lt","next":null,"parent":"^","inputs":{"OPERAND1":[3,"Kj",[10,""]],"OPERAND2":[1,[10,"0xFF80"]]},"fields":{},"shadow":false,"topLevel":false},"Kj":{"opcode":"argument_reporter_string_number","next":null,"parent":"lt","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"lu":{"opcode":"procedures_call","next":"c`","parent":"^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"c`":{"opcode":"data_replaceitemoflist","next":"g","parent":"lu","inputs":{"INDEX":[3,"E(",[7,"1"]],"ITEM":[3,"Kk",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"E(":{"opcode":"operator_add","next":null,"parent":"c`","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"GX",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"GX":{"opcode":"operator_mod","next":null,"parent":"E(","inputs":{"NUM1":[3,"MQ",[4,""]],"NUM2":[1,[4,"0x100"]]},"fields":{},"shadow":false,"topLevel":false},"MQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"GX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Kk":{"opcode":"argument_reporter_string_number","next":null,"parent":"c`","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"g":{"opcode":"control_if_else","next":"a%","parent":"c`","inputs":{"CONDITION":[2,"E)"],"SUBSTACK":[2,"j_"],"SUBSTACK2":[2,"a("]},"fields":{},"shadow":false,"topLevel":false},"E)":{"opcode":"operator_equals","next":null,"parent":"g","inputs":{"OPERAND1":[3,"Kl",[10,""]],"OPERAND2":[1,[10,"0xFF46"]]},"fields":{},"shadow":false,"topLevel":false},"Kl":{"opcode":"argument_reporter_string_number","next":null,"parent":"E)","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j_":{"opcode":"data_setvariableto","next":"Km","parent":"g","inputs":{"VALUE":[3,"E*",[10,"0"]]},"fields":{"VARIABLE":["ppu.OAMdmastart","jJ3zo@6!=s7p/Ywe(3gh"]},"shadow":false,"topLevel":false},"E*":{"opcode":"operator_multiply","next":null,"parent":"j_","inputs":{"NUM1":[3,"Kn",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Kn":{"opcode":"argument_reporter_string_number","next":null,"parent":"E*","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Km":{"opcode":"data_setvariableto","next":null,"parent":"j_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"]},"shadow":false,"topLevel":false},"a(":{"opcode":"control_if_else","next":null,"parent":"g","inputs":{"CONDITION":[2,"j`"],"SUBSTACK":[2,"j{"],"SUBSTACK2":[2,"j|"]},"fields":{},"shadow":false,"topLevel":false},"j`":{"opcode":"operator_and","next":null,"parent":"a(","inputs":{"OPERAND1":[2,"E+"],"OPERAND2":[2,"E,"]},"fields":{},"shadow":false,"topLevel":false},"E+":{"opcode":"operator_gt","next":null,"parent":"j`","inputs":{"OPERAND1":[3,"Ko",[10,""]],"OPERAND2":[1,[10,"0xFF46"]]},"fields":{},"shadow":false,"topLevel":false},"Ko":{"opcode":"argument_reporter_string_number","next":null,"parent":"E+","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"E,":{"opcode":"operator_lt","next":null,"parent":"j`","inputs":{"OPERAND1":[3,"Kp",[10,""]],"OPERAND2":[1,[10,"0xFF4A"]]},"fields":{},"shadow":false,"topLevel":false},"Kp":{"opcode":"argument_reporter_string_number","next":null,"parent":"E,","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j{":{"opcode":"control_if","next":null,"parent":"a(","inputs":{"CONDITION":[2,"E-"],"SUBSTACK":[2,"j}"]},"fields":{},"shadow":false,"topLevel":false},"E-":{"opcode":"operator_not","next":null,"parent":"j{","inputs":{"OPERAND":[2,"KB"]},"fields":{},"shadow":false,"topLevel":false},"KB":{"opcode":"operator_equals","next":null,"parent":"E-","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"j}":{"opcode":"procedures_call","next":null,"parent":"j{","inputs":{";jzV9I(?aQ?(2XfgYy9@":[3,"E.",[10,""]],"OO0,RYQJZQZ%3?/2j/.2":[3,"KC",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.convertDMGpalette %s %s","argumentids":"[\";jzV9I(?aQ?(2XfgYy9@\",\"OO0,RYQJZQZ%3?/2j/.2\"]","warp":"true"}},"E.":{"opcode":"operator_subtract","next":null,"parent":"j}","inputs":{"NUM1":[3,"KD",[4,""]],"NUM2":[1,[4,"0xFF47"]]},"fields":{},"shadow":false,"topLevel":false},"KD":{"opcode":"argument_reporter_string_number","next":null,"parent":"E.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"KC":{"opcode":"argument_reporter_string_number","next":null,"parent":"j}","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"j|":{"opcode":"control_if","next":null,"parent":"a(","inputs":{"CONDITION":[2,"E/"],"SUBSTACK":[2,"KE"]},"fields":{},"shadow":false,"topLevel":false},"E/":{"opcode":"operator_equals","next":null,"parent":"j|","inputs":{"OPERAND1":[3,"KF",[10,""]],"OPERAND2":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false},"KF":{"opcode":"argument_reporter_string_number","next":null,"parent":"E/","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"KE":{"opcode":"procedures_call","next":null,"parent":"j|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulator.joyPadLogic","argumentids":"[]","warp":"true"}},"a%":{"opcode":"control_if","next":"j~","parent":"g","inputs":{"CONDITION":[2,"ka"],"SUBSTACK":[2,"cB"]},"fields":{},"shadow":false,"topLevel":false},"ka":{"opcode":"operator_and","next":null,"parent":"a%","inputs":{"OPERAND1":[2,"E:"],"OPERAND2":[2,"E;"]},"fields":{},"shadow":false,"topLevel":false},"E:":{"opcode":"operator_not","next":null,"parent":"ka","inputs":{"OPERAND":[2,"E="]},"fields":{},"shadow":false,"topLevel":false},"E=":{"opcode":"operator_lt","next":null,"parent":"E:","inputs":{"OPERAND1":[3,"KG",[10,""]],"OPERAND2":[1,[10,"0xFF10"]]},"fields":{},"shadow":false,"topLevel":false},"KG":{"opcode":"argument_reporter_string_number","next":null,"parent":"E=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"E;":{"opcode":"operator_lt","next":null,"parent":"ka","inputs":{"OPERAND1":[3,"KH",[10,""]],"OPERAND2":[1,[10,"0xFF30"]]},"fields":{},"shadow":false,"topLevel":false},"KH":{"opcode":"argument_reporter_string_number","next":null,"parent":"E;","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cB":{"opcode":"procedures_call","next":"kb","parent":"a%","inputs":{"wSS}t5HF#*:AbpU{)+ts":[3,"KI",[10,""]],"nlwnU%1|C,{gCWEot-KT":[3,"KJ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".APU write handler %s %s","argumentids":"[\"wSS}t5HF#*:AbpU{)+ts\",\"nlwnU%1|C,{gCWEot-KT\"]","warp":"true"}},"KI":{"opcode":"argument_reporter_string_number","next":null,"parent":"cB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"KJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"cB","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"kb":{"opcode":"data_replaceitemoflist","next":null,"parent":"cB","inputs":{"INDEX":[1,[7,"39"]],"ITEM":[3,"kQ",[10,"128"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false,"comment":"Mb"},"j~":{"opcode":"control_if","next":null,"parent":"a%","inputs":{"CONDITION":[2,"KK"],"SUBSTACK":[2,"="]},"fields":{},"shadow":false,"topLevel":false},"KK":{"opcode":"operator_equals","next":null,"parent":"j~","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"=":{"opcode":"control_if","next":"?","parent":"j~","inputs":{"CONDITION":[2,"E?"],"SUBSTACK":[2,"kc"]},"fields":{},"shadow":false,"topLevel":false},"E?":{"opcode":"operator_equals","next":null,"parent":"=","inputs":{"OPERAND1":[3,"KL",[10,""]],"OPERAND2":[1,[10,"0xFF4F"]]},"fields":{},"shadow":false,"topLevel":false},"KL":{"opcode":"argument_reporter_string_number","next":null,"parent":"E?","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kc":{"opcode":"data_setvariableto","next":"KM","parent":"=","inputs":{"VALUE":[3,"E@",[10,"0"]]},"fields":{"VARIABLE":["mmu.vrambank","g?mSsNCoU094~azf1Kw|"]},"shadow":false,"topLevel":false},"E@":{"opcode":"operator_mod","next":null,"parent":"kc","inputs":{"NUM1":[3,"KN",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"KN":{"opcode":"argument_reporter_string_number","next":null,"parent":"E@","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"KM":{"opcode":"control_stop","next":null,"parent":"kc","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"?":{"opcode":"control_if","next":"@","parent":"=","inputs":{"CONDITION":[2,"E["],"SUBSTACK":[2,"kd"]},"fields":{},"shadow":false,"topLevel":false},"E[":{"opcode":"operator_equals","next":null,"parent":"?","inputs":{"OPERAND1":[3,"KO",[10,""]],"OPERAND2":[1,[10,"0xFF70"]]},"fields":{},"shadow":false,"topLevel":false},"KO":{"opcode":"argument_reporter_string_number","next":null,"parent":"E[","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kd":{"opcode":"data_setvariableto","next":"Zb","parent":"?","inputs":{"VALUE":[3,"E]",[10,"0"]]},"fields":{"VARIABLE":["mmu.wrambank","X):[=M.}b*15xJ-uP[dT"]},"shadow":false,"topLevel":false},"E]":{"opcode":"operator_mod","next":null,"parent":"kd","inputs":{"NUM1":[3,"KQ",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"KQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"E]","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Zb":{"opcode":"control_if","next":"KP","parent":"kd","inputs":{"CONDITION":[2,"bZ)"],"SUBSTACK":[2,"bZ*"]},"fields":{},"shadow":false,"topLevel":false},"bZ)":{"opcode":"operator_equals","next":null,"parent":"Zb","inputs":{"OPERAND1":[3,[12,"mmu.wrambank","X):[=M.}b*15xJ-uP[dT"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"bZ*":{"opcode":"data_setvariableto","next":null,"parent":"Zb","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["mmu.wrambank","X):[=M.}b*15xJ-uP[dT"]},"shadow":false,"topLevel":false},"KP":{"opcode":"control_stop","next":null,"parent":"Zb","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"@":{"opcode":"control_if","next":"ke","parent":"?","inputs":{"CONDITION":[2,"kf"],"SUBSTACK":[2,"kg"]},"fields":{},"shadow":false,"topLevel":false},"kf":{"opcode":"operator_or","next":null,"parent":"@","inputs":{"OPERAND1":[2,"E^"],"OPERAND2":[2,"E_"]},"fields":{},"shadow":false,"topLevel":false},"E^":{"opcode":"operator_equals","next":null,"parent":"kf","inputs":{"OPERAND1":[3,"KR",[10,""]],"OPERAND2":[1,[10,"0xFF69"]]},"fields":{},"shadow":false,"topLevel":false},"KR":{"opcode":"argument_reporter_string_number","next":null,"parent":"E^","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"E_":{"opcode":"operator_equals","next":null,"parent":"kf","inputs":{"OPERAND1":[3,"KS",[10,""]],"OPERAND2":[1,[10,"0xFF6B"]]},"fields":{},"shadow":false,"topLevel":false},"KS":{"opcode":"argument_reporter_string_number","next":null,"parent":"E_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kg":{"opcode":"data_setvariableto","next":",","parent":"@","inputs":{"VALUE":[3,"E`",[10,"0"]]},"fields":{"VARIABLE":["y4","n=H43lZlH8T?0bDf`Qc8"]},"shadow":false,"topLevel":false},"E`":{"opcode":"data_itemoflist","next":null,"parent":"kg","inputs":{"INDEX":[3,"E{",[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"E{":{"opcode":"operator_add","next":null,"parent":"E`","inputs":{"NUM1":[3,"E|",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"E|":{"opcode":"operator_subtract","next":null,"parent":"E{","inputs":{"NUM1":[3,"KT",[4,"0xFF69"]],"NUM2":[1,[4,"0xFF01"]]},"fields":{},"shadow":false,"topLevel":false},"KT":{"opcode":"argument_reporter_string_number","next":null,"parent":"E|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},",":{"opcode":"procedures_call","next":"kh","parent":"kg","inputs":{"BxrUag}.YGKPL8^a.{(#":[3,"ki",[10,""]],"K3VRvq9(_}`a$`/@G`9y":[3,"KU",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.convertCGBpalette %s , %s","argumentids":"[\"BxrUag}.YGKPL8^a.{(#\",\"K3VRvq9(_}`a$`/@G`9y\"]","warp":"true"}},"KU":{"opcode":"argument_reporter_string_number","next":null,"parent":",","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"kh":{"opcode":"data_setvariableto","next":"{","parent":",","inputs":{"VALUE":[3,"kj",[10,"0"]]},"fields":{"VARIABLE":["y4","n=H43lZlH8T?0bDf`Qc8"]},"shadow":false,"topLevel":false},"kj":{"opcode":"operator_add","next":null,"parent":"kh","inputs":{"NUM1":[3,"Fa",[4,""]],"NUM2":[3,"Fb",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fa":{"opcode":"operator_mod","next":null,"parent":"kj","inputs":{"NUM1":[3,"Fc",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Fc":{"opcode":"operator_add","next":null,"parent":"Fa","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[3,"Fd",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fd":{"opcode":"operator_mathop","next":null,"parent":"Fc","inputs":{"NUM":[3,"KX",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"KX":{"opcode":"operator_divide","next":null,"parent":"Fd","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Fb":{"opcode":"operator_subtract","next":null,"parent":"kj","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[3,"KY",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"KY":{"opcode":"operator_mod","next":null,"parent":"Fb","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"{":{"opcode":"data_replaceitemoflist","next":"KZ","parent":"kh","inputs":{"INDEX":[3,"Fe",[7,"1"]],"ITEM":[3,"K!",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Fe":{"opcode":"operator_add","next":null,"parent":"{","inputs":{"NUM1":[3,"Ff",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ff":{"opcode":"operator_subtract","next":null,"parent":"Fe","inputs":{"NUM1":[3,"K#",[4,"0xFF69"]],"NUM2":[1,[4,"0xFF01"]]},"fields":{},"shadow":false,"topLevel":false},"K#":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ff","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"K!":{"opcode":"operator_mod","next":null,"parent":"{","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"KZ":{"opcode":"control_stop","next":null,"parent":"{","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ke":{"opcode":"control_if","next":null,"parent":"@","inputs":{"CONDITION":[2,"Fg"],"SUBSTACK":[2,"kk"]},"fields":{},"shadow":false,"topLevel":false},"Fg":{"opcode":"operator_equals","next":null,"parent":"ke","inputs":{"OPERAND1":[3,"K%",[10,""]],"OPERAND2":[1,[10,"0xFF55"]]},"fields":{},"shadow":false,"topLevel":false},"K%":{"opcode":"argument_reporter_string_number","next":null,"parent":"Fg","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kk":{"opcode":"procedures_call","next":"K(","parent":"ke","inputs":{"KWYXu/0,nFG2S7u$VvsU":[3,"K)",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.CGBDMAinit %s","argumentids":"[\"KWYXu/0,nFG2S7u$VvsU\"]","warp":"true"}},"K)":{"opcode":"argument_reporter_string_number","next":null,"parent":"kk","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"K(":{"opcode":"control_stop","next":null,"parent":"kk","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"d^":{"opcode":"data_replaceitemoflist","next":null,"parent":"^","inputs":{"INDEX":[3,"Fh",[7,"1"]],"ITEM":[3,"K*",[10,""]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"Fh":{"opcode":"operator_add","next":null,"parent":"d^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"GY",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"GY":{"opcode":"operator_mod","next":null,"parent":"Fh","inputs":{"NUM1":[3,"MR",[4,""]],"NUM2":[1,[4,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"MR":{"opcode":"argument_reporter_string_number","next":null,"parent":"GY","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"K*":{"opcode":"argument_reporter_string_number","next":null,"parent":"d^","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"mk":{"opcode":"pen_clear","next":"mu","parent":"bZ+","inputs":{},"fields":{},"shadow":false,"topLevel":false},"mu":{"opcode":"event_broadcastandwait","next":"a*s","parent":"mk","inputs":{"BROADCAST_INPUT":[1,[11,"reset emulator","#azR?e|zZPviPwY:dM%T"]]},"fields":{},"shadow":false,"topLevel":false},"mt":{"opcode":"control_forever","next":null,"parent":"a*s","inputs":{"SUBSTACK":[2,"mv"]},"fields":{},"shadow":false,"topLevel":false},"mv":{"opcode":"procedures_call","next":"u%","parent":"mt","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mainLoop","argumentids":"[]","warp":"false"}},"u%":{"opcode":"control_wait","next":null,"parent":"mv","inputs":{"DURATION":[1,[5,"0"]]},"fields":{},"shadow":false,"topLevel":false},"mw":{"opcode":"procedures_definition","next":"mx","parent":null,"inputs":{"custom_block":[1,"N~"]},"fields":{},"shadow":false,"topLevel":true,"x":43009,"y":64},"N~":{"opcode":"procedures_prototype","next":null,"parent":"mw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.extra","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"mx":{"opcode":"data_setvariableto","next":"my","parent":"mw","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"my":{"opcode":"data_setvariableto","next":"mz","parent":"mx","inputs":{"VALUE":[1,[10,"1311112131111121231111212111112123111121211111212311112121111121111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111133312111323321113031211130302121100121213000212111012121310021"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"mz":{"opcode":"data_deletealloflist","next":"eh","parent":"my","inputs":{},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"eh":{"opcode":"control_repeat","next":"mA","parent":"mz","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"mB"]},"fields":{},"shadow":false,"topLevel":false},"mB":{"opcode":"data_changevariableby","next":"mC","parent":"eh","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"mC":{"opcode":"data_addtolist","next":null,"parent":"mB","inputs":{"ITEM":[3,"mD",[10,""]]},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"mD":{"opcode":"operator_add","next":null,"parent":"mC","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"Oa",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Oa":{"opcode":"operator_letter_of","next":null,"parent":"mD","inputs":{"LETTER":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[6,"1"]],"STRING":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"mA":{"opcode":"data_deletealloflist","next":"ei","parent":"eh","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"ei":{"opcode":"control_repeat","next":"mE","parent":"mA","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"mF"]},"fields":{},"shadow":false,"topLevel":false},"mF":{"opcode":"data_addtolist","next":null,"parent":"ei","inputs":{"ITEM":[3,"mG",[10,"thing"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"mG":{"opcode":"operator_letter_of","next":null,"parent":"mF","inputs":{"LETTER":[3,"cV",[6,"1"]],"STRING":[1,[10,"ABCDEFGHIJKLMNOPQRSTUVWXYZ1"]]},"fields":{},"shadow":false,"topLevel":false},"cV":{"opcode":"operator_add","next":null,"parent":"mG","inputs":{"NUM1":[3,"Ob",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ob":{"opcode":"data_lengthoflist","next":null,"parent":"cV","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"mE":{"opcode":"data_deletealloflist","next":"ek","parent":"ei","inputs":{},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"ek":{"opcode":"control_repeat","next":"mH","parent":"mE","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"mI"]},"fields":{},"shadow":false,"topLevel":false},"mI":{"opcode":"data_addtolist","next":null,"parent":"ek","inputs":{"ITEM":[3,"mJ",[10,""]]},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"mJ":{"opcode":"operator_add","next":null,"parent":"mI","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"mK",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"mK":{"opcode":"data_itemnumoflist","next":null,"parent":"mJ","inputs":{"ITEM":[3,"mL",[10,""]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"mL":{"opcode":"operator_letter_of","next":null,"parent":"mK","inputs":{"LETTER":[3,"mM",[6,"1"]],"STRING":[1,[10,"-JKLMMAVBDKLMMAVBJKLMMAWNDKLMMAWNJKLMMABNDKLMMABNJKLMMABNDKLMMABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFGGGGGGGGHHHHHHHHIIIIIIIIFFFFFFFFORPPQSETOOP1QQETORP-QSFTOOP-Q-FTXRX--SGTYUZ---HTXRXC-SITYUZC--FT"]]},"fields":{},"shadow":false,"topLevel":false},"mM":{"opcode":"operator_add","next":null,"parent":"mL","inputs":{"NUM1":[3,"Oc",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Oc":{"opcode":"data_lengthoflist","next":null,"parent":"mM","inputs":{},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"mH":{"opcode":"data_deletealloflist","next":"mN","parent":"ek","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"mN":{"opcode":"data_deletealloflist","next":"mO","parent":"mH","inputs":{},"fields":{"LIST":["JIT.endblock","2Cug3W,_=`]D+(4;6#Ng"]},"shadow":false,"topLevel":false},"mO":{"opcode":"data_setvariableto","next":"el","parent":"mN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"el":{"opcode":"control_repeat","next":"mP","parent":"mO","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"em"]},"fields":{},"shadow":false,"topLevel":false},"em":{"opcode":"data_setvariableto","next":"eq","parent":"el","inputs":{"VALUE":[3,"mQ",[10,"0"]]},"fields":{"VARIABLE":["z5","Wq[VW}I%oU$|,q}CeN+@"]},"shadow":false,"topLevel":false},"mQ":{"opcode":"data_itemoflist","next":null,"parent":"em","inputs":{"INDEX":[3,"Od",[7,"1"]]},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"Od":{"opcode":"operator_add","next":null,"parent":"mQ","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eq":{"opcode":"data_setvariableto","next":"mR","parent":"em","inputs":{"VALUE":[3,"mS",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"mS":{"opcode":"operator_add","next":null,"parent":"eq","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"er",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"er":{"opcode":"operator_or","next":null,"parent":"mS","inputs":{"OPERAND1":[2,"es"],"OPERAND2":[2,"et"]},"fields":{},"shadow":false,"topLevel":false},"es":{"opcode":"operator_and","next":null,"parent":"er","inputs":{"OPERAND1":[2,"Oe"],"OPERAND2":[2,"Of"]},"fields":{},"shadow":false,"topLevel":false},"Oe":{"opcode":"operator_gt","next":null,"parent":"es","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"Of":{"opcode":"operator_lt","next":null,"parent":"es","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"et":{"opcode":"operator_or","next":null,"parent":"er","inputs":{"OPERAND1":[2,"Og"],"OPERAND2":[2,"eu"]},"fields":{},"shadow":false,"topLevel":false},"Og":{"opcode":"operator_equals","next":null,"parent":"et","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"eu":{"opcode":"operator_or","next":null,"parent":"et","inputs":{"OPERAND1":[2,"Oh"],"OPERAND2":[2,"ev"]},"fields":{},"shadow":false,"topLevel":false},"Oh":{"opcode":"operator_equals","next":null,"parent":"eu","inputs":{"OPERAND1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]],"OPERAND2":[1,[10,"0xE9"]]},"fields":{},"shadow":false,"topLevel":false},"ev":{"opcode":"operator_or","next":null,"parent":"eu","inputs":{"OPERAND1":[2,"Oi"],"OPERAND2":[2,"Oj"]},"fields":{},"shadow":false,"topLevel":false},"Oi":{"opcode":"operator_equals","next":null,"parent":"ev","inputs":{"OPERAND1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"Oj":{"opcode":"operator_equals","next":null,"parent":"ev","inputs":{"OPERAND1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]],"OPERAND2":[1,[10,"0x76"]]},"fields":{},"shadow":false,"topLevel":false},"mR":{"opcode":"data_addtolist","next":"Ok","parent":"eq","inputs":{"ITEM":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]]},"fields":{"LIST":["JIT.endblock","2Cug3W,_=`]D+(4;6#Ng"]},"shadow":false,"topLevel":false},"Ok":{"opcode":"data_changevariableby","next":null,"parent":"mR","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"mP":{"opcode":"data_setvariableto","next":"mT","parent":"el","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"m*":{"opcode":"procedures_definition","next":"eB","parent":null,"inputs":{"custom_block":[1,"Ox"]},"fields":{},"shadow":false,"topLevel":true,"x":46758,"y":1287},"Ox":{"opcode":"procedures_prototype","next":null,"parent":"m*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"=generateBytecode","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"eB":{"opcode":"control_if","next":null,"parent":"m*","inputs":{"CONDITION":[2,"m-"],"SUBSTACK":[2,"m+"]},"fields":{},"shadow":false,"topLevel":false},"m+":{"opcode":"data_setvariableto","next":"m,","parent":"eB","inputs":{"VALUE":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,"0"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"m,":{"opcode":"data_changevariableby","next":"m.","parent":"m+","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["JIT BLOCKS CREATED","S45yp5eu2gCxqZ=8ZQS1"]},"shadow":false,"topLevel":false},"m.":{"opcode":"data_setvariableto","next":"m/","parent":"m,","inputs":{"VALUE":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,"0"]]},"fields":{"VARIABLE":["JIT.cache","A584l[L5GQMFFUH,c]J-"]},"shadow":false,"topLevel":false},"lY":{"opcode":"procedures_definition","next":"X","parent":null,"inputs":{"custom_block":[1,"OM"]},"fields":{},"shadow":false,"topLevel":true,"x":46758,"y":64},"OM":{"opcode":"procedures_prototype","next":null,"parent":"lY","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD r,r","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"X":{"opcode":"control_if_else","next":null,"parent":"lY","inputs":{"CONDITION":[2,"lZ"],"SUBSTACK":[2,"W"],"SUBSTACK2":[2,"d|"]},"fields":{},"shadow":false,"topLevel":false},"lZ":{"opcode":"operator_equals","next":null,"parent":"X","inputs":{"OPERAND1":[3,"nd",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"nd":{"opcode":"data_itemoflist","next":null,"parent":"lZ","inputs":{"INDEX":[3,"ON",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"ON":{"opcode":"operator_add","next":null,"parent":"nd","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"d|":{"opcode":"data_setvariableto","next":"k","parent":"X","inputs":{"VALUE":[3,"nj",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"nj":{"opcode":"data_itemoflist","next":null,"parent":"d|","inputs":{"INDEX":[3,"OW",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"OW":{"opcode":"operator_add","next":null,"parent":"nj","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"k":{"opcode":"control_if_else","next":"d{","parent":"d|","inputs":{"CONDITION":[2,"ni"],"SUBSTACK":[2,"OX"],"SUBSTACK2":[2,"nk"]},"fields":{},"shadow":false,"topLevel":false},"ni":{"opcode":"operator_equals","next":null,"parent":"k","inputs":{"OPERAND1":[3,"OV",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"OV":{"opcode":"operator_mod","next":null,"parent":"ni","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"OX":{"opcode":"procedures_call","next":null,"parent":"k","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"nk":{"opcode":"data_setvariableto","next":null,"parent":"k","inputs":{"VALUE":[3,"nl",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"nl":{"opcode":"data_itemoflist","next":null,"parent":"nk","inputs":{"INDEX":[3,"nm",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"nm":{"opcode":"operator_add","next":null,"parent":"nl","inputs":{"NUM1":[3,"OY",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"OY":{"opcode":"operator_mod","next":null,"parent":"nm","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"d{":{"opcode":"data_setvariableto","next":"}","parent":"k","inputs":{"VALUE":[3,"Cz",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Cz":{"opcode":"operator_mathop","next":null,"parent":"d{","inputs":{"NUM":[3,"GL",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"GL":{"opcode":"operator_divide","next":null,"parent":"Cz","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"nn":{"opcode":"procedures_definition","next":"l!","parent":null,"inputs":{"custom_block":[1,"O!"]},"fields":{},"shadow":false,"topLevel":true,"x":46758,"y":948},"O!":{"opcode":"procedures_prototype","next":null,"parent":"nn","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JP u16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"l!":{"opcode":"procedures_call","next":"d}","parent":"nn","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.evalcondition","argumentids":"[]","warp":"true"}},"d}":{"opcode":"control_if","next":null,"parent":"l!","inputs":{"CONDITION":[2,"d~"],"SUBSTACK":[2,"ea"]},"fields":{},"shadow":false,"topLevel":false},"d~":{"opcode":"operator_or","next":null,"parent":"d}","inputs":{"OPERAND1":[2,"yk"],"OPERAND2":[2,"uJ"]},"fields":{},"shadow":false,"topLevel":false},"yk":{"opcode":"operator_equals","next":null,"parent":"d~","inputs":{"OPERAND1":[3,"yl",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"yl":{"opcode":"data_itemoflist","next":null,"parent":"yk","inputs":{"INDEX":[3,"uK",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"uK":{"opcode":"operator_add","next":null,"parent":"yl","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uJ":{"opcode":"operator_equals","next":null,"parent":"d~","inputs":{"OPERAND1":[3,[12,"cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ea":{"opcode":"data_changevariableby","next":"ym","parent":"d}","inputs":{"VALUE":[3,"uQ",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"uQ":{"opcode":"operator_multiply","next":null,"parent":"ea","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ym":{"opcode":"data_setvariableto","next":null,"parent":"ea","inputs":{"VALUE":[3,"yn",[10,""]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"yn":{"opcode":"data_itemoflist","next":null,"parent":"ym","inputs":{"INDEX":[3,"uS",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"uS":{"opcode":"operator_add","next":null,"parent":"yn","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"no":{"opcode":"procedures_definition","next":"np","parent":null,"inputs":{"custom_block":[1,"O#"]},"fields":{},"shadow":false,"topLevel":true,"x":25676,"y":64},"O#":{"opcode":"procedures_prototype","next":null,"parent":"no","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDH A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"np":{"opcode":"data_setvariableto","next":"i","parent":"no","inputs":{"VALUE":[1,[10,"0xFF00"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"i":{"opcode":"control_if_else","next":"Z","parent":"np","inputs":{"CONDITION":[2,"nq"],"SUBSTACK":[2,"nr"],"SUBSTACK2":[2,"ns"]},"fields":{},"shadow":false,"topLevel":false},"nq":{"opcode":"operator_equals","next":null,"parent":"i","inputs":{"OPERAND1":[3,"nt",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nt":{"opcode":"data_itemoflist","next":null,"parent":"nq","inputs":{"INDEX":[3,"O%",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O%":{"opcode":"operator_add","next":null,"parent":"nt","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"nr":{"opcode":"data_changevariableby","next":null,"parent":"i","inputs":{"VALUE":[3,"nu",[4,"1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"nu":{"opcode":"data_itemoflist","next":null,"parent":"nr","inputs":{"INDEX":[3,"O(",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O(":{"opcode":"operator_add","next":null,"parent":"nu","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ns":{"opcode":"data_changevariableby","next":null,"parent":"i","inputs":{"VALUE":[3,"O)",[4,"1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"O)":{"opcode":"data_itemoflist","next":null,"parent":"ns","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Z":{"opcode":"control_if_else","next":null,"parent":"i","inputs":{"CONDITION":[2,"lV"],"SUBSTACK":[2,"lW"],"SUBSTACK2":[2,"lX"]},"fields":{},"shadow":false,"topLevel":false},"lV":{"opcode":"operator_equals","next":null,"parent":"Z","inputs":{"OPERAND1":[3,"nv",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nv":{"opcode":"data_itemoflist","next":null,"parent":"lV","inputs":{"INDEX":[3,"O*",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O*":{"opcode":"operator_add","next":null,"parent":"nv","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"lW":{"opcode":"procedures_call","next":null,"parent":"Z","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"O+",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"O+":{"opcode":"data_itemoflist","next":null,"parent":"lW","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"lX":{"opcode":"procedures_call","next":"O,","parent":"Z","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"O,":{"opcode":"data_replaceitemoflist","next":null,"parent":"lX","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"nw":{"opcode":"procedures_definition","next":"d_","parent":null,"inputs":{"custom_block":[1,"O-"]},"fields":{},"shadow":false,"topLevel":true,"x":40667,"y":64},"O-":{"opcode":"procedures_prototype","next":null,"parent":"nw","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD r16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"d_":{"opcode":"data_setvariableto","next":"V","parent":"nw","inputs":{"VALUE":[3,"nx",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"nx":{"opcode":"data_itemoflist","next":null,"parent":"d_","inputs":{"INDEX":[3,"O.",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O.":{"opcode":"operator_add","next":null,"parent":"nx","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"V":{"opcode":"control_if_else","next":null,"parent":"d_","inputs":{"CONDITION":[2,"NV"],"SUBSTACK":[2,"lP"],"SUBSTACK2":[2,"c,"]},"fields":{},"shadow":false,"topLevel":false},"NV":{"opcode":"operator_equals","next":null,"parent":"V","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"lP":{"opcode":"data_setvariableto","next":null,"parent":"V","inputs":{"VALUE":[3,"ny",[10,"0"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"c,":{"opcode":"data_replaceitemoflist","next":"d`","parent":"V","inputs":{"INDEX":[3,"lQ",[7,"1"]],"ITEM":[3,"lR",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"lQ":{"opcode":"operator_add","next":null,"parent":"c,","inputs":{"NUM1":[3,"O:",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O:":{"opcode":"operator_multiply","next":null,"parent":"lQ","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"lR":{"opcode":"operator_mathop","next":null,"parent":"c,","inputs":{"NUM":[3,"nz",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"nz":{"opcode":"operator_divide","next":null,"parent":"lR","inputs":{"NUM1":[3,"nA",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"nA":{"opcode":"data_itemoflist","next":null,"parent":"nz","inputs":{"INDEX":[3,"O;",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O;":{"opcode":"operator_add","next":null,"parent":"nA","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"d`":{"opcode":"data_replaceitemoflist","next":null,"parent":"c,","inputs":{"INDEX":[3,"nB",[7,"1"]],"ITEM":[3,"nC",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"nB":{"opcode":"operator_add","next":null,"parent":"d`","inputs":{"NUM1":[3,"O=",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"O=":{"opcode":"operator_multiply","next":null,"parent":"nB","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"nC":{"opcode":"operator_mod","next":null,"parent":"d`","inputs":{"NUM1":[3,"nD",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"nD":{"opcode":"data_itemoflist","next":null,"parent":"nC","inputs":{"INDEX":[3,"O?",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O?":{"opcode":"operator_add","next":null,"parent":"nD","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"O@":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"O["]},"fields":{},"shadow":false,"topLevel":true,"x":40667,"y":492},"O[":{"opcode":"procedures_prototype","next":null,"parent":"O@","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"break.point","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"nE":{"opcode":"procedures_call","next":"O]","parent":null,"inputs":{"arg0":[3,"nF",[10,""]]},"fields":{},"shadow":false,"topLevel":true,"x":40667,"y":621,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"O]":{"opcode":"procedures_call","next":null,"parent":"nE","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​breakpoint​​","argumentids":"[]","warp":"false"}},"eI":{"opcode":"procedures_definition","next":"eJ","parent":null,"inputs":{"custom_block":[1,"O`"]},"fields":{},"shadow":false,"topLevel":true,"x":36351,"y":64,"comment":"O_"},"O`":{"opcode":"procedures_prototype","next":null,"parent":"eI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~BIT OPS","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"eJ":{"opcode":"data_setvariableto","next":"l","parent":"eI","inputs":{"VALUE":[3,"nG",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"nG":{"opcode":"data_itemoflist","next":null,"parent":"eJ","inputs":{"INDEX":[3,"O{",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O{":{"opcode":"operator_add","next":null,"parent":"nG","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ok":{"opcode":"procedures_definition","next":"eT","parent":null,"inputs":{"custom_block":[1,"PD"]},"fields":{},"shadow":false,"topLevel":true,"x":48,"y":64},"PD":{"opcode":"procedures_prototype","next":null,"parent":"ok","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD ptr","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"eT":{"opcode":"data_setvariableto","next":"c","parent":"ok","inputs":{"VALUE":[3,"ol",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"ol":{"opcode":"data_itemoflist","next":null,"parent":"eT","inputs":{"INDEX":[3,"PE",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PE":{"opcode":"operator_add","next":null,"parent":"ol","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"c":{"opcode":"control_if_else","next":"L","parent":"eT","inputs":{"CONDITION":[2,"PF"],"SUBSTACK":[2,"M"],"SUBSTACK2":[2,"om"]},"fields":{},"shadow":false,"topLevel":false},"PF":{"opcode":"operator_lt","next":null,"parent":"c","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"M":{"opcode":"control_if_else","next":"PG","parent":"c","inputs":{"CONDITION":[2,"PH"],"SUBSTACK":[2,"on"],"SUBSTACK2":[2,"oo"]},"fields":{},"shadow":false,"topLevel":false},"PH":{"opcode":"operator_lt","next":null,"parent":"M","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"on":{"opcode":"data_setvariableto","next":null,"parent":"M","inputs":{"VALUE":[3,"eU",[10,"0"]]},"fields":{"VARIABLE":["mmu.addr",":[3LIWWtxVuCUulM#[lh"]},"shadow":false,"topLevel":false},"eU":{"opcode":"operator_add","next":null,"parent":"on","inputs":{"NUM1":[3,"op",[4,""]],"NUM2":[3,"PI",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"op":{"opcode":"operator_multiply","next":null,"parent":"eU","inputs":{"NUM1":[3,"PJ",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"PJ":{"opcode":"data_itemoflist","next":null,"parent":"op","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"PI":{"opcode":"data_itemoflist","next":null,"parent":"eU","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oo":{"opcode":"data_setvariableto","next":null,"parent":"M","inputs":{"VALUE":[3,"eV",[10,"0"]]},"fields":{"VARIABLE":["mmu.addr",":[3LIWWtxVuCUulM#[lh"]},"shadow":false,"topLevel":false},"eV":{"opcode":"operator_add","next":null,"parent":"oo","inputs":{"NUM1":[3,"oq",[4,""]],"NUM2":[3,"PK",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"oq":{"opcode":"operator_multiply","next":null,"parent":"eV","inputs":{"NUM1":[3,"PL",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"PL":{"opcode":"data_itemoflist","next":null,"parent":"oq","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"PK":{"opcode":"data_itemoflist","next":null,"parent":"eV","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"PG":{"opcode":"data_setvariableto","next":null,"parent":"M","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"om":{"opcode":"data_setvariableto","next":"or","parent":"c","inputs":{"VALUE":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,"0"]]},"fields":{"VARIABLE":["mmu.addr",":[3LIWWtxVuCUulM#[lh"]},"shadow":false,"topLevel":false},"or":{"opcode":"data_setvariableto","next":null,"parent":"om","inputs":{"VALUE":[3,"eW",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"eW":{"opcode":"operator_subtract","next":null,"parent":"or","inputs":{"NUM1":[3,"PM",[4,""]],"NUM2":[3,"PN",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"PM":{"opcode":"operator_equals","next":null,"parent":"eW","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"PN":{"opcode":"operator_equals","next":null,"parent":"eW","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"L":{"opcode":"control_if_else","next":"eX","parent":"c","inputs":{"CONDITION":[2,"os"],"SUBSTACK":[2,"ot"],"SUBSTACK2":[2,"ou"]},"fields":{},"shadow":false,"topLevel":false},"os":{"opcode":"operator_equals","next":null,"parent":"L","inputs":{"OPERAND1":[3,"ov",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ov":{"opcode":"data_itemoflist","next":null,"parent":"os","inputs":{"INDEX":[3,"PO",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PO":{"opcode":"operator_add","next":null,"parent":"ov","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ot":{"opcode":"procedures_call","next":null,"parent":"L","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"mmu.addr",":[3LIWWtxVuCUulM#[lh"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"PP",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"PP":{"opcode":"data_itemoflist","next":null,"parent":"ot","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"ou":{"opcode":"procedures_call","next":"PQ","parent":"L","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"mmu.addr",":[3LIWWtxVuCUulM#[lh"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"PQ":{"opcode":"data_replaceitemoflist","next":null,"parent":"ou","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"eX":{"opcode":"control_if","next":null,"parent":"L","inputs":{"CONDITION":[2,"ow"],"SUBSTACK":[2,"ox"]},"fields":{},"shadow":false,"topLevel":false},"ow":{"opcode":"operator_not","next":null,"parent":"eX","inputs":{"OPERAND":[2,"PR"]},"fields":{},"shadow":false,"topLevel":false},"PR":{"opcode":"operator_equals","next":null,"parent":"ow","inputs":{"OPERAND1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ox":{"opcode":"data_changevariableby","next":"eY","parent":"eX","inputs":{"VALUE":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{"VARIABLE":["z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"]},"shadow":false,"topLevel":false},"eY":{"opcode":"data_replaceitemoflist","next":"oy","parent":"ox","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"oz",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oz":{"opcode":"operator_mod","next":null,"parent":"eY","inputs":{"NUM1":[3,"oA",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oA":{"opcode":"operator_mathop","next":null,"parent":"oz","inputs":{"NUM":[3,"PS",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"PS":{"opcode":"operator_divide","next":null,"parent":"oA","inputs":{"NUM1":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oB":{"opcode":"procedures_definition","next":"e(","parent":null,"inputs":{"custom_block":[1,"PU"]},"fields":{},"shadow":false,"topLevel":true,"x":39367,"y":64},"PU":{"opcode":"procedures_prototype","next":null,"parent":"oB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC r16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"e(":{"opcode":"data_changevariableby","next":"e)","parent":"oB","inputs":{"VALUE":[3,"PV",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"PV":{"opcode":"operator_multiply","next":null,"parent":"e(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"e)":{"opcode":"data_setvariableto","next":"e*","parent":"e(","inputs":{"VALUE":[3,"oC",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"oC":{"opcode":"data_itemoflist","next":null,"parent":"e)","inputs":{"INDEX":[3,"PW",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PW":{"opcode":"operator_add","next":null,"parent":"oC","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"e*":{"opcode":"data_setvariableto","next":"~","parent":"e)","inputs":{"VALUE":[3,"oD",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"oD":{"opcode":"operator_subtract","next":null,"parent":"e*","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"oE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"oE":{"opcode":"operator_multiply","next":null,"parent":"oD","inputs":{"NUM1":[3,"oF",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oF":{"opcode":"data_itemoflist","next":null,"parent":"oE","inputs":{"INDEX":[3,"PX",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PX":{"opcode":"operator_add","next":null,"parent":"oF","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"~":{"opcode":"control_if_else","next":null,"parent":"e*","inputs":{"CONDITION":[2,"PY"],"SUBSTACK":[2,"oG"],"SUBSTACK2":[2,"e+"]},"fields":{},"shadow":false,"topLevel":false},"PY":{"opcode":"operator_equals","next":null,"parent":"~","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"oG":{"opcode":"data_setvariableto","next":null,"parent":"~","inputs":{"VALUE":[3,"oH",[10,"1"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"oH":{"opcode":"operator_mod","next":null,"parent":"oG","inputs":{"NUM1":[3,"PZ",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"PZ":{"opcode":"operator_add","next":null,"parent":"oH","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e+":{"opcode":"data_setvariableto","next":"aa","parent":"~","inputs":{"VALUE":[3,"oI",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"aa":{"opcode":"data_replaceitemoflist","next":"e,","parent":"e+","inputs":{"INDEX":[3,"oL",[7,"1"]],"ITEM":[3,"P#",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"P#":{"opcode":"operator_mod","next":null,"parent":"aa","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"e,":{"opcode":"data_replaceitemoflist","next":null,"parent":"aa","inputs":{"INDEX":[3,"oM",[7,"1"]],"ITEM":[3,"oN",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oM":{"opcode":"operator_add","next":null,"parent":"e,","inputs":{"NUM1":[3,"P(",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P(":{"opcode":"operator_multiply","next":null,"parent":"oM","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oN":{"opcode":"operator_mod","next":null,"parent":"e,","inputs":{"NUM1":[3,"e-",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"e-":{"opcode":"operator_add","next":null,"parent":"oN","inputs":{"NUM1":[3,"oO",[4,""]],"NUM2":[3,"oP",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"oO":{"opcode":"data_itemoflist","next":null,"parent":"e-","inputs":{"INDEX":[3,"oQ",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oQ":{"opcode":"operator_add","next":null,"parent":"oO","inputs":{"NUM1":[3,"P)",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P)":{"opcode":"operator_multiply","next":null,"parent":"oQ","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oP":{"opcode":"operator_mathop","next":null,"parent":"e-","inputs":{"NUM":[3,"P*",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"P*":{"opcode":"operator_divide","next":null,"parent":"oP","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oR":{"opcode":"procedures_definition","next":"e.","parent":null,"inputs":{"custom_block":[1,"P+"]},"fields":{},"shadow":false,"topLevel":true,"x":32245,"y":444},"P+":{"opcode":"procedures_prototype","next":null,"parent":"oR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC r8","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"e.":{"opcode":"data_setvariableto","next":"N","parent":"oR","inputs":{"VALUE":[3,"oS",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"oS":{"opcode":"operator_subtract","next":null,"parent":"e.","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"oT",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"oT":{"opcode":"operator_multiply","next":null,"parent":"oS","inputs":{"NUM1":[3,"oW",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oW":{"opcode":"data_itemoflist","next":null,"parent":"oT","inputs":{"INDEX":[3,"P,",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P,":{"opcode":"operator_add","next":null,"parent":"oW","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"N":{"opcode":"control_if_else","next":"e=","parent":"e.","inputs":{"CONDITION":[2,"oV"],"SUBSTACK":[2,"P-"],"SUBSTACK2":[2,"oU"]},"fields":{},"shadow":false,"topLevel":false},"oV":{"opcode":"operator_equals","next":null,"parent":"N","inputs":{"OPERAND1":[3,"oX",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"P-":{"opcode":"procedures_call","next":null,"parent":"N","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"oU":{"opcode":"data_setvariableto","next":null,"parent":"N","inputs":{"VALUE":[3,"oY",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"oY":{"opcode":"data_itemoflist","next":null,"parent":"oU","inputs":{"INDEX":[3,"oZ",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oZ":{"opcode":"operator_add","next":null,"parent":"oY","inputs":{"NUM1":[3,"o!",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"o!":{"opcode":"data_itemoflist","next":null,"parent":"oZ","inputs":{"INDEX":[3,"P/",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P/":{"opcode":"operator_add","next":null,"parent":"o!","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"e=":{"opcode":"data_replaceitemoflist","next":"le","parent":"N","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"o#",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o#":{"opcode":"operator_add","next":null,"parent":"e=","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"o%",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"o%":{"opcode":"operator_equals","next":null,"parent":"o#","inputs":{"OPERAND1":[3,"o(",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"o(":{"opcode":"operator_mod","next":null,"parent":"o%","inputs":{"NUM1":[3,"P:",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"P:":{"opcode":"operator_add","next":null,"parent":"o(","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"le":{"opcode":"data_replaceitemoflist","next":"e?","parent":"e=","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"o)",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o)":{"opcode":"data_itemoflist","next":null,"parent":"le","inputs":{"INDEX":[3,"P;",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P;":{"opcode":"operator_add","next":null,"parent":"o)","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"e?":{"opcode":"data_replaceitemoflist","next":"ac","parent":"le","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"o*",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o*":{"opcode":"operator_add","next":null,"parent":"e?","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"o+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"o+":{"opcode":"operator_gt","next":null,"parent":"o*","inputs":{"OPERAND1":[3,"o,",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"o,":{"opcode":"operator_mod","next":null,"parent":"o+","inputs":{"NUM1":[3,"e@",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"e@":{"opcode":"operator_add","next":null,"parent":"o,","inputs":{"NUM1":[3,"P=",[4,""]],"NUM2":[3,"P?",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"P=":{"opcode":"operator_mod","next":null,"parent":"e@","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"P?":{"opcode":"operator_mod","next":null,"parent":"e@","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ac":{"opcode":"control_if","next":"e^","parent":"e?","inputs":{"CONDITION":[2,"P@"],"SUBSTACK":[2,"o-"]},"fields":{},"shadow":false,"topLevel":false},"P@":{"opcode":"data_itemoflist","next":null,"parent":"ac","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"e^":{"opcode":"data_setvariableto","next":"ad","parent":"ac","inputs":{"VALUE":[3,"o/",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"o/":{"opcode":"operator_mod","next":null,"parent":"e^","inputs":{"NUM1":[3,"P]",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"P]":{"opcode":"operator_add","next":null,"parent":"o/","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ad":{"opcode":"control_if_else","next":null,"parent":"e^","inputs":{"CONDITION":[2,"o:"],"SUBSTACK":[2,"P^"],"SUBSTACK2":[2,"o;"]},"fields":{},"shadow":false,"topLevel":false},"o:":{"opcode":"operator_equals","next":null,"parent":"ad","inputs":{"OPERAND1":[3,"o=",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"o=":{"opcode":"data_itemoflist","next":null,"parent":"o:","inputs":{"INDEX":[3,"P_",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P_":{"opcode":"operator_add","next":null,"parent":"o=","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"P^":{"opcode":"procedures_call","next":null,"parent":"ad","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"o;":{"opcode":"data_replaceitemoflist","next":null,"parent":"ad","inputs":{"INDEX":[3,"o?",[7,"1"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"o?":{"opcode":"operator_add","next":null,"parent":"o;","inputs":{"NUM1":[3,"o@",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"o@":{"opcode":"data_itemoflist","next":null,"parent":"o?","inputs":{"INDEX":[3,"P`",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P`":{"opcode":"operator_add","next":null,"parent":"o@","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"o[":{"opcode":"procedures_definition","next":"o]","parent":null,"inputs":{"custom_block":[1,"P{"]},"fields":{},"shadow":false,"topLevel":true,"x":35030,"y":64},"P{":{"opcode":"procedures_prototype","next":null,"parent":"o[","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SUB/SBC/CP A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"o]":{"opcode":"procedures_call","next":"e_","parent":"o[","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","warp":"true"}},"e_":{"opcode":"data_setvariableto","next":"e`","parent":"o]","inputs":{"VALUE":[3,"e{",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"e{":{"opcode":"operator_multiply","next":null,"parent":"e_","inputs":{"NUM1":[3,"P|",[4,""]],"NUM2":[3,"o^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"P|":{"opcode":"data_itemoflist","next":null,"parent":"e{","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o^":{"opcode":"operator_equals","next":null,"parent":"e{","inputs":{"OPERAND1":[3,"o_",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"o_":{"opcode":"data_itemoflist","next":null,"parent":"o^","inputs":{"INDEX":[3,"P}",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P}":{"opcode":"operator_add","next":null,"parent":"o_","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"e`":{"opcode":"data_setvariableto","next":"e|","parent":"e_","inputs":{"VALUE":[3,"o`",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"o`":{"opcode":"operator_subtract","next":null,"parent":"e`","inputs":{"NUM1":[3,"o{",[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"o{":{"opcode":"operator_subtract","next":null,"parent":"o`","inputs":{"NUM1":[3,"P~",[4,""]],"NUM2":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"P~":{"opcode":"data_itemoflist","next":null,"parent":"o{","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"e|":{"opcode":"data_replaceitemoflist","next":"o|","parent":"e`","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"o}",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o}":{"opcode":"operator_add","next":null,"parent":"e|","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"o~",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"o~":{"opcode":"operator_equals","next":null,"parent":"o}","inputs":{"OPERAND1":[3,"Qa",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Qa":{"opcode":"operator_mod","next":null,"parent":"o~","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"o|":{"opcode":"data_replaceitemoflist","next":"fg","parent":"e|","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"fg":{"opcode":"data_replaceitemoflist","next":"fh","parent":"o|","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"pa",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pa":{"opcode":"operator_add","next":null,"parent":"fg","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"pb",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pb":{"opcode":"operator_gt","next":null,"parent":"pa","inputs":{"OPERAND1":[3,"pc",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"pc":{"opcode":"operator_mod","next":null,"parent":"pb","inputs":{"NUM1":[3,"pd",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"pd":{"opcode":"operator_subtract","next":null,"parent":"pc","inputs":{"NUM1":[3,"fi",[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"fi":{"opcode":"operator_subtract","next":null,"parent":"pd","inputs":{"NUM1":[3,"pe",[4,""]],"NUM2":[3,"Qb",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pe":{"opcode":"operator_mod","next":null,"parent":"fi","inputs":{"NUM1":[3,"Qc",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Qc":{"opcode":"data_itemoflist","next":null,"parent":"pe","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Qb":{"opcode":"operator_mod","next":null,"parent":"fi","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"fh":{"opcode":"data_replaceitemoflist","next":"fj","parent":"fg","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"pf",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pf":{"opcode":"operator_add","next":null,"parent":"fh","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Qd",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Qd":{"opcode":"operator_lt","next":null,"parent":"pf","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"fj":{"opcode":"control_if","next":null,"parent":"fh","inputs":{"CONDITION":[2,"pg"],"SUBSTACK":[2,"ph"]},"fields":{},"shadow":false,"topLevel":false},"pg":{"opcode":"operator_not","next":null,"parent":"fj","inputs":{"OPERAND":[2,"pi"]},"fields":{},"shadow":false,"topLevel":false},"pi":{"opcode":"operator_equals","next":null,"parent":"pg","inputs":{"OPERAND1":[3,"pj",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pj":{"opcode":"data_itemoflist","next":null,"parent":"pi","inputs":{"INDEX":[3,"Qe",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Qe":{"opcode":"operator_add","next":null,"parent":"pj","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ph":{"opcode":"data_replaceitemoflist","next":null,"parent":"fj","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"Qf",[10,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Qf":{"opcode":"operator_mod","next":null,"parent":"ph","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"pk":{"opcode":"procedures_definition","next":"fk","parent":null,"inputs":{"custom_block":[1,"Qg"]},"fields":{},"shadow":false,"topLevel":true,"x":25676,"y":624},"Qg":{"opcode":"procedures_prototype","next":null,"parent":"pk","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD HL","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"fk":{"opcode":"data_changevariableby","next":"ff","parent":"pk","inputs":{"VALUE":[2,"Qh"]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"Qh":{"opcode":"operator_multiply","next":null,"parent":"fk","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[2,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"]]},"fields":{},"shadow":false,"topLevel":false},"ff":{"opcode":"data_setvariableto","next":"O","parent":"fk","inputs":{"VALUE":[3,"pl",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"pl":{"opcode":"data_itemoflist","next":null,"parent":"ff","inputs":{"INDEX":[3,"Qi",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Qi":{"opcode":"operator_add","next":null,"parent":"pl","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"O":{"opcode":"control_if_else","next":"fl","parent":"ff","inputs":{"CONDITION":[2,"Qj"],"SUBSTACK":[2,"Qk"],"SUBSTACK2":[2,"pm"]},"fields":{},"shadow":false,"topLevel":false},"Qj":{"opcode":"operator_equals","next":null,"parent":"O","inputs":{"OPERAND1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Qk":{"opcode":"data_setvariableto","next":null,"parent":"O","inputs":{"VALUE":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"pm":{"opcode":"data_setvariableto","next":null,"parent":"O","inputs":{"VALUE":[3,"fm",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"fm":{"opcode":"operator_add","next":null,"parent":"pm","inputs":{"NUM1":[3,"pn",[4,""]],"NUM2":[3,"po",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pn":{"opcode":"operator_multiply","next":null,"parent":"fm","inputs":{"NUM1":[3,"pp",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"pp":{"opcode":"data_itemoflist","next":null,"parent":"pn","inputs":{"INDEX":[3,"pq",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"pq":{"opcode":"operator_add","next":null,"parent":"pp","inputs":{"NUM1":[3,"Ql",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ql":{"opcode":"operator_multiply","next":null,"parent":"pq","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"po":{"opcode":"data_itemoflist","next":null,"parent":"fm","inputs":{"INDEX":[3,"ps",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"ps":{"opcode":"operator_add","next":null,"parent":"po","inputs":{"NUM1":[3,"Qm",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Qm":{"opcode":"operator_multiply","next":null,"parent":"ps","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fl":{"opcode":"data_setvariableto","next":"pt","parent":"O","inputs":{"VALUE":[3,"Qn",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"Qn":{"opcode":"operator_add","next":null,"parent":"fl","inputs":{"NUM1":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[4,""]],"NUM2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pt":{"opcode":"data_replaceitemoflist","next":"e~","parent":"fl","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"e~":{"opcode":"data_replaceitemoflist","next":"fn","parent":"pt","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"pv",[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pv":{"opcode":"operator_add","next":null,"parent":"e~","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"pw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pw":{"opcode":"operator_gt","next":null,"parent":"pv","inputs":{"OPERAND1":[3,"fa",[10,""]],"OPERAND2":[1,[10,"4095"]]},"fields":{},"shadow":false,"topLevel":false},"fa":{"opcode":"operator_add","next":null,"parent":"pw","inputs":{"NUM1":[3,"Qo",[4,""]],"NUM2":[3,"Qp",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Qo":{"opcode":"operator_mod","next":null,"parent":"fa","inputs":{"NUM1":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[4,""]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"Qp":{"opcode":"operator_mod","next":null,"parent":"fa","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"fn":{"opcode":"data_replaceitemoflist","next":"fb","parent":"e~","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"px",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"px":{"opcode":"operator_add","next":null,"parent":"fn","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Qq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Qq":{"opcode":"operator_gt","next":null,"parent":"px","inputs":{"OPERAND1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"fb":{"opcode":"data_replaceitemoflist","next":"py","parent":"fn","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"pz",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"pz":{"opcode":"operator_mod","next":null,"parent":"fb","inputs":{"NUM1":[3,"pA",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"pA":{"opcode":"operator_mathop","next":null,"parent":"pz","inputs":{"NUM":[3,"Qr",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Qr":{"opcode":"operator_divide","next":null,"parent":"pA","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"py":{"opcode":"data_replaceitemoflist","next":null,"parent":"fb","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"Qs",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Qs":{"opcode":"operator_mod","next":null,"parent":"py","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"pB":{"opcode":"procedures_definition","next":"fo","parent":null,"inputs":{"custom_block":[1,"Qt"]},"fields":{},"shadow":false,"topLevel":true,"x":33376,"y":636},"Qt":{"opcode":"procedures_prototype","next":null,"parent":"pB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD [NNNN]","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"fo":{"opcode":"data_setvariableto","next":"ae","parent":"pB","inputs":{"VALUE":[3,"pC",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"pC":{"opcode":"data_itemoflist","next":null,"parent":"fo","inputs":{"INDEX":[3,"Qu",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Qu":{"opcode":"operator_add","next":null,"parent":"pC","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"ae":{"opcode":"control_if_else","next":null,"parent":"fo","inputs":{"CONDITION":[2,"Fw"],"SUBSTACK":[2,"Fx"],"SUBSTACK2":[2,"Fy"]},"fields":{},"shadow":false,"topLevel":false},"Fw":{"opcode":"operator_equals","next":null,"parent":"ae","inputs":{"OPERAND1":[3,"Fz",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Fz":{"opcode":"data_itemoflist","next":null,"parent":"Fw","inputs":{"INDEX":[3,"K}",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"K}":{"opcode":"operator_add","next":null,"parent":"Fz","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fx":{"opcode":"procedures_call","next":null,"parent":"ae","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"K~",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"K~":{"opcode":"data_itemoflist","next":null,"parent":"Fx","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Fy":{"opcode":"procedures_call","next":"La","parent":"ae","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"La":{"opcode":"data_replaceitemoflist","next":null,"parent":"Fy","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"pD":{"opcode":"procedures_definition","next":"pE","parent":null,"inputs":{"custom_block":[1,"Qv"]},"fields":{},"shadow":false,"topLevel":true,"x":25676,"y":1793},"Qv":{"opcode":"procedures_prototype","next":null,"parent":"pD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CALL u16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"pE":{"opcode":"procedures_call","next":"fp","parent":"pD","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.evalcondition","argumentids":"[]","warp":"true"}},"fp":{"opcode":"control_if","next":null,"parent":"pE","inputs":{"CONDITION":[2,"ic"],"SUBSTACK":[2,"id"]},"fields":{},"shadow":false,"topLevel":false},"ic":{"opcode":"operator_or","next":null,"parent":"fp","inputs":{"OPERAND1":[2,"yd"],"OPERAND2":[2,"uA"]},"fields":{},"shadow":false,"topLevel":false},"yd":{"opcode":"operator_equals","next":null,"parent":"ic","inputs":{"OPERAND1":[3,"ye",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"ye":{"opcode":"data_itemoflist","next":null,"parent":"yd","inputs":{"INDEX":[3,"uB",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"uB":{"opcode":"operator_add","next":null,"parent":"ye","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uA":{"opcode":"operator_equals","next":null,"parent":"ic","inputs":{"OPERAND1":[3,[12,"cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"id":{"opcode":"data_changevariableby","next":"bF","parent":"fp","inputs":{"VALUE":[3,"uC",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"uC":{"opcode":"operator_multiply","next":null,"parent":"id","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bF":{"opcode":"procedures_call","next":"bL","parent":"id","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"uD",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"yf",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"uD":{"opcode":"operator_subtract","next":null,"parent":"bF","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yf":{"opcode":"operator_mod","next":null,"parent":"bF","inputs":{"NUM1":[3,"yg",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"yg":{"opcode":"operator_mathop","next":null,"parent":"yf","inputs":{"NUM":[3,"uE",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"uE":{"opcode":"operator_divide","next":null,"parent":"yg","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bL":{"opcode":"procedures_call","next":"ie","parent":"bF","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"uF",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"uG",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"uF":{"opcode":"operator_subtract","next":null,"parent":"bL","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uG":{"opcode":"operator_mod","next":null,"parent":"bL","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ie":{"opcode":"data_setvariableto","next":"yh","parent":"bL","inputs":{"VALUE":[3,"yi",[10,"-2"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"yh":{"opcode":"data_setvariableto","next":null,"parent":"ie","inputs":{"VALUE":[3,"yj",[10,"0"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"yj":{"opcode":"data_itemoflist","next":null,"parent":"yh","inputs":{"INDEX":[3,"uI",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"uI":{"opcode":"operator_add","next":null,"parent":"yj","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"pF":{"opcode":"procedures_definition","next":"fq","parent":null,"inputs":{"custom_block":[1,"Qw"]},"fields":{},"shadow":false,"topLevel":true,"x":33376,"y":64},"Qw":{"opcode":"procedures_prototype","next":null,"parent":"pF","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH r16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"fq":{"opcode":"data_setvariableto","next":"fr","parent":"pF","inputs":{"VALUE":[3,"pG",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"pG":{"opcode":"data_itemoflist","next":null,"parent":"fq","inputs":{"INDEX":[3,"Qx",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Qx":{"opcode":"operator_add","next":null,"parent":"pG","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"fr":{"opcode":"data_changevariableby","next":"b[","parent":"fq","inputs":{"VALUE":[3,"Qy",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"Qy":{"opcode":"operator_multiply","next":null,"parent":"fr","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"b[":{"opcode":"control_if_else","next":"pH","parent":"fr","inputs":{"CONDITION":[2,"Qz"],"SUBSTACK":[2,"af"],"SUBSTACK2":[2,"ag"]},"fields":{},"shadow":false,"topLevel":false},"Qz":{"opcode":"operator_equals","next":null,"parent":"b[","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"af":{"opcode":"procedures_call","next":"fs","parent":"b[","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"QA",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"QB",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"QA":{"opcode":"operator_subtract","next":null,"parent":"af","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"QB":{"opcode":"data_itemoflist","next":null,"parent":"af","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"fs":{"opcode":"procedures_call","next":null,"parent":"af","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"QC",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"pI",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"QC":{"opcode":"operator_subtract","next":null,"parent":"fs","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pI":{"opcode":"operator_multiply","next":null,"parent":"fs","inputs":{"NUM1":[3,"ft",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"ft":{"opcode":"operator_add","next":null,"parent":"pI","inputs":{"NUM1":[3,"pJ",[4,""]],"NUM2":[3,"fc",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"fc":{"opcode":"operator_add","next":null,"parent":"ft","inputs":{"NUM1":[3,"pK",[4,""]],"NUM2":[3,"fv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pK":{"opcode":"operator_multiply","next":null,"parent":"fc","inputs":{"NUM1":[3,"QE",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"QE":{"opcode":"data_itemoflist","next":null,"parent":"pK","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"fv":{"opcode":"operator_add","next":null,"parent":"fc","inputs":{"NUM1":[3,"pL",[4,""]],"NUM2":[3,"QF",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"pL":{"opcode":"operator_multiply","next":null,"parent":"fv","inputs":{"NUM1":[3,"QG",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"QG":{"opcode":"data_itemoflist","next":null,"parent":"pL","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"QF":{"opcode":"data_itemoflist","next":null,"parent":"fv","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"ag":{"opcode":"procedures_call","next":"fw","parent":"b[","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"QH",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"pM",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"QH":{"opcode":"operator_subtract","next":null,"parent":"ag","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"pM":{"opcode":"data_itemoflist","next":null,"parent":"ag","inputs":{"INDEX":[3,"pN",[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"pN":{"opcode":"operator_add","next":null,"parent":"pM","inputs":{"NUM1":[3,"QI",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"QI":{"opcode":"operator_multiply","next":null,"parent":"pN","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fw":{"opcode":"procedures_call","next":null,"parent":"ag","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"QJ",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"pO",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"QJ":{"opcode":"operator_subtract","next":null,"parent":"fw","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pO":{"opcode":"data_itemoflist","next":null,"parent":"fw","inputs":{"INDEX":[3,"pP",[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"pP":{"opcode":"operator_add","next":null,"parent":"pO","inputs":{"NUM1":[3,"QK",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"QK":{"opcode":"operator_multiply","next":null,"parent":"pP","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pH":{"opcode":"data_setvariableto","next":null,"parent":"b[","inputs":{"VALUE":[3,"pQ",[10,"-2"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"pQ":{"opcode":"operator_mod","next":null,"parent":"pH","inputs":{"NUM1":[3,"QM",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"QM":{"opcode":"operator_subtract","next":null,"parent":"pQ","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pR":{"opcode":"procedures_definition","next":"fx","parent":null,"inputs":{"custom_block":[1,"QN"]},"fields":{},"shadow":false,"topLevel":true,"x":30297,"y":64},"QN":{"opcode":"procedures_prototype","next":null,"parent":"pR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~POP r16","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"fx":{"opcode":"data_setvariableto","next":"fz","parent":"pR","inputs":{"VALUE":[3,"pS",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"fz":{"opcode":"data_setvariableto","next":"ah","parent":"fx","inputs":{"VALUE":[3,"pT",[10,"-2"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"pT":{"opcode":"operator_mod","next":null,"parent":"fz","inputs":{"NUM1":[3,"QP",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"QP":{"opcode":"operator_add","next":null,"parent":"pT","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"ah":{"opcode":"control_if_else","next":null,"parent":"fz","inputs":{"CONDITION":[2,"QQ"],"SUBSTACK":[2,"fA"],"SUBSTACK2":[2,"fd"]},"fields":{},"shadow":false,"topLevel":false},"QQ":{"opcode":"operator_equals","next":null,"parent":"ah","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"fA":{"opcode":"procedures_call","next":"pU","parent":"ah","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"QR",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"QR":{"opcode":"operator_subtract","next":null,"parent":"fA","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"pU":{"opcode":"data_replaceitemoflist","next":"fB","parent":"fA","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"fB":{"opcode":"procedures_call","next":"fC","parent":"pU","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"QS",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"QS":{"opcode":"operator_subtract","next":null,"parent":"fB","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fC":{"opcode":"data_replaceitemoflist","next":"fD","parent":"fB","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"pV",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pV":{"opcode":"operator_mod","next":null,"parent":"fC","inputs":{"NUM1":[3,"pW",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pW":{"opcode":"operator_mathop","next":null,"parent":"pV","inputs":{"NUM":[3,"QT",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"QT":{"opcode":"operator_divide","next":null,"parent":"pW","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"fD":{"opcode":"data_replaceitemoflist","next":"fE","parent":"fC","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"pX",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pX":{"opcode":"operator_mod","next":null,"parent":"fD","inputs":{"NUM1":[3,"pY",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pY":{"opcode":"operator_mathop","next":null,"parent":"pX","inputs":{"NUM":[3,"QU",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"QU":{"opcode":"operator_divide","next":null,"parent":"pY","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"fE":{"opcode":"data_replaceitemoflist","next":"pZ","parent":"fD","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"p!",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"p!":{"opcode":"operator_mod","next":null,"parent":"fE","inputs":{"NUM1":[3,"p#",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"fE","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"p%",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"p%":{"opcode":"operator_mod","next":null,"parent":"pZ","inputs":{"NUM1":[3,"p(",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p(":{"opcode":"operator_mathop","next":null,"parent":"p%","inputs":{"NUM":[3,"QW",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"QW":{"opcode":"operator_divide","next":null,"parent":"p(","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"fd":{"opcode":"procedures_call","next":"fF","parent":"ah","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"QX",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"QX":{"opcode":"operator_subtract","next":null,"parent":"fd","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fF":{"opcode":"data_replaceitemoflist","next":"fG","parent":"fd","inputs":{"INDEX":[3,"p)",[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"p)":{"opcode":"operator_add","next":null,"parent":"fF","inputs":{"NUM1":[3,"QY",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"QY":{"opcode":"operator_multiply","next":null,"parent":"p)","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fG":{"opcode":"procedures_call","next":"p*","parent":"fF","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"QZ",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"QZ":{"opcode":"operator_subtract","next":null,"parent":"fG","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p*":{"opcode":"data_replaceitemoflist","next":null,"parent":"fG","inputs":{"INDEX":[3,"p+",[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"p+":{"opcode":"operator_add","next":null,"parent":"p*","inputs":{"NUM1":[3,"Q!",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Q!":{"opcode":"operator_multiply","next":null,"parent":"p+","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p,":{"opcode":"procedures_definition","next":"p-","parent":null,"inputs":{"custom_block":[1,"Q#"]},"fields":{},"shadow":false,"topLevel":true,"x":28451,"y":64},"Q#":{"opcode":"procedures_prototype","next":null,"parent":"p,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RET","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"p-":{"opcode":"procedures_call","next":"ai","parent":"p,","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.evalcondition","argumentids":"[]","warp":"true"}},"ai":{"opcode":"control_if_else","next":null,"parent":"p-","inputs":{"CONDITION":[2,"fH"],"SUBSTACK":[2,"fI"],"SUBSTACK2":[2,"p."]},"fields":{},"shadow":false,"topLevel":false},"fH":{"opcode":"operator_or","next":null,"parent":"ai","inputs":{"OPERAND1":[2,"fJ"],"OPERAND2":[2,"Q)"]},"fields":{},"shadow":false,"topLevel":false},"fJ":{"opcode":"operator_or","next":null,"parent":"fH","inputs":{"OPERAND1":[2,"p/"],"OPERAND2":[2,"p:"]},"fields":{},"shadow":false,"topLevel":false},"p/":{"opcode":"operator_equals","next":null,"parent":"fJ","inputs":{"OPERAND1":[3,"p;",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p;":{"opcode":"data_itemoflist","next":null,"parent":"p/","inputs":{"INDEX":[3,"Q*",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Q*":{"opcode":"operator_add","next":null,"parent":"p;","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p:":{"opcode":"operator_equals","next":null,"parent":"fJ","inputs":{"OPERAND1":[3,"p=",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p=":{"opcode":"data_itemoflist","next":null,"parent":"p:","inputs":{"INDEX":[3,"Q+",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Q+":{"opcode":"operator_add","next":null,"parent":"p=","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Q)":{"opcode":"operator_equals","next":null,"parent":"fH","inputs":{"OPERAND1":[3,[12,"cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fI":{"opcode":"data_changevariableby","next":"fK","parent":"ai","inputs":{"VALUE":[3,"p?",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"p?":{"opcode":"operator_multiply","next":null,"parent":"fI","inputs":{"NUM1":[3,"fL",[4,"0"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"fL":{"opcode":"operator_and","next":null,"parent":"p?","inputs":{"OPERAND1":[2,"Q,"],"OPERAND2":[2,"p@"]},"fields":{},"shadow":false,"topLevel":false},"Q,":{"opcode":"operator_equals","next":null,"parent":"fL","inputs":{"OPERAND1":[3,[12,"cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"p@":{"opcode":"operator_not","next":null,"parent":"fL","inputs":{"OPERAND":[2,"fM"]},"fields":{},"shadow":false,"topLevel":false},"fM":{"opcode":"operator_or","next":null,"parent":"p@","inputs":{"OPERAND1":[2,"p["],"OPERAND2":[2,"p]"]},"fields":{},"shadow":false,"topLevel":false},"p[":{"opcode":"operator_equals","next":null,"parent":"fM","inputs":{"OPERAND1":[3,"p^",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"p^":{"opcode":"data_itemoflist","next":null,"parent":"p[","inputs":{"INDEX":[3,"Q-",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Q-":{"opcode":"operator_add","next":null,"parent":"p^","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p]":{"opcode":"operator_equals","next":null,"parent":"fM","inputs":{"OPERAND1":[3,"p_",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p_":{"opcode":"data_itemoflist","next":null,"parent":"p]","inputs":{"INDEX":[3,"Q.",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Q.":{"opcode":"operator_add","next":null,"parent":"p_","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fK":{"opcode":"data_changevariableby","next":"fN","parent":"fI","inputs":{"VALUE":[3,"Q/",[4,"4"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"Q/":{"opcode":"operator_multiply","next":null,"parent":"fK","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"fN":{"opcode":"data_setvariableto","next":"fO","parent":"fK","inputs":{"VALUE":[3,"p`",[10,"-2"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"p`":{"opcode":"operator_mod","next":null,"parent":"fN","inputs":{"NUM1":[3,"Q;",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"Q;":{"opcode":"operator_add","next":null,"parent":"p`","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fO":{"opcode":"procedures_call","next":"fP","parent":"fN","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"Q=",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"Q=":{"opcode":"operator_subtract","next":null,"parent":"fO","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"fP":{"opcode":"data_setvariableto","next":"fQ","parent":"fO","inputs":{"VALUE":[3,"Q?",[10,"0"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"Q?":{"opcode":"operator_multiply","next":null,"parent":"fP","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"fQ":{"opcode":"procedures_call","next":"p{","parent":"fP","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"Q@",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"Q@":{"opcode":"operator_subtract","next":null,"parent":"fQ","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p{":{"opcode":"data_changevariableby","next":"fR","parent":"fQ","inputs":{"VALUE":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,"1"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"fR":{"opcode":"control_if","next":null,"parent":"p{","inputs":{"CONDITION":[2,"p|"],"SUBSTACK":[2,"Q["]},"fields":{},"shadow":false,"topLevel":false},"p|":{"opcode":"operator_equals","next":null,"parent":"fR","inputs":{"OPERAND1":[3,"p}",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"p}":{"opcode":"data_itemoflist","next":null,"parent":"p|","inputs":{"INDEX":[3,"Q]",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Q]":{"opcode":"operator_add","next":null,"parent":"p}","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Q[":{"opcode":"data_setvariableto","next":null,"parent":"fR","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["cpu.interruptSwitch","T2{Yzl11_xkw11Yf4s3m"]},"shadow":false,"topLevel":false},"p.":{"opcode":"data_changevariableby","next":null,"parent":"ai","inputs":{"VALUE":[3,"Q^",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"Q^":{"opcode":"operator_multiply","next":null,"parent":"p.","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"p~":{"opcode":"procedures_definition","next":"f","parent":null,"inputs":{"custom_block":[1,"fS"]},"fields":{},"shadow":false,"topLevel":true,"x":25676,"y":1317},"fS":{"opcode":"procedures_prototype","next":null,"parent":"p~","inputs":{"l|{OXZ}+8E@W!9~[?3Wa":[1,"Q_"],"tcng{Mkl_T$Mz{:-dF8W":[1,"Q`"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"r %s %s","argumentids":"[\"l|{OXZ}+8E@W!9~[?3Wa\",\"tcng{Mkl_T$Mz{:-dF8W\"]","argumentnames":"[\"n\",\"b\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"false"}},"Q_":{"opcode":"argument_reporter_string_number","next":null,"parent":"fS","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"Q`":{"opcode":"argument_reporter_string_number","next":null,"parent":"fS","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"f":{"opcode":"control_if","next":"b]","parent":"p~","inputs":{"CONDITION":[2,"qa"],"SUBSTACK":[2,"qb"]},"fields":{},"shadow":false,"topLevel":false},"qa":{"opcode":"operator_gt","next":null,"parent":"f","inputs":{"OPERAND1":[3,"Q{",[10,""]],"OPERAND2":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Q{":{"opcode":"argument_reporter_string_number","next":null,"parent":"qa","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"qb":{"opcode":"data_addtolist","next":null,"parent":"f","inputs":{"ITEM":[3,"Q|",[10,""]]},"fields":{"LIST":["s","/U,dn3L:6^;B1j`YSedA"]},"shadow":false,"topLevel":false},"Q|":{"opcode":"argument_reporter_string_number","next":null,"parent":"qb","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"b]":{"opcode":"control_if_else","next":"Q}","parent":"f","inputs":{"CONDITION":[2,"qc"],"SUBSTACK":[2,"fT"],"SUBSTACK2":[2,"Q~"]},"fields":{},"shadow":false,"topLevel":false},"qc":{"opcode":"operator_gt","next":null,"parent":"b]","inputs":{"OPERAND1":[3,"Ra",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ra":{"opcode":"argument_reporter_string_number","next":null,"parent":"qc","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"fT":{"opcode":"procedures_call","next":"qd","parent":"b]","inputs":{"l|{OXZ}+8E@W!9~[?3Wa":[3,"qe",[10,""]],"tcng{Mkl_T$Mz{:-dF8W":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"r %s %s","argumentids":"[\"l|{OXZ}+8E@W!9~[?3Wa\",\"tcng{Mkl_T$Mz{:-dF8W\"]","warp":"false"}},"qe":{"opcode":"operator_subtract","next":null,"parent":"fT","inputs":{"NUM1":[3,"Rb",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Rb":{"opcode":"argument_reporter_string_number","next":null,"parent":"qe","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"qd":{"opcode":"procedures_call","next":null,"parent":"fT","inputs":{"l|{OXZ}+8E@W!9~[?3Wa":[3,"qf",[10,""]],"tcng{Mkl_T$Mz{:-dF8W":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"r %s %s","argumentids":"[\"l|{OXZ}+8E@W!9~[?3Wa\",\"tcng{Mkl_T$Mz{:-dF8W\"]","warp":"false"}},"qf":{"opcode":"operator_subtract","next":null,"parent":"qd","inputs":{"NUM1":[3,"Rc",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Rc":{"opcode":"argument_reporter_string_number","next":null,"parent":"qf","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"Q~":{"opcode":"data_addtolist","next":null,"parent":"b]","inputs":{"ITEM":[3,[13,"s","/U,dn3L:6^;B1j`YSedA"],[10,""]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"Q}":{"opcode":"data_deleteoflist","next":null,"parent":"b]","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["s","/U,dn3L:6^;B1j`YSedA"]},"shadow":false,"topLevel":false},"qg":{"opcode":"procedures_definition","next":"qh","parent":null,"inputs":{"custom_block":[1,"qj"]},"fields":{},"shadow":false,"topLevel":true,"x":38028,"y":64},"qj":{"opcode":"procedures_prototype","next":null,"parent":"qg","inputs":{"X[02xnHqj{,K9Mfr]Vs0":[1,"Rd"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"X[02xnHqj{,K9Mfr]Vs0\"]","argumentnames":"[\"n\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"false"}},"Rd":{"opcode":"argument_reporter_string_number","next":null,"parent":"qj","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"qh":{"opcode":"data_deletealloflist","next":"qk","parent":"qg","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qk":{"opcode":"data_deletealloflist","next":"ql","parent":"qh","inputs":{},"fields":{"LIST":["s","/U,dn3L:6^;B1j`YSedA"]},"shadow":false,"topLevel":false},"ql":{"opcode":"data_deletealloflist","next":"qm","parent":"qk","inputs":{},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"qm":{"opcode":"data_deletealloflist","next":"qn","parent":"ql","inputs":{},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"qn":{"opcode":"data_deletealloflist","next":"fU","parent":"qm","inputs":{},"fields":{"LIST":["cpu.XOR","uswSWlTlHX6y.g*]!d$!"]},"shadow":false,"topLevel":false},"fU":{"opcode":"procedures_call","next":"qo","parent":"qn","inputs":{"l|{OXZ}+8E@W!9~[?3Wa":[3,"Re",[10,"8"]],"tcng{Mkl_T$Mz{:-dF8W":[1,[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"r %s %s","argumentids":"[\"l|{OXZ}+8E@W!9~[?3Wa\",\"tcng{Mkl_T$Mz{:-dF8W\"]","warp":"false"}},"Re":{"opcode":"argument_reporter_string_number","next":null,"parent":"fU","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"qo":{"opcode":"data_setvariableto","next":"fV","parent":"fU","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"fV":{"opcode":"control_repeat","next":null,"parent":"qo","inputs":{"TIMES":[3,"Rf",[6,"10"]],"SUBSTACK":[2,"qp"]},"fields":{},"shadow":false,"topLevel":false},"Rf":{"opcode":"data_lengthoflist","next":null,"parent":"fV","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qp":{"opcode":"data_setvariableto","next":"aj","parent":"fV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"aj":{"opcode":"control_repeat","next":"Rg","parent":"qp","inputs":{"TIMES":[3,"Rh",[6,"10"]],"SUBSTACK":[2,"qq"]},"fields":{},"shadow":false,"topLevel":false},"Rh":{"opcode":"data_lengthoflist","next":null,"parent":"aj","inputs":{},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qq":{"opcode":"data_setvariableto","next":"qr","parent":"aj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"Rg":{"opcode":"data_changevariableby","next":null,"parent":"aj","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"qP":{"opcode":"procedures_definition","next":"c*","parent":null,"inputs":{"custom_block":[1,"Rt"]},"fields":{},"shadow":false,"topLevel":true,"x":31125,"y":64},"Rt":{"opcode":"procedures_prototype","next":null,"parent":"qP","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~OR A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"c*":{"opcode":"procedures_call","next":"f)","parent":"qP","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","warp":"true"}},"f)":{"opcode":"data_replaceitemoflist","next":"f*","parent":"c*","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"c+",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"c+":{"opcode":"data_itemoflist","next":null,"parent":"f)","inputs":{"INDEX":[3,"qQ",[7,"1"]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"qQ":{"opcode":"operator_add","next":null,"parent":"c+","inputs":{"NUM1":[3,"qR",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qR":{"opcode":"operator_add","next":null,"parent":"qQ","inputs":{"NUM1":[3,"qT",[4,""]],"NUM2":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"qT":{"opcode":"operator_multiply","next":null,"parent":"qR","inputs":{"NUM1":[3,"Ru",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ru":{"opcode":"data_itemoflist","next":null,"parent":"qT","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"f*":{"opcode":"data_replaceitemoflist","next":"q^","parent":"f)","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"q_",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"q_":{"opcode":"operator_add","next":null,"parent":"f*","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"q`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"q`":{"opcode":"operator_equals","next":null,"parent":"q_","inputs":{"OPERAND1":[3,"Rv",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Rv":{"opcode":"data_itemoflist","next":null,"parent":"q`","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"q^":{"opcode":"data_replaceitemoflist","next":"q{","parent":"f*","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"q{":{"opcode":"data_replaceitemoflist","next":"Rw","parent":"q^","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Rw":{"opcode":"data_replaceitemoflist","next":null,"parent":"q{","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"q|":{"opcode":"procedures_definition","next":"q}","parent":null,"inputs":{"custom_block":[1,"Rx"]},"fields":{},"shadow":false,"topLevel":true,"x":25676,"y":2276},"Rx":{"opcode":"procedures_prototype","next":null,"parent":"q|","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~AND A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"q}":{"opcode":"procedures_call","next":"f+","parent":"q|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","warp":"true"}},"f+":{"opcode":"data_replaceitemoflist","next":"f,","parent":"q}","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"q~",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"q~":{"opcode":"data_itemoflist","next":null,"parent":"f+","inputs":{"INDEX":[3,"ra",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"ra":{"opcode":"operator_add","next":null,"parent":"q~","inputs":{"NUM1":[3,"rb",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rb":{"opcode":"operator_add","next":null,"parent":"ra","inputs":{"NUM1":[3,"rc",[4,""]],"NUM2":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rc":{"opcode":"operator_multiply","next":null,"parent":"rb","inputs":{"NUM1":[3,"Ry",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ry":{"opcode":"data_itemoflist","next":null,"parent":"rc","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"f,":{"opcode":"data_replaceitemoflist","next":"rd","parent":"f+","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"rf",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rf":{"opcode":"operator_add","next":null,"parent":"f,","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"rg",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rg":{"opcode":"operator_equals","next":null,"parent":"rf","inputs":{"OPERAND1":[3,"RB",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RB":{"opcode":"data_itemoflist","next":null,"parent":"rg","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"rd":{"opcode":"data_replaceitemoflist","next":"rh","parent":"f,","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rh":{"opcode":"data_replaceitemoflist","next":"RC","parent":"rd","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"RC":{"opcode":"data_replaceitemoflist","next":null,"parent":"rh","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"ri":{"opcode":"procedures_definition","next":"qU","parent":null,"inputs":{"custom_block":[1,"RD"]},"fields":{},"shadow":false,"topLevel":true,"x":32245,"y":64},"RD":{"opcode":"procedures_prototype","next":null,"parent":"ri","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~XOR A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"qU":{"opcode":"procedures_call","next":"f-","parent":"ri","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","warp":"true"}},"f-":{"opcode":"data_replaceitemoflist","next":"fe","parent":"qU","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"qV",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"qV":{"opcode":"data_itemoflist","next":null,"parent":"f-","inputs":{"INDEX":[3,"qW",[7,"1"]]},"fields":{"LIST":["cpu.XOR","uswSWlTlHX6y.g*]!d$!"]},"shadow":false,"topLevel":false},"qW":{"opcode":"operator_add","next":null,"parent":"qV","inputs":{"NUM1":[3,"rj",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rj":{"opcode":"operator_add","next":null,"parent":"qW","inputs":{"NUM1":[3,"rk",[4,""]],"NUM2":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rk":{"opcode":"operator_multiply","next":null,"parent":"rj","inputs":{"NUM1":[3,"RE",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"RE":{"opcode":"data_itemoflist","next":null,"parent":"rk","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"fe":{"opcode":"data_replaceitemoflist","next":"rl","parent":"f-","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"rm",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rm":{"opcode":"operator_add","next":null,"parent":"fe","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"rn",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rn":{"opcode":"operator_equals","next":null,"parent":"rm","inputs":{"OPERAND1":[3,"RF",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RF":{"opcode":"data_itemoflist","next":null,"parent":"rn","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"rl":{"opcode":"data_replaceitemoflist","next":"ro","parent":"fe","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"ro":{"opcode":"data_replaceitemoflist","next":"RG","parent":"rl","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"RG":{"opcode":"data_replaceitemoflist","next":null,"parent":"ro","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rp":{"opcode":"procedures_definition","next":"rq","parent":null,"inputs":{"custom_block":[1,"RH"]},"fields":{},"shadow":false,"topLevel":true,"x":17414,"y":64},"RH":{"opcode":"procedures_prototype","next":null,"parent":"rp","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD/ADC A","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"rq":{"opcode":"procedures_call","next":"f.","parent":"rp","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","warp":"true"}},"f.":{"opcode":"data_setvariableto","next":"f/","parent":"rq","inputs":{"VALUE":[3,"f:",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"f:":{"opcode":"operator_multiply","next":null,"parent":"f.","inputs":{"NUM1":[3,"RI",[4,""]],"NUM2":[3,"qX",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"RI":{"opcode":"data_itemoflist","next":null,"parent":"f:","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"qX":{"opcode":"operator_equals","next":null,"parent":"f:","inputs":{"OPERAND1":[3,"qY",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qY":{"opcode":"data_itemoflist","next":null,"parent":"qX","inputs":{"INDEX":[3,"RJ",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"RJ":{"opcode":"operator_add","next":null,"parent":"qY","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"f/":{"opcode":"data_setvariableto","next":"f;","parent":"f.","inputs":{"VALUE":[3,"rr",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"rr":{"opcode":"operator_add","next":null,"parent":"f/","inputs":{"NUM1":[3,"rs",[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rs":{"opcode":"operator_add","next":null,"parent":"rr","inputs":{"NUM1":[3,"RK",[4,""]],"NUM2":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"RK":{"opcode":"data_itemoflist","next":null,"parent":"rs","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"f;":{"opcode":"data_replaceitemoflist","next":"c:","parent":"f/","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"rt",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rt":{"opcode":"operator_add","next":null,"parent":"f;","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"ru",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ru":{"opcode":"operator_equals","next":null,"parent":"rt","inputs":{"OPERAND1":[3,"RL",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"RL":{"opcode":"operator_mod","next":null,"parent":"ru","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"c:":{"opcode":"data_replaceitemoflist","next":"f=","parent":"f;","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"f=":{"opcode":"data_replaceitemoflist","next":"f?","parent":"c:","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"rv",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rv":{"opcode":"operator_add","next":null,"parent":"f=","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"rw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rw":{"opcode":"operator_gt","next":null,"parent":"rv","inputs":{"OPERAND1":[3,"rx",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"rx":{"opcode":"operator_add","next":null,"parent":"rw","inputs":{"NUM1":[3,"f@",[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"f@":{"opcode":"operator_add","next":null,"parent":"rx","inputs":{"NUM1":[3,"ry",[4,""]],"NUM2":[3,"RM",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ry":{"opcode":"operator_mod","next":null,"parent":"f@","inputs":{"NUM1":[3,"RN",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"RN":{"opcode":"data_itemoflist","next":null,"parent":"ry","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"RM":{"opcode":"operator_mod","next":null,"parent":"f@","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"f?":{"opcode":"data_replaceitemoflist","next":"rz","parent":"f=","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"rA",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rA":{"opcode":"operator_add","next":null,"parent":"f?","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"RO",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"RO":{"opcode":"operator_gt","next":null,"parent":"rA","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"rz":{"opcode":"data_replaceitemoflist","next":null,"parent":"f?","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"RP",[10,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"RP":{"opcode":"operator_mod","next":null,"parent":"rz","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"rB":{"opcode":"procedures_definition","next":"f[","parent":null,"inputs":{"custom_block":[1,"RQ"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":1535},"RQ":{"opcode":"procedures_prototype","next":null,"parent":"rB","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLA/RRA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"f[":{"opcode":"data_setvariableto","next":"al","parent":"rB","inputs":{"VALUE":[3,"RR",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"RR":{"opcode":"data_itemoflist","next":null,"parent":"f[","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"al":{"opcode":"control_if_else","next":null,"parent":"f[","inputs":{"CONDITION":[2,"qZ"],"SUBSTACK":[2,"f]"],"SUBSTACK2":[2,"f^"]},"fields":{},"shadow":false,"topLevel":false},"qZ":{"opcode":"operator_equals","next":null,"parent":"al","inputs":{"OPERAND1":[3,"rC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"rC":{"opcode":"data_itemoflist","next":null,"parent":"qZ","inputs":{"INDEX":[3,"RS",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"RS":{"opcode":"operator_add","next":null,"parent":"rC","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"f]":{"opcode":"data_setvariableto","next":"q!","parent":"al","inputs":{"VALUE":[3,"q%",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"q%":{"opcode":"operator_mathop","next":null,"parent":"f]","inputs":{"NUM":[3,"RT",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"RT":{"opcode":"operator_divide","next":null,"parent":"q%","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"q!":{"opcode":"data_setvariableto","next":null,"parent":"f]","inputs":{"VALUE":[3,"q(",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"q(":{"opcode":"operator_mod","next":null,"parent":"q!","inputs":{"NUM1":[3,"f_",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"f_":{"opcode":"operator_add","next":null,"parent":"q(","inputs":{"NUM1":[3,"rD",[4,""]],"NUM2":[3,"RU",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rD":{"opcode":"operator_mathop","next":null,"parent":"f_","inputs":{"NUM":[3,"q]",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"q]":{"opcode":"operator_multiply","next":null,"parent":"rD","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"RU":{"opcode":"data_itemoflist","next":null,"parent":"f_","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"f^":{"opcode":"data_setvariableto","next":"rE","parent":"al","inputs":{"VALUE":[3,"R#",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"R#":{"opcode":"operator_mod","next":null,"parent":"f^","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"rE":{"opcode":"data_setvariableto","next":null,"parent":"f^","inputs":{"VALUE":[3,"f`",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"f`":{"opcode":"operator_add","next":null,"parent":"rE","inputs":{"NUM1":[3,"rF",[4,""]],"NUM2":[3,"rG",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rF":{"opcode":"operator_mathop","next":null,"parent":"f`","inputs":{"NUM":[3,"RV",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"RV":{"opcode":"operator_divide","next":null,"parent":"rF","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"rG":{"opcode":"operator_multiply","next":null,"parent":"f`","inputs":{"NUM1":[3,"RW",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"RW":{"opcode":"data_itemoflist","next":null,"parent":"rG","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rH":{"opcode":"procedures_definition","next":"am","parent":null,"inputs":{"custom_block":[1,"qS"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":1191},"qS":{"opcode":"procedures_prototype","next":null,"parent":"rH","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~HL transfers","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"am":{"opcode":"control_if_else","next":null,"parent":"rH","inputs":{"CONDITION":[2,"rI"],"SUBSTACK":[2,"re"],"SUBSTACK2":[2,"f{"]},"fields":{},"shadow":false,"topLevel":false},"rI":{"opcode":"operator_equals","next":null,"parent":"am","inputs":{"OPERAND1":[3,"q-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"q-":{"opcode":"data_itemoflist","next":null,"parent":"rI","inputs":{"INDEX":[3,"R%",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"R%":{"opcode":"operator_add","next":null,"parent":"q-","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"re":{"opcode":"data_setvariableto","next":null,"parent":"am","inputs":{"VALUE":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,"0"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"f{":{"opcode":"data_changevariableby","next":"R(","parent":"am","inputs":{"VALUE":[3,"RX",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"RX":{"opcode":"operator_multiply","next":null,"parent":"f{","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"R(":{"opcode":"data_setvariableto","next":null,"parent":"f{","inputs":{"VALUE":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,"0"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"rJ":{"opcode":"procedures_definition","next":"f|","parent":null,"inputs":{"custom_block":[1,"R)"]},"fields":{},"shadow":false,"topLevel":true,"x":26807,"y":64},"R)":{"opcode":"procedures_prototype","next":null,"parent":"rJ","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~MISC","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"f|":{"opcode":"data_setvariableto","next":"an","parent":"rJ","inputs":{"VALUE":[3,"rK",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"rK":{"opcode":"data_itemoflist","next":null,"parent":"f|","inputs":{"INDEX":[3,"q+",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"q+":{"opcode":"operator_add","next":null,"parent":"rK","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"an":{"opcode":"control_if_else","next":null,"parent":"f|","inputs":{"CONDITION":[2,"R*"],"SUBSTACK":[2,"aq"],"SUBSTACK2":[2,"ar"]},"fields":{},"shadow":false,"topLevel":false},"R*":{"opcode":"operator_lt","next":null,"parent":"an","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aq":{"opcode":"control_if_else","next":null,"parent":"an","inputs":{"CONDITION":[2,"R+"],"SUBSTACK":[2,"as"],"SUBSTACK2":[2,"ao"]},"fields":{},"shadow":false,"topLevel":false},"R+":{"opcode":"operator_lt","next":null,"parent":"aq","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"as":{"opcode":"control_if_else","next":null,"parent":"aq","inputs":{"CONDITION":[2,"R,"],"SUBSTACK":[2,"ap"],"SUBSTACK2":[2,"R-"]},"fields":{},"shadow":false,"topLevel":false},"R,":{"opcode":"operator_lt","next":null,"parent":"as","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ap":{"opcode":"procedures_call","next":"f}","parent":"as","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"rL",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"R.",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"rL":{"opcode":"data_itemoflist","next":null,"parent":"ap","inputs":{"INDEX":[3,"R/",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"R/":{"opcode":"operator_add","next":null,"parent":"rL","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"R.":{"opcode":"operator_mod","next":null,"parent":"ap","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"f}":{"opcode":"procedures_call","next":null,"parent":"ap","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"rM",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"rN",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"rM":{"opcode":"operator_add","next":null,"parent":"f}","inputs":{"NUM1":[3,"rO",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"rO":{"opcode":"data_itemoflist","next":null,"parent":"rM","inputs":{"INDEX":[3,"q#",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"q#":{"opcode":"operator_add","next":null,"parent":"rO","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"rN":{"opcode":"operator_mathop","next":null,"parent":"f}","inputs":{"NUM":[3,"RY",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"RY":{"opcode":"operator_divide","next":null,"parent":"rN","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"R-":{"opcode":"procedures_call","next":null,"parent":"as","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~STOP: the cursed instruction","argumentids":"[]","warp":"true"}},"ao":{"opcode":"control_if_else","next":null,"parent":"aq","inputs":{"CONDITION":[2,"R:"],"SUBSTACK":[2,"R;"],"SUBSTACK2":[2,"f~"]},"fields":{},"shadow":false,"topLevel":false},"R:":{"opcode":"operator_lt","next":null,"parent":"ao","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"R;":{"opcode":"procedures_call","next":null,"parent":"ao","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~DAA","argumentids":"[]","warp":"true"}},"f~":{"opcode":"data_replaceitemoflist","next":"rP","parent":"ao","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"rQ",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"rQ":{"opcode":"operator_subtract","next":null,"parent":"f~","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[3,"R=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"R=":{"opcode":"data_itemoflist","next":null,"parent":"rQ","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"rP":{"opcode":"data_replaceitemoflist","next":"R?","parent":"f~","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"R?":{"opcode":"data_replaceitemoflist","next":null,"parent":"rP","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"ar":{"opcode":"control_if_else","next":null,"parent":"an","inputs":{"CONDITION":[2,"R@"],"SUBSTACK":[2,"rR"],"SUBSTACK2":[2,"ga"]},"fields":{},"shadow":false,"topLevel":false},"R@":{"opcode":"operator_lt","next":null,"parent":"ar","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"rR":{"opcode":"data_replaceitemoflist","next":"rS","parent":"ar","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rS":{"opcode":"data_replaceitemoflist","next":"at","parent":"rR","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"at":{"opcode":"control_if_else","next":null,"parent":"rS","inputs":{"CONDITION":[2,"R["],"SUBSTACK":[2,"R]"],"SUBSTACK2":[2,"rT"]},"fields":{},"shadow":false,"topLevel":false},"R[":{"opcode":"operator_lt","next":null,"parent":"at","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"R]":{"opcode":"data_replaceitemoflist","next":null,"parent":"at","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rT":{"opcode":"data_replaceitemoflist","next":null,"parent":"at","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"rU",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rU":{"opcode":"operator_subtract","next":null,"parent":"rT","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"R^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"R^":{"opcode":"data_itemoflist","next":null,"parent":"rU","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"ga":{"opcode":"control_if","next":null,"parent":"ar","inputs":{"CONDITION":[2,"R_"],"SUBSTACK":[2,"R`"]},"fields":{},"shadow":false,"topLevel":false},"R_":{"opcode":"operator_lt","next":null,"parent":"ga","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"R`":{"opcode":"data_setvariableto","next":null,"parent":"ga","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["cpu.HALT","UF5:UF)p/5::_8Qn?wJH"]},"shadow":false,"topLevel":false},"rV":{"opcode":"procedures_definition","next":"gb","parent":null,"inputs":{"custom_block":[1,"R{"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":558},"R{":{"opcode":"procedures_prototype","next":null,"parent":"rV","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~DAA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"gb":{"opcode":"data_setvariableto","next":"b^","parent":"rV","inputs":{"VALUE":[3,"R|",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"R|":{"opcode":"data_itemoflist","next":null,"parent":"gb","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"b^":{"opcode":"control_if_else","next":"gc","parent":"gb","inputs":{"CONDITION":[2,"R}"],"SUBSTACK":[2,"rW"],"SUBSTACK2":[2,"au"]},"fields":{},"shadow":false,"topLevel":false},"R}":{"opcode":"data_itemoflist","next":null,"parent":"b^","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rW":{"opcode":"data_changevariableby","next":null,"parent":"b^","inputs":{"VALUE":[3,"gd",[4,"1"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"gd":{"opcode":"operator_add","next":null,"parent":"rW","inputs":{"NUM1":[3,"rX",[4,""]],"NUM2":[3,"rY",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"rX":{"opcode":"operator_multiply","next":null,"parent":"gd","inputs":{"NUM1":[1,[4,"-96"]],"NUM2":[3,"R~",[4,"-"]]},"fields":{},"shadow":false,"topLevel":false},"R~":{"opcode":"data_itemoflist","next":null,"parent":"rX","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"rY":{"opcode":"operator_multiply","next":null,"parent":"gd","inputs":{"NUM1":[1,[4,"-6"]],"NUM2":[3,"Sa",[4,"-"]]},"fields":{},"shadow":false,"topLevel":false},"Sa":{"opcode":"data_itemoflist","next":null,"parent":"rY","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"au":{"opcode":"control_if","next":"rZ","parent":"b^","inputs":{"CONDITION":[2,"ge"],"SUBSTACK":[2,"r!"]},"fields":{},"shadow":false,"topLevel":false},"ge":{"opcode":"operator_or","next":null,"parent":"au","inputs":{"OPERAND1":[2,"Sb"],"OPERAND2":[2,"r#"]},"fields":{},"shadow":false,"topLevel":false},"Sb":{"opcode":"data_itemoflist","next":null,"parent":"ge","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"r#":{"opcode":"operator_gt","next":null,"parent":"ge","inputs":{"OPERAND1":[3,"Sc",[10,""]],"OPERAND2":[1,[10,"153"]]},"fields":{},"shadow":false,"topLevel":false},"Sc":{"opcode":"operator_mod","next":null,"parent":"r#","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"r!":{"opcode":"data_replaceitemoflist","next":"Sd","parent":"au","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Sd":{"opcode":"data_changevariableby","next":null,"parent":"r!","inputs":{"VALUE":[1,[4,"96"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"gc":{"opcode":"data_replaceitemoflist","next":"gg","parent":"b^","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,"Sg",[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Sg":{"opcode":"operator_mod","next":null,"parent":"gc","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"gg":{"opcode":"data_replaceitemoflist","next":"Sh","parent":"gc","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"r)",[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"r)":{"opcode":"operator_add","next":null,"parent":"gg","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"r*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"r*":{"opcode":"operator_equals","next":null,"parent":"r)","inputs":{"OPERAND1":[3,"Si",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Si":{"opcode":"data_itemoflist","next":null,"parent":"r*","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Sh":{"opcode":"data_replaceitemoflist","next":null,"parent":"gg","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"r+":{"opcode":"procedures_definition","next":"gh","parent":null,"inputs":{"custom_block":[1,"Sj"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":3229},"Sj":{"opcode":"procedures_prototype","next":null,"parent":"r+","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"debug.logline","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"gh":{"opcode":"data_setvariableto","next":"gi","parent":"r+","inputs":{"VALUE":[3,"r,",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"r,":{"opcode":"operator_join","next":null,"parent":"gh","inputs":{"STRING1":[1,[10,"A: "]],"STRING2":[3,"r-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r-":{"opcode":"data_itemoflist","next":null,"parent":"r,","inputs":{"INDEX":[3,"r.",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"r.":{"opcode":"operator_add","next":null,"parent":"r-","inputs":{"NUM1":[3,"Sk",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sk":{"opcode":"data_itemoflist","next":null,"parent":"r.","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"gi":{"opcode":"data_setvariableto","next":"gj","parent":"gh","inputs":{"VALUE":[3,"r/",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"r/":{"opcode":"operator_join","next":null,"parent":"gi","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"r:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r:":{"opcode":"operator_join","next":null,"parent":"r/","inputs":{"STRING1":[1,[10," F: "]],"STRING2":[3,"r;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r;":{"opcode":"data_itemoflist","next":null,"parent":"r:","inputs":{"INDEX":[3,"r=",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"r=":{"opcode":"operator_add","next":null,"parent":"r;","inputs":{"NUM1":[3,"r?",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"r?":{"opcode":"operator_multiply","next":null,"parent":"r=","inputs":{"NUM1":[3,"gk",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"gk":{"opcode":"operator_add","next":null,"parent":"r?","inputs":{"NUM1":[3,"r@",[4,""]],"NUM2":[3,"gl",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"r@":{"opcode":"operator_multiply","next":null,"parent":"gk","inputs":{"NUM1":[3,"Sl",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Sl":{"opcode":"data_itemoflist","next":null,"parent":"r@","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"gl":{"opcode":"operator_add","next":null,"parent":"gk","inputs":{"NUM1":[3,"r[",[4,""]],"NUM2":[3,"gm",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"r[":{"opcode":"operator_multiply","next":null,"parent":"gl","inputs":{"NUM1":[3,"Sm",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Sm":{"opcode":"data_itemoflist","next":null,"parent":"r[","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"gm":{"opcode":"operator_add","next":null,"parent":"gl","inputs":{"NUM1":[3,"r]",[4,""]],"NUM2":[3,"Sn",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"r]":{"opcode":"operator_multiply","next":null,"parent":"gm","inputs":{"NUM1":[3,"So",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"So":{"opcode":"data_itemoflist","next":null,"parent":"r]","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Sn":{"opcode":"data_itemoflist","next":null,"parent":"gm","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"gj":{"opcode":"data_setvariableto","next":"gn","parent":"gi","inputs":{"VALUE":[3,"r^",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"r^":{"opcode":"operator_join","next":null,"parent":"gj","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"r_",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r_":{"opcode":"operator_join","next":null,"parent":"r^","inputs":{"STRING1":[1,[10," B: "]],"STRING2":[3,"q:",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q:":{"opcode":"data_itemoflist","next":null,"parent":"r_","inputs":{"INDEX":[3,"r`",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"r`":{"opcode":"operator_add","next":null,"parent":"q:","inputs":{"NUM1":[3,"Sp",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sp":{"opcode":"data_itemoflist","next":null,"parent":"r`","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"gn":{"opcode":"data_setvariableto","next":"go","parent":"gj","inputs":{"VALUE":[3,"r{",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"r{":{"opcode":"operator_join","next":null,"parent":"gn","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"r|",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r|":{"opcode":"operator_join","next":null,"parent":"r{","inputs":{"STRING1":[1,[10," C: "]],"STRING2":[3,"r}",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"r}":{"opcode":"data_itemoflist","next":null,"parent":"r|","inputs":{"INDEX":[3,"r~",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"r~":{"opcode":"operator_add","next":null,"parent":"r}","inputs":{"NUM1":[3,"Sq",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sq":{"opcode":"data_itemoflist","next":null,"parent":"r~","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"go":{"opcode":"data_setvariableto","next":"gp","parent":"gn","inputs":{"VALUE":[3,"sa",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sa":{"opcode":"operator_join","next":null,"parent":"go","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sb",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sb":{"opcode":"operator_join","next":null,"parent":"sa","inputs":{"STRING1":[1,[10," D: "]],"STRING2":[3,"sc",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sc":{"opcode":"data_itemoflist","next":null,"parent":"sb","inputs":{"INDEX":[3,"sd",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"sd":{"opcode":"operator_add","next":null,"parent":"sc","inputs":{"NUM1":[3,"Sr",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sr":{"opcode":"data_itemoflist","next":null,"parent":"sd","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"gp":{"opcode":"data_setvariableto","next":"gq","parent":"go","inputs":{"VALUE":[3,"se",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"se":{"opcode":"operator_join","next":null,"parent":"gp","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sf",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sf":{"opcode":"operator_join","next":null,"parent":"se","inputs":{"STRING1":[1,[10," E: "]],"STRING2":[3,"sg",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sg":{"opcode":"data_itemoflist","next":null,"parent":"sf","inputs":{"INDEX":[3,"sh",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"sh":{"opcode":"operator_add","next":null,"parent":"sg","inputs":{"NUM1":[3,"R!",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"R!":{"opcode":"data_itemoflist","next":null,"parent":"sh","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"gq":{"opcode":"data_setvariableto","next":"e}","parent":"gp","inputs":{"VALUE":[3,"si",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"si":{"opcode":"operator_join","next":null,"parent":"gq","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"q;",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q;":{"opcode":"operator_join","next":null,"parent":"si","inputs":{"STRING1":[1,[10," H: "]],"STRING2":[3,"sj",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sj":{"opcode":"data_itemoflist","next":null,"parent":"q;","inputs":{"INDEX":[3,"sk",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"sk":{"opcode":"operator_add","next":null,"parent":"sj","inputs":{"NUM1":[3,"Ss",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ss":{"opcode":"data_itemoflist","next":null,"parent":"sk","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"e}":{"opcode":"data_setvariableto","next":"gr","parent":"gq","inputs":{"VALUE":[3,"sl",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sl":{"opcode":"operator_join","next":null,"parent":"e}","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sm",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sm":{"opcode":"operator_join","next":null,"parent":"sl","inputs":{"STRING1":[1,[10," L: "]],"STRING2":[3,"sn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sn":{"opcode":"data_itemoflist","next":null,"parent":"sm","inputs":{"INDEX":[3,"so",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"so":{"opcode":"operator_add","next":null,"parent":"sn","inputs":{"NUM1":[3,"St",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"St":{"opcode":"data_itemoflist","next":null,"parent":"so","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"gr":{"opcode":"data_setvariableto","next":"gs","parent":"e}","inputs":{"VALUE":[3,"sp",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sp":{"opcode":"operator_join","next":null,"parent":"gr","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"q)",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q)":{"opcode":"operator_join","next":null,"parent":"sp","inputs":{"STRING1":[1,[10," SP: "]],"STRING2":[3,"gt",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gt":{"opcode":"operator_join","next":null,"parent":"q)","inputs":{"STRING1":[3,"sq",[10,""]],"STRING2":[3,"sr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sq":{"opcode":"data_itemoflist","next":null,"parent":"gt","inputs":{"INDEX":[3,"ss",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"ss":{"opcode":"operator_add","next":null,"parent":"sq","inputs":{"NUM1":[3,"Su",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Su":{"opcode":"operator_divide","next":null,"parent":"ss","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"gs":{"opcode":"data_setvariableto","next":"gu","parent":"gr","inputs":{"VALUE":[3,"su",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"su":{"opcode":"operator_join","next":null,"parent":"gs","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sv",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sv":{"opcode":"operator_join","next":null,"parent":"su","inputs":{"STRING1":[1,[10," PC: "]],"STRING2":[3,"q*",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"q*":{"opcode":"operator_join","next":null,"parent":"sv","inputs":{"STRING1":[1,[10,"00:"]],"STRING2":[3,"gv",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gv":{"opcode":"operator_join","next":null,"parent":"q*","inputs":{"STRING1":[3,"sw",[10,""]],"STRING2":[3,"sx",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"sw":{"opcode":"data_itemoflist","next":null,"parent":"gv","inputs":{"INDEX":[3,"sy",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"sy":{"opcode":"operator_add","next":null,"parent":"sw","inputs":{"NUM1":[3,"Sw",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sw":{"opcode":"operator_divide","next":null,"parent":"sy","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"sx":{"opcode":"data_itemoflist","next":null,"parent":"gv","inputs":{"INDEX":[3,"sz",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"sz":{"opcode":"operator_add","next":null,"parent":"sx","inputs":{"NUM1":[3,"Sx",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sx":{"opcode":"operator_mod","next":null,"parent":"sz","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"gu":{"opcode":"data_setvariableto","next":"sA","parent":"gs","inputs":{"VALUE":[3,"Sy",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"Sy":{"opcode":"operator_join","next":null,"parent":"gu","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[1,[10," ("]]},"fields":{},"shadow":false,"topLevel":false},"sA":{"opcode":"procedures_call","next":"gw","parent":"gu","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"gw":{"opcode":"data_setvariableto","next":"gx","parent":"sA","inputs":{"VALUE":[3,"sB",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sB":{"opcode":"operator_join","next":null,"parent":"gw","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sD",[10," ("]]},"fields":{},"shadow":false,"topLevel":false},"sD":{"opcode":"operator_join","next":null,"parent":"sB","inputs":{"STRING1":[3,"sF",[10,""]],"STRING2":[1,[10," "]]},"fields":{},"shadow":false,"topLevel":false},"sF":{"opcode":"data_itemoflist","next":null,"parent":"sD","inputs":{"INDEX":[3,"Sz",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"Sz":{"opcode":"operator_add","next":null,"parent":"sF","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"gx":{"opcode":"procedures_call","next":"gy","parent":"gw","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"SA",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"SA":{"opcode":"operator_add","next":null,"parent":"gx","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"gy":{"opcode":"data_setvariableto","next":"gz","parent":"gx","inputs":{"VALUE":[3,"q?",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"gz":{"opcode":"procedures_call","next":"gA","parent":"gy","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"SC",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"SC":{"opcode":"operator_add","next":null,"parent":"gz","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"gA":{"opcode":"data_setvariableto","next":"gB","parent":"gz","inputs":{"VALUE":[3,"sJ",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sJ":{"opcode":"operator_join","next":null,"parent":"gA","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sL",[10," ("]]},"fields":{},"shadow":false,"topLevel":false},"sL":{"opcode":"operator_join","next":null,"parent":"sJ","inputs":{"STRING1":[3,"sM",[10,""]],"STRING2":[1,[10," "]]},"fields":{},"shadow":false,"topLevel":false},"sM":{"opcode":"data_itemoflist","next":null,"parent":"sL","inputs":{"INDEX":[3,"SD",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"SD":{"opcode":"operator_add","next":null,"parent":"sM","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"gB":{"opcode":"procedures_call","next":"sN","parent":"gA","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,"SE",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"SE":{"opcode":"operator_add","next":null,"parent":"gB","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"sN":{"opcode":"data_setvariableto","next":null,"parent":"gB","inputs":{"VALUE":[3,"sP",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"sP":{"opcode":"operator_join","next":null,"parent":"sN","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sQ",[10," ("]]},"fields":{},"shadow":false,"topLevel":false},"sQ":{"opcode":"operator_join","next":null,"parent":"sP","inputs":{"STRING1":[3,"sR",[10,""]],"STRING2":[1,[10,")"]]},"fields":{},"shadow":false,"topLevel":false},"sR":{"opcode":"data_itemoflist","next":null,"parent":"sQ","inputs":{"INDEX":[3,"SF",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"SF":{"opcode":"operator_add","next":null,"parent":"sR","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sS":{"opcode":"procedures_definition","next":"gC","parent":null,"inputs":{"custom_block":[1,"SG"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":2006},"SG":{"opcode":"procedures_prototype","next":null,"parent":"sS","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLCA/RRCA","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"gC":{"opcode":"data_setvariableto","next":"av","parent":"sS","inputs":{"VALUE":[3,"SH",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"SH":{"opcode":"data_itemoflist","next":null,"parent":"gC","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"av":{"opcode":"control_if_else","next":null,"parent":"gC","inputs":{"CONDITION":[2,"sT"],"SUBSTACK":[2,"gD"],"SUBSTACK2":[2,"gE"]},"fields":{},"shadow":false,"topLevel":false},"sT":{"opcode":"operator_equals","next":null,"parent":"av","inputs":{"OPERAND1":[3,"sU",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"sU":{"opcode":"data_itemoflist","next":null,"parent":"sT","inputs":{"INDEX":[3,"SI",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"SI":{"opcode":"operator_add","next":null,"parent":"sU","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"gD":{"opcode":"data_setvariableto","next":"q,","parent":"av","inputs":{"VALUE":[3,"sV",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"sV":{"opcode":"operator_mathop","next":null,"parent":"gD","inputs":{"NUM":[3,"SJ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"SJ":{"opcode":"operator_divide","next":null,"parent":"sV","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"q,":{"opcode":"data_setvariableto","next":null,"parent":"gD","inputs":{"VALUE":[3,"sW",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"sW":{"opcode":"operator_mod","next":null,"parent":"q,","inputs":{"NUM1":[3,"sX",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"sX":{"opcode":"operator_add","next":null,"parent":"sW","inputs":{"NUM1":[3,"SK",[4,""]],"NUM2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"SK":{"opcode":"operator_multiply","next":null,"parent":"sX","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"gE":{"opcode":"data_setvariableto","next":"sY","parent":"av","inputs":{"VALUE":[3,"SL",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"SL":{"opcode":"operator_mod","next":null,"parent":"gE","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"sY":{"opcode":"data_setvariableto","next":null,"parent":"gE","inputs":{"VALUE":[3,"gF",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"gF":{"opcode":"operator_add","next":null,"parent":"sY","inputs":{"NUM1":[3,"sZ",[4,""]],"NUM2":[3,"SM",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"sZ":{"opcode":"operator_mathop","next":null,"parent":"gF","inputs":{"NUM":[3,"SN",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"SN":{"opcode":"operator_divide","next":null,"parent":"sZ","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"SM":{"opcode":"operator_multiply","next":null,"parent":"gF","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"s!":{"opcode":"procedures_definition","next":"s#","parent":null,"inputs":{"custom_block":[1,"SO"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":64},"SO":{"opcode":"procedures_prototype","next":null,"parent":"s!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"debug","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"s#":{"opcode":"data_changevariableby","next":"s%","parent":"s!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"]},"shadow":false,"topLevel":false},"s%":{"opcode":"procedures_call","next":"gG","parent":"s#","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"debug.logline","argumentids":"[]","warp":"true"}},"gG":{"opcode":"control_if","next":null,"parent":"s%","inputs":{"CONDITION":[2,"s("],"SUBSTACK":[2,"s)"]},"fields":{},"shadow":false,"topLevel":false},"s(":{"opcode":"operator_not","next":null,"parent":"gG","inputs":{"OPERAND":[2,"s*"]},"fields":{},"shadow":false,"topLevel":false},"s*":{"opcode":"operator_equals","next":null,"parent":"s(","inputs":{"OPERAND1":[3,"SP",[10,""]],"OPERAND2":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"SP":{"opcode":"data_itemoflist","next":null,"parent":"s*","inputs":{"INDEX":[3,[12,"INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"],[7,"1"]]},"fields":{"LIST":["debug.logfile","ZI6jT*maN/O:dSK7N^[]"]},"shadow":false,"topLevel":false},"s)":{"opcode":"procedures_call","next":"gH","parent":"gG","inputs":{"arg0":[3,[12,"INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"gH":{"opcode":"procedures_call","next":"gI","parent":"s)","inputs":{"arg0":[3,"s+",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"s+":{"opcode":"operator_join","next":null,"parent":"gH","inputs":{"STRING1":[1,[10,""]],"STRING2":[3,"SQ",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"SQ":{"opcode":"data_itemoflist","next":null,"parent":"s+","inputs":{"INDEX":[3,[12,"INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"],[7,"1"]]},"fields":{"LIST":["debug.logfile","ZI6jT*maN/O:dSK7N^[]"]},"shadow":false,"topLevel":false},"gI":{"opcode":"procedures_call","next":"gJ","parent":"gH","inputs":{"arg0":[3,"SR",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"SR":{"opcode":"operator_join","next":null,"parent":"gI","inputs":{"STRING1":[1,[10,""]],"STRING2":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"gJ":{"opcode":"procedures_call","next":"RZ","parent":"gI","inputs":{"arg0":[3,"s,",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​log​​ %s","argumentids":"[\"arg0\"]","warp":"false"}},"s,":{"opcode":"operator_join","next":null,"parent":"gJ","inputs":{"STRING1":[1,[10,""]],"STRING2":[3,"s-",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"s-":{"opcode":"data_itemoflist","next":null,"parent":"s,","inputs":{"INDEX":[3,"SS",[7,"1"]]},"fields":{"LIST":["debug.logfile","ZI6jT*maN/O:dSK7N^[]"]},"shadow":false,"topLevel":false},"SS":{"opcode":"operator_subtract","next":null,"parent":"s-","inputs":{"NUM1":[3,[12,"INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"RZ":{"opcode":"procedures_call","next":null,"parent":"gJ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"​​breakpoint​​","argumentids":"[]","warp":"false"}},"s.":{"opcode":"procedures_definition","next":"gK","parent":null,"inputs":{"custom_block":[1,"ST"]},"fields":{},"shadow":false,"topLevel":true,"x":23721,"y":2470},"ST":{"opcode":"procedures_prototype","next":null,"parent":"s.","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SP+i8","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"gK":{"opcode":"data_setvariableto","next":"q.","parent":"s.","inputs":{"VALUE":[3,"gL",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"gL":{"opcode":"operator_subtract","next":null,"parent":"gK","inputs":{"NUM1":[3,"q/",[4,""]],"NUM2":[3,"q=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"q/":{"opcode":"operator_mod","next":null,"parent":"gL","inputs":{"NUM1":[3,"s/",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"s/":{"opcode":"operator_multiply","next":null,"parent":"q/","inputs":{"NUM1":[3,"s:",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"s:":{"opcode":"data_itemoflist","next":null,"parent":"s/","inputs":{"INDEX":[3,"SU",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"SU":{"opcode":"operator_add","next":null,"parent":"s:","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"q=":{"opcode":"data_itemoflist","next":null,"parent":"gL","inputs":{"INDEX":[3,"SV",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"SV":{"opcode":"operator_add","next":null,"parent":"q=","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"q.":{"opcode":"data_replaceitemoflist","next":"s;","parent":"gK","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"s;":{"opcode":"data_replaceitemoflist","next":"gM","parent":"q.","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"gM":{"opcode":"data_replaceitemoflist","next":"gN","parent":"s;","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"s=",[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"s=":{"opcode":"operator_add","next":null,"parent":"gM","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"s?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"s?":{"opcode":"operator_gt","next":null,"parent":"s=","inputs":{"OPERAND1":[3,"s@",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"s@":{"opcode":"operator_mod","next":null,"parent":"s?","inputs":{"NUM1":[3,"gO",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"gO":{"opcode":"operator_add","next":null,"parent":"s@","inputs":{"NUM1":[3,"SW",[4,""]],"NUM2":[3,"SX",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"SW":{"opcode":"operator_mod","next":null,"parent":"gO","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"SX":{"opcode":"operator_mod","next":null,"parent":"gO","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"gN":{"opcode":"data_replaceitemoflist","next":"gP","parent":"gM","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"s[",[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"s[":{"opcode":"operator_add","next":null,"parent":"gN","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"s]",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"s]":{"opcode":"operator_gt","next":null,"parent":"s[","inputs":{"OPERAND1":[3,"s^",[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"gP":{"opcode":"data_setvariableto","next":"aw","parent":"gN","inputs":{"VALUE":[3,"s_",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"s_":{"opcode":"operator_mod","next":null,"parent":"gP","inputs":{"NUM1":[3,"S!",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"S!":{"opcode":"operator_add","next":null,"parent":"s_","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aw":{"opcode":"control_if_else","next":null,"parent":"gP","inputs":{"CONDITION":[2,"s`"],"SUBSTACK":[2,"gR"],"SUBSTACK2":[2,"gS"]},"fields":{},"shadow":false,"topLevel":false},"s`":{"opcode":"operator_equals","next":null,"parent":"aw","inputs":{"OPERAND1":[3,"s{",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"s{":{"opcode":"data_itemoflist","next":null,"parent":"s`","inputs":{"INDEX":[3,"S#",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"S#":{"opcode":"operator_add","next":null,"parent":"s{","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"gR":{"opcode":"data_changevariableby","next":"S%","parent":"aw","inputs":{"VALUE":[3,"S(",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"S(":{"opcode":"operator_multiply","next":null,"parent":"gR","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"S%":{"opcode":"data_setvariableto","next":null,"parent":"gR","inputs":{"VALUE":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,"0"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"gS":{"opcode":"data_changevariableby","next":"gT","parent":"aw","inputs":{"VALUE":[3,"S)",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"S)":{"opcode":"operator_multiply","next":null,"parent":"gS","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"gT":{"opcode":"data_replaceitemoflist","next":"s|","parent":"gS","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"q[",[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"q[":{"opcode":"operator_mathop","next":null,"parent":"gT","inputs":{"NUM":[3,"S*",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"S*":{"opcode":"operator_divide","next":null,"parent":"q[","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"s|":{"opcode":"data_replaceitemoflist","next":null,"parent":"gT","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"S+",[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"S+":{"opcode":"operator_mod","next":null,"parent":"s|","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"s}":{"opcode":"procedures_definition","next":"s~","parent":null,"inputs":{"custom_block":[1,"S,"]},"fields":{},"shadow":false,"topLevel":true,"x":7581,"y":64},"S,":{"opcode":"procedures_prototype","next":null,"parent":"s}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"s~":{"opcode":"data_setvariableto","next":"bV","parent":"s}","inputs":{"VALUE":[3,[12,"mmu.addr",":[3LIWWtxVuCUulM#[lh"],[10,"0"]]},"fields":{"VARIABLE":["mmu.addrTemp","G-9paas{p]yITisCHH(."]},"shadow":false,"topLevel":false},"bV":{"opcode":"control_while","next":"Iw","parent":"s~","inputs":{"CONDITION":[2,"Iz"],"SUBSTACK":[2,"P"]},"fields":{},"shadow":false,"topLevel":false},"Iz":{"opcode":"operator_gt","next":null,"parent":"bV","inputs":{"OPERAND1":[3,[12,"ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"P":{"opcode":"control_if_else","next":"]","parent":"bV","inputs":{"CONDITION":[2,"jD"],"SUBSTACK":[2,"IT"],"SUBSTACK2":[2,"ax"]},"fields":{},"shadow":false,"topLevel":false},"jD":{"opcode":"operator_and","next":null,"parent":"P","inputs":{"OPERAND1":[2,"Ix"],"OPERAND2":[2,"IU"]},"fields":{},"shadow":false,"topLevel":false},"Ix":{"opcode":"operator_lt","next":null,"parent":"jD","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"IU":{"opcode":"operator_equals","next":null,"parent":"jD","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"153"]]},"fields":{},"shadow":false,"topLevel":false},"IT":{"opcode":"data_setvariableto","next":null,"parent":"P","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"ax":{"opcode":"control_if_else","next":null,"parent":"P","inputs":{"CONDITION":[2,"S-"],"SUBSTACK":[2,"S."],"SUBSTACK2":[2,"ay"]},"fields":{},"shadow":false,"topLevel":false},"S-":{"opcode":"operator_lt","next":null,"parent":"ax","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"S.":{"opcode":"data_setvariableto","next":null,"parent":"ax","inputs":{"VALUE":[1,[10,"80"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"ay":{"opcode":"control_if_else","next":null,"parent":"ax","inputs":{"CONDITION":[2,"S/"],"SUBSTACK":[2,"S:"],"SUBSTACK2":[2,"S;"]},"fields":{},"shadow":false,"topLevel":false},"S/":{"opcode":"operator_lt","next":null,"parent":"ay","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"S:":{"opcode":"data_setvariableto","next":null,"parent":"ay","inputs":{"VALUE":[1,[10,"248"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"S;":{"opcode":"data_setvariableto","next":null,"parent":"ay","inputs":{"VALUE":[1,[10,"456"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"]":{"opcode":"control_if_else","next":"q@","parent":"P","inputs":{"CONDITION":[2,"ta"],"SUBSTACK":[2,"tb"],"SUBSTACK2":[2,"S="]},"fields":{},"shadow":false,"topLevel":false},"ta":{"opcode":"operator_gt","next":null,"parent":"]","inputs":{"OPERAND1":[3,[12,"ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"],[10,""]],"OPERAND2":[3,"S?",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"S?":{"opcode":"operator_subtract","next":null,"parent":"ta","inputs":{"NUM1":[3,[12,"z9","GHy#R-.o1jTMkLkU@/xI"],[4,""]],"NUM2":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"tb":{"opcode":"data_setvariableto","next":null,"parent":"]","inputs":{"VALUE":[3,"S@",[10,"64"]]},"fields":{"VARIABLE":["z11","ltsWDl]QhF[q:;Hdaqe_"]},"shadow":false,"topLevel":false},"S@":{"opcode":"operator_subtract","next":null,"parent":"tb","inputs":{"NUM1":[3,[12,"z9","GHy#R-.o1jTMkLkU@/xI"],[4,"80"]],"NUM2":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"S=":{"opcode":"data_setvariableto","next":null,"parent":"]","inputs":{"VALUE":[3,[12,"ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"],[10,"64"]]},"fields":{"VARIABLE":["z11","ltsWDl]QhF[q:;Hdaqe_"]},"shadow":false,"topLevel":false},"Iw":{"opcode":"data_setvariableto","next":null,"parent":"bV","inputs":{"VALUE":[3,[12,"mmu.addrTemp","G-9paas{p]yITisCHH(."],[10,"0"]]},"fields":{"VARIABLE":["mmu.addr",":[3LIWWtxVuCUulM#[lh"]},"shadow":false,"topLevel":false},"tD":{"opcode":"procedures_definition","next":"tE","parent":null,"inputs":{"custom_block":[1,"Tn"]},"fields":{},"shadow":false,"topLevel":true,"x":12911,"y":64},"Tn":{"opcode":"procedures_prototype","next":null,"parent":"tD","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.turnofftheLCD","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"tI":{"opcode":"procedures_definition","next":"g*","parent":null,"inputs":{"custom_block":[1,"Tp"]},"fields":{},"shadow":false,"topLevel":true,"x":2961,"y":64},"Tp":{"opcode":"procedures_prototype","next":null,"parent":"tI","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.pushpixelstoscreen","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"g*":{"opcode":"data_setvariableto","next":"aI","parent":"tI","inputs":{"VALUE":[3,"Tq",[10,"0"]]},"fields":{"VARIABLE":["LCDY *160","+Epu7Zk9jKe~]pb|YPFh"]},"shadow":false,"topLevel":false},"Tq":{"opcode":"operator_multiply","next":null,"parent":"g*","inputs":{"NUM1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[4,""]],"NUM2":[1,[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},"aI":{"opcode":"control_if_else","next":null,"parent":"g*","inputs":{"CONDITION":[2,"g+"],"SUBSTACK":[2,"g,"],"SUBSTACK2":[2,"tJ"]},"fields":{},"shadow":false,"topLevel":false},"g+":{"opcode":"operator_or","next":null,"parent":"aI","inputs":{"OPERAND1":[2,"tK"],"OPERAND2":[2,"A*"]},"fields":{},"shadow":false,"topLevel":false},"tK":{"opcode":"operator_gt","next":null,"parent":"g+","inputs":{"OPERAND1":[3,"tL",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"tL":{"opcode":"operator_mod","next":null,"parent":"tK","inputs":{"NUM1":[3,"Tr",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Tr":{"opcode":"data_itemoflist","next":null,"parent":"tL","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"A*":{"opcode":"operator_equals","next":null,"parent":"g+","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"g,":{"opcode":"data_setvariableto","next":"tM","parent":"aI","inputs":{"VALUE":[3,"tN",[10,"0"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"tN":{"opcode":"operator_add","next":null,"parent":"g,","inputs":{"NUM1":[3,"tO",[4,""]],"NUM2":[1,[4,"0"]]},"fields":{},"shadow":false,"topLevel":false},"tO":{"opcode":"operator_gt","next":null,"parent":"tN","inputs":{"OPERAND1":[3,"tP",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"tP":{"opcode":"operator_mod","next":null,"parent":"tO","inputs":{"NUM1":[3,"Ts",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"Ts":{"opcode":"data_itemoflist","next":null,"parent":"tP","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tJ":{"opcode":"control_repeat","next":null,"parent":"aI","inputs":{"TIMES":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[6,"10"]],"SUBSTACK":[2,"uc"]},"fields":{},"shadow":false,"topLevel":false},"uc":{"opcode":"data_changevariableby","next":"aK","parent":"tJ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"]},"shadow":false,"topLevel":false},"aK":{"opcode":"data_replaceitemoflist","next":"g~","parent":"uc","inputs":{"INDEX":[3,"TP",[7,"1"]],"ITEM":[3,"TQ",[10,"0"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"TP":{"opcode":"operator_add","next":null,"parent":"aK","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[3,[12,"LCDY *160","+Epu7Zk9jKe~]pb|YPFh"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TQ":{"opcode":"data_itemoflist","next":null,"parent":"aK","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"g~":{"opcode":"control_if","next":null,"parent":"aK","inputs":{"CONDITION":[2,"TN"],"SUBSTACK":[2,"TO"]},"fields":{},"shadow":false,"topLevel":false},"TN":{"opcode":"operator_gt","next":null,"parent":"g~","inputs":{"OPERAND1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[10,""]],"OPERAND2":[1,[10,"159"]]},"fields":{},"shadow":false,"topLevel":false},"TO":{"opcode":"control_stop","next":null,"parent":"g~","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ud":{"opcode":"procedures_definition","next":"uf","parent":null,"inputs":{"custom_block":[1,"TR"]},"fields":{},"shadow":false,"topLevel":true,"x":14057,"y":64},"TR":{"opcode":"procedures_prototype","next":null,"parent":"ud","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.screen","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"uf":{"opcode":"pen_penUp","next":"ug","parent":"ud","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ug":{"opcode":"pen_setPenSizeTo","next":"uh","parent":"uf","inputs":{"SIZE":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"uh":{"opcode":"procedures_call","next":"ui","parent":"ug","inputs":{"Y}vJQs3)VnckTH=Y0XY`":[1,[10,"0"]],"5l!5#6cc=;p^RWm7$_(n":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.goto %s %s","argumentids":"[\"Y}vJQs3)VnckTH=Y0XY`\",\"5l!5#6cc=;p^RWm7$_(n\"]","warp":"true"}},"ui":{"opcode":"pen_penDown","next":"ul","parent":"uh","inputs":{},"fields":{},"shadow":false,"topLevel":false},"ul":{"opcode":"data_setvariableto","next":"um","parent":"ui","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"um":{"opcode":"data_setvariableto","next":"un","parent":"ul","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"uy":{"opcode":"procedures_definition","next":"uL","parent":null,"inputs":{"custom_block":[1,"r"]},"fields":{},"shadow":false,"topLevel":true,"x":15641,"y":64},"r":{"opcode":"procedures_prototype","next":null,"parent":"uy","inputs":{"ssgtgop44BhVGrC:a5(.":[1,"TX"],"kSwe~Ju[T3OIk;/f,EoO":[1,"TY"],"g,Z%X[CRZLA)vK(k`X=%":[1,"TZ"],"Cm7pVcAMb;8+s{Jh+yi4":[1,"T!"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.spriteline %s %s %s %s","argumentids":"[\"ssgtgop44BhVGrC:a5(.\",\"kSwe~Ju[T3OIk;/f,EoO\",\"g,Z%X[CRZLA)vK(k`X=%\",\"Cm7pVcAMb;8+s{Jh+yi4\"]","argumentnames":"[\"1\",\"2\",\"3\",\"4\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"TX":{"opcode":"argument_reporter_string_number","next":null,"parent":"r","inputs":{},"fields":{"VALUE":["1",null]},"shadow":true,"topLevel":false},"TY":{"opcode":"argument_reporter_string_number","next":null,"parent":"r","inputs":{},"fields":{"VALUE":["2",null]},"shadow":true,"topLevel":false},"TZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"r","inputs":{},"fields":{"VALUE":["3",null]},"shadow":true,"topLevel":false},"T!":{"opcode":"argument_reporter_string_number","next":null,"parent":"r","inputs":{},"fields":{"VALUE":["4",null]},"shadow":true,"topLevel":false},"uL":{"opcode":"data_deletealloflist","next":"uM","parent":"uy","inputs":{},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"uM":{"opcode":"data_deletealloflist","next":"aM","parent":"uL","inputs":{},"fields":{"LIST":["ppu.objGBCpalette","=)3O,z?qwyfT(]bS.WCK"]},"shadow":false,"topLevel":false},"aM":{"opcode":"control_if","next":"he","parent":"uM","inputs":{"CONDITION":[2,"uN"],"SUBSTACK":[2,"hf"]},"fields":{},"shadow":false,"topLevel":false},"uN":{"opcode":"operator_gt","next":null,"parent":"aM","inputs":{"OPERAND1":[3,"uO",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"uO":{"opcode":"operator_mod","next":null,"parent":"uN","inputs":{"NUM1":[3,"T#",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"T#":{"opcode":"data_itemoflist","next":null,"parent":"uO","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"hf":{"opcode":"control_repeat","next":"uP","parent":"aM","inputs":{"TIMES":[1,[6,"160"]],"SUBSTACK":[2,"uR"]},"fields":{},"shadow":false,"topLevel":false},"uR":{"opcode":"data_addtolist","next":"T%","parent":"hf","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"T%":{"opcode":"data_addtolist","next":null,"parent":"uR","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.objGBCpalette","=)3O,z?qwyfT(]bS.WCK"]},"shadow":false,"topLevel":false},"uP":{"opcode":"data_deletealloflist","next":"u(","parent":"hf","inputs":{},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"u(":{"opcode":"data_setvariableto","next":"hg","parent":"uP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hg":{"opcode":"control_repeat","next":"aN","parent":"u(","inputs":{"TIMES":[1,[6,"40"]],"SUBSTACK":[2,"aO"]},"fields":{},"shadow":false,"topLevel":false},"aO":{"opcode":"control_if","next":"T(","parent":"hg","inputs":{"CONDITION":[2,"u)"],"SUBSTACK":[2,"hh"]},"fields":{},"shadow":false,"topLevel":false},"u)":{"opcode":"operator_lt","next":null,"parent":"aO","inputs":{"OPERAND1":[3,"T)",[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"T)":{"opcode":"data_lengthoflist","next":null,"parent":"u)","inputs":{},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"hh":{"opcode":"data_setvariableto","next":"hi","parent":"aO","inputs":{"VALUE":[3,"u,",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"u,":{"opcode":"operator_subtract","next":null,"parent":"hh","inputs":{"NUM1":[3,"u-",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"u-":{"opcode":"data_itemoflist","next":null,"parent":"u,","inputs":{"INDEX":[3,"u.",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"u.":{"opcode":"operator_add","next":null,"parent":"u-","inputs":{"NUM1":[3,"T*",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"T*":{"opcode":"operator_multiply","next":null,"parent":"u.","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"hi":{"opcode":"control_if","next":null,"parent":"hh","inputs":{"CONDITION":[2,"hj"],"SUBSTACK":[2,"T+"]},"fields":{},"shadow":false,"topLevel":false},"hj":{"opcode":"operator_and","next":null,"parent":"hi","inputs":{"OPERAND1":[2,"u/"],"OPERAND2":[2,"u:"]},"fields":{},"shadow":false,"topLevel":false},"u/":{"opcode":"operator_not","next":null,"parent":"hj","inputs":{"OPERAND":[2,"T,"]},"fields":{},"shadow":false,"topLevel":false},"T,":{"opcode":"operator_lt","next":null,"parent":"u/","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"u:":{"opcode":"operator_lt","next":null,"parent":"hj","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[3,"u^",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"u^":{"opcode":"operator_add","next":null,"parent":"u:","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[3,"u`",[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"u`":{"opcode":"operator_add","next":null,"parent":"u^","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"u{",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"u{":{"opcode":"operator_multiply","next":null,"parent":"u`","inputs":{"NUM1":[3,"u~",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"u~":{"opcode":"operator_gt","next":null,"parent":"u{","inputs":{"OPERAND1":[3,"vb",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"vb":{"opcode":"operator_mod","next":null,"parent":"u~","inputs":{"NUM1":[3,"T-",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"T-":{"opcode":"data_itemoflist","next":null,"parent":"vb","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"T+":{"opcode":"data_addtolist","next":null,"parent":"hi","inputs":{"ITEM":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,"0"]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"T(":{"opcode":"data_changevariableby","next":null,"parent":"aO","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"aN":{"opcode":"control_if","next":"vp","parent":"hg","inputs":{"CONDITION":[2,"A`"],"SUBSTACK":[2,"vd"]},"fields":{},"shadow":false,"topLevel":false},"A`":{"opcode":"operator_not","next":null,"parent":"aN","inputs":{"OPERAND":[2,"A+"]},"fields":{},"shadow":false,"topLevel":false},"A+":{"opcode":"operator_equals","next":null,"parent":"A`","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vd":{"opcode":"data_setvariableto","next":"hk","parent":"aN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hk":{"opcode":"control_repeat","next":null,"parent":"vd","inputs":{"TIMES":[3,"T.",[6,"10"]],"SUBSTACK":[2,"vi"]},"fields":{},"shadow":false,"topLevel":false},"T.":{"opcode":"data_lengthoflist","next":null,"parent":"hk","inputs":{},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"vi":{"opcode":"data_changevariableby","next":"hl","parent":"hk","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hl":{"opcode":"data_setvariableto","next":"hm","parent":"vi","inputs":{"VALUE":[3,"T/",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"T/":{"opcode":"data_itemoflist","next":null,"parent":"hl","inputs":{"INDEX":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[7,"1"]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"hm":{"opcode":"data_setvariableto","next":"aP","parent":"hl","inputs":{"VALUE":[3,"T:",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"T:":{"opcode":"operator_subtract","next":null,"parent":"hm","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aP":{"opcode":"control_while","next":"vk","parent":"hm","inputs":{"CONDITION":[2,"hn"],"SUBSTACK":[2,"aQ"]},"fields":{},"shadow":false,"topLevel":false},"hn":{"opcode":"operator_and","next":null,"parent":"aP","inputs":{"OPERAND1":[2,"T;"],"OPERAND2":[2,"vm"]},"fields":{},"shadow":false,"topLevel":false},"T;":{"opcode":"operator_gt","next":null,"parent":"hn","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"vm":{"opcode":"operator_not","next":null,"parent":"hn","inputs":{"OPERAND":[2,"i."]},"fields":{},"shadow":false,"topLevel":false},"i.":{"opcode":"operator_lt","next":null,"parent":"vm","inputs":{"OPERAND1":[3,"Bn",[10,""]],"OPERAND2":[3,"Bo",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"Bn":{"opcode":"data_itemoflist","next":null,"parent":"i.","inputs":{"INDEX":[3,"Bp",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"Bp":{"opcode":"operator_add","next":null,"parent":"Bn","inputs":{"NUM1":[3,"Bh",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Bh":{"opcode":"operator_multiply","next":null,"parent":"Bp","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Bo":{"opcode":"data_itemoflist","next":null,"parent":"i.","inputs":{"INDEX":[3,"Bq",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"Bq":{"opcode":"operator_add","next":null,"parent":"Bo","inputs":{"NUM1":[3,"Br",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Br":{"opcode":"operator_multiply","next":null,"parent":"Bq","inputs":{"NUM1":[3,"Bi",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Bi":{"opcode":"data_itemoflist","next":null,"parent":"Br","inputs":{"INDEX":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[7,"1"]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"aQ":{"opcode":"data_replaceitemoflist","next":"T=","parent":"aP","inputs":{"INDEX":[3,"T?",[7,"1"]],"ITEM":[3,"T@",[10,""]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"T?":{"opcode":"operator_add","next":null,"parent":"aQ","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"T@":{"opcode":"data_itemoflist","next":null,"parent":"aQ","inputs":{"INDEX":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[7,"1"]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"T=":{"opcode":"data_changevariableby","next":null,"parent":"aQ","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"vk":{"opcode":"data_replaceitemoflist","next":null,"parent":"aP","inputs":{"INDEX":[3,"T[",[7,"1"]],"ITEM":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"T[":{"opcode":"operator_add","next":null,"parent":"vk","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vp":{"opcode":"data_setvariableto","next":"ho","parent":"aN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"ho":{"opcode":"control_repeat","next":null,"parent":"vp","inputs":{"TIMES":[3,"T]",[6,"10"]],"SUBSTACK":[2,"vr"]},"fields":{},"shadow":false,"topLevel":false},"T]":{"opcode":"data_lengthoflist","next":null,"parent":"ho","inputs":{},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"vr":{"opcode":"data_changevariableby","next":"hp","parent":"ho","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hp":{"opcode":"data_setvariableto","next":"hq","parent":"vr","inputs":{"VALUE":[3,"vs",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"vs":{"opcode":"operator_multiply","next":null,"parent":"hp","inputs":{"NUM1":[3,"T^",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"T^":{"opcode":"data_itemoflist","next":null,"parent":"vs","inputs":{"INDEX":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[7,"1"]]},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"hq":{"opcode":"data_setvariableto","next":"hr","parent":"hp","inputs":{"VALUE":[3,"vt",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"vt":{"opcode":"operator_subtract","next":null,"parent":"hq","inputs":{"NUM1":[3,"vu",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"vu":{"opcode":"data_itemoflist","next":null,"parent":"vt","inputs":{"INDEX":[3,"T_",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"T_":{"opcode":"operator_add","next":null,"parent":"vu","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hr":{"opcode":"data_setvariableto","next":"hs","parent":"hq","inputs":{"VALUE":[3,"vv",[10,"0"]]},"fields":{"VARIABLE":["z10","=kz.QrNQtb(:Gy6i(sqP"]},"shadow":false,"topLevel":false},"hs":{"opcode":"data_setvariableto","next":"aR","parent":"hr","inputs":{"VALUE":[3,"vC",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"vC":{"opcode":"operator_subtract","next":null,"parent":"hs","inputs":{"NUM1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[4,""]],"NUM2":[3,"vD",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"vD":{"opcode":"operator_subtract","next":null,"parent":"vC","inputs":{"NUM1":[3,"vE",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"vE":{"opcode":"data_itemoflist","next":null,"parent":"vD","inputs":{"INDEX":[3,"T{",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"T{":{"opcode":"operator_add","next":null,"parent":"vE","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aR":{"opcode":"control_if","next":"ht","parent":"hs","inputs":{"CONDITION":[2,"T|"],"SUBSTACK":[2,"aS"]},"fields":{},"shadow":false,"topLevel":false},"T|":{"opcode":"operator_gt","next":null,"parent":"aR","inputs":{"OPERAND1":[3,[12,"z10","=kz.QrNQtb(:Gy6i(sqP"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aS":{"opcode":"control_if_else","next":null,"parent":"aR","inputs":{"CONDITION":[2,"vF"],"SUBSTACK":[2,"vG"],"SUBSTACK2":[2,"vH"]},"fields":{},"shadow":false,"topLevel":false},"vF":{"opcode":"operator_gt","next":null,"parent":"aS","inputs":{"OPERAND1":[3,"vJ",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"vJ":{"opcode":"operator_mod","next":null,"parent":"vF","inputs":{"NUM1":[3,"T}",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"T}":{"opcode":"data_itemoflist","next":null,"parent":"vJ","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"vG":{"opcode":"data_setvariableto","next":null,"parent":"aS","inputs":{"VALUE":[3,"T~",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"T~":{"opcode":"operator_subtract","next":null,"parent":"vG","inputs":{"NUM1":[1,[4,"15"]],"NUM2":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"vH":{"opcode":"data_setvariableto","next":null,"parent":"aS","inputs":{"VALUE":[3,"Ua",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"Ua":{"opcode":"operator_subtract","next":null,"parent":"vH","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ht":{"opcode":"data_setvariableto","next":"s","parent":"aR","inputs":{"VALUE":[3,"vK",[10,"0"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"vK":{"opcode":"data_itemoflist","next":null,"parent":"ht","inputs":{"INDEX":[3,"Ub",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"Ub":{"opcode":"operator_add","next":null,"parent":"vK","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"s":{"opcode":"control_if_else","next":"aT","parent":"ht","inputs":{"CONDITION":[2,"AH"],"SUBSTACK":[2,"A!"],"SUBSTACK2":[2,"AI"]},"fields":{},"shadow":false,"topLevel":false},"AH":{"opcode":"operator_equals","next":null,"parent":"s","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A!":{"opcode":"data_setvariableto","next":null,"parent":"s","inputs":{"VALUE":[3,"A#",[10,"0"]]},"fields":{"VARIABLE":["z16","c-v[Hd1I/R,+ox=OFTdf"]},"shadow":false,"topLevel":false},"A#":{"opcode":"data_itemoflist","next":null,"parent":"A!","inputs":{"INDEX":[3,"AG",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"AG":{"opcode":"operator_add","next":null,"parent":"A#","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"AI":{"opcode":"data_setvariableto","next":null,"parent":"s","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z16","c-v[Hd1I/R,+ox=OFTdf"]},"shadow":false,"topLevel":false},"aT":{"opcode":"control_if","next":"hu","parent":"s","inputs":{"CONDITION":[2,"vL"],"SUBSTACK":[2,"hv"]},"fields":{},"shadow":false,"topLevel":false},"vL":{"opcode":"operator_gt","next":null,"parent":"aT","inputs":{"OPERAND1":[3,"vM",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"vM":{"opcode":"operator_mod","next":null,"parent":"vL","inputs":{"NUM1":[3,"Uc",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Uc":{"opcode":"data_itemoflist","next":null,"parent":"vM","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"hv":{"opcode":"data_setvariableto","next":"hw","parent":"aT","inputs":{"VALUE":[3,"vN",[10,"0"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"vN":{"opcode":"operator_subtract","next":null,"parent":"hv","inputs":{"NUM1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[4,""]],"NUM2":[3,"Ud",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ud":{"opcode":"operator_mod","next":null,"parent":"vN","inputs":{"NUM1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hw":{"opcode":"control_if","next":null,"parent":"hv","inputs":{"CONDITION":[2,"vO"],"SUBSTACK":[2,"Ue"]},"fields":{},"shadow":false,"topLevel":false},"vO":{"opcode":"operator_not","next":null,"parent":"hw","inputs":{"OPERAND":[2,"Uf"]},"fields":{},"shadow":false,"topLevel":false},"Uf":{"opcode":"operator_lt","next":null,"parent":"vO","inputs":{"OPERAND1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Ue":{"opcode":"data_changevariableby","next":null,"parent":"hw","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"hu":{"opcode":"data_setvariableto","next":"a[","parent":"aT","inputs":{"VALUE":[3,"hx",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"hx":{"opcode":"operator_add","next":null,"parent":"hu","inputs":{"NUM1":[3,"Ug",[4,""]],"NUM2":[3,"vP",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ug":{"opcode":"operator_multiply","next":null,"parent":"hx","inputs":{"NUM1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"vP":{"opcode":"operator_multiply","next":null,"parent":"hx","inputs":{"NUM1":[3,"Uh",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Uh":{"opcode":"operator_mod","next":null,"parent":"vP","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a[":{"opcode":"control_if","next":"t","parent":"hu","inputs":{"CONDITION":[2,"AX"],"SUBSTACK":[2,"AE"]},"fields":{},"shadow":false,"topLevel":false},"AX":{"opcode":"operator_gt","next":null,"parent":"a[","inputs":{"OPERAND1":[3,"AF",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"AF":{"opcode":"operator_mod","next":null,"parent":"AX","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"AE":{"opcode":"data_changevariableby","next":null,"parent":"a[","inputs":{"VALUE":[1,[4,"8192"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"t":{"opcode":"control_if_else","next":"vQ","parent":"a[","inputs":{"CONDITION":[2,"vR"],"SUBSTACK":[2,"hy"],"SUBSTACK2":[2,"hz"]},"fields":{},"shadow":false,"topLevel":false},"vR":{"opcode":"operator_equals","next":null,"parent":"t","inputs":{"OPERAND1":[3,"Ui",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ui":{"opcode":"operator_mod","next":null,"parent":"vR","inputs":{"NUM1":[3,[12,"z10","=kz.QrNQtb(:Gy6i(sqP"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hy":{"opcode":"data_setvariableto","next":"yo","parent":"t","inputs":{"VALUE":[3,"yp",[10,"0"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"yp":{"opcode":"operator_divide","next":null,"parent":"hy","inputs":{"NUM1":[3,"yq",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yq":{"opcode":"data_itemoflist","next":null,"parent":"yp","inputs":{"INDEX":[3,"uT",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"uT":{"opcode":"operator_add","next":null,"parent":"yq","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yo":{"opcode":"data_setvariableto","next":null,"parent":"hy","inputs":{"VALUE":[3,"vX",[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"vX":{"opcode":"operator_divide","next":null,"parent":"yo","inputs":{"NUM1":[3,"vW",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"vW":{"opcode":"data_itemoflist","next":null,"parent":"vX","inputs":{"INDEX":[3,"Uk",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"Uk":{"opcode":"operator_add","next":null,"parent":"vW","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hz":{"opcode":"data_setvariableto","next":"yr","parent":"t","inputs":{"VALUE":[3,"yv",[10,"0"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"yv":{"opcode":"operator_divide","next":null,"parent":"hz","inputs":{"NUM1":[3,"yA",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yA":{"opcode":"data_itemoflist","next":null,"parent":"yv","inputs":{"INDEX":[3,"yC",[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"yC":{"opcode":"operator_add","next":null,"parent":"yA","inputs":{"NUM1":[3,"yB",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yB":{"opcode":"data_itemoflist","next":null,"parent":"yC","inputs":{"INDEX":[3,"uV",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"uV":{"opcode":"operator_add","next":null,"parent":"yB","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yr":{"opcode":"data_setvariableto","next":null,"parent":"hz","inputs":{"VALUE":[3,"yD",[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"yD":{"opcode":"operator_divide","next":null,"parent":"yr","inputs":{"NUM1":[3,"yE",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"yE":{"opcode":"data_itemoflist","next":null,"parent":"yD","inputs":{"INDEX":[3,"yF",[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"yF":{"opcode":"operator_add","next":null,"parent":"yE","inputs":{"NUM1":[3,"yH",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yH":{"opcode":"data_itemoflist","next":null,"parent":"yF","inputs":{"INDEX":[3,"uW",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"uW":{"opcode":"operator_add","next":null,"parent":"yH","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vQ":{"opcode":"control_repeat","next":null,"parent":"t","inputs":{"TIMES":[1,[6,"8"]],"SUBSTACK":[2,"hA"]},"fields":{},"shadow":false,"topLevel":false},"hA":{"opcode":"data_setvariableto","next":"vS","parent":"vQ","inputs":{"VALUE":[3,"hB",[10,"0"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"hB":{"opcode":"operator_add","next":null,"parent":"hA","inputs":{"NUM1":[3,"vT",[4,""]],"NUM2":[3,"vU",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"vT":{"opcode":"operator_multiply","next":null,"parent":"hB","inputs":{"NUM1":[3,"vV",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vV":{"opcode":"operator_mathop","next":null,"parent":"vT","inputs":{"NUM":[3,"Uj",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Uj":{"opcode":"operator_mod","next":null,"parent":"vV","inputs":{"NUM1":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vU":{"opcode":"operator_mathop","next":null,"parent":"hB","inputs":{"NUM":[3,"Ul",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ul":{"opcode":"operator_mod","next":null,"parent":"vU","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"vS":{"opcode":"data_changevariableby","next":"aU","parent":"hA","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"aU":{"opcode":"control_if","next":"vY","parent":"vS","inputs":{"CONDITION":[2,"hC"],"SUBSTACK":[2,"hD"]},"fields":{},"shadow":false,"topLevel":false},"hC":{"opcode":"operator_and","next":null,"parent":"aU","inputs":{"OPERAND1":[2,"Bd"],"OPERAND2":[2,"i-"]},"fields":{},"shadow":false,"topLevel":false},"Bd":{"opcode":"operator_gt","next":null,"parent":"hC","inputs":{"OPERAND1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"i-":{"opcode":"operator_or","next":null,"parent":"hC","inputs":{"OPERAND1":[2,"Bm"],"OPERAND2":[2,"Bs"]},"fields":{},"shadow":false,"topLevel":false},"Bm":{"opcode":"operator_equals","next":null,"parent":"i-","inputs":{"OPERAND1":[3,"Bg",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Bg":{"opcode":"data_itemoflist","next":null,"parent":"Bm","inputs":{"INDEX":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[7,"1"]]},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"Bs":{"opcode":"operator_not","next":null,"parent":"i-","inputs":{"OPERAND":[2,"Bj"]},"fields":{},"shadow":false,"topLevel":false},"Bj":{"opcode":"operator_equals","next":null,"parent":"Bs","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"hD":{"opcode":"data_replaceitemoflist","next":"hE","parent":"aU","inputs":{"INDEX":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[7,"1"]],"ITEM":[3,"vZ",[10,"3"]]},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"vZ":{"opcode":"operator_add","next":null,"parent":"hD","inputs":{"NUM1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[4,""]],"NUM2":[3,"hF",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"hF":{"opcode":"operator_add","next":null,"parent":"vZ","inputs":{"NUM1":[3,"v!",[4,""]],"NUM2":[3,"v#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"v!":{"opcode":"operator_multiply","next":null,"parent":"hF","inputs":{"NUM1":[3,"v%",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"v%":{"opcode":"operator_gt","next":null,"parent":"v!","inputs":{"OPERAND1":[3,"v(",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"v(":{"opcode":"operator_mod","next":null,"parent":"v%","inputs":{"NUM1":[3,"v)",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"v)":{"opcode":"data_itemoflist","next":null,"parent":"v(","inputs":{"INDEX":[3,"Um",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"Um":{"opcode":"operator_add","next":null,"parent":"v)","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"v#":{"opcode":"operator_multiply","next":null,"parent":"hF","inputs":{"NUM1":[3,"v*",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"v*":{"opcode":"operator_gt","next":null,"parent":"v#","inputs":{"OPERAND1":[3,"v+",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"v+":{"opcode":"operator_mod","next":null,"parent":"v*","inputs":{"NUM1":[3,"v,",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"v,":{"opcode":"data_itemoflist","next":null,"parent":"v+","inputs":{"INDEX":[3,"Un",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"Un":{"opcode":"operator_add","next":null,"parent":"v,","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"hE":{"opcode":"control_if","next":null,"parent":"hD","inputs":{"CONDITION":[2,"AJ"],"SUBSTACK":[2,"A="]},"fields":{},"shadow":false,"topLevel":false},"AJ":{"opcode":"operator_equals","next":null,"parent":"hE","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"A=":{"opcode":"data_replaceitemoflist","next":null,"parent":"hE","inputs":{"INDEX":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[7,"1"]],"ITEM":[3,"AY",[10,""]]},"fields":{"LIST":["ppu.objGBCpalette","=)3O,z?qwyfT(]bS.WCK"]},"shadow":false,"topLevel":false},"AY":{"opcode":"operator_mod","next":null,"parent":"A=","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"vY":{"opcode":"data_changevariableby","next":"uU","parent":"aU","inputs":{"VALUE":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,"1"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"uU":{"opcode":"data_changevariableby","next":null,"parent":"vY","inputs":{"VALUE":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,"1"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"he":{"opcode":"data_setvariableto","next":"hG","parent":"aM","inputs":{"VALUE":[3,"Uo",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"Uo":{"opcode":"argument_reporter_string_number","next":null,"parent":"he","inputs":{},"fields":{"VALUE":["1",null]},"shadow":false,"topLevel":false},"hG":{"opcode":"data_setvariableto","next":"hH","parent":"he","inputs":{"VALUE":[3,"Up",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Up":{"opcode":"argument_reporter_string_number","next":null,"parent":"hG","inputs":{},"fields":{"VALUE":["2",null]},"shadow":false,"topLevel":false},"hH":{"opcode":"data_setvariableto","next":"v-","parent":"hG","inputs":{"VALUE":[3,"Uq",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"Uq":{"opcode":"argument_reporter_string_number","next":null,"parent":"hH","inputs":{},"fields":{"VALUE":["3",null]},"shadow":false,"topLevel":false},"v-":{"opcode":"data_setvariableto","next":null,"parent":"hH","inputs":{"VALUE":[3,"Ur",[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"Ur":{"opcode":"argument_reporter_string_number","next":null,"parent":"v-","inputs":{},"fields":{"VALUE":["4",null]},"shadow":false,"topLevel":false},"v.":{"opcode":"procedures_definition","next":"aV","parent":null,"inputs":{"custom_block":[1,"hI"]},"fields":{},"shadow":false,"topLevel":true,"x":12911,"y":372},"hI":{"opcode":"procedures_prototype","next":null,"parent":"v.","inputs":{";jzV9I(?aQ?(2XfgYy9@":[1,"Us"],"OO0,RYQJZQZ%3?/2j/.2":[1,"Ut"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.convertDMGpalette %s %s","argumentids":"[\";jzV9I(?aQ?(2XfgYy9@\",\"OO0,RYQJZQZ%3?/2j/.2\"]","argumentnames":"[\"n\",\"b\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"Us":{"opcode":"argument_reporter_string_number","next":null,"parent":"hI","inputs":{},"fields":{"VALUE":["n",null]},"shadow":true,"topLevel":false},"Ut":{"opcode":"argument_reporter_string_number","next":null,"parent":"hI","inputs":{},"fields":{"VALUE":["b",null]},"shadow":true,"topLevel":false},"aV":{"opcode":"data_replaceitemoflist","next":"aW","parent":"v.","inputs":{"INDEX":[3,"v/",[7,"1"]],"ITEM":[3,"v:",[10,""]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"v/":{"opcode":"operator_add","next":null,"parent":"aV","inputs":{"NUM1":[3,"v;",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"v;":{"opcode":"operator_multiply","next":null,"parent":"v/","inputs":{"NUM1":[3,"Uu",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Uu":{"opcode":"argument_reporter_string_number","next":null,"parent":"v;","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"v:":{"opcode":"data_itemoflist","next":null,"parent":"aV","inputs":{"INDEX":[3,"v=",[7,"1"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"v=":{"opcode":"operator_add","next":null,"parent":"v:","inputs":{"NUM1":[3,"v?",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"v?":{"opcode":"operator_mod","next":null,"parent":"v=","inputs":{"NUM1":[3,"v@",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"v@":{"opcode":"operator_divide","next":null,"parent":"v?","inputs":{"NUM1":[3,"Uv",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Uv":{"opcode":"argument_reporter_string_number","next":null,"parent":"v@","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"aW":{"opcode":"data_replaceitemoflist","next":"aX","parent":"aV","inputs":{"INDEX":[3,"v[",[7,"1"]],"ITEM":[3,"v]",[10,""]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"v[":{"opcode":"operator_add","next":null,"parent":"aW","inputs":{"NUM1":[3,"v^",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"v^":{"opcode":"operator_multiply","next":null,"parent":"v[","inputs":{"NUM1":[3,"Uw",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Uw":{"opcode":"argument_reporter_string_number","next":null,"parent":"v^","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"v]":{"opcode":"data_itemoflist","next":null,"parent":"aW","inputs":{"INDEX":[3,"v_",[7,"1"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"v_":{"opcode":"operator_add","next":null,"parent":"v]","inputs":{"NUM1":[3,"v`",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"v`":{"opcode":"operator_mod","next":null,"parent":"v_","inputs":{"NUM1":[3,"v{",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"v{":{"opcode":"operator_divide","next":null,"parent":"v`","inputs":{"NUM1":[3,"Ux",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ux":{"opcode":"argument_reporter_string_number","next":null,"parent":"v{","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"aX":{"opcode":"data_replaceitemoflist","next":"hJ","parent":"aW","inputs":{"INDEX":[3,"v|",[7,"1"]],"ITEM":[3,"v}",[10,""]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"v|":{"opcode":"operator_add","next":null,"parent":"aX","inputs":{"NUM1":[3,"v~",[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"v~":{"opcode":"operator_multiply","next":null,"parent":"v|","inputs":{"NUM1":[3,"Uy",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Uy":{"opcode":"argument_reporter_string_number","next":null,"parent":"v~","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"v}":{"opcode":"data_itemoflist","next":null,"parent":"aX","inputs":{"INDEX":[3,"wa",[7,"1"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"wa":{"opcode":"operator_add","next":null,"parent":"v}","inputs":{"NUM1":[3,"wb",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wb":{"opcode":"operator_mod","next":null,"parent":"wa","inputs":{"NUM1":[3,"wc",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"wc":{"opcode":"operator_divide","next":null,"parent":"wb","inputs":{"NUM1":[3,"Uz",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Uz":{"opcode":"argument_reporter_string_number","next":null,"parent":"wc","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"hJ":{"opcode":"data_replaceitemoflist","next":null,"parent":"aX","inputs":{"INDEX":[3,"wd",[7,"1"]],"ITEM":[3,"we",[10,""]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"wd":{"opcode":"operator_add","next":null,"parent":"hJ","inputs":{"NUM1":[3,"wf",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"wf":{"opcode":"operator_multiply","next":null,"parent":"wd","inputs":{"NUM1":[3,"UA",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"UA":{"opcode":"argument_reporter_string_number","next":null,"parent":"wf","inputs":{},"fields":{"VALUE":["n",null]},"shadow":false,"topLevel":false},"we":{"opcode":"data_itemoflist","next":null,"parent":"hJ","inputs":{"INDEX":[3,"wg",[7,"1"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"wg":{"opcode":"operator_add","next":null,"parent":"we","inputs":{"NUM1":[3,"wh",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wh":{"opcode":"operator_mod","next":null,"parent":"wg","inputs":{"NUM1":[3,"wi",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"wi":{"opcode":"operator_divide","next":null,"parent":"wh","inputs":{"NUM1":[3,"UB",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"UB":{"opcode":"argument_reporter_string_number","next":null,"parent":"wi","inputs":{},"fields":{"VALUE":["b",null]},"shadow":false,"topLevel":false},"wj":{"opcode":"procedures_definition","next":"wk","parent":null,"inputs":{"custom_block":[1,"UC"]},"fields":{},"shadow":false,"topLevel":true,"x":22634,"y":64},"UC":{"opcode":"procedures_prototype","next":null,"parent":"wj","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.HALTskip","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"wk":{"opcode":"data_setvariableto","next":"hK","parent":"wj","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hK":{"opcode":"control_while","next":null,"parent":"wk","inputs":{"CONDITION":[2,"UD"],"SUBSTACK":[2,"wl"]},"fields":{},"shadow":false,"topLevel":false},"UD":{"opcode":"operator_lt","next":null,"parent":"hK","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"15000"]]},"fields":{},"shadow":false,"topLevel":false},"wl":{"opcode":"data_changevariableby","next":"CX","parent":"hK","inputs":{"VALUE":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,"4"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"CX":{"opcode":"data_changevariableby","next":"CY","parent":"wl","inputs":{"VALUE":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"CY":{"opcode":"procedures_call","next":"jy","parent":"CX","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"checkStat","argumentids":"[]","warp":"true"}},"jy":{"opcode":"control_if","next":null,"parent":"CY","inputs":{"CONDITION":[2,"CZ"],"SUBSTACK":[2,"C!"]},"fields":{},"shadow":false,"topLevel":false},"CZ":{"opcode":"operator_gt","next":null,"parent":"jy","inputs":{"OPERAND1":[3,"C#",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"C#":{"opcode":"data_itemoflist","next":null,"parent":"CZ","inputs":{"INDEX":[3,"C%",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"C%":{"opcode":"operator_add","next":null,"parent":"C#","inputs":{"NUM1":[3,"jz",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jz":{"opcode":"operator_add","next":null,"parent":"C%","inputs":{"NUM1":[3,"C(",[4,""]],"NUM2":[3,"IG",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"C(":{"opcode":"operator_multiply","next":null,"parent":"jz","inputs":{"NUM1":[3,"IH",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"IH":{"opcode":"data_itemoflist","next":null,"parent":"C(","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"IG":{"opcode":"data_itemoflist","next":null,"parent":"jz","inputs":{"INDEX":[1,[7,"128"]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"C!":{"opcode":"procedures_call","next":"C)","parent":"jy","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"C)":{"opcode":"data_setvariableto","next":"II","parent":"C!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cpu.HALT","UF5:UF)p/5::_8Qn?wJH"]},"shadow":false,"topLevel":false},"II":{"opcode":"control_stop","next":null,"parent":"C)","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"wm":{"opcode":"procedures_definition","next":"aY","parent":null,"inputs":{"custom_block":[1,"UE"]},"fields":{},"shadow":false,"topLevel":true,"x":20367,"y":64},"UE":{"opcode":"procedures_prototype","next":null,"parent":"wm","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"execBlock","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"aY":{"opcode":"control_if","next":"wn","parent":"wm","inputs":{"CONDITION":[2,"UF"],"SUBSTACK":[2,"wo"]},"fields":{},"shadow":false,"topLevel":false},"UF":{"opcode":"operator_equals","next":null,"parent":"aY","inputs":{"OPERAND1":[3,[12,"cpu.HALT","UF5:UF)p/5::_8Qn?wJH"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wo":{"opcode":"procedures_call","next":"UG","parent":"aY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.HALTskip","argumentids":"[]","warp":"true"}},"UG":{"opcode":"control_stop","next":null,"parent":"wo","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"wn":{"opcode":"procedures_call","next":"wp","parent":"aY","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"=generateBytecode","argumentids":"[]","warp":"true"}},"wp":{"opcode":"data_setvariableto","next":"aZ","parent":"wn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"aZ":{"opcode":"control_while","next":"B?","parent":"wp","inputs":{"CONDITION":[2,"Dy"],"SUBSTACK":[2,"u"]},"fields":{},"shadow":false,"topLevel":false},"Dy":{"opcode":"operator_lt","next":null,"parent":"aZ","inputs":{"OPERAND1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,""]],"OPERAND2":[3,"I_",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"I_":{"opcode":"data_lengthoflist","next":null,"parent":"Dy","inputs":{},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"u":{"opcode":"control_if","next":"hL","parent":"aZ","inputs":{"CONDITION":[2,"Ik"],"SUBSTACK":[2,"jr"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Ij"},"Ik":{"opcode":"operator_gt","next":null,"parent":"u","inputs":{"OPERAND1":[3,[12,"ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"jr":{"opcode":"control_repeat","next":"CL","parent":"u","inputs":{"TIMES":[3,[12,"ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"],[6,"16"]],"SUBSTACK":[2,"CM"]},"fields":{},"shadow":false,"topLevel":false},"CM":{"opcode":"procedures_call","next":"js","parent":"jr","inputs":{"oi:f2-}xLvUL+Sty6wce":[3,[12,"ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","warp":"true"}},"js":{"opcode":"data_replaceitemoflist","next":"CN","parent":"CM","inputs":{"INDEX":[3,"Il",[7,"1"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"Il":{"opcode":"operator_add","next":null,"parent":"js","inputs":{"NUM1":[3,[12,"ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"CN":{"opcode":"data_changevariableby","next":"CO","parent":"js","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"]},"shadow":false,"topLevel":false},"CO":{"opcode":"data_changevariableby","next":"CP","parent":"CN","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"]},"shadow":false,"topLevel":false},"CP":{"opcode":"data_changevariableby","next":"C*","parent":"CO","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"]},"shadow":false,"topLevel":false},"C*":{"opcode":"data_setvariableto","next":"bY","parent":"CP","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"bY":{"opcode":"control_if","next":"bZ","parent":"C*","inputs":{"CONDITION":[2,"C+"],"SUBSTACK":[2,"IK"]},"fields":{},"shadow":false,"topLevel":false},"C+":{"opcode":"operator_gt","next":null,"parent":"bY","inputs":{"OPERAND1":[3,[12,"ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"],[10,""]],"OPERAND2":[3,"C,",[10,"16383"]]},"fields":{},"shadow":false,"topLevel":false},"C,":{"opcode":"operator_subtract","next":null,"parent":"C+","inputs":{"NUM1":[3,"C-",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"C-":{"opcode":"operator_multiply","next":null,"parent":"C,","inputs":{"NUM1":[3,"IL",[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"IL":{"opcode":"operator_add","next":null,"parent":"C-","inputs":{"NUM1":[3,[12,"mmu.vrambank","g?mSsNCoU094~azf1Kw|"],[4,"1"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"IK":{"opcode":"data_changevariableby","next":null,"parent":"bY","inputs":{"VALUE":[1,[4,"-8192"]]},"fields":{"VARIABLE":["ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"]},"shadow":false,"topLevel":false},"bZ":{"opcode":"control_if","next":"IM","parent":"bY","inputs":{"CONDITION":[2,"IN"],"SUBSTACK":[2,"IO"]},"fields":{},"shadow":false,"topLevel":false},"IN":{"opcode":"operator_gt","next":null,"parent":"bZ","inputs":{"OPERAND1":[3,[12,"ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"],[10,""]],"OPERAND2":[1,[10,"65535"]]},"fields":{},"shadow":false,"topLevel":false},"IO":{"opcode":"data_changevariableby","next":null,"parent":"bZ","inputs":{"VALUE":[1,[4,"-65536"]]},"fields":{"VARIABLE":["ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"]},"shadow":false,"topLevel":false},"IM":{"opcode":"procedures_call","next":null,"parent":"bZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"CL":{"opcode":"data_setvariableto","next":"jx","parent":"jr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"]},"shadow":false,"topLevel":false},"jx":{"opcode":"data_replaceitemoflist","next":"jB","parent":"CL","inputs":{"INDEX":[1,[7,"82"]],"ITEM":[3,"C.",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C.":{"opcode":"operator_mod","next":null,"parent":"jx","inputs":{"NUM1":[3,"C/",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C/":{"opcode":"operator_mathop","next":null,"parent":"C.","inputs":{"NUM":[3,"IP",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"IP":{"opcode":"operator_divide","next":null,"parent":"C/","inputs":{"NUM1":[3,[12,"ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"jB":{"opcode":"data_replaceitemoflist","next":"jC","parent":"jx","inputs":{"INDEX":[1,[7,"83"]],"ITEM":[3,"C:",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C:":{"opcode":"operator_mod","next":null,"parent":"jB","inputs":{"NUM1":[3,"C;",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C;":{"opcode":"operator_mathop","next":null,"parent":"C:","inputs":{"NUM":[3,"IQ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"IQ":{"opcode":"operator_divide","next":null,"parent":"C;","inputs":{"NUM1":[3,[12,"ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jC":{"opcode":"data_replaceitemoflist","next":"ju","parent":"jB","inputs":{"INDEX":[1,[7,"84"]],"ITEM":[3,"C=",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C=":{"opcode":"operator_mod","next":null,"parent":"jC","inputs":{"NUM1":[3,"C?",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C?":{"opcode":"operator_mathop","next":null,"parent":"C=","inputs":{"NUM":[3,"C@",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"C@":{"opcode":"operator_divide","next":null,"parent":"C?","inputs":{"NUM1":[3,"C[",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C[":{"opcode":"operator_add","next":null,"parent":"C@","inputs":{"NUM1":[3,"IS",[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"IS":{"opcode":"operator_mod","next":null,"parent":"C[","inputs":{"NUM1":[3,[12,"ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"ju":{"opcode":"data_replaceitemoflist","next":"jt","parent":"jC","inputs":{"INDEX":[1,[7,"85"]],"ITEM":[3,"C]",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C]":{"opcode":"operator_mod","next":null,"parent":"ju","inputs":{"NUM1":[3,"C^",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"C^":{"opcode":"operator_mathop","next":null,"parent":"C]","inputs":{"NUM":[3,"IR",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"IR":{"opcode":"operator_divide","next":null,"parent":"C^","inputs":{"NUM1":[3,[12,"ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"jt":{"opcode":"data_replaceitemoflist","next":"Im","parent":"ju","inputs":{"INDEX":[1,[7,"86"]],"ITEM":[3,"CQ",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"CQ":{"opcode":"operator_add","next":null,"parent":"jt","inputs":{"NUM1":[1,[4,"128"]],"NUM2":[3,"CR",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"CR":{"opcode":"operator_mod","next":null,"parent":"CQ","inputs":{"NUM1":[3,"CS",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"CS":{"opcode":"operator_subtract","next":null,"parent":"CR","inputs":{"NUM1":[3,"CT",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"CT":{"opcode":"operator_mathop","next":null,"parent":"CS","inputs":{"NUM":[3,"In",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"In":{"opcode":"operator_divide","next":null,"parent":"CT","inputs":{"NUM1":[3,[12,"ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Im":{"opcode":"control_stop","next":null,"parent":"jt","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"hL":{"opcode":"data_setvariableto","next":"a!","parent":"u","inputs":{"VALUE":[3,"wq",[10,"0"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"wq":{"opcode":"operator_multiply","next":null,"parent":"hL","inputs":{"NUM1":[3,[12,"cpu.interruptSwitch","T2{Yzl11_xkw11Yf4s3m"],[4,""]],"NUM2":[3,"wr",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"wr":{"opcode":"data_itemoflist","next":null,"parent":"wq","inputs":{"INDEX":[3,"ws",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"ws":{"opcode":"operator_add","next":null,"parent":"wr","inputs":{"NUM1":[3,"hM",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"hM":{"opcode":"operator_add","next":null,"parent":"ws","inputs":{"NUM1":[3,"wt",[4,""]],"NUM2":[3,"UJ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"wt":{"opcode":"operator_multiply","next":null,"parent":"hM","inputs":{"NUM1":[3,"UK",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"UK":{"opcode":"data_itemoflist","next":null,"parent":"wt","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"UJ":{"opcode":"data_itemoflist","next":null,"parent":"hM","inputs":{"INDEX":[1,[7,"128"]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"a!":{"opcode":"control_if","next":"hN","parent":"hL","inputs":{"CONDITION":[2,"UL"],"SUBSTACK":[2,"wu"]},"fields":{},"shadow":false,"topLevel":false},"UL":{"opcode":"operator_gt","next":null,"parent":"a!","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"hN":{"opcode":"data_changevariableby","next":"h#","parent":"a!","inputs":{"VALUE":[3,"w+",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"w+":{"opcode":"operator_multiply","next":null,"parent":"hN","inputs":{"NUM1":[3,"w*",[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"w*":{"opcode":"data_itemoflist","next":null,"parent":"w+","inputs":{"INDEX":[3,"w,",[7,"1"]]},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"w,":{"opcode":"operator_add","next":null,"parent":"w*","inputs":{"NUM1":[3,"w-",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"w-":{"opcode":"data_itemoflist","next":null,"parent":"w,","inputs":{"INDEX":[3,"U:",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"U:":{"opcode":"operator_add","next":null,"parent":"w-","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"h#":{"opcode":"data_changevariableby","next":"h%","parent":"hN","inputs":{"VALUE":[3,"wY",[4,"1"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"wY":{"opcode":"data_itemoflist","next":null,"parent":"h#","inputs":{"INDEX":[3,"wZ",[7,"1"]]},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"wZ":{"opcode":"operator_add","next":null,"parent":"wY","inputs":{"NUM1":[3,"w!",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"w!":{"opcode":"data_itemoflist","next":null,"parent":"wZ","inputs":{"INDEX":[3,"U,",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"U,":{"opcode":"operator_add","next":null,"parent":"w!","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"h%":{"opcode":"data_setvariableto","next":"h(","parent":"h#","inputs":{"VALUE":[3,"w#",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"w#":{"opcode":"data_itemoflist","next":null,"parent":"h%","inputs":{"INDEX":[3,"w%",[7,"1"]]},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"w%":{"opcode":"operator_add","next":null,"parent":"w#","inputs":{"NUM1":[3,"w(",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"w(":{"opcode":"data_itemoflist","next":null,"parent":"w%","inputs":{"INDEX":[3,"U-",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"U-":{"opcode":"operator_add","next":null,"parent":"w(","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"h(":{"opcode":"data_setvariableto","next":"w","parent":"h%","inputs":{"VALUE":[3,"h)",[10,"0"]]},"fields":{"VARIABLE":["z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"]},"shadow":false,"topLevel":false},"h)":{"opcode":"operator_add","next":null,"parent":"h(","inputs":{"NUM1":[3,"w)",[4,""]],"NUM2":[3,"U.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"w)":{"opcode":"operator_multiply","next":null,"parent":"h)","inputs":{"NUM1":[3,"U/",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"U/":{"opcode":"data_itemoflist","next":null,"parent":"w)","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"U.":{"opcode":"data_itemoflist","next":null,"parent":"h)","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"w":{"opcode":"control_if_else","next":"w.","parent":"h(","inputs":{"CONDITION":[2,"U;"],"SUBSTACK":[2,"bK"],"SUBSTACK2":[2,"a,"]},"fields":{},"shadow":false,"topLevel":false},"U;":{"opcode":"operator_lt","next":null,"parent":"w","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"bK":{"opcode":"control_if_else","next":null,"parent":"w","inputs":{"CONDITION":[2,"U="],"SUBSTACK":[2,"a-"],"SUBSTACK2":[2,"a."]},"fields":{},"shadow":false,"topLevel":false},"U=":{"opcode":"operator_lt","next":null,"parent":"bK","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"a-":{"opcode":"control_if_else","next":null,"parent":"bK","inputs":{"CONDITION":[2,"U?"],"SUBSTACK":[2,"a/"],"SUBSTACK2":[2,"a:"]},"fields":{},"shadow":false,"topLevel":false},"U?":{"opcode":"operator_lt","next":null,"parent":"a-","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"a/":{"opcode":"control_if_else","next":null,"parent":"a-","inputs":{"CONDITION":[2,"U@"],"SUBSTACK":[2,"h*"],"SUBSTACK2":[2,"a;"]},"fields":{},"shadow":false,"topLevel":false},"U@":{"opcode":"operator_lt","next":null,"parent":"a/","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"h*":{"opcode":"control_if_else","next":null,"parent":"a/","inputs":{"CONDITION":[2,"U["],"SUBSTACK2":[2,"U]"]},"fields":{},"shadow":false,"topLevel":false},"U[":{"opcode":"operator_lt","next":null,"parent":"h*","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"U]":{"opcode":"procedures_call","next":null,"parent":"h*","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD r,r","argumentids":"[]","warp":"true"}},"a;":{"opcode":"control_if_else","next":null,"parent":"a/","inputs":{"CONDITION":[2,"U^"],"SUBSTACK":[2,"U_"],"SUBSTACK2":[2,"vw"]},"fields":{},"shadow":false,"topLevel":false},"U^":{"opcode":"operator_lt","next":null,"parent":"a;","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"U_":{"opcode":"procedures_call","next":null,"parent":"a;","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~MISC","argumentids":"[]","warp":"true"}},"vw":{"opcode":"data_setvariableto","next":null,"parent":"a;","inputs":{"VALUE":[3,"vx",[10,"0"]]},"fields":{"VARIABLE":["cpu.interruptSwitch","T2{Yzl11_xkw11Yf4s3m"]},"shadow":false,"topLevel":false},"vx":{"opcode":"data_itemoflist","next":null,"parent":"vw","inputs":{"INDEX":[3,"U`",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"U`":{"opcode":"operator_add","next":null,"parent":"vx","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"a:":{"opcode":"control_if_else","next":null,"parent":"a-","inputs":{"CONDITION":[2,"U{"],"SUBSTACK":[2,"a="],"SUBSTACK2":[2,"a?"]},"fields":{},"shadow":false,"topLevel":false},"U{":{"opcode":"operator_lt","next":null,"parent":"a:","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"a=":{"opcode":"control_if_else","next":null,"parent":"a:","inputs":{"CONDITION":[2,"U|"],"SUBSTACK":[2,"U}"],"SUBSTACK2":[2,"U~"]},"fields":{},"shadow":false,"topLevel":false},"U|":{"opcode":"operator_lt","next":null,"parent":"a=","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"U}":{"opcode":"procedures_call","next":null,"parent":"a=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD HL","argumentids":"[]","warp":"true"}},"U~":{"opcode":"procedures_call","next":null,"parent":"a=","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~ADD/ADC A","argumentids":"[]","warp":"true"}},"a?":{"opcode":"control_if_else","next":null,"parent":"a:","inputs":{"CONDITION":[2,"Va"],"SUBSTACK":[2,"Vb"],"SUBSTACK2":[2,"Vc"]},"fields":{},"shadow":false,"topLevel":false},"Va":{"opcode":"operator_lt","next":null,"parent":"a?","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Vb":{"opcode":"procedures_call","next":null,"parent":"a?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SUB/SBC/CP A","argumentids":"[]","warp":"true"}},"Vc":{"opcode":"procedures_call","next":null,"parent":"a?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~AND A","argumentids":"[]","warp":"true"}},"a.":{"opcode":"control_if_else","next":null,"parent":"bK","inputs":{"CONDITION":[2,"Vd"],"SUBSTACK":[2,"a@"],"SUBSTACK2":[2,"a]"]},"fields":{},"shadow":false,"topLevel":false},"Vd":{"opcode":"operator_lt","next":null,"parent":"a.","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"12"]]},"fields":{},"shadow":false,"topLevel":false},"a@":{"opcode":"control_if_else","next":null,"parent":"a.","inputs":{"CONDITION":[2,"Ve"],"SUBSTACK":[2,"a^"],"SUBSTACK2":[2,"a_"]},"fields":{},"shadow":false,"topLevel":false},"Ve":{"opcode":"operator_lt","next":null,"parent":"a@","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"10"]]},"fields":{},"shadow":false,"topLevel":false},"a^":{"opcode":"control_if_else","next":null,"parent":"a@","inputs":{"CONDITION":[2,"Vf"],"SUBSTACK":[2,"Vg"],"SUBSTACK2":[2,"Vh"]},"fields":{},"shadow":false,"topLevel":false},"Vf":{"opcode":"operator_lt","next":null,"parent":"a^","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Vg":{"opcode":"procedures_call","next":null,"parent":"a^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~XOR A","argumentids":"[]","warp":"true"}},"Vh":{"opcode":"procedures_call","next":null,"parent":"a^","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~OR A","argumentids":"[]","warp":"true"}},"a_":{"opcode":"control_if_else","next":null,"parent":"a@","inputs":{"CONDITION":[2,"Vi"],"SUBSTACK":[2,"Vj"],"SUBSTACK2":[2,"Vk"]},"fields":{},"shadow":false,"topLevel":false},"Vi":{"opcode":"operator_lt","next":null,"parent":"a_","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"11"]]},"fields":{},"shadow":false,"topLevel":false},"Vj":{"opcode":"procedures_call","next":null,"parent":"a_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD r16","argumentids":"[]","warp":"true"}},"Vk":{"opcode":"procedures_call","next":null,"parent":"a_","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD ptr","argumentids":"[]","warp":"true"}},"a]":{"opcode":"control_if_else","next":null,"parent":"a.","inputs":{"CONDITION":[2,"Vl"],"SUBSTACK":[2,"a`"],"SUBSTACK2":[2,"a{"]},"fields":{},"shadow":false,"topLevel":false},"Vl":{"opcode":"operator_lt","next":null,"parent":"a]","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"14"]]},"fields":{},"shadow":false,"topLevel":false},"a`":{"opcode":"control_if_else","next":null,"parent":"a]","inputs":{"CONDITION":[2,"Vm"],"SUBSTACK":[2,"Vn"],"SUBSTACK2":[2,"Vo"]},"fields":{},"shadow":false,"topLevel":false},"Vm":{"opcode":"operator_lt","next":null,"parent":"a`","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"13"]]},"fields":{},"shadow":false,"topLevel":false},"Vn":{"opcode":"procedures_call","next":null,"parent":"a`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC r16","argumentids":"[]","warp":"true"}},"Vo":{"opcode":"procedures_call","next":null,"parent":"a`","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~INC/DEC r8","argumentids":"[]","warp":"true"}},"a{":{"opcode":"control_if_else","next":null,"parent":"a]","inputs":{"CONDITION":[2,"Vp"],"SUBSTACK":[2,"Vq"],"SUBSTACK2":[2,"Vr"]},"fields":{},"shadow":false,"topLevel":false},"Vp":{"opcode":"operator_lt","next":null,"parent":"a{","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Vq":{"opcode":"procedures_call","next":null,"parent":"a{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JR i8","argumentids":"[]","warp":"true"}},"Vr":{"opcode":"procedures_call","next":null,"parent":"a{","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RET","argumentids":"[]","warp":"true"}},"a,":{"opcode":"control_if_else","next":null,"parent":"w","inputs":{"CONDITION":[2,"Vs"],"SUBSTACK":[2,"a|"],"SUBSTACK2":[2,"h+"]},"fields":{},"shadow":false,"topLevel":false},"Vs":{"opcode":"operator_lt","next":null,"parent":"a,","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"a|":{"opcode":"control_if_else","next":null,"parent":"a,","inputs":{"CONDITION":[2,"Vt"],"SUBSTACK":[2,"a}"],"SUBSTACK2":[2,"cr"]},"fields":{},"shadow":false,"topLevel":false},"Vt":{"opcode":"operator_lt","next":null,"parent":"a|","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"20"]]},"fields":{},"shadow":false,"topLevel":false},"a}":{"opcode":"control_if_else","next":null,"parent":"a|","inputs":{"CONDITION":[2,"Lm"],"SUBSTACK":[2,"|"],"SUBSTACK2":[2,"cC"]},"fields":{},"shadow":false,"topLevel":false},"Lm":{"opcode":"operator_lt","next":null,"parent":"a}","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"18"]]},"fields":{},"shadow":false,"topLevel":false},"|":{"opcode":"control_if_else","next":null,"parent":"a}","inputs":{"CONDITION":[2,"Ln"],"SUBSTACK":[2,"Lo"],"SUBSTACK2":[2,"Lp"]},"fields":{},"shadow":false,"topLevel":false},"Ln":{"opcode":"operator_lt","next":null,"parent":"|","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"17"]]},"fields":{},"shadow":false,"topLevel":false},"Lo":{"opcode":"procedures_call","next":null,"parent":"|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JP u16","argumentids":"[]","warp":"true"}},"Lp":{"opcode":"procedures_call","next":null,"parent":"|","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CALL u16","argumentids":"[]","warp":"true"}},"cC":{"opcode":"control_if_else","next":null,"parent":"a}","inputs":{"CONDITION":[2,"Lr"],"SUBSTACK":[2,"Ls"],"SUBSTACK2":[2,"Lt"]},"fields":{},"shadow":false,"topLevel":false},"Lr":{"opcode":"operator_lt","next":null,"parent":"cC","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"19"]]},"fields":{},"shadow":false,"topLevel":false},"Ls":{"opcode":"procedures_call","next":null,"parent":"cC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~POP r16","argumentids":"[]","warp":"true"}},"Lt":{"opcode":"procedures_call","next":null,"parent":"cC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~PUSH r16","argumentids":"[]","warp":"true"}},"cr":{"opcode":"control_if_else","next":null,"parent":"a|","inputs":{"CONDITION":[2,"Vu"],"SUBSTACK":[2,"cq"],"SUBSTACK2":[2,"x"]},"fields":{},"shadow":false,"topLevel":false},"Vu":{"opcode":"operator_lt","next":null,"parent":"cr","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"22"]]},"fields":{},"shadow":false,"topLevel":false},"cq":{"opcode":"control_if_else","next":null,"parent":"cr","inputs":{"CONDITION":[2,"Vv"],"SUBSTACK":[2,"vy"],"SUBSTACK2":[2,"Vw"]},"fields":{},"shadow":false,"topLevel":false},"Vv":{"opcode":"operator_lt","next":null,"parent":"cq","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"21"]]},"fields":{},"shadow":false,"topLevel":false},"vy":{"opcode":"procedures_call","next":"vI","parent":"cq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~CALL u16","argumentids":"[]","warp":"true"}},"vI":{"opcode":"data_setvariableto","next":null,"parent":"vy","inputs":{"VALUE":[3,"w/",[10,"0"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"w/":{"opcode":"operator_multiply","next":null,"parent":"vI","inputs":{"NUM1":[3,"w:",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"w:":{"opcode":"data_itemoflist","next":null,"parent":"w/","inputs":{"INDEX":[3,"Vx",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"Vx":{"opcode":"operator_add","next":null,"parent":"w:","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"Vw":{"opcode":"procedures_call","next":null,"parent":"cq","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~HL transfers","argumentids":"[]","warp":"true"}},"x":{"opcode":"control_if_else","next":"w;","parent":"cr","inputs":{"CONDITION":[2,"Vy"],"SUBSTACK":[2,"Vz"],"SUBSTACK2":[2,"VA"]},"fields":{},"shadow":false,"topLevel":false},"Vy":{"opcode":"operator_lt","next":null,"parent":"x","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"23"]]},"fields":{},"shadow":false,"topLevel":false},"Vz":{"opcode":"procedures_call","next":null,"parent":"x","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLCA/RRCA","argumentids":"[]","warp":"true"}},"VA":{"opcode":"procedures_call","next":null,"parent":"x","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~RLA/RRA","argumentids":"[]","warp":"true"}},"w;":{"opcode":"data_replaceitemoflist","next":"w=","parent":"x","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"w=":{"opcode":"data_replaceitemoflist","next":"w?","parent":"w;","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"w?":{"opcode":"data_replaceitemoflist","next":"w@","parent":"w=","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"w@":{"opcode":"data_replaceitemoflist","next":"VB","parent":"w?","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"VB":{"opcode":"data_replaceitemoflist","next":null,"parent":"w@","inputs":{"INDEX":[1,[7,"8"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"h+":{"opcode":"control_if","next":null,"parent":"a,","inputs":{"CONDITION":[2,"VC"],"SUBSTACK":[2,"c-"]},"fields":{},"shadow":false,"topLevel":false},"VC":{"opcode":"operator_lt","next":null,"parent":"h+","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"28"]]},"fields":{},"shadow":false,"topLevel":false},"c-":{"opcode":"control_if_else","next":null,"parent":"h+","inputs":{"CONDITION":[2,"VD"],"SUBSTACK":[2,"cx"],"SUBSTACK2":[2,"a~"]},"fields":{},"shadow":false,"topLevel":false},"VD":{"opcode":"operator_lt","next":null,"parent":"c-","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"26"]]},"fields":{},"shadow":false,"topLevel":false},"cx":{"opcode":"control_if_else","next":null,"parent":"c-","inputs":{"CONDITION":[2,"VE"],"SUBSTACK":[2,"VF"],"SUBSTACK2":[2,"VG"]},"fields":{},"shadow":false,"topLevel":false},"VE":{"opcode":"operator_lt","next":null,"parent":"cx","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"25"]]},"fields":{},"shadow":false,"topLevel":false},"VF":{"opcode":"procedures_call","next":null,"parent":"cx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LDH A","argumentids":"[]","warp":"true"}},"VG":{"opcode":"procedures_call","next":null,"parent":"cx","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~SP+i8","argumentids":"[]","warp":"true"}},"a~":{"opcode":"control_if_else","next":null,"parent":"c-","inputs":{"CONDITION":[2,"Lu"],"SUBSTACK":[2,"Lv"],"SUBSTACK2":[2,"Lw"]},"fields":{},"shadow":false,"topLevel":false},"Lu":{"opcode":"operator_lt","next":null,"parent":"a~","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"27"]]},"fields":{},"shadow":false,"topLevel":false},"Lv":{"opcode":"procedures_call","next":null,"parent":"a~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~LD [NNNN]","argumentids":"[]","warp":"true"}},"Lw":{"opcode":"procedures_call","next":null,"parent":"a~","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~BIT OPS","argumentids":"[]","warp":"true"}},"w.":{"opcode":"data_changevariableby","next":"VH","parent":"w","inputs":{"VALUE":[1,[4,"4"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"VH":{"opcode":"procedures_call","next":null,"parent":"w.","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"checkStat","argumentids":"[]","warp":"true"}},"B?":{"opcode":"procedures_call","next":null,"parent":"aZ","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"frameEvent","argumentids":"[]","warp":"true"}},"UH":{"opcode":"control_if","next":null,"parent":null,"inputs":{"CONDITION":[2,"UI"]},"fields":{},"shadow":false,"topLevel":true,"x":21601,"y":64},"UI":{"opcode":"operator_equals","next":null,"parent":"UH","inputs":{"OPERAND1":[3,[12,"cpu.HALT","UF5:UF)p/5::_8Qn?wJH"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"w[":{"opcode":"procedures_definition","next":"bA","parent":null,"inputs":{"custom_block":[1,"VI"]},"fields":{},"shadow":false,"topLevel":true,"x":41787,"y":462},"VI":{"opcode":"procedures_prototype","next":null,"parent":"w[","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.readValue","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"bA":{"opcode":"control_if_else","next":null,"parent":"w[","inputs":{"CONDITION":[2,"w]"],"SUBSTACK":[2,"w^"],"SUBSTACK2":[2,"bB"]},"fields":{},"shadow":false,"topLevel":false},"w]":{"opcode":"operator_equals","next":null,"parent":"bA","inputs":{"OPERAND1":[3,"w_",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"w_":{"opcode":"data_itemoflist","next":null,"parent":"w]","inputs":{"INDEX":[3,"VJ",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VJ":{"opcode":"operator_add","next":null,"parent":"w_","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"w^":{"opcode":"data_setvariableto","next":null,"parent":"bA","inputs":{"VALUE":[3,"w`",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"w`":{"opcode":"data_itemoflist","next":null,"parent":"w^","inputs":{"INDEX":[3,"VK",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VK":{"opcode":"operator_add","next":null,"parent":"w`","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"bB":{"opcode":"control_if_else","next":null,"parent":"bA","inputs":{"CONDITION":[2,"w{"],"SUBSTACK":[2,"VL"],"SUBSTACK2":[2,"w|"]},"fields":{},"shadow":false,"topLevel":false},"w{":{"opcode":"operator_equals","next":null,"parent":"bB","inputs":{"OPERAND1":[3,"w}",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"w}":{"opcode":"data_itemoflist","next":null,"parent":"w{","inputs":{"INDEX":[3,"VM",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VM":{"opcode":"operator_add","next":null,"parent":"w}","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"VL":{"opcode":"procedures_call","next":null,"parent":"bB","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"w|":{"opcode":"data_setvariableto","next":null,"parent":"bB","inputs":{"VALUE":[3,"w~",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"w~":{"opcode":"data_itemoflist","next":null,"parent":"w|","inputs":{"INDEX":[3,"xa",[7,"4"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"xa":{"opcode":"operator_add","next":null,"parent":"w~","inputs":{"NUM1":[3,"xb",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"xb":{"opcode":"data_itemoflist","next":null,"parent":"xa","inputs":{"INDEX":[3,"VN",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VN":{"opcode":"operator_add","next":null,"parent":"xb","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"xc":{"opcode":"procedures_definition","next":"xd","parent":null,"inputs":{"custom_block":[1,"VO"]},"fields":{},"shadow":false,"topLevel":true,"x":41787,"y":64},"VO":{"opcode":"procedures_prototype","next":null,"parent":"xc","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~JR i8","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"xd":{"opcode":"procedures_call","next":"h,","parent":"xc","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.evalcondition","argumentids":"[]","warp":"true"}},"h,":{"opcode":"control_if","next":null,"parent":"xd","inputs":{"CONDITION":[2,"h-"],"SUBSTACK":[2,"h."]},"fields":{},"shadow":false,"topLevel":false},"h-":{"opcode":"operator_or","next":null,"parent":"h,","inputs":{"OPERAND1":[2,"xe"],"OPERAND2":[2,"VP"]},"fields":{},"shadow":false,"topLevel":false},"xe":{"opcode":"operator_equals","next":null,"parent":"h-","inputs":{"OPERAND1":[3,"xf",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xf":{"opcode":"data_itemoflist","next":null,"parent":"xe","inputs":{"INDEX":[3,"VQ",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VQ":{"opcode":"operator_add","next":null,"parent":"xf","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"VP":{"opcode":"operator_equals","next":null,"parent":"h-","inputs":{"OPERAND1":[3,[12,"cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"h.":{"opcode":"data_changevariableby","next":"h/","parent":"h,","inputs":{"VALUE":[2,"VR"]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"VR":{"opcode":"operator_multiply","next":null,"parent":"h.","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[2,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"]]},"fields":{},"shadow":false,"topLevel":false},"h/":{"opcode":"data_changevariableby","next":"xg","parent":"h.","inputs":{"VALUE":[3,"h:",[4,"1"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"h:":{"opcode":"operator_subtract","next":null,"parent":"h/","inputs":{"NUM1":[3,"xh",[4,""]],"NUM2":[3,"xi",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xh":{"opcode":"operator_mod","next":null,"parent":"h:","inputs":{"NUM1":[3,"xj",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"xj":{"opcode":"operator_multiply","next":null,"parent":"xh","inputs":{"NUM1":[3,"xk",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"xk":{"opcode":"data_itemoflist","next":null,"parent":"xj","inputs":{"INDEX":[3,"VS",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VS":{"opcode":"operator_add","next":null,"parent":"xk","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"xi":{"opcode":"data_itemoflist","next":null,"parent":"h:","inputs":{"INDEX":[3,"VT",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"VT":{"opcode":"operator_add","next":null,"parent":"xi","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"xg":{"opcode":"data_setvariableto","next":null,"parent":"h/","inputs":{"VALUE":[3,"VU",[10,"1"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"VU":{"opcode":"operator_mod","next":null,"parent":"xg","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"xs":{"opcode":"procedures_definition","next":"h?","parent":null,"inputs":{"custom_block":[1,"sC"]},"fields":{},"shadow":false,"topLevel":true,"x":18647,"y":64},"sC":{"opcode":"procedures_prototype","next":null,"parent":"xs","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"frameEvent","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"h?":{"opcode":"control_if","next":null,"parent":"xs","inputs":{"CONDITION":[2,"sE"],"SUBSTACK":[2,"xt"]},"fields":{},"shadow":false,"topLevel":false},"sE":{"opcode":"operator_equals","next":null,"parent":"h?","inputs":{"OPERAND1":[3,[12,"frameEvent","V@7TC6e6AtIrZ@k3FpT+"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"xt":{"opcode":"procedures_call","next":"xF","parent":"h?","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulator.updateJoypadKeys","argumentids":"[]","warp":"true"}},"xF":{"opcode":"procedures_call","next":"xE","parent":"xt","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulator.joyPadLogic","argumentids":"[]","warp":"true"}},"xE":{"opcode":"data_setvariableto","next":"xG","parent":"xF","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["frameEvent","V@7TC6e6AtIrZ@k3FpT+"]},"shadow":false,"topLevel":false},"xG":{"opcode":"data_setvariableto","next":"bC","parent":"xE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["debugCallsToRender","i|7Rh#v;TOMTA#`V;t_3"]},"shadow":false,"topLevel":false},"bC":{"opcode":"control_if","next":"ig","parent":"xG","inputs":{"CONDITION":[2,"u?"],"SUBSTACK":[2,"sH"]},"fields":{},"shadow":false,"topLevel":false},"u?":{"opcode":"operator_equals","next":null,"parent":"bC","inputs":{"OPERAND1":[3,[12,"frameSkipRender","lfS[gpD+gL}rms2!4~{|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"sH":{"opcode":"procedures_call","next":null,"parent":"bC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.screen","argumentids":"[]","warp":"true"}},"ig":{"opcode":"data_changevariableby","next":"z","parent":"bC","inputs":{"VALUE":[3,"yT",[4,"1"]]},"fields":{"VARIABLE":["frameSkipFraction","JPG$FYxfb/]Hjw5bCKdL"]},"shadow":false,"topLevel":false},"yT":{"opcode":"operator_divide","next":null,"parent":"ig","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"u*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"u*":{"opcode":"operator_add","next":null,"parent":"yT","inputs":{"NUM1":[3,[12,"_frameskip","zlr~/nTuf%4+EWWaG7Uy"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z":{"opcode":"control_if_else","next":"ih","parent":"ig","inputs":{"CONDITION":[2,"yU"],"SUBSTACK":[2,"yV"],"SUBSTACK2":[2,"u+"]},"fields":{},"shadow":false,"topLevel":false},"yU":{"opcode":"operator_not","next":null,"parent":"z","inputs":{"OPERAND":[2,"u;"]},"fields":{},"shadow":false,"topLevel":false},"u;":{"opcode":"operator_lt","next":null,"parent":"yU","inputs":{"OPERAND1":[3,[12,"frameSkipFraction","JPG$FYxfb/]Hjw5bCKdL"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yV":{"opcode":"data_setvariableto","next":"u=","parent":"z","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["frameSkipRender","lfS[gpD+gL}rms2!4~{|"]},"shadow":false,"topLevel":false},"u=":{"opcode":"data_changevariableby","next":null,"parent":"yV","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["frameSkipFraction","JPG$FYxfb/]Hjw5bCKdL"]},"shadow":false,"topLevel":false},"u+":{"opcode":"data_setvariableto","next":null,"parent":"z","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["frameSkipRender","lfS[gpD+gL}rms2!4~{|"]},"shadow":false,"topLevel":false},"ih":{"opcode":"data_setvariableto","next":"bm","parent":"z","inputs":{"VALUE":[3,"D(",[10,"0"]]},"fields":{"VARIABLE":["frametime","RldF^BG,ge1;xMY(LM1!"]},"shadow":false,"topLevel":false},"D(":{"opcode":"operator_multiply","next":null,"parent":"ih","inputs":{"NUM1":[3,"D*",[4,""]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"D*":{"opcode":"operator_subtract","next":null,"parent":"D(","inputs":{"NUM1":[3,"W#",[4,""]],"NUM2":[3,[12,"z_","[E$fJaU2C]]!*+L0vkou"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"W#":{"opcode":"sensing_dayssince2000","next":null,"parent":"D*","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bm":{"opcode":"data_setvariableto","next":"bn","parent":"ih","inputs":{"VALUE":[3,"W%",[10,"0"]]},"fields":{"VARIABLE":["z_","[E$fJaU2C]]!*+L0vkou"]},"shadow":false,"topLevel":false},"W%":{"opcode":"sensing_dayssince2000","next":null,"parent":"bm","inputs":{},"fields":{},"shadow":false,"topLevel":false},"bn":{"opcode":"data_changevariableby","next":"bo","parent":"bm","inputs":{"VALUE":[3,"D)",[4,"0"]]},"fields":{"VARIABLE":["fps1","h^{RWHXL@$`!pLh:D^r_"]},"shadow":false,"topLevel":false},"D)":{"opcode":"operator_divide","next":null,"parent":"bn","inputs":{"NUM1":[3,"WY",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"WY":{"opcode":"operator_subtract","next":null,"parent":"D)","inputs":{"NUM1":[3,[12,"frametime","RldF^BG,ge1;xMY(LM1!"],[4,""]],"NUM2":[3,[12,"fps1","h^{RWHXL@$`!pLh:D^r_"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"bo":{"opcode":"data_setvariableto","next":"WZ","parent":"bn","inputs":{"VALUE":[3,"W!",[10,"0"]]},"fields":{"VARIABLE":["displayFPS","oId2/c|T8}NSd(N,,B@w"]},"shadow":false,"topLevel":false},"W!":{"opcode":"operator_divide","next":null,"parent":"bo","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"fps1","h^{RWHXL@$`!pLh:D^r_"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"WZ":{"opcode":"event_broadcast","next":null,"parent":"bo","inputs":{"BROADCAST_INPUT":[1,[11,"drawFPScounter","I_(AeXui8E/6)MsAd^JH"]]},"fields":{},"shadow":false,"topLevel":false},"sK":{"opcode":"event_whenbroadcastreceived","next":"xH","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["Project not saving fix","n=7([^n}zhPcS5Fr5t]P"]},"shadow":false,"topLevel":true,"x":5085,"y":248},"xH":{"opcode":"data_deletealloflist","next":"xI","parent":"sK","inputs":{},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"xI":{"opcode":"data_deletealloflist","next":"xJ","parent":"xH","inputs":{},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"xJ":{"opcode":"data_deletealloflist","next":"xK","parent":"xI","inputs":{},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"xK":{"opcode":"data_deletealloflist","next":"xL","parent":"xJ","inputs":{},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"xL":{"opcode":"data_deletealloflist","next":"xM","parent":"xK","inputs":{},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"xM":{"opcode":"data_deletealloflist","next":"xN","parent":"xL","inputs":{},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"xN":{"opcode":"data_deletealloflist","next":"xO","parent":"xM","inputs":{},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"xO":{"opcode":"data_deletealloflist","next":"xP","parent":"xN","inputs":{},"fields":{"LIST":["cpu.op1","=UPLEXLt+sQha?gN(bE/"]},"shadow":false,"topLevel":false},"xP":{"opcode":"data_deletealloflist","next":"xQ","parent":"xO","inputs":{},"fields":{"LIST":["cpu.op2","Lt0wdY)J%D%!;#D7STRc"]},"shadow":false,"topLevel":false},"xQ":{"opcode":"data_deletealloflist","next":"xR","parent":"xP","inputs":{},"fields":{"LIST":["cpu.opblocks","u]+rZIFXRrB)^_QPaU`W"]},"shadow":false,"topLevel":false},"x)":{"opcode":"procedures_definition","next":"cy","parent":null,"inputs":{"custom_block":[1,"x*"]},"fields":{},"shadow":false,"topLevel":true,"x":48173,"y":282},"x*":{"opcode":"procedures_prototype","next":null,"parent":"x)","inputs":{"oi:f2-}xLvUL+Sty6wce":[1,"t@"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","argumentnames":"[\"addr\"]","argumentdefaults":"[\"\"]","warp":"true"}},"t@":{"opcode":"argument_reporter_string_number","next":null,"parent":"x*","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"cy":{"opcode":"control_if_else","next":null,"parent":"x)","inputs":{"CONDITION":[2,"G{"],"SUBSTACK":[2,"cI"],"SUBSTACK2":[2,"c|"]},"fields":{},"shadow":false,"topLevel":false},"G{":{"opcode":"operator_lt","next":null,"parent":"cy","inputs":{"OPERAND1":[3,"M,",[10,""]],"OPERAND2":[1,[10,"0x8000"]]},"fields":{},"shadow":false,"topLevel":false},"M,":{"opcode":"argument_reporter_string_number","next":null,"parent":"G{","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cI":{"opcode":"control_if_else","next":null,"parent":"cy","inputs":{"CONDITION":[2,"G|"],"SUBSTACK":[2,"G}"],"SUBSTACK2":[2,"G~"]},"fields":{},"shadow":false,"topLevel":false},"G|":{"opcode":"operator_lt","next":null,"parent":"cI","inputs":{"OPERAND1":[3,"M-",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"M-":{"opcode":"argument_reporter_string_number","next":null,"parent":"G|","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"G}":{"opcode":"data_setvariableto","next":null,"parent":"cI","inputs":{"VALUE":[3,"Ha",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Ha":{"opcode":"data_itemoflist","next":null,"parent":"G}","inputs":{"INDEX":[3,"Hb",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"Hb":{"opcode":"operator_add","next":null,"parent":"Ha","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"M=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"M=":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hb","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"G~":{"opcode":"data_setvariableto","next":null,"parent":"cI","inputs":{"VALUE":[3,"Hc",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Hc":{"opcode":"data_itemoflist","next":null,"parent":"G~","inputs":{"INDEX":[3,"Hd",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"Hd":{"opcode":"operator_add","next":null,"parent":"Hc","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k+":{"opcode":"operator_add","next":null,"parent":"Hd","inputs":{"NUM1":[3,"He",[4,""]],"NUM2":[3,"M?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"He":{"opcode":"operator_subtract","next":null,"parent":"k+","inputs":{"NUM1":[3,"M@",[4,""]],"NUM2":[1,[4,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"M@":{"opcode":"argument_reporter_string_number","next":null,"parent":"He","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"M?":{"opcode":"operator_multiply","next":null,"parent":"k+","inputs":{"NUM1":[3,[12,"mmu.rombank","!7Po9_*W!#iS];em7]$r"],[4,""]],"NUM2":[1,[4,"16384"]]},"fields":{},"shadow":false,"topLevel":false},"c|":{"opcode":"control_if_else","next":null,"parent":"cy","inputs":{"CONDITION":[2,"Hf"],"SUBSTACK":[2,"cJ"],"SUBSTACK2":[2,"cK"]},"fields":{},"shadow":false,"topLevel":false},"Hf":{"opcode":"operator_lt","next":null,"parent":"c|","inputs":{"OPERAND1":[3,"M[",[10,""]],"OPERAND2":[1,[10,"0xC000"]]},"fields":{},"shadow":false,"topLevel":false},"M[":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hf","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cJ":{"opcode":"control_if_else","next":null,"parent":"c|","inputs":{"CONDITION":[2,"Hg"],"SUBSTACK":[2,"Hh"],"SUBSTACK2":[2,"Hi"]},"fields":{},"shadow":false,"topLevel":false},"Hg":{"opcode":"operator_lt","next":null,"parent":"cJ","inputs":{"OPERAND1":[3,"M]",[10,""]],"OPERAND2":[1,[10,"0xA000"]]},"fields":{},"shadow":false,"topLevel":false},"M]":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hg","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Hh":{"opcode":"data_setvariableto","next":null,"parent":"cJ","inputs":{"VALUE":[3,"Hj",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Hj":{"opcode":"data_itemoflist","next":null,"parent":"Hh","inputs":{"INDEX":[3,"Hk",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"Hk":{"opcode":"operator_add","next":null,"parent":"Hj","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k,",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k,":{"opcode":"operator_add","next":null,"parent":"Hk","inputs":{"NUM1":[3,"Hl",[4,""]],"NUM2":[3,"M^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Hl":{"opcode":"operator_mod","next":null,"parent":"k,","inputs":{"NUM1":[3,"M_",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"M_":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hl","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"M^":{"opcode":"operator_multiply","next":null,"parent":"k,","inputs":{"NUM1":[3,[12,"mmu.vrambank","g?mSsNCoU094~azf1Kw|"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"Hi":{"opcode":"data_setvariableto","next":null,"parent":"cJ","inputs":{"VALUE":[3,"Hm",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Hm":{"opcode":"data_itemoflist","next":null,"parent":"Hi","inputs":{"INDEX":[3,"Hn",[7,"1"]]},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"Hn":{"opcode":"operator_add","next":null,"parent":"Hm","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k-",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k-":{"opcode":"operator_add","next":null,"parent":"Hn","inputs":{"NUM1":[3,"Ho",[4,""]],"NUM2":[3,"M`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ho":{"opcode":"operator_mod","next":null,"parent":"k-","inputs":{"NUM1":[3,"M{",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"M{":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ho","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"M`":{"opcode":"operator_multiply","next":null,"parent":"k-","inputs":{"NUM1":[3,[12,"mmu.srambank","+F4tew{OQ9t*u:UEayCL"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"cK":{"opcode":"control_if_else","next":null,"parent":"c|","inputs":{"CONDITION":[2,"Hp"],"SUBSTACK":[2,"cL"],"SUBSTACK2":[2,"cN"]},"fields":{},"shadow":false,"topLevel":false},"Hp":{"opcode":"operator_lt","next":null,"parent":"cK","inputs":{"OPERAND1":[3,"M|",[10,""]],"OPERAND2":[1,[10,"0xFE00"]]},"fields":{},"shadow":false,"topLevel":false},"M|":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hp","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cL":{"opcode":"control_if_else","next":null,"parent":"cK","inputs":{"CONDITION":[2,"Hq"],"SUBSTACK":[2,"Hr"],"SUBSTACK2":[2,"Hs"]},"fields":{},"shadow":false,"topLevel":false},"Hq":{"opcode":"operator_lt","next":null,"parent":"cL","inputs":{"OPERAND1":[3,"Ht",[10,""]],"OPERAND2":[1,[10,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"Ht":{"opcode":"operator_mod","next":null,"parent":"Hq","inputs":{"NUM1":[3,"M}",[4,""]],"NUM2":[1,[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"M}":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ht","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Hr":{"opcode":"data_setvariableto","next":null,"parent":"cL","inputs":{"VALUE":[3,"Hu",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Hu":{"opcode":"data_itemoflist","next":null,"parent":"Hr","inputs":{"INDEX":[3,"Hv",[7,"1"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"Hv":{"opcode":"operator_add","next":null,"parent":"Hu","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"Hw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Hw":{"opcode":"operator_mod","next":null,"parent":"Hv","inputs":{"NUM1":[3,"M~",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"M~":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hw","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Hs":{"opcode":"data_setvariableto","next":null,"parent":"cL","inputs":{"VALUE":[3,"Hx",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Hx":{"opcode":"data_itemoflist","next":null,"parent":"Hs","inputs":{"INDEX":[3,"Hy",[7,"1"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"Hy":{"opcode":"operator_add","next":null,"parent":"Hx","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"k.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"k.":{"opcode":"operator_add","next":null,"parent":"Hy","inputs":{"NUM1":[3,"Hz",[4,""]],"NUM2":[3,"Na",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Hz":{"opcode":"operator_mod","next":null,"parent":"k.","inputs":{"NUM1":[3,"Nb",[4,""]],"NUM2":[1,[4,"0x1000"]]},"fields":{},"shadow":false,"topLevel":false},"Nb":{"opcode":"argument_reporter_string_number","next":null,"parent":"Hz","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Na":{"opcode":"operator_multiply","next":null,"parent":"k.","inputs":{"NUM1":[3,[12,"mmu.wrambank","X):[=M.}b*15xJ-uP[dT"],[4,""]],"NUM2":[1,[4,"4096"]]},"fields":{},"shadow":false,"topLevel":false},"cN":{"opcode":"control_if_else","next":null,"parent":"cK","inputs":{"CONDITION":[2,"HA"],"SUBSTACK":[2,"HB"],"SUBSTACK2":[2,"cO"]},"fields":{},"shadow":false,"topLevel":false},"HA":{"opcode":"operator_lt","next":null,"parent":"cN","inputs":{"OPERAND1":[3,"Nc",[10,""]],"OPERAND2":[1,[10,"0xFF00"]]},"fields":{},"shadow":false,"topLevel":false},"Nc":{"opcode":"argument_reporter_string_number","next":null,"parent":"HA","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"HB":{"opcode":"data_setvariableto","next":null,"parent":"cN","inputs":{"VALUE":[3,"HC",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"HC":{"opcode":"data_itemoflist","next":null,"parent":"HB","inputs":{"INDEX":[3,"HD",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"HD":{"opcode":"operator_add","next":null,"parent":"HC","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"HE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"HE":{"opcode":"operator_mod","next":null,"parent":"HD","inputs":{"NUM1":[3,"Nd",[4,""]],"NUM2":[1,[4,"0x100"]]},"fields":{},"shadow":false,"topLevel":false},"Nd":{"opcode":"argument_reporter_string_number","next":null,"parent":"HE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cO":{"opcode":"control_if_else","next":null,"parent":"cN","inputs":{"CONDITION":[2,"HF"],"SUBSTACK":[2,"HG"],"SUBSTACK2":[2,"HH"]},"fields":{},"shadow":false,"topLevel":false},"HF":{"opcode":"operator_lt","next":null,"parent":"cO","inputs":{"OPERAND1":[3,"Ne",[10,""]],"OPERAND2":[1,[10,"0xFF80"]]},"fields":{},"shadow":false,"topLevel":false},"Ne":{"opcode":"argument_reporter_string_number","next":null,"parent":"HF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"HG":{"opcode":"procedures_call","next":"HI","parent":"cO","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"HI":{"opcode":"data_setvariableto","next":null,"parent":"HG","inputs":{"VALUE":[3,"HJ",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"HJ":{"opcode":"data_itemoflist","next":null,"parent":"HI","inputs":{"INDEX":[3,"HK",[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"HK":{"opcode":"operator_add","next":null,"parent":"HJ","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"HL",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"HL":{"opcode":"operator_mod","next":null,"parent":"HK","inputs":{"NUM1":[3,"Nf",[4,""]],"NUM2":[1,[4,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"Nf":{"opcode":"argument_reporter_string_number","next":null,"parent":"HL","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"HH":{"opcode":"data_setvariableto","next":null,"parent":"cO","inputs":{"VALUE":[3,"HM",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"HM":{"opcode":"data_itemoflist","next":null,"parent":"HH","inputs":{"INDEX":[3,"HN",[7,"1"]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"HN":{"opcode":"operator_add","next":null,"parent":"HM","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"HO",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"HO":{"opcode":"operator_mod","next":null,"parent":"HN","inputs":{"NUM1":[3,"Ng",[4,""]],"NUM2":[1,[4,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"Ng":{"opcode":"argument_reporter_string_number","next":null,"parent":"HO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"x+":{"opcode":"procedures_definition","next":"x,","parent":null,"inputs":{"custom_block":[1,"x-"]},"fields":{},"shadow":false,"topLevel":true,"x":1719,"y":64},"x-":{"opcode":"procedures_prototype","next":null,"parent":"x+","inputs":{"Es`9AAGB;?Te~g-eb+F7":[1,"t]"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"BRT %s","argumentids":"[\"Es`9AAGB;?Te~g-eb+F7\"]","argumentnames":"[\"N\"]","argumentdefaults":"[\"\"]","warp":"true"}},"t]":{"opcode":"argument_reporter_string_number","next":null,"parent":"x-","inputs":{},"fields":{"VALUE":["N",null]},"shadow":true,"topLevel":false},"x,":{"opcode":"data_deletealloflist","next":"x.","parent":"x+","inputs":{},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x.":{"opcode":"data_addtolist","next":"h@","parent":"x,","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"h@":{"opcode":"control_repeat","next":null,"parent":"x.","inputs":{"TIMES":[3,"t^",[6,"10"]],"SUBSTACK":[2,"h["]},"fields":{},"shadow":false,"topLevel":false},"t^":{"opcode":"argument_reporter_string_number","next":null,"parent":"h@","inputs":{},"fields":{"VALUE":["N",null]},"shadow":false,"topLevel":false},"h[":{"opcode":"data_setvariableto","next":"x/","parent":"h@","inputs":{"VALUE":[3,"t{",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"t{":{"opcode":"data_lengthoflist","next":null,"parent":"h[","inputs":{},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x/":{"opcode":"control_for_each","next":null,"parent":"h[","inputs":{"VALUE":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[6,"10"]],"SUBSTACK":[2,"h^"]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"h^":{"opcode":"data_replaceitemoflist","next":"x:","parent":"x/","inputs":{"INDEX":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[7,"1"]],"ITEM":[3,"x=",[10,""]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x=":{"opcode":"operator_multiply","next":null,"parent":"h^","inputs":{"NUM1":[3,"t|",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"t|":{"opcode":"data_itemoflist","next":null,"parent":"x=","inputs":{"INDEX":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x:":{"opcode":"data_addtolist","next":null,"parent":"h^","inputs":{"ITEM":[3,"x;",[10,""]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x;":{"opcode":"operator_add","next":null,"parent":"x:","inputs":{"NUM1":[3,"t~",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"t~":{"opcode":"data_itemoflist","next":null,"parent":"x;","inputs":{"INDEX":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x?":{"opcode":"procedures_definition","next":"x@","parent":null,"inputs":{"custom_block":[1,"ua"]},"fields":{},"shadow":false,"topLevel":true,"x":1719,"y":1077},"ua":{"opcode":"procedures_prototype","next":null,"parent":"x?","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.generateGBCpaletteLUT","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"x@":{"opcode":"data_deletealloflist","next":"x[","parent":"x?","inputs":{},"fields":{"LIST":["ppu.GBCpalettesLUT","F7rUuKZp/*Qkk(*IfGDC"]},"shadow":false,"topLevel":false},"x[":{"opcode":"data_setvariableto","next":"x]","parent":"x@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"x]":{"opcode":"control_repeat","next":null,"parent":"x[","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"x^"]},"fields":{},"shadow":false,"topLevel":false},"x^":{"opcode":"data_setvariableto","next":"h_","parent":"x]","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"h_":{"opcode":"control_repeat","next":"ue","parent":"x^","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"x_"]},"fields":{},"shadow":false,"topLevel":false},"x_":{"opcode":"data_setvariableto","next":"h`","parent":"h_","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"h`":{"opcode":"control_repeat","next":"uj","parent":"x_","inputs":{"TIMES":[1,[6,"32"]],"SUBSTACK":[2,"x`"]},"fields":{},"shadow":false,"topLevel":false},"x`":{"opcode":"procedures_call","next":"h{","parent":"h`","inputs":{")Idi7uZdm^3K)EUl#H9t":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"cSMN0`){V)Z_/}Sr*)k=":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"zp9+Aj/kKgW0kyng_/K/":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"color correct %s %s %s","argumentids":"[\")Idi7uZdm^3K)EUl#H9t\",\"cSMN0`){V)Z_/}Sr*)k=\",\"zp9+Aj/kKgW0kyng_/K/\"]","warp":"true"}},"h{":{"opcode":"data_addtolist","next":"uk","parent":"x`","inputs":{"ITEM":[3,"ia",[10,""]]},"fields":{"LIST":["ppu.GBCpalettesLUT","F7rUuKZp/*Qkk(*IfGDC"]},"shadow":false,"topLevel":false},"ia":{"opcode":"operator_add","next":null,"parent":"h{","inputs":{"NUM1":[3,"ib",[4,""]],"NUM2":[3,"uw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ib":{"opcode":"operator_add","next":null,"parent":"ia","inputs":{"NUM1":[3,"yb",[4,""]],"NUM2":[3,"ya",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"yb":{"opcode":"operator_multiply","next":null,"parent":"ib","inputs":{"NUM1":[3,"uz",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"uz":{"opcode":"operator_round","next":null,"parent":"yb","inputs":{"NUM":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ya":{"opcode":"operator_multiply","next":null,"parent":"ib","inputs":{"NUM1":[3,"ux",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ux":{"opcode":"operator_round","next":null,"parent":"ya","inputs":{"NUM":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"uw":{"opcode":"operator_round","next":null,"parent":"ia","inputs":{"NUM":[3,[12,"y0","[sSs~UbJqe+0`o:1y5xf"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"uk":{"opcode":"data_changevariableby","next":null,"parent":"h{","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"uj":{"opcode":"data_changevariableby","next":null,"parent":"h`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"ue":{"opcode":"data_changevariableby","next":null,"parent":"h_","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"x{":{"opcode":"procedures_definition","next":"h|","parent":null,"inputs":{"custom_block":[1,"R"]},"fields":{},"shadow":false,"topLevel":true,"x":1719,"y":516},"R":{"opcode":"procedures_prototype","next":null,"parent":"x{","inputs":{")Idi7uZdm^3K)EUl#H9t":[1,"ut"],"cSMN0`){V)Z_/}Sr*)k=":[1,"uu"],"zp9+Aj/kKgW0kyng_/K/":[1,"uv"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"color correct %s %s %s","argumentids":"[\")Idi7uZdm^3K)EUl#H9t\",\"cSMN0`){V)Z_/}Sr*)k=\",\"zp9+Aj/kKgW0kyng_/K/\"]","argumentnames":"[\"R\",\"G\",\"B\"]","argumentdefaults":"[\"\",\"\",\"\"]","warp":"true"}},"ut":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["R",null]},"shadow":true,"topLevel":false},"uu":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["G",null]},"shadow":true,"topLevel":false},"uv":{"opcode":"argument_reporter_string_number","next":null,"parent":"R","inputs":{},"fields":{"VALUE":["B",null]},"shadow":true,"topLevel":false},"h|":{"opcode":"data_setvariableto","next":"h}","parent":"x{","inputs":{"VALUE":[3,"x|",[10,"0"]]},"fields":{"VARIABLE":["y0","[sSs~UbJqe+0`o:1y5xf"]},"shadow":false,"topLevel":false},"x|":{"opcode":"operator_multiply","next":null,"parent":"h|","inputs":{"NUM1":[3,"WR",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"WR":{"opcode":"argument_reporter_string_number","next":null,"parent":"x|","inputs":{},"fields":{"VALUE":["R",null]},"shadow":false,"topLevel":false},"h}":{"opcode":"data_setvariableto","next":"h~","parent":"h|","inputs":{"VALUE":[3,"x}",[10,"0"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"x}":{"opcode":"operator_multiply","next":null,"parent":"h}","inputs":{"NUM1":[3,"WQ",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"WQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"x}","inputs":{},"fields":{"VALUE":["G",null]},"shadow":false,"topLevel":false},"h~":{"opcode":"data_setvariableto","next":"S","parent":"h}","inputs":{"VALUE":[3,"x~",[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"x~":{"opcode":"operator_multiply","next":null,"parent":"h~","inputs":{"NUM1":[3,"WP",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"WP":{"opcode":"argument_reporter_string_number","next":null,"parent":"x~","inputs":{},"fields":{"VALUE":["B",null]},"shadow":false,"topLevel":false},"S":{"opcode":"control_if","next":"b+","parent":"h~","inputs":{"CONDITION":[2,"WJ"],"SUBSTACK":[2,"WK"]},"fields":{},"shadow":false,"topLevel":false},"WJ":{"opcode":"operator_gt","next":null,"parent":"S","inputs":{"OPERAND1":[3,[12,"y0","[sSs~UbJqe+0`o:1y5xf"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"WK":{"opcode":"data_setvariableto","next":null,"parent":"S","inputs":{"VALUE":[1,[10,"255"]]},"fields":{"VARIABLE":["y0","[sSs~UbJqe+0`o:1y5xf"]},"shadow":false,"topLevel":false},"b+":{"opcode":"control_if","next":"bk","parent":"S","inputs":{"CONDITION":[2,"WL"],"SUBSTACK":[2,"WM"]},"fields":{},"shadow":false,"topLevel":false},"WL":{"opcode":"operator_gt","next":null,"parent":"b+","inputs":{"OPERAND1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"WM":{"opcode":"data_setvariableto","next":null,"parent":"b+","inputs":{"VALUE":[1,[10,"255"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"bk":{"opcode":"control_if","next":null,"parent":"b+","inputs":{"CONDITION":[2,"WN"],"SUBSTACK":[2,"WO"]},"fields":{},"shadow":false,"topLevel":false},"WN":{"opcode":"operator_gt","next":null,"parent":"bk","inputs":{"OPERAND1":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[10,""]],"OPERAND2":[1,[10,"255"]]},"fields":{},"shadow":false,"topLevel":false},"WO":{"opcode":"data_setvariableto","next":null,"parent":"bk","inputs":{"VALUE":[1,[10,"255"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"yR":{"opcode":"procedures_definition","next":"bM","parent":null,"inputs":{"custom_block":[1,"u#"]},"fields":{},"shadow":false,"topLevel":true,"x":5489,"y":64},"u#":{"opcode":"procedures_prototype","next":null,"parent":"yR","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mainLoop","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"false"}},"bM":{"opcode":"control_if","next":"i[","parent":"yR","inputs":{"CONDITION":[2,"BB"],"SUBSTACK":[2,"D?"]},"fields":{},"shadow":false,"topLevel":false},"BB":{"opcode":"operator_lt","next":null,"parent":"bM","inputs":{"OPERAND1":[3,"D[",[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"D[":{"opcode":"data_itemoflist","next":null,"parent":"BB","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"D?":{"opcode":"data_setvariableto","next":null,"parent":"bM","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["frameEvent","V@7TC6e6AtIrZ@k3FpT+"]},"shadow":false,"topLevel":false},"i[":{"opcode":"procedures_call","next":"bj","parent":"bM","inputs":{"_{Yld=+wKaA7xfF,9~Un":[3,"WI",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"run %s cycles","argumentids":"[\"_{Yld=+wKaA7xfF,9~Un\"]","warp":"true"}},"WI":{"opcode":"operator_multiply","next":null,"parent":"i[","inputs":{"NUM1":[1,[4,"4194304"]],"NUM2":[3,[12,"deltaTime","7-FSvOkEj[!orGBM~vUp"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"bj":{"opcode":"data_setvariableto","next":"DR","parent":"i[","inputs":{"VALUE":[3,"BD",[10,"0"]]},"fields":{"VARIABLE":["deltaTime","7-FSvOkEj[!orGBM~vUp"]},"shadow":false,"topLevel":false},"BD":{"opcode":"operator_subtract","next":null,"parent":"bj","inputs":{"NUM1":[3,"BC",[4,""]],"NUM2":[3,[12,"x0","1hJ^oX5CBYJY5/xTk7mE"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"BC":{"opcode":"operator_multiply","next":null,"parent":"BD","inputs":{"NUM1":[3,"D@",[4,""]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"D@":{"opcode":"sensing_dayssince2000","next":null,"parent":"BC","inputs":{},"fields":{},"shadow":false,"topLevel":false},"DR":{"opcode":"data_setvariableto","next":null,"parent":"bj","inputs":{"VALUE":[3,"DS",[10,"0"]]},"fields":{"VARIABLE":["x0","1hJ^oX5CBYJY5/xTk7mE"]},"shadow":false,"topLevel":false},"DS":{"opcode":"operator_multiply","next":null,"parent":"DR","inputs":{"NUM1":[3,"WA",[4,""]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"WA":{"opcode":"sensing_dayssince2000","next":null,"parent":"DS","inputs":{},"fields":{},"shadow":false,"topLevel":false},"Z,":{"opcode":"data_setvariableto","next":null,"parent":null,"inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["_frameskip","zlr~/nTuf%4+EWWaG7Uy"]},"shadow":false,"topLevel":true,"x":6111,"y":942},"N}":{"opcode":"event_whenbroadcastreceived","next":"ml","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["reset emulator","#azR?e|zZPviPwY:dM%T"]},"shadow":false,"topLevel":true,"x":6518,"y":438},"ml":{"opcode":"procedures_call","next":"mm","parent":"N}","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.reset","argumentids":"[]","warp":"true"}},"mm":{"opcode":"data_setvariableto","next":"mn","parent":"ml","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["JIT BLOCKS CREATED","S45yp5eu2gCxqZ=8ZQS1"]},"shadow":false,"topLevel":false},"mn":{"opcode":"data_setvariableto","next":"mo","parent":"mm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["INSTRS EXECUTED","!tfQB3`_Q_%#68k*+]UW"]},"shadow":false,"topLevel":false},"mo":{"opcode":"data_setvariableto","next":"mp","parent":"mn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["DEBUG.TOTALCYCLES","AjM`LssnPuy(6psGEBD+"]},"shadow":false,"topLevel":false},"mp":{"opcode":"data_setvariableto","next":"mq","parent":"mo","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["framecount","U?lf^5|4A+7u*FM=9FMT"]},"shadow":false,"topLevel":false},"mq":{"opcode":"data_setvariableto","next":"Ft","parent":"mp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["logline","QD*22v(cJ^9PE5yR$bed"]},"shadow":false,"topLevel":false},"Ft":{"opcode":"sensing_resettimer","next":"eg","parent":"mq","inputs":{},"fields":{},"shadow":false,"topLevel":false},"eg":{"opcode":"data_setvariableto","next":"mr","parent":"Ft","inputs":{"VALUE":[3,"DU",[10,"0"]]},"fields":{"VARIABLE":["x0","1hJ^oX5CBYJY5/xTk7mE"]},"shadow":false,"topLevel":false},"DU":{"opcode":"operator_multiply","next":null,"parent":"eg","inputs":{"NUM1":[3,"WC",[4,""]],"NUM2":[1,[4,"86400"]]},"fields":{},"shadow":false,"topLevel":false},"WC":{"opcode":"sensing_dayssince2000","next":null,"parent":"DU","inputs":{},"fields":{},"shadow":false,"topLevel":false},"mr":{"opcode":"data_setvariableto","next":"ms","parent":"eg","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["deltaTime","7-FSvOkEj[!orGBM~vUp"]},"shadow":false,"topLevel":false},"ms":{"opcode":"data_setvariableto","next":"WX","parent":"mr","inputs":{"VALUE":[1,[10,"0.01"]]},"fields":{"VARIABLE":["fps1","h^{RWHXL@$`!pLh:D^r_"]},"shadow":false,"topLevel":false},"WX":{"opcode":"event_broadcast","next":null,"parent":"ms","inputs":{"BROADCAST_INPUT":[1,[11,"create sound","O7?o@Pl6XR6dG~oq]ZEc"]]},"fields":{},"shadow":false,"topLevel":false},"yW":{"opcode":"procedures_definition","next":"yX","parent":null,"inputs":{"custom_block":[1,"u|"]},"fields":{},"shadow":false,"topLevel":true,"x":19275,"y":64},"u|":{"opcode":"procedures_prototype","next":null,"parent":"yW","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulator.joyPadLogic","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"y!":{"opcode":"procedures_definition","next":"y#","parent":null,"inputs":{"custom_block":[1,"u}"]},"fields":{},"shadow":false,"topLevel":true,"x":19275,"y":630},"u}":{"opcode":"procedures_prototype","next":null,"parent":"y!","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"emulator.updateJoypadKeys","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"y#":{"opcode":"data_deletealloflist","next":"im","parent":"y!","inputs":{},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"im":{"opcode":"data_addtolist","next":"in","parent":"y#","inputs":{"ITEM":[3,"y%",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y%":{"opcode":"operator_add","next":null,"parent":"im","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y(",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y(":{"opcode":"sensing_keypressed","next":null,"parent":"y%","inputs":{"KEY_OPTION":[1,"va"]},"fields":{},"shadow":false,"topLevel":false},"va":{"opcode":"sensing_keyoptions","next":null,"parent":"y(","inputs":{},"fields":{"KEY_OPTION":["down arrow",null]},"shadow":true,"topLevel":false},"in":{"opcode":"data_addtolist","next":"io","parent":"im","inputs":{"ITEM":[3,"y)",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y)":{"opcode":"operator_add","next":null,"parent":"in","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y*",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y*":{"opcode":"sensing_keypressed","next":null,"parent":"y)","inputs":{"KEY_OPTION":[1,"vc"]},"fields":{},"shadow":false,"topLevel":false},"vc":{"opcode":"sensing_keyoptions","next":null,"parent":"y*","inputs":{},"fields":{"KEY_OPTION":["up arrow",null]},"shadow":true,"topLevel":false},"io":{"opcode":"data_addtolist","next":"ip","parent":"in","inputs":{"ITEM":[3,"y+",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y+":{"opcode":"operator_add","next":null,"parent":"io","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y,",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y,":{"opcode":"sensing_keypressed","next":null,"parent":"y+","inputs":{"KEY_OPTION":[1,"ve"]},"fields":{},"shadow":false,"topLevel":false},"ve":{"opcode":"sensing_keyoptions","next":null,"parent":"y,","inputs":{},"fields":{"KEY_OPTION":["left arrow",null]},"shadow":true,"topLevel":false},"ip":{"opcode":"data_addtolist","next":"iq","parent":"io","inputs":{"ITEM":[3,"y-",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y-":{"opcode":"operator_add","next":null,"parent":"ip","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y.":{"opcode":"sensing_keypressed","next":null,"parent":"y-","inputs":{"KEY_OPTION":[1,"vf"]},"fields":{},"shadow":false,"topLevel":false},"vf":{"opcode":"sensing_keyoptions","next":null,"parent":"y.","inputs":{},"fields":{"KEY_OPTION":["right arrow",null]},"shadow":true,"topLevel":false},"iq":{"opcode":"data_addtolist","next":"ir","parent":"ip","inputs":{"ITEM":[3,"y/",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y/":{"opcode":"operator_add","next":null,"parent":"iq","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y:",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y:":{"opcode":"sensing_keypressed","next":null,"parent":"y/","inputs":{"KEY_OPTION":[1,"vg"]},"fields":{},"shadow":false,"topLevel":false},"vg":{"opcode":"sensing_keyoptions","next":null,"parent":"y:","inputs":{},"fields":{"KEY_OPTION":["enter",null]},"shadow":true,"topLevel":false},"ir":{"opcode":"data_addtolist","next":"is","parent":"iq","inputs":{"ITEM":[3,"y;",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y;":{"opcode":"operator_add","next":null,"parent":"ir","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y=":{"opcode":"sensing_keypressed","next":null,"parent":"y;","inputs":{"KEY_OPTION":[1,"vh"]},"fields":{},"shadow":false,"topLevel":false},"vh":{"opcode":"sensing_keyoptions","next":null,"parent":"y=","inputs":{},"fields":{"KEY_OPTION":["space",null]},"shadow":true,"topLevel":false},"is":{"opcode":"data_addtolist","next":"y?","parent":"ir","inputs":{"ITEM":[3,"y@",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y@":{"opcode":"operator_add","next":null,"parent":"is","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y[",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y[":{"opcode":"sensing_keypressed","next":null,"parent":"y@","inputs":{"KEY_OPTION":[1,"vj"]},"fields":{},"shadow":false,"topLevel":false},"vj":{"opcode":"sensing_keyoptions","next":null,"parent":"y[","inputs":{},"fields":{"KEY_OPTION":["x",null]},"shadow":true,"topLevel":false},"y?":{"opcode":"data_addtolist","next":null,"parent":"is","inputs":{"ITEM":[3,"y]",[10,"thing"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y]":{"opcode":"operator_add","next":null,"parent":"y?","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"y^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"y^":{"opcode":"sensing_keypressed","next":null,"parent":"y]","inputs":{"KEY_OPTION":[1,"vl"]},"fields":{},"shadow":false,"topLevel":false},"vl":{"opcode":"sensing_keyoptions","next":null,"parent":"y^","inputs":{},"fields":{"KEY_OPTION":["z",null]},"shadow":true,"topLevel":false},"zv":{"opcode":"procedures_definition","next":"iC","parent":null,"inputs":{"custom_block":[1,"xC"]},"fields":{},"shadow":false,"topLevel":true,"x":924,"y":64},"xC":{"opcode":"procedures_prototype","next":null,"parent":"zv","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.getCartData","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"iC":{"opcode":"data_setvariableto","next":"iD","parent":"zv","inputs":{"VALUE":[3,"zw",[10,"0"]]},"fields":{"VARIABLE":["cart.GBCMode","Las(z%`v$cor_TO.+az|"]},"shadow":false,"topLevel":false},"zw":{"opcode":"operator_add","next":null,"parent":"iC","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"zB",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zB":{"opcode":"operator_gt","next":null,"parent":"zw","inputs":{"OPERAND1":[3,"zy",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"zy":{"opcode":"data_itemoflist","next":null,"parent":"zB","inputs":{"INDEX":[3,"xD",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"xD":{"opcode":"operator_add","next":null,"parent":"zy","inputs":{"NUM1":[1,[4,"0x143"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iD":{"opcode":"data_setvariableto","next":"aB","parent":"iC","inputs":{"VALUE":[3,"Dz",[10,"0"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"Dz":{"opcode":"data_itemoflist","next":null,"parent":"iD","inputs":{"INDEX":[3,"I`",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"I`":{"opcode":"operator_add","next":null,"parent":"Dz","inputs":{"NUM1":[1,[4,"0x147"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"aB":{"opcode":"control_if_else","next":"jT","parent":"iD","inputs":{"CONDITION":[2,"I{"],"SUBSTACK":[2,"I|"],"SUBSTACK2":[2,"b#"]},"fields":{},"shadow":false,"topLevel":false},"I{":{"opcode":"operator_lt","next":null,"parent":"aB","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"I|":{"opcode":"data_setvariableto","next":null,"parent":"aB","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"b#":{"opcode":"control_if_else","next":null,"parent":"aB","inputs":{"CONDITION":[2,"I}"],"SUBSTACK":[2,"I~"],"SUBSTACK2":[2,"b%"]},"fields":{},"shadow":false,"topLevel":false},"I}":{"opcode":"operator_lt","next":null,"parent":"b#","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"I~":{"opcode":"data_setvariableto","next":null,"parent":"b#","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"b%":{"opcode":"control_if_else","next":null,"parent":"b#","inputs":{"CONDITION":[2,"Wx"],"SUBSTACK":[2,"Ww"],"SUBSTACK2":[2,"b("]},"fields":{},"shadow":false,"topLevel":false},"Wx":{"opcode":"operator_lt","next":null,"parent":"b%","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"0x10"]]},"fields":{},"shadow":false,"topLevel":false},"Ww":{"opcode":"data_setvariableto","next":null,"parent":"b%","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"b(":{"opcode":"control_if_else","next":null,"parent":"b%","inputs":{"CONDITION":[2,"Ja"],"SUBSTACK":[2,"V{"],"SUBSTACK2":[2,"b)"]},"fields":{},"shadow":false,"topLevel":false},"Ja":{"opcode":"operator_lt","next":null,"parent":"b(","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"0x19"]]},"fields":{},"shadow":false,"topLevel":false},"b)":{"opcode":"control_if_else","next":null,"parent":"b(","inputs":{"CONDITION":[2,"V}"],"SUBSTACK":[2,"V~"],"SUBSTACK2":[2,"Wa"]},"fields":{},"shadow":false,"topLevel":false},"V}":{"opcode":"operator_lt","next":null,"parent":"b)","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"0x20"]]},"fields":{},"shadow":false,"topLevel":false},"V~":{"opcode":"data_setvariableto","next":null,"parent":"b)","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"Wa":{"opcode":"data_setvariableto","next":null,"parent":"b)","inputs":{"VALUE":[1,[10,"5"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"jT":{"opcode":"data_setvariableto","next":"Gs","parent":"aB","inputs":{"VALUE":[3,"Gt",[10,"0"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"Gt":{"opcode":"data_itemoflist","next":null,"parent":"jT","inputs":{"INDEX":[3,"L(",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"L(":{"opcode":"operator_add","next":null,"parent":"Gt","inputs":{"NUM1":[1,[4,"0x148"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gs":{"opcode":"data_setvariableto","next":"b{","parent":"jT","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"b{":{"opcode":"control_if_else","next":"kN","parent":"Gs","inputs":{"CONDITION":[2,"L)"],"SUBSTACK":[2,"L*"],"SUBSTACK2":[2,"cE"]},"fields":{},"shadow":false,"topLevel":false},"L)":{"opcode":"operator_equals","next":null,"parent":"b{","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"L*":{"opcode":"data_setvariableto","next":null,"parent":"b{","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cE":{"opcode":"control_if_else","next":null,"parent":"b{","inputs":{"CONDITION":[2,"L+"],"SUBSTACK":[2,"L,"],"SUBSTACK2":[2,"cF"]},"fields":{},"shadow":false,"topLevel":false},"L+":{"opcode":"operator_equals","next":null,"parent":"cE","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"L,":{"opcode":"data_setvariableto","next":null,"parent":"cE","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cF":{"opcode":"control_if_else","next":null,"parent":"cE","inputs":{"CONDITION":[2,"L-"],"SUBSTACK":[2,"L."],"SUBSTACK2":[2,"cu"]},"fields":{},"shadow":false,"topLevel":false},"L-":{"opcode":"operator_equals","next":null,"parent":"cF","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"L.":{"opcode":"data_setvariableto","next":null,"parent":"cF","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cu":{"opcode":"control_if_else","next":null,"parent":"cF","inputs":{"CONDITION":[2,"L/"],"SUBSTACK":[2,"L:"],"SUBSTACK2":[2,"cG"]},"fields":{},"shadow":false,"topLevel":false},"L/":{"opcode":"operator_equals","next":null,"parent":"cu","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L:":{"opcode":"data_setvariableto","next":null,"parent":"cu","inputs":{"VALUE":[1,[10,"32"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cG":{"opcode":"control_if_else","next":null,"parent":"cu","inputs":{"CONDITION":[2,"L;"],"SUBSTACK":[2,"L?"],"SUBSTACK2":[2,"cH"]},"fields":{},"shadow":false,"topLevel":false},"L;":{"opcode":"operator_equals","next":null,"parent":"cG","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"L?":{"opcode":"data_setvariableto","next":null,"parent":"cG","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cH":{"opcode":"control_if_else","next":null,"parent":"cG","inputs":{"CONDITION":[2,"L]"],"SUBSTACK":[2,"L_"],"SUBSTACK2":[2,"cn"]},"fields":{},"shadow":false,"topLevel":false},"L]":{"opcode":"operator_equals","next":null,"parent":"cH","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"L_":{"opcode":"data_setvariableto","next":null,"parent":"cH","inputs":{"VALUE":[1,[10,"128"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"cn":{"opcode":"control_if_else","next":null,"parent":"cH","inputs":{"CONDITION":[2,"L`"],"SUBSTACK":[2,"L|"],"SUBSTACK2":[2,"kP"]},"fields":{},"shadow":false,"topLevel":false},"L`":{"opcode":"operator_equals","next":null,"parent":"cn","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"L|":{"opcode":"data_setvariableto","next":null,"parent":"cn","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"kP":{"opcode":"control_if","next":null,"parent":"cn","inputs":{"CONDITION":[2,"L}"],"SUBSTACK":[2,"L~"]},"fields":{},"shadow":false,"topLevel":false},"L}":{"opcode":"operator_equals","next":null,"parent":"kP","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"L~":{"opcode":"data_setvariableto","next":null,"parent":"kP","inputs":{"VALUE":[1,[10,"512"]]},"fields":{"VARIABLE":["mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["]},"shadow":false,"topLevel":false},"kN":{"opcode":"data_setvariableto","next":"Gq","parent":"b{","inputs":{"VALUE":[3,"Gr",[10,"0"]]},"fields":{"VARIABLE":["z0","79vji|y}}5{S*/J{~%e;"]},"shadow":false,"topLevel":false},"Gr":{"opcode":"data_itemoflist","next":null,"parent":"kN","inputs":{"INDEX":[3,"LT",[7,"1"]]},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"LT":{"opcode":"operator_add","next":null,"parent":"Gr","inputs":{"NUM1":[1,[4,"0x149"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Gq":{"opcode":"data_setvariableto","next":"cD","parent":"kN","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["mbc.rambanks","DcDS)csOs5F_~-#_3p-R"]},"shadow":false,"topLevel":false},"cD":{"opcode":"control_if_else","next":null,"parent":"Gq","inputs":{"CONDITION":[2,"LV"],"SUBSTACK":[2,"LW"],"SUBSTACK2":[2,"cs"]},"fields":{},"shadow":false,"topLevel":false},"LV":{"opcode":"operator_equals","next":null,"parent":"cD","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"LW":{"opcode":"data_setvariableto","next":null,"parent":"cD","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["mbc.rambanks","DcDS)csOs5F_~-#_3p-R"]},"shadow":false,"topLevel":false},"cs":{"opcode":"control_if_else","next":null,"parent":"cD","inputs":{"CONDITION":[2,"LX"],"SUBSTACK":[2,"LY"],"SUBSTACK2":[2,"c{"]},"fields":{},"shadow":false,"topLevel":false},"LX":{"opcode":"operator_equals","next":null,"parent":"cs","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"LY":{"opcode":"data_setvariableto","next":null,"parent":"cs","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["mbc.rambanks","DcDS)csOs5F_~-#_3p-R"]},"shadow":false,"topLevel":false},"c{":{"opcode":"control_if_else","next":null,"parent":"cs","inputs":{"CONDITION":[2,"LZ"],"SUBSTACK":[2,"L!"],"SUBSTACK2":[2,"kO"]},"fields":{},"shadow":false,"topLevel":false},"LZ":{"opcode":"operator_equals","next":null,"parent":"c{","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"L!":{"opcode":"data_setvariableto","next":null,"parent":"c{","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["mbc.rambanks","DcDS)csOs5F_~-#_3p-R"]},"shadow":false,"topLevel":false},"kO":{"opcode":"control_if_else","next":null,"parent":"c{","inputs":{"CONDITION":[2,"L#"],"SUBSTACK":[2,"L%"]},"fields":{},"shadow":false,"topLevel":false},"L#":{"opcode":"operator_equals","next":null,"parent":"kO","inputs":{"OPERAND1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"L%":{"opcode":"data_setvariableto","next":null,"parent":"kO","inputs":{"VALUE":[1,[10,"8"]]},"fields":{"VARIABLE":["mbc.rambanks","DcDS)csOs5F_~-#_3p-R"]},"shadow":false,"topLevel":false},"zJ":{"opcode":"procedures_definition","next":"bN","parent":null,"inputs":{"custom_block":[1,"iE"]},"fields":{},"shadow":false,"topLevel":true,"x":55835,"y":64},"iE":{"opcode":"procedures_prototype","next":null,"parent":"zJ","inputs":{"BxrUag}.YGKPL8^a.{(#":[1,"ys"],"K3VRvq9(_}`a$`/@G`9y":[1,"yt"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.convertCGBpalette %s , %s","argumentids":"[\"BxrUag}.YGKPL8^a.{(#\",\"K3VRvq9(_}`a$`/@G`9y\"]","argumentnames":"[\"val\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"ys":{"opcode":"argument_reporter_string_number","next":null,"parent":"iE","inputs":{},"fields":{"VALUE":["val",null]},"shadow":true,"topLevel":false},"yt":{"opcode":"argument_reporter_string_number","next":null,"parent":"iE","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"bN":{"opcode":"data_replaceitemoflist","next":"iF","parent":"zJ","inputs":{"INDEX":[3,"zK",[7,"1"]],"ITEM":[3,"yu",[10,""]]},"fields":{"LIST":["ppu.PaletteRAM","hkYvD*`XPHHWy=I*?O!s"]},"shadow":false,"topLevel":false},"zK":{"opcode":"operator_add","next":null,"parent":"bN","inputs":{"NUM1":[3,"yw",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yw":{"opcode":"argument_reporter_string_number","next":null,"parent":"zK","inputs":{},"fields":{"VALUE":["val",null]},"shadow":false,"topLevel":false},"yu":{"opcode":"argument_reporter_string_number","next":null,"parent":"bN","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"iF":{"opcode":"data_setvariableto","next":"iG","parent":"bN","inputs":{"VALUE":[3,"iH",[10,"0"]]},"fields":{"VARIABLE":["y5","-pK9xq5)J@:ShYDLeDFI"]},"shadow":false,"topLevel":false},"iH":{"opcode":"operator_add","next":null,"parent":"iF","inputs":{"NUM1":[3,"zN",[4,""]],"NUM2":[3,"zR",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zN":{"opcode":"operator_multiply","next":null,"parent":"iH","inputs":{"NUM1":[3,"zM",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"zM":{"opcode":"data_itemoflist","next":null,"parent":"zN","inputs":{"INDEX":[3,"zO",[7,"1"]]},"fields":{"LIST":["ppu.PaletteRAM","hkYvD*`XPHHWy=I*?O!s"]},"shadow":false,"topLevel":false},"zO":{"opcode":"operator_add","next":null,"parent":"zM","inputs":{"NUM1":[3,"zP",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"zP":{"opcode":"operator_multiply","next":null,"parent":"zO","inputs":{"NUM1":[3,"zQ",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"zQ":{"opcode":"operator_mathop","next":null,"parent":"zP","inputs":{"NUM":[3,"zL",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zL":{"opcode":"operator_divide","next":null,"parent":"zQ","inputs":{"NUM1":[3,"yx",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"yx":{"opcode":"argument_reporter_string_number","next":null,"parent":"zL","inputs":{},"fields":{"VALUE":["val",null]},"shadow":false,"topLevel":false},"zR":{"opcode":"data_itemoflist","next":null,"parent":"iH","inputs":{"INDEX":[3,"zS",[7,"1"]]},"fields":{"LIST":["ppu.PaletteRAM","hkYvD*`XPHHWy=I*?O!s"]},"shadow":false,"topLevel":false},"zS":{"opcode":"operator_add","next":null,"parent":"zR","inputs":{"NUM1":[3,"zT",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zT":{"opcode":"operator_multiply","next":null,"parent":"zS","inputs":{"NUM1":[3,"zU",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"zU":{"opcode":"operator_mathop","next":null,"parent":"zT","inputs":{"NUM":[3,"zV",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zV":{"opcode":"operator_divide","next":null,"parent":"zU","inputs":{"NUM1":[3,"yy",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"yy":{"opcode":"argument_reporter_string_number","next":null,"parent":"zV","inputs":{},"fields":{"VALUE":["val",null]},"shadow":false,"topLevel":false},"iG":{"opcode":"data_replaceitemoflist","next":null,"parent":"iF","inputs":{"INDEX":[3,"zW",[7,"1"]],"ITEM":[3,"zX",[10,""]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"zW":{"opcode":"operator_add","next":null,"parent":"iG","inputs":{"NUM1":[3,"zY",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zY":{"opcode":"operator_mathop","next":null,"parent":"zW","inputs":{"NUM":[3,"zZ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zZ":{"opcode":"operator_divide","next":null,"parent":"zY","inputs":{"NUM1":[3,"yz",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"yz":{"opcode":"argument_reporter_string_number","next":null,"parent":"zZ","inputs":{},"fields":{"VALUE":["val",null]},"shadow":false,"topLevel":false},"zX":{"opcode":"data_itemoflist","next":null,"parent":"iG","inputs":{"INDEX":[3,"z!",[7,"1"]]},"fields":{"LIST":["ppu.GBCpalettesLUT","F7rUuKZp/*Qkk(*IfGDC"]},"shadow":false,"topLevel":false},"z!":{"opcode":"operator_add","next":null,"parent":"zX","inputs":{"NUM1":[3,"yG",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"yG":{"opcode":"operator_mod","next":null,"parent":"z!","inputs":{"NUM1":[3,[12,"y5","-pK9xq5)J@:ShYDLeDFI"],[4,""]],"NUM2":[1,[4,"32768"]]},"fields":{},"shadow":false,"topLevel":false},"Z-":{"opcode":"data_setvariableto","next":null,"parent":null,"inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z12","=Oz!GLSh4)O**:(*4Eo*"]},"shadow":false,"topLevel":true,"x":2700,"y":64},"Bt":{"opcode":"procedures_definition","next":"i/","parent":null,"inputs":{"custom_block":[1,"Bk"]},"fields":{},"shadow":false,"topLevel":true,"x":27790,"y":64},"Bk":{"opcode":"procedures_prototype","next":null,"parent":"Bt","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"~STOP: the cursed instruction","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"i/":{"opcode":"control_if","next":null,"parent":"Bt","inputs":{"CONDITION":[2,"Bl"],"SUBSTACK":[2,"Bu"]},"fields":{},"shadow":false,"topLevel":false},"Bl":{"opcode":"operator_equals","next":null,"parent":"i/","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Bu":{"opcode":"procedures_call","next":"i:","parent":"i/","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"i:":{"opcode":"control_if","next":null,"parent":"Bu","inputs":{"CONDITION":[2,"Bv"],"SUBSTACK":[2,"C"]},"fields":{},"shadow":false,"topLevel":false},"Bv":{"opcode":"operator_equals","next":null,"parent":"i:","inputs":{"OPERAND1":[3,"Bw",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Bw":{"opcode":"operator_mod","next":null,"parent":"Bv","inputs":{"NUM1":[3,"B#",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"B#":{"opcode":"data_itemoflist","next":null,"parent":"Bw","inputs":{"INDEX":[1,[7,"78"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C":{"opcode":"control_if_else","next":"i;","parent":"i:","inputs":{"CONDITION":[2,"B%"],"SUBSTACK":[2,"B)"],"SUBSTACK2":[2,"B-"]},"fields":{},"shadow":false,"topLevel":false},"B%":{"opcode":"operator_equals","next":null,"parent":"C","inputs":{"OPERAND1":[3,[12,"cpu.speed","nSL^k6xxL**59aM}a+G]"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B)":{"opcode":"data_setvariableto","next":null,"parent":"C","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["cpu.speed","nSL^k6xxL**59aM}a+G]"]},"shadow":false,"topLevel":false},"B-":{"opcode":"data_setvariableto","next":null,"parent":"C","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["cpu.speed","nSL^k6xxL**59aM}a+G]"]},"shadow":false,"topLevel":false},"i;":{"opcode":"data_replaceitemoflist","next":"Bx","parent":"C","inputs":{"INDEX":[1,[7,"78"]],"ITEM":[3,"By",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"By":{"opcode":"operator_multiply","next":null,"parent":"i;","inputs":{"NUM1":[3,"B.",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"B.":{"opcode":"operator_subtract","next":null,"parent":"By","inputs":{"NUM1":[3,[12,"cpu.speed","nSL^k6xxL**59aM}a+G]"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Bx":{"opcode":"data_setvariableto","next":null,"parent":"i;","inputs":{"VALUE":[3,"B/",[10,"0"]]},"fields":{"VARIABLE":["ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"]},"shadow":false,"topLevel":false},"B/":{"opcode":"operator_divide","next":null,"parent":"Bx","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,[12,"cpu.speed","nSL^k6xxL**59aM}a+G]"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"X*":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"D]"]},"fields":{},"shadow":false,"topLevel":true,"x":18647,"y":966},"D]":{"opcode":"procedures_prototype","next":null,"parent":"X*","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"obtain frequency values","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"CA":{"opcode":"procedures_definition","next":"ji","parent":null,"inputs":{"custom_block":[1,"CB"]},"fields":{},"shadow":false,"topLevel":true,"x":54306,"y":64},"CB":{"opcode":"procedures_prototype","next":null,"parent":"CA","inputs":{"KWYXu/0,nFG2S7u$VvsU":[1,"GM"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.CGBDMAinit %s","argumentids":"[\"KWYXu/0,nFG2S7u$VvsU\"]","argumentnames":"[\"byte\"]","argumentdefaults":"[\"\"]","warp":"true"}},"GM":{"opcode":"argument_reporter_string_number","next":null,"parent":"CB","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"ji":{"opcode":"data_setvariableto","next":"jj","parent":"CA","inputs":{"VALUE":[3,"jl",[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"]},"shadow":false,"topLevel":false},"jl":{"opcode":"operator_add","next":null,"parent":"ji","inputs":{"NUM1":[3,"CD",[4,""]],"NUM2":[3,"jm",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"CD":{"opcode":"operator_multiply","next":null,"parent":"jl","inputs":{"NUM1":[3,"GN",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"GN":{"opcode":"data_itemoflist","next":null,"parent":"CD","inputs":{"INDEX":[1,[7,"82"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jm":{"opcode":"operator_subtract","next":null,"parent":"jl","inputs":{"NUM1":[3,"GO",[4,""]],"NUM2":[3,"jn",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GO":{"opcode":"data_itemoflist","next":null,"parent":"jm","inputs":{"INDEX":[1,[7,"83"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jn":{"opcode":"operator_mod","next":null,"parent":"jm","inputs":{"NUM1":[3,"GP",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false,"comment":"GQ"},"GP":{"opcode":"data_itemoflist","next":null,"parent":"jn","inputs":{"INDEX":[1,[7,"83"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jj":{"opcode":"data_setvariableto","next":"bS","parent":"ji","inputs":{"VALUE":[3,"jk",[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"]},"shadow":false,"topLevel":false},"jk":{"opcode":"operator_add","next":null,"parent":"jj","inputs":{"NUM1":[3,"CE",[4,""]],"NUM2":[3,"Ii",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"CE":{"opcode":"operator_mod","next":null,"parent":"jk","inputs":{"NUM1":[3,"jo",[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"jo":{"opcode":"operator_add","next":null,"parent":"CE","inputs":{"NUM1":[3,"CF",[4,""]],"NUM2":[3,"jp",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"CF":{"opcode":"operator_multiply","next":null,"parent":"jo","inputs":{"NUM1":[3,"GR",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"GR":{"opcode":"data_itemoflist","next":null,"parent":"CF","inputs":{"INDEX":[1,[7,"84"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jp":{"opcode":"operator_subtract","next":null,"parent":"jo","inputs":{"NUM1":[3,"GS",[4,""]],"NUM2":[3,"jq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"GS":{"opcode":"data_itemoflist","next":null,"parent":"jp","inputs":{"INDEX":[1,[7,"85"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jq":{"opcode":"operator_mod","next":null,"parent":"jp","inputs":{"NUM1":[3,"G@",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false,"comment":"GT"},"G@":{"opcode":"data_itemoflist","next":null,"parent":"jq","inputs":{"INDEX":[1,[7,"85"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Ii":{"opcode":"operator_multiply","next":null,"parent":"jk","inputs":{"NUM1":[3,[12,"mmu.vrambank","g?mSsNCoU094~azf1Kw|"],[4,""]],"NUM2":[1,[4,"8192"]]},"fields":{},"shadow":false,"topLevel":false},"bS":{"opcode":"data_setvariableto","next":"bT","parent":"jj","inputs":{"VALUE":[3,"CH",[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"]},"shadow":false,"topLevel":false,"comment":"Ic"},"CH":{"opcode":"operator_multiply","next":null,"parent":"bS","inputs":{"NUM1":[3,"CI",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"CI":{"opcode":"operator_add","next":null,"parent":"CH","inputs":{"NUM1":[3,"CJ",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"CJ":{"opcode":"operator_mod","next":null,"parent":"CI","inputs":{"NUM1":[3,"Id",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Id":{"opcode":"argument_reporter_string_number","next":null,"parent":"CJ","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"bT":{"opcode":"data_setvariableto","next":"bU","parent":"bS","inputs":{"VALUE":[3,"CG",[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAType","^XNp?SBj+j9BODocp,Pi"]},"shadow":false,"topLevel":false,"comment":"G]"},"CG":{"opcode":"operator_mathop","next":null,"parent":"bT","inputs":{"NUM":[3,"CK",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"CK":{"opcode":"operator_divide","next":null,"parent":"CG","inputs":{"NUM1":[3,"Ie",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Ie":{"opcode":"argument_reporter_string_number","next":null,"parent":"CK","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"bU":{"opcode":"control_if_else","next":null,"parent":"bT","inputs":{"CONDITION":[2,"Ig"],"SUBSTACK":[2,"If"],"SUBSTACK2":[2,"Ih"]},"fields":{},"shadow":false,"topLevel":false},"Ig":{"opcode":"operator_equals","next":null,"parent":"bU","inputs":{"OPERAND1":[3,[12,"ppu.CGBDMAType","^XNp?SBj+j9BODocp,Pi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"If":{"opcode":"data_setvariableto","next":null,"parent":"bU","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"]},"shadow":false,"topLevel":false},"Ih":{"opcode":"data_setvariableto","next":null,"parent":"bU","inputs":{"VALUE":[3,[12,"ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"],[10,"16"]]},"fields":{"VARIABLE":["ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"]},"shadow":false,"topLevel":false},"CW":{"opcode":"procedures_definition","next":"F","parent":null,"inputs":{"custom_block":[1,"IA"]},"fields":{},"shadow":false,"topLevel":true,"x":21967,"y":192},"IA":{"opcode":"procedures_prototype","next":null,"parent":"CW","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"checkStat","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"F":{"opcode":"control_if_else","next":"jA","parent":"CW","inputs":{"CONDITION":[2,"Iy"],"SUBSTACK":[2,"IJ"],"SUBSTACK2":[2,"bW"]},"fields":{},"shadow":false,"topLevel":false},"Iy":{"opcode":"operator_lt","next":null,"parent":"F","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"4"]]},"fields":{},"shadow":false,"topLevel":false},"IJ":{"opcode":"data_setvariableto","next":null,"parent":"F","inputs":{"VALUE":[1,[10,"4"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"bW":{"opcode":"control_if_else","next":null,"parent":"F","inputs":{"CONDITION":[2,"IB"],"SUBSTACK":[2,"IC"],"SUBSTACK2":[2,"bX"]},"fields":{},"shadow":false,"topLevel":false},"IB":{"opcode":"operator_lt","next":null,"parent":"bW","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"IC":{"opcode":"data_setvariableto","next":null,"parent":"bW","inputs":{"VALUE":[1,[10,"80"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"bX":{"opcode":"control_if_else","next":null,"parent":"bW","inputs":{"CONDITION":[2,"ID"],"SUBSTACK":[2,"IE"],"SUBSTACK2":[2,"IF"]},"fields":{},"shadow":false,"topLevel":false},"ID":{"opcode":"operator_lt","next":null,"parent":"bX","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"248"]]},"fields":{},"shadow":false,"topLevel":false},"IE":{"opcode":"data_setvariableto","next":null,"parent":"bX","inputs":{"VALUE":[1,[10,"248"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"IF":{"opcode":"data_setvariableto","next":null,"parent":"bX","inputs":{"VALUE":[1,[10,"456"]]},"fields":{"VARIABLE":["z9","GHy#R-.o1jTMkLkU@/xI"]},"shadow":false,"topLevel":false},"jA":{"opcode":"control_if","next":null,"parent":"F","inputs":{"CONDITION":[2,"EQ"],"SUBSTACK":[2,"Ka"]},"fields":{},"shadow":false,"topLevel":false},"EQ":{"opcode":"operator_not","next":null,"parent":"jA","inputs":{"OPERAND":[2,"ER"]},"fields":{},"shadow":false,"topLevel":false},"ER":{"opcode":"operator_lt","next":null,"parent":"EQ","inputs":{"OPERAND1":[3,"Kb",[10,""]],"OPERAND2":[3,[12,"z9","GHy#R-.o1jTMkLkU@/xI"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"Kb":{"opcode":"operator_add","next":null,"parent":"ER","inputs":{"NUM1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[4,""]],"NUM2":[3,[12,"ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ka":{"opcode":"procedures_call","next":null,"parent":"jA","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"Dx":{"opcode":"procedures_definition","next":"G","parent":null,"inputs":{"custom_block":[1,"jS"]},"fields":{},"shadow":false,"topLevel":true,"x":52829,"y":64},"jS":{"opcode":"procedures_prototype","next":null,"parent":"Dx","inputs":{"7/.|GCMKnckaak$ZySZ@":[1,"I@"],"|/#evWHRr9BJyKF5:/#%":[1,"I["]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".MBC HANDLER %s %s","argumentids":"[\"7/.|GCMKnckaak$ZySZ@\",\"|/#evWHRr9BJyKF5:/#%\"]","argumentnames":"[\"addr\",\"byte\"]","argumentdefaults":"[\"\",\"\",\"\",\"\"]","warp":"true"}},"I@":{"opcode":"argument_reporter_string_number","next":null,"parent":"jS","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"I[":{"opcode":"argument_reporter_string_number","next":null,"parent":"jS","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"G":{"opcode":"control_if_else","next":"jU","parent":"Dx","inputs":{"CONDITION":[2,"Wb"],"SUBSTACK":[2,"b*"],"SUBSTACK2":[2,"ba"]},"fields":{},"shadow":false,"topLevel":false},"Wb":{"opcode":"operator_equals","next":null,"parent":"G","inputs":{"OPERAND1":[3,[12,".MBC",")rGs=V-Kgx~+N7=l/%Av"],[10,""]],"OPERAND2":[1,[10,"5"]]},"fields":{},"shadow":false,"topLevel":false},"b*":{"opcode":"control_if","next":"cz","parent":"G","inputs":{"CONDITION":[2,"bb"],"SUBSTACK":[2,"DA"]},"fields":{},"shadow":false,"topLevel":false},"bb":{"opcode":"operator_and","next":null,"parent":"b*","inputs":{"OPERAND1":[2,"DB"],"OPERAND2":[2,"DC"]},"fields":{},"shadow":false,"topLevel":false},"DB":{"opcode":"operator_not","next":null,"parent":"bb","inputs":{"OPERAND":[2,"DD"]},"fields":{},"shadow":false,"topLevel":false},"DD":{"opcode":"operator_lt","next":null,"parent":"DB","inputs":{"OPERAND1":[3,"Wc",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"Wc":{"opcode":"argument_reporter_string_number","next":null,"parent":"DD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DC":{"opcode":"operator_lt","next":null,"parent":"bb","inputs":{"OPERAND1":[3,"Wd",[10,""]],"OPERAND2":[1,[10,"0x3000"]]},"fields":{},"shadow":false,"topLevel":false},"Wd":{"opcode":"argument_reporter_string_number","next":null,"parent":"DC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DA":{"opcode":"data_setvariableto","next":null,"parent":"b*","inputs":{"VALUE":[3,"DE",[10,"0"]]},"fields":{"VARIABLE":["mmu.rombank","!7Po9_*W!#iS];em7]$r"]},"shadow":false,"topLevel":false},"DE":{"opcode":"operator_mod","next":null,"parent":"DA","inputs":{"NUM1":[3,"We",[4,""]],"NUM2":[3,[12,"mbc.rombanks","`g_D=_8Gn8Z~!cW?tm8["],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"We":{"opcode":"argument_reporter_string_number","next":null,"parent":"DE","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"cz":{"opcode":"control_if","next":"bc","parent":"b*","inputs":{"CONDITION":[2,"bd"],"SUBSTACK":[2,"DF"]},"fields":{},"shadow":false,"topLevel":false},"bd":{"opcode":"operator_and","next":null,"parent":"cz","inputs":{"OPERAND1":[2,"DG"],"OPERAND2":[2,"DH"]},"fields":{},"shadow":false,"topLevel":false},"DG":{"opcode":"operator_not","next":null,"parent":"bd","inputs":{"OPERAND":[2,"DI"]},"fields":{},"shadow":false,"topLevel":false},"DI":{"opcode":"operator_lt","next":null,"parent":"DG","inputs":{"OPERAND1":[3,"Wf",[10,""]],"OPERAND2":[1,[10,"0x3000"]]},"fields":{},"shadow":false,"topLevel":false},"Wf":{"opcode":"argument_reporter_string_number","next":null,"parent":"DI","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DH":{"opcode":"operator_lt","next":null,"parent":"bd","inputs":{"OPERAND1":[3,"Wl",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"Wl":{"opcode":"argument_reporter_string_number","next":null,"parent":"DH","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DF":{"opcode":"data_setvariableto","next":null,"parent":"cz","inputs":{"VALUE":[3,"be",[10,"0"]]},"fields":{"VARIABLE":["mmu.rombank","!7Po9_*W!#iS];em7]$r"]},"shadow":false,"topLevel":false},"be":{"opcode":"operator_add","next":null,"parent":"DF","inputs":{"NUM1":[3,"DJ",[4,""]],"NUM2":[3,"Wm",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"DJ":{"opcode":"operator_multiply","next":null,"parent":"be","inputs":{"NUM1":[3,"DK",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"DK":{"opcode":"operator_mod","next":null,"parent":"DJ","inputs":{"NUM1":[3,"Wn",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Wn":{"opcode":"argument_reporter_string_number","next":null,"parent":"DK","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Wm":{"opcode":"operator_mod","next":null,"parent":"be","inputs":{"NUM1":[3,[12,"mmu.rombank","!7Po9_*W!#iS];em7]$r"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"bc":{"opcode":"control_if","next":null,"parent":"cz","inputs":{"CONDITION":[2,"kM"],"SUBSTACK":[2,"Gm"]},"fields":{},"shadow":false,"topLevel":false},"kM":{"opcode":"operator_and","next":null,"parent":"bc","inputs":{"OPERAND1":[2,"Gn"],"OPERAND2":[2,"Go"]},"fields":{},"shadow":false,"topLevel":false},"Gn":{"opcode":"operator_not","next":null,"parent":"kM","inputs":{"OPERAND":[2,"Gp"]},"fields":{},"shadow":false,"topLevel":false},"Gp":{"opcode":"operator_lt","next":null,"parent":"Gn","inputs":{"OPERAND1":[3,"LQ",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"LQ":{"opcode":"argument_reporter_string_number","next":null,"parent":"Gp","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Go":{"opcode":"operator_lt","next":null,"parent":"kM","inputs":{"OPERAND1":[3,"LR",[10,""]],"OPERAND2":[1,[10,"0x5000"]]},"fields":{},"shadow":false,"topLevel":false},"LR":{"opcode":"argument_reporter_string_number","next":null,"parent":"Go","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Gm":{"opcode":"data_setvariableto","next":null,"parent":"bc","inputs":{"VALUE":[3,"k|",[10,"0"]]},"fields":{"VARIABLE":["mmu.srambank","+F4tew{OQ9t*u:UEayCL"]},"shadow":false,"topLevel":false},"k|":{"opcode":"operator_mod","next":null,"parent":"Gm","inputs":{"NUM1":[3,"LS",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"LS":{"opcode":"argument_reporter_string_number","next":null,"parent":"k|","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"ba":{"opcode":"control_if","next":null,"parent":"G","inputs":{"CONDITION":[2,"bg"],"SUBSTACK":[2,"c;"]},"fields":{},"shadow":false,"topLevel":false},"bg":{"opcode":"operator_or","next":null,"parent":"ba","inputs":{"OPERAND1":[2,"Wr"],"OPERAND2":[2,"Ws"]},"fields":{},"shadow":false,"topLevel":false},"Wr":{"opcode":"operator_equals","next":null,"parent":"bg","inputs":{"OPERAND1":[3,[12,".MBC",")rGs=V-Kgx~+N7=l/%Av"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ws":{"opcode":"operator_equals","next":null,"parent":"bg","inputs":{"OPERAND1":[3,[12,".MBC",")rGs=V-Kgx~+N7=l/%Av"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"c;":{"opcode":"control_if","next":"bh","parent":"ba","inputs":{"CONDITION":[2,"bi"],"SUBSTACK":[2,"DN"]},"fields":{},"shadow":false,"topLevel":false},"bi":{"opcode":"operator_and","next":null,"parent":"c;","inputs":{"OPERAND1":[2,"DO"],"OPERAND2":[2,"DP"]},"fields":{},"shadow":false,"topLevel":false},"DO":{"opcode":"operator_not","next":null,"parent":"bi","inputs":{"OPERAND":[2,"DQ"]},"fields":{},"shadow":false,"topLevel":false},"DQ":{"opcode":"operator_lt","next":null,"parent":"DO","inputs":{"OPERAND1":[3,"Wt",[10,""]],"OPERAND2":[1,[10,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"Wt":{"opcode":"argument_reporter_string_number","next":null,"parent":"DQ","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DP":{"opcode":"operator_lt","next":null,"parent":"bi","inputs":{"OPERAND1":[3,"Wu",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"Wu":{"opcode":"argument_reporter_string_number","next":null,"parent":"DP","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"DN":{"opcode":"data_setvariableto","next":null,"parent":"c;","inputs":{"VALUE":[3,"Wv",[10,"0"]]},"fields":{"VARIABLE":["mmu.rombank","!7Po9_*W!#iS];em7]$r"]},"shadow":false,"topLevel":false},"Wv":{"opcode":"argument_reporter_string_number","next":null,"parent":"DN","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"bh":{"opcode":"control_if","next":null,"parent":"c;","inputs":{"CONDITION":[2,"kL"],"SUBSTACK":[2,"Gh"]},"fields":{},"shadow":false,"topLevel":false},"kL":{"opcode":"operator_and","next":null,"parent":"bh","inputs":{"OPERAND1":[2,"Gi"],"OPERAND2":[2,"Gj"]},"fields":{},"shadow":false,"topLevel":false},"Gi":{"opcode":"operator_not","next":null,"parent":"kL","inputs":{"OPERAND":[2,"Gk"]},"fields":{},"shadow":false,"topLevel":false},"Gk":{"opcode":"operator_lt","next":null,"parent":"Gi","inputs":{"OPERAND1":[3,"LL",[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"LL":{"opcode":"argument_reporter_string_number","next":null,"parent":"Gk","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Gj":{"opcode":"operator_lt","next":null,"parent":"kL","inputs":{"OPERAND1":[3,"LN",[10,""]],"OPERAND2":[1,[10,"0x5000"]]},"fields":{},"shadow":false,"topLevel":false},"LN":{"opcode":"argument_reporter_string_number","next":null,"parent":"Gj","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Gh":{"opcode":"data_setvariableto","next":null,"parent":"bh","inputs":{"VALUE":[3,"Gl",[10,"0"]]},"fields":{"VARIABLE":["mmu.srambank","+F4tew{OQ9t*u:UEayCL"]},"shadow":false,"topLevel":false},"Gl":{"opcode":"operator_mod","next":null,"parent":"Gh","inputs":{"NUM1":[3,"LO",[4,""]],"NUM2":[3,[12,"mbc.rambanks","DcDS)csOs5F_~-#_3p-R"],[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"LO":{"opcode":"argument_reporter_string_number","next":null,"parent":"Gl","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"jU":{"opcode":"control_if","next":null,"parent":"G","inputs":{"CONDITION":[2,"bf"],"SUBSTACK":[2,"DL"]},"fields":{},"shadow":false,"topLevel":false},"bf":{"opcode":"operator_and","next":null,"parent":"jU","inputs":{"OPERAND1":[2,"DM"],"OPERAND2":[2,"Wo"]},"fields":{},"shadow":false,"topLevel":false},"DM":{"opcode":"operator_not","next":null,"parent":"bf","inputs":{"OPERAND":[2,"Wp"]},"fields":{},"shadow":false,"topLevel":false},"Wp":{"opcode":"operator_lt","next":null,"parent":"DM","inputs":{"OPERAND1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,""]],"OPERAND2":[1,[10,"0x4000"]]},"fields":{},"shadow":false,"topLevel":false},"Wo":{"opcode":"operator_lt","next":null,"parent":"bf","inputs":{"OPERAND1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,""]],"OPERAND2":[1,[10,"0x8000"]]},"fields":{},"shadow":false,"topLevel":false},"DL":{"opcode":"data_setvariableto","next":null,"parent":"jU","inputs":{"VALUE":[3,"Wq",[10,"0"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"Wq":{"opcode":"operator_divide","next":null,"parent":"DL","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[1,[4,""]]},"fields":{},"shadow":false,"topLevel":false},"lF":{"opcode":"procedures_definition","next":"T","parent":null,"inputs":{"custom_block":[1,"DT"]},"fields":{},"shadow":false,"topLevel":true,"x":6074,"y":64},"DT":{"opcode":"procedures_prototype","next":null,"parent":"lF","inputs":{"_{Yld=+wKaA7xfF,9~Un":[1,"WB"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"run %s cycles","argumentids":"[\"_{Yld=+wKaA7xfF,9~Un\"]","argumentnames":"[\"X\"]","argumentdefaults":"[\"\"]","warp":"true"}},"WB":{"opcode":"argument_reporter_string_number","next":null,"parent":"DT","inputs":{},"fields":{"VALUE":["X",null]},"shadow":true,"topLevel":false},"T":{"opcode":"control_if_else","next":"bG","parent":"lF","inputs":{"CONDITION":[2,"lG"],"SUBSTACK":[2,"Ze"],"SUBSTACK2":[2,"lH"]},"fields":{},"shadow":false,"topLevel":false},"lG":{"opcode":"operator_gt","next":null,"parent":"T","inputs":{"OPERAND1":[3,"WG",[10,""]],"OPERAND2":[1,[10,"300000"]]},"fields":{},"shadow":false,"topLevel":false},"WG":{"opcode":"argument_reporter_string_number","next":null,"parent":"lG","inputs":{},"fields":{"VALUE":["X",null]},"shadow":false,"topLevel":false},"Ze":{"opcode":"data_setvariableto","next":null,"parent":"T","inputs":{"VALUE":[1,[10,"300000"]]},"fields":{"VARIABLE":["XX","h(Q|#r8}Je;G$v7;}D|r"]},"shadow":false,"topLevel":false},"lH":{"opcode":"data_setvariableto","next":null,"parent":"T","inputs":{"VALUE":[3,"WH",[10,"150000"]]},"fields":{"VARIABLE":["XX","h(Q|#r8}Je;G$v7;}D|r"]},"shadow":false,"topLevel":false},"WH":{"opcode":"argument_reporter_string_number","next":null,"parent":"lH","inputs":{},"fields":{"VALUE":["X",null]},"shadow":false,"topLevel":false},"bG":{"opcode":"control_while","next":"DV","parent":"T","inputs":{"CONDITION":[2,"WD"],"SUBSTACK":[2,"WE"]},"fields":{},"shadow":false,"topLevel":false},"WD":{"opcode":"operator_lt","next":null,"parent":"bG","inputs":{"OPERAND1":[3,[12,"cycles.frame",":m^*=-k.c+0y=EF,uy?L"],[10,""]],"OPERAND2":[3,[12,"XX","h(Q|#r8}Je;G$v7;}D|r"],[10,"70224"]]},"fields":{},"shadow":false,"topLevel":false},"WE":{"opcode":"procedures_call","next":null,"parent":"bG","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"execBlock","argumentids":"[]","warp":"true"}},"DV":{"opcode":"data_changevariableby","next":null,"parent":"bG","inputs":{"VALUE":[3,"WF",[4,"-70224"]]},"fields":{"VARIABLE":["cycles.frame",":m^*=-k.c+0y=EF,uy?L"]},"shadow":false,"topLevel":false},"WF":{"opcode":"operator_subtract","next":null,"parent":"DV","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"XX","h(Q|#r8}Je;G$v7;}D|r"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"D,":{"opcode":"procedures_definition","next":"b-","parent":null,"inputs":{"custom_block":[1,"W("]},"fields":{},"shadow":false,"topLevel":true,"x":11093,"y":228},"W(":{"opcode":"procedures_prototype","next":null,"parent":"D,","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apu.update","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"b-":{"opcode":"control_if","next":"c=","parent":"D,","inputs":{"CONDITION":[2,"D-"],"SUBSTACK":[2,"bp"]},"fields":{},"shadow":false,"topLevel":false},"D-":{"opcode":"operator_equals","next":null,"parent":"b-","inputs":{"OPERAND1":[3,"W*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"W*":{"opcode":"operator_mod","next":null,"parent":"D-","inputs":{"NUM1":[3,[12,"APU.clock","`HZLQY,r.hBB${Q2dx.{"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"bp":{"opcode":"control_for_each","next":"Jj","parent":"b-","inputs":{"VALUE":[1,[6,"4"]],"SUBSTACK":[2,"ky"]},"fields":{"VARIABLE":["z17","o7EoB-}CoX@qHC;vxe7J"]},"shadow":false,"topLevel":false},"ky":{"opcode":"control_if","next":null,"parent":"bp","inputs":{"CONDITION":[2,"kD"],"SUBSTACK":[2,"kE"]},"fields":{},"shadow":false,"topLevel":false},"kE":{"opcode":"data_replaceitemoflist","next":"kG","parent":"ky","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[3,"Gd",[10,""]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"Gd":{"opcode":"operator_add","next":null,"parent":"kE","inputs":{"NUM1":[3,"LE",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"LE":{"opcode":"data_itemoflist","next":null,"parent":"Gd","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"kG":{"opcode":"control_if","next":null,"parent":"kE","inputs":{"CONDITION":[2,"Ge"],"SUBSTACK":[2,"kH"]},"fields":{},"shadow":false,"topLevel":false},"Ge":{"opcode":"operator_not","next":null,"parent":"kG","inputs":{"OPERAND":[2,"kK"]},"fields":{},"shadow":false,"topLevel":false},"kK":{"opcode":"operator_lt","next":null,"parent":"Ge","inputs":{"OPERAND1":[3,"LJ",[10,""]],"OPERAND2":[3,"Gg",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"LJ":{"opcode":"data_itemoflist","next":null,"parent":"kK","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"Gg":{"opcode":"operator_mathop","next":null,"parent":"kK","inputs":{"NUM":[3,"LK",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"LK":{"opcode":"data_itemoflist","next":null,"parent":"Gg","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"kH":{"opcode":"data_replaceitemoflist","next":"LF","parent":"kG","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[3,"kI",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"kI":{"opcode":"operator_add","next":null,"parent":"kH","inputs":{"NUM1":[3,"LG",[4,""]],"NUM2":[3,"kJ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"LG":{"opcode":"data_itemoflist","next":null,"parent":"kI","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"kJ":{"opcode":"operator_divide","next":null,"parent":"kI","inputs":{"NUM1":[3,"Gf",[4,""]],"NUM2":[3,"LH",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Gf":{"opcode":"operator_mathop","next":null,"parent":"kJ","inputs":{"NUM":[3,"LI",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"LI":{"opcode":"data_itemoflist","next":null,"parent":"Gf","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"LH":{"opcode":"data_itemoflist","next":null,"parent":"kJ","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"LF":{"opcode":"data_replaceitemoflist","next":null,"parent":"kH","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"Jj":{"opcode":"event_broadcast","next":null,"parent":"bp","inputs":{"BROADCAST_INPUT":[1,[11,"+audioEngineUpdateAll","7m=3YPBU?W]n9k?^($RV"]]},"fields":{},"shadow":false,"topLevel":false},"c=":{"opcode":"control_if","next":"c.","parent":"b-","inputs":{"CONDITION":[2,"H!"],"SUBSTACK":[2,"cP"]},"fields":{},"shadow":false,"topLevel":false},"H!":{"opcode":"operator_equals","next":null,"parent":"c=","inputs":{"OPERAND1":[3,"Nm",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Nm":{"opcode":"operator_mod","next":null,"parent":"H!","inputs":{"NUM1":[3,[12,"APU.clock","`HZLQY,r.hBB${Q2dx.{"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"cP":{"opcode":"control_if_else","next":null,"parent":"c=","inputs":{"CONDITION":[2,"k?"],"SUBSTACK":[2,"H#"],"SUBSTACK2":[2,"Nn"]},"fields":{},"shadow":false,"topLevel":false},"k?":{"opcode":"operator_and","next":null,"parent":"cP","inputs":{"OPERAND1":[2,"No"],"OPERAND2":[2,"H%"]},"fields":{},"shadow":false,"topLevel":false},"No":{"opcode":"operator_gt","next":null,"parent":"k?","inputs":{"OPERAND1":[3,[12,"+sound sweep control","me#*?L^7qHz#9J$tnFV("],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"H%":{"opcode":"operator_gt","next":null,"parent":"k?","inputs":{"OPERAND1":[3,"Np",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Np":{"opcode":"operator_mathop","next":null,"parent":"H%","inputs":{"NUM":[3,[12,"+sound sweep dir","K]jvL}s+y4h|E-|ezXOX"],[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"H#":{"opcode":"data_changevariableby","next":"k@","parent":"cP","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["+sound sweep clock cycle","IMUkFA]JweK41~CZ5pa-"]},"shadow":false,"topLevel":false},"k@":{"opcode":"control_if","next":null,"parent":"H#","inputs":{"CONDITION":[2,"H("],"SUBSTACK":[2,"H)"]},"fields":{},"shadow":false,"topLevel":false},"H(":{"opcode":"operator_gt","next":null,"parent":"k@","inputs":{"OPERAND1":[3,[12,"+sound sweep clock cycle","IMUkFA]JweK41~CZ5pa-"],[10,""]],"OPERAND2":[3,"H*",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"H*":{"opcode":"operator_subtract","next":null,"parent":"H(","inputs":{"NUM1":[3,"Nq",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nq":{"opcode":"operator_mathop","next":null,"parent":"H*","inputs":{"NUM":[3,[12,"+sound sweep dir","K]jvL}s+y4h|E-|ezXOX"],[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"H)":{"opcode":"data_setvariableto","next":"b|","parent":"k@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+sound sweep clock cycle","IMUkFA]JweK41~CZ5pa-"]},"shadow":false,"topLevel":false},"b|":{"opcode":"control_if_else","next":"k[","parent":"H)","inputs":{"CONDITION":[2,"Nr"],"SUBSTACK":[2,"H+"],"SUBSTACK2":[2,"H-"]},"fields":{},"shadow":false,"topLevel":false},"Nr":{"opcode":"operator_lt","next":null,"parent":"b|","inputs":{"OPERAND1":[3,[12,"+sound sweep dir","K]jvL}s+y4h|E-|ezXOX"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"H+":{"opcode":"data_replaceitemoflist","next":null,"parent":"b|","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"H,",[10,""]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"H,":{"opcode":"operator_mathop","next":null,"parent":"H+","inputs":{"NUM":[3,"k]",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"k]":{"opcode":"operator_subtract","next":null,"parent":"H,","inputs":{"NUM1":[3,"Ns",[4,""]],"NUM2":[3,"k^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ns":{"opcode":"data_itemoflist","next":null,"parent":"k]","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"k^":{"opcode":"operator_divide","next":null,"parent":"k]","inputs":{"NUM1":[3,"Nt",[4,""]],"NUM2":[3,"H.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Nt":{"opcode":"data_itemoflist","next":null,"parent":"k^","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"H.":{"opcode":"data_itemoflist","next":null,"parent":"k^","inputs":{"INDEX":[3,"H/",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"H/":{"opcode":"operator_add","next":null,"parent":"H.","inputs":{"NUM1":[3,"Nu",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nu":{"opcode":"operator_mathop","next":null,"parent":"H/","inputs":{"NUM":[3,[12,"+sound sweep control","me#*?L^7qHz#9J$tnFV("],[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"H-":{"opcode":"data_replaceitemoflist","next":null,"parent":"b|","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"H:",[10,""]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"H:":{"opcode":"operator_mathop","next":null,"parent":"H-","inputs":{"NUM":[3,"k_",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"k_":{"opcode":"operator_add","next":null,"parent":"H:","inputs":{"NUM1":[3,"Nv",[4,""]],"NUM2":[3,"k`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Nv":{"opcode":"data_itemoflist","next":null,"parent":"k_","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"k`":{"opcode":"operator_divide","next":null,"parent":"k_","inputs":{"NUM1":[3,"Nw",[4,""]],"NUM2":[3,"H;",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Nw":{"opcode":"data_itemoflist","next":null,"parent":"k`","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"H;":{"opcode":"data_itemoflist","next":null,"parent":"k`","inputs":{"INDEX":[3,"H=",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"H=":{"opcode":"operator_add","next":null,"parent":"H;","inputs":{"NUM1":[3,"Nx",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Nx":{"opcode":"operator_mathop","next":null,"parent":"H=","inputs":{"NUM":[3,[12,"+sound sweep control","me#*?L^7qHz#9J$tnFV("],[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"k[":{"opcode":"control_if","next":null,"parent":"b|","inputs":{"CONDITION":[2,"H?"],"SUBSTACK":[2,"Ny"]},"fields":{},"shadow":false,"topLevel":false},"H?":{"opcode":"operator_gt","next":null,"parent":"k[","inputs":{"OPERAND1":[3,"Nz",[10,""]],"OPERAND2":[1,[10,"2047"]]},"fields":{},"shadow":false,"topLevel":false},"Nz":{"opcode":"data_itemoflist","next":null,"parent":"H?","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"Ny":{"opcode":"data_replaceitemoflist","next":null,"parent":"k[","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"Nn":{"opcode":"data_setvariableto","next":null,"parent":"cP","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+sound sweep clock cycle","IMUkFA]JweK41~CZ5pa-"]},"shadow":false,"topLevel":false},"c.":{"opcode":"control_if","next":"W)","parent":"c=","inputs":{"CONDITION":[2,"e;"],"SUBSTACK":[2,"j:"]},"fields":{},"shadow":false,"topLevel":false},"e;":{"opcode":"operator_equals","next":null,"parent":"c.","inputs":{"OPERAND1":[3,"J*",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"J*":{"opcode":"operator_mod","next":null,"parent":"e;","inputs":{"NUM1":[3,[12,"APU.clock","`HZLQY,r.hBB${Q2dx.{"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"j:":{"opcode":"data_setvariableto","next":"QL","parent":"c.","inputs":{"VALUE":[3,"e[",[10,"0"]]},"fields":{"VARIABLE":["z17","o7EoB-}CoX@qHC;vxe7J"]},"shadow":false,"topLevel":false},"e[":{"opcode":"operator_multiply","next":null,"parent":"j:","inputs":{"NUM1":[3,"K+",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"QL":{"opcode":"data_setvariableto","next":"e]","parent":"j:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z18","dC+.?Qe{~~tRiUP;0*Ct"]},"shadow":false,"topLevel":false},"e]":{"opcode":"control_repeat","next":null,"parent":"QL","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"fu"]},"fields":{},"shadow":false,"topLevel":false},"fu":{"opcode":"data_changevariableby","next":"k:","parent":"e]","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z18","dC+.?Qe{~~tRiUP;0*Ct"]},"shadow":false,"topLevel":false},"k:":{"opcode":"data_changevariableby","next":"j;","parent":"fu","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z17","o7EoB-}CoX@qHC;vxe7J"]},"shadow":false,"topLevel":false},"j;":{"opcode":"data_replaceitemoflist","next":"Em","parent":"k:","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[3,"En",[10,"thing"]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"En":{"opcode":"operator_mathop","next":null,"parent":"j;","inputs":{"NUM":[3,"Eq",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Eq":{"opcode":"operator_divide","next":null,"parent":"En","inputs":{"NUM1":[3,"Ep",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Ep":{"opcode":"data_itemoflist","next":null,"parent":"Eq","inputs":{"INDEX":[3,"J-",[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"J-":{"opcode":"operator_add","next":null,"parent":"Ep","inputs":{"NUM1":[3,[12,"z18","dC+.?Qe{~~tRiUP;0*Ct"],[4,""]],"NUM2":[1,[4,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"Em":{"opcode":"data_changevariableby","next":"Er","parent":"j;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z17","o7EoB-}CoX@qHC;vxe7J"]},"shadow":false,"topLevel":false},"Er":{"opcode":"data_replaceitemoflist","next":null,"parent":"Em","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[3,"Es",[10,"thing"]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"Es":{"opcode":"operator_mathop","next":null,"parent":"Er","inputs":{"NUM":[3,"Et",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Et":{"opcode":"operator_mod","next":null,"parent":"Es","inputs":{"NUM1":[3,"Eu",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Eu":{"opcode":"data_itemoflist","next":null,"parent":"Et","inputs":{"INDEX":[3,"J.",[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"J.":{"opcode":"operator_add","next":null,"parent":"Eu","inputs":{"NUM1":[3,[12,"z18","dC+.?Qe{~~tRiUP;0*Ct"],[4,""]],"NUM2":[1,[4,"0x30"]]},"fields":{},"shadow":false,"topLevel":false},"W)":{"opcode":"data_changevariableby","next":null,"parent":"c.","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["APU.clock","`HZLQY,r.hBB${Q2dx.{"]},"shadow":false,"topLevel":false},"c}":{"opcode":"procedures_definition","next":"bq","parent":null,"inputs":{"custom_block":[1,"br"]},"fields":{},"shadow":false,"topLevel":true,"x":11093,"y":64},"br":{"opcode":"procedures_prototype","next":null,"parent":"c}","inputs":{"b?qIZe8|_UrM[Yfn3-_u":[1,"W+"],"uuQszrMkUO@fliu7W8X:":[1,"W,"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".updateCachedPitch %s %s","argumentids":"[\"b?qIZe8|_UrM[Yfn3-_u\",\"uuQszrMkUO@fliu7W8X:\"]","argumentnames":"[\"ID\",\"freq\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"W+":{"opcode":"argument_reporter_string_number","next":null,"parent":"br","inputs":{},"fields":{"VALUE":["ID",null]},"shadow":true,"topLevel":false},"W,":{"opcode":"argument_reporter_string_number","next":null,"parent":"br","inputs":{},"fields":{"VALUE":["freq",null]},"shadow":true,"topLevel":false},"bq":{"opcode":"data_replaceitemoflist","next":null,"parent":"c}","inputs":{"INDEX":[3,"Jh",[7,"1"]],"ITEM":[3,"Ji",[10,""]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"Jh":{"opcode":"argument_reporter_string_number","next":null,"parent":"bq","inputs":{},"fields":{"VALUE":["ID",null]},"shadow":false,"topLevel":false},"Ji":{"opcode":"argument_reporter_string_number","next":null,"parent":"bq","inputs":{},"fields":{"VALUE":["freq",null]},"shadow":false,"topLevel":false},"dL":{"opcode":"procedures_definition","next":"c@","parent":null,"inputs":{"custom_block":[1,"jX"]},"fields":{},"shadow":false,"topLevel":true,"x":52829,"y":1068},"jX":{"opcode":"procedures_prototype","next":null,"parent":"dL","inputs":{"wSS}t5HF#*:AbpU{)+ts":[1,"JB"],"nlwnU%1|C,{gCWEot-KT":[1,"JD"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".APU write handler %s %s","argumentids":"[\"wSS}t5HF#*:AbpU{)+ts\",\"nlwnU%1|C,{gCWEot-KT\"]","argumentnames":"[\"addr\",\"byte\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"JB":{"opcode":"argument_reporter_string_number","next":null,"parent":"jX","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":true,"topLevel":false},"JD":{"opcode":"argument_reporter_string_number","next":null,"parent":"jX","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":true,"topLevel":false},"c@":{"opcode":"control_if","next":"cX","parent":"dL","inputs":{"CONDITION":[2,"HP"],"SUBSTACK":[2,"k/"]},"fields":{},"shadow":false,"topLevel":false},"HP":{"opcode":"operator_equals","next":null,"parent":"c@","inputs":{"OPERAND1":[3,"Nh",[10,""]],"OPERAND2":[1,[10,"0xFF10"]]},"fields":{},"shadow":false,"topLevel":false},"Nh":{"opcode":"argument_reporter_string_number","next":null,"parent":"HP","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"k/":{"opcode":"data_setvariableto","next":"k;","parent":"c@","inputs":{"VALUE":[3,"HQ",[10,"0"]]},"fields":{"VARIABLE":["+sound sweep control","me#*?L^7qHz#9J$tnFV("]},"shadow":false,"topLevel":false},"HQ":{"opcode":"operator_mod","next":null,"parent":"k/","inputs":{"NUM1":[3,"Nj",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nj":{"opcode":"argument_reporter_string_number","next":null,"parent":"HQ","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"k;":{"opcode":"data_setvariableto","next":"Ni","parent":"k/","inputs":{"VALUE":[3,"k=",[10,"0"]]},"fields":{"VARIABLE":["+sound sweep dir","K]jvL}s+y4h|E-|ezXOX"]},"shadow":false,"topLevel":false},"k=":{"opcode":"operator_multiply","next":null,"parent":"k;","inputs":{"NUM1":[3,"HV",[4,""]],"NUM2":[3,"HW",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"HV":{"opcode":"operator_subtract","next":null,"parent":"k=","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"HU",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"HU":{"opcode":"operator_multiply","next":null,"parent":"HV","inputs":{"NUM1":[3,"HT",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"HT":{"opcode":"operator_mathop","next":null,"parent":"HU","inputs":{"NUM":[3,"HS",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"HS":{"opcode":"operator_mod","next":null,"parent":"HT","inputs":{"NUM1":[3,"HR",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"HR":{"opcode":"operator_divide","next":null,"parent":"HS","inputs":{"NUM1":[3,"Nk",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Nk":{"opcode":"argument_reporter_string_number","next":null,"parent":"HR","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"HW":{"opcode":"operator_mod","next":null,"parent":"k=","inputs":{"NUM1":[3,"HX",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"HX":{"opcode":"operator_mathop","next":null,"parent":"HW","inputs":{"NUM":[3,"HY",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"HY":{"opcode":"operator_divide","next":null,"parent":"HX","inputs":{"NUM1":[3,"Nl",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Nl":{"opcode":"argument_reporter_string_number","next":null,"parent":"HY","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Ni":{"opcode":"control_stop","next":null,"parent":"k;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cX":{"opcode":"control_if","next":"b/","parent":"c@","inputs":{"CONDITION":[2,"dO"],"SUBSTACK":[2,"jY"]},"fields":{},"shadow":false,"topLevel":false},"dO":{"opcode":"operator_equals","next":null,"parent":"cX","inputs":{"OPERAND1":[3,"JG",[10,""]],"OPERAND2":[1,[10,"0xFF11"]]},"fields":{},"shadow":false,"topLevel":false},"JG":{"opcode":"argument_reporter_string_number","next":null,"parent":"dO","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"jY":{"opcode":"data_replaceitemoflist","next":"jZ","parent":"cX","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"dP",[10,"0"]]},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"dP":{"opcode":"operator_mathop","next":null,"parent":"jY","inputs":{"NUM":[3,"dQ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dQ":{"opcode":"operator_divide","next":null,"parent":"dP","inputs":{"NUM1":[3,"JH",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"JH":{"opcode":"argument_reporter_string_number","next":null,"parent":"dQ","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"jZ":{"opcode":"data_replaceitemoflist","next":"JI","parent":"jY","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"GB",[10,"0"]]},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"GB":{"opcode":"operator_mod","next":null,"parent":"jZ","inputs":{"NUM1":[3,"Mp",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Mp":{"opcode":"argument_reporter_string_number","next":null,"parent":"GB","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"JI":{"opcode":"control_stop","next":null,"parent":"jZ","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b/":{"opcode":"control_if","next":"b.","parent":"cX","inputs":{"CONDITION":[2,"dB"],"SUBSTACK":[2,"bz"]},"fields":{},"shadow":false,"topLevel":false},"dB":{"opcode":"operator_equals","next":null,"parent":"b/","inputs":{"OPERAND1":[3,"Wj",[10,""]],"OPERAND2":[1,[10,"0xFF12"]]},"fields":{},"shadow":false,"topLevel":false},"Wj":{"opcode":"argument_reporter_string_number","next":null,"parent":"dB","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bz":{"opcode":"data_replaceitemoflist","next":"lg","parent":"b/","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"dC",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"dC":{"opcode":"operator_mathop","next":null,"parent":"bz","inputs":{"NUM":[3,"dD",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dD":{"opcode":"operator_divide","next":null,"parent":"dC","inputs":{"NUM1":[3,"Wk",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Wk":{"opcode":"argument_reporter_string_number","next":null,"parent":"dD","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"lg":{"opcode":"data_replaceitemoflist","next":"kB","parent":"bz","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"H[",[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"H[":{"opcode":"operator_mathop","next":null,"parent":"lg","inputs":{"NUM":[3,"H]",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"H]":{"opcode":"operator_divide","next":null,"parent":"H[","inputs":{"NUM1":[3,"NB",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"NB":{"opcode":"argument_reporter_string_number","next":null,"parent":"H]","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"kB":{"opcode":"data_replaceitemoflist","next":"dN","parent":"lg","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"kC",[10,"0"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"kC":{"opcode":"operator_multiply","next":null,"parent":"kB","inputs":{"NUM1":[3,"F[",[4,""]],"NUM2":[3,"F]",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"F[":{"opcode":"operator_subtract","next":null,"parent":"kC","inputs":{"NUM1":[3,"F^",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F^":{"opcode":"operator_multiply","next":null,"parent":"F[","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"F_",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"F_":{"opcode":"operator_mod","next":null,"parent":"F^","inputs":{"NUM1":[3,"F`",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"F`":{"opcode":"operator_mathop","next":null,"parent":"F_","inputs":{"NUM":[3,"F{",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"F{":{"opcode":"operator_divide","next":null,"parent":"F`","inputs":{"NUM1":[3,"Lz",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Lz":{"opcode":"argument_reporter_string_number","next":null,"parent":"F{","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"F]":{"opcode":"operator_mod","next":null,"parent":"kC","inputs":{"NUM1":[3,"LA",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"LA":{"opcode":"argument_reporter_string_number","next":null,"parent":"F]","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"dN":{"opcode":"data_replaceitemoflist","next":"JF","parent":"kB","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"JF":{"opcode":"control_stop","next":null,"parent":"dN","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b.":{"opcode":"control_if","next":"b:","parent":"b/","inputs":{"CONDITION":[2,"bt"],"SUBSTACK":[2,"bu"]},"fields":{},"shadow":false,"topLevel":false},"bt":{"opcode":"operator_or","next":null,"parent":"b.","inputs":{"OPERAND1":[2,"de"],"OPERAND2":[2,"df"]},"fields":{},"shadow":false,"topLevel":false},"de":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,"Jd",[10,""]],"OPERAND2":[1,[10,"0xFF13"]]},"fields":{},"shadow":false,"topLevel":false},"Jd":{"opcode":"argument_reporter_string_number","next":null,"parent":"de","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"df":{"opcode":"operator_equals","next":null,"parent":"bt","inputs":{"OPERAND1":[3,"Je",[10,""]],"OPERAND2":[1,[10,"0xFF14"]]},"fields":{},"shadow":false,"topLevel":false},"Je":{"opcode":"argument_reporter_string_number","next":null,"parent":"df","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bu":{"opcode":"procedures_call","next":"b;","parent":"b.","inputs":{"b?qIZe8|_UrM[Yfn3-_u":[1,[10,"1"]],"uuQszrMkUO@fliu7W8X:":[3,"bv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".updateCachedPitch %s %s","argumentids":"[\"b?qIZe8|_UrM[Yfn3-_u\",\"uuQszrMkUO@fliu7W8X:\"]","warp":"true"}},"bv":{"opcode":"operator_add","next":null,"parent":"bu","inputs":{"NUM1":[3,"dg",[4,""]],"NUM2":[3,"Jg",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"dg":{"opcode":"operator_multiply","next":null,"parent":"bv","inputs":{"NUM1":[3,"Mo",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Mo":{"opcode":"operator_mod","next":null,"parent":"dg","inputs":{"NUM1":[3,"Jf",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Jf":{"opcode":"data_itemoflist","next":null,"parent":"Mo","inputs":{"INDEX":[1,[7,"21"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Jg":{"opcode":"data_itemoflist","next":null,"parent":"bv","inputs":{"INDEX":[1,[7,"20"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"b;":{"opcode":"control_if","next":"Jt","parent":"bu","inputs":{"CONDITION":[2,"dr"],"SUBSTACK":[2,"H"]},"fields":{},"shadow":false,"topLevel":false},"dr":{"opcode":"operator_equals","next":null,"parent":"b;","inputs":{"OPERAND1":[3,"Ju",[10,""]],"OPERAND2":[1,[10,"0xFF14"]]},"fields":{},"shadow":false,"topLevel":false},"Ju":{"opcode":"argument_reporter_string_number","next":null,"parent":"dr","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Jt":{"opcode":"control_stop","next":null,"parent":"b;","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b:":{"opcode":"control_if","next":"b@","parent":"b.","inputs":{"CONDITION":[2,"dR"],"SUBSTACK":[2,"j!"]},"fields":{},"shadow":false,"topLevel":false},"dR":{"opcode":"operator_equals","next":null,"parent":"b:","inputs":{"OPERAND1":[3,"JJ",[10,""]],"OPERAND2":[1,[10,"0xFF16"]]},"fields":{},"shadow":false,"topLevel":false},"JJ":{"opcode":"argument_reporter_string_number","next":null,"parent":"dR","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j!":{"opcode":"data_replaceitemoflist","next":"j#","parent":"b:","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"dS",[10,"0"]]},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"dS":{"opcode":"operator_mathop","next":null,"parent":"j!","inputs":{"NUM":[3,"dT",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dT":{"opcode":"operator_divide","next":null,"parent":"dS","inputs":{"NUM1":[3,"JK",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"JK":{"opcode":"argument_reporter_string_number","next":null,"parent":"dT","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"j#":{"opcode":"data_replaceitemoflist","next":"JL","parent":"j!","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"GA",[10,"0"]]},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"GA":{"opcode":"operator_mod","next":null,"parent":"j#","inputs":{"NUM1":[3,"Mn",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Mn":{"opcode":"argument_reporter_string_number","next":null,"parent":"GA","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"JL":{"opcode":"control_stop","next":null,"parent":"j#","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b@":{"opcode":"control_if","next":"b?","parent":"b:","inputs":{"CONDITION":[2,"dE"],"SUBSTACK":[2,"jV"]},"fields":{},"shadow":false,"topLevel":false},"dE":{"opcode":"operator_equals","next":null,"parent":"b@","inputs":{"OPERAND1":[3,"Jz",[10,""]],"OPERAND2":[1,[10,"0xFF17"]]},"fields":{},"shadow":false,"topLevel":false},"Jz":{"opcode":"argument_reporter_string_number","next":null,"parent":"dE","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"jV":{"opcode":"data_replaceitemoflist","next":"jW","parent":"b@","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"dF",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"dF":{"opcode":"operator_mathop","next":null,"parent":"jV","inputs":{"NUM":[3,"dG",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dG":{"opcode":"operator_divide","next":null,"parent":"dF","inputs":{"NUM1":[3,"JA",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"JA":{"opcode":"argument_reporter_string_number","next":null,"parent":"dG","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"jW":{"opcode":"data_replaceitemoflist","next":"kz","parent":"jV","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"H^",[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"H^":{"opcode":"operator_mathop","next":null,"parent":"jW","inputs":{"NUM":[3,"H_",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"H_":{"opcode":"operator_divide","next":null,"parent":"H^","inputs":{"NUM1":[3,"NC",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"NC":{"opcode":"argument_reporter_string_number","next":null,"parent":"H_","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"kz":{"opcode":"data_replaceitemoflist","next":"dM","parent":"jW","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"kA",[10,"0"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"kA":{"opcode":"operator_multiply","next":null,"parent":"kz","inputs":{"NUM1":[3,"F/",[4,""]],"NUM2":[3,"F:",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"F/":{"opcode":"operator_subtract","next":null,"parent":"kA","inputs":{"NUM1":[3,"F;",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F;":{"opcode":"operator_multiply","next":null,"parent":"F/","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"F=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"F=":{"opcode":"operator_mod","next":null,"parent":"F;","inputs":{"NUM1":[3,"F?",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"F?":{"opcode":"operator_mathop","next":null,"parent":"F=","inputs":{"NUM":[3,"F@",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"F@":{"opcode":"operator_divide","next":null,"parent":"F?","inputs":{"NUM1":[3,"Lx",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Lx":{"opcode":"argument_reporter_string_number","next":null,"parent":"F@","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"F:":{"opcode":"operator_mod","next":null,"parent":"kA","inputs":{"NUM1":[3,"Ly",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Ly":{"opcode":"argument_reporter_string_number","next":null,"parent":"F:","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"dM":{"opcode":"data_replaceitemoflist","next":"JE","parent":"kz","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"JE":{"opcode":"control_stop","next":null,"parent":"dM","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"b?":{"opcode":"control_if","next":"c?","parent":"b@","inputs":{"CONDITION":[2,"bw"],"SUBSTACK":[2,"bx"]},"fields":{},"shadow":false,"topLevel":false},"bw":{"opcode":"operator_or","next":null,"parent":"b?","inputs":{"OPERAND1":[2,"dn"],"OPERAND2":[2,"do"]},"fields":{},"shadow":false,"topLevel":false},"dn":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"Jk",[10,""]],"OPERAND2":[1,[10,"0xFF18"]]},"fields":{},"shadow":false,"topLevel":false},"Jk":{"opcode":"argument_reporter_string_number","next":null,"parent":"dn","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"do":{"opcode":"operator_equals","next":null,"parent":"bw","inputs":{"OPERAND1":[3,"Jl",[10,""]],"OPERAND2":[1,[10,"0xFF19"]]},"fields":{},"shadow":false,"topLevel":false},"Jl":{"opcode":"argument_reporter_string_number","next":null,"parent":"do","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"bx":{"opcode":"procedures_call","next":"cW","parent":"b?","inputs":{"b?qIZe8|_UrM[Yfn3-_u":[1,[10,"2"]],"uuQszrMkUO@fliu7W8X:":[3,"by",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".updateCachedPitch %s %s","argumentids":"[\"b?qIZe8|_UrM[Yfn3-_u\",\"uuQszrMkUO@fliu7W8X:\"]","warp":"true"}},"by":{"opcode":"operator_add","next":null,"parent":"bx","inputs":{"NUM1":[3,"dp",[4,""]],"NUM2":[3,"Jm",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"dp":{"opcode":"operator_multiply","next":null,"parent":"by","inputs":{"NUM1":[3,"dq",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"dq":{"opcode":"operator_mod","next":null,"parent":"dp","inputs":{"NUM1":[3,"Js",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Js":{"opcode":"data_itemoflist","next":null,"parent":"dq","inputs":{"INDEX":[1,[7,"26"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Jm":{"opcode":"data_itemoflist","next":null,"parent":"by","inputs":{"INDEX":[1,[7,"25"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"cW":{"opcode":"control_if","next":"Jy","parent":"bx","inputs":{"CONDITION":[2,"dv"],"SUBSTACK":[2,"I"]},"fields":{},"shadow":false,"topLevel":false},"dv":{"opcode":"operator_equals","next":null,"parent":"cW","inputs":{"OPERAND1":[3,"V|",[10,""]],"OPERAND2":[1,[10,"0xFF19"]]},"fields":{},"shadow":false,"topLevel":false},"I":{"opcode":"control_if_else","next":null,"parent":"cW","inputs":{"CONDITION":[2,"dw"],"SUBSTACK":[2,"dx"],"SUBSTACK2":[2,"Wh"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Wg"},"dw":{"opcode":"operator_gt","next":null,"parent":"I","inputs":{"OPERAND1":[3,"Wi",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Wi":{"opcode":"argument_reporter_string_number","next":null,"parent":"dw","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"dx":{"opcode":"data_replaceitemoflist","next":"dy","parent":"I","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"dy":{"opcode":"data_replaceitemoflist","next":null,"parent":"dx","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[3,"NG",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"NG":{"opcode":"data_itemoflist","next":null,"parent":"dy","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"Wh":{"opcode":"data_replaceitemoflist","next":null,"parent":"I","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"Jy":{"opcode":"control_stop","next":null,"parent":"cW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c?":{"opcode":"control_if","next":"c^","parent":"b?","inputs":{"CONDITION":[2,"GC"],"SUBSTACK":[2,"b="]},"fields":{},"shadow":false,"topLevel":false},"GC":{"opcode":"operator_equals","next":null,"parent":"c?","inputs":{"OPERAND1":[3,"Mr",[10,""]],"OPERAND2":[1,[10,"0xFF1B"]]},"fields":{},"shadow":false,"topLevel":false},"Mr":{"opcode":"argument_reporter_string_number","next":null,"parent":"GC","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"b=":{"opcode":"data_replaceitemoflist","next":"Mj","parent":"c?","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"Mk",[10,"0"]]},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"Mk":{"opcode":"argument_reporter_string_number","next":null,"parent":"b=","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Mj":{"opcode":"control_stop","next":null,"parent":"b=","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c^":{"opcode":"control_if","next":"c_","parent":"c?","inputs":{"CONDITION":[2,"FG"],"SUBSTACK":[2,"b`"]},"fields":{},"shadow":false,"topLevel":false},"FG":{"opcode":"operator_equals","next":null,"parent":"c^","inputs":{"OPERAND1":[3,"J!",[10,""]],"OPERAND2":[1,[10,"0xFF1C"]]},"fields":{},"shadow":false,"topLevel":false},"J!":{"opcode":"argument_reporter_string_number","next":null,"parent":"FG","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"b`":{"opcode":"control_if_else","next":"J#","parent":"c^","inputs":{"CONDITION":[2,"ef"],"SUBSTACK":[2,"ej"],"SUBSTACK2":[2,"j/"]},"fields":{},"shadow":false,"topLevel":false},"ef":{"opcode":"operator_equals","next":null,"parent":"b`","inputs":{"OPERAND1":[3,"en",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"en":{"opcode":"operator_mod","next":null,"parent":"ef","inputs":{"NUM1":[3,"eo",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"eo":{"opcode":"operator_mathop","next":null,"parent":"en","inputs":{"NUM":[3,"ep",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ep":{"opcode":"operator_divide","next":null,"parent":"eo","inputs":{"NUM1":[3,"J(",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"J(":{"opcode":"argument_reporter_string_number","next":null,"parent":"ep","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"ej":{"opcode":"data_replaceitemoflist","next":"J%","parent":"b`","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"J%":{"opcode":"data_replaceitemoflist","next":null,"parent":"ej","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"j/":{"opcode":"data_replaceitemoflist","next":"eZ","parent":"b`","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"e!",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"e!":{"opcode":"operator_subtract","next":null,"parent":"j/","inputs":{"NUM1":[1,[4,"15"]],"NUM2":[3,"e#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"e#":{"opcode":"operator_multiply","next":null,"parent":"e!","inputs":{"NUM1":[3,"e%",[4,""]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"e%":{"opcode":"operator_mod","next":null,"parent":"e#","inputs":{"NUM1":[3,"e/",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"e/":{"opcode":"operator_mathop","next":null,"parent":"e%","inputs":{"NUM":[3,"e:",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"e:":{"opcode":"operator_divide","next":null,"parent":"e/","inputs":{"NUM1":[3,"J)",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"J)":{"opcode":"argument_reporter_string_number","next":null,"parent":"e:","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"eZ":{"opcode":"data_replaceitemoflist","next":null,"parent":"j/","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"H`",[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"H`":{"opcode":"operator_subtract","next":null,"parent":"eZ","inputs":{"NUM1":[1,[4,"15"]],"NUM2":[3,"H{",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"H{":{"opcode":"operator_multiply","next":null,"parent":"H`","inputs":{"NUM1":[3,"H|",[4,""]],"NUM2":[1,[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"H|":{"opcode":"operator_mod","next":null,"parent":"H{","inputs":{"NUM1":[3,"H}",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"H}":{"opcode":"operator_mathop","next":null,"parent":"H|","inputs":{"NUM":[3,"H~",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"H~":{"opcode":"operator_divide","next":null,"parent":"H}","inputs":{"NUM1":[3,"ND",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"ND":{"opcode":"argument_reporter_string_number","next":null,"parent":"H~","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"J#":{"opcode":"control_stop","next":null,"parent":"b`","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c_":{"opcode":"control_if","next":"c]","parent":"c^","inputs":{"CONDITION":[2,"j="],"SUBSTACK":[2,"j?"]},"fields":{},"shadow":false,"topLevel":false},"j?":{"opcode":"procedures_call","next":"cp","parent":"c_","inputs":{"b?qIZe8|_UrM[Yfn3-_u":[1,[10,"3"]],"uuQszrMkUO@fliu7W8X:":[3,"j@",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".updateCachedPitch %s %s","argumentids":"[\"b?qIZe8|_UrM[Yfn3-_u\",\"uuQszrMkUO@fliu7W8X:\"]","warp":"true"}},"j@":{"opcode":"operator_add","next":null,"parent":"j?","inputs":{"NUM1":[3,"Ex",[4,""]],"NUM2":[3,"J;",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ex":{"opcode":"operator_multiply","next":null,"parent":"j@","inputs":{"NUM1":[3,"Ey",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Ey":{"opcode":"operator_mod","next":null,"parent":"Ex","inputs":{"NUM1":[3,"J=",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"J=":{"opcode":"data_itemoflist","next":null,"parent":"Ey","inputs":{"INDEX":[1,[7,"31"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"J;":{"opcode":"data_itemoflist","next":null,"parent":"j@","inputs":{"INDEX":[1,[7,"30"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"cp":{"opcode":"control_if","next":"J?","parent":"j?","inputs":{"CONDITION":[2,"Ez"],"SUBSTACK":[2,"cA"]},"fields":{},"shadow":false,"topLevel":false},"Ez":{"opcode":"operator_equals","next":null,"parent":"cp","inputs":{"OPERAND1":[3,"J@",[10,""]],"OPERAND2":[1,[10,"0xFF1E"]]},"fields":{},"shadow":false,"topLevel":false},"J@":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ez","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"cA":{"opcode":"control_if_else","next":null,"parent":"cp","inputs":{"CONDITION":[2,"EA"],"SUBSTACK":[2,"EB"],"SUBSTACK2":[2,"J["]},"fields":{},"shadow":false,"topLevel":false},"EA":{"opcode":"operator_gt","next":null,"parent":"cA","inputs":{"OPERAND1":[3,"J{",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"J{":{"opcode":"argument_reporter_string_number","next":null,"parent":"EA","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"EB":{"opcode":"data_replaceitemoflist","next":"EC","parent":"cA","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"EC":{"opcode":"data_replaceitemoflist","next":null,"parent":"EB","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"NH",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"NH":{"opcode":"data_itemoflist","next":null,"parent":"EC","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"J[":{"opcode":"data_replaceitemoflist","next":null,"parent":"cA","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"J?":{"opcode":"control_stop","next":null,"parent":"cp","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c]":{"opcode":"control_if","next":";","parent":"c_","inputs":{"CONDITION":[2,"GD"],"SUBSTACK":[2,"kW"]},"fields":{},"shadow":false,"topLevel":false},"GD":{"opcode":"operator_equals","next":null,"parent":"c]","inputs":{"OPERAND1":[3,"Ms",[10,""]],"OPERAND2":[1,[10,"0xFF20"]]},"fields":{},"shadow":false,"topLevel":false},"Ms":{"opcode":"argument_reporter_string_number","next":null,"parent":"GD","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kW":{"opcode":"data_replaceitemoflist","next":"Mu","parent":"c]","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Mv",[10,"0"]]},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"Mv":{"opcode":"argument_reporter_string_number","next":null,"parent":"kW","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Mu":{"opcode":"control_stop","next":null,"parent":"kW","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},";":{"opcode":"control_if","next":"cw","parent":"c]","inputs":{"CONDITION":[2,"dV"],"SUBSTACK":[2,"j)"]},"fields":{},"shadow":false,"topLevel":false},"dV":{"opcode":"operator_equals","next":null,"parent":";","inputs":{"OPERAND1":[3,"JO",[10,""]],"OPERAND2":[1,[10,"0xFF21"]]},"fields":{},"shadow":false,"topLevel":false},"JO":{"opcode":"argument_reporter_string_number","next":null,"parent":"dV","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j)":{"opcode":"data_replaceitemoflist","next":"j*","parent":";","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"dW",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"dW":{"opcode":"operator_mathop","next":null,"parent":"j)","inputs":{"NUM":[3,"dX",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"dX":{"opcode":"operator_divide","next":null,"parent":"dW","inputs":{"NUM1":[3,"JP",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"JP":{"opcode":"argument_reporter_string_number","next":null,"parent":"dX","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"j*":{"opcode":"data_replaceitemoflist","next":"j]","parent":"j)","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"Ia",[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"Ia":{"opcode":"operator_mathop","next":null,"parent":"j*","inputs":{"NUM":[3,"Ib",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ib":{"opcode":"operator_divide","next":null,"parent":"Ia","inputs":{"NUM1":[3,"NE",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"NE":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ib","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"j]":{"opcode":"data_replaceitemoflist","next":"dY","parent":"j*","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"j^",[10,"0"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"j^":{"opcode":"operator_multiply","next":null,"parent":"j]","inputs":{"NUM1":[3,"EW",[4,""]],"NUM2":[3,"EX",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"EW":{"opcode":"operator_subtract","next":null,"parent":"j^","inputs":{"NUM1":[3,"EY",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"EY":{"opcode":"operator_multiply","next":null,"parent":"EW","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"EZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"EZ":{"opcode":"operator_mod","next":null,"parent":"EY","inputs":{"NUM1":[3,"E!",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"E!":{"opcode":"operator_mathop","next":null,"parent":"EZ","inputs":{"NUM":[3,"E#",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"E#":{"opcode":"operator_divide","next":null,"parent":"E!","inputs":{"NUM1":[3,"Kf",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Kf":{"opcode":"argument_reporter_string_number","next":null,"parent":"E#","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"EX":{"opcode":"operator_mod","next":null,"parent":"j^","inputs":{"NUM1":[3,"Ke",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Ke":{"opcode":"argument_reporter_string_number","next":null,"parent":"EX","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"dY":{"opcode":"data_replaceitemoflist","next":"JQ","parent":"j]","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"JQ":{"opcode":"control_stop","next":null,"parent":"dY","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"cw":{"opcode":"control_if","next":"c[","parent":";","inputs":{"CONDITION":[2,"dU"],"SUBSTACK":[2,"j%"]},"fields":{},"shadow":false,"topLevel":false},"dU":{"opcode":"operator_equals","next":null,"parent":"cw","inputs":{"OPERAND1":[3,"JM",[10,""]],"OPERAND2":[1,[10,"0xFF22"]]},"fields":{},"shadow":false,"topLevel":false},"JM":{"opcode":"argument_reporter_string_number","next":null,"parent":"dU","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j%":{"opcode":"data_replaceitemoflist","next":"j(","parent":"cw","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"d%",[10,"0"]]},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"d%":{"opcode":"operator_mod","next":null,"parent":"j%","inputs":{"NUM1":[3,"d(",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"d(":{"opcode":"operator_mathop","next":null,"parent":"d%","inputs":{"NUM":[3,"d)",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"d)":{"opcode":"operator_divide","next":null,"parent":"d(","inputs":{"NUM1":[3,"JS",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"JS":{"opcode":"argument_reporter_string_number","next":null,"parent":"d)","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"j(":{"opcode":"procedures_call","next":"JN","parent":"j%","inputs":{"b?qIZe8|_UrM[Yfn3-_u":[1,[10,"4"]],"uuQszrMkUO@fliu7W8X:":[3,"j,",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".updateCachedPitch %s %s","argumentids":"[\"b?qIZe8|_UrM[Yfn3-_u\",\"uuQszrMkUO@fliu7W8X:\"]","warp":"true"}},"j,":{"opcode":"operator_multiply","next":null,"parent":"j(","inputs":{"NUM1":[3,"d+",[4,""]],"NUM2":[3,"d,",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d+":{"opcode":"operator_multiply","next":null,"parent":"j,","inputs":{"NUM1":[3,"j-",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"j-":{"opcode":"operator_add","next":null,"parent":"d+","inputs":{"NUM1":[3,"d.",[4,""]],"NUM2":[3,"d/",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d.":{"opcode":"operator_mod","next":null,"parent":"j-","inputs":{"NUM1":[3,"JU",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"JU":{"opcode":"argument_reporter_string_number","next":null,"parent":"d.","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"d/":{"opcode":"operator_multiply","next":null,"parent":"j-","inputs":{"NUM1":[3,"d:",[4,""]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"d:":{"opcode":"operator_equals","next":null,"parent":"d/","inputs":{"OPERAND1":[3,"d;",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"d;":{"opcode":"operator_mod","next":null,"parent":"d:","inputs":{"NUM1":[3,"JV",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"JV":{"opcode":"argument_reporter_string_number","next":null,"parent":"d;","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"d,":{"opcode":"operator_round","next":null,"parent":"j,","inputs":{"NUM":[3,"d-",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"d-":{"opcode":"operator_mathop","next":null,"parent":"d,","inputs":{"NUM":[3,"j+",[4,""]]},"fields":{"OPERATOR":["e ^",null]},"shadow":false,"topLevel":false},"j+":{"opcode":"operator_multiply","next":null,"parent":"d-","inputs":{"NUM1":[3,"JT",[4,""]],"NUM2":[3,"dZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"JT":{"opcode":"operator_mathop","next":null,"parent":"j+","inputs":{"NUM":[1,[4,"2"]]},"fields":{"OPERATOR":["ln",null]},"shadow":false,"topLevel":false},"dZ":{"opcode":"operator_mathop","next":null,"parent":"j+","inputs":{"NUM":[3,"d#",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"d#":{"opcode":"operator_divide","next":null,"parent":"dZ","inputs":{"NUM1":[3,"JR",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"JR":{"opcode":"argument_reporter_string_number","next":null,"parent":"d#","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"JN":{"opcode":"control_stop","next":null,"parent":"j(","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"c[":{"opcode":"control_if","next":"j.","parent":"cw","inputs":{"CONDITION":[2,"d="],"SUBSTACK":[2,"J"]},"fields":{},"shadow":false,"topLevel":false},"d=":{"opcode":"operator_equals","next":null,"parent":"c[","inputs":{"OPERAND1":[3,"JW",[10,""]],"OPERAND2":[1,[10,"0xFF23"]]},"fields":{},"shadow":false,"topLevel":false},"JW":{"opcode":"argument_reporter_string_number","next":null,"parent":"d=","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"J":{"opcode":"control_if_else","next":"JX","parent":"c[","inputs":{"CONDITION":[2,"d?"],"SUBSTACK":[2,"d@"],"SUBSTACK2":[2,"JY"]},"fields":{},"shadow":false,"topLevel":false},"d?":{"opcode":"operator_gt","next":null,"parent":"J","inputs":{"OPERAND1":[3,"JZ",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"JZ":{"opcode":"argument_reporter_string_number","next":null,"parent":"d?","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"d@":{"opcode":"data_replaceitemoflist","next":"FF","parent":"J","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"JY":{"opcode":"data_replaceitemoflist","next":null,"parent":"J","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"JX":{"opcode":"control_stop","next":null,"parent":"J","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j.":{"opcode":"control_if","next":null,"parent":"c[","inputs":{"CONDITION":[2,"EF"],"SUBSTACK":[2,"j["]},"fields":{},"shadow":false,"topLevel":false},"EF":{"opcode":"operator_equals","next":null,"parent":"j.","inputs":{"OPERAND1":[3,"J|",[10,""]],"OPERAND2":[1,[10,"0xFF24"]]},"fields":{},"shadow":false,"topLevel":false},"J|":{"opcode":"argument_reporter_string_number","next":null,"parent":"EF","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j[":{"opcode":"data_setvariableto","next":"EG","parent":"j.","inputs":{"VALUE":[3,"EH",[10,"0"]]},"fields":{"VARIABLE":["+globalVol.L","-cb~TcrrZl$.~s$W.D1}"]},"shadow":false,"topLevel":false},"EH":{"opcode":"operator_divide","next":null,"parent":"j[","inputs":{"NUM1":[3,"EK",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"EK":{"opcode":"operator_mod","next":null,"parent":"EH","inputs":{"NUM1":[3,"EJ",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"EJ":{"opcode":"operator_mathop","next":null,"parent":"EK","inputs":{"NUM":[3,"EL",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"EL":{"opcode":"operator_divide","next":null,"parent":"EJ","inputs":{"NUM1":[3,"J}",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"J}":{"opcode":"argument_reporter_string_number","next":null,"parent":"EL","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"EG":{"opcode":"data_setvariableto","next":null,"parent":"j[","inputs":{"VALUE":[3,"EI",[10,"0"]]},"fields":{"VARIABLE":["+globalVol.R","46oK=P-#sVvKHaV@Dfkc"]},"shadow":false,"topLevel":false},"EI":{"opcode":"operator_divide","next":null,"parent":"EG","inputs":{"NUM1":[3,"EM",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"EM":{"opcode":"operator_mod","next":null,"parent":"EI","inputs":{"NUM1":[3,"EN",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"EN":{"opcode":"operator_mathop","next":null,"parent":"EM","inputs":{"NUM":[3,"EO",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"EO":{"opcode":"operator_divide","next":null,"parent":"EN","inputs":{"NUM1":[3,"J~",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"J~":{"opcode":"argument_reporter_string_number","next":null,"parent":"EO","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"Kc":{"opcode":"procedures_definition","next":null,"parent":null,"inputs":{"custom_block":[1,"ES"]},"fields":{},"shadow":false,"topLevel":true,"x":21967,"y":64},"ES":{"opcode":"procedures_prototype","next":null,"parent":"Kc","inputs":{"nk!RmaIl|l1qOuViqGju":[1,"Kd"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"// %s","argumentids":"[\"nk!RmaIl|l1qOuViqGju\"]","argumentnames":"[\"comment\"]","argumentdefaults":"[\"\"]","warp":"false"}},"Kd":{"opcode":"argument_reporter_string_number","next":null,"parent":"ES","inputs":{},"fields":{"VALUE":["comment",null]},"shadow":true,"topLevel":false},"Z.":{"opcode":"data_replaceitemoflist","next":null,"parent":null,"inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":true,"x":11625,"y":713},"Z/":{"opcode":"procedures_call","next":null,"parent":null,"inputs":{},"fields":{},"shadow":false,"topLevel":true,"x":58029,"y":1265,"mutation":{"tagName":"mutation","children":[],"proccode":"​​breakpoint​​","argumentids":"[]","warp":"false"}},"a*s":{"opcode":"event_broadcastandwait","next":"mt","parent":"mu","inputs":{"BROADCAST_INPUT":[1,[11,"un-needed broadcast","3C5UsG$8;2cBrBD}O*,m"]]},"fields":{},"shadow":false,"topLevel":false},"bZ+":{"opcode":"event_whenbroadcastreceived","next":"mk","parent":null,"inputs":{},"fields":{"BROADCAST_OPTION":["emulate!!","0(GnD,(WAL7zrC4E)S*!"]},"shadow":false,"topLevel":true,"x":5500,"y":615},"l*":{"opcode":"data_setvariableto","next":"l+","parent":"l)","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["mmu.rombank","!7Po9_*W!#iS];em7]$r"]},"shadow":false,"topLevel":false},"l+":{"opcode":"data_setvariableto","next":"l,","parent":"l*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["mmu.vrambank","g?mSsNCoU094~azf1Kw|"]},"shadow":false,"topLevel":false},"l,":{"opcode":"data_setvariableto","next":"l-","parent":"l+","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["mmu.wrambank","X):[=M.}b*15xJ-uP[dT"]},"shadow":false,"topLevel":false},"l-":{"opcode":"data_setvariableto","next":"l.","parent":"l,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["mmu.srambank","+F4tew{OQ9t*u:UEayCL"]},"shadow":false,"topLevel":false},"l.":{"opcode":"data_setvariableto","next":"l/","parent":"l-","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["tim.DIV","sqDTP/*RtaNn=5LUOT^F"]},"shadow":false,"topLevel":false},"l/":{"opcode":"data_setvariableto","next":"l:","parent":"l.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cycles.frame",":m^*=-k.c+0y=EF,uy?L"]},"shadow":false,"topLevel":false},"l:":{"opcode":"data_setvariableto","next":"yc","parent":"l/","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cacheNext","|vq^|Nw7_Em1t)+=ax#h"]},"shadow":false,"topLevel":false},"yc":{"opcode":"data_setvariableto","next":"yS","parent":"l:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["frameSkipFraction","JPG$FYxfb/]Hjw5bCKdL"]},"shadow":false,"topLevel":false},"yS":{"opcode":"data_setvariableto","next":"BF","parent":"yc","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAType","^XNp?SBj+j9BODocp,Pi"]},"shadow":false,"topLevel":false},"BF":{"opcode":"data_setvariableto","next":"BE","parent":"yS","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"]},"shadow":false,"topLevel":false},"BE":{"opcode":"data_setvariableto","next":"BG","parent":"BF","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"]},"shadow":false,"topLevel":false},"BG":{"opcode":"data_setvariableto","next":"CC","parent":"BE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAdest","TuBS]0nKMHzchM-ho-%Z"]},"shadow":false,"topLevel":false},"CC":{"opcode":"data_setvariableto","next":"BI","parent":"BG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.CGBDMAsource","*5zyv3=QQGvUrrQT)D0d"]},"shadow":false,"topLevel":false},"BI":{"opcode":"procedures_call","next":"BH","parent":"CC","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.import_rom","argumentids":"[]","warp":"true"}},"BH":{"opcode":"procedures_call","next":"BJ","parent":"BI","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.extra","argumentids":"[]","warp":"true"}},"BJ":{"opcode":"procedures_call","next":"BK","parent":"BH","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.getCartData","argumentids":"[]","warp":"true"}},"BK":{"opcode":"data_deletealloflist","next":"BL","parent":"BJ","inputs":{},"fields":{"LIST":["ppu.spritebuffer","ioy(uxm6RfkX3s-LMyG$"]},"shadow":false,"topLevel":false},"BL":{"opcode":"data_deletealloflist","next":"BM","parent":"BK","inputs":{},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"BM":{"opcode":"data_deletealloflist","next":"i]","parent":"BL","inputs":{},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"i]":{"opcode":"control_repeat","next":"BN","parent":"BM","inputs":{"TIMES":[1,[6,"0x4000"]],"SUBSTACK":[2,"D_"]},"fields":{},"shadow":false,"topLevel":false},"D_":{"opcode":"data_addtolist","next":null,"parent":"i]","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"BN":{"opcode":"data_deletealloflist","next":"co","parent":"i]","inputs":{},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"co":{"opcode":"control_repeat","next":"BO","parent":"BN","inputs":{"TIMES":[3,"D`",[6,"0x2000"]],"SUBSTACK":[2,"D{"]},"fields":{},"shadow":false,"topLevel":false},"D`":{"opcode":"operator_multiply","next":null,"parent":"co","inputs":{"NUM1":[1,[4,"0x2000"]],"NUM2":[3,[12,"mbc.rambanks","DcDS)csOs5F_~-#_3p-R"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"D{":{"opcode":"data_addtolist","next":null,"parent":"co","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".SRAM",";Ux:|_c+-!{tS+~D)}_F"]},"shadow":false,"topLevel":false},"BO":{"opcode":"data_deletealloflist","next":"i^","parent":"co","inputs":{},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"i^":{"opcode":"control_repeat","next":"bQ","parent":"BO","inputs":{"TIMES":[1,[6,"0x2000"]],"SUBSTACK":[2,"Ec"]},"fields":{},"shadow":false,"topLevel":false},"Ec":{"opcode":"data_addtolist","next":null,"parent":"i^","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"bQ":{"opcode":"control_if","next":"BP","parent":"i^","inputs":{"CONDITION":[2,"Iu"],"SUBSTACK":[2,"CV"]},"fields":{},"shadow":false,"topLevel":false},"Iu":{"opcode":"operator_equals","next":null,"parent":"bQ","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"CV":{"opcode":"control_repeat","next":null,"parent":"bQ","inputs":{"TIMES":[1,[6,"0x6000"]],"SUBSTACK":[2,"Iv"]},"fields":{},"shadow":false,"topLevel":false},"Iv":{"opcode":"data_addtolist","next":null,"parent":"CV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".WRAM","Jl+tTKV)YMSt6U;,iZTq"]},"shadow":false,"topLevel":false},"BP":{"opcode":"data_deletealloflist","next":"i_","parent":"bQ","inputs":{},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"i_":{"opcode":"control_repeat","next":"BQ","parent":"BP","inputs":{"TIMES":[1,[6,"0xA0"]],"SUBSTACK":[2,"Ed"]},"fields":{},"shadow":false,"topLevel":false},"Ed":{"opcode":"data_addtolist","next":null,"parent":"i_","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"BQ":{"opcode":"data_deletealloflist","next":"BR","parent":"i_","inputs":{},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"BR":{"opcode":"data_deletealloflist","next":"i`","parent":"BQ","inputs":{},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"i`":{"opcode":"control_repeat","next":"BS","parent":"BR","inputs":{"TIMES":[1,[6,"0x80"]],"SUBSTACK":[2,"BT"]},"fields":{},"shadow":false,"topLevel":false},"BT":{"opcode":"data_addtolist","next":"Ee","parent":"i`","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Ee":{"opcode":"data_addtolist","next":null,"parent":"BT","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".HRAM","yYM^xNc|^5K.n|T3j@t3"]},"shadow":false,"topLevel":false},"BS":{"opcode":"data_setvariableto","next":"BU","parent":"i`","inputs":{"VALUE":[1,[10,"256"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"BU":{"opcode":"data_setvariableto","next":"BV","parent":"BS","inputs":{"VALUE":[1,[10,"65534"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"BV":{"opcode":"data_setvariableto","next":"BW","parent":"BU","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":["JIT.cache","A584l[L5GQMFFUH,c]J-"]},"shadow":false,"topLevel":false},"BW":{"opcode":"data_setvariableto","next":"BX","parent":"BV","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cpu.interruptSwitch","T2{Yzl11_xkw11Yf4s3m"]},"shadow":false,"topLevel":false},"BX":{"opcode":"data_setvariableto","next":"BY","parent":"BW","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"BY":{"opcode":"data_setvariableto","next":"BZ","parent":"BX","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"]},"shadow":false,"topLevel":false},"BZ":{"opcode":"data_setvariableto","next":"i{","parent":"BY","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["cpu.speed","nSL^k6xxL**59aM}a+G]"]},"shadow":false,"topLevel":false},"i{":{"opcode":"data_setvariableto","next":"B!","parent":"BZ","inputs":{"VALUE":[3,"Ef",[10,"0"]]},"fields":{"VARIABLE":["ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"]},"shadow":false,"topLevel":false},"Ef":{"opcode":"operator_divide","next":null,"parent":"i{","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,[12,"cpu.speed","nSL^k6xxL**59aM}a+G]"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"B!":{"opcode":"data_setvariableto","next":"B(","parent":"i{","inputs":{"VALUE":[1,[10,"-1"]]},"fields":{"VARIABLE":["ppu.statcond2","J2Vgi`9fi{f=C=v28Ymu"]},"shadow":false,"topLevel":false},"B(":{"opcode":"data_setvariableto","next":"B*","parent":"B!","inputs":{"VALUE":[1,[10,"160"]]},"fields":{"VARIABLE":["ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"]},"shadow":false,"topLevel":false},"B*":{"opcode":"data_setvariableto","next":"B+","parent":"B(","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"]},"shadow":false,"topLevel":false},"B+":{"opcode":"data_setvariableto","next":"B,","parent":"B*","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["x1","!u~jcG^*$uH5V^jDA!S3"]},"shadow":false,"topLevel":false},"B,":{"opcode":"data_setvariableto","next":"B:","parent":"B+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["x2","OR*glQYx.J]o[~0Y^fJ%"]},"shadow":false,"topLevel":false},"B:":{"opcode":"data_setvariableto","next":"B=","parent":"B,","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["xf",",]v-T%bJ~R+f++sZkv7/"]},"shadow":false,"topLevel":false},"B=":{"opcode":"data_setvariableto","next":"B@","parent":"B:","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cpu.HALT","UF5:UF)p/5::_8Qn?wJH"]},"shadow":false,"topLevel":false},"B@":{"opcode":"data_setvariableto","next":"D+","parent":"B=","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["APU.clock","`HZLQY,r.hBB${Q2dx.{"]},"shadow":false,"topLevel":false},"D+":{"opcode":"data_setvariableto","next":"ED","parent":"B@","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+globalVol.L","-cb~TcrrZl$.~s$W.D1}"]},"shadow":false,"topLevel":false},"ED":{"opcode":"data_setvariableto","next":"EE","parent":"D+","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+globalVol.R","46oK=P-#sVvKHaV@Dfkc"]},"shadow":false,"topLevel":false},"EE":{"opcode":"data_setvariableto","next":"HZ","parent":"ED","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+sound sweep dir","K]jvL}s+y4h|E-|ezXOX"]},"shadow":false,"topLevel":false},"HZ":{"opcode":"data_setvariableto","next":"B_","parent":"EE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+sound sweep control","me#*?L^7qHz#9J$tnFV("]},"shadow":false,"topLevel":false},"B_":{"opcode":"data_setvariableto","next":"B^","parent":"HZ","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["+sound sweep clock cycle","IMUkFA]JweK41~CZ5pa-"]},"shadow":false,"topLevel":false},"B^":{"opcode":"data_deletealloflist","next":"B`","parent":"B_","inputs":{},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"B`":{"opcode":"data_addtolist","next":"B{","parent":"B^","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"B{":{"opcode":"data_addtolist","next":"B|","parent":"B`","inputs":{"ITEM":[1,[10,"19"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"B|":{"opcode":"data_addtolist","next":"B}","parent":"B{","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"B}":{"opcode":"data_addtolist","next":"B~","parent":"B|","inputs":{"ITEM":[1,[10,"216"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"B~":{"opcode":"data_addtolist","next":"Ca","parent":"B}","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Ca":{"opcode":"data_addtolist","next":"Cb","parent":"B~","inputs":{"ITEM":[1,[10,"77"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Cb":{"opcode":"data_addtolist","next":"D","parent":"Ca","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"D":{"opcode":"control_if_else","next":"Cc","parent":"Cb","inputs":{"CONDITION":[2,"Eg"],"SUBSTACK":[2,"Eh"],"SUBSTACK2":[2,"Ej"]},"fields":{},"shadow":false,"topLevel":false},"Eg":{"opcode":"operator_equals","next":null,"parent":"D","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Eh":{"opcode":"data_addtolist","next":null,"parent":"D","inputs":{"ITEM":[1,[10,"17"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Ej":{"opcode":"data_addtolist","next":null,"parent":"D","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"Cc":{"opcode":"data_deletealloflist","next":"Cd","parent":"D","inputs":{},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Cd":{"opcode":"data_addtolist","next":"Ce","parent":"Cc","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Ce":{"opcode":"data_addtolist","next":"Cf","parent":"Cd","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Cf":{"opcode":"data_addtolist","next":"Cg","parent":"Ce","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Cg":{"opcode":"data_addtolist","next":"Ch","parent":"Cf","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Ch":{"opcode":"data_deletealloflist","next":"i|","parent":"Cg","inputs":{},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"i|":{"opcode":"control_repeat","next":"Ci","parent":"Ch","inputs":{"TIMES":[1,[6,"23040"]],"SUBSTACK":[2,"Ek"]},"fields":{},"shadow":false,"topLevel":false},"Ek":{"opcode":"data_addtolist","next":null,"parent":"i|","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"Ci":{"opcode":"procedures_call","next":"Cj","parent":"i|","inputs":{"X[02xnHqj{,K9Mfr]Vs0":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"generate table %s","argumentids":"[\"X[02xnHqj{,K9Mfr]Vs0\"]","warp":"false"}},"Cj":{"opcode":"procedures_call","next":"Ck","parent":"Ci","inputs":{"Es`9AAGB;?Te~g-eb+F7":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"BRT %s","argumentids":"[\"Es`9AAGB;?Te~g-eb+F7\"]","warp":"true"}},"Ck":{"opcode":"procedures_call","next":"Cl","parent":"Cj","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.turnofftheLCD","argumentids":"[]","warp":"true"}},"Cl":{"opcode":"data_replaceitemoflist","next":"Cm","parent":"Ck","inputs":{"INDEX":[1,[7,"65"]],"ITEM":[1,[10,"145"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Cm":{"opcode":"data_deletealloflist","next":"E","parent":"Cl","inputs":{},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"E":{"opcode":"control_if_else","next":"Cn","parent":"Cm","inputs":{"CONDITION":[2,"El"],"SUBSTACK":[2,"i}"],"SUBSTACK2":[2,"i~"]},"fields":{},"shadow":false,"topLevel":false},"El":{"opcode":"operator_not","next":null,"parent":"E","inputs":{},"fields":{},"shadow":false,"topLevel":false},"i}":{"opcode":"data_addtolist","next":"jb","parent":"E","inputs":{"ITEM":[3,"Eo",[10,"#c6d2a4"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"Eo":{"opcode":"operator_join","next":null,"parent":"i}","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"c6d2a4"]]},"fields":{},"shadow":false,"topLevel":false},"jb":{"opcode":"data_addtolist","next":"jc","parent":"i}","inputs":{"ITEM":[3,"Co",[10,"#8d986f"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"Co":{"opcode":"operator_add","next":null,"parent":"jb","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"FK",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"FK":{"opcode":"operator_join","next":null,"parent":"Co","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"8d986f"]]},"fields":{},"shadow":false,"topLevel":false},"jc":{"opcode":"data_addtolist","next":"Cp","parent":"jb","inputs":{"ITEM":[3,"Cq",[10,"#4e553d"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"Cq":{"opcode":"operator_add","next":null,"parent":"jc","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"FL",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"FL":{"opcode":"operator_join","next":null,"parent":"Cq","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"4e553d"]]},"fields":{},"shadow":false,"topLevel":false},"Cp":{"opcode":"data_addtolist","next":null,"parent":"jc","inputs":{"ITEM":[3,"Cr",[10,"#201f20"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"Cr":{"opcode":"operator_add","next":null,"parent":"Cp","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"FM",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"FM":{"opcode":"operator_join","next":null,"parent":"Cr","inputs":{"STRING1":[1,[10,"0x"]],"STRING2":[1,[10,"201f20"]]},"fields":{},"shadow":false,"topLevel":false},"i~":{"opcode":"data_addtolist","next":"jd","parent":"E","inputs":{"ITEM":[3,"FN",[10,"#dbf4b4"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"FN":{"opcode":"operator_multiply","next":null,"parent":"i~","inputs":{"NUM1":[1,[4,"3"]],"NUM2":[1,[4,"5592405"]]},"fields":{},"shadow":false,"topLevel":false},"jd":{"opcode":"data_addtolist","next":"je","parent":"i~","inputs":{"ITEM":[3,"FR",[10,"#abc396"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"FR":{"opcode":"operator_multiply","next":null,"parent":"jd","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[1,[4,"5592405"]]},"fields":{},"shadow":false,"topLevel":false},"je":{"opcode":"data_addtolist","next":"Cs","parent":"jd","inputs":{"ITEM":[3,"FS",[10,"#7b9278"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"FS":{"opcode":"operator_multiply","next":null,"parent":"je","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[1,[4,"5592405"]]},"fields":{},"shadow":false,"topLevel":false},"Cs":{"opcode":"data_addtolist","next":null,"parent":"je","inputs":{"ITEM":[3,"FW",[10,"#4c625a"]]},"fields":{"LIST":["ppu.DMGpalette","qdWEY7-|tKJ[%[=wv$:@"]},"shadow":false,"topLevel":false},"FW":{"opcode":"operator_multiply","next":null,"parent":"Cs","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[1,[4,"5592405"]]},"fields":{},"shadow":false,"topLevel":false},"Cn":{"opcode":"data_deletealloflist","next":"jf","parent":"E","inputs":{},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"jf":{"opcode":"control_repeat","next":"Ct","parent":"Cn","inputs":{"TIMES":[1,[6,"12"]],"SUBSTACK":[2,"FY"]},"fields":{},"shadow":false,"topLevel":false},"FY":{"opcode":"data_addtolist","next":null,"parent":"jf","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"Ct":{"opcode":"data_deletealloflist","next":"bR","parent":"jf","inputs":{},"fields":{"LIST":["ppu.GBCpalettesLUT","F7rUuKZp/*Qkk(*IfGDC"]},"shadow":false,"topLevel":false},"bR":{"opcode":"control_if","next":"Cu","parent":"Ct","inputs":{"CONDITION":[2,"FZ"],"SUBSTACK":[2,"Cv"]},"fields":{},"shadow":false,"topLevel":false},"FZ":{"opcode":"operator_equals","next":null,"parent":"bR","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Cv":{"opcode":"procedures_call","next":"Cw","parent":"bR","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"setup.generateGBCpaletteLUT","argumentids":"[]","warp":"true"}},"Cw":{"opcode":"data_deletealloflist","next":"jg","parent":"Cv","inputs":{},"fields":{"LIST":["ppu.PaletteRAM","hkYvD*`XPHHWy=I*?O!s"]},"shadow":false,"topLevel":false},"jg":{"opcode":"control_repeat","next":"Cx","parent":"Cw","inputs":{"TIMES":[1,[6,"128"]],"SUBSTACK":[2,"F!"]},"fields":{},"shadow":false,"topLevel":false},"F!":{"opcode":"data_addtolist","next":null,"parent":"jg","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.PaletteRAM","hkYvD*`XPHHWy=I*?O!s"]},"shadow":false,"topLevel":false},"Cx":{"opcode":"data_deletealloflist","next":"Cy","parent":"jg","inputs":{},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"Cy":{"opcode":"control_repeat","next":null,"parent":"Cx","inputs":{"TIMES":[1,[6,"64"]],"SUBSTACK":[2,"Gw"]},"fields":{},"shadow":false,"topLevel":false},"Gw":{"opcode":"data_addtolist","next":null,"parent":"Cy","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"Cu":{"opcode":"data_deletealloflist","next":"c~","parent":"bR","inputs":{},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"c~":{"opcode":"data_deletealloflist","next":"dh","parent":"Cu","inputs":{},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"dh":{"opcode":"data_deletealloflist","next":"dl","parent":"c~","inputs":{},"fields":{"LIST":["+sound clones active","9skes?+O/Q=:LB5Z6/H0"]},"shadow":false,"topLevel":false},"dl":{"opcode":"data_deletealloflist","next":"dz","parent":"dh","inputs":{},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"dz":{"opcode":"data_deletealloflist","next":"dI","parent":"dl","inputs":{},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"dI":{"opcode":"data_deletealloflist","next":"dJ","parent":"dz","inputs":{},"fields":{"LIST":["+sound clone duty cycle","KpS4?xDdr8vRoQwO#$-1"]},"shadow":false,"topLevel":false},"dJ":{"opcode":"data_deletealloflist","next":"ET","parent":"dI","inputs":{},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"ET":{"opcode":"data_deletealloflist","next":"F.","parent":"dJ","inputs":{},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"F.":{"opcode":"data_deletealloflist","next":"da","parent":"ET","inputs":{},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"da":{"opcode":"data_deletealloflist","next":"bs","parent":"F.","inputs":{},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"bs":{"opcode":"control_repeat","next":"db","parent":"da","inputs":{"TIMES":[1,[6,"4"]],"SUBSTACK":[2,"dc"]},"fields":{},"shadow":false,"topLevel":false},"dc":{"opcode":"data_addtolist","next":"dd","parent":"bs","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound pitch","r#2O$_#:wVFDgt/TZcNs"]},"shadow":false,"topLevel":false},"dd":{"opcode":"data_addtolist","next":"dk","parent":"dc","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"dk":{"opcode":"data_addtolist","next":"dm","parent":"dd","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound clones active","9skes?+O/Q=:LB5Z6/H0"]},"shadow":false,"topLevel":false},"dm":{"opcode":"data_addtolist","next":"dA","parent":"dk","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"dA":{"opcode":"data_addtolist","next":"dH","parent":"dm","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound duty cycle","!r4^93[Oh0N~+*[obn#:"]},"shadow":false,"topLevel":false},"dH":{"opcode":"data_addtolist","next":"dK","parent":"dA","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound clone duty cycle","KpS4?xDdr8vRoQwO#$-1"]},"shadow":false,"topLevel":false},"dK":{"opcode":"data_addtolist","next":"EU","parent":"dH","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"EU":{"opcode":"data_addtolist","next":"EV","parent":"dK","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound envelope clock",":Q8PfZnsd2Y}Q(-0bTUQ"]},"shadow":false,"topLevel":false},"EV":{"opcode":"data_addtolist","next":"Mi","parent":"EU","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound length timer","w7.09Is,(.^,-Ux0jw.b"]},"shadow":false,"topLevel":false},"Mi":{"opcode":"data_addtolist","next":null,"parent":"EV","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"db":{"opcode":"data_deletealloflist","next":"Ei","parent":"bs","inputs":{},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"Ei":{"opcode":"control_repeat","next":null,"parent":"db","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"J,"]},"fields":{},"shadow":false,"topLevel":false},"J,":{"opcode":"data_addtolist","next":null,"parent":"Ei","inputs":{"ITEM":[1,[10,"0"]]},"fields":{"LIST":["_waveBuffer2","ki7qXD%gNvvUz@OLl,$4"]},"shadow":false,"topLevel":false},"md":{"opcode":"data_itemoflist","next":null,"parent":"lK","inputs":{"INDEX":[3,"me",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"me":{"opcode":"operator_add","next":null,"parent":"md","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"G.",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G.":{"opcode":"operator_mod","next":null,"parent":"me","inputs":{"NUM1":[3,"M!",[4,""]],"NUM2":[1,[4,"0x100"]]},"fields":{},"shadow":false,"topLevel":false},"M!":{"opcode":"argument_reporter_string_number","next":null,"parent":"G.","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"EP":{"opcode":"data_setvariableto","next":null,"parent":"lM","inputs":{"VALUE":[3,"F|",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"F|":{"opcode":"data_itemoflist","next":null,"parent":"EP","inputs":{"INDEX":[3,"F}",[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"F}":{"opcode":"operator_add","next":null,"parent":"F|","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"G_",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"G_":{"opcode":"operator_mod","next":null,"parent":"F}","inputs":{"NUM1":[3,"M*",[4,""]],"NUM2":[1,[4,"0x80"]]},"fields":{},"shadow":false,"topLevel":false},"M*":{"opcode":"argument_reporter_string_number","next":null,"parent":"G_","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"kQ":{"opcode":"operator_add","next":null,"parent":"kb","inputs":{"NUM1":[3,"kR",[4,""]],"NUM2":[3,"kS",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"kR":{"opcode":"operator_subtract","next":null,"parent":"kQ","inputs":{"NUM1":[3,"Mc",[4,""]],"NUM2":[3,"Gu",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Mc":{"opcode":"data_itemoflist","next":null,"parent":"kR","inputs":{"INDEX":[1,[7,"39"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Gu":{"opcode":"operator_mod","next":null,"parent":"kR","inputs":{"NUM1":[3,"Md",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Md":{"opcode":"data_itemoflist","next":null,"parent":"Gu","inputs":{"INDEX":[1,[7,"39"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"kS":{"opcode":"operator_add","next":null,"parent":"kQ","inputs":{"NUM1":[3,"Gv",[4,""]],"NUM2":[3,"kT",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Gv":{"opcode":"operator_multiply","next":null,"parent":"kS","inputs":{"NUM1":[3,"Me",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Me":{"opcode":"data_itemoflist","next":null,"parent":"Gv","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"kT":{"opcode":"operator_add","next":null,"parent":"kS","inputs":{"NUM1":[3,"Gy",[4,""]],"NUM2":[3,"kV",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Gy":{"opcode":"operator_multiply","next":null,"parent":"kT","inputs":{"NUM1":[3,"Mf",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Mf":{"opcode":"data_itemoflist","next":null,"parent":"Gy","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"kV":{"opcode":"operator_add","next":null,"parent":"kT","inputs":{"NUM1":[3,"Gz",[4,""]],"NUM2":[3,"Mg",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Gz":{"opcode":"operator_multiply","next":null,"parent":"kV","inputs":{"NUM1":[3,"Mh",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Mh":{"opcode":"data_itemoflist","next":null,"parent":"Gz","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"Mg":{"opcode":"data_itemoflist","next":null,"parent":"kV","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"ki":{"opcode":"operator_add","next":null,"parent":",","inputs":{"NUM1":[3,"KV",[4,""]],"NUM2":[3,"E}",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"KV":{"opcode":"operator_mod","next":null,"parent":"ki","inputs":{"NUM1":[3,[12,"y4","n=H43lZlH8T?0bDf`Qc8"],[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"E}":{"opcode":"operator_multiply","next":null,"parent":"ki","inputs":{"NUM1":[3,"E~",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"E~":{"opcode":"operator_equals","next":null,"parent":"E}","inputs":{"OPERAND1":[3,"KW",[10,""]],"OPERAND2":[1,[10,"0xFF6B"]]},"fields":{},"shadow":false,"topLevel":false},"KW":{"opcode":"argument_reporter_string_number","next":null,"parent":"E~","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"mT":{"opcode":"data_setvariableto","next":"ew","parent":"mP","inputs":{"VALUE":[1,[10,"000000000000000100100000000000100100001101101001100001001001002102102000000001101101003103103001100002002002004104104200101002102102005105105300102003003003006106106400103003103103007107107500000001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038039040041042043044045046047048049050051052053600055056057058059060061062063"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"ew":{"opcode":"data_setvariableto","next":"mU","parent":"mT","inputs":{"VALUE":[3,"Ol",[10,"000000000000000100100000000000100100001101101001100001001001002102102000000001101101003103103001100002002002004104104200101002102102005105105300102003003003006106106400103003103103007107107500000001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038039040041042043044045046047048049050051052053600055056057058059060061062063"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"Ol":{"opcode":"operator_join","next":null,"parent":"ew","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[1,[10,"000001002003004005006007100101102103104105106107000001002003004005006007100101102103104105106107000001002003004005006007000001002003004005006007000001002003004005006007200201202203204205206207100000100000100000008000101000101700101000108001102001102---102001008002103200103---103---108003000002001------002008004000001000---------008005100003101000---003008006100100100001------208007"]]},"fields":{},"shadow":false,"topLevel":false},"mU":{"opcode":"data_deletealloflist","next":"mV","parent":"ew","inputs":{},"fields":{"LIST":["cpu.op1","=UPLEXLt+sQha?gN(bE/"]},"shadow":false,"topLevel":false},"mV":{"opcode":"data_deletealloflist","next":"ex","parent":"mU","inputs":{},"fields":{"LIST":["cpu.op2","Lt0wdY)J%D%!;#D7STRc"]},"shadow":false,"topLevel":false},"ex":{"opcode":"control_repeat","next":"mW","parent":"mV","inputs":{"TIMES":[1,[6,"256"]],"SUBSTACK":[2,"ey"]},"fields":{},"shadow":false,"topLevel":false},"ey":{"opcode":"data_addtolist","next":"ez","parent":"ex","inputs":{"ITEM":[3,"mX",[10,""]]},"fields":{"LIST":["cpu.op1","=UPLEXLt+sQha?gN(bE/"]},"shadow":false,"topLevel":false},"mX":{"opcode":"operator_add","next":null,"parent":"ey","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"On",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"On":{"opcode":"operator_letter_of","next":null,"parent":"mX","inputs":{"LETTER":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[6,"1"]],"STRING":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"ez":{"opcode":"data_addtolist","next":"Oo","parent":"ey","inputs":{"ITEM":[3,"mY",[10,""]]},"fields":{"LIST":["cpu.op2","Lt0wdY)J%D%!;#D7STRc"]},"shadow":false,"topLevel":false},"mY":{"opcode":"operator_add","next":null,"parent":"ez","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"eA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"eA":{"opcode":"operator_join","next":null,"parent":"mY","inputs":{"STRING1":[3,"mZ",[10,""]],"STRING2":[3,"m!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"mZ":{"opcode":"operator_letter_of","next":null,"parent":"eA","inputs":{"LETTER":[3,"Op",[6,"1"]],"STRING":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Op":{"opcode":"operator_add","next":null,"parent":"mZ","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m!":{"opcode":"operator_letter_of","next":null,"parent":"eA","inputs":{"LETTER":[3,"Oq",[6,"1"]],"STRING":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Oq":{"opcode":"operator_add","next":null,"parent":"m!","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Oo":{"opcode":"data_changevariableby","next":null,"parent":"ez","inputs":{"VALUE":[1,[4,"3"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"mW":{"opcode":"data_deletealloflist","next":"m#","parent":"ex","inputs":{},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"m#":{"opcode":"data_addtolist","next":"m%","parent":"mW","inputs":{"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"m%":{"opcode":"control_repeat","next":null,"parent":"m#","inputs":{"TIMES":[1,[6,"16"]],"SUBSTACK":[2,"m("]},"fields":{},"shadow":false,"topLevel":false},"m(":{"opcode":"data_addtolist","next":null,"parent":"m%","inputs":{"ITEM":[3,"m)",[10,""]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"m)":{"opcode":"operator_multiply","next":null,"parent":"m(","inputs":{"NUM1":[1,[4,"2"]],"NUM2":[3,"Or",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Or":{"opcode":"data_itemoflist","next":null,"parent":"m)","inputs":{"INDEX":[1,[7,"last"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"m-":{"opcode":"operator_not","next":null,"parent":"eB","inputs":{"OPERAND":[2,"Oz"]},"fields":{},"shadow":false,"topLevel":false},"Oz":{"opcode":"operator_equals","next":null,"parent":"m-","inputs":{"OPERAND1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[10,""]],"OPERAND2":[3,[12,"JIT.cache","A584l[L5GQMFFUH,c]J-"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"m/":{"opcode":"data_deletealloflist","next":"m:","parent":"m.","inputs":{},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"m:":{"opcode":"control_repeat","next":null,"parent":"m/","inputs":{"TIMES":[3,[12,"JIT.blocksizemax","0+,D;]|@rr8TK9ys_aa8"],[6,"10"]],"SUBSTACK":[2,"m;"]},"fields":{},"shadow":false,"topLevel":false},"m;":{"opcode":"procedures_call","next":"m=","parent":"m:","inputs":{"oi:f2-}xLvUL+Sty6wce":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","warp":"true"}},"m=":{"opcode":"data_changevariableby","next":"m?","parent":"m;","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"m?":{"opcode":"data_setvariableto","next":"m@","parent":"m=","inputs":{"VALUE":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,"0"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"m@":{"opcode":"data_addtolist","next":"eC","parent":"m?","inputs":{"ITEM":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"eC":{"opcode":"data_addtolist","next":"eD","parent":"m@","inputs":{"ITEM":[3,"m[",[10,"0"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"m[":{"opcode":"data_itemoflist","next":null,"parent":"eC","inputs":{"INDEX":[3,"OA",[7,"1"]]},"fields":{"LIST":["cpu.op1","=UPLEXLt+sQha?gN(bE/"]},"shadow":false,"topLevel":false},"OA":{"opcode":"operator_add","next":null,"parent":"m[","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eD":{"opcode":"data_addtolist","next":"eE","parent":"eC","inputs":{"ITEM":[3,"m^",[10,""]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"m^":{"opcode":"data_itemoflist","next":null,"parent":"eD","inputs":{"INDEX":[3,"OB",[7,"1"]]},"fields":{"LIST":["cpu.op2","Lt0wdY)J%D%!;#D7STRc"]},"shadow":false,"topLevel":false},"OB":{"opcode":"operator_add","next":null,"parent":"m^","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eE":{"opcode":"data_setvariableto","next":"e","parent":"eD","inputs":{"VALUE":[3,"m_",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"m_":{"opcode":"data_itemoflist","next":null,"parent":"eE","inputs":{"INDEX":[3,"OC",[7,"1"]]},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"OC":{"opcode":"operator_add","next":null,"parent":"m_","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"e":{"opcode":"control_if_else","next":"eF","parent":"eE","inputs":{"CONDITION":[2,"OF"],"SUBSTACK":[2,"m`"],"SUBSTACK2":[2,"m{"]},"fields":{},"shadow":false,"topLevel":false},"OF":{"opcode":"operator_gt","next":null,"parent":"e","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"m`":{"opcode":"procedures_call","next":"m|","parent":"e","inputs":{"oi:f2-}xLvUL+Sty6wce":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","warp":"true"}},"m|":{"opcode":"data_setvariableto","next":"lz","parent":"m`","inputs":{"VALUE":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"lz":{"opcode":"data_changevariableby","next":".","parent":"m|","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},".":{"opcode":"control_if_else","next":null,"parent":"lz","inputs":{"CONDITION":[2,"NS"],"SUBSTACK":[2,"lA"],"SUBSTACK2":[2,"NT"]},"fields":{},"shadow":false,"topLevel":false},"NS":{"opcode":"operator_gt","next":null,"parent":".","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"lA":{"opcode":"procedures_call","next":"m}","parent":".","inputs":{"oi:f2-}xLvUL+Sty6wce":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","warp":"true"}},"m}":{"opcode":"data_setvariableto","next":"OG","parent":"lA","inputs":{"VALUE":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"OG":{"opcode":"data_changevariableby","next":null,"parent":"m}","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"NT":{"opcode":"data_setvariableto","next":null,"parent":".","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"m{":{"opcode":"data_setvariableto","next":"OH","parent":"e","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"OH":{"opcode":"data_setvariableto","next":null,"parent":"m{","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"eF":{"opcode":"data_addtolist","next":"m~","parent":"e","inputs":{"ITEM":[3,"na",[10,""]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"na":{"opcode":"operator_add","next":null,"parent":"eF","inputs":{"NUM1":[3,"OI",[4,""]],"NUM2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"OI":{"opcode":"operator_multiply","next":null,"parent":"na","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"m~":{"opcode":"data_setvariableto","next":"eG","parent":"eF","inputs":{"VALUE":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[10,"0"]]},"fields":{"VARIABLE":["JIT.cacheEnd","gXx;[]@$RfVFnT]OP-H}"]},"shadow":false,"topLevel":false},"eG":{"opcode":"control_if","next":null,"parent":"m~","inputs":{"CONDITION":[2,"nb"],"SUBSTACK":[2,"OK"]},"fields":{},"shadow":false,"topLevel":false},"nb":{"opcode":"operator_equals","next":null,"parent":"eG","inputs":{"OPERAND1":[3,"nc",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"nc":{"opcode":"data_itemoflist","next":null,"parent":"nb","inputs":{"INDEX":[3,"OL",[7,"1"]]},"fields":{"LIST":["JIT.endblock","2Cug3W,_=`]D+(4;6#Ng"]},"shadow":false,"topLevel":false},"OL":{"opcode":"operator_add","next":null,"parent":"nc","inputs":{"NUM1":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"OK":{"opcode":"control_stop","next":null,"parent":"eG","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"ny":{"opcode":"data_itemoflist","next":null,"parent":"lP","inputs":{"INDEX":[3,"O/",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O/":{"opcode":"operator_add","next":null,"parent":"ny","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"nF":{"opcode":"data_itemoflist","next":null,"parent":"nE","inputs":{"INDEX":[3,"O^",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"O^":{"opcode":"operator_add","next":null,"parent":"nF","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oy":{"opcode":"data_replaceitemoflist","next":null,"parent":"eY","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"PT",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"PT":{"opcode":"operator_mod","next":null,"parent":"oy","inputs":{"NUM1":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"oI":{"opcode":"operator_add","next":null,"parent":"e+","inputs":{"NUM1":[3,"oJ",[4,""]],"NUM2":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"oJ":{"opcode":"data_itemoflist","next":null,"parent":"oI","inputs":{"INDEX":[3,"oK",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"oK":{"opcode":"operator_add","next":null,"parent":"oJ","inputs":{"NUM1":[3,"P!",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P!":{"opcode":"operator_multiply","next":null,"parent":"oK","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oL":{"opcode":"operator_add","next":null,"parent":"aa","inputs":{"NUM1":[3,"P%",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"P%":{"opcode":"operator_multiply","next":null,"parent":"oL","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oX":{"opcode":"data_itemoflist","next":null,"parent":"oV","inputs":{"INDEX":[3,"P.",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"P.":{"opcode":"operator_add","next":null,"parent":"oX","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"o-":{"opcode":"data_replaceitemoflist","next":null,"parent":"ac","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[3,"o.",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"o.":{"opcode":"operator_subtract","next":null,"parent":"o-","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"P[",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"P[":{"opcode":"data_itemoflist","next":null,"parent":"o.","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"yi":{"opcode":"operator_mod","next":null,"parent":"ie","inputs":{"NUM1":[3,"uH",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"uH":{"opcode":"operator_subtract","next":null,"parent":"yi","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"pJ":{"opcode":"operator_multiply","next":null,"parent":"ft","inputs":{"NUM1":[3,"QD",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"QD":{"opcode":"data_itemoflist","next":null,"parent":"pJ","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"pS":{"opcode":"data_itemoflist","next":null,"parent":"fx","inputs":{"INDEX":[3,"QO",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"QO":{"opcode":"operator_add","next":null,"parent":"pS","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"p#":{"opcode":"operator_mathop","next":null,"parent":"p!","inputs":{"NUM":[3,"QV",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"QV":{"opcode":"operator_divide","next":null,"parent":"p#","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"qr":{"opcode":"data_setvariableto","next":"qs","parent":"qq","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"qs":{"opcode":"data_setvariableto","next":"qt","parent":"qr","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"qt":{"opcode":"data_setvariableto","next":"qu","parent":"qs","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"qu":{"opcode":"data_changevariableby","next":"qv","parent":"qt","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"qv":{"opcode":"data_changevariableby","next":"ak","parent":"qu","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"ak":{"opcode":"control_repeat","next":"qw","parent":"qv","inputs":{"TIMES":[3,"qx",[6,"10"]],"SUBSTACK":[2,"qy"]},"fields":{},"shadow":false,"topLevel":false},"qx":{"opcode":"operator_length","next":null,"parent":"ak","inputs":{"STRING":[3,"Ri",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ri":{"opcode":"data_itemoflist","next":null,"parent":"qx","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qy":{"opcode":"data_changevariableby","next":"fW","parent":"ak","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z4","xO3+V,6v+^@INp?i#Jqt"]},"shadow":false,"topLevel":false},"fW":{"opcode":"data_setvariableto","next":"fX","parent":"qy","inputs":{"VALUE":[3,"fY",[10,"0"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"fY":{"opcode":"operator_add","next":null,"parent":"fW","inputs":{"NUM1":[3,"Rj",[4,""]],"NUM2":[3,"fZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Rj":{"opcode":"operator_multiply","next":null,"parent":"fY","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"fZ":{"opcode":"operator_and","next":null,"parent":"fY","inputs":{"OPERAND1":[2,"qz"],"OPERAND2":[2,"qA"]},"fields":{},"shadow":false,"topLevel":false},"qz":{"opcode":"operator_equals","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,"qB",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qB":{"opcode":"operator_letter_of","next":null,"parent":"qz","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Rk",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Rk":{"opcode":"data_itemoflist","next":null,"parent":"qB","inputs":{"INDEX":[3,[12,"z7","x#m5WC6xePajnGn/?E=p"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qA":{"opcode":"operator_equals","next":null,"parent":"fZ","inputs":{"OPERAND1":[3,"qC",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qC":{"opcode":"operator_letter_of","next":null,"parent":"qA","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Rl",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Rl":{"opcode":"data_itemoflist","next":null,"parent":"qC","inputs":{"INDEX":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"fX":{"opcode":"data_setvariableto","next":"qD","parent":"fW","inputs":{"VALUE":[3,"f!",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"f!":{"opcode":"operator_add","next":null,"parent":"fX","inputs":{"NUM1":[3,"Rm",[4,""]],"NUM2":[3,"f#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Rm":{"opcode":"operator_multiply","next":null,"parent":"f!","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"f#":{"opcode":"operator_or","next":null,"parent":"f!","inputs":{"OPERAND1":[2,"qE"],"OPERAND2":[2,"qF"]},"fields":{},"shadow":false,"topLevel":false},"qE":{"opcode":"operator_equals","next":null,"parent":"f#","inputs":{"OPERAND1":[3,"qG",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qG":{"opcode":"operator_letter_of","next":null,"parent":"qE","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Rn",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Rn":{"opcode":"data_itemoflist","next":null,"parent":"qG","inputs":{"INDEX":[3,[12,"z7","x#m5WC6xePajnGn/?E=p"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qF":{"opcode":"operator_equals","next":null,"parent":"f#","inputs":{"OPERAND1":[3,"qH",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qH":{"opcode":"operator_letter_of","next":null,"parent":"qF","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Ro",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Ro":{"opcode":"data_itemoflist","next":null,"parent":"qH","inputs":{"INDEX":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qD":{"opcode":"data_setvariableto","next":null,"parent":"fX","inputs":{"VALUE":[3,"f%",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"f%":{"opcode":"operator_add","next":null,"parent":"qD","inputs":{"NUM1":[3,"Rp",[4,""]],"NUM2":[3,"qI",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Rp":{"opcode":"operator_multiply","next":null,"parent":"f%","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"qI":{"opcode":"operator_not","next":null,"parent":"f%","inputs":{"OPERAND":[2,"f("]},"fields":{},"shadow":false,"topLevel":false},"f(":{"opcode":"operator_equals","next":null,"parent":"qI","inputs":{"OPERAND1":[3,"qJ",[10,""]],"OPERAND2":[3,"qK",[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"qJ":{"opcode":"operator_letter_of","next":null,"parent":"f(","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Rq",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Rq":{"opcode":"data_itemoflist","next":null,"parent":"qJ","inputs":{"INDEX":[3,[12,"z7","x#m5WC6xePajnGn/?E=p"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qK":{"opcode":"operator_letter_of","next":null,"parent":"f(","inputs":{"LETTER":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[6,""]],"STRING":[3,"Rr",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"Rr":{"opcode":"data_itemoflist","next":null,"parent":"qK","inputs":{"INDEX":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[7,"1"]]},"fields":{"LIST":["z.bin","z:?Tj*BY|M[~/.xPbx$G"]},"shadow":false,"topLevel":false},"qw":{"opcode":"data_addtolist","next":"qL","parent":"ak","inputs":{"ITEM":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"qL":{"opcode":"data_addtolist","next":"qM","parent":"qw","inputs":{"ITEM":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"qM":{"opcode":"data_addtolist","next":"qN","parent":"qL","inputs":{"ITEM":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]]},"fields":{"LIST":["cpu.XOR","uswSWlTlHX6y.g*]!d$!"]},"shadow":false,"topLevel":false},"qN":{"opcode":"data_changevariableby","next":"qO","parent":"qM","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"qO":{"opcode":"data_changevariableby","next":"Rs","parent":"qN","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["z8","VX49Xu`},hz?8f0E/kd5"]},"shadow":false,"topLevel":false},"Rs":{"opcode":"data_changevariableby","next":null,"parent":"qO","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"rZ":{"opcode":"data_changevariableby","next":null,"parent":"au","inputs":{"VALUE":[3,"r%",[4,"6"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"r%":{"opcode":"operator_multiply","next":null,"parent":"rZ","inputs":{"NUM1":[1,[4,"6"]],"NUM2":[3,"gf",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"gf":{"opcode":"operator_or","next":null,"parent":"r%","inputs":{"OPERAND1":[2,"Se"],"OPERAND2":[2,"r("]},"fields":{},"shadow":false,"topLevel":false},"Se":{"opcode":"data_itemoflist","next":null,"parent":"gf","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"r(":{"opcode":"operator_gt","next":null,"parent":"gf","inputs":{"OPERAND1":[3,"Sf",[10,""]],"OPERAND2":[1,[10,"9"]]},"fields":{},"shadow":false,"topLevel":false},"Sf":{"opcode":"operator_mod","next":null,"parent":"r(","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"sr":{"opcode":"data_itemoflist","next":null,"parent":"gt","inputs":{"INDEX":[3,"st",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"st":{"opcode":"operator_add","next":null,"parent":"sr","inputs":{"NUM1":[3,"Sv",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Sv":{"opcode":"operator_mod","next":null,"parent":"st","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q?":{"opcode":"operator_join","next":null,"parent":"gy","inputs":{"STRING1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"STRING2":[3,"sG",[10," ("]]},"fields":{},"shadow":false,"topLevel":false},"sG":{"opcode":"operator_join","next":null,"parent":"q?","inputs":{"STRING1":[3,"sI",[10,""]],"STRING2":[1,[10," "]]},"fields":{},"shadow":false,"topLevel":false},"sI":{"opcode":"data_itemoflist","next":null,"parent":"sG","inputs":{"INDEX":[3,"SB",[7,"1"]]},"fields":{"LIST":["debug.hex",":TYuQ{k^?W|-(h*HoRHY"]},"shadow":false,"topLevel":false},"SB":{"opcode":"operator_add","next":null,"parent":"sI","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"s^":{"opcode":"operator_mod","next":null,"parent":"s]","inputs":{"NUM1":[3,"gQ",[4,""]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"gQ":{"opcode":"operator_add","next":null,"parent":"s^","inputs":{"NUM1":[3,"SY",[4,""]],"NUM2":[3,"SZ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"SY":{"opcode":"operator_mod","next":null,"parent":"gQ","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"SZ":{"opcode":"operator_mod","next":null,"parent":"gQ","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"q@":{"opcode":"data_changevariableby","next":"az","parent":"]","inputs":{"VALUE":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[4,"0"]]},"fields":{"VARIABLE":["cycles.frame",":m^*=-k.c+0y=EF,uy?L"]},"shadow":false,"topLevel":false},"az":{"opcode":"control_repeat","next":"gU","parent":"q@","inputs":{"TIMES":[3,"S[",[6,"10"]],"SUBSTACK":[2,"gV"]},"fields":{},"shadow":false,"topLevel":false},"S[":{"opcode":"operator_divide","next":null,"parent":"az","inputs":{"NUM1":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[4,""]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"gV":{"opcode":"data_setvariableto","next":"aA","parent":"az","inputs":{"VALUE":[3,"tc",[10,"0"]]},"fields":{"VARIABLE":["tim.DIV","sqDTP/*RtaNn=5LUOT^F"]},"shadow":false,"topLevel":false},"tc":{"opcode":"operator_mod","next":null,"parent":"gV","inputs":{"NUM1":[3,"S]",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"S]":{"opcode":"operator_add","next":null,"parent":"tc","inputs":{"NUM1":[3,[12,"tim.DIV","sqDTP/*RtaNn=5LUOT^F"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"aA":{"opcode":"control_if","next":"FA","parent":"gV","inputs":{"CONDITION":[2,"Lb"],"SUBSTACK":[2,"FB"]},"fields":{},"shadow":false,"topLevel":false},"Lb":{"opcode":"operator_equals","next":null,"parent":"aA","inputs":{"OPERAND1":[3,[12,"xf",",]v-T%bJ~R+f++sZkv7/"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FB":{"opcode":"data_setvariableto","next":"ks","parent":"aA","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["xf",",]v-T%bJ~R+f++sZkv7/"]},"shadow":false,"topLevel":false},"ks":{"opcode":"data_replaceitemoflist","next":"FC","parent":"FB","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"Lc",[10,"thing"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Lc":{"opcode":"data_itemoflist","next":null,"parent":"ks","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"FC":{"opcode":"data_replaceitemoflist","next":null,"parent":"ks","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"FD",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"FD":{"opcode":"data_itemoflist","next":null,"parent":"FC","inputs":{"INDEX":[3,"FE",[7,"70"]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"FE":{"opcode":"operator_add","next":null,"parent":"FD","inputs":{"NUM1":[3,"FH",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"FH":{"opcode":"operator_add","next":null,"parent":"FE","inputs":{"NUM1":[3,"Ld",[4,""]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"Ld":{"opcode":"data_itemoflist","next":null,"parent":"FH","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"FA":{"opcode":"data_setvariableto","next":"kt","parent":"aA","inputs":{"VALUE":[3,[12,"x1","!u~jcG^*$uH5V^jDA!S3"],[10,"0"]]},"fields":{"VARIABLE":["x2","OR*glQYx.J]o[~0Y^fJ%"]},"shadow":false,"topLevel":false},"kt":{"opcode":"data_setvariableto","next":"a)","parent":"FA","inputs":{"VALUE":[3,"ku",[10,"0"]]},"fields":{"VARIABLE":["x1","!u~jcG^*$uH5V^jDA!S3"]},"shadow":false,"topLevel":false},"ku":{"opcode":"operator_multiply","next":null,"parent":"kt","inputs":{"NUM1":[3,"FI",[4,""]],"NUM2":[3,"FJ",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"FI":{"opcode":"operator_gt","next":null,"parent":"ku","inputs":{"OPERAND1":[3,"FO",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"FO":{"opcode":"operator_mod","next":null,"parent":"FI","inputs":{"NUM1":[3,"Le",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Le":{"opcode":"data_itemoflist","next":null,"parent":"FO","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"FJ":{"opcode":"operator_mod","next":null,"parent":"ku","inputs":{"NUM1":[3,"FP",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FP":{"opcode":"operator_mathop","next":null,"parent":"FJ","inputs":{"NUM":[3,"FQ",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"FQ":{"opcode":"operator_divide","next":null,"parent":"FP","inputs":{"NUM1":[3,[12,"tim.DIV","sqDTP/*RtaNn=5LUOT^F"],[4,""]],"NUM2":[3,"FT",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"FT":{"opcode":"data_itemoflist","next":null,"parent":"FQ","inputs":{"INDEX":[3,"FU",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"FU":{"opcode":"operator_add","next":null,"parent":"FT","inputs":{"NUM1":[3,"FV",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FV":{"opcode":"operator_multiply","next":null,"parent":"FU","inputs":{"NUM1":[3,"FX",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"FX":{"opcode":"operator_add","next":null,"parent":"FV","inputs":{"NUM1":[3,"F#",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F#":{"opcode":"operator_mod","next":null,"parent":"FX","inputs":{"NUM1":[3,"F%",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"F%":{"opcode":"operator_subtract","next":null,"parent":"F#","inputs":{"NUM1":[3,"F(",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"F(":{"opcode":"operator_mod","next":null,"parent":"F%","inputs":{"NUM1":[3,"Lf",[4,"4"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Lf":{"opcode":"data_itemoflist","next":null,"parent":"F(","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"a)":{"opcode":"control_if","next":"kv","parent":"kt","inputs":{"CONDITION":[2,"Lg"],"SUBSTACK":[2,"kw"]},"fields":{},"shadow":false,"topLevel":false},"Lg":{"opcode":"operator_lt","next":null,"parent":"a)","inputs":{"OPERAND1":[3,[12,"x1","!u~jcG^*$uH5V^jDA!S3"],[10,""]],"OPERAND2":[3,[12,"x2","OR*glQYx.J]o[~0Y^fJ%"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"kw":{"opcode":"data_replaceitemoflist","next":"kx","parent":"a)","inputs":{"INDEX":[1,[7,"6"]],"ITEM":[3,"F)",[10,"thing"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"F)":{"opcode":"operator_mod","next":null,"parent":"kw","inputs":{"NUM1":[3,"F*",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"F*":{"opcode":"operator_add","next":null,"parent":"F)","inputs":{"NUM1":[3,"Lh",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Lh":{"opcode":"data_itemoflist","next":null,"parent":"F*","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"kx":{"opcode":"control_if","next":null,"parent":"kw","inputs":{"CONDITION":[2,"F+"],"SUBSTACK":[2,"Li"]},"fields":{},"shadow":false,"topLevel":false},"F+":{"opcode":"operator_equals","next":null,"parent":"kx","inputs":{"OPERAND1":[3,"Lj",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Lj":{"opcode":"data_itemoflist","next":null,"parent":"F+","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Li":{"opcode":"data_setvariableto","next":null,"parent":"kx","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["xf",",]v-T%bJ~R+f++sZkv7/"]},"shadow":false,"topLevel":false},"kv":{"opcode":"control_if","next":null,"parent":"a)","inputs":{"CONDITION":[2,"F,"],"SUBSTACK":[2,"Lk"]},"fields":{},"shadow":false,"topLevel":false},"F,":{"opcode":"operator_equals","next":null,"parent":"kv","inputs":{"OPERAND1":[3,"F-",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"F-":{"opcode":"operator_mod","next":null,"parent":"F,","inputs":{"NUM1":[3,[12,"tim.DIV","sqDTP/*RtaNn=5LUOT^F"],[4,""]],"NUM2":[3,"Ll",[4,"0x2000"]]},"fields":{},"shadow":false,"topLevel":false},"Ll":{"opcode":"operator_multiply","next":null,"parent":"F-","inputs":{"NUM1":[1,[4,"0x2000"]],"NUM2":[3,[12,"cpu.speed","nSL^k6xxL**59aM}a+G]"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Lk":{"opcode":"procedures_call","next":null,"parent":"kv","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"apu.update","argumentids":"[]","warp":"true"}},"gU":{"opcode":"data_replaceitemoflist","next":"Q","parent":"az","inputs":{"INDEX":[1,[7,"5"]],"ITEM":[3,"td",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"td":{"opcode":"operator_mathop","next":null,"parent":"gU","inputs":{"NUM":[3,"S^",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"S^":{"opcode":"operator_divide","next":null,"parent":"td","inputs":{"NUM1":[3,[12,"tim.DIV","sqDTP/*RtaNn=5LUOT^F"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Q":{"opcode":"control_if_else","next":"te","parent":"gU","inputs":{"CONDITION":[2,"tf"],"SUBSTACK":[2,"gW"],"SUBSTACK2":[2,"tg"]},"fields":{},"shadow":false,"topLevel":false},"tf":{"opcode":"operator_gt","next":null,"parent":"Q","inputs":{"OPERAND1":[3,"S_",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"S_":{"opcode":"data_itemoflist","next":null,"parent":"tf","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"gW":{"opcode":"data_setvariableto","next":"aC","parent":"Q","inputs":{"VALUE":[3,"S`",[10,"0"]]},"fields":{"VARIABLE":["z5","Wq[VW}I%oU$|,q}CeN+@"]},"shadow":false,"topLevel":false},"S`":{"opcode":"operator_add","next":null,"parent":"gW","inputs":{"NUM1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[4,""]],"NUM2":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"aC":{"opcode":"control_if","next":"aD","parent":"gW","inputs":{"CONDITION":[2,"S{"],"SUBSTACK":[2,"th"]},"fields":{},"shadow":false,"topLevel":false},"S{":{"opcode":"operator_lt","next":null,"parent":"aC","inputs":{"OPERAND1":[3,[12,"ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"th":{"opcode":"control_repeat","next":null,"parent":"aC","inputs":{"TIMES":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[6,"10"]],"SUBSTACK":[2,"gX"]},"fields":{},"shadow":false,"topLevel":false},"gX":{"opcode":"control_if","next":null,"parent":"th","inputs":{"CONDITION":[2,"S|"],"SUBSTACK":[2,"gY"]},"fields":{},"shadow":false,"topLevel":false},"S|":{"opcode":"operator_lt","next":null,"parent":"gX","inputs":{"OPERAND1":[3,[12,"ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"gY":{"opcode":"procedures_call","next":"ti","parent":"gX","inputs":{"oi:f2-}xLvUL+Sty6wce":[3,"B;",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".readbyte %s","argumentids":"[\"oi:f2-}xLvUL+Sty6wce\"]","warp":"true"}},"B;":{"opcode":"operator_add","next":null,"parent":"gY","inputs":{"NUM1":[3,[12,"ppu.OAMdmastart","jJ3zo@6!=s7p/Ywe(3gh"],[4,""]],"NUM2":[3,[12,"ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ti":{"opcode":"data_changevariableby","next":"S}","parent":"gY","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"]},"shadow":false,"topLevel":false},"S}":{"opcode":"data_replaceitemoflist","next":null,"parent":"ti","inputs":{"INDEX":[3,[12,"ppu.OAMdma#","5}F(~m#Fp)OHQKXV:,0j"],[7,"1"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"aD":{"opcode":"control_if","next":"cl","parent":"aC","inputs":{"CONDITION":[2,"S~"],"SUBSTACK":[2,"tj"]},"fields":{},"shadow":false,"topLevel":false},"S~":{"opcode":"operator_gt","next":null,"parent":"aD","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"455"]]},"fields":{},"shadow":false,"topLevel":false},"tj":{"opcode":"data_setvariableto","next":"tk","parent":"aD","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"tk":{"opcode":"data_changevariableby","next":"tl","parent":"tj","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.LineY","w.!q`NmG7MvoSZHTUh{6"]},"shadow":false,"topLevel":false},"tl":{"opcode":"data_changevariableby","next":"tm","parent":"tk","inputs":{"VALUE":[1,[4,"-456"]]},"fields":{"VARIABLE":["z5","Wq[VW}I%oU$|,q}CeN+@"]},"shadow":false,"topLevel":false},"tm":{"opcode":"data_changevariableby","next":"tn","parent":"tl","inputs":{"VALUE":[3,[12,"ppu.windowincr","?@`6%*n_:ai9~7.}XHbt"],[4,"1"]]},"fields":{"VARIABLE":["ppu.windowcounter","v1RYSc29D5;g9w|WOVhZ"]},"shadow":false,"topLevel":false},"tn":{"opcode":"data_setvariableto","next":"to","parent":"tm","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.windowincr","?@`6%*n_:ai9~7.}XHbt"]},"shadow":false,"topLevel":false},"to":{"opcode":"data_setvariableto","next":"aF","parent":"tn","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"]},"shadow":false,"topLevel":false},"aF":{"opcode":"control_if","next":"aE","parent":"to","inputs":{"CONDITION":[2,"It"],"SUBSTACK":[2,"Is"]},"fields":{},"shadow":false,"topLevel":false},"It":{"opcode":"operator_lt","next":null,"parent":"aF","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"Is":{"opcode":"data_setvariableto","next":null,"parent":"aF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.DMAflag","72V,vNaxdBUH1$wNvmh~"]},"shadow":false,"topLevel":false},"aE":{"opcode":"control_if_else","next":null,"parent":"aF","inputs":{"CONDITION":[2,"Ta"],"SUBSTACK":[2,"gZ"],"SUBSTACK2":[2,"g!"]},"fields":{},"shadow":false,"topLevel":false},"Ta":{"opcode":"operator_equals","next":null,"parent":"aE","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"gZ":{"opcode":"data_replaceitemoflist","next":"tp","parent":"aE","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"tq",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tq":{"opcode":"data_itemoflist","next":null,"parent":"gZ","inputs":{"INDEX":[3,"tr",[7,"70"]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"tr":{"opcode":"operator_add","next":null,"parent":"tq","inputs":{"NUM1":[3,"ts",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ts":{"opcode":"operator_add","next":null,"parent":"tr","inputs":{"NUM1":[3,"Tb",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Tb":{"opcode":"data_itemoflist","next":null,"parent":"ts","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tp":{"opcode":"data_changevariableby","next":"tt","parent":"gZ","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["framecount","U?lf^5|4A+7u*FM=9FMT"]},"shadow":false,"topLevel":false},"tt":{"opcode":"data_setvariableto","next":"Tf","parent":"tp","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.windowcounter","v1RYSc29D5;g9w|WOVhZ"]},"shadow":false,"topLevel":false},"Tf":{"opcode":"data_setvariableto","next":null,"parent":"tt","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["frameEvent","V@7TC6e6AtIrZ@k3FpT+"]},"shadow":false,"topLevel":false},"g!":{"opcode":"control_if","next":null,"parent":"aE","inputs":{"CONDITION":[2,"Td"],"SUBSTACK":[2,"tu"]},"fields":{},"shadow":false,"topLevel":false},"Td":{"opcode":"operator_gt","next":null,"parent":"g!","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"153"]]},"fields":{},"shadow":false,"topLevel":false},"tu":{"opcode":"data_setvariableto","next":"Te","parent":"g!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.LineY","w.!q`NmG7MvoSZHTUh{6"]},"shadow":false,"topLevel":false},"Te":{"opcode":"data_setvariableto","next":null,"parent":"tu","inputs":{"VALUE":[1,[10,"2"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"cl":{"opcode":"control_if","next":"aG","parent":"aD","inputs":{"CONDITION":[2,"NJ"],"SUBSTACK":[2,"Tc"]},"fields":{},"shadow":false,"topLevel":false},"NJ":{"opcode":"operator_gt","next":null,"parent":"cl","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"143"]]},"fields":{},"shadow":false,"topLevel":false},"Tc":{"opcode":"data_setvariableto","next":null,"parent":"cl","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"aG":{"opcode":"control_if","next":"o","parent":"cl","inputs":{"CONDITION":[2,"Tg"],"SUBSTACK":[2,"aH"]},"fields":{},"shadow":false,"topLevel":false},"Tg":{"opcode":"operator_lt","next":null,"parent":"aG","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"aH":{"opcode":"control_if_else","next":null,"parent":"aG","inputs":{"CONDITION":[2,"g#"],"SUBSTACK":[2,"g%"],"SUBSTACK2":[2,"g("]},"fields":{},"shadow":false,"topLevel":false},"g#":{"opcode":"operator_and","next":null,"parent":"aH","inputs":{"OPERAND1":[2,"Th"],"OPERAND2":[2,"Ti"]},"fields":{},"shadow":false,"topLevel":false},"Th":{"opcode":"operator_lt","next":null,"parent":"g#","inputs":{"OPERAND1":[3,[12,"ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"],[10,""]],"OPERAND2":[1,[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"Ti":{"opcode":"operator_gt","next":null,"parent":"g#","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"79"]]},"fields":{},"shadow":false,"topLevel":false},"g%":{"opcode":"control_if","next":null,"parent":"aH","inputs":{"CONDITION":[2,"u]"],"SUBSTACK":[2,"Tj"]},"fields":{},"shadow":false,"topLevel":false},"u]":{"opcode":"operator_equals","next":null,"parent":"g%","inputs":{"OPERAND1":[3,[12,"frameSkipRender","lfS[gpD+gL}rms2!4~{|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Tj":{"opcode":"procedures_call","next":null,"parent":"g%","inputs":{"ssgtgop44BhVGrC:a5(.":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"kSwe~Ju[T3OIk;/f,EoO":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"g,Z%X[CRZLA)vK(k`X=%":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[10,""]],"Cm7pVcAMb;8+s{Jh+yi4":[3,[12,"z4","xO3+V,6v+^@INp?i#Jqt"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.spriteline %s %s %s %s","argumentids":"[\"ssgtgop44BhVGrC:a5(.\",\"kSwe~Ju[T3OIk;/f,EoO\",\"g,Z%X[CRZLA)vK(k`X=%\",\"Cm7pVcAMb;8+s{Jh+yi4\"]","warp":"true"}},"g(":{"opcode":"control_if","next":null,"parent":"aH","inputs":{"CONDITION":[2,"tv"],"SUBSTACK":[2,"tw"]},"fields":{},"shadow":false,"topLevel":false},"tv":{"opcode":"operator_gt","next":null,"parent":"g(","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[3,"Tk",[10,"79"]]},"fields":{},"shadow":false,"topLevel":false},"Tk":{"opcode":"operator_add","next":null,"parent":"tv","inputs":{"NUM1":[1,[4,"79"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"tw":{"opcode":"data_setvariableto","next":"a+","parent":"g(","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"a+":{"opcode":"control_if","next":"g)","parent":"tw","inputs":{"CONDITION":[2,"u["],"SUBSTACK":[2,"u@"]},"fields":{},"shadow":false,"topLevel":false},"u[":{"opcode":"operator_equals","next":null,"parent":"a+","inputs":{"OPERAND1":[3,[12,"frameSkipRender","lfS[gpD+gL}rms2!4~{|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"u@":{"opcode":"procedures_call","next":null,"parent":"a+","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.pushpixelstoscreen","argumentids":"[]","warp":"true"}},"g)":{"opcode":"control_if","next":null,"parent":"a+","inputs":{"CONDITION":[2,"tx"],"SUBSTACK":[2,"ty"]},"fields":{},"shadow":false,"topLevel":false},"tx":{"opcode":"operator_gt","next":null,"parent":"g)","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[3,"tz",[10,"80"]]},"fields":{},"shadow":false,"topLevel":false},"tz":{"opcode":"operator_add","next":null,"parent":"tx","inputs":{"NUM1":[3,"Tl",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Tl":{"opcode":"operator_add","next":null,"parent":"tz","inputs":{"NUM1":[1,[4,"79"]],"NUM2":[1,[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},"ty":{"opcode":"data_setvariableto","next":"tA","parent":"g)","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"tA":{"opcode":"data_setvariableto","next":"jh","parent":"ty","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"]},"shadow":false,"topLevel":false},"jh":{"opcode":"control_if","next":null,"parent":"tA","inputs":{"CONDITION":[2,"jv"],"SUBSTACK":[2,"jw"]},"fields":{},"shadow":false,"topLevel":false},"jv":{"opcode":"operator_and","next":null,"parent":"jh","inputs":{"OPERAND1":[2,"Iq"],"OPERAND2":[2,"Io"]},"fields":{},"shadow":false,"topLevel":false},"Iq":{"opcode":"operator_equals","next":null,"parent":"jv","inputs":{"OPERAND1":[3,[12,"ppu.CGBDMAType","^XNp?SBj+j9BODocp,Pi"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Io":{"opcode":"operator_gt","next":null,"parent":"jv","inputs":{"OPERAND1":[3,[12,"ppu.CGBDMAcount","~fe4v58w!(Z,.oB?Luzl"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"jw":{"opcode":"control_if","next":null,"parent":"jh","inputs":{"CONDITION":[2,"Ir"],"SUBSTACK":[2,"CU"]},"fields":{},"shadow":false,"topLevel":false},"Ir":{"opcode":"operator_equals","next":null,"parent":"jw","inputs":{"OPERAND1":[3,[12,"ppu.DMAflag","72V,vNaxdBUH1$wNvmh~"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"CU":{"opcode":"data_setvariableto","next":"Ip","parent":"jw","inputs":{"VALUE":[1,[10,"16"]]},"fields":{"VARIABLE":["ppu.transferAmount","|CY5E9D|+Cu41W:#P`V^"]},"shadow":false,"topLevel":false},"Ip":{"opcode":"data_setvariableto","next":null,"parent":"CU","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.DMAflag","72V,vNaxdBUH1$wNvmh~"]},"shadow":false,"topLevel":false},"o":{"opcode":"control_if_else","next":"C_","parent":"aG","inputs":{"CONDITION":[2,"jE"],"SUBSTACK":[2,"C`"],"SUBSTACK2":[2,"C{"]},"fields":{},"shadow":false,"topLevel":false},"jE":{"opcode":"operator_and","next":null,"parent":"o","inputs":{"OPERAND1":[2,"IV"],"OPERAND2":[2,"IW"]},"fields":{},"shadow":false,"topLevel":false},"IV":{"opcode":"operator_equals","next":null,"parent":"jE","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,"153"]],"OPERAND2":[1,[10,"153"]]},"fields":{},"shadow":false,"topLevel":false},"IW":{"opcode":"operator_gt","next":null,"parent":"jE","inputs":{"OPERAND1":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"C`":{"opcode":"data_replaceitemoflist","next":"C|","parent":"o","inputs":{"INDEX":[1,[7,"69"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C|":{"opcode":"data_replaceitemoflist","next":null,"parent":"C`","inputs":{"INDEX":[1,[7,"66"]],"ITEM":[3,"jF",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jF":{"opcode":"operator_add","next":null,"parent":"C|","inputs":{"NUM1":[3,"jG",[4,""]],"NUM2":[3,"C}",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"jG":{"opcode":"operator_subtract","next":null,"parent":"jF","inputs":{"NUM1":[3,"IX",[4,""]],"NUM2":[3,"C~",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"IX":{"opcode":"data_itemoflist","next":null,"parent":"jG","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C~":{"opcode":"operator_mod","next":null,"parent":"jG","inputs":{"NUM1":[3,"IY",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"IY":{"opcode":"data_itemoflist","next":null,"parent":"C~","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C}":{"opcode":"operator_add","next":null,"parent":"jF","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"Da",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Da":{"opcode":"operator_multiply","next":null,"parent":"C}","inputs":{"NUM1":[3,"jH",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"jH":{"opcode":"operator_equals","next":null,"parent":"Da","inputs":{"OPERAND1":[3,"IZ",[10,""]],"OPERAND2":[3,"I!",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"IZ":{"opcode":"data_itemoflist","next":null,"parent":"jH","inputs":{"INDEX":[1,[7,"69"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"I!":{"opcode":"data_itemoflist","next":null,"parent":"jH","inputs":{"INDEX":[1,[7,"70"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C{":{"opcode":"data_replaceitemoflist","next":"Dt","parent":"o","inputs":{"INDEX":[1,[7,"69"]],"ITEM":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Dt":{"opcode":"data_replaceitemoflist","next":null,"parent":"C{","inputs":{"INDEX":[1,[7,"66"]],"ITEM":[3,"jP",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jP":{"opcode":"operator_add","next":null,"parent":"Dt","inputs":{"NUM1":[3,"jQ",[4,""]],"NUM2":[3,"Du",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"jQ":{"opcode":"operator_subtract","next":null,"parent":"jP","inputs":{"NUM1":[3,"I:",[4,""]],"NUM2":[3,"Dv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"I:":{"opcode":"data_itemoflist","next":null,"parent":"jQ","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Dv":{"opcode":"operator_mod","next":null,"parent":"jQ","inputs":{"NUM1":[3,"I;",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"I;":{"opcode":"data_itemoflist","next":null,"parent":"Dv","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Du":{"opcode":"operator_add","next":null,"parent":"jP","inputs":{"NUM1":[3,[12,"ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"],[4,"1"]],"NUM2":[3,"Dw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Dw":{"opcode":"operator_multiply","next":null,"parent":"Du","inputs":{"NUM1":[3,"jR",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"jR":{"opcode":"operator_equals","next":null,"parent":"Dw","inputs":{"OPERAND1":[3,"I=",[10,""]],"OPERAND2":[3,"I?",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"I=":{"opcode":"data_itemoflist","next":null,"parent":"jR","inputs":{"INDEX":[1,[7,"69"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"I?":{"opcode":"data_itemoflist","next":null,"parent":"jR","inputs":{"INDEX":[1,[7,"70"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"C_":{"opcode":"data_setvariableto","next":"jI","parent":"o","inputs":{"VALUE":[3,[12,"ppu.statcond1","esGkP)|*:Ao;yj5VE,@4"],[10,"0"]]},"fields":{"VARIABLE":["ppu.statcond2","J2Vgi`9fi{f=C=v28Ymu"]},"shadow":false,"topLevel":false},"jI":{"opcode":"data_setvariableto","next":"b!","parent":"C_","inputs":{"VALUE":[3,"Db",[10,"0"]]},"fields":{"VARIABLE":["ppu.statcond1","esGkP)|*:Ao;yj5VE,@4"]},"shadow":false,"topLevel":false},"Db":{"opcode":"operator_add","next":null,"parent":"jI","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"Dc",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Dc":{"opcode":"operator_gt","next":null,"parent":"Db","inputs":{"OPERAND1":[3,"jJ",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"jJ":{"opcode":"operator_add","next":null,"parent":"Dc","inputs":{"NUM1":[3,"jK",[4,""]],"NUM2":[3,"jL",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"jK":{"opcode":"operator_and","next":null,"parent":"jJ","inputs":{"OPERAND1":[2,"Dd"],"OPERAND2":[2,"jM"]},"fields":{},"shadow":false,"topLevel":false},"Dd":{"opcode":"operator_gt","next":null,"parent":"jK","inputs":{"OPERAND1":[3,"De",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"De":{"opcode":"operator_mod","next":null,"parent":"Dd","inputs":{"NUM1":[3,"I#",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"I#":{"opcode":"data_itemoflist","next":null,"parent":"De","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jM":{"opcode":"operator_equals","next":null,"parent":"jK","inputs":{"OPERAND1":[3,"I%",[10,""]],"OPERAND2":[3,"I(",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"I%":{"opcode":"data_itemoflist","next":null,"parent":"jM","inputs":{"INDEX":[1,[7,"69"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"I(":{"opcode":"data_itemoflist","next":null,"parent":"jM","inputs":{"INDEX":[1,[7,"70"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jL":{"opcode":"operator_add","next":null,"parent":"jJ","inputs":{"NUM1":[3,"Df",[4,""]],"NUM2":[3,"jN",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Df":{"opcode":"operator_equals","next":null,"parent":"jL","inputs":{"OPERAND1":[3,"Dh",[10,""]],"OPERAND2":[1,[10,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Dh":{"opcode":"operator_multiply","next":null,"parent":"Df","inputs":{"NUM1":[3,"Dg",[4,""]],"NUM2":[3,[12,"ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Dg":{"opcode":"operator_gt","next":null,"parent":"Dh","inputs":{"OPERAND1":[3,"Di",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"Di":{"opcode":"operator_mod","next":null,"parent":"Dg","inputs":{"NUM1":[3,"I)",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"I)":{"opcode":"data_itemoflist","next":null,"parent":"Di","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jN":{"opcode":"operator_add","next":null,"parent":"jL","inputs":{"NUM1":[3,"Dj",[4,""]],"NUM2":[3,"jO",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Dj":{"opcode":"operator_equals","next":null,"parent":"jN","inputs":{"OPERAND1":[3,"Dl",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Dl":{"opcode":"operator_multiply","next":null,"parent":"Dj","inputs":{"NUM1":[3,"Dk",[4,""]],"NUM2":[3,[12,"ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Dk":{"opcode":"operator_gt","next":null,"parent":"Dl","inputs":{"OPERAND1":[3,"Dm",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"Dm":{"opcode":"operator_mod","next":null,"parent":"Dk","inputs":{"NUM1":[3,"I*",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"I*":{"opcode":"data_itemoflist","next":null,"parent":"Dm","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"jO":{"opcode":"operator_and","next":null,"parent":"jN","inputs":{"OPERAND1":[2,"Dn"],"OPERAND2":[2,"I+"]},"fields":{},"shadow":false,"topLevel":false},"Dn":{"opcode":"operator_gt","next":null,"parent":"jO","inputs":{"OPERAND1":[3,"Do",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Do":{"opcode":"operator_mod","next":null,"parent":"Dn","inputs":{"NUM1":[3,"I,",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"I,":{"opcode":"data_itemoflist","next":null,"parent":"Do","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"I+":{"opcode":"operator_equals","next":null,"parent":"jO","inputs":{"OPERAND1":[3,[12,"ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"b!":{"opcode":"control_if","next":"I-","parent":"jI","inputs":{"CONDITION":[2,"I."],"SUBSTACK":[2,"Dp"]},"fields":{},"shadow":false,"topLevel":false},"I.":{"opcode":"operator_gt","next":null,"parent":"b!","inputs":{"OPERAND1":[3,[12,"ppu.statcond1","esGkP)|*:Ao;yj5VE,@4"],[10,""]],"OPERAND2":[3,[12,"ppu.statcond2","J2Vgi`9fi{f=C=v28Ymu"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"Dp":{"opcode":"data_replaceitemoflist","next":null,"parent":"b!","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"Dq",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Dq":{"opcode":"data_itemoflist","next":null,"parent":"Dp","inputs":{"INDEX":[3,"Dr",[7,"70"]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"Dr":{"opcode":"operator_add","next":null,"parent":"Dq","inputs":{"NUM1":[3,"Ds",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ds":{"opcode":"operator_add","next":null,"parent":"Dr","inputs":{"NUM1":[3,"I/",[4,""]],"NUM2":[1,[4,"512"]]},"fields":{},"shadow":false,"topLevel":false},"I/":{"opcode":"data_itemoflist","next":null,"parent":"Ds","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"I-":{"opcode":"data_setvariableto","next":null,"parent":"b!","inputs":{"VALUE":[3,[12,"z5","Wq[VW}I%oU$|,q}CeN+@"],[10,"0"]]},"fields":{"VARIABLE":["ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"]},"shadow":false,"topLevel":false},"tg":{"opcode":"procedures_call","next":"tB","parent":"Q","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"ppu.turnofftheLCD","argumentids":"[]","warp":"true"}},"tB":{"opcode":"data_replaceitemoflist","next":"tC","parent":"tg","inputs":{"INDEX":[1,[7,"69"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tC":{"opcode":"data_replaceitemoflist","next":null,"parent":"tB","inputs":{"INDEX":[1,[7,"66"]],"ITEM":[3,"i=",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"i=":{"opcode":"operator_add","next":null,"parent":"tC","inputs":{"NUM1":[3,"i?",[4,""]],"NUM2":[3,"Bz",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"i?":{"opcode":"operator_subtract","next":null,"parent":"i=","inputs":{"NUM1":[3,"B[",[4,""]],"NUM2":[3,"BA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"B[":{"opcode":"data_itemoflist","next":null,"parent":"i?","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"BA":{"opcode":"operator_mod","next":null,"parent":"i?","inputs":{"NUM1":[3,"B]",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"B]":{"opcode":"data_itemoflist","next":null,"parent":"BA","inputs":{"INDEX":[1,[7,"66"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"Bz":{"opcode":"operator_multiply","next":null,"parent":"i=","inputs":{"NUM1":[3,"i@",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"i@":{"opcode":"operator_equals","next":null,"parent":"Bz","inputs":{"OPERAND1":[3,"D;",[10,""]],"OPERAND2":[3,"D=",[10,""]]},"fields":{},"shadow":false,"topLevel":false},"D;":{"opcode":"data_itemoflist","next":null,"parent":"i@","inputs":{"INDEX":[1,[7,"69"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"D=":{"opcode":"data_itemoflist","next":null,"parent":"i@","inputs":{"INDEX":[1,[7,"70"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"te":{"opcode":"data_changevariableby","next":null,"parent":"Q","inputs":{"VALUE":[3,"Tm",[4,"0"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"Tm":{"opcode":"operator_subtract","next":null,"parent":"te","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"tE":{"opcode":"data_setvariableto","next":"tF","parent":"tD","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.LineY","w.!q`NmG7MvoSZHTUh{6"]},"shadow":false,"topLevel":false},"tF":{"opcode":"data_setvariableto","next":"tG","parent":"tE","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.linecycles","S!nfHnY(r2qq4s1O;CTn"]},"shadow":false,"topLevel":false},"tG":{"opcode":"data_setvariableto","next":"tH","parent":"tF","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.LCDstate",".D2L=#Tb4WDLFM.*fyky"]},"shadow":false,"topLevel":false},"tH":{"opcode":"data_setvariableto","next":"To","parent":"tG","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.windowincr","?@`6%*n_:ai9~7.}XHbt"]},"shadow":false,"topLevel":false},"To":{"opcode":"data_setvariableto","next":null,"parent":"tH","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"]},"shadow":false,"topLevel":false},"tM":{"opcode":"data_setvariableto","next":"g/","parent":"g,","inputs":{"VALUE":[3,[12,"z11","ltsWDl]QhF[q:;Hdaqe_"],[10,"0"]]},"fields":{"VARIABLE":["y3","?8w-@IfeziV2F0~ghlM2"]},"shadow":false,"topLevel":false},"g/":{"opcode":"control_while","next":null,"parent":"tM","inputs":{"CONDITION":[2,"Tt"],"SUBSTACK":[2,"p"]},"fields":{},"shadow":false,"topLevel":false},"Tt":{"opcode":"operator_gt","next":null,"parent":"g/","inputs":{"OPERAND1":[3,[12,"y3","?8w-@IfeziV2F0~ghlM2"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"un":{"opcode":"data_setvariableto","next":"uo","parent":"um","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"uo":{"opcode":"data_setvariableto","next":"ha","parent":"un","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"ha":{"opcode":"control_repeat","next":"TS","parent":"uo","inputs":{"TIMES":[1,[6,"23041"]],"SUBSTACK":[2,"up"]},"fields":{},"shadow":false,"topLevel":false},"up":{"opcode":"data_changevariableby","next":"aL","parent":"ha","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["i",")]#LvJ=|APrar9)?rYj}"]},"shadow":false,"topLevel":false},"aL":{"opcode":"control_if_else","next":null,"parent":"up","inputs":{"CONDITION":[2,"hb"],"SUBSTACK":[2,"TT"],"SUBSTACK2":[2,"uq"]},"fields":{},"shadow":false,"topLevel":false},"hb":{"opcode":"operator_equals","next":null,"parent":"aL","inputs":{"OPERAND1":[3,"TU",[10,""]],"OPERAND2":[3,"ur",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"TU":{"opcode":"data_itemoflist","next":null,"parent":"hb","inputs":{"INDEX":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[7,"1"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"ur":{"opcode":"data_itemoflist","next":null,"parent":"hb","inputs":{"INDEX":[3,"TV",[7,"1"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"TV":{"opcode":"operator_subtract","next":null,"parent":"ur","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"TT":{"opcode":"data_changevariableby","next":null,"parent":"aL","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"uq":{"opcode":"data_changevariableby","next":"hc","parent":"aL","inputs":{"VALUE":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"hc":{"opcode":"pen_setPenColorToColor","next":"hd","parent":"uq","inputs":{"COLOR":[3,"us",[9,"#a7ec77"]]},"fields":{},"shadow":false,"topLevel":false},"us":{"opcode":"data_itemoflist","next":null,"parent":"hc","inputs":{"INDEX":[3,"TW",[7,"1"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"TW":{"opcode":"operator_subtract","next":null,"parent":"us","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"hd":{"opcode":"pen_changePenColorParamBy","next":"b,","parent":"hc","inputs":{"COLOR_PARAM":[1,"WS"],"VALUE":[1,[4,"-12"]]},"fields":{},"shadow":false,"topLevel":false},"WS":{"opcode":"pen_menu_colorParam","next":null,"parent":"hd","inputs":{},"fields":{"colorParam":["saturation",null]},"shadow":true,"topLevel":false},"b,":{"opcode":"control_while","next":"DW","parent":"hd","inputs":{"CONDITION":[2,"DX"],"SUBSTACK":[2,"DY"]},"fields":{},"shadow":false,"topLevel":false},"DX":{"opcode":"operator_not","next":null,"parent":"b,","inputs":{"OPERAND":[2,"WT"]},"fields":{},"shadow":false,"topLevel":false},"WT":{"opcode":"operator_lt","next":null,"parent":"DX","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"160"]]},"fields":{},"shadow":false,"topLevel":false},"DY":{"opcode":"data_changevariableby","next":"DZ","parent":"b,","inputs":{"VALUE":[1,[4,"-160"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"DZ":{"opcode":"procedures_call","next":"D!","parent":"DY","inputs":{"Y}vJQs3)VnckTH=Y0XY`":[1,[10,"159"]],"5l!5#6cc=;p^RWm7$_(n":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.goto %s %s","argumentids":"[\"Y}vJQs3)VnckTH=Y0XY`\",\"5l!5#6cc=;p^RWm7$_(n\"]","warp":"true"}},"D!":{"opcode":"pen_penUp","next":"D#","parent":"DZ","inputs":{},"fields":{},"shadow":false,"topLevel":false},"D#":{"opcode":"data_changevariableby","next":"D%","parent":"D!","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"D%":{"opcode":"procedures_call","next":"bl","parent":"D#","inputs":{"Y}vJQs3)VnckTH=Y0XY`":[1,[10,"0"]],"5l!5#6cc=;p^RWm7$_(n":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.goto %s %s","argumentids":"[\"Y}vJQs3)VnckTH=Y0XY`\",\"5l!5#6cc=;p^RWm7$_(n\"]","warp":"true"}},"bl":{"opcode":"control_if","next":null,"parent":"D%","inputs":{"CONDITION":[2,"WU"],"SUBSTACK":[2,"WV"]},"fields":{},"shadow":false,"topLevel":false},"WU":{"opcode":"operator_lt","next":null,"parent":"bl","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"144"]]},"fields":{},"shadow":false,"topLevel":false},"WV":{"opcode":"pen_penDown","next":null,"parent":"bl","inputs":{},"fields":{},"shadow":false,"topLevel":false},"DW":{"opcode":"procedures_call","next":"WW","parent":"b,","inputs":{"Y}vJQs3)VnckTH=Y0XY`":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,"0"]],"5l!5#6cc=;p^RWm7$_(n":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.goto %s %s","argumentids":"[\"Y}vJQs3)VnckTH=Y0XY`\",\"5l!5#6cc=;p^RWm7$_(n\"]","warp":"true"}},"WW":{"opcode":"data_setvariableto","next":null,"parent":"DW","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"TS":{"opcode":"pen_penUp","next":null,"parent":"ha","inputs":{},"fields":{},"shadow":false,"topLevel":false},"vv":{"opcode":"operator_mod","next":null,"parent":"hr","inputs":{"NUM1":[3,"vz",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"vz":{"opcode":"operator_mathop","next":null,"parent":"vv","inputs":{"NUM":[3,"vA",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"vA":{"opcode":"operator_divide","next":null,"parent":"vz","inputs":{"NUM1":[3,"vB",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"vB":{"opcode":"data_itemoflist","next":null,"parent":"vA","inputs":{"INDEX":[3,"T`",[7,"1"]]},"fields":{"LIST":[".OAM","Yy28!2)g%)a,!N+-GbU;"]},"shadow":false,"topLevel":false},"T`":{"opcode":"operator_add","next":null,"parent":"vB","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"wu":{"opcode":"data_setvariableto","next":"bH","parent":"a!","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["cpu.interruptSwitch","T2{Yzl11_xkw11Yf4s3m"]},"shadow":false,"topLevel":false},"bH":{"opcode":"procedures_call","next":"hR","parent":"wu","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"UM",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"wv",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"UM":{"opcode":"operator_subtract","next":null,"parent":"bH","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wv":{"opcode":"operator_mod","next":null,"parent":"bH","inputs":{"NUM1":[3,"ww",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"ww":{"opcode":"operator_mathop","next":null,"parent":"wv","inputs":{"NUM":[3,"UN",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"UN":{"opcode":"operator_divide","next":null,"parent":"ww","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hR":{"opcode":"data_changevariableby","next":"c/","parent":"bH","inputs":{"VALUE":[3,"u_",[4,"1"]]},"fields":{"VARIABLE":["ppu.cachedcycles","[qKE*(?rjanqDG$G8@}b"]},"shadow":false,"topLevel":false},"u_":{"opcode":"operator_multiply","next":null,"parent":"hR","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,[12,"ppu.cyclesincr","R%W_a:%1i;[$!~/]6VCo"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"c/":{"opcode":"procedures_call","next":"hS","parent":"hR","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,"UO",[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"UP",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"UO":{"opcode":"operator_subtract","next":null,"parent":"c/","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"UP":{"opcode":"operator_mod","next":null,"parent":"c/","inputs":{"NUM1":[3,[12,"regs.PC","/S09*.9Jz9BpP4RS^0=5"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"hS":{"opcode":"data_setvariableto","next":"v","parent":"c/","inputs":{"VALUE":[3,"wx",[10,"-2"]]},"fields":{"VARIABLE":["regs.SP","=}I!6E[i(AsIA2.]#DCq"]},"shadow":false,"topLevel":false},"wx":{"opcode":"operator_mod","next":null,"parent":"hS","inputs":{"NUM1":[3,"UQ",[4,""]],"NUM2":[1,[4,"65536"]]},"fields":{},"shadow":false,"topLevel":false},"UQ":{"opcode":"operator_subtract","next":null,"parent":"wx","inputs":{"NUM1":[3,[12,"regs.SP","=}I!6E[i(AsIA2.]#DCq"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"v":{"opcode":"control_if_else","next":"wy","parent":"hS","inputs":{"CONDITION":[2,"wz"],"SUBSTACK":[2,"hT"],"SUBSTACK2":[2,"a#"]},"fields":{},"shadow":false,"topLevel":false},"wz":{"opcode":"operator_gt","next":null,"parent":"v","inputs":{"OPERAND1":[3,"UR",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"UR":{"opcode":"operator_mod","next":null,"parent":"wz","inputs":{"NUM1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"hT":{"opcode":"data_replaceitemoflist","next":"US","parent":"v","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"wA",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"wA":{"opcode":"data_itemoflist","next":null,"parent":"hT","inputs":{"INDEX":[3,"wB",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"wB":{"opcode":"operator_add","next":null,"parent":"wA","inputs":{"NUM1":[3,"wC",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wC":{"opcode":"operator_add","next":null,"parent":"wB","inputs":{"NUM1":[3,"wD",[4,""]],"NUM2":[1,[4,"0b11111110"]]},"fields":{},"shadow":false,"topLevel":false},"wD":{"opcode":"operator_multiply","next":null,"parent":"wC","inputs":{"NUM1":[3,"UT",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"UT":{"opcode":"data_itemoflist","next":null,"parent":"wD","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"US":{"opcode":"data_setvariableto","next":null,"parent":"hT","inputs":{"VALUE":[1,[10,"64"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"a#":{"opcode":"control_if_else","next":null,"parent":"v","inputs":{"CONDITION":[2,"wE"],"SUBSTACK":[2,"hU"],"SUBSTACK2":[2,"bI"]},"fields":{},"shadow":false,"topLevel":false},"wE":{"opcode":"operator_gt","next":null,"parent":"a#","inputs":{"OPERAND1":[3,"UU",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"UU":{"opcode":"operator_mod","next":null,"parent":"wE","inputs":{"NUM1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"hU":{"opcode":"data_replaceitemoflist","next":"UV","parent":"a#","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"wF",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"wF":{"opcode":"data_itemoflist","next":null,"parent":"hU","inputs":{"INDEX":[3,"wG",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"wG":{"opcode":"operator_add","next":null,"parent":"wF","inputs":{"NUM1":[3,"wH",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wH":{"opcode":"operator_add","next":null,"parent":"wG","inputs":{"NUM1":[3,"wI",[4,""]],"NUM2":[1,[4,"0b11111101"]]},"fields":{},"shadow":false,"topLevel":false},"wI":{"opcode":"operator_multiply","next":null,"parent":"wH","inputs":{"NUM1":[3,"UW",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"UW":{"opcode":"data_itemoflist","next":null,"parent":"wI","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"UV":{"opcode":"data_setvariableto","next":null,"parent":"hU","inputs":{"VALUE":[1,[10,"72"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"bI":{"opcode":"control_if_else","next":null,"parent":"a#","inputs":{"CONDITION":[2,"wJ"],"SUBSTACK":[2,"hV"],"SUBSTACK2":[2,"bJ"]},"fields":{},"shadow":false,"topLevel":false},"wJ":{"opcode":"operator_gt","next":null,"parent":"bI","inputs":{"OPERAND1":[3,"UX",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"UX":{"opcode":"operator_mod","next":null,"parent":"wJ","inputs":{"NUM1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"hV":{"opcode":"data_replaceitemoflist","next":"UY","parent":"bI","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"wK",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"wK":{"opcode":"data_itemoflist","next":null,"parent":"hV","inputs":{"INDEX":[3,"wL",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"wL":{"opcode":"operator_add","next":null,"parent":"wK","inputs":{"NUM1":[3,"wM",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wM":{"opcode":"operator_add","next":null,"parent":"wL","inputs":{"NUM1":[3,"wN",[4,""]],"NUM2":[1,[4,"0b11111011"]]},"fields":{},"shadow":false,"topLevel":false},"wN":{"opcode":"operator_multiply","next":null,"parent":"wM","inputs":{"NUM1":[3,"UZ",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"UZ":{"opcode":"data_itemoflist","next":null,"parent":"wN","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"UY":{"opcode":"data_setvariableto","next":null,"parent":"hV","inputs":{"VALUE":[1,[10,"80"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"bJ":{"opcode":"control_if_else","next":null,"parent":"bI","inputs":{"CONDITION":[2,"wO"],"SUBSTACK":[2,"hX"],"SUBSTACK2":[2,"hZ"]},"fields":{},"shadow":false,"topLevel":false},"wO":{"opcode":"operator_gt","next":null,"parent":"bJ","inputs":{"OPERAND1":[3,"U!",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"U!":{"opcode":"operator_mod","next":null,"parent":"wO","inputs":{"NUM1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"hX":{"opcode":"data_replaceitemoflist","next":"U#","parent":"bJ","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"wP",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"wP":{"opcode":"data_itemoflist","next":null,"parent":"hX","inputs":{"INDEX":[3,"wQ",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"wQ":{"opcode":"operator_add","next":null,"parent":"wP","inputs":{"NUM1":[3,"wR",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wR":{"opcode":"operator_add","next":null,"parent":"wQ","inputs":{"NUM1":[3,"wS",[4,""]],"NUM2":[1,[4,"0b11110111"]]},"fields":{},"shadow":false,"topLevel":false},"wS":{"opcode":"operator_multiply","next":null,"parent":"wR","inputs":{"NUM1":[3,"U%",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"U%":{"opcode":"data_itemoflist","next":null,"parent":"wS","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"U#":{"opcode":"data_setvariableto","next":null,"parent":"hX","inputs":{"VALUE":[1,[10,"88"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"hZ":{"opcode":"control_if","next":null,"parent":"bJ","inputs":{"CONDITION":[2,"wT"],"SUBSTACK":[2,"h!"]},"fields":{},"shadow":false,"topLevel":false},"wT":{"opcode":"operator_gt","next":null,"parent":"hZ","inputs":{"OPERAND1":[3,"U(",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"U(":{"opcode":"operator_mod","next":null,"parent":"wT","inputs":{"NUM1":[3,[12,"z0","79vji|y}}5{S*/J{~%e;"],[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"h!":{"opcode":"data_replaceitemoflist","next":"U)","parent":"hZ","inputs":{"INDEX":[1,[7,"16"]],"ITEM":[3,"wU",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"wU":{"opcode":"data_itemoflist","next":null,"parent":"h!","inputs":{"INDEX":[3,"wV",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"wV":{"opcode":"operator_add","next":null,"parent":"wU","inputs":{"NUM1":[3,"wW",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"wW":{"opcode":"operator_add","next":null,"parent":"wV","inputs":{"NUM1":[3,"wX",[4,""]],"NUM2":[1,[4,"0b11101111"]]},"fields":{},"shadow":false,"topLevel":false},"wX":{"opcode":"operator_multiply","next":null,"parent":"wW","inputs":{"NUM1":[3,"U*",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"U*":{"opcode":"data_itemoflist","next":null,"parent":"wX","inputs":{"INDEX":[1,[7,"16"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"U)":{"opcode":"data_setvariableto","next":null,"parent":"h!","inputs":{"VALUE":[1,[10,"96"]]},"fields":{"VARIABLE":["regs.PC","/S09*.9Jz9BpP4RS^0=5"]},"shadow":false,"topLevel":false},"wy":{"opcode":"procedures_call","next":"U+","parent":"v","inputs":{},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":".runAllCachedCycles","argumentids":"[]","warp":"true"}},"U+":{"opcode":"control_stop","next":null,"parent":"wy","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"xR":{"opcode":"data_deletealloflist","next":"xS","parent":"xQ","inputs":{},"fields":{"LIST":["cpu.opbytes","JfW/YPuk=+2r^T7Yy{Ex"]},"shadow":false,"topLevel":false},"xS":{"opcode":"data_deletealloflist","next":"xT","parent":"xR","inputs":{},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"xT":{"opcode":"data_deletealloflist","next":"xU","parent":"xS","inputs":{},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"xU":{"opcode":"data_deletealloflist","next":"xV","parent":"xT","inputs":{},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"xV":{"opcode":"data_deletealloflist","next":"xW","parent":"xU","inputs":{},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"xW":{"opcode":"data_deletealloflist","next":"xX","parent":"xV","inputs":{},"fields":{"LIST":["cpu.XOR","uswSWlTlHX6y.g*]!d$!"]},"shadow":false,"topLevel":false},"xX":{"opcode":"data_deletealloflist","next":"xY","parent":"xW","inputs":{},"fields":{"LIST":["debug.logfile","ZI6jT*maN/O:dSK7N^[]"]},"shadow":false,"topLevel":false},"xY":{"opcode":"data_deletealloflist","next":"xZ","parent":"xX","inputs":{},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"xZ":{"opcode":"data_deletealloflist","next":"x!","parent":"xY","inputs":{},"fields":{"LIST":["JIT.endblock","2Cug3W,_=`]D+(4;6#Ng"]},"shadow":false,"topLevel":false},"x!":{"opcode":"data_deletealloflist","next":"x#","parent":"xZ","inputs":{},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"x#":{"opcode":"data_deletealloflist","next":"x%","parent":"x!","inputs":{},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"x%":{"opcode":"data_deletealloflist","next":"x(","parent":"x#","inputs":{},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"x(":{"opcode":"data_deletealloflist","next":"sO","parent":"x%","inputs":{},"fields":{"LIST":["ppu.GBCpalettesLUT","F7rUuKZp/*Qkk(*IfGDC"]},"shadow":false,"topLevel":false},"sO":{"opcode":"data_deletealloflist","next":null,"parent":"x(","inputs":{},"fields":{"LIST":[".ROM","GFliGOS)V5srwsIxK?:d"]},"shadow":false,"topLevel":false},"yX":{"opcode":"data_setvariableto","next":"ii","parent":"yW","inputs":{"VALUE":[1,[10,"15"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"ii":{"opcode":"data_setvariableto","next":"ij","parent":"yX","inputs":{"VALUE":[3,"yY",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"yY":{"opcode":"operator_add","next":null,"parent":"ii","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"zs",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zs":{"opcode":"operator_lt","next":null,"parent":"yY","inputs":{"OPERAND1":[3,"zu",[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zu":{"opcode":"operator_mod","next":null,"parent":"zs","inputs":{"NUM1":[3,"xB",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"xB":{"opcode":"data_itemoflist","next":null,"parent":"zu","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"ij":{"opcode":"data_setvariableto","next":"ik","parent":"ii","inputs":{"VALUE":[3,"yZ",[10,"0"]]},"fields":{"VARIABLE":["z3","{kf*mxp38zU|qJn*Z}mf"]},"shadow":false,"topLevel":false},"yZ":{"opcode":"operator_add","next":null,"parent":"ij","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"zr",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zr":{"opcode":"operator_lt","next":null,"parent":"yZ","inputs":{"OPERAND1":[3,"zt",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"zt":{"opcode":"operator_mod","next":null,"parent":"zr","inputs":{"NUM1":[3,"xA",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"xA":{"opcode":"data_itemoflist","next":null,"parent":"zt","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"ik":{"opcode":"data_changevariableby","next":"iu","parent":"ij","inputs":{"VALUE":[3,"y_",[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"y_":{"opcode":"operator_multiply","next":null,"parent":"ik","inputs":{"NUM1":[1,[4,"-8"]],"NUM2":[3,"iv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"iv":{"opcode":"operator_or","next":null,"parent":"y_","inputs":{"OPERAND1":[2,"y{"],"OPERAND2":[2,"y|"]},"fields":{},"shadow":false,"topLevel":false},"y{":{"opcode":"operator_gt","next":null,"parent":"iv","inputs":{"OPERAND1":[3,"y`",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"y`":{"opcode":"operator_multiply","next":null,"parent":"y{","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[3,"vn",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"vn":{"opcode":"data_itemoflist","next":null,"parent":"y`","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"y|":{"opcode":"operator_gt","next":null,"parent":"iv","inputs":{"OPERAND1":[3,"y}",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"y}":{"opcode":"operator_multiply","next":null,"parent":"y|","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[3,"vo",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"vo":{"opcode":"data_itemoflist","next":null,"parent":"y}","inputs":{"INDEX":[1,[7,"5"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"iu":{"opcode":"data_changevariableby","next":"iw","parent":"ik","inputs":{"VALUE":[3,"y~",[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"y~":{"opcode":"operator_multiply","next":null,"parent":"iu","inputs":{"NUM1":[1,[4,"-4"]],"NUM2":[3,"ix",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"ix":{"opcode":"operator_or","next":null,"parent":"y~","inputs":{"OPERAND1":[2,"za"],"OPERAND2":[2,"zb"]},"fields":{},"shadow":false,"topLevel":false},"za":{"opcode":"operator_gt","next":null,"parent":"ix","inputs":{"OPERAND1":[3,"zc",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zc":{"opcode":"operator_multiply","next":null,"parent":"za","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[3,"vq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"vq":{"opcode":"data_itemoflist","next":null,"parent":"zc","inputs":{"INDEX":[1,[7,"2"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"zb":{"opcode":"operator_gt","next":null,"parent":"ix","inputs":{"OPERAND1":[3,"zd",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zd":{"opcode":"operator_multiply","next":null,"parent":"zb","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[3,"~S",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"~S":{"opcode":"data_itemoflist","next":null,"parent":"zd","inputs":{"INDEX":[1,[7,"6"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"iw":{"opcode":"data_changevariableby","next":"iy","parent":"iu","inputs":{"VALUE":[3,"ze",[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"ze":{"opcode":"operator_multiply","next":null,"parent":"iw","inputs":{"NUM1":[1,[4,"-2"]],"NUM2":[3,"iz",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"iz":{"opcode":"operator_or","next":null,"parent":"ze","inputs":{"OPERAND1":[2,"zf"],"OPERAND2":[2,"zg"]},"fields":{},"shadow":false,"topLevel":false},"zf":{"opcode":"operator_gt","next":null,"parent":"iz","inputs":{"OPERAND1":[3,"zh",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zh":{"opcode":"operator_multiply","next":null,"parent":"zf","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[3,"xu",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xu":{"opcode":"data_itemoflist","next":null,"parent":"zh","inputs":{"INDEX":[1,[7,"3"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"zg":{"opcode":"operator_gt","next":null,"parent":"iz","inputs":{"OPERAND1":[3,"zi",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zi":{"opcode":"operator_multiply","next":null,"parent":"zg","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[3,"xv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xv":{"opcode":"data_itemoflist","next":null,"parent":"zi","inputs":{"INDEX":[1,[7,"7"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"iy":{"opcode":"data_changevariableby","next":"zj","parent":"iw","inputs":{"VALUE":[3,"zk",[4,"1"]]},"fields":{"VARIABLE":["z1","?!3pJUlmn3jk$}udq^[s"]},"shadow":false,"topLevel":false},"zk":{"opcode":"operator_multiply","next":null,"parent":"iy","inputs":{"NUM1":[1,[4,"-1"]],"NUM2":[3,"iA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"iA":{"opcode":"operator_or","next":null,"parent":"zk","inputs":{"OPERAND1":[2,"zl"],"OPERAND2":[2,"zm"]},"fields":{},"shadow":false,"topLevel":false},"zl":{"opcode":"operator_gt","next":null,"parent":"iA","inputs":{"OPERAND1":[3,"zn",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zn":{"opcode":"operator_multiply","next":null,"parent":"zl","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[3,"xw",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xw":{"opcode":"data_itemoflist","next":null,"parent":"zn","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"zm":{"opcode":"operator_gt","next":null,"parent":"iA","inputs":{"OPERAND1":[3,"zo",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"zo":{"opcode":"operator_multiply","next":null,"parent":"zm","inputs":{"NUM1":[3,[12,"z3","{kf*mxp38zU|qJn*Z}mf"],[4,""]],"NUM2":[3,"xx",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xx":{"opcode":"data_itemoflist","next":null,"parent":"zo","inputs":{"INDEX":[1,[7,"8"]]},"fields":{"LIST":["keys","Tx$_:cz6Jr3p-!vZktx)"]},"shadow":false,"topLevel":false},"zj":{"opcode":"data_replaceitemoflist","next":null,"parent":"iy","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"zp",[10,""]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"zp":{"opcode":"operator_add","next":null,"parent":"zj","inputs":{"NUM1":[3,"iB",[4,""]],"NUM2":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"iB":{"opcode":"operator_subtract","next":null,"parent":"zp","inputs":{"NUM1":[3,"xy",[4,""]],"NUM2":[3,"zq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"xy":{"opcode":"data_itemoflist","next":null,"parent":"iB","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"zq":{"opcode":"operator_mod","next":null,"parent":"iB","inputs":{"NUM1":[3,"xz",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"xz":{"opcode":"data_itemoflist","next":null,"parent":"zq","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"V{":{"opcode":"data_setvariableto","next":null,"parent":"b(","inputs":{"VALUE":[1,[10,"3"]]},"fields":{"VARIABLE":[".MBC",")rGs=V-Kgx~+N7=l/%Av"]},"shadow":false,"topLevel":false},"kD":{"opcode":"operator_and","next":null,"parent":"ky","inputs":{"OPERAND1":[2,"kF"],"OPERAND2":[2,"F~"]},"fields":{},"shadow":false,"topLevel":false},"kF":{"opcode":"operator_and","next":null,"parent":"kD","inputs":{"OPERAND1":[2,"Ga"],"OPERAND2":[2,"Gb"]},"fields":{},"shadow":false,"topLevel":false},"Ga":{"opcode":"operator_lt","next":null,"parent":"kF","inputs":{"OPERAND1":[3,"LB",[10,""]],"OPERAND2":[1,[10,"15"]]},"fields":{},"shadow":false,"topLevel":false},"LB":{"opcode":"data_itemoflist","next":null,"parent":"Ga","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"Gb":{"opcode":"operator_gt","next":null,"parent":"kF","inputs":{"OPERAND1":[3,"LC",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"LC":{"opcode":"data_itemoflist","next":null,"parent":"Gb","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"F~":{"opcode":"operator_gt","next":null,"parent":"kD","inputs":{"OPERAND1":[3,"Gc",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Gc":{"opcode":"operator_mathop","next":null,"parent":"F~","inputs":{"NUM":[3,"LD",[4,""]]},"fields":{"OPERATOR":["abs",null]},"shadow":false,"topLevel":false},"LD":{"opcode":"data_itemoflist","next":null,"parent":"Gc","inputs":{"INDEX":[3,[12,"z17","o7EoB-}CoX@qHC;vxe7J"],[7,"1"]]},"fields":{"LIST":["+sound envelope timer","NQ)87@,pNCswi9RIO:aK"]},"shadow":false,"topLevel":false},"K+":{"opcode":"operator_mathop","next":null,"parent":"e[","inputs":{"NUM":[3,"fy",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"fy":{"opcode":"operator_mod","next":null,"parent":"K+","inputs":{"NUM1":[3,"J+",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"J+":{"opcode":"operator_divide","next":null,"parent":"fy","inputs":{"NUM1":[3,[12,"APU.clock","`HZLQY,r.hBB${Q2dx.{"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"V|":{"opcode":"argument_reporter_string_number","next":null,"parent":"dv","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"j=":{"opcode":"operator_or","next":null,"parent":"c_","inputs":{"OPERAND1":[2,"Ev"],"OPERAND2":[2,"Ew"]},"fields":{},"shadow":false,"topLevel":false},"Ev":{"opcode":"operator_equals","next":null,"parent":"j=","inputs":{"OPERAND1":[3,"J/",[10,""]],"OPERAND2":[1,[10,"0xFF1D"]]},"fields":{},"shadow":false,"topLevel":false},"J/":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ev","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"Ew":{"opcode":"operator_equals","next":null,"parent":"j=","inputs":{"OPERAND1":[3,"J:",[10,""]],"OPERAND2":[1,[10,"0xFF1E"]]},"fields":{},"shadow":false,"topLevel":false},"J:":{"opcode":"argument_reporter_string_number","next":null,"parent":"Ew","inputs":{},"fields":{"VALUE":["addr",null]},"shadow":false,"topLevel":false},"FF":{"opcode":"data_replaceitemoflist","next":null,"parent":"d@","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,"NI",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"NI":{"opcode":"data_itemoflist","next":null,"parent":"FF","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"n}":{"opcode":"procedures_definition","next":"n~","parent":null,"inputs":{"custom_block":[1,"PA"]},"fields":{},"shadow":false,"topLevel":true,"x":48173,"y":64},"PA":{"opcode":"procedures_prototype","next":null,"parent":"n}","inputs":{},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"cpu.evalcondition","argumentids":"[]","argumentnames":"[]","argumentdefaults":"[]","warp":"true"}},"n~":{"opcode":"data_setvariableto","next":null,"parent":"n}","inputs":{"VALUE":[3,"oa",[10,"0"]]},"fields":{"VARIABLE":["cpu.condition","PdGlQ-*iS#U,!Q{W^=|U"]},"shadow":false,"topLevel":false},"oa":{"opcode":"operator_add","next":null,"parent":"n~","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"eS",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"eS":{"opcode":"operator_equals","next":null,"parent":"oa","inputs":{"OPERAND1":[3,"ob",[10,""]],"OPERAND2":[3,"oc",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"ob":{"opcode":"data_itemoflist","next":null,"parent":"eS","inputs":{"INDEX":[3,"od",[7,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"od":{"opcode":"operator_add","next":null,"parent":"ob","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"oe",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"oe":{"opcode":"operator_multiply","next":null,"parent":"od","inputs":{"NUM1":[3,"og",[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"og":{"opcode":"operator_mathop","next":null,"parent":"oe","inputs":{"NUM":[3,"oh",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"oh":{"opcode":"operator_divide","next":null,"parent":"og","inputs":{"NUM1":[3,"oi",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oi":{"opcode":"data_itemoflist","next":null,"parent":"oh","inputs":{"INDEX":[3,"PB",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PB":{"opcode":"operator_add","next":null,"parent":"oi","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"oc":{"opcode":"operator_mod","next":null,"parent":"eS","inputs":{"NUM1":[3,"oj",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"oj":{"opcode":"data_itemoflist","next":null,"parent":"oc","inputs":{"INDEX":[3,"PC",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"PC":{"opcode":"operator_add","next":null,"parent":"oj","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"xl":{"opcode":"procedures_definition","next":"h;","parent":null,"inputs":{"custom_block":[1,"h="]},"fields":{},"shadow":false,"topLevel":true,"x":14935,"y":64},"h=":{"opcode":"procedures_prototype","next":null,"parent":"xl","inputs":{"Y}vJQs3)VnckTH=Y0XY`":[1,"VV"],"5l!5#6cc=;p^RWm7$_(n":[1,"VW"]},"fields":{},"shadow":true,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"render.goto %s %s","argumentids":"[\"Y}vJQs3)VnckTH=Y0XY`\",\"5l!5#6cc=;p^RWm7$_(n\"]","argumentnames":"[\"x\",\"y\"]","argumentdefaults":"[\"\",\"\"]","warp":"true"}},"VV":{"opcode":"argument_reporter_string_number","next":null,"parent":"h=","inputs":{},"fields":{"VALUE":["x",null]},"shadow":true,"topLevel":false},"VW":{"opcode":"argument_reporter_string_number","next":null,"parent":"h=","inputs":{},"fields":{"VALUE":["y",null]},"shadow":true,"topLevel":false},"h;":{"opcode":"motion_gotoxy","next":null,"parent":"xl","inputs":{"X":[3,"xm",[4,"161"]],"Y":[3,"xn",[4,"-145"]]},"fields":{},"shadow":false,"topLevel":false},"xm":{"opcode":"operator_subtract","next":null,"parent":"h;","inputs":{"NUM1":[3,"xo",[4,""]],"NUM2":[1,[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},"xo":{"opcode":"operator_multiply","next":null,"parent":"xm","inputs":{"NUM1":[3,"xp",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"xp":{"opcode":"operator_add","next":null,"parent":"xo","inputs":{"NUM1":[3,"VX",[4,""]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"VX":{"opcode":"argument_reporter_string_number","next":null,"parent":"xp","inputs":{},"fields":{"VALUE":["x",null]},"shadow":false,"topLevel":false},"xn":{"opcode":"operator_subtract","next":null,"parent":"h;","inputs":{"NUM1":[1,[4,"144"]],"NUM2":[3,"xq",[4,"160"]]},"fields":{},"shadow":false,"topLevel":false},"xq":{"opcode":"operator_multiply","next":null,"parent":"xn","inputs":{"NUM1":[3,"xr",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"xr":{"opcode":"operator_add","next":null,"parent":"xq","inputs":{"NUM1":[3,"VY",[4,""]],"NUM2":[1,[4,"0.5"]]},"fields":{},"shadow":false,"topLevel":false},"VY":{"opcode":"argument_reporter_string_number","next":null,"parent":"xr","inputs":{},"fields":{"VALUE":["y",null]},"shadow":false,"topLevel":false},"W":{"opcode":"control_if_else","next":null,"parent":"X","inputs":{"CONDITION":[2,"lS"],"SUBSTACK":[2,"lT"],"SUBSTACK2":[2,"Y"]},"fields":{},"shadow":false,"topLevel":false},"lS":{"opcode":"operator_equals","next":null,"parent":"W","inputs":{"OPERAND1":[3,"ne",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"ne":{"opcode":"data_itemoflist","next":null,"parent":"lS","inputs":{"INDEX":[3,"OO",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"OO":{"opcode":"operator_add","next":null,"parent":"ne","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"lT":{"opcode":"procedures_call","next":null,"parent":"W","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,"eH",[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"eH":{"opcode":"data_itemoflist","next":null,"parent":"lT","inputs":{"INDEX":[3,"OR",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false,"comment":"OQ"},"OR":{"opcode":"operator_add","next":null,"parent":"eH","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Y":{"opcode":"data_replaceitemoflist","next":null,"parent":"W","inputs":{"INDEX":[3,"nf",[7,"1"]],"ITEM":[3,"ng",[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false,"comment":"OS"},"nf":{"opcode":"operator_add","next":null,"parent":"Y","inputs":{"NUM1":[3,"nh",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"nh":{"opcode":"data_itemoflist","next":null,"parent":"nf","inputs":{"INDEX":[3,"OT",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"OT":{"opcode":"operator_add","next":null,"parent":"nh","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"3"]]},"fields":{},"shadow":false,"topLevel":false},"ng":{"opcode":"data_itemoflist","next":null,"parent":"Y","inputs":{"INDEX":[3,"OU",[7,"1"]]},"fields":{"LIST":["code parameters","Q3|yW{aU7@dz|_`wAjQ8"]},"shadow":false,"topLevel":false},"OU":{"opcode":"operator_add","next":null,"parent":"ng","inputs":{"NUM1":[3,[12,"i",")]#LvJ=|APrar9)?rYj}"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"}":{"opcode":"control_if_else","next":null,"parent":"d{","inputs":{"CONDITION":[2,"NW"],"SUBSTACK":[2,"NX"],"SUBSTACK2":[2,"lU"]},"fields":{},"shadow":false,"topLevel":false},"NW":{"opcode":"operator_equals","next":null,"parent":"}","inputs":{"OPERAND1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"NX":{"opcode":"procedures_call","next":null,"parent":"}","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"lU":{"opcode":"data_replaceitemoflist","next":null,"parent":"}","inputs":{"INDEX":[3,"OZ",[7,"1"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"OZ":{"opcode":"operator_add","next":null,"parent":"lU","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"l":{"opcode":"control_if_else","next":"nH","parent":"eJ","inputs":{"CONDITION":[2,"nI"],"SUBSTACK":[2,"O|"],"SUBSTACK2":[2,"nJ"]},"fields":{},"shadow":false,"topLevel":false},"nI":{"opcode":"operator_equals","next":null,"parent":"l","inputs":{"OPERAND1":[3,"O}",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"O}":{"opcode":"operator_mod","next":null,"parent":"nI","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"O|":{"opcode":"procedures_call","next":null,"parent":"l","inputs":{"[nX0I%M3g(6QrRa$/}.M":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.readbyte %s","argumentids":"[\"[nX0I%M3g(6QrRa$/}.M\"]","warp":"true"}},"nJ":{"opcode":"data_setvariableto","next":null,"parent":"l","inputs":{"VALUE":[3,"nK",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"nK":{"opcode":"data_itemoflist","next":null,"parent":"nJ","inputs":{"INDEX":[3,"nL",[7,"1"]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"nL":{"opcode":"operator_add","next":null,"parent":"nK","inputs":{"NUM1":[3,"O~",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"O~":{"opcode":"operator_mod","next":null,"parent":"nL","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"nH":{"opcode":"data_setvariableto","next":"d","parent":"l","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"d":{"opcode":"control_if_else","next":"U","parent":"nH","inputs":{"CONDITION":[2,"Pa"],"SUBSTACK":[2,"*"],"SUBSTACK2":[2,"j"]},"fields":{},"shadow":false,"topLevel":false},"Pa":{"opcode":"operator_lt","next":null,"parent":"d","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"128"]]},"fields":{},"shadow":false,"topLevel":false},"*":{"opcode":"control_if_else","next":null,"parent":"d","inputs":{"CONDITION":[2,"NR"],"SUBSTACK":[2,"b"],"SUBSTACK2":[2,"("]},"fields":{},"shadow":false,"topLevel":false},"NR":{"opcode":"operator_lt","next":null,"parent":"*","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"64"]]},"fields":{},"shadow":false,"topLevel":false},"b":{"opcode":"control_if_else","next":"eK","parent":"*","inputs":{"CONDITION":[2,"Pb"],"SUBSTACK":[2,"!"],"SUBSTACK2":[2,"#"]},"fields":{},"shadow":false,"topLevel":false},"Pb":{"opcode":"operator_lt","next":null,"parent":"b","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"!":{"opcode":"control_if_else","next":null,"parent":"b","inputs":{"CONDITION":[2,"K,"],"SUBSTACK":[2,"h"],"SUBSTACK2":[2,"K"]},"fields":{},"shadow":false,"topLevel":false},"K,":{"opcode":"operator_lt","next":null,"parent":"!","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"16"]]},"fields":{},"shadow":false,"topLevel":false},"h":{"opcode":"control_if_else","next":null,"parent":"!","inputs":{"CONDITION":[2,"K."],"SUBSTACK":[2,"kl"],"SUBSTACK2":[2,"km"]},"fields":{},"shadow":false,"topLevel":false,"comment":"K-"},"K.":{"opcode":"operator_lt","next":null,"parent":"h","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"kl":{"opcode":"data_setvariableto","next":"Fi","parent":"h","inputs":{"VALUE":[3,"Fj",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Fj":{"opcode":"operator_mathop","next":null,"parent":"kl","inputs":{"NUM":[3,"K/",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"K/":{"opcode":"operator_divide","next":null,"parent":"Fj","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Fi":{"opcode":"data_setvariableto","next":null,"parent":"kl","inputs":{"VALUE":[3,"Fk",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Fk":{"opcode":"operator_mod","next":null,"parent":"Fi","inputs":{"NUM1":[3,"Fl",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Fl":{"opcode":"operator_add","next":null,"parent":"Fk","inputs":{"NUM1":[3,"K:",[4,""]],"NUM2":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"K:":{"opcode":"operator_multiply","next":null,"parent":"Fl","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"km":{"opcode":"data_setvariableto","next":"Fm","parent":"h","inputs":{"VALUE":[3,"K;",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"K;":{"opcode":"operator_mod","next":null,"parent":"km","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fm":{"opcode":"data_setvariableto","next":null,"parent":"km","inputs":{"VALUE":[3,"kn",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"kn":{"opcode":"operator_add","next":null,"parent":"Fm","inputs":{"NUM1":[3,"Fn",[4,""]],"NUM2":[3,"K=",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fn":{"opcode":"operator_mathop","next":null,"parent":"kn","inputs":{"NUM":[3,"K?",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"K?":{"opcode":"operator_divide","next":null,"parent":"Fn","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"K=":{"opcode":"operator_multiply","next":null,"parent":"kn","inputs":{"NUM1":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"K":{"opcode":"control_if_else","next":null,"parent":"!","inputs":{"CONDITION":[2,"K["],"SUBSTACK":[2,"ko"],"SUBSTACK2":[2,"kp"]},"fields":{},"shadow":false,"topLevel":false,"comment":"K@"},"K[":{"opcode":"operator_lt","next":null,"parent":"K","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"24"]]},"fields":{},"shadow":false,"topLevel":false},"ko":{"opcode":"data_setvariableto","next":"Fo","parent":"K","inputs":{"VALUE":[3,"Fp",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Fp":{"opcode":"operator_mathop","next":null,"parent":"ko","inputs":{"NUM":[3,"K]",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"K]":{"opcode":"operator_divide","next":null,"parent":"Fp","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"Fo":{"opcode":"data_setvariableto","next":null,"parent":"ko","inputs":{"VALUE":[3,"Fq",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"Fq":{"opcode":"operator_mod","next":null,"parent":"Fo","inputs":{"NUM1":[3,"kq",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"kq":{"opcode":"operator_add","next":null,"parent":"Fq","inputs":{"NUM1":[3,"Fr",[4,""]],"NUM2":[3,"K^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fr":{"opcode":"operator_mathop","next":null,"parent":"kq","inputs":{"NUM":[3,"K_",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"K_":{"opcode":"operator_multiply","next":null,"parent":"Fr","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"K^":{"opcode":"data_itemoflist","next":null,"parent":"kq","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"kp":{"opcode":"data_setvariableto","next":"Fs","parent":"K","inputs":{"VALUE":[3,"K`",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"K`":{"opcode":"operator_mod","next":null,"parent":"kp","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fs":{"opcode":"data_setvariableto","next":null,"parent":"kp","inputs":{"VALUE":[3,"kr",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"kr":{"opcode":"operator_add","next":null,"parent":"Fs","inputs":{"NUM1":[3,"Fu",[4,""]],"NUM2":[3,"Fv",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Fu":{"opcode":"operator_mathop","next":null,"parent":"kr","inputs":{"NUM":[3,"K{",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"K{":{"opcode":"operator_divide","next":null,"parent":"Fu","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Fv":{"opcode":"operator_multiply","next":null,"parent":"kr","inputs":{"NUM1":[3,"K|",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"K|":{"opcode":"data_itemoflist","next":null,"parent":"Fv","inputs":{"INDEX":[1,[7,"4"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"#":{"opcode":"control_if_else","next":null,"parent":"b","inputs":{"CONDITION":[2,"Pc"],"SUBSTACK":[2,"m"],"SUBSTACK2":[2,"n"]},"fields":{},"shadow":false,"topLevel":false},"Pc":{"opcode":"operator_lt","next":null,"parent":"#","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"48"]]},"fields":{},"shadow":false,"topLevel":false},"m":{"opcode":"control_if_else","next":null,"parent":"#","inputs":{"CONDITION":[2,"Pe"],"SUBSTACK":[2,"eL"],"SUBSTACK2":[2,"eM"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Pd"},"Pe":{"opcode":"operator_lt","next":null,"parent":"m","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"40"]]},"fields":{},"shadow":false,"topLevel":false},"eL":{"opcode":"data_setvariableto","next":"nM","parent":"m","inputs":{"VALUE":[3,"nN",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"nN":{"opcode":"operator_mathop","next":null,"parent":"eL","inputs":{"NUM":[3,"Pf",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pf":{"opcode":"operator_divide","next":null,"parent":"nN","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"nM":{"opcode":"data_setvariableto","next":null,"parent":"eL","inputs":{"VALUE":[3,"nO",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"nO":{"opcode":"operator_mod","next":null,"parent":"nM","inputs":{"NUM1":[3,"Pg",[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"Pg":{"opcode":"operator_multiply","next":null,"parent":"nO","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"eM":{"opcode":"data_setvariableto","next":"nP","parent":"m","inputs":{"VALUE":[3,"Ph",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Ph":{"opcode":"operator_mod","next":null,"parent":"eM","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"nP":{"opcode":"data_setvariableto","next":null,"parent":"eM","inputs":{"VALUE":[3,"eN",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"eN":{"opcode":"operator_add","next":null,"parent":"nP","inputs":{"NUM1":[3,"nQ",[4,""]],"NUM2":[3,"nR",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"nQ":{"opcode":"operator_multiply","next":null,"parent":"eN","inputs":{"NUM1":[3,"nS",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"nS":{"opcode":"operator_mathop","next":null,"parent":"nQ","inputs":{"NUM":[3,"Pi",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pi":{"opcode":"operator_divide","next":null,"parent":"nS","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"nR":{"opcode":"operator_mathop","next":null,"parent":"eN","inputs":{"NUM":[3,"Pj",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pj":{"opcode":"operator_divide","next":null,"parent":"nR","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"n":{"opcode":"control_if_else","next":null,"parent":"#","inputs":{"CONDITION":[2,"Pl"],"SUBSTACK":[2,"nT"],"SUBSTACK2":[2,"eO"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Pk"},"Pl":{"opcode":"operator_lt","next":null,"parent":"n","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"56"]]},"fields":{},"shadow":false,"topLevel":false},"nT":{"opcode":"data_setvariableto","next":null,"parent":"n","inputs":{"VALUE":[3,"eP",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"eP":{"opcode":"operator_add","next":null,"parent":"nT","inputs":{"NUM1":[3,"nU",[4,""]],"NUM2":[3,"nV",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"nU":{"opcode":"operator_mathop","next":null,"parent":"eP","inputs":{"NUM":[3,"Pm",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pm":{"opcode":"operator_divide","next":null,"parent":"nU","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"nV":{"opcode":"operator_multiply","next":null,"parent":"eP","inputs":{"NUM1":[3,"Pn",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Pn":{"opcode":"operator_mod","next":null,"parent":"nV","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"eO":{"opcode":"data_setvariableto","next":"nW","parent":"n","inputs":{"VALUE":[3,"Po",[10,"0"]]},"fields":{"VARIABLE":["z2","yE@/T6EV5@P.iHr9Me#)"]},"shadow":false,"topLevel":false},"Po":{"opcode":"operator_mod","next":null,"parent":"eO","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"nW":{"opcode":"data_setvariableto","next":null,"parent":"eO","inputs":{"VALUE":[3,"nX",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"nX":{"opcode":"operator_mathop","next":null,"parent":"nW","inputs":{"NUM":[3,"Pp",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Pp":{"opcode":"operator_divide","next":null,"parent":"nX","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"eK":{"opcode":"data_replaceitemoflist","next":"nY","parent":"b","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"nZ",[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"nZ":{"opcode":"operator_add","next":null,"parent":"eK","inputs":{"NUM1":[1,[4,""]],"NUM2":[3,"Pq",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Pq":{"opcode":"operator_equals","next":null,"parent":"nZ","inputs":{"OPERAND1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"nY":{"opcode":"data_replaceitemoflist","next":"n!","parent":"eK","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"n!":{"opcode":"data_replaceitemoflist","next":"Pr","parent":"nY","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Pr":{"opcode":"data_replaceitemoflist","next":null,"parent":"n!","inputs":{"INDEX":[1,[7,"4"]],"ITEM":[3,[12,"z2","yE@/T6EV5@P.iHr9Me#)"],[10,""]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"(":{"opcode":"data_replaceitemoflist","next":"lD","parent":"*","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"lE",[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false,"comment":"pr"},"lE":{"opcode":"operator_subtract","next":null,"parent":"(","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"n#",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"n#":{"opcode":"operator_mod","next":null,"parent":"lE","inputs":{"NUM1":[3,"n%",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"n%":{"opcode":"operator_mathop","next":null,"parent":"n#","inputs":{"NUM":[3,"n(",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"n(":{"opcode":"operator_divide","next":null,"parent":"n%","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[3,"n)",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"n)":{"opcode":"data_itemoflist","next":null,"parent":"n(","inputs":{"INDEX":[3,"n*",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"n*":{"opcode":"operator_add","next":null,"parent":"n)","inputs":{"NUM1":[3,"n+",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"n+":{"opcode":"operator_mathop","next":null,"parent":"n*","inputs":{"NUM":[3,"n,",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"n,":{"opcode":"operator_mod","next":null,"parent":"n+","inputs":{"NUM1":[3,"Ps",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Ps":{"opcode":"operator_divide","next":null,"parent":"n,","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,"80"]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"lD":{"opcode":"data_replaceitemoflist","next":"n-","parent":"(","inputs":{"INDEX":[1,[7,"2"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"n-":{"opcode":"data_replaceitemoflist","next":"Pt","parent":"lD","inputs":{"INDEX":[1,[7,"3"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["cpu.regF","lR{+/-9q#,}JTn3tA!eu"]},"shadow":false,"topLevel":false},"Pt":{"opcode":"control_stop","next":null,"parent":"n-","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"j":{"opcode":"control_if_else","next":null,"parent":"d","inputs":{"CONDITION":[2,"N!"],"SUBSTACK":[2,"l#"],"SUBSTACK2":[2,"l%"]},"fields":{},"shadow":false,"topLevel":false,"comment":"NZ"},"N!":{"opcode":"operator_lt","next":null,"parent":"j","inputs":{"OPERAND1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[10,""]],"OPERAND2":[1,[10,"192"]]},"fields":{},"shadow":false,"topLevel":false},"l#":{"opcode":"data_setvariableto","next":null,"parent":"j","inputs":{"VALUE":[3,"n.",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"n.":{"opcode":"data_itemoflist","next":null,"parent":"l#","inputs":{"INDEX":[3,"n/",[7,"1"]]},"fields":{"LIST":["cpu.AND",")Py!(:T5^4W{p2Clro4{"]},"shadow":false,"topLevel":false},"n/":{"opcode":"operator_add","next":null,"parent":"n.","inputs":{"NUM1":[3,"eQ",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eQ":{"opcode":"operator_add","next":null,"parent":"n/","inputs":{"NUM1":[3,"Pu",[4,""]],"NUM2":[3,"n:",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Pu":{"opcode":"operator_multiply","next":null,"parent":"eQ","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"n:":{"opcode":"operator_subtract","next":null,"parent":"eQ","inputs":{"NUM1":[1,[4,"255"]],"NUM2":[3,"n;",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"n;":{"opcode":"data_itemoflist","next":null,"parent":"n:","inputs":{"INDEX":[3,"n=",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"n=":{"opcode":"operator_add","next":null,"parent":"n;","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"n?",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"n?":{"opcode":"operator_mathop","next":null,"parent":"n=","inputs":{"NUM":[3,"n@",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"n@":{"opcode":"operator_mod","next":null,"parent":"n?","inputs":{"NUM1":[3,"Pv",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Pv":{"opcode":"operator_divide","next":null,"parent":"n@","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"l%":{"opcode":"data_setvariableto","next":null,"parent":"j","inputs":{"VALUE":[3,"n[",[10,"0"]]},"fields":{"VARIABLE":["mmu.return","AXL[T-I^honovPzU#(m="]},"shadow":false,"topLevel":false},"n[":{"opcode":"data_itemoflist","next":null,"parent":"l%","inputs":{"INDEX":[3,"n]",[7,"1"]]},"fields":{"LIST":["cpu.OR","f1px_T*CLMwDBHN(:N-~"]},"shadow":false,"topLevel":false},"n]":{"opcode":"operator_add","next":null,"parent":"n[","inputs":{"NUM1":[3,"eR",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"eR":{"opcode":"operator_add","next":null,"parent":"n]","inputs":{"NUM1":[3,"Pw",[4,""]],"NUM2":[3,"n^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Pw":{"opcode":"operator_multiply","next":null,"parent":"eR","inputs":{"NUM1":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"n^":{"opcode":"data_itemoflist","next":null,"parent":"eR","inputs":{"INDEX":[3,"n_",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"n_":{"opcode":"operator_add","next":null,"parent":"n^","inputs":{"NUM1":[1,[4,"1"]],"NUM2":[3,"n`",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"n`":{"opcode":"operator_mathop","next":null,"parent":"n_","inputs":{"NUM":[3,"n{",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"n{":{"opcode":"operator_mod","next":null,"parent":"n`","inputs":{"NUM1":[3,"Px",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Px":{"opcode":"operator_divide","next":null,"parent":"n{","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"U":{"opcode":"control_if_else","next":null,"parent":"d","inputs":{"CONDITION":[2,"lO"],"SUBSTACK":[2,"pu"],"SUBSTACK2":[2,"cU"]},"fields":{},"shadow":false,"topLevel":false},"lO":{"opcode":"operator_equals","next":null,"parent":"U","inputs":{"OPERAND1":[3,"Py",[10,""]],"OPERAND2":[1,[10,"6"]]},"fields":{},"shadow":false,"topLevel":false},"Py":{"opcode":"operator_mod","next":null,"parent":"lO","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"pu":{"opcode":"procedures_call","next":null,"parent":"U","inputs":{"zd:.zaM%!%ZL#Y;v%b%T":[3,[12,"z.HLreg",";i-}X$@Y|?i8l[5|j2Ye"],[10,""]],"C$TL9;+E/NLYhdI%ptis":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"proccode":"mmu.writebyte %s %s","argumentids":"[\"zd:.zaM%!%ZL#Y;v%b%T\",\"C$TL9;+E/NLYhdI%ptis\"]","warp":"true"}},"cU":{"opcode":"data_replaceitemoflist","next":null,"parent":"U","inputs":{"INDEX":[3,"n|",[7,"1"]],"ITEM":[3,[12,"mmu.return","AXL[T-I^honovPzU#(m="],[10,""]]},"fields":{"LIST":["cpu.regs","$rN++7k{S9((/fU5/ec:"]},"shadow":false,"topLevel":false},"n|":{"opcode":"operator_add","next":null,"parent":"cU","inputs":{"NUM1":[3,"Pz",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Pz":{"opcode":"operator_mod","next":null,"parent":"n|","inputs":{"NUM1":[3,[12,"z1","?!3pJUlmn3jk$}udq^[s"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"p":{"opcode":"control_if_else","next":"tQ","parent":"g/","inputs":{"CONDITION":[2,"g:"],"SUBSTACK":[2,"g;"],"SUBSTACK2":[2,"g="]},"fields":{},"shadow":false,"topLevel":false},"g:":{"opcode":"operator_or","next":null,"parent":"p","inputs":{"OPERAND1":[2,"g?"],"OPERAND2":[2,"tR"]},"fields":{},"shadow":false,"topLevel":false},"g?":{"opcode":"operator_or","next":null,"parent":"g:","inputs":{"OPERAND1":[2,"tS"],"OPERAND2":[2,"tT"]},"fields":{},"shadow":false,"topLevel":false},"tS":{"opcode":"operator_lt","next":null,"parent":"g?","inputs":{"OPERAND1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[10,""]],"OPERAND2":[3,"tU",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"tU":{"opcode":"operator_subtract","next":null,"parent":"tS","inputs":{"NUM1":[3,"Tu",[4,""]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"Tu":{"opcode":"data_itemoflist","next":null,"parent":"tU","inputs":{"INDEX":[1,[7,"76"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tT":{"opcode":"operator_lt","next":null,"parent":"g?","inputs":{"OPERAND1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[10,""]],"OPERAND2":[3,"Tv",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"Tv":{"opcode":"data_itemoflist","next":null,"parent":"tT","inputs":{"INDEX":[1,[7,"75"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tR":{"opcode":"operator_lt","next":null,"parent":"g:","inputs":{"OPERAND1":[3,"tV",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"tV":{"opcode":"operator_mod","next":null,"parent":"tR","inputs":{"NUM1":[3,"Tw",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"Tw":{"opcode":"data_itemoflist","next":null,"parent":"tV","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"g;":{"opcode":"data_setvariableto","next":"g@","parent":"p","inputs":{"VALUE":[3,"tW",[10,"0"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"tW":{"opcode":"operator_add","next":null,"parent":"g;","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[3,"Tx",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Tx":{"opcode":"data_itemoflist","next":null,"parent":"tW","inputs":{"INDEX":[1,[7,"68"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"g@":{"opcode":"data_setvariableto","next":"tX","parent":"g;","inputs":{"VALUE":[3,"tY",[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"tY":{"opcode":"operator_add","next":null,"parent":"g@","inputs":{"NUM1":[3,[12,"ppu.LineY","w.!q`NmG7MvoSZHTUh{6"],[4,""]],"NUM2":[3,"Ty",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ty":{"opcode":"data_itemoflist","next":null,"parent":"tY","inputs":{"INDEX":[1,[7,"67"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"tX":{"opcode":"data_setvariableto","next":null,"parent":"g@","inputs":{"VALUE":[3,"tZ",[10,"0"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"tZ":{"opcode":"operator_add","next":null,"parent":"tX","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"t!",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t!":{"opcode":"operator_gt","next":null,"parent":"tZ","inputs":{"OPERAND1":[3,"t#",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"t#":{"opcode":"operator_mod","next":null,"parent":"t!","inputs":{"NUM1":[3,"Tz",[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"Tz":{"opcode":"data_itemoflist","next":null,"parent":"t#","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"g=":{"opcode":"data_setvariableto","next":"t%","parent":"p","inputs":{"VALUE":[3,"t(",[10,"0"]]},"fields":{"VARIABLE":["y1","#6]}.c;IvQB#FlP?N7`b"]},"shadow":false,"topLevel":false},"t(":{"opcode":"operator_subtract","next":null,"parent":"g=","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[3,"t)",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t)":{"opcode":"operator_subtract","next":null,"parent":"t(","inputs":{"NUM1":[3,"TA",[4,""]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"TA":{"opcode":"data_itemoflist","next":null,"parent":"t)","inputs":{"INDEX":[1,[7,"76"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"t%":{"opcode":"data_setvariableto","next":"g[","parent":"g=","inputs":{"VALUE":[3,[12,"ppu.windowcounter","v1RYSc29D5;g9w|WOVhZ"],[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"g[":{"opcode":"data_setvariableto","next":"TB","parent":"t%","inputs":{"VALUE":[3,"t*",[10,"0"]]},"fields":{"VARIABLE":["z7","x#m5WC6xePajnGn/?E=p"]},"shadow":false,"topLevel":false},"t*":{"opcode":"operator_add","next":null,"parent":"g[","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"t+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t+":{"opcode":"operator_gt","next":null,"parent":"t*","inputs":{"OPERAND1":[3,"t,",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"t,":{"opcode":"operator_mod","next":null,"parent":"t+","inputs":{"NUM1":[3,"TC",[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"TC":{"opcode":"data_itemoflist","next":null,"parent":"t,","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"TB":{"opcode":"data_setvariableto","next":null,"parent":"g[","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.windowincr","?@`6%*n_:ai9~7.}XHbt"]},"shadow":false,"topLevel":false},"tQ":{"opcode":"data_setvariableto","next":"a","parent":"p","inputs":{"VALUE":[3,[12,"ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"],[10,"0"]]},"fields":{"VARIABLE":["ppu.temp","X$WbMC_%FtEhkaO0w]r1"]},"shadow":false,"topLevel":false},"a":{"opcode":"control_if_else","next":"aJ","parent":"tQ","inputs":{"CONDITION":[2,"t-"],"SUBSTACK":[2,"t."],"SUBSTACK2":[2,"g]"]},"fields":{},"shadow":false,"topLevel":false,"comment":"TD"},"t-":{"opcode":"operator_gt","next":null,"parent":"a","inputs":{"OPERAND1":[3,"t/",[10,""]],"OPERAND2":[3,[12,"y3","?8w-@IfeziV2F0~ghlM2"],[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"t/":{"opcode":"operator_subtract","next":null,"parent":"t-","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"TE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TE":{"opcode":"operator_mod","next":null,"parent":"t/","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"t.":{"opcode":"data_setvariableto","next":"TF","parent":"a","inputs":{"VALUE":[3,[12,"y3","?8w-@IfeziV2F0~ghlM2"],[10,"0"]]},"fields":{"VARIABLE":["remainingPixels","j$5K!p8AZ+(P0pxJSbz."]},"shadow":false,"topLevel":false},"TF":{"opcode":"data_setvariableto","next":null,"parent":"t.","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"]},"shadow":false,"topLevel":false},"g]":{"opcode":"data_setvariableto","next":"TG","parent":"a","inputs":{"VALUE":[3,"t:",[10,"0"]]},"fields":{"VARIABLE":["remainingPixels","j$5K!p8AZ+(P0pxJSbz."]},"shadow":false,"topLevel":false},"t:":{"opcode":"operator_subtract","next":null,"parent":"g]","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"TH",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"TH":{"opcode":"operator_mod","next":null,"parent":"t:","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"TG":{"opcode":"data_setvariableto","next":null,"parent":"g]","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.newByteFlag","|ciji-GBdT3e9V}@4R_%"]},"shadow":false,"topLevel":false},"aJ":{"opcode":"control_if","next":"y","parent":"a","inputs":{"CONDITION":[2,"yP"],"SUBSTACK":[2,"g^"]},"fields":{},"shadow":false,"topLevel":false},"yP":{"opcode":"operator_not","next":null,"parent":"aJ","inputs":{"OPERAND":[2,"yO"]},"fields":{},"shadow":false,"topLevel":false},"yO":{"opcode":"operator_lt","next":null,"parent":"yP","inputs":{"OPERAND1":[3,"yQ",[10,""]],"OPERAND2":[1,[10,"32"]]},"fields":{},"shadow":false,"topLevel":false},"yQ":{"opcode":"operator_mod","next":null,"parent":"yO","inputs":{"NUM1":[3,"u!",[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"u!":{"opcode":"data_itemoflist","next":null,"parent":"yQ","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"g^":{"opcode":"control_if","next":null,"parent":"aJ","inputs":{"CONDITION":[2,"g_"],"SUBSTACK":[2,"t;"]},"fields":{},"shadow":false,"topLevel":false},"g_":{"opcode":"operator_and","next":null,"parent":"g^","inputs":{"OPERAND1":[2,"if"],"OPERAND2":[2,"yJ"]},"fields":{},"shadow":false,"topLevel":false},"if":{"opcode":"operator_gt","next":null,"parent":"g_","inputs":{"OPERAND1":[3,"uX",[10,""]],"OPERAND2":[3,"yI",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"uX":{"opcode":"operator_add","next":null,"parent":"if","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[3,[12,"remainingPixels","j$5K!p8AZ+(P0pxJSbz."],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"yI":{"opcode":"operator_subtract","next":null,"parent":"if","inputs":{"NUM1":[3,"uY",[4,""]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"uY":{"opcode":"data_itemoflist","next":null,"parent":"yI","inputs":{"INDEX":[1,[7,"76"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"yJ":{"opcode":"operator_not","next":null,"parent":"g_","inputs":{"OPERAND":[2,"yM"]},"fields":{},"shadow":false,"topLevel":false},"yM":{"opcode":"operator_gt","next":null,"parent":"yJ","inputs":{"OPERAND1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[10,""]],"OPERAND2":[3,"yN",[10,"50"]]},"fields":{},"shadow":false,"topLevel":false},"yN":{"opcode":"operator_subtract","next":null,"parent":"yM","inputs":{"NUM1":[3,"uZ",[4,""]],"NUM2":[1,[4,"7"]]},"fields":{},"shadow":false,"topLevel":false},"uZ":{"opcode":"data_itemoflist","next":null,"parent":"yN","inputs":{"INDEX":[1,[7,"76"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"t;":{"opcode":"data_setvariableto","next":"TI","parent":"g^","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["remainingPixels","j$5K!p8AZ+(P0pxJSbz."]},"shadow":false,"topLevel":false},"TI":{"opcode":"data_setvariableto","next":null,"parent":"t;","inputs":{"VALUE":[1,[10,"1"]]},"fields":{"VARIABLE":["ppu.temp","X$WbMC_%FtEhkaO0w]r1"]},"shadow":false,"topLevel":false},"y":{"opcode":"control_if","next":"iM","parent":"aJ","inputs":{"CONDITION":[2,"GK"],"SUBSTACK":[2,"g{"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Gx"},"GK":{"opcode":"operator_equals","next":null,"parent":"y","inputs":{"OPERAND1":[3,[12,"ppu.temp","X$WbMC_%FtEhkaO0w]r1"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"g{":{"opcode":"data_setvariableto","next":"g`","parent":"y","inputs":{"VALUE":[3,"g|",[10,"0"]]},"fields":{"VARIABLE":["z15","XYGdd#/AN[r9Q-Z_(t6m"]},"shadow":false,"topLevel":false},"g|":{"opcode":"operator_add","next":null,"parent":"g{","inputs":{"NUM1":[3,"t?",[4,""]],"NUM2":[3,"TK",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"t?":{"opcode":"operator_add","next":null,"parent":"g|","inputs":{"NUM1":[3,"g}",[4,""]],"NUM2":[1,[4,"6144"]]},"fields":{},"shadow":false,"topLevel":false},"g}":{"opcode":"operator_add","next":null,"parent":"t?","inputs":{"NUM1":[3,"t[",[4,""]],"NUM2":[3,"t_",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"t[":{"opcode":"operator_multiply","next":null,"parent":"g}","inputs":{"NUM1":[3,"t`",[4,""]],"NUM2":[1,[4,"32"]]},"fields":{},"shadow":false,"topLevel":false},"t`":{"opcode":"operator_mathop","next":null,"parent":"t[","inputs":{"NUM":[3,"t}",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"t}":{"opcode":"operator_divide","next":null,"parent":"t`","inputs":{"NUM1":[3,"TL",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"TL":{"opcode":"operator_mod","next":null,"parent":"t}","inputs":{"NUM1":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"t_":{"opcode":"operator_mathop","next":null,"parent":"g}","inputs":{"NUM":[3,"ub",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"ub":{"opcode":"operator_divide","next":null,"parent":"t_","inputs":{"NUM1":[3,"TM",[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"TM":{"opcode":"operator_mod","next":null,"parent":"ub","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"256"]]},"fields":{},"shadow":false,"topLevel":false},"TK":{"opcode":"operator_multiply","next":null,"parent":"g|","inputs":{"NUM1":[3,[12,"z7","x#m5WC6xePajnGn/?E=p"],[4,""]],"NUM2":[1,[4,"1024"]]},"fields":{},"shadow":false,"topLevel":false},"g`":{"opcode":"data_setvariableto","next":"q","parent":"g{","inputs":{"VALUE":[3,"t=",[10,"0"]]},"fields":{"VARIABLE":["z14","T?ODoMa,{%ds6u(^ReiM"]},"shadow":false,"topLevel":false},"t=":{"opcode":"data_itemoflist","next":null,"parent":"g`","inputs":{"INDEX":[3,"TJ",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"TJ":{"opcode":"operator_add","next":null,"parent":"t=","inputs":{"NUM1":[3,[12,"z15","XYGdd#/AN[r9Q-Z_(t6m"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"q":{"opcode":"control_if_else","next":"iI","parent":"g`","inputs":{"CONDITION":[2,"yK"],"SUBSTACK":[2,"ct"],"SUBSTACK2":[2,"z#"]},"fields":{},"shadow":false,"topLevel":false},"yK":{"opcode":"operator_equals","next":null,"parent":"q","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"ct":{"opcode":"data_setvariableto","next":"b_","parent":"q","inputs":{"VALUE":[3,"z%",[10,"0"]]},"fields":{"VARIABLE":["z16","c-v[Hd1I/R,+ox=OFTdf"]},"shadow":false,"topLevel":false,"comment":"yL"},"z%":{"opcode":"data_itemoflist","next":null,"parent":"ct","inputs":{"INDEX":[3,"z(",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"z(":{"opcode":"operator_add","next":null,"parent":"z%","inputs":{"NUM1":[3,[12,"z15","XYGdd#/AN[r9Q-Z_(t6m"],[4,""]],"NUM2":[3,"zx",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"zx":{"opcode":"operator_add","next":null,"parent":"z(","inputs":{"NUM1":[1,[4,"8192"]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"b_":{"opcode":"control_if","next":"AU","parent":"ct","inputs":{"CONDITION":[2,"AW"],"SUBSTACK":[2,"AV"]},"fields":{},"shadow":false,"topLevel":false,"comment":"AB"},"AW":{"opcode":"operator_gt","next":null,"parent":"b_","inputs":{"OPERAND1":[3,"AC",[10,""]],"OPERAND2":[1,[10,"63"]]},"fields":{},"shadow":false,"topLevel":false},"AC":{"opcode":"operator_mod","next":null,"parent":"AW","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"128"]]},"fields":{},"shadow":false,"topLevel":false},"AV":{"opcode":"data_setvariableto","next":null,"parent":"b_","inputs":{"VALUE":[3,"AD",[10,"0"]]},"fields":{"VARIABLE":["y2","=|ycf[YN;_De1%F,uj@^"]},"shadow":false,"topLevel":false},"AD":{"opcode":"operator_subtract","next":null,"parent":"AV","inputs":{"NUM1":[1,[4,"7"]],"NUM2":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"AU":{"opcode":"data_setvariableto","next":null,"parent":"b_","inputs":{"VALUE":[3,"Bb",[10,"0"]]},"fields":{"VARIABLE":["z6","%Efp?.T46DSgk%m_OQS#"]},"shadow":false,"topLevel":false},"Bb":{"opcode":"operator_add","next":null,"parent":"AU","inputs":{"NUM1":[1,[4,"0"]],"NUM2":[3,"i+",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"i+":{"opcode":"operator_and","next":null,"parent":"Bb","inputs":{"OPERAND1":[2,"A?"],"OPERAND2":[2,"i,"]},"fields":{},"shadow":false,"topLevel":false},"A?":{"opcode":"operator_equals","next":null,"parent":"i+","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i,":{"opcode":"operator_and","next":null,"parent":"i+","inputs":{"OPERAND1":[2,"A@"],"OPERAND2":[2,"Be"]},"fields":{},"shadow":false,"topLevel":false},"A@":{"opcode":"operator_gt","next":null,"parent":"i,","inputs":{"OPERAND1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Be":{"opcode":"operator_equals","next":null,"parent":"i,","inputs":{"OPERAND1":[3,"Bf",[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Bf":{"opcode":"operator_mod","next":null,"parent":"Be","inputs":{"NUM1":[3,"Bc",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"Bc":{"opcode":"data_itemoflist","next":null,"parent":"Bf","inputs":{"INDEX":[1,[7,"65"]]},"fields":{"LIST":[".I/O","[8yIR;9h6y(W8/O[lM%x"]},"shadow":false,"topLevel":false},"z#":{"opcode":"data_setvariableto","next":"zz","parent":"q","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z16","c-v[Hd1I/R,+ox=OFTdf"]},"shadow":false,"topLevel":false},"zz":{"opcode":"data_setvariableto","next":null,"parent":"z#","inputs":{"VALUE":[1,[10,"0"]]},"fields":{"VARIABLE":["z6","%Efp?.T46DSgk%m_OQS#"]},"shadow":false,"topLevel":false},"iI":{"opcode":"data_setvariableto","next":"bO","parent":"q","inputs":{"VALUE":[3,"iV",[10,"0"]]},"fields":{"VARIABLE":["z14","T?ODoMa,{%ds6u(^ReiM"]},"shadow":false,"topLevel":false},"iV":{"opcode":"operator_add","next":null,"parent":"iI","inputs":{"NUM1":[3,"Ai",[4,""]],"NUM2":[3,"Aj",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ai":{"opcode":"operator_multiply","next":null,"parent":"iV","inputs":{"NUM1":[3,"iW",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"iW":{"opcode":"operator_add","next":null,"parent":"Ai","inputs":{"NUM1":[3,"Ar",[4,""]],"NUM2":[3,"As",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ar":{"opcode":"operator_multiply","next":null,"parent":"iW","inputs":{"NUM1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"As":{"opcode":"operator_mod","next":null,"parent":"iW","inputs":{"NUM1":[3,[12,"y2","=|ycf[YN;_De1%F,uj@^"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"Aj":{"opcode":"operator_multiply","next":null,"parent":"iV","inputs":{"NUM1":[1,[4,"4096"]],"NUM2":[3,"Ak",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ak":{"opcode":"operator_not","next":null,"parent":"Aj","inputs":{"OPERAND":[2,"iX"]},"fields":{},"shadow":false,"topLevel":false},"iX":{"opcode":"operator_or","next":null,"parent":"Ak","inputs":{"OPERAND1":[2,"At"],"OPERAND2":[2,"Au"]},"fields":{},"shadow":false,"topLevel":false},"At":{"opcode":"operator_equals","next":null,"parent":"iX","inputs":{"OPERAND1":[3,[12,"z8","VX49Xu`},hz?8f0E/kd5"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Au":{"opcode":"operator_gt","next":null,"parent":"iX","inputs":{"OPERAND1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"bO":{"opcode":"control_if","next":"A","parent":"iI","inputs":{"CONDITION":[2,"z)"],"SUBSTACK":[2,"zA"]},"fields":{},"shadow":false,"topLevel":false},"z)":{"opcode":"operator_gt","next":null,"parent":"bO","inputs":{"OPERAND1":[3,"zC",[10,""]],"OPERAND2":[1,[10,"7"]]},"fields":{},"shadow":false,"topLevel":false},"zC":{"opcode":"operator_mod","next":null,"parent":"z)","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"zA":{"opcode":"data_changevariableby","next":null,"parent":"bO","inputs":{"VALUE":[1,[4,"8192"]]},"fields":{"VARIABLE":["z14","T?ODoMa,{%ds6u(^ReiM"]},"shadow":false,"topLevel":false},"A":{"opcode":"control_if_else","next":null,"parent":"bO","inputs":{"CONDITION":[2,"Ao"],"SUBSTACK":[2,"iJ"],"SUBSTACK2":[2,"iY"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Av"},"Ao":{"opcode":"operator_gt","next":null,"parent":"A","inputs":{"OPERAND1":[3,"Aw",[10,""]],"OPERAND2":[1,[10,"31"]]},"fields":{},"shadow":false,"topLevel":false},"Aw":{"opcode":"operator_mod","next":null,"parent":"Ao","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"64"]]},"fields":{},"shadow":false,"topLevel":false},"iJ":{"opcode":"data_setvariableto","next":"z*","parent":"A","inputs":{"VALUE":[3,"iK",[10,"0"]]},"fields":{"VARIABLE":["w1","z+0J/(FO9+%4n5W`u3Mr"]},"shadow":false,"topLevel":false},"iK":{"opcode":"operator_divide","next":null,"parent":"iJ","inputs":{"NUM1":[3,"z+",[4,""]],"NUM2":[3,"z,",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"z+":{"opcode":"data_itemoflist","next":null,"parent":"iK","inputs":{"INDEX":[3,"z;",[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"z;":{"opcode":"operator_add","next":null,"parent":"z+","inputs":{"NUM1":[3,"z=",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z=":{"opcode":"data_itemoflist","next":null,"parent":"z;","inputs":{"INDEX":[3,"zF",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"zF":{"opcode":"operator_add","next":null,"parent":"z=","inputs":{"NUM1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z,":{"opcode":"data_itemoflist","next":null,"parent":"iK","inputs":{"INDEX":[3,"z-",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"z-":{"opcode":"operator_subtract","next":null,"parent":"z,","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"zD",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zD":{"opcode":"operator_mod","next":null,"parent":"z-","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"z*":{"opcode":"data_setvariableto","next":null,"parent":"iJ","inputs":{"VALUE":[3,"iL",[10,"0"]]},"fields":{"VARIABLE":["w2","M7vgX6A?=Z!~bof2q.Eo"]},"shadow":false,"topLevel":false},"iL":{"opcode":"operator_divide","next":null,"parent":"z*","inputs":{"NUM1":[3,"z.",[4,""]],"NUM2":[3,"z/",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"z.":{"opcode":"data_itemoflist","next":null,"parent":"iL","inputs":{"INDEX":[3,"z?",[7,"1"]]},"fields":{"LIST":["BRT",",SgTxps/cX$9BObO4uik"]},"shadow":false,"topLevel":false},"z?":{"opcode":"operator_add","next":null,"parent":"z.","inputs":{"NUM1":[3,"z@",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z@":{"opcode":"data_itemoflist","next":null,"parent":"z?","inputs":{"INDEX":[3,"zG",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"zG":{"opcode":"operator_add","next":null,"parent":"z@","inputs":{"NUM1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"z/":{"opcode":"data_itemoflist","next":null,"parent":"iL","inputs":{"INDEX":[3,"z:",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"z:":{"opcode":"operator_subtract","next":null,"parent":"z/","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"zE",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"zE":{"opcode":"operator_mod","next":null,"parent":"z:","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"iY":{"opcode":"data_setvariableto","next":"AN","parent":"A","inputs":{"VALUE":[3,"iZ",[10,"0"]]},"fields":{"VARIABLE":["w1","z+0J/(FO9+%4n5W`u3Mr"]},"shadow":false,"topLevel":false},"iZ":{"opcode":"operator_divide","next":null,"parent":"iY","inputs":{"NUM1":[3,"AO",[4,""]],"NUM2":[3,"AP",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"AO":{"opcode":"data_itemoflist","next":null,"parent":"iZ","inputs":{"INDEX":[3,"Ax",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"Ax":{"opcode":"operator_add","next":null,"parent":"AO","inputs":{"NUM1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"AP":{"opcode":"data_itemoflist","next":null,"parent":"iZ","inputs":{"INDEX":[3,"AQ",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"AQ":{"opcode":"operator_subtract","next":null,"parent":"AP","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"Ay",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Ay":{"opcode":"operator_mod","next":null,"parent":"AQ","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"AN":{"opcode":"data_setvariableto","next":null,"parent":"iY","inputs":{"VALUE":[3,"i!",[10,"0"]]},"fields":{"VARIABLE":["w2","M7vgX6A?=Z!~bof2q.Eo"]},"shadow":false,"topLevel":false},"i!":{"opcode":"operator_divide","next":null,"parent":"AN","inputs":{"NUM1":[3,"AR",[4,""]],"NUM2":[3,"AS",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"AR":{"opcode":"data_itemoflist","next":null,"parent":"i!","inputs":{"INDEX":[3,"Az",[7,"1"]]},"fields":{"LIST":[".VRAM","8s.yMYdv-,HD8*Lu!ZVs"]},"shadow":false,"topLevel":false},"Az":{"opcode":"operator_add","next":null,"parent":"AR","inputs":{"NUM1":[3,[12,"z14","T?ODoMa,{%ds6u(^ReiM"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"AS":{"opcode":"data_itemoflist","next":null,"parent":"i!","inputs":{"INDEX":[3,"AT",[7,"1"]]},"fields":{"LIST":["cpu.powersof2","g8`3hG5vhbTqGm2YagSG"]},"shadow":false,"topLevel":false},"AT":{"opcode":"operator_subtract","next":null,"parent":"AS","inputs":{"NUM1":[1,[4,"8"]],"NUM2":[3,"AA",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"AA":{"opcode":"operator_mod","next":null,"parent":"AT","inputs":{"NUM1":[3,[12,"y1","#6]}.c;IvQB#FlP?N7`b"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"iM":{"opcode":"control_while","next":null,"parent":"y","inputs":{"CONDITION":[2,"zH"],"SUBSTACK":[2,"iN"]},"fields":{},"shadow":false,"topLevel":false},"zH":{"opcode":"operator_gt","next":null,"parent":"iM","inputs":{"OPERAND1":[3,[12,"remainingPixels","j$5K!p8AZ+(P0pxJSbz."],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"iN":{"opcode":"data_setvariableto","next":"iO","parent":"iM","inputs":{"VALUE":[3,"iP",[10,"0"]]},"fields":{"VARIABLE":["screenColor","[G+aYRFBsBQ@0)@VlZSs"]},"shadow":false,"topLevel":false},"iP":{"opcode":"operator_add","next":null,"parent":"iN","inputs":{"NUM1":[3,"z[",[4,""]],"NUM2":[3,"z]",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z[":{"opcode":"operator_multiply","next":null,"parent":"iP","inputs":{"NUM1":[3,"z^",[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"z^":{"opcode":"operator_mathop","next":null,"parent":"z[","inputs":{"NUM":[3,"zI",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"zI":{"opcode":"operator_mod","next":null,"parent":"z^","inputs":{"NUM1":[3,[12,"w2","M7vgX6A?=Z!~bof2q.Eo"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"z]":{"opcode":"operator_mathop","next":null,"parent":"iP","inputs":{"NUM":[3,"Ag",[4,""]]},"fields":{"OPERATOR":["floor",null]},"shadow":false,"topLevel":false},"Ag":{"opcode":"operator_mod","next":null,"parent":"z]","inputs":{"NUM1":[3,[12,"w1","z+0J/(FO9+%4n5W`u3Mr"],[4,""]],"NUM2":[1,[4,"2"]]},"fields":{},"shadow":false,"topLevel":false},"iO":{"opcode":"data_setvariableto","next":"B","parent":"iN","inputs":{"VALUE":[3,"z_",[10,"0"]]},"fields":{"VARIABLE":["z13",",m9d)mV}CqjB(/mdI+Ad"]},"shadow":false,"topLevel":false},"z_":{"opcode":"data_itemoflist","next":null,"parent":"iO","inputs":{"INDEX":[3,"Ah",[7,"1"]]},"fields":{"LIST":["ppu.spriteoverlay","9[#?NzlNMlp97}ee5Yq^"]},"shadow":false,"topLevel":false},"Ah":{"opcode":"operator_add","next":null,"parent":"z_","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"B":{"opcode":"control_if_else","next":"z`","parent":"iO","inputs":{"CONDITION":[2,"iQ"],"SUBSTACK":[2,")"],"SUBSTACK2":[2,"iR"]},"fields":{},"shadow":false,"topLevel":false},"iQ":{"opcode":"operator_and","next":null,"parent":"B","inputs":{"OPERAND1":[2,"A|"],"OPERAND2":[2,"i)"]},"fields":{},"shadow":false,"topLevel":false},"A|":{"opcode":"operator_gt","next":null,"parent":"iQ","inputs":{"OPERAND1":[3,"A.",[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"A.":{"opcode":"operator_mod","next":null,"parent":"A|","inputs":{"NUM1":[3,[12,"z13",",m9d)mV}CqjB(/mdI+Ad"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"i)":{"opcode":"operator_or","next":null,"parent":"iQ","inputs":{"OPERAND1":[2,"i*"],"OPERAND2":[2,"A-"]},"fields":{},"shadow":false,"topLevel":false},"i*":{"opcode":"operator_and","next":null,"parent":"i)","inputs":{"OPERAND1":[2,"A:"],"OPERAND2":[2,"Ba"]},"fields":{},"shadow":false,"topLevel":false},"A:":{"opcode":"operator_equals","next":null,"parent":"i*","inputs":{"OPERAND1":[3,[12,"z6","%Efp?.T46DSgk%m_OQS#"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},"Ba":{"opcode":"operator_lt","next":null,"parent":"i*","inputs":{"OPERAND1":[3,"A;",[10,""]],"OPERAND2":[1,[10,"8"]]},"fields":{},"shadow":false,"topLevel":false},"A;":{"opcode":"operator_mod","next":null,"parent":"Ba","inputs":{"NUM1":[3,[12,"z13",",m9d)mV}CqjB(/mdI+Ad"],[4,""]],"NUM2":[1,[4,"16"]]},"fields":{},"shadow":false,"topLevel":false},"A-":{"opcode":"operator_equals","next":null,"parent":"i)","inputs":{"OPERAND1":[3,[12,"screenColor","[G+aYRFBsBQ@0)@VlZSs"],[10,""]],"OPERAND2":[1,[10,"0"]]},"fields":{},"shadow":false,"topLevel":false},")":{"opcode":"control_if_else","next":null,"parent":"B","inputs":{"CONDITION":[2,"AZ"],"SUBSTACK":[2,"i#"],"SUBSTACK2":[2,"iT"]},"fields":{},"shadow":false,"topLevel":false},"AZ":{"opcode":"operator_equals","next":null,"parent":")","inputs":{"OPERAND1":[3,[12,"cart.GBCMode","Las(z%`v$cor_TO.+az|"],[10,""]],"OPERAND2":[1,[10,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i#":{"opcode":"data_replaceitemoflist","next":null,"parent":")","inputs":{"INDEX":[3,"H@",[7,"1"]],"ITEM":[3,"i%",[10,"255"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"H@":{"opcode":"operator_add","next":null,"parent":"i#","inputs":{"NUM1":[3,"NA",[4,""]],"NUM2":[3,[12,"LCDY *160","+Epu7Zk9jKe~]pb|YPFh"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"NA":{"opcode":"operator_add","next":null,"parent":"H@","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i%":{"opcode":"data_itemoflist","next":null,"parent":"i#","inputs":{"INDEX":[3,"A[",[7,"1"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false,"comment":"A%"},"A[":{"opcode":"operator_add","next":null,"parent":"i%","inputs":{"NUM1":[3,"i(",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"i(":{"opcode":"operator_add","next":null,"parent":"A[","inputs":{"NUM1":[3,"A(",[4,""]],"NUM2":[3,"A]",[4,"5"]]},"fields":{},"shadow":false,"topLevel":false},"A(":{"opcode":"operator_mod","next":null,"parent":"i(","inputs":{"NUM1":[3,[12,"z13",",m9d)mV}CqjB(/mdI+Ad"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"A]":{"opcode":"operator_add","next":null,"parent":"i(","inputs":{"NUM1":[1,[4,"32"]],"NUM2":[3,"A^",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"A^":{"opcode":"operator_multiply","next":null,"parent":"A]","inputs":{"NUM1":[3,"A_",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"A_":{"opcode":"data_itemoflist","next":null,"parent":"A^","inputs":{"INDEX":[3,"A)",[7,"1"]]},"fields":{"LIST":["ppu.objGBCpalette","=)3O,z?qwyfT(]bS.WCK"]},"shadow":false,"topLevel":false},"A)":{"opcode":"operator_add","next":null,"parent":"A_","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iT":{"opcode":"data_replaceitemoflist","next":null,"parent":")","inputs":{"INDEX":[3,"A{",[7,"1"]],"ITEM":[3,"iS",[10,"255"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"A{":{"opcode":"operator_add","next":null,"parent":"iT","inputs":{"NUM1":[3,"A,",[4,""]],"NUM2":[3,[12,"LCDY *160","+Epu7Zk9jKe~]pb|YPFh"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"A,":{"opcode":"operator_add","next":null,"parent":"A{","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iS":{"opcode":"data_itemoflist","next":null,"parent":"iT","inputs":{"INDEX":[3,"z{",[7,"1"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false,"comment":"Al"},"z{":{"opcode":"operator_add","next":null,"parent":"iS","inputs":{"NUM1":[3,"iU",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"iU":{"opcode":"operator_add","next":null,"parent":"z{","inputs":{"NUM1":[3,"Am",[4,"4"]],"NUM2":[3,"z|",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"Am":{"opcode":"operator_mod","next":null,"parent":"iU","inputs":{"NUM1":[3,[12,"z13",",m9d)mV}CqjB(/mdI+Ad"],[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"z|":{"opcode":"operator_add","next":null,"parent":"iU","inputs":{"NUM1":[1,[4,"4"]],"NUM2":[3,"A}",[4,""]]},"fields":{},"shadow":false,"topLevel":false},"A}":{"opcode":"operator_multiply","next":null,"parent":"z|","inputs":{"NUM1":[3,"A~",[4,""]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"A~":{"opcode":"operator_gt","next":null,"parent":"A}","inputs":{"OPERAND1":[3,"A/",[10,""]],"OPERAND2":[1,[10,"3"]]},"fields":{},"shadow":false,"topLevel":false},"A/":{"opcode":"operator_mod","next":null,"parent":"A~","inputs":{"NUM1":[3,[12,"z13",",m9d)mV}CqjB(/mdI+Ad"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"iR":{"opcode":"data_replaceitemoflist","next":null,"parent":"B","inputs":{"INDEX":[3,"z}",[7,"1"]],"ITEM":[3,"z~",[10,"255"]]},"fields":{"LIST":["ppu.LCDbuffer","!LF+B5^aU.s]aX+NtN@K"]},"shadow":false,"topLevel":false},"z}":{"opcode":"operator_add","next":null,"parent":"iR","inputs":{"NUM1":[3,"An",[4,""]],"NUM2":[3,[12,"LCDY *160","+Epu7Zk9jKe~]pb|YPFh"],[4,""]]},"fields":{},"shadow":false,"topLevel":false},"An":{"opcode":"operator_add","next":null,"parent":"z}","inputs":{"NUM1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"z~":{"opcode":"data_itemoflist","next":null,"parent":"iR","inputs":{"INDEX":[3,"Aa",[7,"1"]]},"fields":{"LIST":["ppu.paletteconvertor","H{%?~x1nh6j`IJ}6}Kn5"]},"shadow":false,"topLevel":false},"Aa":{"opcode":"operator_add","next":null,"parent":"z~","inputs":{"NUM1":[3,"Ab",[4,""]],"NUM2":[1,[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ab":{"opcode":"operator_add","next":null,"parent":"Aa","inputs":{"NUM1":[3,[12,"screenColor","[G+aYRFBsBQ@0)@VlZSs"],[4,""]],"NUM2":[3,"Ac",[4,"1"]]},"fields":{},"shadow":false,"topLevel":false},"Ac":{"opcode":"operator_multiply","next":null,"parent":"Ab","inputs":{"NUM1":[3,"Ap",[4,"0"]],"NUM2":[1,[4,"4"]]},"fields":{},"shadow":false,"topLevel":false},"Ap":{"opcode":"operator_mod","next":null,"parent":"Ac","inputs":{"NUM1":[3,[12,"z16","c-v[Hd1I/R,+ox=OFTdf"],[4,""]],"NUM2":[1,[4,"8"]]},"fields":{},"shadow":false,"topLevel":false},"z`":{"opcode":"data_changevariableby","next":"Ad","parent":"B","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["y3","?8w-@IfeziV2F0~ghlM2"]},"shadow":false,"topLevel":false},"Ad":{"opcode":"data_changevariableby","next":"Ae","parent":"z`","inputs":{"VALUE":[1,[4,"1"]]},"fields":{"VARIABLE":["ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"]},"shadow":false,"topLevel":false},"Ae":{"opcode":"data_changevariableby","next":"bP","parent":"Ad","inputs":{"VALUE":[1,[4,"-1"]]},"fields":{"VARIABLE":["remainingPixels","j$5K!p8AZ+(P0pxJSbz."]},"shadow":false,"topLevel":false},"bP":{"opcode":"control_if","next":"Af","parent":"Ae","inputs":{"CONDITION":[2,"Wy"],"SUBSTACK":[2,"Wz"]},"fields":{},"shadow":false,"topLevel":false},"Wy":{"opcode":"operator_gt","next":null,"parent":"bP","inputs":{"OPERAND1":[3,[12,"ppu.pixelX","Ug#p2t3aVBGLx0sJe8da"],[10,""]],"OPERAND2":[1,[10,"159"]]},"fields":{},"shadow":false,"topLevel":false},"Wz":{"opcode":"control_stop","next":null,"parent":"bP","inputs":{},"fields":{"STOP_OPTION":["this script",null]},"shadow":false,"topLevel":false,"mutation":{"tagName":"mutation","children":[],"hasnext":"false"}},"Af":{"opcode":"data_changevariableby","next":"Aq","parent":"bP","inputs":{"VALUE":[3,[12,"w1","z+0J/(FO9+%4n5W`u3Mr"],[4,"1"]]},"fields":{"VARIABLE":["w1","z+0J/(FO9+%4n5W`u3Mr"]},"shadow":false,"topLevel":false},"Aq":{"opcode":"data_changevariableby","next":null,"parent":"Af","inputs":{"VALUE":[3,[12,"w2","M7vgX6A?=Z!~bof2q.Eo"],[4,"1"]]},"fields":{"VARIABLE":["w2","M7vgX6A?=Z!~bof2q.Eo"]},"shadow":false,"topLevel":false},"H":{"opcode":"control_if_else","next":null,"parent":"b;","inputs":{"CONDITION":[2,"ds"],"SUBSTACK":[2,"dt"],"SUBSTACK2":[2,"Jw"]},"fields":{},"shadow":false,"topLevel":false,"comment":"Jv"},"ds":{"opcode":"operator_gt","next":null,"parent":"H","inputs":{"OPERAND1":[3,"Jx",[10,""]],"OPERAND2":[1,[10,"127"]]},"fields":{},"shadow":false,"topLevel":false},"Jx":{"opcode":"argument_reporter_string_number","next":null,"parent":"ds","inputs":{},"fields":{"VALUE":["byte",null]},"shadow":false,"topLevel":false},"dt":{"opcode":"data_replaceitemoflist","next":"du","parent":"H","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"1"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false},"du":{"opcode":"data_replaceitemoflist","next":null,"parent":"dt","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[3,"NF",[10,"0"]]},"fields":{"LIST":["+sound volume","OrYiKto@sjk6{OD]/A2,"]},"shadow":false,"topLevel":false},"NF":{"opcode":"data_itemoflist","next":null,"parent":"du","inputs":{"INDEX":[1,[7,"1"]]},"fields":{"LIST":["+sound volume init","Mnx_:!cjX+ZV2P1}V7AR"]},"shadow":false,"topLevel":false},"Jw":{"opcode":"data_replaceitemoflist","next":null,"parent":"H","inputs":{"INDEX":[1,[7,"1"]],"ITEM":[1,[10,"0"]]},"fields":{"LIST":["+sound channels active",".9Xgs6=1omb8tCq,9h[y"]},"shadow":false,"topLevel":false}},"comments":{"Z:":{"blockId":"Z;","x":1407.274262688615,"y":1836.8228737997256,"width":200,"height":200,"minimized":true,"text":"0xFF43 - SCX"},"Z?":{"blockId":"Z@","x":1406.2742626886143,"y":1877.8228737997256,"width":200,"height":200,"minimized":true,"text":"0xFF42 - SCY"},"Z[":{"blockId":"Z]","x":1021.1903292181071,"y":1013.218621399177,"width":200,"height":200,"minimized":true,"text":"0xFF44 - LY"},"Z^":{"blockId":"Z_","x":1014.8941500416508,"y":2803.2932270233196,"width":200,"height":200,"minimized":true,"text":"0xFF4A - WY"},"Z`":{"blockId":"Z{","x":1281.8287037037044,"y":2342.918209876542,"width":200,"height":200,"minimized":true,"text":"0xFF43 - SCX"},"Z|":{"blockId":"Z}","x":1280.828703703704,"y":2389.9182098765423,"width":200,"height":200,"minimized":true,"text":"0xFF42 - SCY"},"Z~":{"blockId":"!a","x":1281.828703703704,"y":2492.9182098765423,"width":200,"height":200,"minimized":true,"text":"0xFF4B - WX"},"!b":{"blockId":"!c","x":958.7191358024684,"y":2399.1810699588477,"width":200,"height":200,"minimized":true,"text":"0xFF43 - SCX"},"!d":{"blockId":"!e","x":957.7191358024684,"y":2446.1810699588477,"width":200,"height":200,"minimized":true,"text":"0xFF42 - SCY"},"!f":{"blockId":"!g","x":958.7191358024684,"y":2549.1810699588477,"width":200,"height":200,"minimized":true,"text":"0xFF4B - WX"},"!h":{"blockId":"!i","x":6941.190509986877,"y":5477.8,"width":200,"height":200,"minimized":false,"text":""},"!j":{"blockId":"!k","x":3609.851852416992,"y":485.40000000000003,"width":200,"height":200,"minimized":false,"text":""},"!l":{"blockId":"!m","x":6808.796295166016,"y":1254.0000000000002,"width":200,"height":200,"minimized":false,"text":""},"!n":{"blockId":"!o","x":2215.4814814814818,"y":1953.4814814814818,"width":200,"height":200,"minimized":true,"text":"2 bitplanes that need to be merged together "},"!p":{"blockId":"!q","x":5899.196759259259,"y":1516.8888888888887,"width":200,"height":200,"minimized":true,"text":"save the value read by the CPU somewhere cause the OAM DMA messes it up"},"!s":{"blockId":"!t","x":43908.4520158179,"y":1528.8641975308642,"width":200,"height":200,"minimized":true,"text":"get the palette index"},"!u":{"blockId":"!v","x":2100.204386711121,"y":1858,"width":200,"height":200,"minimized":true,"text":"horizontal flip"},"!w":{"blockId":"!x","x":11974.074074074075,"y":2118.5925925925926,"width":200,"height":200,"minimized":true,"text":"object VRAM bank"},"!y":{"blockId":"!z","x":1814.0740740740746,"y":3442.35185185185,"width":200,"height":200,"minimized":true,"text":"CGB palette number"},"!A":{"blockId":"!K","x":2375.888888888889,"y":2683.185185185185,"width":200,"height":200,"minimized":true,"text":"apply OBP data"},"!L":{"blockId":"!Q","x":2406.888888888889,"y":2910.185185185185,"width":200,"height":200,"minimized":true,"text":"CGB palette number"},"!R":{"blockId":"!S","x":1382.8888888888891,"y":3475.185185185185,"width":200,"height":200,"minimized":true,"text":"shift left the bitplane bytes to get the next bit"},"Gx":{"blockId":"y","x":3276.5117921829224,"y":1297,"width":232,"height":207.111083984375,"minimized":true,"text":"this flag tells the PPU whether or not to calculate the next 8 pixels of the scanline. a bit of time is saved because it wont need to recalculate the new 8 pixels again. it can be messed up if IO registers that affect the display are changed though but theres a fix for that."},"OS":{"blockId":"Y","x":47877.8931055069,"y":307,"width":200,"height":200,"minimized":true,"text":"LD r, u8"},"OQ":{"blockId":"eH","x":47382.05514240265,"y":232,"width":200,"height":200,"minimized":true,"text":"LD [HL], u8"},"GQ":{"blockId":"jn","x":55386.0139169693,"y":127,"width":200,"height":200,"minimized":true,"text":"where the DMA starts"},"GT":{"blockId":"jq","x":55374.43985080719,"y":187,"width":200,"height":200,"minimized":true,"text":"where the DMA ends"},"!T":{"blockId":"!U","x":47046.22222222223,"y":2122.3703703703695,"width":200,"height":200,"minimized":true,"text":"where the DMA ends"},"Ic":{"blockId":"bS","x":54872.13290977478,"y":247,"width":200,"height":200,"minimized":true,"text":"how many bytes to copy"},"G]":{"blockId":"bT","x":54820.40258026123,"y":298,"width":200,"height":200,"minimized":true,"text":"0 = general DMA\n1 = HBLANK DMA"},"Ij":{"blockId":"u","x":20748,"y":373,"width":200,"height":200,"minimized":true,"text":"CGB DMA"},"!V":{"blockId":"!W","x":46157.85185185185,"y":2492.777777777778,"width":200,"height":200,"minimized":true,"text":"how many bytes to copy"},"!X":{"blockId":"!Y","x":46138.85185185185,"y":2543.777777777778,"width":200,"height":200,"minimized":true,"text":"0 = general DMA\n1 = HBLANK DMA"},"A%":{"blockId":"i%","x":4789.752059936523,"y":2677,"width":200,"height":200,"minimized":true,"text":"get CGB OBJ palette in the palette converter"},"Al":{"blockId":"iS","x":4573.829608917236,"y":2779,"width":200,"height":200,"minimized":true,"text":"get DMG OBJ palette in the palette converter"},"TD":{"blockId":"a","x":3387.579153060913,"y":811,"width":200,"height":200,"minimized":true,"text":"a conditional whether or not to re-compute the next 8 pixels of the screen. since this computation is kind of expensive, it should be done as little as possible, when all the 8 previous pixels have been put to the screen."},"Av":{"blockId":"A","x":3351.053458213806,"y":2032,"width":200,"height":200,"minimized":true,"text":"reverse the bits if the tile needs to be flipped"},"O_":{"blockId":"eI","x":36487.82923793793,"y":74,"width":200,"height":200,"minimized":true,"text":"this block handles all of the opcodes prefixed by 0xCB. "},"K-":{"blockId":"h","x":36644.22414493561,"y":559,"width":200,"height":200,"minimized":true,"text":"RLC/RRC"},"K@":{"blockId":"K","x":36652.529700279236,"y":871,"width":200,"height":200,"minimized":true,"text":"RL/RR"},"Pd":{"blockId":"m","x":36652.529700279236,"y":1255,"width":200,"height":200,"minimized":true,"text":"SLA/SRA"},"Pk":{"blockId":"n","x":36652.529700279236,"y":1567,"width":200,"height":200,"minimized":true,"text":"SWAP/SRL"},"pr":{"blockId":"(","x":37732.723682403564,"y":2053,"width":200,"height":200,"minimized":true,"text":"BIT X,N"},"NZ":{"blockId":"j","x":36613.427847862244,"y":2275,"width":200,"height":200,"minimized":true,"text":"RES/SET X,N"},"Jv":{"blockId":"H","x":53122,"y":1983,"width":200,"height":200,"minimized":true,"text":"trigger channel 1"},"Wg":{"blockId":"I","x":53122,"y":2907,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!Z":{"blockId":"!!","x":46856.777777777774,"y":2043.1111111111113,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!#":{"blockId":"!%","x":46741.8,"y":2682.48,"width":200,"height":200,"minimized":true,"text":"trigger channel 1"},"!(":{"blockId":"!)","x":46723.8,"y":3171.48,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!*":{"blockId":"!+","x":46621.479999999996,"y":2589.2799999999997,"width":200,"height":200,"minimized":true,"text":"trigger channel 1"},"!,":{"blockId":"!-","x":46603.479999999996,"y":3078.2799999999997,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!.":{"blockId":"!/","x":47598.40740740741,"y":3184.3333333333335,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!:":{"blockId":"!;","x":47728.777777777774,"y":3136.925925925926,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!=":{"blockId":"!?","x":47185.666666666664,"y":3693.5555555555557,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"yL":{"blockId":"ct","x":3558.918969154358,"y":1510,"width":200,"height":200,"minimized":true,"text":"tile in second VRAM bank if selected"},"AB":{"blockId":"b_","x":3375.951605796814,"y":1558,"width":200,"height":200,"minimized":true,"text":"CGB tile vertical flip"},"Mb":{"blockId":"kb","x":52533,"y":1609,"width":200,"height":200,"minimized":true,"text":"NR52"},"!@":{"blockId":"![","x":49011.18518518518,"y":3360.5,"width":200,"height":200,"minimized":true,"text":"trigger channel 2"},"!]":{"blockId":"!^","x":3129.7777777777783,"y":2907.592592592593,"width":200,"height":200,"minimized":true,"text":"get DMG OBJ palette in the palette converter"}},"currentCostume":0,"costumes":[{"name":"costume1","bitmapResolution":1,"dataFormat":"svg","assetId":"fc7f9be23235ee5882f189d807b6b065","md5ext":"fc7f9be23235ee5882f189d807b6b065.svg","rotationCenterX":24.564267670397612,"rotationCenterY":24.56372767039761}],"sounds":[],"volume":100,"layerOrder":25,"visible":false,"x":-159,"y":-145,"size":100,"direction":90,"draggable":false,"rotationStyle":"all around"}],"monitors":[{"id":"`jEk@4|i[#Fk?(8x)AV.-my variable","mode":"default","opcode":"data_variable","params":{"VARIABLE":"my variable"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"BE)e;?PnrdmTcO@x9]LQ","mode":"default","opcode":"data_variable","params":{"VARIABLE":"MenuScroll"},"spriteName":null,"value":0,"width":0,"height":0,"x":4,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"_FiygW_%~W7KsK!n$5T{","mode":"default","opcode":"data_variable","params":{"VARIABLE":"S"},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"mLiY::;)lv|cNt1?Woo3","mode":"list","opcode":"data_listcontents","params":{"LIST":"_rom"},"spriteName":null,"value":[],"width":138,"height":261,"x":311,"y":63,"visible":false},{"id":"M1MRH6V)bg-6jD{ugH=J","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Input"},"spriteName":"screen render2","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"8Tw(LA8~j_|@CGcGVjif","mode":"list","opcode":"data_listcontents","params":{"LIST":"MainHello"},"spriteName":null,"value":[],"width":476,"height":276,"x":0,"y":0,"visible":false},{"id":"/y%V|a=uht4rVd|2*2+a","mode":"default","opcode":"data_variable","params":{"VARIABLE":"DSmode"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":":zUJFFvJ!Vekh7t/nbIN","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.keyboard"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"timer","mode":"default","opcode":"sensing_timer","params":{},"spriteName":null,"value":0,"width":0,"height":0,"x":1,"y":58,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"f]{gYPSu$N}zEo@G9Nl)","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.registers"},"spriteName":"Chip-8","value":[],"width":100,"height":313,"x":378,"y":0,"visible":false},{"id":"}Q8yT0K~Xs{VX;CHfNu/","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.memory"},"spriteName":"Chip-8","value":[],"width":181,"height":246,"x":211,"y":0,"visible":false},{"id":"lUL@WhXBzID`Z-mCVTrh","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.stack"},"spriteName":"Chip-8","value":[],"width":121,"height":199,"x":0,"y":0,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-controller 1 state-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"Mobile Keypad state"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"o9uHH*42(Vb;iI,jwYr2","mode":"list","opcode":"data_listcontents","params":{"LIST":"Menu Theme"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"ht3J,j/C0jl,uH8K:dNy","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":0,"y":113,"visible":false},{"id":"uAm4?3ed1Q#FT#;rW,cx","mode":"large","opcode":"data_variable","params":{"VARIABLE":"c8.Load/Save_Quirk"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":353,"y":238,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"gv+85XB+B[w?)D8r_?)C","mode":"large","opcode":"data_variable","params":{"VARIABLE":"c8.Shift_quirk"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":345,"y":330,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"g/7`YLSnP29ZzyQeb?9I","mode":"slider","opcode":"data_variable","params":{"VARIABLE":"CPF"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":0,"y":225,"visible":false,"sliderMin":0,"sliderMax":120,"isDiscrete":true},{"id":"%F0~QLFTP1H{Enp:A]($","mode":"list","opcode":"data_listcontents","params":{"LIST":"schip8.font"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":42,"visible":false},{"id":"Wi^qSRY3?saxL.IB^T(P","mode":"large","opcode":"data_variable","params":{"VARIABLE":"rom.title"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":201,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"S9{m^Yi?3a7,6K!sHQ@t","mode":"list","opcode":"data_listcontents","params":{"LIST":"schip8.RPL"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":44,"visible":false},{"id":",2huTPQKyTdw0uS0Mmql","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.screenheight"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"/l6Z{skQaA(kN25K`~uO","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.screenwidth"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"D#tUdeeQG3WU9xi$i5/|","mode":"slider","opcode":"data_variable","params":{"VARIABLE":"c8scrnsize"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":308,"y":0,"visible":false,"sliderMin":1,"sliderMax":2,"isDiscrete":true},{"id":"`/97r]y4N7pab+0j,(B.","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy3"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"9:A|TG(!dzYn0uv=D1h3","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy4"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"YiRV7D4$v56yf}?X(y.j","mode":"large","opcode":"data_variable","params":{"VARIABLE":"VIP jumps"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":352,"y":285,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"r(t;~7h#1V?m.J:,GVQv","mode":"large","opcode":"data_variable","params":{"VARIABLE":"SF2091! fix"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":418,"y":280,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"AY0ltbJCCbW!P`l`UfON","mode":"list","opcode":"data_listcontents","params":{"LIST":"_pixels"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"I63N$8?MbeN%*VS^[e`a","mode":"list","opcode":"data_listcontents","params":{"LIST":"_memory"},"spriteName":null,"value":[],"width":106,"height":215,"x":362,"y":22,"visible":false},{"id":"T2#e%~#VNwXFGzGd*kbV","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawplane"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":260,"y":47,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"kvRL~`O/o863)hyq|o,_","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawflag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Ozk0Rvi.XHG+tKh4frbx","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen2"},"spriteName":"Chip-8","value":[],"width":439,"height":298,"x":5,"y":43,"visible":false},{"id":"{0m^r8XB06mP:WDHBc!.","mode":"list","opcode":"data_listcontents","params":{"LIST":"display.screen"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"oW{#?FHT;/hE!l+8(A64","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.starting address"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"N4R6^~5?6]M$8p]M}$(Z","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.HPSFlag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Zm~RHQxf]yUfdH)gtna.","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.pc"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":420,"y":286,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"r9s^NIq`=C8N*q$N:QjC","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.I"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":97,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"od4rT?;Bw52y-r9gIuW2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_ROM"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"j^@d4kzPlrC*r`=~=ag9","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.drawmode"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":23,"y":288,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"DO@o4r%E;$$f$zC!7%Qb","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.CompatMode"},"spriteName":null,"value":0,"width":0,"height":0,"x":19,"y":335,"visible":false,"sliderMin":0,"sliderMax":2,"isDiscrete":true},{"id":"TpKJz2LxQD8g%5l=GF^w","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.pitch"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"]qC)w3}-oa/}ILT-dNb=","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Inemu?"},"spriteName":null,"value":0,"width":0,"height":0,"x":132,"y":47,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-temp-","mode":"large","opcode":"data_variable","params":{"VARIABLE":"GUItemp"},"spriteName":null,"value":0,"width":0,"height":0,"x":170,"y":169,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"~kMyjD5[oxb%25@;,!jb","mode":"default","opcode":"data_variable","params":{"VARIABLE":"A"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":212,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"h54u;;|rg#N(]Z,#OrZM","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.audio_buffer"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":212,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"g}B8%m81]u[qI`b#U@N$","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy5"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-S-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"S2"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-PC-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"PC"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"26y~e9uZ-)1V@_#QCbz=","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Acc🚽"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"6)MJ1%:{yyW@[$pAU+RW","mode":"default","opcode":"data_variable","params":{"VARIABLE":"arm7.cycles"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"g28e.W~Kp`M%wes)3?Gr","mode":"default","opcode":"data_variable","params":{"VARIABLE":"clock.m"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"uEtD!M_zC8*GB%@71_@h","mode":"default","opcode":"data_variable","params":{"VARIABLE":"options.vertical_screens"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"S{03QX|)N}3Qs.R+iMd5","mode":"default","opcode":"data_variable","params":{"VARIABLE":"reg.pc"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2|8uqLL4Dl//c4+.iA2j","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Theme Switch Flag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-offset-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"offset"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"mq6S~PwjLP6FQthQj_WE_xposition","mode":"default","opcode":"motion_xposition","params":{},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":43,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"mq6S~PwjLP6FQthQj_WE_yposition","mode":"default","opcode":"motion_yposition","params":{},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":70,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"HBshDh%Y+0(5_G*i%?=U-AND-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"AND"},"spriteName":null,"value":[],"width":0,"height":0,"x":349,"y":128,"visible":false},{"id":"Fp2OyYdk}?8Nbn$hfEg`","mode":"list","opcode":"data_listcontents","params":{"LIST":"ROM"},"spriteName":null,"value":[],"width":0,"height":0,"x":10,"y":13,"visible":false},{"id":"Ok6b#fye79@mqZ]dIPt5","mode":"list","opcode":"data_listcontents","params":{"LIST":"vol"},"spriteName":null,"value":[],"width":214,"height":174,"x":5,"y":5,"visible":false},{"id":"g|w%1=[YgXkc0z(63t|f","mode":"list","opcode":"data_listcontents","params":{"LIST":"volume"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"UrPQMZ+enGUmzM`fAi$,","mode":"list","opcode":"data_listcontents","params":{"LIST":"voice"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-temp.1-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"temp.1"},"spriteName":null,"value":[],"width":0,"height":0,"x":378,"y":0,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-temp.0-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"temp.0"},"spriteName":null,"value":[],"width":135,"height":194,"x":237,"y":0,"visible":false},{"id":"*cu$N5#KACc@_m}ZOQx7","mode":"large","opcode":"data_variable","params":{"VARIABLE":"rom.designation"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"rSU1^x`,g=a?Z@^[xY+T","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory5"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"E)Xr`w!wLD[:xYMS;Sc^","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.audiobuffer"},"spriteName":null,"value":[],"width":127,"height":223,"x":0,"y":0,"visible":false},{"id":"xMDma1Q3J!y1yjTBt7(F","mode":"list","opcode":"data_listcontents","params":{"LIST":"pitches"},"spriteName":null,"value":[],"width":0,"height":0,"x":283,"y":14,"visible":false},{"id":"*df.:JNR*^GpTa_k=NdQ","mode":"list","opcode":"data_listcontents","params":{"LIST":"wave"},"spriteName":null,"value":[],"width":120,"height":252,"x":358,"y":7,"visible":false},{"id":"1(hsS=.HEnKV_~]$(r+5","mode":"default","opcode":"data_variable","params":{"VARIABLE":"pitch"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":33,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"(ecE`kfJLzw4p#})J_i9","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_pitch"},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-FT.im-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"FT.im"},"spriteName":null,"value":[],"width":0,"height":0,"x":0,"y":202,"visible":false},{"id":"flj)QgXS,93H6OayZ`w[-FT.re-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"FT.re"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"xX^EAt/9xIPmtV^FzOj1","mode":"large","opcode":"data_variable","params":{"VARIABLE":"chip8.audio toggle"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":430,"y":136,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|wrT},$[.z]EPbXVhvr[","mode":"list","opcode":"data_listcontents","params":{"LIST":"_colours"},"spriteName":null,"value":[],"width":199,"height":205,"x":279,"y":0,"visible":false},{"id":"AYN*TU~SGNlQh:~mri07","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.sound_timer"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":";V{Hj,Otjvdvg.T^fBD-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.drawvariety"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"3`C#KsI[WM=%ZSxuHQ!~","mode":"list","opcode":"data_listcontents","params":{"LIST":"mappers"},"spriteName":"Import ROM","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"2qm7j|WZgQAFvgiJG^Rn","mode":"list","opcode":"data_listcontents","params":{"LIST":"prg_rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":115,"y":11,"visible":false},{"id":"#2t_c630N5NI?I=l]FZ]","mode":"list","opcode":"data_listcontents","params":{"LIST":"load"},"spriteName":"Import ROM","value":[],"width":0,"height":0,"x":0,"y":0,"visible":false},{"id":"28|ndmww*C9:h(p(1Xha","mode":"list","opcode":"data_listcontents","params":{"LIST":"prg_banks"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"dkAVj{sdjrdbPacRA(Ya","mode":"list","opcode":"data_listcontents","params":{"LIST":"bin_table"},"spriteName":null,"value":[],"width":285,"height":240,"x":2,"y":0,"visible":false},{"id":"?y(KCJo)9i,S7J!}tsTu","mode":"list","opcode":"data_listcontents","params":{"LIST":"nt_map"},"spriteName":null,"value":[],"width":0,"height":0,"x":92,"y":0,"visible":false},{"id":"!-);EWw5je`a}{IyVf4v","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.NES"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"T*Lc1tcF[lxG@/W!jiQ0","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Frameskip"},"spriteName":null,"value":0,"width":0,"height":0,"x":179,"y":38,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Nacx{A2WY%QGLX/QgF]N","mode":"default","opcode":"data_variable","params":{"VARIABLE":"import.char"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"-7dlmlcLCpV7tl8DS7P}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"i"},"spriteName":"BytePusher","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"H0q(Yr;S8emYQ`u=.co}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"battery"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"3lt5rd5NtHtm.gOc6_3L","mode":"large","opcode":"data_variable","params":{"VARIABLE":"import.status"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":137,"y":195,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2sZ~|=Tg1SFq.9?bA!CG","mode":"default","opcode":"data_variable","params":{"VARIABLE":"data"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"D*/(a|uRL{vFdIeuWJq}","mode":"default","opcode":"data_variable","params":{"VARIABLE":"display.scan_y"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"KV8P%[L0$@Pl6*2;0j}2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"read.return"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"G(YRd^aUK_k)d~bJ8S@h","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.audioflag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"lo_vMT]e;W^6J}L{.;?|","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Velocity"},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"xEOcye1I(N]/uosC,Z.y_size","mode":"default","opcode":"looks_size","params":{},"spriteName":"Icon Template 1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"iQF=oI}+|V%s*{,h}nm{","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":":S.^^KK:vu#%(*yMlfJO","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.memory6"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":212,"visible":false},{"id":"ii:l6Cz,EQ(zK,4|YH9R","mode":"list","opcode":"data_listcontents","params":{"LIST":"Boot-128"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":155,"y":5,"visible":false},{"id":"4M*03Ap*{iT39zNp]4vF","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Romimportflag"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"khZ[BR^hh5g2wVjstNx~","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.spritewidth"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"N`et#hF/mNUQ?WM0|0ij","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.spriteheight"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"^R[WOHQM-#~uf#]*`Mv3","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"pulse1","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"n4Vk.4K3+)e4)7]IZXt*","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"triangle","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"5Vd}?h-0(QjqLpwAS(EX","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"noise","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":";Xw{G@Fj6{52PEY#;]UT","mode":"default","opcode":"data_variable","params":{"VARIABLE":"id"},"spriteName":"pulse0","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ZU1H]fgUo{pr?8j#775;","mode":"default","opcode":"data_variable","params":{"VARIABLE":"Enable APU"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"2YEF=*pQ`ymj}xOTf{?k","mode":"default","opcode":"data_variable","params":{"VARIABLE":"mapper"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":",41reDUn/;X!Ns7I!@{C","mode":"list","opcode":"data_listcontents","params":{"LIST":"chr_rom"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-Palette-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"Palette"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"q0Aieeo)Q0k-81exFUOK","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8m.collisioncolor"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"a,K{HPy[l|6bp/FIJ0WV","mode":"list","opcode":"data_listcontents","params":{"LIST":"logtemp"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"!M?/`s.Bs8q0RAQblZa9","mode":"list","opcode":"data_listcontents","params":{"LIST":"logzz"},"spriteName":null,"value":[],"width":480,"height":65,"x":0,"y":272,"visible":false},{"id":"#yxQVD.W=QA4e-TaHe-w","mode":"list","opcode":"data_listcontents","params":{"LIST":"_gametitle"},"spriteName":null,"value":[],"width":0,"height":0,"x":46,"y":0,"visible":false},{"id":"Jz!(reWdKcB6wz9(@ZOs","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8m.samplerate"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"{uxN85FR2v428H5s1TII","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8m.PCM"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"CMsw9:_o?,7RSBGR-L2C","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.fx0aflag"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"i!Gu6~8n7Kk|ypDR{}Pb","mode":"default","opcode":"data_variable","params":{"VARIABLE":"stage width"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"kb{abR#{v#9?Q9G51V95","mode":"default","opcode":"data_variable","params":{"VARIABLE":".RLE segments"},"spriteName":null,"value":0,"width":0,"height":0,"x":35,"y":35,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.1-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.1"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|Wne6DL=-zq^m9{2r`hA","mode":"default","opcode":"data_variable","params":{"VARIABLE":"q"},"spriteName":null,"value":0,"width":0,"height":0,"x":84,"y":50,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.0-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.0"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"8@,pP(24EK}y6@l2rl#i_volume","mode":"default","opcode":"sound_volume","params":{},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":155,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"KciKQ4B%I^{Ge#cm.(%/","mode":"list","opcode":"data_listcontents","params":{"LIST":"_scanline"},"spriteName":null,"value":[],"width":0,"height":0,"x":105,"y":5,"visible":false},{"id":"9_eB!Y3}VuUy)u[LEDQh","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory6"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":";%5/]?BxpeXK6De;T-%,","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm9.memory1"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"]?ktZ5{ATqh5n-y_rI;)","mode":"list","opcode":"data_listcontents","params":{"LIST":"gui"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"y8$TZGjr(vK|SME``+kg","mode":"list","opcode":"data_listcontents","params":{"LIST":"vram.lcdc"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"q~]_[iVvJ`d|+?RSqc^Y","mode":"list","opcode":"data_listcontents","params":{"LIST":"_DMGCOLORS"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"Au!*6~mqLy!.|jpv|6f!","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_SP"},"spriteName":null,"value":0,"width":0,"height":0,"x":115,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"E$.ShehU4wuDtCF}{|rY","mode":"list","opcode":"data_listcontents","params":{"LIST":"_registers"},"spriteName":null,"value":[],"width":100,"height":260,"x":0,"y":98,"visible":false},{"id":"KoqBef(DQ*bEZsT@-v`L","mode":"list","opcode":"data_listcontents","params":{"LIST":"flag_names"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"JcH|Bk6g8yO74n|tWOIG","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.blendmode"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"EesKz%n[:9y6^o:vvoD_","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.chip8"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"eF-[:^d06FtrxjRyaneE","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.return"},"spriteName":"Sprite1","value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"zbJieX,I^/*TuxDYgB2.","mode":"default","opcode":"data_variable","params":{"VARIABLE":"wram_size"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"%XjU5(A-f?.:2f)2OCXj","mode":"default","opcode":"data_variable","params":{"VARIABLE":"wram_enabled"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"5D)3w-mP8HqcU~;jGYPw","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.GB"},"spriteName":null,"value":[],"width":100,"height":360,"x":0,"y":0,"visible":false},{"id":"[t[1fR}eq!?#HcGC2#-V","mode":"list","opcode":"data_listcontents","params":{"LIST":"c"},"spriteName":"BytePusher","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"u{Z6Yo:g|j(7O+@6yd=b","mode":"list","opcode":"data_listcontents","params":{"LIST":"and_table"},"spriteName":null,"value":[],"width":0,"height":0,"x":74,"y":0,"visible":false},{"id":"yYeY/%}@PaP{fMkLU1ve","mode":"list","opcode":"data_listcontents","params":{"LIST":"xor_table"},"spriteName":null,"value":[],"width":139,"height":243,"x":159,"y":72,"visible":false},{"id":"Lwfvqs]/^buKKht}YcaC","mode":"list","opcode":"data_listcontents","params":{"LIST":"or_table"},"spriteName":null,"value":[],"width":0,"height":0,"x":55,"y":5,"visible":false},{"id":"lWF?u*+y?xh}I(}~K.X2","mode":"default","opcode":"data_variable","params":{"VARIABLE":"coolnes_regenerate"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"ln{MS#PL`8.}h:(_}UB]","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_id"},"spriteName":"synthesizer","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"%0@eg_iM4%`6o1lYsAwI","mode":"list","opcode":"data_listcontents","params":{"LIST":"pixel_buffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":105,"y":5,"visible":false},{"id":"*6ctRg,UST)3?h^IgrxZ","mode":"list","opcode":"data_listcontents","params":{"LIST":"oam"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":32,"visible":false},{"id":"}^!zcd7*?=frof;O)@)i","mode":"default","opcode":"data_variable","params":{"VARIABLE":"x"},"spriteName":"DS Screens","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Cs^]Xb{z|}3IPS([*+Id","mode":"default","opcode":"data_variable","params":{"VARIABLE":"y"},"spriteName":"DS Screens","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"flj)QgXS,93H6OayZ`w[-r.2-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"r.2"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":":p`%H4!;G.]W;6lcwPAB","mode":"default","opcode":"data_variable","params":{"VARIABLE":"__SIZE"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"w=hd1PshEda%bO|xM^6q","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_PC"},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"m]ROHZvewvW*HDY)ha@)","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.mode"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"j+^-/^#ziTd]J%3izp|U","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.InterruptFlag"},"spriteName":null,"value":0,"width":0,"height":0,"x":209,"y":0,"visible":false,"sliderMin":0,"sliderMax":1,"isDiscrete":true},{"id":"g1X0d%+|q`l:YKb?Jj_I","mode":"list","opcode":"data_listcontents","params":{"LIST":"dat"},"spriteName":"font","value":[],"width":235,"height":252,"x":5,"y":5,"visible":false},{"id":"kAMTG-A{dB6Z1S4,`$2$","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_FPS"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"d9/@u6`9MK4Cba;GI38K","mode":"default","opcode":"data_variable","params":{"VARIABLE":"__YSHIFT"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"F_}DPF^fI%3NP^P]}FKY","mode":"default","opcode":"data_variable","params":{"VARIABLE":"_HALT"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":",(xt46oqz;F}4Roa*4l1","mode":"list","opcode":"data_listcontents","params":{"LIST":"_waveBuffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"ki7qXD%gNvvUz@OLl,$4","mode":"list","opcode":"data_listcontents","params":{"LIST":"_waveBuffer2"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"JZ0nOH#MsoLAasA7xYd+","mode":"list","opcode":"data_listcontents","params":{"LIST":".HEX"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"GH;evIT.P{UuSVtHs:`*","mode":"list","opcode":"data_listcontents","params":{"LIST":"*graphicsBuffer"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"(M5DY~$!E(Xt6VWlGk_1","mode":"list","opcode":"data_listcontents","params":{"LIST":"+AUDIO ENGINE pan"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"Z#J.8^J=g($xQr6Bd]q;","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.wireless.state_1"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"v]0UUq`G]chfwu4/UQ~q","mode":"list","opcode":"data_listcontents","params":{"LIST":"apu"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":41,"visible":false},{"id":"#_[CK=fABC,PAZ_,6!9!","mode":"list","opcode":"data_listcontents","params":{"LIST":"arm7.flags"},"spriteName":null,"value":[],"width":0,"height":0,"x":155,"y":41,"visible":false},{"id":"pXkI+kwkMT/GFMgtL=VH","mode":"default","opcode":"data_variable","params":{"VARIABLE":"display.scan_x"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"RBD.T_tlTqDvriQZH:[N","mode":"default","opcode":"data_variable","params":{"VARIABLE":"x"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"|ke}j~q$D+WWLo05@rUl","mode":"default","opcode":"data_variable","params":{"VARIABLE":"z"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"=Nnh8d@ok|B?)Hea*-9a","mode":"list","opcode":"data_listcontents","params":{"LIST":"8080.Terminal"},"spriteName":null,"value":[],"width":165,"height":245,"x":275,"y":81,"visible":false},{"id":"Ylpv#yntx`3MMU(uD;7(","mode":"default","opcode":"data_variable","params":{"VARIABLE":"y"},"spriteName":"font","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"?]mws|{Gz19yl|:g,]z(","mode":"default","opcode":"data_variable","params":{"VARIABLE":"clock.t"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"xYpkP=%}3N3fIXniRLxO","mode":"list","opcode":"data_listcontents","params":{"LIST":"controls.SI8080"},"spriteName":null,"value":[],"width":100,"height":278,"x":0,"y":5,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-hex-list","mode":"list","opcode":"data_listcontents","params":{"LIST":"hex"},"spriteName":null,"value":[],"width":0,"height":0,"x":196,"y":202,"visible":false},{"id":"@Mu*IPvEI${W#Lm!SQml","mode":"list","opcode":"data_listcontents","params":{"LIST":"m"},"spriteName":null,"value":[],"width":0,"height":0,"x":167,"y":7,"visible":false},{"id":"iGLIHi+i9Aryu]bYNNR[","mode":"list","opcode":"data_listcontents","params":{"LIST":"vram.engine_a.obj"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"uvc)zI]ik{H#R0UEcjSa","mode":"default","opcode":"data_variable","params":{"VARIABLE":"storage.byte"},"spriteName":"HelloWorld","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"~*y,0~Y1ZelwR60?hGDD","mode":"list","opcode":"data_listcontents","params":{"LIST":"buf"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"~s-a1kNvmHy%k|6}Y3^~","mode":"default","opcode":"data_variable","params":{"VARIABLE":"bg_color"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":32,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"x`lXY}QGbH88#]Q,]k6{","mode":"default","opcode":"data_variable","params":{"VARIABLE":"scaling"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"FXOp8UxfocDLes#jb]#0","mode":"default","opcode":"data_variable","params":{"VARIABLE":"size_mod"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"k=~b=v$2`QjSTgTcPXL-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"o_up"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"]5%Fb_Ak`e}VBjN~n|kJ","mode":"default","opcode":"data_variable","params":{"VARIABLE":"o_down"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"RUoRvD^Z-E8laPv?;h)+","mode":"default","opcode":"data_variable","params":{"VARIABLE":"stretch_x"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"9*o%9GxNGz?fbMF7pB8J","mode":"default","opcode":"data_variable","params":{"VARIABLE":"stretch_y"},"spriteName":"draw","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Mh+n98ZN{1B*npNt5f45","mode":"default","opcode":"data_variable","params":{"VARIABLE":"temp"},"spriteName":"Import ROM","value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"hrlmIBq6fq*lN*RPBh*J","mode":"large","opcode":"data_variable","params":{"VARIABLE":"c8.Wrap_mode"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":420,"y":333,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"1hb5az8M),6CpIBwl+T#","mode":"default","opcode":"data_variable","params":{"VARIABLE":"chip8.dummy"},"spriteName":"Chip-8","value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"}#/T$/!oxFk]}F%H}-cC","mode":"default","opcode":"data_variable","params":{"VARIABLE":"gui_disabled"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":27,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"wf$pnFUa#7qieC$aq~T9","mode":"default","opcode":"data_variable","params":{"VARIABLE":"frame"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":54,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"!+5p_#N7^W]PZ+A=m=oI","mode":"default","opcode":"data_variable","params":{"VARIABLE":"cycles"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"X_VP{NmPL`h[GvuS[,%%","mode":"list","opcode":"data_listcontents","params":{"LIST":"!ram"},"spriteName":"nes","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"HBshDh%Y+0(5_G*i%?=U-mask-","mode":"default","opcode":"data_variable","params":{"VARIABLE":"mask"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"[sU2JI|(@n8Hh4}M,trk","mode":"list","opcode":"data_listcontents","params":{"LIST":"_memorydirtyflags"},"spriteName":null,"value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":";;D#J[s+xqU=v5L_KPks","mode":"list","opcode":"data_listcontents","params":{"LIST":"_memorydirtyaddresses"},"spriteName":null,"value":[],"width":0,"height":0,"x":72,"y":1,"visible":false},{"id":"sensing_mousex","mode":"default","opcode":"sensing_mousex","params":{},"spriteName":null,"value":0,"width":0,"height":0,"x":0,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"$I%$ZSrMoNE4j:0:k6^m","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen3"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"eIbd*$2o]f7xY6t6CmU;","mode":"list","opcode":"data_listcontents","params":{"LIST":"chip8.screen4"},"spriteName":"Chip-8","value":[],"width":0,"height":0,"x":5,"y":5,"visible":false},{"id":"y:MI[jH$Un515#+v3[#@","mode":"default","opcode":"data_variable","params":{"VARIABLE":"FPS"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":0,"y":338,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"_T_UX}bQ?Q+%Ar.;!SD#","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.screenrotation"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"M}(6FQ$ph-O-oCmv%Unj","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.shift register offset"},"spriteName":"SI8080","value":0,"width":0,"height":0,"x":0,"y":0,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true},{"id":"Um=PAsB@zaqnQwbwz2%7","mode":"default","opcode":"data_variable","params":{"VARIABLE":"8080.lastout"},"spriteName":null,"value":0,"width":0,"height":0,"x":5,"y":5,"visible":false,"sliderMin":0,"sliderMax":100,"isDiscrete":true}],"extensions":["pen","microbit"],"meta":{"semver":"3.0.0","vm":"0.2.0","agent":""}} \ No newline at end of file diff --git a/sound.txt b/sound.txt index 40073e4..31dfba5 100644 --- a/sound.txt +++ b/sound.txt @@ -1,62 +1,47 @@ //----- Variables ----------------------------------------------------------------------------------------------------- --chnumber = 4 --pitchnumber = 4 --soundnumber = 2 --z = 0 ++channel Cycle = 0 ++channel ID = 3 ++is clone? = 0 +i = 0 +loop = 4 +menu0exit = 0 +return = 155.6236834377 //----- Broadcast received events ------------------------------------------------------------------------------------- -WhenBroadcastReceived(create sound) +WhenBroadcastReceived(+audioEngineUpdateAll) { - Call generate; -} - -WhenBroadcastReceived(prune) -{ - Control.DeleteThisClone(); -} - - -//----- Start as clone ------------------------------------------------------------------------------------------------ - -Control.WhenIStartAsClone() -{ - Forever + If (+is clone? == 0) + { + Call check audio clones; + } + Else { - If (Sound.Volume() > 0) + If (+channel ID == 4) { - Sound.PlayUntilDone(Operator.Join(Operator.Join(soundnames[-chnumber], -soundnumber), -pitchnumber)); + Call convert pitch to MIDI note((524288 / +sound pitch[+channel ID])); } + Else + { + Call convert pitch to MIDI note((131072 / (2048 - +sound pitch[+channel ID]))); + } + Sound.SetEffectTo(PITCH, ((return - 69) * 10)); } } -Control.WhenIStartAsClone() +WhenBroadcastReceived(+audioEngineUpdateAll) { - Forever + If (+is clone? == 0) + { + } + Else { - If (voice[-chnumber] == -soundnumber) + If (+sound duty cycle[+channel ID] == +channel Cycle) { - -z = pitches[-chnumber]; - If (-z > -1) - { - -z = (Operator.Round(((-z - 69) / 12)) + 2); - -z = ((-z * (-z > 0)) - ((-z - 3) * (-z > 3))); - If (-z == -pitchnumber) - { - Sound.SetVolumeTo((volume[-chnumber] * (20 / 16))); - } - Else - { - Sound.SetVolumeTo(0); - } - } - Else - { - Sound.SetVolumeTo(0); - } + Sound.SetVolumeTo(((+sound volume[+channel ID] * .5) * +globalVol.R)); } Else { @@ -65,24 +50,41 @@ Control.WhenIStartAsClone() } } -Control.WhenIStartAsClone() +WhenBroadcastReceived(+turnoffaudio) { - Forever - { - If (Sound.Volume() > 0) - { - Sound.SetEffectTo(PITCH, (((pitches[-chnumber] - 69) + ((2 - -pitchnumber) * 12)) * 10)); - } - } + Sound.SetVolumeTo(0); } +WhenBroadcastReceived(exit emulator) +{ + +is clone? = 0; + Control.DeleteThisClone(); +} + +WhenBroadcastReceived(reset emulator) +{ + +is clone? = 0; + Control.DeleteThisClone(); +} + + +//----- Start as clone ------------------------------------------------------------------------------------------------ + Control.WhenIStartAsClone() { Forever { - If (Sound.Volume() > 0) + If (+channel ID == 1) { - Sound.SetEffectTo(PAN, (100 * +AUDIO ENGINE pan[-chnumber])); + Sound.PlayUntilDone(Operator.Join("P", Operator.Join(+channel Cycle, 0))); + } + If (+channel ID == 2) + { + Sound.PlayUntilDone(Operator.Join("P", Operator.Join(+channel Cycle, 1))); + } + If (+channel ID == 4) + { + Sound.PlayUntilDone(Operator.Join("N", Operator.Join(+channel Cycle, 0))); } } } @@ -90,54 +92,30 @@ Control.WhenIStartAsClone() //----- Custom blocks ------------------------------------------------------------------------------------------------- -Define generate (warp=true) +Define check audio clones (warp=true) { - -chnumber = 0; - List.DeleteAll(pitches); - List.DeleteAll(voice); - List.DeleteAll(volume); - List.DeleteAll(+AUDIO ENGINE pan); - List.DeleteAll(soundnames); - List.Add(soundnames, "p0"); - List.Add(soundnames, "p1"); - List.Add(soundnames, ""); - List.Add(soundnames, "no"); - Sound.SetVolumeTo(0); - Repeat (List.Length(soundnames)) + control_for_each ?? - probably legacy function from Scratch 2.0; +} + +Define clone sound channel (warp=true) +{ + +is clone? = 1; + Control.CreateCloneOf(_myself_); + +is clone? = 0; +} + +Define convert pitch to MIDI note(string p) (warp=true) +{ + return = ((12 * (ln((p / 440)) / ln(2))) + 69); +} + +Define fast (warp=true) +{ + +channel Cycle = 0; + Repeat (Operator.LetterOf(4402, loop)) { - -chnumber += 1; - -pitchnumber = 0; - Repeat (4) - { - -soundnumber = 0; - If (-chnumber == 3) - { - } - Else - { - If (-chnumber == 4) - { - Repeat (2) - { - Control.CreateCloneOf(_myself_); - -soundnumber += 1; - } - } - Else - { - Repeat (4) - { - Control.CreateCloneOf(_myself_); - -soundnumber += 1; - } - } - } - -pitchnumber += 1; - } - List.Add(pitches, -1); - List.Add(voice, 0); - List.Add(volume, 0); - List.Add(+AUDIO ENGINE pan, 0); + Call clone sound channel; + +channel Cycle += 1; } } @@ -149,43 +127,13 @@ costume1.svg //----- Sounds -------------------------------------------------------------------------------------------------------- -no00.wav -no01.wav -no02.wav -no03.wav -no10.wav -no11.wav -no12.wav -no13.wav -p000.wav -p001.wav -p002.wav -p003.wav -p010.wav -p011.wav -p012.wav -p013.wav -p020.wav -p021.wav -p022.wav -p023.wav -p030.wav -p031.wav -p032.wav -p033.wav -p100.wav -p101.wav -p102.wav -p103.wav -p110.wav -p111.wav -p112.wav -p113.wav -p120.wav -p121.wav -p122.wav -p123.wav -p130.wav -p131.wav -p132.wav -p133.wav +N00.wav +N10.wav +P00.wav +P01.wav +P10.wav +P11.wav +P20.wav +P21.wav +P30.wav +P31.wav diff --git a/synthesizer.txt b/synthesizer.txt index 3942ca7..7c997c6 100644 --- a/synthesizer.txt +++ b/synthesizer.txt @@ -1,9 +1,90 @@ //----- Variables ----------------------------------------------------------------------------------------------------- +arm7.pc = 0 +arm7.read_return = 0 +arm9.pc = 0 +arm9.read_return = 0 +bg_mode = 0 +c8.Load/Save_Quirk = 0 +c8.Shift_quirk = 0 +c8.Wrap_mode = 0 +c8scrnsize = 0 +calc.char = 0 +calc.return = 0 +calc.temp = 0 +calc.temp2 = 0 +chip8.audio toggle = 0 +chip8.audio_buffer = 0 +chip8.blendmode = 0 +chip8.delay_timer = 0 +chip8.drawflag = 0 +chip8.drawmode = 0 +chip8.drawplane = 0 +chip8.drawvariety = 0 +chip8.dummy = 0 +chip8.dummy2 = 0 +chip8.dummy3 = 0 +chip8.dummy4 = 0 +chip8.dummy5 = 0 +chip8.fx0aflag = 0 +chip8.HPSFlag = 0 +chip8.I = 0 +chip8.pc = 0 +chip8.pitch = 0 +chip8.rand = 0 +chip8.return = 0 +chip8.screenheight = 0 +chip8.screenwidth = 0 +chip8.sound_timer = 0 +chip8.spritewidth = 0 +chip8m.collisioncolor = 0 +core.byte_return = 0 +core.condition_test = 0 +core.dummy = 0 +core.dummy2 = 0 +core.dummy_op = 0 +core.instruction_format = 0 +core.little_endian = 0 +core.op.dummy = 0 +core.op.dummy2 = 0 +core.read_return = 0 +core.rotate_return = 0 +core.shift_return = 0 +CPF = 0 +flags.met = 0 +op.opcode = 0 +op.pos = 0 +op.temp = 0 +program.done = 0 +read.return = 0 +read.single.return = 0 +scanX = 0 +scanY = 0 +SF2091! fix = 0 +storage.byte = 0 +tile_mode = 0 +VIP jumps = 0 _id = 1 -_pitch = 0 +_pitch = -260.06665369993 +//----- Lists --------------------------------------------------------------------------------------------------------- + +arm7.registers = { } +arm9.flags = { } +arm9.registers = { } +Boot-128 = { } +chip8.keyboard = { } +chip8.memory = { } +chip8.registers = { } +chip8.screen = { } +chip8.screen2 = { } +chip8.screen3 = { } +chip8.screen4 = { } +chip8.stack = { } +schip8.font = { } +schip8.RPL = { } + //----- Broadcast received events ------------------------------------------------------------------------------------- @@ -33,31 +114,6 @@ WhenBroadcastReceived(sound.updatech8buffer) Call apply to vol; } -WhenBroadcastReceived(wave) -{ - Sound.SetVolumeTo(0); - Forever - { - If (Sound.Volume() == 0) - { - Wait Until (Sound.Volume() > 0); - } - Sound.PlayUntilDone(_id); - } -} - -WhenBroadcastReceived(wave) -{ - Forever - { - If ((Not ((pitch == -400))) And (Not ((_pitch == pitch)))) - { - _pitch = pitch; - Sound.SetEffectTo(PITCH, pitch); - } - } -} - WhenBroadcastReceived(wave) { Forever @@ -88,8 +144,34 @@ WhenBroadcastReceived(wave) } } +WhenBroadcastReceived(wave) +{ + Sound.SetVolumeTo(0); + Forever + { + If (Sound.Volume() == 0) + { + Wait Until (Sound.Volume() > 0); + } + Sound.PlayUntilDone(_id); + } +} + +WhenBroadcastReceived(wave) +{ + Forever + { + If ((Not ((pitch == -400))) And (Not ((_pitch == pitch)))) + { + _pitch = pitch; + Sound.SetEffectTo(PITCH, pitch); + } + } +} + WhenBroadcastReceived(wave create) { + Stop(other scripts in sprite); Call instant; Event.Broadcast("wave"); } @@ -247,8 +329,6 @@ Define tick(string sample) (warp=true) //----- Orphaned blocks ----------------------------------------------------------------------------------------------- -I - If { r.9 = (180 / r.1); @@ -257,6 +337,8 @@ Else { } +Event.BroadcastAndWait("prune") + //----- Costumes ------------------------------------------------------------------------------------------------------ diff --git a/wave channel.txt b/wave channel.txt deleted file mode 100644 index 45da284..0000000 --- a/wave channel.txt +++ /dev/null @@ -1,406 +0,0 @@ -//----- Variables ----------------------------------------------------------------------------------------------------- - -*OAMDMA# = 0 -*OAMDMAS = 0 -,c = 0 -,joypad = 0 --keyRandom = 0 --LCDC = 0 --LCDS = 0 --LY = 0 --LYC = 0 --LYmask = 0 --scx = 0 --SCXMOD8 = 0 --STATUS = 0 --windowWasDrawn? = 0 --WLY = 0 --wx = 0 -.DIV2 = 0 -.DIVCYCLES = 0 -.DMAenable = 0 -.DMAend = 0 -.DMAlength = 0 -.DMAstart = 0 -.DMAtype = 0 -.GBC? = 0 -.HDMAenable = 0 -.IME = 0 -.instr = 0 -.instrID = 0 -.Mpri = 0 -.soundEnable = 0 -.SPEED = 0 -.Spri = 0 -.spriteattributes = 0 -.spriteCpal = 0 -.spritesize = 0 -.TAC1 = 0 -.TAC2 = 0 -.TACFLAG = 0 -.tileB = 0 -.timenable = 0 -.vbank = 0 -.windowflag = 0 -@PAL = 0 -@PIX = 0 -fftlast = 0 -FPS = 0 -g = 0 -Game Boy: _HALT = 0 -Game Boy: _PC = 0 -Game Boy: _SP = 0 -h = 0 -i = 0 -k = 0 -l = 0 -loop = 0 -m = 0 -render = 0 -T1 = 0 -T2 = 0 -T3 = 0 -T4 = 0 -T4.1 = 0 -T4.2 = 0 -T5 = 0 -T6 = 0 -T7 = 0 -T8 = 0 -T9 = 0 -T10 = 0 -T11 = 0 -target frames = 0 -time1 = 0 -time2 = 0 -v = 0 -x = 0 -z = 0 -_A = 0 -_B = 0 -_current bank = 0 -_frames = 0 -_frameskip = 0 -_id = 0 -_IEindex = 0 -_IFindex = 0 -_INTRdest = 0 -_lineCyc = 0 -_MBCnumber = 0 -_pitch = -333.76316562296 -_PIXEL# = 0 -_R = 0 -_RE = 0 -_rom size = 0 -_S = 0 -_SIZE = 0 -_STATcond1 = 0 -_STATcond2 = 0 -_T = 0 -_X = 0 -_XSHIFT = 0 -_YSHIFT = 0 -_Z = 0 - - -//----- Lists --------------------------------------------------------------------------------------------------------- - -$A = { } -$B = { } -$C = { } -*OAMidx = { } -*OAMx = { } -*OAMy = { } -*palette = { } -.addr2ptr = { } -.AND = { } -.OR = { } -.pointerStart = { } -.ptr = { } -.ptr index = { } -.vals = { } -.XOR = { } -2^x = { } -bin = { } -byteStack = { } -dat = { } -Flag bits = { } -_cartridge stuff = { } -_DMGPALETTE = { } -_GBCPALETTELOOKUP = { } -_instrIDs = { } -_instrParam = { } -_PALETTE RAM = { } -_pix = { } -_RAM = { } -_REGISTERS = { } -_ROM = { } -_soundregs = { } - - -//----- Broadcast received events ------------------------------------------------------------------------------------- - -WhenBroadcastReceived(create sound) -{ - Call instant; - Event.Broadcast("soundsync"); - Event.Broadcast("m1"); -} - -WhenBroadcastReceived(m1) -{ - Sound.SetVolumeTo(0); - Forever - { - If (Sound.Volume() == 0) - { - Wait Until (Sound.Volume() > 0); - } - Sound.PlayUntilDone(_id); - } -} - -WhenBroadcastReceived(m1) -{ - Forever - { - If (pitch == (-1 / 0)) - { - If (Not ((Sound.Volume() == 0))) - { - Sound.SetVolumeTo(0); - } - Wait Until (pitch > (-1 / 0)); - } - If (_id > q) - { - If (Sound.Volume() > 0) - { - Sound.SetVolumeTo(0); - } - } - Else - { - If (Not ((Sound.Volume() == vol[_id]))) - { - Sound.SetVolumeTo((vol[_id] * (20 / 100))); - } - } - } -} - -WhenBroadcastReceived(m1) -{ - Forever - { - If (pitch == (-1 / 0)) - { - } - Else - { - If (Not ((_pitch == pitch))) - { - _pitch = pitch; - Sound.SetEffectTo(PITCH, pitch); - } - } - } -} - -WhenBroadcastReceived(prune) -{ - Control.DeleteThisClone(); -} - -WhenBroadcastReceived(soundsync) -{ - fftlast = 0; - Forever - { - If (pitches[3] < 0) - { - pitch = "-Infinity"; - } - Else - { - pitch = ((pitches[3] - 69) * 10); - } - If (Not ((wave == fftlast))) - { - Call put Input; - Call FFT(); - Call apply to vol; - fftlast = wave; - } - } -} - - -//----- Custom blocks ------------------------------------------------------------------------------------------------- - -Define apply to vol (warp=true) -{ - r.0 = 1; - List.DeleteAll(vol); - Repeat (List.Length(FT.im)) - { - r.0 += 1; - r.1 = FT.re[r.0]; - r.2 = FT.im[r.0]; - List.Add(vol, (volume[3] * sqrt(((r.1 * r.1) + (r.2 * r.2))))); - } -} - -Define FFT(bool I) (warp=true) -{ - List.DeleteItem(temp.0, all); - List.DeleteItem(temp.1, all); - If (List.Length(FT.re) < List.Length(FT.im)) - { - r.0 = List.Length(FT.im); - } - Else - { - r.0 = List.Length(FT.re); - } - r.0 += -1; - r.2 = 1; - r.3 = 0; - Repeat Until (r.2 > r.0) - { - r.2 += r.2; - r.3 += 1; - } - Repeat (r.2) - { - r.0 = List.Length(temp.0); - r.1 = 0; - Repeat (r.3) - { - r.1 = (r.1 * 2); - r.1 += (r.0 % 2); - r.0 = floor((r.0 / 2)); - } - r.1 += 1; - List.Add(temp.0, (FT.re[r.1] + 0)); - List.Add(temp.1, (FT.im[r.1] + 0)); - } - r.1 = 1; - Repeat (r.3) - { - r.0 = 1; - r.2 = (r.2 / 2); - Repeat (r.2) - { - r.8 = 0; - If I - { - r.9 = (180 / r.1); - } - Else - { - r.9 = (-180 / r.1); - } - Repeat (r.1) - { - r.0 += r.1; - r.4 = cos(r.8); - r.5 = sin(r.8); - r.3 = temp.0[r.0]; - r.7 = temp.1[r.0]; - r.6 = ((r.3 * r.4) - (r.7 * r.5)); - r.7 = ((r.3 * r.5) + (r.7 * r.4)); - r.0 += (0 - r.1); - r.4 = temp.0[r.0]; - r.5 = temp.1[r.0]; - List.ReplaceItem(temp.0, r.0, (r.4 + r.6)); - List.ReplaceItem(temp.1, r.0, (r.5 + r.7)); - r.0 += r.1; - List.ReplaceItem(temp.0, r.0, (r.4 - r.6)); - List.ReplaceItem(temp.1, r.0, (r.5 - r.7)); - r.0 += (1 - r.1); - r.8 += r.9; - } - r.0 += r.1; - } - r.1 += r.1; - } - r.0 = 0; - List.DeleteItem(FT.re, all); - List.DeleteItem(FT.im, all); - r.1 = sqrt(List.Length(temp.0)); - Repeat (List.Length(temp.0)) - { - r.0 += 1; - List.Add(FT.re, (temp.0[r.0] / r.1)); - List.Add(FT.im, (temp.1[r.0] / r.1)); - } -} - -Define instant (warp=true) -{ - _pitch = 0; - q = 16; - If (Not ()) - { - _id = q; - Repeat (q) - { - Control.CreateCloneOf(_myself_); - _id += -1; - } - } - Else - { - _id = 96; - Repeat (95) - { - Control.CreateCloneOf(_myself_); - _id += -1; - } - } -} - -Define put Input (warp=true) -{ - List.DeleteAll(FT.re); - List.DeleteAll(FT.im); - r.0 = 0; - Repeat (32) - { - r.0 += 1; - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - List.Add(FT.re, (wave[r.0] / 15)); - } -} - - -//----- Costumes ------------------------------------------------------------------------------------------------------ - -costume1.svg - - -//----- Sounds -------------------------------------------------------------------------------------------------------- - -vsine1.wav -vsine2.wav -vsine3.wav -vsine4.wav -vsine5.wav -vsine6.wav -vsine7.wav -vsine8.wav -vsine9.wav -vsine10.wav -vsine11.wav -vsine12.wav -vsine13.wav -vsine14.wav -vsine15.wav -vsine16.wav diff --git a/wave .txt b/wave.txt similarity index 67% rename from wave .txt rename to wave.txt index d85e2c9..9861d7f 100644 --- a/wave .txt +++ b/wave.txt @@ -1,26 +1,56 @@ //----- Variables ----------------------------------------------------------------------------------------------------- ++is clone? = 0 .t = 256 delta = 0 -s = 0 +lastFFTbuf = 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 0 0 0 1 1 2 3 3 4 4 5 5 6 6 6 7 7 8 8 9 9 10 10 11 11 12 13 13 14 15 0 0 +menu0exit = 0 +return = 42.993334630007 sound = 128 //----- Broadcast received events ------------------------------------------------------------------------------------- -WhenBroadcastReceived(create sound) +WhenBroadcastReceived(+audioEngineUpdateAll) { - Call fast; - Forever + Sound.SetVolumeTo(((m[(sound + 1)] * (+sound volume[3] * 0.01)) * +globalVol.R)); +} + +WhenBroadcastReceived(+audioEngineUpdateAll) +{ + If (+is clone? == 0) { - pitch = ((+AUDIO ENGINE pitch[3] - 69) * 10); - Call tick("") ,(1); + Call convert pitch to MIDI note((131072 / (2048 - +sound pitch[3]))); + pitch = ((return - 69) * 10); + If (Not ((Operator.Join("#", _waveBuffer2) == Operator.Join("#", lastFFTbuf)))) + { + Call tick ,; + lastFFTbuf = _waveBuffer2; + } } } -WhenBroadcastReceived(prune) +WhenBroadcastReceived(+turnoffaudio) +{ + Sound.SetVolumeTo(0); +} + +WhenBroadcastReceived(create sound) +{ + lastFFTbuf = 0; + Call fast; +} + +WhenBroadcastReceived(exit emulator) +{ + +is clone? = 0; + Control.DeleteThisClone(); +} + +WhenBroadcastReceived(reset emulator) { + +is clone? = 0; Control.DeleteThisClone(); } @@ -30,10 +60,6 @@ WhenBroadcastReceived(prune) Control.WhenIStartAsClone() { Sound.SetVolumeTo(0); - Forever - { - Sound.SetVolumeTo((m[(sound + 1)] * (+AUDIO ENGINE volume[3] / 90))); - } } Control.WhenIStartAsClone() @@ -56,6 +82,41 @@ Control.WhenIStartAsClone() //----- Custom blocks ------------------------------------------------------------------------------------------------- +Define convert pitch to MIDI note(string p) (warp=true) +{ + return = ((12 * (ln((p / 440)) / ln(2))) + 69); +} + +Define draw (warp=true) +{ + Pen.Clear(); + i2 = 0; + Pen.SetPenColorToColor(#ff0000); + Pen.SetPenSizeTo(3); + Repeat (quality) + { + Pen.SetPenColorToColor(#00f7c5); + r.0 = (log((1 + sqrt((0 + m[(i2 + 1)])))) * 120); + Pen.ChangePenBy(color, (r.0 / -2)); + If + { + Motion.PointInDirection(((360 / quality) * i2)); + Motion.GoToXY((sin(Motion.Direction()) * 100), (cos(Motion.Direction()) * 100)); + Pen.Down(); + Motion.Move(r.0); + Pen.Clear(); + } + Else + { + Motion.GoToXY((((i2 / quality) - .5) * 400), r.0); + Pen.Down(); + Motion.SetY(( - r.0)); + Pen.Clear(); + } + i2 += 1; + } +} + Define fast (warp=true) { amp = 10; @@ -157,28 +218,34 @@ Define FFT(bool I) (warp=true) Define instant (warp=true) { + +is clone? = 1; sound = 0; Repeat (quality) { Control.CreateCloneOf(_myself_); sound += 1; } + +is clone? = 0; } Define playsine(string number) (warp=true) { - Sound.PlayUntilDone(Operator.Join("sine", number)); - Sound.PlayUntilDone(Operator.Join("sine", number)); - Sound.PlayUntilDone(Operator.Join("sine", number)); + If (Sound.Volume() > 0) + { + Sound.PlayUntilDone(Operator.Join("sine", number)); + Sound.PlayUntilDone(Operator.Join("sine", number)); + Sound.PlayUntilDone(Operator.Join("sine", number)); + } } -Define tick(string sample) ,(string n) (warp=true) +Define tick , (warp=true) { List.DeleteAll(FT.re); List.DeleteAll(FT.im); r.1 = (quality * 2); control_for_each ?? - probably legacy function from Scratch 2.0; Call FFT(); + __ += 1; r.2 = 0; r.1 = 1; Repeat (quality) @@ -190,11 +257,6 @@ Define tick(string sample) ,(string n) (warp=true) } -//----- Orphaned blocks ----------------------------------------------------------------------------------------------- - -(120 * Operator.Random((log(sound) - log((sound + 1))) / (log((sound + 1)) - log(sound)))) - - //----- Costumes ------------------------------------------------------------------------------------------------------ costume1.svg